Merge branch 'seeddms-5.0.x'
19
CHANGELOG
|
@ -1,3 +1,9 @@
|
|||
--------------------------------------------------------------------------------
|
||||
Changes in version 5.0.11
|
||||
--------------------------------------------------------------------------------
|
||||
- merged changes from 4.3.34
|
||||
- added some more hooks
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
Changes in version 5.0.10
|
||||
--------------------------------------------------------------------------------
|
||||
|
@ -70,6 +76,19 @@
|
|||
- add .xml to online file types by default
|
||||
- add home folder for users
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
Changes in version 4.3.34
|
||||
--------------------------------------------------------------------------------
|
||||
- add multibyte save basename() replacement, which fixes uploading files whose
|
||||
name starts with a multibyte char
|
||||
- show both number of links from a document A to B and vise versa in tab header
|
||||
on ViewDocuments page
|
||||
- add link to duplicate document on ObjectCheck page
|
||||
- fix some incompatibilities in sql statements
|
||||
- new config parameter maxUploadSize
|
||||
- fix document upload by fine-uploader, when using firefox
|
||||
- scale default icons for document types, use svg images when available
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
Changes in version 4.3.33
|
||||
--------------------------------------------------------------------------------
|
||||
|
|
2
Makefile
|
@ -1,4 +1,4 @@
|
|||
VERSION=5.0.10
|
||||
VERSION=5.0.11
|
||||
SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc styles TODO LICENSE webdav install restapi pdfviewer
|
||||
# webapp
|
||||
|
||||
|
|
|
@ -344,7 +344,7 @@ class SeedDMS_Core_DMS {
|
|||
$this->callbacks = array();
|
||||
$this->version = '@package_version@';
|
||||
if($this->version[0] == '@')
|
||||
$this->version = '5.0.10';
|
||||
$this->version = '5.0.11';
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
|
@ -804,10 +804,10 @@ class SeedDMS_Core_DMS {
|
|||
// Only search if the offset is not beyond the number of folders
|
||||
if($totalFolders > $offset) {
|
||||
// Prepare the complete search query, including the LIMIT clause.
|
||||
$searchQuery = "SELECT DISTINCT `tblFolders`.* ".$searchQuery." GROUP BY `tblFolders`.`id`";
|
||||
$searchQuery = "SELECT DISTINCT `tblFolders`.`id` ".$searchQuery." GROUP BY `tblFolders`.`id`";
|
||||
|
||||
if($limit) {
|
||||
$searchQuery .= " LIMIT ".$offset.",".$limit;
|
||||
$searchQuery .= " LIMIT ".$limit." OFFSET ".$offset;
|
||||
}
|
||||
|
||||
// Send the complete search query to the database.
|
||||
|
@ -1039,7 +1039,7 @@ class SeedDMS_Core_DMS {
|
|||
else
|
||||
$offset = 0;
|
||||
if($limit)
|
||||
$searchQuery .= " LIMIT ".$offset.",".$remain;
|
||||
$searchQuery .= " LIMIT ".$limit." OFFSET ".$offset;
|
||||
|
||||
// Send the complete search query to the database.
|
||||
$resArr = $this->db->getResultArray($searchQuery);
|
||||
|
@ -2115,8 +2115,7 @@ class SeedDMS_Core_DMS {
|
|||
|
||||
$versions = array();
|
||||
foreach($resArr as $row) {
|
||||
$document = new $this->classnames['document']($row['document'], '', '', '', '', '', '', '', '', '', '', '');
|
||||
$document->setDMS($this);
|
||||
$document = $this->getDocument($row['document']);
|
||||
$version = new $this->classnames['documentcontent']($row['id'], $document, $row['version'], $row['comment'], $row['date'], $row['createdBy'], $row['dir'], $row['orgFileName'], $row['fileType'], $row['mimeType'], $row['fileSize'], $row['checksum']);
|
||||
if(!isset($versions[$row['dupid']])) {
|
||||
$versions[$row['id']]['content'] = $version;
|
||||
|
|
|
@ -2783,7 +2783,7 @@ class SeedDMS_Core_DocumentContent extends SeedDMS_Core_Object { /* {{{ */
|
|||
/* Second, insert the new entries */
|
||||
foreach($reviewers as $review) {
|
||||
$queryStr = "INSERT INTO `tblDocumentReviewers` (`documentID`, `version`, `type`, `required`) ".
|
||||
"VALUES ('".$this->_document->getID()."', '".$this->_version."', ".$review['type'] .", ".$review['required']->getID().")";
|
||||
"VALUES ('".$this->_document->getID()."', '".$this->_version."', ".$review['type'] .", ".(is_object($review['required']) ? $review['required']->getID() : (int) $review['required']).")";
|
||||
if (!$db->getResult($queryStr)) {
|
||||
$db->rollbackTransaction();
|
||||
return false;
|
||||
|
@ -2796,7 +2796,7 @@ class SeedDMS_Core_DocumentContent extends SeedDMS_Core_Object { /* {{{ */
|
|||
return false;
|
||||
}
|
||||
$queryStr = "INSERT INTO `tblDocumentReviewLog` (`reviewID`, `status`, `comment`, `date`, `userID`) ".
|
||||
"VALUES ('".$reviewID ."', '".(int) $log['status']."', ".$db->qstr($log['comment']) .", ".$db->qstr($log['date']).", ".$log['user']->getID().")";
|
||||
"VALUES ('".$reviewID ."', '".(int) $log['status']."', ".$db->qstr($log['comment']) .", ".$db->qstr($log['date']).", ".(is_object($log['user']) ? $log['user']->getID() : (int) $log['user']).")";
|
||||
if (!$db->getResult($queryStr)) {
|
||||
$db->rollbackTransaction();
|
||||
return false;
|
||||
|
@ -2911,7 +2911,7 @@ class SeedDMS_Core_DocumentContent extends SeedDMS_Core_Object { /* {{{ */
|
|||
/* Second, insert the new entries */
|
||||
foreach($reviewers as $review) {
|
||||
$queryStr = "INSERT INTO `tblDocumentApprovers` (`documentID`, `version`, `type`, `required`) ".
|
||||
"VALUES ('".$this->_document->getID()."', '".$this->_version."', ".$review['type'] .", ".$review['required']->getID().")";
|
||||
"VALUES ('".$this->_document->getID()."', '".$this->_version."', ".$review['type'] .", ".(is_object($review['required']) ? $review['required']->getID() : (int) $review['required']).")";
|
||||
if (!$db->getResult($queryStr)) {
|
||||
$db->rollbackTransaction();
|
||||
return false;
|
||||
|
@ -2924,7 +2924,7 @@ class SeedDMS_Core_DocumentContent extends SeedDMS_Core_Object { /* {{{ */
|
|||
return false;
|
||||
}
|
||||
$queryStr = "INSERT INTO `tblDocumentApproveLog` (`approveID`, `status`, `comment`, `date`, `userID`) ".
|
||||
"VALUES ('".$reviewID ."', '".(int) $log['status']."', ".$db->qstr($log['comment']) .", ".$db->qstr($log['date']).", ".$log['user']->getID().")";
|
||||
"VALUES ('".$reviewID ."', '".(int) $log['status']."', ".$db->qstr($log['comment']) .", ".$db->qstr($log['date']).", ".(is_object($log['user']) ? $log['user']->getID() : (int) $log['user']).")";
|
||||
if (!$db->getResult($queryStr)) {
|
||||
$db->rollbackTransaction();
|
||||
return false;
|
||||
|
|
|
@ -12,11 +12,11 @@
|
|||
<email>uwe@steinmann.cx</email>
|
||||
<active>yes</active>
|
||||
</lead>
|
||||
<date>2017-02-20</date>
|
||||
<time>06:23:34</time>
|
||||
<date>2017-02-28</date>
|
||||
<time>07:07:02</time>
|
||||
<version>
|
||||
<release>5.0.10</release>
|
||||
<api>5.0.10</api>
|
||||
<release>5.0.11</release>
|
||||
<api>5.0.11</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>stable</release>
|
||||
|
@ -24,7 +24,7 @@
|
|||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
- all changes from 4.3.33 merged
|
||||
SeedDMS_Core_DMS::getDuplicateDocumentContent() returns complete document
|
||||
</notes>
|
||||
<contents>
|
||||
<dir baseinstalldir="SeedDMS" name="/">
|
||||
|
@ -1166,6 +1166,21 @@ SeedDMS_Core_DMS::getNotificationsByUser() are deprecated
|
|||
- SeedDMЅ_Core_User::setFullname() minor fix in sql statement
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<date>2017-02-28</date>
|
||||
<time>06:38:12</time>
|
||||
<version>
|
||||
<release>4.3.34</release>
|
||||
<api>4.3.34</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>stable</release>
|
||||
<api>stable</api>
|
||||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<date>2016-01-22</date>
|
||||
<time>14:34:58</time>
|
||||
|
@ -1312,5 +1327,21 @@ SeedDMS_Core_DMS::getNotificationsByUser() are deprecated
|
|||
- all changes from 4.3.32 merged
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<date>2017-02-20</date>
|
||||
<time>06:23:34</time>
|
||||
<version>
|
||||
<release>5.0.10</release>
|
||||
<api>5.0.10</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>stable</release>
|
||||
<api>stable</api>
|
||||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
- all changes from 4.3.33 merged
|
||||
</notes>
|
||||
</release>
|
||||
</changelog>
|
||||
</package>
|
||||
|
|
|
@ -31,24 +31,25 @@ class SeedDMS_Lucene_IndexedDocument extends Zend_Search_Lucene_Document {
|
|||
2 => array("pipe", "w")
|
||||
);
|
||||
$pipes = array();
|
||||
|
||||
$timeout += time();
|
||||
|
||||
$timeout += time();
|
||||
$process = proc_open($cmd, $descriptorspec, $pipes);
|
||||
if (!is_resource($process)) {
|
||||
throw new Exception("proc_open failed on: " . $cmd);
|
||||
}
|
||||
|
||||
$output = '';
|
||||
$timeleft = $timeout - time();
|
||||
$read = array($pipes[1]);
|
||||
$write = NULL;
|
||||
$exeptions = NULL;
|
||||
do {
|
||||
$timeleft = $timeout - time();
|
||||
$read = array($pipes[1]);
|
||||
$write = NULL;
|
||||
$exeptions = NULL;
|
||||
stream_select($read, $write, $exeptions, $timeleft, 200000);
|
||||
|
||||
if (!empty($read)) {
|
||||
$output .= fread($pipes[1], 8192);
|
||||
}
|
||||
}
|
||||
$timeleft = $timeout - time();
|
||||
} while (!feof($pipes[1]) && $timeleft > 0);
|
||||
|
||||
if ($timeleft <= 0) {
|
||||
|
@ -127,19 +128,12 @@ class SeedDMS_Lucene_IndexedDocument extends Zend_Search_Lucene_Document {
|
|||
$mimetype = $version->getMimeType();
|
||||
if(isset($_convcmd[$mimetype])) {
|
||||
$cmd = sprintf($_convcmd[$mimetype], $path);
|
||||
$content = self::execWithTimeout($cmd, $timeout);
|
||||
/*
|
||||
$fp = popen($cmd, 'r');
|
||||
if($fp) {
|
||||
$content = '';
|
||||
while(!feof($fp)) {
|
||||
$content .= fread($fp, 2048);
|
||||
try {
|
||||
$content = self::execWithTimeout($cmd, $timeout);
|
||||
if($content) {
|
||||
$this->addField(Zend_Search_Lucene_Field::UnStored('content', $content, 'utf-8'));
|
||||
}
|
||||
pclose($fp);
|
||||
}
|
||||
*/
|
||||
if($content) {
|
||||
$this->addField(Zend_Search_Lucene_Field::UnStored('content', $content, 'utf-8'));
|
||||
} catch (Exception $e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,11 +11,11 @@
|
|||
<email>uwe@steinmann.cx</email>
|
||||
<active>yes</active>
|
||||
</lead>
|
||||
<date>2016-04-28</date>
|
||||
<time>08:11:19</time>
|
||||
<date>2017-03-01</date>
|
||||
<time>15:55:32</time>
|
||||
<version>
|
||||
<release>1.1.9</release>
|
||||
<api>1.1.7</api>
|
||||
<release>1.1.10</release>
|
||||
<api>1.1.10</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>stable</release>
|
||||
|
@ -23,8 +23,7 @@
|
|||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
pass variables to stream_select() to fullfill strict standards.
|
||||
make all functions in Indexer.php static
|
||||
catch exception in execWithTimeout()
|
||||
</notes>
|
||||
<contents>
|
||||
<dir baseinstalldir="SeedDMS" name="/">
|
||||
|
@ -235,5 +234,22 @@ add command for indexing postѕcript files
|
|||
set last parameter of stream_select() to 200000 micro sec. in case the timeout in sec. is set to 0
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<date>2016-04-28</date>
|
||||
<time>08:11:19</time>
|
||||
<version>
|
||||
<release>1.1.9</release>
|
||||
<api>1.1.7</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>stable</release>
|
||||
<api>stable</api>
|
||||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
pass variables to stream_select() to fullfill strict standards.
|
||||
make all functions in Indexer.php static
|
||||
</notes>
|
||||
</release>
|
||||
</changelog>
|
||||
</package>
|
||||
|
|
|
@ -89,8 +89,13 @@ class SeedDMS_Preview_PdfPreviewer extends SeedDMS_Preview_Base {
|
|||
$target = $this->previewDir.$dir.md5($infile);
|
||||
if($target != '' && (!file_exists($target.'.pdf') || filectime($target.'.pdf') < filectime($infile))) {
|
||||
$cmd = '';
|
||||
$mimeparts = explode('/', $mimetype, 2);
|
||||
if(isset($this->converters[$mimetype])) {
|
||||
$cmd = str_replace(array('%f', '%o'), array($infile, $target.'.pdf'), $this->converters[$mimetype]);
|
||||
$cmd = str_replace(array('%f', '%o', '%m'), array($infile, $target.'.pdf', $mimetype), $this->converters[$mimetype]);
|
||||
} elseif(isset($this->converters[$mimeparts[0].'/*'])) {
|
||||
$cmd = str_replace(array('%f', '%o', '%m'), array($infile, $target.'.pdf', $mimetype), $this->converters[$mimeparts[0].'/*']);
|
||||
} elseif(isset($this->converters['*'])) {
|
||||
$cmd = str_replace(array('%f', '%o', '%m'), array($infile, $target.'.pdf', $mimetype), $this->converters['*']);
|
||||
}
|
||||
if($cmd) {
|
||||
try {
|
||||
|
|
|
@ -106,9 +106,15 @@ class SeedDMS_Preview_Previewer extends SeedDMS_Preview_Base {
|
|||
$target = $this->previewDir.$dir.md5($infile).'-'.$width;
|
||||
if($target != '' && (!file_exists($target.'.png') || filectime($target.'.png') < filectime($infile))) {
|
||||
$cmd = '';
|
||||
$mimeparts = explode('/', $mimetype, 2);
|
||||
if(isset($this->converters[$mimetype])) {
|
||||
$cmd = str_replace(array('%w', '%f', '%o'), array($width, $infile, $target.'.png'), $this->converters[$mimetype]);
|
||||
$cmd = str_replace(array('%w', '%f', '%o', '%m'), array($width, $infile, $target.'.png', $mimetype), $this->converters[$mimetype]);
|
||||
} elseif(isset($this->converters[$mimeparts[0].'/*'])) {
|
||||
$cmd = str_replace(array('%w', '%f', '%o', '%m'), array($width, $infile, $target.'.png', $mimetype), $this->converters[$mimeparts[0].'/*']);
|
||||
} elseif(isset($this->converters['*'])) {
|
||||
$cmd = str_replace(array('%w', '%f', '%o', '%m'), array($width, $infile, $target.'.png', $mimetype), $this->converters['*']);
|
||||
}
|
||||
|
||||
/*
|
||||
switch($mimetype) {
|
||||
case "image/png":
|
||||
|
@ -131,7 +137,6 @@ class SeedDMS_Preview_Previewer extends SeedDMS_Preview_Base {
|
|||
}
|
||||
*/
|
||||
if($cmd) {
|
||||
//exec($cmd);
|
||||
try {
|
||||
self::execWithTimeout($cmd, $this->timeout);
|
||||
} catch(Exception $e) {
|
||||
|
|
|
@ -11,10 +11,10 @@
|
|||
<email>uwe@steinmann.cx</email>
|
||||
<active>yes</active>
|
||||
</lead>
|
||||
<date>2016-11-15</date>
|
||||
<time>21:00:26</time>
|
||||
<date>2017-03-02</date>
|
||||
<time>07:14:59</time>
|
||||
<version>
|
||||
<release>1.2.1</release>
|
||||
<release>1.2.2</release>
|
||||
<api>1.2.0</api>
|
||||
</version>
|
||||
<stability>
|
||||
|
@ -23,7 +23,8 @@
|
|||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
setConverters() overrides exiting converters
|
||||
commands can be set for mimetypes 'xxxx/*' and '*'
|
||||
pass mimetype as parameter '%m' to converter
|
||||
</notes>
|
||||
<contents>
|
||||
<dir baseinstalldir="SeedDMS" name="/">
|
||||
|
@ -254,5 +255,21 @@ check if cache dir exists before deleting it in deleteDocumentPreviews()
|
|||
add new previewer which converts document to pdf instead of png
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<date>2016-11-15</date>
|
||||
<time>21:00:26</time>
|
||||
<version>
|
||||
<release>1.2.1</release>
|
||||
<api>1.2.0</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>stable</release>
|
||||
<api>stable</api>
|
||||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
setConverters() overrides exiting converters
|
||||
</notes>
|
||||
</release>
|
||||
</changelog>
|
||||
</package>
|
||||
|
|
|
@ -37,7 +37,7 @@ class SeedDMS_SQLiteFTS_IndexedDocument extends SeedDMS_SQLiteFTS_Document {
|
|||
);
|
||||
$pipes = array();
|
||||
|
||||
$timeout += time();
|
||||
$timeout += time();
|
||||
$process = proc_open($cmd, $descriptorspec, $pipes);
|
||||
if (!is_resource($process)) {
|
||||
throw new Exception("proc_open failed on: " . $cmd);
|
||||
|
@ -53,7 +53,7 @@ class SeedDMS_SQLiteFTS_IndexedDocument extends SeedDMS_SQLiteFTS_Document {
|
|||
|
||||
if (!empty($read)) {
|
||||
$output .= fread($pipes[1], 8192);
|
||||
}
|
||||
}
|
||||
$timeleft = $timeout - time();
|
||||
} while (!feof($pipes[1]) && $timeleft > 0);
|
||||
|
||||
|
@ -133,9 +133,12 @@ class SeedDMS_SQLiteFTS_IndexedDocument extends SeedDMS_SQLiteFTS_Document {
|
|||
$mimetype = $version->getMimeType();
|
||||
if(isset($_convcmd[$mimetype])) {
|
||||
$cmd = sprintf($_convcmd[$mimetype], $path);
|
||||
$content = self::execWithTimeout($cmd, $timeout);
|
||||
if($content) {
|
||||
$this->addField('content', $content, 'unstored');
|
||||
try {
|
||||
$content = self::execWithTimeout($cmd, $timeout);
|
||||
if($content) {
|
||||
$this->addField('content', $content, 'unstored');
|
||||
}
|
||||
} catch (Exception $e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,11 +11,11 @@
|
|||
<email>uwe@steinmann.cx</email>
|
||||
<active>yes</active>
|
||||
</lead>
|
||||
<date>2016-03-29</date>
|
||||
<time>08:09:48</time>
|
||||
<date>2017-03-01</date>
|
||||
<time>15:53:24</time>
|
||||
<version>
|
||||
<release>1.0.6</release>
|
||||
<api>1.0.1</api>
|
||||
<release>1.0.7</release>
|
||||
<api>1.0.7</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>stable</release>
|
||||
|
@ -23,7 +23,7 @@
|
|||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
fix calculation of timeout (see bug #269)
|
||||
catch exception in execWithTimeout()
|
||||
</notes>
|
||||
<contents>
|
||||
<dir baseinstalldir="SeedDMS" name="/">
|
||||
|
@ -162,5 +162,21 @@ make it work with sqlite3 < 3.8.0
|
|||
set last parameter of stream_select() to 200000 micro sec. in case the timeout in sec. is set to 0
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
<date>2016-03-29</date>
|
||||
<time>08:09:48</time>
|
||||
<version>
|
||||
<release>1.0.6</release>
|
||||
<api>1.0.1</api>
|
||||
</version>
|
||||
<stability>
|
||||
<release>stable</release>
|
||||
<api>stable</api>
|
||||
</stability>
|
||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
fix calculation of timeout (see bug #269)
|
||||
</notes>
|
||||
</release>
|
||||
</changelog>
|
||||
</package>
|
||||
|
|
|
@ -164,8 +164,10 @@ class Settings { /* {{{ */
|
|||
var $_logFileRotation = "d";
|
||||
// Enable file upload by jumploader
|
||||
var $_enableLargeFileUpload = false;
|
||||
// size of partitions for file upload by jumploader
|
||||
// size of partitions for file uploaded by fine-loader
|
||||
var $_partitionSize = 2000000;
|
||||
// max size of files uploaded by fine-uploader, set to 0 for unlimited
|
||||
var $_maxUploadSize = 0;
|
||||
// enable/disable users images
|
||||
var $_enableUserImage = false;
|
||||
// enable/disable calendar
|
||||
|
@ -447,6 +449,7 @@ class Settings { /* {{{ */
|
|||
$this->_logFileRotation = strval($tab["logFileRotation"]);
|
||||
$this->_enableLargeFileUpload = Settings::boolVal($tab["enableLargeFileUpload"]);
|
||||
$this->_partitionSize = strval($tab["partitionSize"]);
|
||||
$this->_maxUploadSize = strval($tab["maxUploadSize"]);
|
||||
|
||||
// XML Path: /configuration/system/authentication
|
||||
$node = $xml->xpath('/configuration/system/authentication');
|
||||
|
@ -752,6 +755,7 @@ class Settings { /* {{{ */
|
|||
$this->setXMLAttributValue($node, "logFileRotation", $this->_logFileRotation);
|
||||
$this->setXMLAttributValue($node, "enableLargeFileUpload", $this->_enableLargeFileUpload);
|
||||
$this->setXMLAttributValue($node, "partitionSize", $this->_partitionSize);
|
||||
$this->setXMLAttributValue($node, "maxUploadSize", $this->_maxUploadSize);
|
||||
|
||||
// XML Path: /configuration/system/authentication
|
||||
$node = $this->getXMLNode($xml, '/configuration/system', 'authentication');
|
||||
|
|
|
@ -105,7 +105,8 @@ class UI extends UI_Default {
|
|||
$view->setParam('enablelanguageselector', $settings->_enableLanguageSelector);
|
||||
$view->setParam('enableclipboard', $settings->_enableClipboard);
|
||||
$view->setParam('workflowmode', $settings->_workflowMode);
|
||||
$view->setParam('partitionsize', $settings->_partitionSize);
|
||||
$view->setParam('partitionsize', (int) $settings->_partitionSize);
|
||||
$view->setParam('maxuploadsize', (int) $settings->_maxUploadSize);
|
||||
$view->setParam('showmissingtranslations', $settings->_showMissingTranslations);
|
||||
$view->setParam('defaultsearchmethod', $settings->_defaultSearchMethod);
|
||||
$view->setParam('cachedir', $settings->_cacheDir);
|
||||
|
|
|
@ -339,6 +339,27 @@ function dskspace($dir) { /* {{{ */
|
|||
return $space;
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Replacement of PHP's basename function
|
||||
*
|
||||
* Because basename is locale dependent and strips off non ascii chars
|
||||
* from the beginning of filename, it cannot be used in a environment
|
||||
* where locale is set to e.g. 'C'
|
||||
*/
|
||||
function utf8_basename($path, $suffix='') { /* {{{ */
|
||||
$rpos = strrpos($path, DIRECTORY_SEPARATOR);
|
||||
if($rpos === false)
|
||||
return $path;
|
||||
$file = substr($path, $rpos+1);
|
||||
|
||||
$suflen = strlen($suffix);
|
||||
if($suflen && (substr($file, -$suflen) == $suffix)){
|
||||
$file = substr($file, 0, -$suflen);
|
||||
}
|
||||
|
||||
return $file;
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Log a message
|
||||
*
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
class SeedDMS_Version {
|
||||
|
||||
public $_number = "5.0.10";
|
||||
public $_number = "5.0.11";
|
||||
private $_string = "SeedDMS";
|
||||
|
||||
function __construct() {
|
||||
|
|
|
@ -118,7 +118,7 @@ function fileExistsInIncludePath($file) { /* {{{ */
|
|||
* Load default settings + set
|
||||
*/
|
||||
define("SEEDDMS_INSTALL", "on");
|
||||
define("SEEDDMS_VERSION", "5.0.10");
|
||||
define("SEEDDMS_VERSION", "5.0.11");
|
||||
|
||||
require_once('../inc/inc.ClassSettings.php');
|
||||
|
||||
|
@ -311,7 +311,7 @@ if ($action=="setSettings") {
|
|||
$connTmp->exec($query);
|
||||
|
||||
if ($connTmp->errorCode() != 0) {
|
||||
$errorMsg .= $connTmp->errorInfo() . "<br/>";
|
||||
$errorMsg .= $connTmp->errorInfo()[2] . "<br/>";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1272)
|
||||
// Translators: Admin (1274)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -271,6 +271,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'انشاء فهرس للنص الكامل',
|
||||
'create_fulltext_index_warning' => 'انت على وشك اعادة انشاء فهرس النص الكامل.هذا سيتطلب وقت كافي وسيؤثر بشكل عام على كفاءة النظام. اذا كنت حقا تود اعادة انشاء الفهرس، من فضلك قم بتاكيد العملية.',
|
||||
'creation_date' => 'تم انشاؤه',
|
||||
|
@ -376,6 +377,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'لا ينتهى صلاحيته',
|
||||
'does_not_inherit_access_msg' => 'صلاحيات موروثة',
|
||||
'download' => 'تنزيل',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'إصلاح كل المستندات والمجلدات.',
|
||||
'do_object_setchecksum' => 'تحديد فحص اخطاء',
|
||||
'do_object_setfilesize' => 'تحديد حجم الملف',
|
||||
|
@ -393,6 +397,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'من خلال تلك العملية يمكنك انشاء ملف مستخرج من محتوى قاعدة البيانات. بعد انشاء الملف المستخرج سيتم حفظه في مجلد البيانات الخاص بسيرفرك',
|
||||
'dump_list' => 'ملف مستخرج حالي',
|
||||
'dump_remove' => 'ازالة الملف المستخرج',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '',
|
||||
'edit' => 'تعديل',
|
||||
'edit_attributes' => 'تعديل السمات',
|
||||
|
@ -442,7 +447,16 @@ URL: [url]',
|
|||
'event_details' => 'تفاصيل الحدث',
|
||||
'exclude_items' => '',
|
||||
'expired' => 'انتهى صلاحيته',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'تنتهى صلاحيته',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'تم تغيير تاريخ الصلاحية',
|
||||
'expiry_changed_email_body' => 'تم تغيير تاريخ الصلاحية
|
||||
المستند: [name]
|
||||
|
@ -451,7 +465,7 @@ Parent folder: [folder_path]
|
|||
URL: [url]',
|
||||
'expiry_changed_email_subject' => '[sitename]: [name] - تم تغيير تاريخ الصلاحية',
|
||||
'export' => '',
|
||||
'extension_manager' => '',
|
||||
'extension_manager' => 'ﺇﺩﺍﺭﺓ ﺍﻼﻣﺩﺍﺩﺎﺗ',
|
||||
'february' => 'فبراير',
|
||||
'file' => 'ملف',
|
||||
'files' => 'ملفات',
|
||||
|
@ -505,6 +519,7 @@ URL: [url]',
|
|||
'fr_FR' => 'الفرنسية',
|
||||
'fullsearch' => 'البحث النصي الكامل',
|
||||
'fullsearch_hint' => 'استخدم فهرس النص الكامل',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'معلومات فهرس النص الكامل',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'سمات',
|
||||
|
@ -524,6 +539,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'ملخص مراجعة المجموعة',
|
||||
'guest_login' => 'الدخول كضيف',
|
||||
'guest_login_disabled' => 'دخول ضيف غير متاح.',
|
||||
'hash' => '',
|
||||
'help' => 'المساعدة',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -536,7 +552,7 @@ URL: [url]',
|
|||
'identical_version' => 'الاصدار الجديد مماثل للاصدار الحالي.',
|
||||
'import' => 'ﺎﺴﺘﺧﺭﺎﺟ',
|
||||
'importfs' => '',
|
||||
'import_fs' => '',
|
||||
'import_fs' => 'ﻦﺴﺧ ﻢﻧ ﻢﻠﻓ ﺎﻠﻨﻇﺎﻣ',
|
||||
'import_fs_warning' => '',
|
||||
'include_content' => '',
|
||||
'include_documents' => 'اشمل مستندات',
|
||||
|
@ -801,6 +817,7 @@ URL: [url]',
|
|||
'personal_default_keywords' => 'قوائم الكلمات البحثية الشخصية',
|
||||
'pl_PL' => 'ﺎﻠﺑﻮﻠﻧﺪﻳﺓ',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -995,6 +1012,7 @@ URL: [url]',
|
|||
'select_one' => 'اختر واحد',
|
||||
'select_users' => 'اضغط لاختيار المستخدم',
|
||||
'select_workflow' => 'اختر مسار العمل',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'سبتمبر',
|
||||
'sequence' => 'تتابع',
|
||||
|
@ -1196,6 +1214,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => '',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => '',
|
||||
'settings_notfound' => '',
|
||||
'settings_Notification' => '',
|
||||
|
@ -1336,6 +1356,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => '',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => '',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => '',
|
||||
|
@ -1346,6 +1368,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => '',
|
||||
'splash_rm_attribute' => '',
|
||||
'splash_rm_document' => 'تم حذف المستند',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'تم حذف المجلد',
|
||||
'splash_rm_group' => '',
|
||||
'splash_rm_group_member' => '',
|
||||
|
@ -1353,6 +1376,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => '',
|
||||
'splash_substituted_user' => '',
|
||||
'splash_switched_back_user' => '',
|
||||
|
@ -1502,6 +1526,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'ﺎﺴﺘﺧﺪﻣ ﺎﻠﺘﻌﻠﻴﻗﺎﺗ ﻞﻟﻮﺜﻴﻗﺓ',
|
||||
'use_default_categories' => 'استخدم اقسام سابقة التعريف',
|
||||
'use_default_keywords' => 'استخدام كلمات بحثية معدة مسبقا',
|
||||
'valid_till' => '',
|
||||
'version' => 'اصدار',
|
||||
'versioning_file_creation' => 'انشاء ملف الاصدارات',
|
||||
'versioning_file_creation_warning' => 'من خلال تلك العملية يمكنك انشاء ملف يحتوى معلومات الاصدار لمجمل مجلد النظام. بعد الانشاء كل ملف سيتم حفظه داخل المجلد الخاص به',
|
||||
|
|
|
@ -256,6 +256,7 @@ $text = array(
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Създай пълнотекстов индекс',
|
||||
'create_fulltext_index_warning' => 'Вие искате да пресъздадете пълнотекстов индекс. Това ще отнеме време и ще понижи производителността. Да продолжа ли?',
|
||||
'creation_date' => 'Създаден',
|
||||
|
@ -331,6 +332,9 @@ $text = array(
|
|||
'does_not_expire' => 'Безсрочен',
|
||||
'does_not_inherit_access_msg' => 'Наследване нивото на достъп',
|
||||
'download' => 'Изтегли',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Поправи всички папки и документи',
|
||||
'do_object_setchecksum' => 'Установи контролна сума',
|
||||
'do_object_setfilesize' => 'Установи размер на файла',
|
||||
|
@ -348,6 +352,7 @@ $text = array(
|
|||
'dump_creation_warning' => 'Тази операция шъ създаде дамп на базата данни. След създаването, файлът ще бъде съхранен в папката с данни на сървъра.',
|
||||
'dump_list' => 'Съществуващи дъмпове',
|
||||
'dump_remove' => 'Изтрий дъмп',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '',
|
||||
'edit' => 'Редактирай',
|
||||
'edit_attributes' => 'Редактирай атрибути',
|
||||
|
@ -397,7 +402,16 @@ $text = array(
|
|||
'event_details' => 'Детайли за събитието',
|
||||
'exclude_items' => '',
|
||||
'expired' => 'Изтекъл',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Изтича',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Датата на изтичане променена',
|
||||
'expiry_changed_email_body' => '',
|
||||
'expiry_changed_email_subject' => '',
|
||||
|
@ -436,6 +450,7 @@ $text = array(
|
|||
'fr_FR' => '',
|
||||
'fullsearch' => 'Пълнотекстово търсене',
|
||||
'fullsearch_hint' => 'Използвай пълнотекстов индекс',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Информация за пълнотекстов индексе',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'атрибути',
|
||||
|
@ -455,6 +470,7 @@ $text = array(
|
|||
'group_review_summary' => 'Сводка по рецензирането на групи',
|
||||
'guest_login' => 'Влез като гост',
|
||||
'guest_login_disabled' => 'Входът като гост изключен',
|
||||
'hash' => '',
|
||||
'help' => 'Помощ',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -702,6 +718,7 @@ $text = array(
|
|||
'personal_default_keywords' => 'Личен списък с ключови думи',
|
||||
'pl_PL' => '',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -860,6 +877,7 @@ $text = array(
|
|||
'select_one' => 'Избери един',
|
||||
'select_users' => 'Кликни да избереш потребители',
|
||||
'select_workflow' => 'Избери процес',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'септември',
|
||||
'sequence' => 'Последователност',
|
||||
|
@ -1061,6 +1079,8 @@ $text = array(
|
|||
'settings_maxRecursiveCount_desc' => '',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Още настройки. Логин по подразбиране: admin/admin',
|
||||
'settings_notfound' => 'Не е намерено',
|
||||
'settings_Notification' => 'Настройка за известяване',
|
||||
|
@ -1201,6 +1221,8 @@ $text = array(
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => '',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => '',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => '',
|
||||
|
@ -1211,6 +1233,7 @@ $text = array(
|
|||
'splash_removed_from_clipboard' => '',
|
||||
'splash_rm_attribute' => '',
|
||||
'splash_rm_document' => '',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => '',
|
||||
'splash_rm_group' => '',
|
||||
'splash_rm_group_member' => '',
|
||||
|
@ -1218,6 +1241,7 @@ $text = array(
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => '',
|
||||
'splash_substituted_user' => '',
|
||||
'splash_switched_back_user' => '',
|
||||
|
@ -1358,6 +1382,7 @@ $text = array(
|
|||
'use_comment_of_document' => '',
|
||||
'use_default_categories' => 'Исползвай предопределени категории',
|
||||
'use_default_keywords' => 'Исползовай предопределенни ключови думи',
|
||||
'valid_till' => '',
|
||||
'version' => 'Версия',
|
||||
'versioning_file_creation' => 'Създаване на файл с версии',
|
||||
'versioning_file_creation_warning' => 'Тази операция ще създаде файл с версия за всяка папка. След създаване файлът ще бъде съхранен в каталога на документите.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (710)
|
||||
// Translators: Admin (722)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -143,7 +143,7 @@ URL: [url]',
|
|||
'attrdef_type_string' => '',
|
||||
'attrdef_type_url' => '',
|
||||
'attrdef_valueset' => '',
|
||||
'attributes' => '',
|
||||
'attributes' => 'Atributs',
|
||||
'attribute_changed_email_body' => '',
|
||||
'attribute_changed_email_subject' => '',
|
||||
'attribute_count' => '',
|
||||
|
@ -188,7 +188,7 @@ URL: [url]',
|
|||
'categories_loading' => '',
|
||||
'category' => 'Category',
|
||||
'category_exists' => '',
|
||||
'category_filter' => '',
|
||||
'category_filter' => 'Només categories',
|
||||
'category_info' => '',
|
||||
'category_in_use' => '',
|
||||
'category_noname' => '',
|
||||
|
@ -228,7 +228,7 @@ URL: [url]',
|
|||
'choose_workflow_action' => '',
|
||||
'choose_workflow_state' => '',
|
||||
'class_name' => '',
|
||||
'clear_cache' => '',
|
||||
'clear_cache' => 'Neteja memòria cau',
|
||||
'clear_clipboard' => '',
|
||||
'clear_password' => '',
|
||||
'clipboard' => 'Portapapers',
|
||||
|
@ -261,6 +261,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Crea un índex full-text',
|
||||
'create_fulltext_index_warning' => '',
|
||||
'creation_date' => 'Creació',
|
||||
|
@ -293,7 +294,7 @@ URL: [url]',
|
|||
'documents_in_process' => 'Documents en procés',
|
||||
'documents_locked' => '',
|
||||
'documents_locked_by_you' => 'Documents bloquejats per vostè',
|
||||
'documents_only' => '',
|
||||
'documents_only' => 'Només documents',
|
||||
'documents_to_approve' => 'Documents en espera d\'aprovació d\'usuaris',
|
||||
'documents_to_process' => '',
|
||||
'documents_to_receipt' => '',
|
||||
|
@ -336,6 +337,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'No caduca',
|
||||
'does_not_inherit_access_msg' => 'heretar l\'accés',
|
||||
'download' => 'Descarregar',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => '',
|
||||
'do_object_setchecksum' => '',
|
||||
'do_object_setfilesize' => '',
|
||||
|
@ -353,6 +357,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Amb aquesta operació es crearà un bolcat a fitxer del contingut de la base de dades. Després de la creació del bolcat, el fitxer es guardarà a la carpeta de dades del seu servidor.',
|
||||
'dump_list' => 'Fitxers de bolcat existents',
|
||||
'dump_remove' => 'Eliminar fitxer de bolcat',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '',
|
||||
'edit' => 'editar',
|
||||
'edit_attributes' => '',
|
||||
|
@ -402,12 +407,21 @@ URL: [url]',
|
|||
'event_details' => 'Detalls de l\'event',
|
||||
'exclude_items' => '',
|
||||
'expired' => 'Caducat',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Caduca',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Data de caducitat modificada',
|
||||
'expiry_changed_email_body' => '',
|
||||
'expiry_changed_email_subject' => '',
|
||||
'export' => '',
|
||||
'extension_manager' => '',
|
||||
'extension_manager' => 'Gestiona les Extensions',
|
||||
'february' => 'Febrer',
|
||||
'file' => 'Fitxer',
|
||||
'files' => 'Fitxers',
|
||||
|
@ -416,7 +430,7 @@ URL: [url]',
|
|||
'files_loading' => '',
|
||||
'file_size' => 'Mida',
|
||||
'filter_for_documents' => '',
|
||||
'filter_for_folders' => '',
|
||||
'filter_for_folders' => 'Filtre adicional per les carpetes',
|
||||
'folder' => 'Carpeta',
|
||||
'folders' => 'Carpetes',
|
||||
'folders_and_documents_statistic' => 'Vista general de continguts',
|
||||
|
@ -441,6 +455,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Francès',
|
||||
'fullsearch' => 'Cerca full-text',
|
||||
'fullsearch_hint' => '',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Informació de full-text',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Atributs',
|
||||
|
@ -460,6 +475,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Resum del grup revisor',
|
||||
'guest_login' => 'Accés com a invitat',
|
||||
'guest_login_disabled' => 'El compte d\'invitat està deshabilitat.',
|
||||
'hash' => '',
|
||||
'help' => 'Ajuda',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -591,7 +607,7 @@ URL: [url]',
|
|||
'may' => 'Maig',
|
||||
'mimetype' => '',
|
||||
'minutes' => '',
|
||||
'misc' => '',
|
||||
'misc' => 'Miscelànea',
|
||||
'missing_checksum' => '',
|
||||
'missing_file' => '',
|
||||
'missing_filesize' => '',
|
||||
|
@ -707,6 +723,7 @@ URL: [url]',
|
|||
'personal_default_keywords' => 'Mots clau personals',
|
||||
'pl_PL' => 'Polonès',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -832,21 +849,21 @@ URL: [url]',
|
|||
'search_in' => 'Buscar a',
|
||||
'search_mode_and' => 'tots els mots',
|
||||
'search_mode_documents' => '',
|
||||
'search_mode_folders' => '',
|
||||
'search_mode_folders' => 'Només carpetes',
|
||||
'search_mode_or' => 'si més no, un mot',
|
||||
'search_no_results' => 'No hi ha documents que coincideixn amb la seva cerca',
|
||||
'search_query' => 'Cercar',
|
||||
'search_report' => 'Trobats [count] documents',
|
||||
'search_report_fulltext' => '',
|
||||
'search_resultmode' => '',
|
||||
'search_resultmode_both' => '',
|
||||
'search_resultmode' => 'Resultats',
|
||||
'search_resultmode_both' => 'Documets i carpetes',
|
||||
'search_results' => 'Resultats de la cerca',
|
||||
'search_results_access_filtered' => 'Els resultats de la cerca podrien incloure continguts amb l\'accés denegat.',
|
||||
'search_time' => 'Temps transcorregut: [time] seg.',
|
||||
'seconds' => '',
|
||||
'selection' => 'Selecció',
|
||||
'select_attrdefgrp_show' => '',
|
||||
'select_category' => '',
|
||||
'select_category' => 'Prem per seleccionar la categoria',
|
||||
'select_groups' => '',
|
||||
'select_grp_approvers' => '',
|
||||
'select_grp_ind_approvers' => '',
|
||||
|
@ -863,8 +880,9 @@ URL: [url]',
|
|||
'select_ind_reviewers' => '',
|
||||
'select_ind_revisors' => '',
|
||||
'select_one' => 'Seleccionar un',
|
||||
'select_users' => '',
|
||||
'select_users' => 'Prem per seleccionar els usuaris',
|
||||
'select_workflow' => '',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'Setembre',
|
||||
'sequence' => 'Seqüència',
|
||||
|
@ -1066,6 +1084,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => '',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => '',
|
||||
'settings_notfound' => '',
|
||||
'settings_Notification' => '',
|
||||
|
@ -1206,6 +1226,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => '',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => '',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => '',
|
||||
|
@ -1216,6 +1238,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => '',
|
||||
'splash_rm_attribute' => '',
|
||||
'splash_rm_document' => 'Document esborrat',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Carpeta esborrada',
|
||||
'splash_rm_group' => '',
|
||||
'splash_rm_group_member' => '',
|
||||
|
@ -1223,6 +1246,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => '',
|
||||
'splash_substituted_user' => '',
|
||||
'splash_switched_back_user' => '',
|
||||
|
@ -1363,6 +1387,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => '',
|
||||
'use_default_categories' => 'Use predefined categories',
|
||||
'use_default_keywords' => 'Utilitzar els mots clau per omisió',
|
||||
'valid_till' => '',
|
||||
'version' => 'Versió',
|
||||
'versioning_file_creation' => 'Creació de fitxer de versions',
|
||||
'versioning_file_creation_warning' => 'Amb aquesta operació podeu crear un fitxer que contingui la informació de versions d\'una carpeta del DMS completa. Després de la creació, tots els fitxers es guardaran a la carpeta de documents.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (718), kreml (455)
|
||||
// Translators: Admin (720), kreml (455)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -278,6 +278,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Vytvořit fulltext index',
|
||||
'create_fulltext_index_warning' => 'Hodláte znovu vytvořit fulltext index. Může to trvat dlouho a zpomalit běh systému. Pokud víte, co děláte, potvďte operaci.',
|
||||
'creation_date' => 'Vytvořeno',
|
||||
|
@ -304,7 +305,7 @@ URL: [url]',
|
|||
'docs_in_reception_no_access' => '',
|
||||
'docs_in_revision_no_access' => '',
|
||||
'document' => 'Dokument',
|
||||
'documentcontent' => '',
|
||||
'documentcontent' => 'Obsah dokumentu',
|
||||
'documents' => 'Dokumenty',
|
||||
'documents_checked_out_by_you' => '',
|
||||
'documents_in_process' => 'Zpracovávané dokumenty',
|
||||
|
@ -383,6 +384,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'Platnost nikdy nevyprší',
|
||||
'does_not_inherit_access_msg' => 'Zdědit přístup',
|
||||
'download' => 'Stáhnout',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Opravit všechny složky a dokumenty.',
|
||||
'do_object_setchecksum' => 'Nastavit kontrolní součet',
|
||||
'do_object_setfilesize' => 'Nastavit velikost souboru',
|
||||
|
@ -400,6 +404,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Pomocí této operace můžete vytvořit soubor se zálohou databáze. Po vytvoření bude soubor zálohy uložen ve složce data vašeho serveru.',
|
||||
'dump_list' => 'Existující soubory záloh',
|
||||
'dump_remove' => 'Odstranit soubor zálohy',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '',
|
||||
'edit' => 'upravit',
|
||||
'edit_attributes' => 'Editovat atributy',
|
||||
|
@ -449,7 +454,16 @@ URL: [url]',
|
|||
'event_details' => 'Údaje akce',
|
||||
'exclude_items' => '',
|
||||
'expired' => 'Platnost vypršela',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Platnost vyprší',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Datum expirace změněno',
|
||||
'expiry_changed_email_body' => 'Datum ukončení platnosti změněn
|
||||
Dokument: [name]
|
||||
|
@ -512,6 +526,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Francouzština',
|
||||
'fullsearch' => 'Fulltextové vyhledávání',
|
||||
'fullsearch_hint' => 'Použijte fultext index',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Fulltext index info',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Atributy',
|
||||
|
@ -531,6 +546,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Souhrn revizí skupiny',
|
||||
'guest_login' => 'Přihlásit se jako host',
|
||||
'guest_login_disabled' => 'Přihlášení jako host je vypnuté.',
|
||||
'hash' => '',
|
||||
'help' => 'Pomoc',
|
||||
'home_folder' => 'Domácí složka',
|
||||
'hook_name' => '',
|
||||
|
@ -630,7 +646,7 @@ URL: [url]',
|
|||
'linked_to_this_version' => '',
|
||||
'link_alt_updatedocument' => 'Hodláte-li nahrát soubory větší než je maximální velikost pro nahrávání, použijte prosím <a href="%s">alternativní stránku</a>.',
|
||||
'link_to_version' => '',
|
||||
'list_access_rights' => '',
|
||||
'list_access_rights' => 'Seznam všech přístupových práv ...',
|
||||
'list_contains_no_access_docs' => '',
|
||||
'list_hooks' => '',
|
||||
'local_file' => 'Lokální soubor',
|
||||
|
@ -812,6 +828,7 @@ Pokud budete mít problém s přihlášením i po změně hesla, kontaktujte Adm
|
|||
'personal_default_keywords' => 'Osobní klíčová slova',
|
||||
'pl_PL' => 'Polština',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -1004,6 +1021,7 @@ URL: [url]',
|
|||
'select_one' => 'Vyberte jeden',
|
||||
'select_users' => 'Kliknutím vyberte uživatele',
|
||||
'select_workflow' => 'Vyberte postup práce',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'Září',
|
||||
'sequence' => 'Posloupnost',
|
||||
|
@ -1205,6 +1223,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Toto je max. počet dokumentů a složek, kterým bude kontrolováno přístupové právo při rekurzivním počítání objektů. Po jeho překročení bude počet složek a dokumentů odhadnut.',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Configure more settings. Default login: admin/admin',
|
||||
'settings_notfound' => '',
|
||||
'settings_Notification' => 'Nastavení upozornění',
|
||||
|
@ -1345,6 +1365,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Uživatel uložen',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Změny složky uloženy',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'Neplatné ID složky',
|
||||
|
@ -1355,6 +1377,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Odstraněno ze schránky',
|
||||
'splash_rm_attribute' => 'Atribut odstraněn',
|
||||
'splash_rm_document' => 'Dokument odstraněn',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Složka smazána',
|
||||
'splash_rm_group' => 'Skupina odstraněna',
|
||||
'splash_rm_group_member' => 'Člen skupiny odstraněn',
|
||||
|
@ -1362,6 +1385,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Uživatel odstraněn',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Nastavení uloženo',
|
||||
'splash_substituted_user' => 'Zaměněný uživatel',
|
||||
'splash_switched_back_user' => 'Přepnuto zpět na původního uživatele',
|
||||
|
@ -1511,6 +1535,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Použijte komentář dokumentu',
|
||||
'use_default_categories' => 'Use predefined categories',
|
||||
'use_default_keywords' => 'Použít předdefinovaná klíčová slova',
|
||||
'valid_till' => '',
|
||||
'version' => 'Verze',
|
||||
'versioning_file_creation' => 'Vytvoření verzování souboru',
|
||||
'versioning_file_creation_warning' => 'Pomocí této operace můžete vytvořit soubor obsahující informace o verzování celé složky DMS. Po vytvoření bude každý soubor uložen uvnitř složky dokumentů.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (2376), dgrutsch (22)
|
||||
// Translators: Admin (2403), dgrutsch (22)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '2-Faktor Authentifizierung',
|
||||
|
@ -283,6 +283,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => 'Kommando',
|
||||
'converter_new_mimetype' => 'Neuer Mime-Type',
|
||||
'copied_to_checkout_as' => 'Datei am [date] in den Checkout-Space als \'[filename]\' kopiert.',
|
||||
'create_download_link' => 'Erzeuge Download Link',
|
||||
'create_fulltext_index' => 'Erzeuge Volltextindex',
|
||||
'create_fulltext_index_warning' => 'Sie möchten den Volltextindex neu erzeugen. Dies kann beträchtlich Zeit in Anspruch nehmen und Gesamtleistung Ihres System beeinträchtigen. Bestätigen Sie bitte diese Operation.',
|
||||
'creation_date' => 'Erstellt am',
|
||||
|
@ -388,6 +389,15 @@ URL: [url]',
|
|||
'does_not_expire' => 'Kein Ablaufdatum',
|
||||
'does_not_inherit_access_msg' => 'Berechtigungen wieder erben',
|
||||
'download' => 'Download',
|
||||
'download_links' => 'Download Links',
|
||||
'download_link_email_body' => 'Klicken Sie bitte auf den untenstehenden Link, um Version [version] des Dokuments \'[docname]\' herunter zu laden.
|
||||
|
||||
[url]
|
||||
|
||||
Der Link ist bis zum [valid] gültig.
|
||||
|
||||
[comment]',
|
||||
'download_link_email_subject' => 'Download-Link',
|
||||
'do_object_repair' => 'Repariere alle Ordner und Dokumente.',
|
||||
'do_object_setchecksum' => 'Setze Check-Summe',
|
||||
'do_object_setfilesize' => 'Setze Dateigröße',
|
||||
|
@ -405,6 +415,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Mit dieser Operation können Sie einen Dump der Datenbank erzeugen. Nach der Erstellung wird der Dump im Datenordner Ihres Servers gespeichert.',
|
||||
'dump_list' => 'Vorhandene DB dumps',
|
||||
'dump_remove' => 'DB dump löschen',
|
||||
'duplicates' => 'Duplikate',
|
||||
'duplicate_content' => 'Doppelte Dateien',
|
||||
'edit' => 'Bearbeiten',
|
||||
'edit_attributes' => 'Edit attributes',
|
||||
|
@ -454,7 +465,16 @@ URL: [url]',
|
|||
'event_details' => 'Ereignisdetails',
|
||||
'exclude_items' => 'Einträge auslassen',
|
||||
'expired' => 'abgelaufen',
|
||||
'expired_at_date' => 'Abgelaufen am [datetime]',
|
||||
'expires' => 'Ablaufdatum',
|
||||
'expire_by_date' => 'Ablauf nach Datum',
|
||||
'expire_in_1d' => 'Ablauf in 1 Tag',
|
||||
'expire_in_1h' => 'Ablauf in 1 Std.',
|
||||
'expire_in_1m' => 'Ablauf in 1 Monat',
|
||||
'expire_in_1w' => 'Ablauf in 1 Woche',
|
||||
'expire_in_2h' => 'Ablauf in 2 Std.',
|
||||
'expire_today' => 'Ablauf heute',
|
||||
'expire_tomorrow' => 'Ablauf morgen',
|
||||
'expiry_changed_email' => 'Ablaufdatum geändert',
|
||||
'expiry_changed_email_body' => 'Ablaufdatum geändert
|
||||
Dokument: [name]
|
||||
|
@ -517,6 +537,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Französisch',
|
||||
'fullsearch' => 'Volltext',
|
||||
'fullsearch_hint' => 'Volltextindex benutzen',
|
||||
'fulltextsearch_disabled' => 'Volltext-Index ist ausgeschaltet',
|
||||
'fulltext_info' => 'Volltext-Index Info',
|
||||
'global_attributedefinitiongroups' => 'Attributgruppen',
|
||||
'global_attributedefinitions' => 'Attribute',
|
||||
|
@ -536,6 +557,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Übersicht Gruppenprüfungen',
|
||||
'guest_login' => 'Als Gast anmelden',
|
||||
'guest_login_disabled' => 'Anmeldung als Gast ist gesperrt.',
|
||||
'hash' => 'Hash-Wert',
|
||||
'help' => 'Hilfe',
|
||||
'home_folder' => 'Heimatordner',
|
||||
'hook_name' => 'Name des Aufrufs',
|
||||
|
@ -820,6 +842,7 @@ Sollen Sie danach immer noch Problem bei der Anmeldung haben, dann kontaktieren
|
|||
'personal_default_keywords' => 'Persönliche Stichwortlisten',
|
||||
'pl_PL' => 'Polnisch',
|
||||
'possible_substitutes' => 'Vertreter',
|
||||
'preset_expires' => 'Fester Ablaufzeitpunkt',
|
||||
'preview' => 'Vorschau',
|
||||
'preview_converters' => 'Vorschau Dokumentenumwandlung',
|
||||
'preview_images' => 'Vorschaubilder',
|
||||
|
@ -1054,6 +1077,7 @@ URL: [url]',
|
|||
'select_one' => 'Bitte wählen',
|
||||
'select_users' => 'Klicken zur Auswahl eines Benutzers',
|
||||
'select_workflow' => 'Workflow auswählen',
|
||||
'send_email' => 'E-Mail verschicken',
|
||||
'send_test_mail' => 'Sende Test-Email',
|
||||
'september' => 'September',
|
||||
'sequence' => 'Reihenfolge',
|
||||
|
@ -1255,6 +1279,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Dies ist die maximale Anzahl der Dokumente und Ordner die auf Zugriffsrechte geprüft werden, wenn rekursiv gezählt wird. Wenn diese Anzahl überschritten wird, wird die Anzahl der Dokumente und Unterordner in der Ordner Ansicht geschätzt.',
|
||||
'settings_maxSizeForFullText' => 'Maximale Dateigröße für sofortige Indezierung',
|
||||
'settings_maxSizeForFullText_desc' => 'Alle neuen Versionen eines Dokuments, die kleiner als die konfigurierte Dateigröße in Bytes sind, werden sofort indiziert. In allen anderen Fällen werden nur die Metadaten erfasst.',
|
||||
'settings_maxUploadSize' => 'Maximale Größe hochzuladener Dateien',
|
||||
'settings_maxUploadSize_desc' => 'Dies ist die maximale Größe einer hochzuladenen Datei. Es begrenzt sowohl Dokumentenversionen als auch Anhänge.',
|
||||
'settings_more_settings' => 'Weitere Einstellungen. Login mit admin/admin',
|
||||
'settings_notfound' => 'Nicht gefunden',
|
||||
'settings_Notification' => 'Benachrichtigungen-Einstellungen',
|
||||
|
@ -1395,6 +1421,8 @@ URL: [url]',
|
|||
'splash_edit_role' => 'Rolle gespeichert',
|
||||
'splash_edit_user' => 'Benutzer gespeichert',
|
||||
'splash_error_add_to_transmittal' => 'Fehler beim Hinzufügen zur Dokumentenliste',
|
||||
'splash_error_rm_download_link' => 'Fehler beim Löschen des Download-Links',
|
||||
'splash_error_send_download_link' => 'Fehler beim Verschicken des Download-Links',
|
||||
'splash_folder_edited' => 'Änderungen am Ordner gespeichert',
|
||||
'splash_importfs' => '[docs] Dokumente und [folders] Ordner importiert',
|
||||
'splash_invalid_folder_id' => 'Ungültige Ordner-ID',
|
||||
|
@ -1405,6 +1433,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Aus der Zwischenablage entfernt',
|
||||
'splash_rm_attribute' => 'Attribut gelöscht',
|
||||
'splash_rm_document' => 'Dokument gelöscht',
|
||||
'splash_rm_download_link' => 'Download-Link gelöscht',
|
||||
'splash_rm_folder' => 'Ordner gelöscht',
|
||||
'splash_rm_group' => 'Gruppe gelöscht',
|
||||
'splash_rm_group_member' => 'Mitglied der Gruppe gelöscht',
|
||||
|
@ -1412,6 +1441,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => 'Dokumentenliste gelöscht',
|
||||
'splash_rm_user' => 'Benutzer gelöscht',
|
||||
'splash_saved_file' => 'Version gespeichert',
|
||||
'splash_send_download_link' => 'Download-Link per E-Mail verschickt.',
|
||||
'splash_settings_saved' => 'Einstellungen gesichert',
|
||||
'splash_substituted_user' => 'Benutzer gewechselt',
|
||||
'splash_switched_back_user' => 'Zum ursprünglichen Benutzer zurückgekehrt',
|
||||
|
@ -1561,6 +1591,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Verwende Kommentar des Dokuments',
|
||||
'use_default_categories' => 'Kategorievorlagen',
|
||||
'use_default_keywords' => 'Stichwortvorlagen',
|
||||
'valid_till' => 'Gültig bis',
|
||||
'version' => 'Version',
|
||||
'versioning_file_creation' => 'Datei-Versionierung',
|
||||
'versioning_file_creation_warning' => 'Mit dieser Operation erzeugen Sie pro Dokument eine Datei, die sämtliche Versions-Informationen des Dokuments enthält. Nach Erstellung wird jede Datei im Dokumentenverzeichnis gespeichert. Die erzeugten Dateien sind für den regulären Betrieb nicht erforderlich. Sie können aber von Nutzen sein, wenn der Dokumentenbestand auf ein anderes System übertragen werden soll.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (215)
|
||||
// Translators: Admin (220)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -256,9 +256,10 @@ $text = array(
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => '',
|
||||
'create_fulltext_index_warning' => '',
|
||||
'creation_date' => '',
|
||||
'creation_date' => 'Δημιουργήθηκε',
|
||||
'cs_CZ' => '',
|
||||
'current_password' => '',
|
||||
'current_quota' => '',
|
||||
|
@ -331,6 +332,9 @@ $text = array(
|
|||
'does_not_expire' => '',
|
||||
'does_not_inherit_access_msg' => '',
|
||||
'download' => '',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => '',
|
||||
'do_object_setchecksum' => '',
|
||||
'do_object_setfilesize' => '',
|
||||
|
@ -348,6 +352,7 @@ $text = array(
|
|||
'dump_creation_warning' => '',
|
||||
'dump_list' => '',
|
||||
'dump_remove' => '',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '',
|
||||
'edit' => '',
|
||||
'edit_attributes' => '',
|
||||
|
@ -359,11 +364,11 @@ $text = array(
|
|||
'edit_event' => '',
|
||||
'edit_existing_access' => '',
|
||||
'edit_existing_attribute_groups' => '',
|
||||
'edit_existing_notify' => '',
|
||||
'edit_folder_access' => '',
|
||||
'edit_existing_notify' => 'Επεξεργασία λίστας ειδοποιήσεων',
|
||||
'edit_folder_access' => 'Επεξεργασία πρόσβασης',
|
||||
'edit_folder_attrdefgrp' => '',
|
||||
'edit_folder_notify' => '',
|
||||
'edit_folder_props' => '',
|
||||
'edit_folder_props' => 'Επεξεργασία φακέλου',
|
||||
'edit_group' => '',
|
||||
'edit_online' => '',
|
||||
'edit_transmittal_props' => '',
|
||||
|
@ -397,7 +402,16 @@ $text = array(
|
|||
'event_details' => '',
|
||||
'exclude_items' => '',
|
||||
'expired' => 'Έχει λήξει',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Λήγει',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Η ημερομηνία λήξης έχει αλλάξει',
|
||||
'expiry_changed_email_body' => '',
|
||||
'expiry_changed_email_subject' => '',
|
||||
|
@ -436,6 +450,7 @@ $text = array(
|
|||
'fr_FR' => 'French/Γαλλικά',
|
||||
'fullsearch' => 'Πλήρης αναζήτηση (full text)',
|
||||
'fullsearch_hint' => '',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => '',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Ιδιότητες',
|
||||
|
@ -455,6 +470,7 @@ $text = array(
|
|||
'group_review_summary' => '',
|
||||
'guest_login' => '',
|
||||
'guest_login_disabled' => '',
|
||||
'hash' => '',
|
||||
'help' => 'Βοήθεια',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -476,7 +492,7 @@ $text = array(
|
|||
'index_converters' => '',
|
||||
'index_done' => '',
|
||||
'index_error' => '',
|
||||
'index_folder' => '',
|
||||
'index_folder' => 'Ταξινόμηση φακέλου',
|
||||
'index_pending' => '',
|
||||
'index_waiting' => '',
|
||||
'individuals' => 'Άτομα',
|
||||
|
@ -713,6 +729,7 @@ URL: [url]',
|
|||
'personal_default_keywords' => '',
|
||||
'pl_PL' => '',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -871,6 +888,7 @@ URL: [url]',
|
|||
'select_one' => '',
|
||||
'select_users' => '',
|
||||
'select_workflow' => '',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'Σεπτέμβριος',
|
||||
'sequence' => 'Σειρά',
|
||||
|
@ -1072,6 +1090,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => '',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => '',
|
||||
'settings_notfound' => '',
|
||||
'settings_Notification' => '',
|
||||
|
@ -1212,6 +1232,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => '',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => '',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => '',
|
||||
|
@ -1222,6 +1244,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => '',
|
||||
'splash_rm_attribute' => '',
|
||||
'splash_rm_document' => '',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => '',
|
||||
'splash_rm_group' => '',
|
||||
'splash_rm_group_member' => '',
|
||||
|
@ -1229,6 +1252,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => '',
|
||||
'splash_substituted_user' => '',
|
||||
'splash_switched_back_user' => '',
|
||||
|
@ -1369,6 +1393,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => '',
|
||||
'use_default_categories' => '',
|
||||
'use_default_keywords' => '',
|
||||
'valid_till' => '',
|
||||
'version' => 'Έκδοση',
|
||||
'versioning_file_creation' => '',
|
||||
'versioning_file_creation_warning' => '',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1503), dgrutsch (9), netixw (14)
|
||||
// Translators: Admin (1531), dgrutsch (9), netixw (14)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '2-factor authentication',
|
||||
|
@ -283,6 +283,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => 'Command',
|
||||
'converter_new_mimetype' => 'New mimetype',
|
||||
'copied_to_checkout_as' => 'File copied to checkout space as \'[filename]\' on [date]',
|
||||
'create_download_link' => 'Create download link',
|
||||
'create_fulltext_index' => 'Create fulltext index',
|
||||
'create_fulltext_index_warning' => 'You are about to recreate the fulltext index. This can take a considerable amount of time and reduce your overall system performance. If you really want to recreate the index, please confirm your operation.',
|
||||
'creation_date' => 'Created',
|
||||
|
@ -388,6 +389,16 @@ URL: [url]',
|
|||
'does_not_expire' => 'Does not expire',
|
||||
'does_not_inherit_access_msg' => 'Inherit access',
|
||||
'download' => 'Download',
|
||||
'download_links' => 'Download links',
|
||||
'download_link_email_body' => 'Click on the link below to download the version [version] of document
|
||||
\'[docname]\'.
|
||||
|
||||
[url]
|
||||
|
||||
The link is valid until [valid].
|
||||
|
||||
[comment]',
|
||||
'download_link_email_subject' => 'Download link',
|
||||
'do_object_repair' => 'Repair all folders and documents.',
|
||||
'do_object_setchecksum' => 'Set checksum',
|
||||
'do_object_setfilesize' => 'Set file size',
|
||||
|
@ -405,6 +416,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'With this operation you can create a dump file of your database content. After the creation the dump file will be saved in the data folder of your server.',
|
||||
'dump_list' => 'Existings dump files',
|
||||
'dump_remove' => 'Remove dump file',
|
||||
'duplicates' => 'Duplicates',
|
||||
'duplicate_content' => 'Duplicate Content',
|
||||
'edit' => 'Edit',
|
||||
'edit_attributes' => 'Edit attributes',
|
||||
|
@ -454,7 +466,16 @@ URL: [url]',
|
|||
'event_details' => 'Event details',
|
||||
'exclude_items' => 'Exclude items',
|
||||
'expired' => 'Expired',
|
||||
'expired_at_date' => 'Expired at [datetime]',
|
||||
'expires' => 'Expires',
|
||||
'expire_by_date' => 'Expires by date',
|
||||
'expire_in_1d' => 'Expires in 1 day',
|
||||
'expire_in_1h' => 'Expires in 1h',
|
||||
'expire_in_1m' => 'Expires in 1 month',
|
||||
'expire_in_1w' => 'Expires in 1 week',
|
||||
'expire_in_2h' => 'Expires in 2h',
|
||||
'expire_today' => 'Expires today',
|
||||
'expire_tomorrow' => 'Expires tomorrow',
|
||||
'expiry_changed_email' => 'Expiry date changed',
|
||||
'expiry_changed_email_body' => 'Expiry date changed
|
||||
Document: [name]
|
||||
|
@ -517,6 +538,7 @@ URL: [url]',
|
|||
'fr_FR' => 'French',
|
||||
'fullsearch' => 'Full text search',
|
||||
'fullsearch_hint' => 'Use fulltext index',
|
||||
'fulltextsearch_disabled' => 'Fulltext index is disabled',
|
||||
'fulltext_info' => 'Fulltext index info',
|
||||
'global_attributedefinitiongroups' => 'Attribute groups',
|
||||
'global_attributedefinitions' => 'Attributes',
|
||||
|
@ -536,6 +558,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Group review summary',
|
||||
'guest_login' => 'Login as guest',
|
||||
'guest_login_disabled' => 'Guest login is disabled.',
|
||||
'hash' => 'Hash',
|
||||
'help' => 'Help',
|
||||
'home_folder' => 'Home folder',
|
||||
'hook_name' => 'Name of hook',
|
||||
|
@ -821,6 +844,7 @@ If you have still problems to login, then please contact your administrator.',
|
|||
'personal_default_keywords' => 'Personal keywordlists',
|
||||
'pl_PL' => 'Polish',
|
||||
'possible_substitutes' => 'Substitutes',
|
||||
'preset_expires' => 'Preset expiration',
|
||||
'preview' => 'Preview',
|
||||
'preview_converters' => 'Preview document conversion',
|
||||
'preview_images' => 'Preview images',
|
||||
|
@ -1048,6 +1072,7 @@ URL: [url]',
|
|||
'select_one' => 'Select one',
|
||||
'select_users' => 'Click to select users',
|
||||
'select_workflow' => 'Select workflow',
|
||||
'send_email' => 'Send email',
|
||||
'send_test_mail' => 'Send test mail',
|
||||
'september' => 'September',
|
||||
'sequence' => 'Sequence',
|
||||
|
@ -1249,6 +1274,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'This is the maximum number of documents or folders that will be checked for access rights, when recursively counting objects. If this number is exceeded, the number of documents and folders in the folder view will be estimated.',
|
||||
'settings_maxSizeForFullText' => 'Maximum filesize for instant indexing',
|
||||
'settings_maxSizeForFullText_desc' => 'All new document version smaller than the configured size will be fully indexed right after uploading. In all other cases only the metadata will be indexed.',
|
||||
'settings_maxUploadSize' => 'Maxium size for uploaded files',
|
||||
'settings_maxUploadSize_desc' => 'This is the maximum size for uploaded files. It will take affect for document versions and attachments.',
|
||||
'settings_more_settings' => 'Configure more settings. Default login: admin/admin',
|
||||
'settings_notfound' => 'Not found',
|
||||
'settings_Notification' => 'Notification settings',
|
||||
|
@ -1389,6 +1416,8 @@ URL: [url]',
|
|||
'splash_edit_role' => 'Role saved',
|
||||
'splash_edit_user' => 'User saved',
|
||||
'splash_error_add_to_transmittal' => 'Error while adding document to transmittal',
|
||||
'splash_error_rm_download_link' => 'Error when removing download link',
|
||||
'splash_error_send_download_link' => 'Error while sending download link',
|
||||
'splash_folder_edited' => 'Save folder changes',
|
||||
'splash_importfs' => 'Imported [docs] documents and [folders] folders',
|
||||
'splash_invalid_folder_id' => 'Invalid folder ID',
|
||||
|
@ -1399,6 +1428,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Removed from clipboard',
|
||||
'splash_rm_attribute' => 'Attribute removed',
|
||||
'splash_rm_document' => 'Document removed',
|
||||
'splash_rm_download_link' => 'Removed download link',
|
||||
'splash_rm_folder' => 'Folder deleted',
|
||||
'splash_rm_group' => 'Group removed',
|
||||
'splash_rm_group_member' => 'Member of group removed',
|
||||
|
@ -1406,6 +1436,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => 'Transmittal deleted',
|
||||
'splash_rm_user' => 'User removed',
|
||||
'splash_saved_file' => 'Version saved',
|
||||
'splash_send_download_link' => 'Download link sent by email.',
|
||||
'splash_settings_saved' => 'Settings saved',
|
||||
'splash_substituted_user' => 'Substituted user',
|
||||
'splash_switched_back_user' => 'Switched back to original user',
|
||||
|
@ -1555,6 +1586,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Use comment of document',
|
||||
'use_default_categories' => 'Use predefined categories',
|
||||
'use_default_keywords' => 'Use predefined keywords',
|
||||
'valid_till' => 'Valid till',
|
||||
'version' => 'Version',
|
||||
'versioning_file_creation' => 'Versioning file creation',
|
||||
'versioning_file_creation_warning' => 'With this operation you can create a file for each document containing the versioning information of that document. After the creation every file will be saved inside the document folder. Those files are not needed for the regular operation of the dms, but could be of value if the complete repository shall be transferred to an other system.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: acabello (20), Admin (1009), angel (123), francisco (2), jaimem (14)
|
||||
// Translators: acabello (20), Admin (1016), angel (123), francisco (2), jaimem (14)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -250,7 +250,7 @@ URL: [url]',
|
|||
'clear_password' => '',
|
||||
'clipboard' => 'Portapapeles',
|
||||
'close' => 'Cerrar',
|
||||
'command' => '',
|
||||
'command' => 'Comando',
|
||||
'comment' => 'Comentarios',
|
||||
'comment_changed_email' => '',
|
||||
'comment_for_current_version' => 'Comentario de la versión actual',
|
||||
|
@ -278,6 +278,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Crear índice de texto completo',
|
||||
'create_fulltext_index_warning' => 'Usted va a regenerar el índice te texto completo. Esto puede tardar un tiempo considerable y consumir capacidad de su equipo. Si realmente quiere regenerar el índice, por favor confirme la operación.',
|
||||
'creation_date' => 'Creación',
|
||||
|
@ -383,6 +384,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'No caduca',
|
||||
'does_not_inherit_access_msg' => 'heredar el acceso',
|
||||
'download' => 'Descargar',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Reparar todas las carpetas y documentos.',
|
||||
'do_object_setchecksum' => 'Set checksum',
|
||||
'do_object_setfilesize' => 'Asignar tamaño de fichero',
|
||||
|
@ -400,6 +404,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Con esta operación se creará un volcado a fichero del contenido de la base de datos. Después de la creación del volcado el fichero se guardará en la carpeta de datos de su servidor.',
|
||||
'dump_list' => 'Ficheros de volcado existentes',
|
||||
'dump_remove' => 'Eliminar fichero de volcado',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'Contenido duplicado',
|
||||
'edit' => 'editar',
|
||||
'edit_attributes' => 'Editar atributos',
|
||||
|
@ -449,7 +454,16 @@ URL: [url]',
|
|||
'event_details' => 'Detalles del evento',
|
||||
'exclude_items' => 'Registros excluidos',
|
||||
'expired' => 'Caducado',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Caduca',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Fecha de caducidad modificada',
|
||||
'expiry_changed_email_body' => 'Fecha de caducidad modificada
|
||||
Documento: [name]
|
||||
|
@ -512,6 +526,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Frances',
|
||||
'fullsearch' => 'Búsqueda en texto completo',
|
||||
'fullsearch_hint' => 'Utilizar índice de texto completo',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Información de índice de texto completo',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Definición de atributos',
|
||||
|
@ -531,6 +546,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Resumen del grupo revisor',
|
||||
'guest_login' => 'Acceso como invitado',
|
||||
'guest_login_disabled' => 'La cuenta de invitado está deshabilitada.',
|
||||
'hash' => '',
|
||||
'help' => 'Ayuda',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -816,6 +832,7 @@ Si continua teniendo problemas de acceso, por favor contacte con el administrado
|
|||
'personal_default_keywords' => 'Listas de palabras clave personales',
|
||||
'pl_PL' => 'Polaco',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -1010,7 +1027,8 @@ URL: [url]',
|
|||
'select_one' => 'Seleccionar uno',
|
||||
'select_users' => 'Haga Click para seleccionar usuarios',
|
||||
'select_workflow' => 'Selecionar Flujo de Trabajo',
|
||||
'send_test_mail' => '',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => 'Enviar correo de prueba',
|
||||
'september' => 'Septiembre',
|
||||
'sequence' => 'Secuencia',
|
||||
'seq_after' => 'Después "[prevname]"',
|
||||
|
@ -1027,7 +1045,7 @@ URL: [url]',
|
|||
'settings_advancedAcl_desc' => '',
|
||||
'settings_apache_mod_rewrite' => 'Apache - Módulo Reescritura',
|
||||
'settings_Authentication' => 'Configuración de autenticación',
|
||||
'settings_autoLoginUser' => '',
|
||||
'settings_autoLoginUser' => 'Acceso automatico',
|
||||
'settings_autoLoginUser_desc' => '',
|
||||
'settings_available_languages' => 'Idiomas disponibles',
|
||||
'settings_available_languages_desc' => '',
|
||||
|
@ -1048,7 +1066,7 @@ URL: [url]',
|
|||
'settings_contentOffsetDir' => 'Carpeta de contenidos de desplazamiento',
|
||||
'settings_contentOffsetDir_desc' => 'Para tratar las limitaciones del sistema de ficheros subyacentes, se ha ideado una estructura de carpetas dentro de la carpeta de contenido. Esto requiere una carpeta base desde la que comenzar. Normalmente puede dejar este valor por defecto, 1048576, pero puede ser cualquier número o cadena que no exista ya dentro de ella (carpeta de contenido).',
|
||||
'settings_convertToPdf' => 'Convertir documento en PDF para pervisualización',
|
||||
'settings_convertToPdf_desc' => '',
|
||||
'settings_convertToPdf_desc' => 'Si un documento no puede ser visualizado nativamente en el navegador, una versión convertida a PDF sera mostrada.',
|
||||
'settings_cookieLifetime' => 'Tiempo de vida de las cookies',
|
||||
'settings_cookieLifetime_desc' => 'Tiempo de vida de las cookies en segundos. Si asigna 0 la cookie será eliminada cuando el navegador se cierre.',
|
||||
'settings_coreDir' => 'Carpeta de SeedDMS Core',
|
||||
|
@ -1070,8 +1088,8 @@ URL: [url]',
|
|||
'settings_dbUser' => 'Nombre de usuario',
|
||||
'settings_dbUser_desc' => 'Nombre de usuario de acceso a su base de datos introducido durante el proceso de instalación. No edite este campo a menos que sea necesario, por ejemplo si la base de datos se transfiere a un nuevo servidor.',
|
||||
'settings_dbVersion' => 'Esquema de base de datos demasiado antiguo',
|
||||
'settings_defaultAccessDocs' => '',
|
||||
'settings_defaultAccessDocs_desc' => '',
|
||||
'settings_defaultAccessDocs' => 'Acceso por defecto de nuevos documentos',
|
||||
'settings_defaultAccessDocs_desc' => 'Cuando un nuevo documento sea creado, este sera el acceso por defecto.',
|
||||
'settings_defaultSearchMethod' => 'Método de búsqueda por defecto',
|
||||
'settings_defaultSearchMethod_desc' => 'Método de búsqueda por defecto, cuando se inicia una búsqueda mediante el formulario en el menú principal',
|
||||
'settings_defaultSearchMethod_valdatabase' => 'base de datos',
|
||||
|
@ -1144,7 +1162,7 @@ URL: [url]',
|
|||
'settings_enableThemeSelector_desc' => 'Habilitar/deshabilitar la selección de temas en la página de login',
|
||||
'settings_enableUpdateReceipt' => '',
|
||||
'settings_enableUpdateReceipt_desc' => '',
|
||||
'settings_enableUpdateRevApp' => '',
|
||||
'settings_enableUpdateRevApp' => 'Permitir edición de revisión/aprobación existente',
|
||||
'settings_enableUpdateRevApp_desc' => '',
|
||||
'settings_enableUserImage' => 'Habilitar imágenes de usuario',
|
||||
'settings_enableUserImage_desc' => 'Habilitar imágenes de usuario',
|
||||
|
@ -1211,6 +1229,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Este es el número máximo de documentos o carpetas que pueden ser revisados con derechos de acceso, contando objetos recursivos. Si este número es excedido , el número de carpetas y documentos en la vista de carpeta será estimado.',
|
||||
'settings_maxSizeForFullText' => 'Tamaño máximo del fichero para el indexado inmediato',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Configure más parámetros. Acceso por defecto: admin/admin',
|
||||
'settings_notfound' => 'No encontrado',
|
||||
'settings_Notification' => 'Parámetros de notificación',
|
||||
|
@ -1351,6 +1371,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Usuario guardado',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Cambios a la carpeta guardados',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'ID de carpeta inválido',
|
||||
|
@ -1361,6 +1383,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Eliminado del portapapeles',
|
||||
'splash_rm_attribute' => 'Atributo eliminado',
|
||||
'splash_rm_document' => 'Documento eliminado',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Carpeta eliminada',
|
||||
'splash_rm_group' => 'Grupo eliminado',
|
||||
'splash_rm_group_member' => 'Miembro eliminado del grupo',
|
||||
|
@ -1368,6 +1391,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Usuario eliminado',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Configuración guardada',
|
||||
'splash_substituted_user' => 'Usuario sustituido',
|
||||
'splash_switched_back_user' => 'Cambió de nuevo al usuario original',
|
||||
|
@ -1517,6 +1541,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Usar comentario del documento',
|
||||
'use_default_categories' => 'Utilizar categorías predefinidas',
|
||||
'use_default_keywords' => 'Utilizar palabras claves por defecto',
|
||||
'valid_till' => '',
|
||||
'version' => 'Versión',
|
||||
'versioning_file_creation' => 'Creación de fichero de versiones',
|
||||
'versioning_file_creation_warning' => 'Con esta operación usted puede crear un fichero que contenga la información de versiones de una carpeta del DMS completa. Después de la creación todos los ficheros se guardarán en la carpeta de documentos.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1060), jeromerobert (50), lonnnew (9), Oudiceval (182)
|
||||
// Translators: Admin (1060), jeromerobert (50), lonnnew (9), Oudiceval (218)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => 'Authentification forte',
|
||||
|
@ -238,7 +238,7 @@ URL: [url]',
|
|||
'checkout_is_disabled' => 'Le blocage (check-out) de documents est désactivé dans la configuration.',
|
||||
'choose_attrdef' => 'Choisissez une définition d\'attribut',
|
||||
'choose_attrdefgroup' => '',
|
||||
'choose_category' => 'SVP choisir',
|
||||
'choose_category' => 'Sélectionnez une catégorie',
|
||||
'choose_group' => 'Choisir un groupe',
|
||||
'choose_role' => '',
|
||||
'choose_target_category' => 'Choisir une catégorie',
|
||||
|
@ -283,6 +283,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => 'Commande',
|
||||
'converter_new_mimetype' => 'Nouveau type MIME',
|
||||
'copied_to_checkout_as' => 'Fichier copié dans l’espace de blocage en tant que « [filename] » ([date])',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Créer un index de recherche plein texte',
|
||||
'create_fulltext_index_warning' => 'Vous allez recréer l\'index de recherche plein texte. Cela peut prendre un temps considérable et réduire les performances de votre système dans son ensemble. Si vous voulez vraiment recréer l\'index, merci de confirmer votre opération.',
|
||||
'creation_date' => 'Créé le',
|
||||
|
@ -388,6 +389,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'N\'expire jamais',
|
||||
'does_not_inherit_access_msg' => 'Accès hérité',
|
||||
'download' => 'Téléchargement',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Réparer tous les dossiers et documents.',
|
||||
'do_object_setchecksum' => 'Définir checksum',
|
||||
'do_object_setfilesize' => 'Définir la taille du fichier',
|
||||
|
@ -405,6 +409,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Avec cette opération, vous pouvez créer une sauvegarde du contenu de votre base de données. Après la création, le fichier de sauvegarde sera sauvegardé dans le dossier de données de votre serveur.',
|
||||
'dump_list' => 'Fichiers de sauvegarde existants',
|
||||
'dump_remove' => 'Supprimer fichier de sauvegarde',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'Contenu en double',
|
||||
'edit' => 'Modifier',
|
||||
'edit_attributes' => 'Modifier les attributs',
|
||||
|
@ -426,7 +431,7 @@ URL: [url]',
|
|||
'edit_transmittal_props' => '',
|
||||
'edit_user' => 'Modifier un utilisateur',
|
||||
'edit_user_details' => 'Modifier les détails d\'utilisateur',
|
||||
'edit_version' => '',
|
||||
'edit_version' => 'Modifier le fichier',
|
||||
'el_GR' => 'Grec',
|
||||
'email' => 'E-mail',
|
||||
'email_error_title' => 'Aucun e-mail indiqué',
|
||||
|
@ -454,7 +459,16 @@ URL: [url]',
|
|||
'event_details' => 'Détails de l\'événement',
|
||||
'exclude_items' => 'Exclure des élements',
|
||||
'expired' => 'Expiré',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Expiration',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Date d\'expiration modifiée',
|
||||
'expiry_changed_email_body' => 'Date d\'expiration modifiée
|
||||
Document : [name]
|
||||
|
@ -517,6 +531,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Français',
|
||||
'fullsearch' => 'Recherche dans le contenu',
|
||||
'fullsearch_hint' => 'Utiliser la recherche plein texte',
|
||||
'fulltextsearch_disabled' => 'La recherche plein texte est désactivée.',
|
||||
'fulltext_info' => 'Information sur l\'index plein texte',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Définitions d\'attributs',
|
||||
|
@ -529,13 +544,14 @@ URL: [url]',
|
|||
'groups' => 'Groupes',
|
||||
'group_approval_summary' => 'Résumé groupe d\'approbation',
|
||||
'group_exists' => 'Ce groupe existe déjà.',
|
||||
'group_info' => '',
|
||||
'group_info' => 'Informations du groupe',
|
||||
'group_management' => 'Groupes',
|
||||
'group_members' => 'Membres de groupes',
|
||||
'group_receipt_summary' => '',
|
||||
'group_review_summary' => 'Résumé groupe correcteur',
|
||||
'guest_login' => 'Se connecter comme invité',
|
||||
'guest_login_disabled' => 'Connexion d\'invité désactivée.',
|
||||
'hash' => '',
|
||||
'help' => 'Aide',
|
||||
'home_folder' => 'Dossier personnel',
|
||||
'hook_name' => '',
|
||||
|
@ -553,13 +569,13 @@ URL: [url]',
|
|||
'include_content' => '',
|
||||
'include_documents' => 'Inclure les documents',
|
||||
'include_subdirectories' => 'Inclure les sous-dossiers',
|
||||
'indexing_tasks_in_queue' => '',
|
||||
'indexing_tasks_in_queue' => 'Opérations d’indexation en attente',
|
||||
'index_converters' => 'Conversion de document Index',
|
||||
'index_done' => '',
|
||||
'index_error' => '',
|
||||
'index_done' => 'Terminé',
|
||||
'index_error' => 'Erreur',
|
||||
'index_folder' => 'Dossier Index',
|
||||
'index_pending' => '',
|
||||
'index_waiting' => '',
|
||||
'index_pending' => 'En attente',
|
||||
'index_waiting' => 'Chargement…',
|
||||
'individuals' => 'Individuels',
|
||||
'indivіduals_in_groups' => '',
|
||||
'inherited' => 'hérité',
|
||||
|
@ -598,21 +614,21 @@ URL: [url]',
|
|||
'js_form_error' => 'Le formulaire contient encore # erreur.',
|
||||
'js_form_errors' => 'Le formulaire contient encore # erreurs.',
|
||||
'js_invalid_email' => 'L\'adresse e-mail est invalide',
|
||||
'js_no_approval_group' => 'SVP Sélectionnez un groupe d\'approbation',
|
||||
'js_no_approval_status' => 'SVP Sélectionnez le statut d\'approbation',
|
||||
'js_no_approval_group' => 'Veuillez sélectionner un groupe d’approbation',
|
||||
'js_no_approval_status' => 'Veuillez sélectionner le statut d’approbation',
|
||||
'js_no_comment' => 'Il n\'y a pas de commentaires',
|
||||
'js_no_email' => 'Saisissez votre adresse e-mail',
|
||||
'js_no_file' => 'SVP Sélectionnez un fichier',
|
||||
'js_no_file' => 'Veuillez sélectionner un fichier',
|
||||
'js_no_keywords' => 'Spécifiez quelques mots-clés',
|
||||
'js_no_login' => 'SVP Saisissez un identifiant',
|
||||
'js_no_login' => 'Veuillez saisir un identifiant',
|
||||
'js_no_name' => 'Veuillez saisir un nom',
|
||||
'js_no_override_status' => 'SVP Sélectionner le nouveau [override] statut',
|
||||
'js_no_override_status' => 'Veuillez sélectionner le nouveau statut [override]',
|
||||
'js_no_pwd' => 'Vous devez saisir votre mot de passe',
|
||||
'js_no_query' => 'Saisir une requête',
|
||||
'js_no_review_group' => 'SVP Sélectionner un groupe de correcteur',
|
||||
'js_no_review_status' => 'SVP Sélectionner le statut de correction',
|
||||
'js_no_review_group' => 'Veuillez sélectionner un groupe de correcteurs',
|
||||
'js_no_review_status' => 'Veuillez sélectionner le statut de correction',
|
||||
'js_pwd_not_conf' => 'Mot de passe et confirmation de mot de passe non identiques',
|
||||
'js_select_user' => 'SVP Sélectionnez un utilisateur',
|
||||
'js_select_user' => 'Veuillez sélectionner un utilisateur',
|
||||
'js_select_user_or_group' => 'Sélectionner au moins un utilisateur ou un groupe',
|
||||
'js_unequal_passwords' => 'Les mots de passe ne sont pas identiques',
|
||||
'july' => 'Juillet',
|
||||
|
@ -778,7 +794,7 @@ URL: [url]',
|
|||
'only_jpg_user_images' => 'Images d\'utilisateur au format .jpg seulement',
|
||||
'order_by_sequence_off' => 'Le tri par séquence est désactivé dans les préférences. Si vous souhaitez que ce paramètre prenne effet, vous devez l\'activer.',
|
||||
'original_filename' => 'Nom de fichier original',
|
||||
'overall_indexing_progress' => '',
|
||||
'overall_indexing_progress' => 'Progression globale de l’indexation',
|
||||
'owner' => 'Propriétaire',
|
||||
'ownership_changed_email' => 'Propriétaire modifié',
|
||||
'ownership_changed_email_body' => 'Propriétaire modifié
|
||||
|
@ -815,14 +831,15 @@ En cas de problème persistant, veuillez contacter votre administrateur.',
|
|||
'password_wrong' => 'Mauvais mot de passe',
|
||||
'pending_approvals' => '',
|
||||
'pending_reviews' => '',
|
||||
'pending_workflows' => '',
|
||||
'pending_workflows' => 'Workflows en attente',
|
||||
'personal_default_keywords' => 'Mots-clés personnels',
|
||||
'pl_PL' => 'Polonais',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => 'Aperçu',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => 'Prévisualisation des images',
|
||||
'preview_markdown' => '',
|
||||
'preview_images' => 'Miniatures',
|
||||
'preview_markdown' => 'Prévisualisation',
|
||||
'preview_plain' => 'Texte',
|
||||
'previous_state' => 'État précédent',
|
||||
'previous_versions' => 'Versions précédentes',
|
||||
|
@ -998,6 +1015,7 @@ URL: [url]',
|
|||
'select_one' => 'Selectionner',
|
||||
'select_users' => 'Cliquer pour choisir un utilisateur',
|
||||
'select_workflow' => 'Choisir un workflow',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => 'Envoyer un e-mail test',
|
||||
'september' => 'Septembre',
|
||||
'sequence' => 'Position dans le répertoire',
|
||||
|
@ -1031,7 +1049,7 @@ URL: [url]',
|
|||
'settings_checkOutDir_desc' => '',
|
||||
'settings_cmdTimeout' => 'Délai d\'expiration pour les commandes externes',
|
||||
'settings_cmdTimeout_desc' => 'Cette durée en secondes détermine quand une commande externe (par exemple pour la création de l\'index de texte intégral) sera terminée.',
|
||||
'settings_contentDir' => 'Contenu du répertoire',
|
||||
'settings_contentDir' => 'Répertoire du contenu',
|
||||
'settings_contentDir_desc' => 'Endroit ou les fichiers téléchargés sont stockés (il est préférable de choisir un répertoire qui n\'est pas accessible par votre serveur web)',
|
||||
'settings_contentOffsetDir' => 'Content Offset Directory',
|
||||
'settings_contentOffsetDir_desc' => 'To work around limitations in the underlying file system, a new directory structure has been devised that exists within the content directory (Content Directory). This requires a base directory from which to begin. Usually leave this to the default setting, 1048576, but can be any number or string that does not already exist within (Content Directory)',
|
||||
|
@ -1072,8 +1090,8 @@ URL: [url]',
|
|||
'settings_dropFolderDir' => 'Répertoire de dépôt de fichier sur le serveur',
|
||||
'settings_dropFolderDir_desc' => 'Ce répertoire peut être utilisé pour déposer des fichiers sur le serveur et les importer à partir d\'ici au lieu de les charger à partir du navigateur. Le répertoire doit avoir un sous-répertoire pour chaque utilisateur autorisé à importer des fichiers de cette manière.',
|
||||
'settings_Edition' => 'Paramètres d’édition',
|
||||
'settings_editOnlineFileTypes' => 'Editer le type de fichier',
|
||||
'settings_editOnlineFileTypes_desc' => 'Editer la description du type de fichier',
|
||||
'settings_editOnlineFileTypes' => 'Types de fichiers éditables',
|
||||
'settings_editOnlineFileTypes_desc' => 'Le contenu des fichiers portant les extensions précisées pourra être modifié en ligne (utiliser des lettres minuscules)',
|
||||
'settings_enable2FactorAuthentication' => 'Activer l’authentification forte',
|
||||
'settings_enable2FactorAuthentication_desc' => 'Active/désactive l\'authentification forte à 2 facteurs. Les utilisateurs devront installer Google Authenticator sur leur téléphone mobile.',
|
||||
'settings_enableAcknowledgeWorkflow' => '',
|
||||
|
@ -1096,8 +1114,8 @@ URL: [url]',
|
|||
'settings_enableEmail_desc' => 'Activer/désactiver la notification automatique par E-mail',
|
||||
'settings_enableFolderTree' => 'Activer l\'arborescence des dossiers',
|
||||
'settings_enableFolderTree_desc' => 'False pour ne pas montrer l\'arborescence des dossiers',
|
||||
'settings_enableFullSearch' => 'Recherches dans le contenu',
|
||||
'settings_enableFullSearch_desc' => 'Activer la recherche texte plein',
|
||||
'settings_enableFullSearch' => 'Activer la recherche plein texte',
|
||||
'settings_enableFullSearch_desc' => 'Activer la recherche plein texte (dans le contenu des fichiers).',
|
||||
'settings_enableGuestAutoLogin' => 'Activer la connexion automatique pour le compte invité',
|
||||
'settings_enableGuestAutoLogin_desc' => 'Si le compte invité et la connexion automatique sont activés alors le compte invité sera connecté automatiquement.',
|
||||
'settings_enableGuestLogin' => 'Activer la connexion Invité',
|
||||
|
@ -1157,7 +1175,7 @@ URL: [url]',
|
|||
'settings_firstDayOfWeek_desc' => 'Premier jour de la semaine',
|
||||
'settings_footNote' => 'Note de bas de page',
|
||||
'settings_footNote_desc' => 'Message à afficher au bas de chaque page',
|
||||
'settings_fullSearchEngine' => 'Moteur de recherche texte complet',
|
||||
'settings_fullSearchEngine' => 'Moteur de recherche plein texte',
|
||||
'settings_fullSearchEngine_desc' => 'Définissez la méthode utilisée pour la recherche complète de texte.',
|
||||
'settings_fullSearchEngine_vallucene' => 'Zend Lucene',
|
||||
'settings_fullSearchEngine_valsqlitefts' => 'SQLiteFTS',
|
||||
|
@ -1176,7 +1194,7 @@ URL: [url]',
|
|||
'settings_install_success' => 'L\'installation est terminée avec succès',
|
||||
'settings_install_welcome_text' => '<p>Avant de commencer l\'installation de SeedDMS, assurez-vous d\'avoir créé un fichier \'ENABLE_INSTALL_TOOL\' dans votre répertoire de configuration, sinon l\'installation ne fonctionnera pas. Sur des systèmes Unix, cela peut se faire simplement avec \'touch / ENABLE_INSTALL_TOOL\'. Une fois l\'installation terminée, supprimez le fichier.</p><p>SeedDMS a des exigences très minimes. Vous aurez besoin d\'une base de données MySQL ou SQLite et d\'un serveur web PHP. Le package Pear "Log" doit également être installé. Pour la recherche via Lucene, vous devez également installer le framework Zend sur le disque à un emplacement accessible par PHP. Pour le serveur WebDAV, vous aurez besoin d\'installer HTTP_WebDAV_Server. Le chemin d’accès peut être défini ultérieurement pendant l’installation.</p><p>Si vous préférez créer la base de données avant de commencer l\'installation, créez la manuellement avec votre outil favori, créez éventuellement un utilisateur de base de données avec accès sur la base et importez un export de base du répertoire de configuration. Le script d\'installation peut le faire pour vous, mais il requiert un accès à la base de données avec les droits suffisants pour créer des bases de données.</p>',
|
||||
'settings_install_welcome_title' => 'Bienvenue dans l\'installation de SeedDMS',
|
||||
'settings_install_zendframework' => 'Installer le Framework Zend, si vous avez l\'intention d\'utiliser le moteur de recherche texte complète',
|
||||
'settings_install_zendframework' => 'Installez Zend Framework si vous avez l’intention d’utiliser le moteur de recherche plein texte basé sur Zend. Sinon, continuez l’installation en ignorant ce message.',
|
||||
'settings_language' => 'Langue par défaut',
|
||||
'settings_language_desc' => 'Langue par défaut (nom d\'un sous-dossier dans le dossier "languages")',
|
||||
'settings_libraryFolder' => '',
|
||||
|
@ -1199,6 +1217,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Nombre maximum de documents et répertoires dont l\'accès sera vérifié, lors d\'un décompte récursif. Si ce nombre est dépassé, le nombre de documents et répertoires affichés sera approximé.',
|
||||
'settings_maxSizeForFullText' => 'Taille maximum pour l\'indexation instantanée',
|
||||
'settings_maxSizeForFullText_desc' => 'Toute nouvelle version d\'un document plus petite que la taille configurée sera intégralement indexée juste après l\'upload. Dans tous les autres cas, seulement les métadonnées seront indexées.',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Configurer d\'autres paramètres. Connexion par défaut: admin/admin',
|
||||
'settings_notfound' => 'Introuvable',
|
||||
'settings_Notification' => 'Notifications',
|
||||
|
@ -1280,7 +1300,7 @@ URL: [url]',
|
|||
'settings_stagingDir_desc' => 'Le répertoire où jumploader mets les parts d\'un fichier chargé avant de le reconstituer.',
|
||||
'settings_start_install' => 'Démarrer l\'installation',
|
||||
'settings_stopWordsFile' => 'Fichier des mots à exclure',
|
||||
'settings_stopWordsFile_desc' => 'Si la recherche de texte complète est activée, ce fichier contient les mots non indexés',
|
||||
'settings_stopWordsFile_desc' => 'Si la recherche plein texte est activée, ce fichier contient la liste des mots à ne pas indexer.',
|
||||
'settings_strictFormCheck' => 'Formulaires stricts',
|
||||
'settings_strictFormCheck_desc' => 'Contrôl strict des formulaires. Si définie sur true, tous les champs du formulaire seront vérifié. Si définie sur false, les commentaires et mots clés deviennent facultatifs. Les commentaires sont toujours nécessaires lors de la soumission d\'une correction ou état du document',
|
||||
'settings_suggestionvalue' => 'Valeur suggérée',
|
||||
|
@ -1330,16 +1350,18 @@ URL: [url]',
|
|||
'splash_document_added' => 'Document ajouté',
|
||||
'splash_document_checkedout' => 'Document bloqué',
|
||||
'splash_document_edited' => 'Document sauvegardé',
|
||||
'splash_document_indexed' => '',
|
||||
'splash_document_indexed' => 'Document « [name] » indexé.',
|
||||
'splash_document_locked' => 'Document vérouillé',
|
||||
'splash_document_unlocked' => 'Document déverrouillé',
|
||||
'splash_edit_attribute' => 'Attribut modifié',
|
||||
'splash_edit_event' => '',
|
||||
'splash_edit_event' => 'Événement modifié',
|
||||
'splash_edit_group' => 'Groupe sauvé',
|
||||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Utilisateur modifié',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_folder_edited' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Dossier modifié',
|
||||
'splash_importfs' => '[docs] documents et [folders] dossiers importés',
|
||||
'splash_invalid_folder_id' => 'Identifiant de répertoire invalide',
|
||||
'splash_invalid_searchterm' => 'Recherche invalide',
|
||||
|
@ -1349,6 +1371,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Enlevé du presse-papiers',
|
||||
'splash_rm_attribute' => 'Attribut supprimé',
|
||||
'splash_rm_document' => 'Document supprimé',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Dossier supprimé',
|
||||
'splash_rm_group' => 'Groupe supprimé',
|
||||
'splash_rm_group_member' => 'Membre retiré du groupe',
|
||||
|
@ -1356,6 +1379,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Utilisateur supprimé',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Configuration sauvegardée',
|
||||
'splash_substituted_user' => 'Utilisateur de substitution',
|
||||
'splash_switched_back_user' => 'Revenu à l\'utilisateur initial',
|
||||
|
@ -1505,6 +1529,7 @@ URL : [url]',
|
|||
'use_comment_of_document' => 'Utiliser le commentaire du document',
|
||||
'use_default_categories' => 'Use predefined categories',
|
||||
'use_default_keywords' => 'Utiliser les mots-clés prédéfinis',
|
||||
'valid_till' => '',
|
||||
'version' => 'Version',
|
||||
'versioning_file_creation' => 'Créer les fichiers de versionnage',
|
||||
'versioning_file_creation_warning' => 'Cette opération permet de créer, pour chaque document, un fichier texte contenant les informations générales et l’historique des versions du document. Chaque fichier sera enregistré dans le répertoire du document. Ces fichiers ne sont pas nécessaires au bon fonctionnement de SeedDMS, mais ils peuvent être utiles en cas de transfert des fichiers vers un autre système.',
|
||||
|
@ -1539,7 +1564,7 @@ URL: [url]',
|
|||
'workflow_name' => 'Nom',
|
||||
'workflow_no_doc_rejected_state' => 'L’état « rejeté » n’a été défini sur aucune action !',
|
||||
'workflow_no_doc_released_state' => '',
|
||||
'workflow_no_initial_state' => '',
|
||||
'workflow_no_initial_state' => 'Aucune transition ne débute par l’état initial défini pour ce workflow !',
|
||||
'workflow_no_states' => 'Vous devez d\'abord définir des états de workflow avant d\'ajouter un workflow.',
|
||||
'workflow_save_layout' => '',
|
||||
'workflow_state' => '',
|
||||
|
|
|
@ -283,6 +283,7 @@ Internet poveznica: [url]',
|
|||
'converter_new_cmd' => 'Komanda',
|
||||
'converter_new_mimetype' => 'Novi tip datoteke',
|
||||
'copied_to_checkout_as' => 'Datoteka je kopirana u prostor odjave kao \'[filename]\'',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Indeksiraj cijeli tekst',
|
||||
'create_fulltext_index_warning' => 'Želite ponovo indeksirati cijeli tekst. To može duže potrajati i smanjiti sveukupne performanse sustava. Ako zaista želite ponovno indeksirati, molimo potvrdite vašu radnju.',
|
||||
'creation_date' => 'Izrađeno',
|
||||
|
@ -388,6 +389,9 @@ Internet poveznica: [url]',
|
|||
'does_not_expire' => 'Ne istječe',
|
||||
'does_not_inherit_access_msg' => 'Naslijedi nivo pristupa',
|
||||
'download' => 'Preuzimanje',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Popravi sve mape i dokumente.',
|
||||
'do_object_setchecksum' => 'Postavi kontrolnu sumu',
|
||||
'do_object_setfilesize' => 'Postavi veličinu datoteke',
|
||||
|
@ -405,6 +409,7 @@ Internet poveznica: [url]',
|
|||
'dump_creation_warning' => 'Ovom radnjom možete stvoriti datoteku za odlaganje sadržaja vaše baze podataka. Nakon izrade datoteka za odlaganje će biti pohranjena u podatkovnoj mapi na vašem serveru.',
|
||||
'dump_list' => 'Postojeće datoteke za odlaganje',
|
||||
'dump_remove' => 'Ukloni datoteku za odlaganje',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'Duplicirani sadržaj',
|
||||
'edit' => 'Uredi',
|
||||
'edit_attributes' => 'Uredi atribute',
|
||||
|
@ -454,7 +459,16 @@ Internet poveznica: [url]',
|
|||
'event_details' => 'Detalji događaja',
|
||||
'exclude_items' => 'Isključivanje stavki',
|
||||
'expired' => 'Isteklo',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Datum isteka',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Promijenjen datum isteka',
|
||||
'expiry_changed_email_body' => 'Promijenjen datum isteka
|
||||
Dokument: <b>[name]</b>
|
||||
|
@ -517,6 +531,7 @@ Internet poveznica: [url]',
|
|||
'fr_FR' => 'Francuski',
|
||||
'fullsearch' => 'Pretraživanje cijelog teksta',
|
||||
'fullsearch_hint' => 'Koristi indeks cijelog teksta',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Informacije cijelog teksta',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Atributi',
|
||||
|
@ -536,6 +551,7 @@ Internet poveznica: [url]',
|
|||
'group_review_summary' => 'Sažetak pregleda grupe',
|
||||
'guest_login' => 'Prijavite se kao gost',
|
||||
'guest_login_disabled' => 'Prijava "kao gost" je onemogućena.',
|
||||
'hash' => '',
|
||||
'help' => 'Pomoć',
|
||||
'home_folder' => 'Početna mapa',
|
||||
'hook_name' => '',
|
||||
|
@ -820,6 +836,7 @@ Ako i dalje imate problema s prijavom, molimo kontaktirajte Vašeg administrator
|
|||
'personal_default_keywords' => 'Osobni popis ključnih riječi',
|
||||
'pl_PL' => 'Poljski',
|
||||
'possible_substitutes' => 'Zamjene',
|
||||
'preset_expires' => '',
|
||||
'preview' => 'Predpregled',
|
||||
'preview_converters' => 'Pretpregled konverzije dokumenta',
|
||||
'preview_images' => '',
|
||||
|
@ -1031,6 +1048,7 @@ Internet poveznica: [url]',
|
|||
'select_one' => 'Odaberite jednog',
|
||||
'select_users' => 'Kliknite za odabir korisnika',
|
||||
'select_workflow' => 'Odaberite tok rada',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'Rujan',
|
||||
'sequence' => 'Redoslijed',
|
||||
|
@ -1232,6 +1250,8 @@ Internet poveznica: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'To je maksimalni broj dokumenata ili mapa koji će biti označen pristupnim pravima, pri rekurzivnom brojanju objekata. Ako se taj broj premaši, broj dokumenata i mapa u pregledu mape će biti procjenjen.',
|
||||
'settings_maxSizeForFullText' => 'Maksimalna veličina dokumenta za instant indeksiranje',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Konfiguriraj više postavki. Zadana prijava: admin/admin',
|
||||
'settings_notfound' => 'Nije pronađeno',
|
||||
'settings_Notification' => 'Postavke bilježenja',
|
||||
|
@ -1372,6 +1392,8 @@ Internet poveznica: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Korisnik pohranjen',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Pohrani izmjene mape',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'Nevažeći ID mape',
|
||||
|
@ -1382,6 +1404,7 @@ Internet poveznica: [url]',
|
|||
'splash_removed_from_clipboard' => 'Uklonjeno iz međuspremnika',
|
||||
'splash_rm_attribute' => 'Atribut uklonjen',
|
||||
'splash_rm_document' => 'Dokument uklonjen',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Mapa izbrisana',
|
||||
'splash_rm_group' => 'Grupa uklonjena',
|
||||
'splash_rm_group_member' => 'Član grupe uklonjen',
|
||||
|
@ -1389,6 +1412,7 @@ Internet poveznica: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Korisnik uklonjen',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Postavke pohranjene',
|
||||
'splash_substituted_user' => 'Zamjenski korisnik',
|
||||
'splash_switched_back_user' => 'Prebačeno nazad na izvornog korisnika',
|
||||
|
@ -1538,6 +1562,7 @@ Internet poveznica: [url]',
|
|||
'use_comment_of_document' => 'Koristi komentar dokumenta',
|
||||
'use_default_categories' => 'Koristi predefinirane kategorije',
|
||||
'use_default_keywords' => 'Koristi predefinirane ključne riječi',
|
||||
'valid_till' => '',
|
||||
'version' => 'Verzija',
|
||||
'versioning_file_creation' => 'Stvaranje nove verzije datoteke',
|
||||
'versioning_file_creation_warning' => 'Ovo radnjom možete izraditi datoteku koja sadrži informacije o verzijama cijele DMS mape. Nakon izrade, svaka datoteka će biti pohranjena unutar podatkovne mape.',
|
||||
|
|
|
@ -278,6 +278,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Teljes szöveg index létrehozása',
|
||||
'create_fulltext_index_warning' => 'Ön a teljes szöveg index újraépítését kezdeményezte. Ez a művelet hosszú ideig eltarthat és jelentősen csökkentheti az egész rendszer teljesítményét. Ha biztosan újra kívánja építeni az indexet, kérjük erősítse meg a műveletet.',
|
||||
'creation_date' => 'Létrehozva',
|
||||
|
@ -383,6 +384,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'Soha nem jár le',
|
||||
'does_not_inherit_access_msg' => 'Hozzáférés öröklése',
|
||||
'download' => 'Letöltés',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Valamennyi mappa és dokumentum helyreállítása.',
|
||||
'do_object_setchecksum' => 'Ellenőrző összeg beállítása',
|
||||
'do_object_setfilesize' => 'Állomány méret beállítása',
|
||||
|
@ -400,6 +404,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Ezzel a művelettel az adatbázis tartalmáról lehet adatbázis mentést készíteni. Az adatbázis mentés létrehozását követően a mentési állomány a kiszolgáló adat mappájába lesz mentve.',
|
||||
'dump_list' => 'Meglévő adatbázis metések',
|
||||
'dump_remove' => 'Adatbázis mentés eltávolítása',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '',
|
||||
'edit' => 'Szerkesztés',
|
||||
'edit_attributes' => 'Jellemzők szerkesztése',
|
||||
|
@ -449,7 +454,16 @@ URL: [url]',
|
|||
'event_details' => 'Esemény részletek',
|
||||
'exclude_items' => 'Kizárt elemek',
|
||||
'expired' => 'Lejárt',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Lejárat',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Lejárati dátum módosítva',
|
||||
'expiry_changed_email_body' => 'Lejárati dátum módosult
|
||||
Dokumentum: [name]
|
||||
|
@ -512,6 +526,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Francia',
|
||||
'fullsearch' => 'Keresés a teljes szövegben',
|
||||
'fullsearch_hint' => 'Használja a teljes szöveg indexet',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Teljes szöveg index információ',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Jellemzők',
|
||||
|
@ -531,6 +546,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Csoport felülvizsgálat összefoglaló',
|
||||
'guest_login' => 'Bejelentkezés vendégként',
|
||||
'guest_login_disabled' => 'Vendég bejelentkezés letiltva.',
|
||||
'hash' => '',
|
||||
'help' => 'Segítség',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -816,6 +832,7 @@ Amennyiben problémákba ütközik a bejelentkezés során, kérjük vegye fel a
|
|||
'personal_default_keywords' => 'Személyes kulcsszó lista',
|
||||
'pl_PL' => 'Lengyel',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => 'Előnézet',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -1009,6 +1026,7 @@ URL: [url]',
|
|||
'select_one' => 'Vßlasszon egyet',
|
||||
'select_users' => 'Kattintson a felhasználó kiválasztásához',
|
||||
'select_workflow' => 'Munkafolyamat választás',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'September',
|
||||
'sequence' => 'Sorrend',
|
||||
|
@ -1210,6 +1228,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'A dokumentumok és mappák maximális mennyisége amelyeken ellenőrizni fogják a hozzáférési jogokat, ha rekurzívan számláló tárgyakat. Ha ezt az értéket túllépik, a dokumentumok számát és mappák a Mappa nézetben is becsülhetők.',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'További beállítások konfigurálása. Alapértelmezett bejelentkezés: admin/admin',
|
||||
'settings_notfound' => 'Nem található',
|
||||
'settings_Notification' => 'Értesítés beállításai',
|
||||
|
@ -1350,6 +1370,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Felhasználó mentve',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Mappa változásainak mentése',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'Érvénytelen mappa azonosító',
|
||||
|
@ -1360,6 +1382,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Eltávolítva a vágólapról',
|
||||
'splash_rm_attribute' => 'Jellemző eltávolítva',
|
||||
'splash_rm_document' => 'Dokumentum eltávolítva',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Mappa törölve',
|
||||
'splash_rm_group' => 'Csoport eltávolítva',
|
||||
'splash_rm_group_member' => 'Csoporttag eltávolítva',
|
||||
|
@ -1367,6 +1390,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Felhasználó eltávolítva',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Beállítások elmentve',
|
||||
'splash_substituted_user' => 'Helyettesített felhasználó',
|
||||
'splash_switched_back_user' => 'Visszaváltva az eredeti felhasználóra',
|
||||
|
@ -1516,6 +1540,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Használja a dokumentum megjegyzését',
|
||||
'use_default_categories' => 'Használjon előre megadott kategóriákat',
|
||||
'use_default_keywords' => 'Használjon előre meghatározott kulcsszavakat',
|
||||
'valid_till' => '',
|
||||
'version' => 'Változat',
|
||||
'versioning_file_creation' => 'Változatkezelő állomány létrehozás',
|
||||
'versioning_file_creation_warning' => 'Ezzel a művelettel létrehozhat egy állományt ami tartalmazni fogja a változat információkat a teljes DMS mappáról. A létrehozás után minden állomány a dokumentum mappába lesz mentve.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1538), rickr (144), s.pnt (26)
|
||||
// Translators: Admin (1539), rickr (144), s.pnt (26)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => 'Autorizzazione a due fattori',
|
||||
|
@ -284,6 +284,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => 'Comando',
|
||||
'converter_new_mimetype' => 'Nuovo mimetype',
|
||||
'copied_to_checkout_as' => 'File copiato come \'[filename]\'',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Crea indice fulltext',
|
||||
'create_fulltext_index_warning' => 'Stai creando un indice fulltext. Questo può occupare un tempo considerevole e ridurre le prestazioni del sistema. Sei sicuro di voler ricreare l\'indice? Prego conferma l\'operazione.',
|
||||
'creation_date' => 'Data creazione',
|
||||
|
@ -389,6 +390,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'Nessuna scadenza',
|
||||
'does_not_inherit_access_msg' => 'Imposta permessi ereditari',
|
||||
'download' => 'Scarica',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Ripara tutte le cartelle e i documenti.',
|
||||
'do_object_setchecksum' => 'Imposta il checksum',
|
||||
'do_object_setfilesize' => 'Imposta la dimensione del file',
|
||||
|
@ -406,6 +410,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Con questa operazione è possibile creare un file di dump del contenuto del database. Dopo la creazione il file viene salvato nella cartella dati del server.',
|
||||
'dump_list' => 'List dei dump presenti',
|
||||
'dump_remove' => 'Cancella il file di dump',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'Contenuto Duplicato',
|
||||
'edit' => 'Modifica',
|
||||
'edit_attributes' => 'Modifica gli attributi',
|
||||
|
@ -455,7 +460,16 @@ URL: [url]',
|
|||
'event_details' => 'Dettagli evento',
|
||||
'exclude_items' => 'Escludi Elementi',
|
||||
'expired' => 'Scaduto',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Scadenza',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Scadenza cambiata',
|
||||
'expiry_changed_email_body' => 'Data di scadenza cambiata
|
||||
Documento: [name]
|
||||
|
@ -518,6 +532,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Francese',
|
||||
'fullsearch' => 'Ricerca Fulltext',
|
||||
'fullsearch_hint' => 'Usa l\'indice fulltext',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Info indice Fulltext',
|
||||
'global_attributedefinitiongroups' => 'Attributo gruppi',
|
||||
'global_attributedefinitions' => 'Definizione attributi',
|
||||
|
@ -537,6 +552,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Dettaglio revisioni di gruppo',
|
||||
'guest_login' => 'Login come Ospite',
|
||||
'guest_login_disabled' => 'Il login come Ospite è disabilitato.',
|
||||
'hash' => '',
|
||||
'help' => 'Aiuto',
|
||||
'home_folder' => 'Cartella Utente',
|
||||
'hook_name' => 'Nome del gangio',
|
||||
|
@ -636,7 +652,7 @@ URL: [url]',
|
|||
'linked_to_this_version' => '',
|
||||
'link_alt_updatedocument' => 'Se vuoi caricare file più grandi del limite massimo attuale, usa la <a href="%s">pagina alternativa di upload</a>.',
|
||||
'link_to_version' => '',
|
||||
'list_access_rights' => '',
|
||||
'list_access_rights' => 'Elenca tutti i diritti di accesso...',
|
||||
'list_contains_no_access_docs' => '',
|
||||
'list_hooks' => 'Lista ganci',
|
||||
'local_file' => 'File locale',
|
||||
|
@ -822,6 +838,7 @@ Dovessero esserci ancora problemi al login, prego contatta l\'Amministratore di
|
|||
'personal_default_keywords' => 'Parole-chiave personali',
|
||||
'pl_PL' => 'Polacco',
|
||||
'possible_substitutes' => 'Sostituti',
|
||||
'preset_expires' => '',
|
||||
'preview' => 'Anteprima',
|
||||
'preview_converters' => 'Anteprima convesione documento',
|
||||
'preview_images' => '',
|
||||
|
@ -1043,6 +1060,7 @@ URL: [url]',
|
|||
'select_one' => 'Seleziona uno',
|
||||
'select_users' => 'Clicca per selezionare gli utenti',
|
||||
'select_workflow' => 'Seleziona il flusso di lavoro',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => 'Invia messagio di prova',
|
||||
'september' => 'Settembre',
|
||||
'sequence' => 'Posizione',
|
||||
|
@ -1244,6 +1262,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Numero massimo di documenti e cartelle considerati dal conteggio ricursivo per il controllo dei diritti d\'accesso. Se tale valore dovesse essere superato, il risultato del conteggio sarà stimato.',
|
||||
'settings_maxSizeForFullText' => 'La lungeza massima del file per l\'indicizzazione istantanea',
|
||||
'settings_maxSizeForFullText_desc' => 'Tutte le nuove versioni dei documenti più in basso della dimensione configurata saranno completamente indicizzati dopo il caricamento. In tutti gli altri casi sarà indicizzato solo i metadati.',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Ulteriori configurazioni. Login di default: admin/admin',
|
||||
'settings_notfound' => 'Non trovato',
|
||||
'settings_Notification' => 'Impostazioni di notifica',
|
||||
|
@ -1384,6 +1404,8 @@ URL: [url]',
|
|||
'splash_edit_role' => 'Ruolo memorizzata',
|
||||
'splash_edit_user' => 'Utente modificato',
|
||||
'splash_error_add_to_transmittal' => 'Errore durante l\'aggiunta di documento per la trasmissione',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Cartella modificata',
|
||||
'splash_importfs' => 'Importati [Documenti] documenti e cartelle [cartelle]',
|
||||
'splash_invalid_folder_id' => 'ID cartella non valido',
|
||||
|
@ -1394,6 +1416,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Rimosso dagli appunti',
|
||||
'splash_rm_attribute' => 'Attributo rimosso',
|
||||
'splash_rm_document' => 'Documento rimosso',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Cartella eliminata',
|
||||
'splash_rm_group' => 'Gruppo eliminato',
|
||||
'splash_rm_group_member' => 'Membro del gruppo eliminato',
|
||||
|
@ -1401,6 +1424,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => 'Trasmissione cancellato',
|
||||
'splash_rm_user' => 'Utente eliminato',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Impostazioni salvate',
|
||||
'splash_substituted_user' => 'Utente sostituito',
|
||||
'splash_switched_back_user' => 'Ritorno all\'utente originale',
|
||||
|
@ -1550,6 +1574,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Utilizza il commento al documento',
|
||||
'use_default_categories' => 'Usa categorie predefinite',
|
||||
'use_default_keywords' => 'Usa parole-chiave predefinite',
|
||||
'valid_till' => '',
|
||||
'version' => 'Versione',
|
||||
'versioning_file_creation' => 'Creazione file di versione',
|
||||
'versioning_file_creation_warning' => 'Con questa operazione è possibile creare un file di backup delle informazioni di versione dei documenti di un\'intera cartella. Dopo la creazione ogni file viene salvato nella cartella del relativo documento.',
|
||||
|
|
|
@ -285,6 +285,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '명령',
|
||||
'converter_new_mimetype' => '새 MIME 형태',
|
||||
'copied_to_checkout_as' => '체크아웃으로 파일(\'[filename]\')이 파일 복사됨',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => '전체 텍스트 인덱스 만들기',
|
||||
'create_fulltext_index_warning' => '전체 자료의 텍스트 인덱스를 다시 만들 수 있습니다. 이것은 상당한 시간을 요구하며 진행되는 동안 시스템 성능을 감소시킬 수 있습니다. 인덱스를 재 생성하려면, 확인하시기 바랍니다.',
|
||||
'creation_date' => '생성',
|
||||
|
@ -388,6 +389,9 @@ URL: [url]',
|
|||
'does_not_expire' => '만료되지 않습니다',
|
||||
'does_not_inherit_access_msg' => '액세스 상속',
|
||||
'download' => '다운로드',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => '모든 폴더와 문서를 복구',
|
||||
'do_object_setchecksum' => '오류 검사',
|
||||
'do_object_setfilesize' => '파일 크기 설정',
|
||||
|
@ -405,6 +409,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => '이 작업으로 만들 수있는 데이터베이스 내용의 덤프 파일. 작성 후 덤프 파일은 서버의 데이터 폴더에 저장됩니다.',
|
||||
'dump_list' => '덤프된 파일',
|
||||
'dump_remove' => '덤프 파일 제거',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '중복 내용',
|
||||
'edit' => '편집',
|
||||
'edit_attributes' => '속성 편집',
|
||||
|
@ -454,7 +459,16 @@ URL: [url]',
|
|||
'event_details' => '이벤트의 자세한 사항',
|
||||
'exclude_items' => '항목 제외',
|
||||
'expired' => '만료',
|
||||
'expired_at_date' => '',
|
||||
'expires' => '만료',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => '유효 기간 변경',
|
||||
'expiry_changed_email_body' => '유효 기간이 변경
|
||||
문서: [name]
|
||||
|
@ -517,6 +531,7 @@ URL: [url]',
|
|||
'fr_FR' => '프랑스어',
|
||||
'fullsearch' => '전체 텍스트 검색',
|
||||
'fullsearch_hint' => '전체 텍스트 색인 사용',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => '전체 텍스트 색인 정보',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => '속성',
|
||||
|
@ -536,6 +551,7 @@ URL: [url]',
|
|||
'group_review_summary' => '그룹 검토 요약',
|
||||
'guest_login' => '게스트로 로그인',
|
||||
'guest_login_disabled' => '고객 로그인을 사용할 수 없습니다.',
|
||||
'hash' => '',
|
||||
'help' => '도움말',
|
||||
'home_folder' => '홈 폴더',
|
||||
'hook_name' => '',
|
||||
|
@ -813,6 +829,7 @@ URL : [url]',
|
|||
'personal_default_keywords' => '개인 키워드 목록',
|
||||
'pl_PL' => '폴란드어',
|
||||
'possible_substitutes' => '대체',
|
||||
'preset_expires' => '',
|
||||
'preview' => '미리보기',
|
||||
'preview_converters' => '문서 변환 미리보기',
|
||||
'preview_images' => '',
|
||||
|
@ -1024,6 +1041,7 @@ URL : [url]',
|
|||
'select_one' => '선택',
|
||||
'select_users' => '사용자를 선택합니다',
|
||||
'select_workflow' => '선택 워크플로우',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '테스트 메일',
|
||||
'september' => '9월',
|
||||
'sequence' => '순서',
|
||||
|
@ -1225,6 +1243,8 @@ URL : [url]',
|
|||
'settings_maxRecursiveCount_desc' => '이것은 재귀적으로 개체를 셀 때 사용 권한이 확인됩니다 문서 및 폴더의 최대 수입니다. 이 수를 초과하면 폴더보기에서 문서 나 폴더의 수가 추정됩니다.',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => '기타 설정을 구성합니다. 기본 로그인 : admin/admin',
|
||||
'settings_notfound' => '찾을 수 없음',
|
||||
'settings_Notification' => '알림 설정',
|
||||
|
@ -1365,6 +1385,8 @@ URL : [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => '사용자 저장',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => '저장 폴더 변경',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => '잘못된 폴더 ID',
|
||||
|
@ -1375,6 +1397,7 @@ URL : [url]',
|
|||
'splash_removed_from_clipboard' => '클립 보드에서 제거',
|
||||
'splash_rm_attribute' => '속성 제거',
|
||||
'splash_rm_document' => '문서 삭제',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => '폴더 삭제',
|
||||
'splash_rm_group' => '그룹 제거',
|
||||
'splash_rm_group_member' => '회원 그룹 제거',
|
||||
|
@ -1382,6 +1405,7 @@ URL : [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '사용자 제거',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => '설정 저장',
|
||||
'splash_substituted_user' => '전환된 사용자',
|
||||
'splash_switched_back_user' => '원래 사용자로 전환',
|
||||
|
@ -1531,6 +1555,7 @@ URL : [url]',
|
|||
'use_comment_of_document' => '문서 설명을 사용하십시오',
|
||||
'use_default_categories' => '미리 정의 된 범주를 사용하십시오',
|
||||
'use_default_keywords' => '사전 정의 된 키워드를 사용하십시오',
|
||||
'valid_till' => '',
|
||||
'version' => '버전',
|
||||
'versioning_file_creation' => '버전 관리 파일 생성',
|
||||
'versioning_file_creation_warning' => '버전 정보가 포함 된 파일을 만들 수 있습니다. 이 작업은 전체 DMS 폴더를 작성 후 모든 파일이 문서 폴더 안에 저장됩니다.',
|
||||
|
|
|
@ -276,6 +276,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => 'Wijziging: nieuw commando',
|
||||
'converter_new_mimetype' => 'Wijziging: nieuw mimetype',
|
||||
'copied_to_checkout_as' => 'Gekopieerd naar checkout als:',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Creeer volledige tekst index',
|
||||
'create_fulltext_index_warning' => 'U staat op het punt de volledigetekst opnieuw te indexeren. Dit kan behoorlijk veel tijd en snelheid vergen van het systeem. Als u zeker bent om opnieuw te indexeren, bevestig deze actie.',
|
||||
'creation_date' => 'Aangemaakt',
|
||||
|
@ -381,6 +382,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'Verloopt niet',
|
||||
'does_not_inherit_access_msg' => 'Erft toegang',
|
||||
'download' => 'Download',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Repareer alle mappen en documenten.',
|
||||
'do_object_setchecksum' => 'Set checksum',
|
||||
'do_object_setfilesize' => 'Voer bestandgrootte in',
|
||||
|
@ -398,6 +402,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'M.b.v. deze functie maakt U een DB dump file. het bestand wordt opgeslagen in uw data-map op de Server',
|
||||
'dump_list' => 'Bestaande dump bestanden',
|
||||
'dump_remove' => 'Verwijder dump bestand',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'Dubbele inhoud',
|
||||
'edit' => 'Wijzigen',
|
||||
'edit_attributes' => 'Bewerk attributen',
|
||||
|
@ -447,7 +452,16 @@ URL: [url]',
|
|||
'event_details' => 'Activiteit details',
|
||||
'exclude_items' => 'Sluit iems uit',
|
||||
'expired' => 'Verlopen',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Verloopt',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Verloopdatum gewijzigd',
|
||||
'expiry_changed_email_body' => 'Vervaldatum gewijzigd
|
||||
Document: [name]
|
||||
|
@ -510,6 +524,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Frans',
|
||||
'fullsearch' => 'Zoek in volledige tekst',
|
||||
'fullsearch_hint' => 'Volledige tekst index',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Volledige tekst index info',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Kenmerk definities',
|
||||
|
@ -529,6 +544,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Groep Beoordeling samenvatting',
|
||||
'guest_login' => 'Login als Gast',
|
||||
'guest_login_disabled' => 'Gast login is uitgeschakeld.',
|
||||
'hash' => '',
|
||||
'help' => 'Help',
|
||||
'home_folder' => 'Thuismap',
|
||||
'hook_name' => '',
|
||||
|
@ -814,6 +830,7 @@ Mocht u de komende minuten geen email ontvangen, probeer het dan nogmaals en con
|
|||
'personal_default_keywords' => 'Persoonlijke sleutelwoorden',
|
||||
'pl_PL' => 'Polen',
|
||||
'possible_substitutes' => 'Mogelijke alternatieven',
|
||||
'preset_expires' => '',
|
||||
'preview' => 'Voorbeeld',
|
||||
'preview_converters' => 'Converters',
|
||||
'preview_images' => '',
|
||||
|
@ -1033,6 +1050,7 @@ URL: [url]',
|
|||
'select_one' => 'Selecteer een',
|
||||
'select_users' => 'Klik om gebruikers te selecteren',
|
||||
'select_workflow' => 'Selecteer workflow',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => 'Testmail versturen',
|
||||
'september' => 'september',
|
||||
'sequence' => 'Volgorde',
|
||||
|
@ -1238,6 +1256,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Dit is het maximum aantal documenten of mappen dat zal worden gecontroleerd voor toegangsrechten bij recursieve objecten telling. Als dit aantal is overschreden, zal het aantal documenten en mappen in de het map overzicht worden geschat.',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Meer instellingen. Standaard login: admin/admin',
|
||||
'settings_notfound' => 'Niet gevonden',
|
||||
'settings_Notification' => 'Notificatie instellingen',
|
||||
|
@ -1378,6 +1398,8 @@ URL: [url]',
|
|||
'splash_edit_role' => 'Rol opgeslagen',
|
||||
'splash_edit_user' => 'Gebruiker opgeslagen',
|
||||
'splash_error_add_to_transmittal' => 'Fout: toevoeging aan verzending',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Opslaan mapwijzigingen',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'Ongeldige map ID',
|
||||
|
@ -1388,6 +1410,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Verwijderd van het klembord',
|
||||
'splash_rm_attribute' => 'Attribuut verwijderd',
|
||||
'splash_rm_document' => 'Document verwijderd',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Map verwijderd',
|
||||
'splash_rm_group' => 'Groep verwijderd',
|
||||
'splash_rm_group_member' => 'Lid van de groep verwijderd',
|
||||
|
@ -1395,6 +1418,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => 'Verzending verwijderd',
|
||||
'splash_rm_user' => 'Gebruiker verwijderd',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Instellingen opgeslagen',
|
||||
'splash_substituted_user' => 'Invallers gebruiker',
|
||||
'splash_switched_back_user' => 'Teruggeschakeld naar de oorspronkelijke gebruiker',
|
||||
|
@ -1544,6 +1568,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Gebruik reactie van document',
|
||||
'use_default_categories' => 'Gebruik voorgedefinieerde categorieen',
|
||||
'use_default_keywords' => 'Gebruik bestaande sleutelwoorden',
|
||||
'valid_till' => '',
|
||||
'version' => 'Versie',
|
||||
'versioning_file_creation' => 'Aanmaken bestand versies',
|
||||
'versioning_file_creation_warning' => 'Met deze handeling maakt U een bestand aan die de versie voortgang informatie van een compleet DMS bevat. Na het aanmaken wordt ieder bestand opgeslagen in de document map.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (752), netixw (84), romi (93), uGn (112)
|
||||
// Translators: Admin (755), netixw (84), romi (93), uGn (112)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -271,6 +271,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Utwórz indeks pełnotekstowy',
|
||||
'create_fulltext_index_warning' => 'Zamierzasz ponownie utworzyć indeks pełnotekstowy. To może zająć sporo czasu i ograniczyć ogólną wydajność systemu. Jeśli faktycznie chcesz to zrobić, proszę potwierdź tę operację.',
|
||||
'creation_date' => 'Utworzony',
|
||||
|
@ -376,6 +377,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'Nigdy nie wygasa',
|
||||
'does_not_inherit_access_msg' => 'Dziedzicz dostęp',
|
||||
'download' => 'Pobierz',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Napraw wszystkie katalogi i pliki.',
|
||||
'do_object_setchecksum' => 'Ustaw sumę kontrolną',
|
||||
'do_object_setfilesize' => 'Podaj rozmiar pliku',
|
||||
|
@ -393,6 +397,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Ta operacja utworzy plik będący zrzutem zawartości bazy danych. Po utworzeniu plik zrzutu będzie się znajdował w folderze danych na serwerze.',
|
||||
'dump_list' => 'Istniejące pliki zrzutu',
|
||||
'dump_remove' => 'Usuń plik zrzutu',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'Zduplikowana zawartość',
|
||||
'edit' => 'Edytuj',
|
||||
'edit_attributes' => 'Zmiana atrybutów',
|
||||
|
@ -442,7 +447,16 @@ URL: [url]',
|
|||
'event_details' => 'Szczegóły zdarzenia',
|
||||
'exclude_items' => '',
|
||||
'expired' => 'Wygasłe',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Wygasa',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Zmieniona data wygaśnięcia',
|
||||
'expiry_changed_email_body' => 'Zmiana daty wygaśnięcia
|
||||
Dokument: [name]
|
||||
|
@ -451,7 +465,7 @@ Użytkownik: [username]
|
|||
URL: [url]',
|
||||
'expiry_changed_email_subject' => '[sitename]: [name] - Zmiana daty wygaśnięcia',
|
||||
'export' => '',
|
||||
'extension_manager' => '',
|
||||
'extension_manager' => 'Zarządzanie rozszerzeniami',
|
||||
'february' => 'Luty',
|
||||
'file' => 'Plik',
|
||||
'files' => 'Pliki',
|
||||
|
@ -505,6 +519,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Francuzki',
|
||||
'fullsearch' => 'Przeszukiwanie treści dokumentów',
|
||||
'fullsearch_hint' => 'Przeszukuj treść dokumentów',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Informacje o indeksie pełnotekstowym',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Definicje atrybutów',
|
||||
|
@ -524,6 +539,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Podsumowanie opiniowania dla grupy',
|
||||
'guest_login' => 'Zalogowany jako gość',
|
||||
'guest_login_disabled' => 'Logowanie dla gościa jest wyłączone.',
|
||||
'hash' => '',
|
||||
'help' => 'Pomoc',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -809,6 +825,7 @@ Jeśli nadal będą problemy z zalogowaniem, prosimy o kontakt z administratorem
|
|||
'personal_default_keywords' => 'Osobiste sława kluczowe',
|
||||
'pl_PL' => 'Polski',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -989,6 +1006,7 @@ URL: [url]',
|
|||
'select_one' => 'Wybierz',
|
||||
'select_users' => 'Kliknij by wybrać użytkowników',
|
||||
'select_workflow' => 'Wybierz proces',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'Wrzesień',
|
||||
'sequence' => 'Kolejność',
|
||||
|
@ -1054,7 +1072,7 @@ URL: [url]',
|
|||
'settings_defaultSearchMethod' => '',
|
||||
'settings_defaultSearchMethod_desc' => '',
|
||||
'settings_defaultSearchMethod_valdatabase' => 'baza danych',
|
||||
'settings_defaultSearchMethod_valfulltext' => '',
|
||||
'settings_defaultSearchMethod_valfulltext' => 'pewłnotekstowe',
|
||||
'settings_delete_install_folder' => 'Aby móc używać LetoDMS, musisz usunąć plik ENABLE_INSTALL_TOOL znajdujący się w katalogu konfiguracyjnym',
|
||||
'settings_disableSelfEdit' => 'Wyłącz auto edycję',
|
||||
'settings_disableSelfEdit_desc' => 'Jeśli zaznaczone, użytkownik nie może zmieniać własnych danych',
|
||||
|
@ -1190,6 +1208,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Jest to maksymalna liczba dokumentów i folderów, które będą sprawdzane pod kątem praw dostępu, gdy włączone jest rekurencyjnie liczenie obiektów. Jeżeli liczba ta zostanie przekroczona to ilości dokumentów i folderów w widoku zostaną oszacowane.',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Wykonaj dalszą konfigurację. Domyślny login/hasło: admin/admin',
|
||||
'settings_notfound' => 'Nie znaleziono',
|
||||
'settings_Notification' => 'Ustawienia powiadomień',
|
||||
|
@ -1238,7 +1258,7 @@ URL: [url]',
|
|||
'settings_Server' => 'Ustawienia serwera',
|
||||
'settings_showFullPreview' => '',
|
||||
'settings_showFullPreview_desc' => '',
|
||||
'settings_showMissingTranslations' => '',
|
||||
'settings_showMissingTranslations' => 'Pokaż brakujące tłumaczenia',
|
||||
'settings_showMissingTranslations_desc' => '',
|
||||
'settings_showSingleSearchHit' => '',
|
||||
'settings_showSingleSearchHit_desc' => '',
|
||||
|
@ -1330,6 +1350,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Zapisano użytkownika',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Zapisz zmiany folderu',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'Nieprawidłowy identyfikator folderu',
|
||||
|
@ -1340,6 +1362,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Usunięto ze schowka',
|
||||
'splash_rm_attribute' => 'Usunięto atrybut',
|
||||
'splash_rm_document' => 'Dokument usunięto',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Folder usunięty',
|
||||
'splash_rm_group' => 'Grupę usunięto',
|
||||
'splash_rm_group_member' => 'Usunięto członka grupy',
|
||||
|
@ -1347,6 +1370,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Użytkownika usunięto',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Zmiany zapisano',
|
||||
'splash_substituted_user' => 'Zmieniono użytkownika',
|
||||
'splash_switched_back_user' => 'Przełączono z powrotem do oryginalnego użytkownika',
|
||||
|
@ -1496,6 +1520,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Skomentuj dokumentu',
|
||||
'use_default_categories' => 'Użyj predefiniowanych kategorii',
|
||||
'use_default_keywords' => 'Użyj predefiniowanych słów kluczowych',
|
||||
'valid_till' => '',
|
||||
'version' => 'Wersja',
|
||||
'versioning_file_creation' => 'Utwórz archiwum z wersjonowaniem',
|
||||
'versioning_file_creation_warning' => 'Ta operacja utworzy plik zawierający informacje o wersjach plików z całego wskazanego folderu. Po utworzeniu, każdy plik będzie zapisany w folderze odpowiednim dla danego dokumentu.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (934), flaviove (627), lfcristofoli (352)
|
||||
// Translators: Admin (937), flaviove (627), lfcristofoli (352)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -173,7 +173,7 @@ URL: [url]',
|
|||
'attr_malformed_int' => '',
|
||||
'attr_malformed_url' => '',
|
||||
'attr_max_values' => '',
|
||||
'attr_min_values' => '',
|
||||
'attr_min_values' => 'O valor mínimo para o atributo [attrname] não foi alcançado.',
|
||||
'attr_not_in_valueset' => '',
|
||||
'attr_no_regex_match' => 'O valor do atributo não corresponde à expressão regular',
|
||||
'attr_validation_error' => '',
|
||||
|
@ -278,6 +278,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Criar índice de texto completo',
|
||||
'create_fulltext_index_warning' => 'Você está para recriar o índice de texto completo. Isso pode levar uma quantidade considerável de tempo e reduzir o desempenho geral do sistema. Se você realmente deseja recriar o índice, por favor confirme a operação.',
|
||||
'creation_date' => 'Criado',
|
||||
|
@ -382,6 +383,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'não Expira',
|
||||
'does_not_inherit_access_msg' => 'Inherit access',
|
||||
'download' => 'Download',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Reparar todas as pastas e documentos.',
|
||||
'do_object_setchecksum' => 'Defina soma de verificação',
|
||||
'do_object_setfilesize' => 'Defina o tamanho do arquivo',
|
||||
|
@ -399,6 +403,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'With this operation you can create a dump file of your database content. After the creation the dump file will be saved in the data folder of your server.',
|
||||
'dump_list' => 'Existings dump files',
|
||||
'dump_remove' => 'Remove dump file',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'Conteúdo Duplicado',
|
||||
'edit' => 'editar',
|
||||
'edit_attributes' => 'Editar atributos',
|
||||
|
@ -448,7 +453,16 @@ URL: [url]',
|
|||
'event_details' => 'Event details',
|
||||
'exclude_items' => 'Excluir ítens',
|
||||
'expired' => 'Expirado',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Expira',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Data de validade mudou',
|
||||
'expiry_changed_email_body' => 'Data de validade mudou
|
||||
Documento: [name]
|
||||
|
@ -511,6 +525,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Francês',
|
||||
'fullsearch' => 'Pesquisa de texto completo',
|
||||
'fullsearch_hint' => 'Use índice de texto completo',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Informações índice Texto completo',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Atributos',
|
||||
|
@ -530,6 +545,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Resumo da avaliação do grupo',
|
||||
'guest_login' => 'Entre como convidado',
|
||||
'guest_login_disabled' => 'Guest login is disabled.',
|
||||
'hash' => '',
|
||||
'help' => 'Ajuda',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -547,7 +563,7 @@ URL: [url]',
|
|||
'include_content' => '',
|
||||
'include_documents' => 'Include documents',
|
||||
'include_subdirectories' => 'Include subdirectories',
|
||||
'indexing_tasks_in_queue' => '',
|
||||
'indexing_tasks_in_queue' => 'Tarefas de indexação em fila',
|
||||
'index_converters' => 'Índice de conversão de documentos',
|
||||
'index_done' => '',
|
||||
'index_error' => '',
|
||||
|
@ -771,7 +787,7 @@ URL: [url]',
|
|||
'only_jpg_user_images' => 'Somente imagens jpg podem ser utilizadas como avatar',
|
||||
'order_by_sequence_off' => '',
|
||||
'original_filename' => 'Arquivo original',
|
||||
'overall_indexing_progress' => '',
|
||||
'overall_indexing_progress' => 'Progresso geral da indexação',
|
||||
'owner' => 'Proprietário',
|
||||
'ownership_changed_email' => 'O proprietário mudou',
|
||||
'ownership_changed_email_body' => 'Proprietário mudou
|
||||
|
@ -814,6 +830,7 @@ Se você ainda tiver problemas para fazer o login, por favor, contate o administ
|
|||
'personal_default_keywords' => 'palavras-chave pessoais',
|
||||
'pl_PL' => 'Polonês',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => 'visualizar',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -1007,6 +1024,7 @@ URL: [url]',
|
|||
'select_one' => 'Selecione um',
|
||||
'select_users' => 'Clique para selecionar os usuários',
|
||||
'select_workflow' => 'Selecione o fluxo de trabalho',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'September',
|
||||
'sequence' => 'Sequência',
|
||||
|
@ -1208,6 +1226,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Este é o número máximo de documentos ou pastas que serão verificados por direitos de acesso, quando recursivamente contar objetos. Se esse número for ultrapassado, será estimado o número de documentos e pastas na visualização da pasta.',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Configurar outras configurações. Login padrão: admin/admin',
|
||||
'settings_notfound' => 'Não encontrado',
|
||||
'settings_Notification' => 'Configurações de notificação',
|
||||
|
@ -1348,6 +1368,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Usuário salvo',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Salvar modificação de pastas',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'ID de pasta inválida',
|
||||
|
@ -1358,6 +1380,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Remover da área de transferência',
|
||||
'splash_rm_attribute' => 'Atributo removido',
|
||||
'splash_rm_document' => 'Documento removido',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Pasta excluida',
|
||||
'splash_rm_group' => 'Grupo removido',
|
||||
'splash_rm_group_member' => 'Membro do grupo removido',
|
||||
|
@ -1365,6 +1388,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Usuário removido',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Configurações salvas',
|
||||
'splash_substituted_user' => 'Usuário substituido',
|
||||
'splash_switched_back_user' => 'Comutada de volta ao usuário original',
|
||||
|
@ -1514,6 +1538,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Utilize comentário de documento',
|
||||
'use_default_categories' => 'Utilize categorias predefinidas',
|
||||
'use_default_keywords' => 'Use palavras-chave pré-definidas',
|
||||
'valid_till' => '',
|
||||
'version' => 'Versão',
|
||||
'versioning_file_creation' => 'Versioning file creation',
|
||||
'versioning_file_creation_warning' => 'With this operation you can create a file containing the versioning information of an entire DMS folder. After the creation every file will be saved inside the document folder.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1048), balan (87)
|
||||
// Translators: Admin (1050), balan (87)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -152,7 +152,7 @@ URL: [url]',
|
|||
'attrdef_regex' => 'Expresie regulată',
|
||||
'attrdef_type' => 'Tip',
|
||||
'attrdef_type_boolean' => 'Boolean',
|
||||
'attrdef_type_date' => '',
|
||||
'attrdef_type_date' => 'Data',
|
||||
'attrdef_type_email' => 'Email',
|
||||
'attrdef_type_float' => 'Float',
|
||||
'attrdef_type_int' => 'Intreg',
|
||||
|
@ -283,6 +283,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Creați indexul pentru tot textul',
|
||||
'create_fulltext_index_warning' => 'Sunteți pe cale sa recreați indexul pentru tot textul. Acest lucru poate dura o perioadă considerabilă de timp și poate reduce performanța sistemului în ansamblu. Dacă doriți cu adevărat să recreati indexul pentru tot textul, vă rugăm să confirmați operațiunea.',
|
||||
'creation_date' => 'Creat',
|
||||
|
@ -309,7 +310,7 @@ URL: [url]',
|
|||
'docs_in_reception_no_access' => '',
|
||||
'docs_in_revision_no_access' => '',
|
||||
'document' => 'Document',
|
||||
'documentcontent' => '',
|
||||
'documentcontent' => 'Continut Document',
|
||||
'documents' => 'Documente',
|
||||
'documents_checked_out_by_you' => 'Documente verificate de tine',
|
||||
'documents_in_process' => 'Documente în procesare',
|
||||
|
@ -388,6 +389,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'Nu expiră',
|
||||
'does_not_inherit_access_msg' => 'Acces moștenit',
|
||||
'download' => 'Descarca',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Repară toate folderele și documentele.',
|
||||
'do_object_setchecksum' => 'Setare sumă de control(checksum)',
|
||||
'do_object_setfilesize' => 'Setare dimensiune fișier',
|
||||
|
@ -405,6 +409,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Cu această operațiune puteți crea un fișier de imagine a conținutului bazei de date. După crearea fișierului de imagine acesta va fi salvat în folderul de date a serverului.',
|
||||
'dump_list' => 'Fișiere imagine existente',
|
||||
'dump_remove' => 'Sterge fișier imagine',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '',
|
||||
'edit' => 'Editează',
|
||||
'edit_attributes' => 'Editează atribute',
|
||||
|
@ -454,7 +459,16 @@ URL: [url]',
|
|||
'event_details' => 'Detalii eveniment',
|
||||
'exclude_items' => 'Elemente excluse',
|
||||
'expired' => 'Expirat',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Expiră',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Data de expirare schimbată',
|
||||
'expiry_changed_email_body' => 'Data de expirare schimbată
|
||||
Document: [name]
|
||||
|
@ -517,6 +531,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Franceza',
|
||||
'fullsearch' => 'Căutare text complet',
|
||||
'fullsearch_hint' => 'Foloseste indexarea intregului text',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Info indexarea intregului text',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Atribute',
|
||||
|
@ -536,6 +551,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Sumar revizuiri grup',
|
||||
'guest_login' => 'Login ca oaspete',
|
||||
'guest_login_disabled' => 'Logarea ca oaspete este dezactivată.',
|
||||
'hash' => '',
|
||||
'help' => 'Ajutor',
|
||||
'home_folder' => 'Folder Home',
|
||||
'hook_name' => '',
|
||||
|
@ -821,6 +837,7 @@ Dacă aveți în continuare probleme la autentificare, vă rugăm să contactaț
|
|||
'personal_default_keywords' => 'Liste de cuvinte cheie personale',
|
||||
'pl_PL' => 'Poloneză',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -1032,6 +1049,7 @@ URL: [url]',
|
|||
'select_one' => 'Selectați unul',
|
||||
'select_users' => 'Click pentru a selecta utilizatori',
|
||||
'select_workflow' => 'Selectați workflow',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'Septembrie',
|
||||
'sequence' => 'Poziție',
|
||||
|
@ -1233,6 +1251,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Acesta este numărul maxim de documente sau foldere care vor fi verificate pentru drepturile de acces, atunci când se numără recursiv obiectele. Dacă acest număr este depășit, numărul de documente și foldere în vizualizarea directorului va fi estimat.',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Configurare mai multe setări. Autentificare implicită: admin/admin',
|
||||
'settings_notfound' => 'Nu a fost găsit',
|
||||
'settings_Notification' => 'Setările de notificare',
|
||||
|
@ -1373,6 +1393,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Utilizator salvat',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Salvați modificările folderului',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'ID folder invalid',
|
||||
|
@ -1383,6 +1405,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Eliminat din clipboard',
|
||||
'splash_rm_attribute' => 'Atribut eliminat',
|
||||
'splash_rm_document' => 'Document eliminat',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Folder șters',
|
||||
'splash_rm_group' => 'Grup eliminat',
|
||||
'splash_rm_group_member' => 'Membru grup eliminat',
|
||||
|
@ -1390,6 +1413,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Uilizator eliminat',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Setări salvate',
|
||||
'splash_substituted_user' => 'Utilizator substituit',
|
||||
'splash_switched_back_user' => 'Comutat înapoi la utilizatorul original',
|
||||
|
@ -1539,6 +1563,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Utilizați comentarii la documente',
|
||||
'use_default_categories' => 'Utilizați categorii predefinite',
|
||||
'use_default_keywords' => 'Utilizați cuvinte cheie predefinite',
|
||||
'valid_till' => '',
|
||||
'version' => 'Versiune',
|
||||
'versioning_file_creation' => 'Creare fișier de versionare',
|
||||
'versioning_file_creation_warning' => 'Cu această operațiune puteți crea un fișier care conține informațiile versiunilor pentru un întreg folder DMS. După creare, fiecare fisier va fi salvat in folder-ul de documente.',
|
||||
|
|
|
@ -283,6 +283,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => 'Команда',
|
||||
'converter_new_mimetype' => 'Новый mime тип',
|
||||
'copied_to_checkout_as' => 'Файл скопирован в среду загрузки как \'[filename]\' на [date]',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Создать полнотекстовый индекс',
|
||||
'create_fulltext_index_warning' => 'Вы хотите пересоздать полнотекстовый индекс. Это займёт какое-то время и снизит производительность. Продолжить?',
|
||||
'creation_date' => 'Создан',
|
||||
|
@ -388,6 +389,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'безсрочный',
|
||||
'does_not_inherit_access_msg' => 'Наследовать уровень доступа',
|
||||
'download' => 'Загрузить',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Исправить все каталоги и документы',
|
||||
'do_object_setchecksum' => 'Установить контрольную сумму',
|
||||
'do_object_setfilesize' => 'Установить размер файла',
|
||||
|
@ -405,6 +409,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Эта операция создаст дамп базы данных. После создания, файл будет сохранен в каталоге данных сервера.',
|
||||
'dump_list' => 'Существующие дампы',
|
||||
'dump_remove' => 'Удалить дамп',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'Дублированное содержимое',
|
||||
'edit' => 'Изменить',
|
||||
'edit_attributes' => 'Изменить атрибуты',
|
||||
|
@ -454,7 +459,16 @@ URL: [url]',
|
|||
'event_details' => 'Информация о событии',
|
||||
'exclude_items' => 'Не показывать события:',
|
||||
'expired' => 'Срок действия вышел',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Срок действия',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Срок действия изменен',
|
||||
'expiry_changed_email_body' => 'Срок действия изменен
|
||||
Документ: [name]
|
||||
|
@ -517,6 +531,7 @@ URL: [url]',
|
|||
'fr_FR' => 'French',
|
||||
'fullsearch' => 'Полнотекстовый поиск',
|
||||
'fullsearch_hint' => 'Использовать полнотекстовый индекс',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Информация о полнотекстовом индексе',
|
||||
'global_attributedefinitiongroups' => 'Глобальные группы атрибутов',
|
||||
'global_attributedefinitions' => 'Атрибуты',
|
||||
|
@ -536,6 +551,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Сводка по рецензированию группы',
|
||||
'guest_login' => 'Войти как гость',
|
||||
'guest_login_disabled' => 'Гостевой вход отключён',
|
||||
'hash' => '',
|
||||
'help' => 'Помощь',
|
||||
'home_folder' => 'Домашний каталог',
|
||||
'hook_name' => 'Имя хука',
|
||||
|
@ -818,6 +834,7 @@ URL: [url]',
|
|||
'personal_default_keywords' => 'Личный список меток',
|
||||
'pl_PL' => 'Polish',
|
||||
'possible_substitutes' => 'Замена',
|
||||
'preset_expires' => '',
|
||||
'preview' => 'Предварительный просмотр',
|
||||
'preview_converters' => 'Предварительный просмотр конвертации документа',
|
||||
'preview_images' => '',
|
||||
|
@ -1039,6 +1056,7 @@ URL: [url]',
|
|||
'select_one' => 'Выберите',
|
||||
'select_users' => 'Выберите пользователей',
|
||||
'select_workflow' => 'Выберите процесс',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => 'Отправить тестовое сообщение',
|
||||
'september' => 'Сентябрь',
|
||||
'sequence' => 'Позиция',
|
||||
|
@ -1240,6 +1258,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Максимальное количество документов или каталогов, которые будут проверены на права доступа при рекурсивном подсчёте объектов. При превышении этого количества, будет оценено количество документов и каталогов в виде каталога.',
|
||||
'settings_maxSizeForFullText' => 'Макс. размер документа для индексирования на лету',
|
||||
'settings_maxSizeForFullText_desc' => 'Размер документа, который может быть индексирован срузу после добавления',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Прочие настройки. Логин по умолчанию: admin/admin',
|
||||
'settings_notfound' => 'Не найден',
|
||||
'settings_Notification' => 'Настройки извещения',
|
||||
|
@ -1380,6 +1400,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Пользователь сохранён',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Изменения каталога сохранены',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'Неверный идентификатор каталога',
|
||||
|
@ -1390,6 +1412,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Удалён из буфера обмена',
|
||||
'splash_rm_attribute' => 'Атрибут удалён',
|
||||
'splash_rm_document' => 'Документ удалён',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Папка удалена',
|
||||
'splash_rm_group' => 'Группа удалена',
|
||||
'splash_rm_group_member' => 'Удалён член группы',
|
||||
|
@ -1397,6 +1420,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Пользователь удалён',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Настройки сохранены',
|
||||
'splash_substituted_user' => 'Пользователь переключён',
|
||||
'splash_switched_back_user' => 'Переключён на исходного пользователя',
|
||||
|
@ -1546,6 +1570,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Использовать комментарий документа',
|
||||
'use_default_categories' => 'Использовать предопределённые категории',
|
||||
'use_default_keywords' => 'Использовать предопределённые метки',
|
||||
'valid_till' => '',
|
||||
'version' => 'Версия',
|
||||
'versioning_file_creation' => 'Создать файл версий',
|
||||
'versioning_file_creation_warning' => 'Эта операция создаст файлы версий для всего каталога. После создания файлы версий будут сохранены в каталоге документов.',
|
||||
|
|
|
@ -260,6 +260,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Vytvoriť fulltext index',
|
||||
'create_fulltext_index_warning' => '',
|
||||
'creation_date' => 'Vytvorené',
|
||||
|
@ -335,6 +336,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'Platnosť nikdy nevyprší',
|
||||
'does_not_inherit_access_msg' => 'Zdediť prístup',
|
||||
'download' => 'Stiahnuť',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => '',
|
||||
'do_object_setchecksum' => '',
|
||||
'do_object_setfilesize' => '',
|
||||
|
@ -352,6 +356,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Touto akciou môžete vytvoriť výstup obsahu Vašej databázy. Po vytvorení bude výstup uložený v dátovej zložke vášho servera.',
|
||||
'dump_list' => 'Existujúce výstupy',
|
||||
'dump_remove' => 'Odstrániť vystup',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '',
|
||||
'edit' => 'upraviť',
|
||||
'edit_attributes' => 'Uprav parametre',
|
||||
|
@ -401,7 +406,16 @@ URL: [url]',
|
|||
'event_details' => 'Detail udalosti',
|
||||
'exclude_items' => '',
|
||||
'expired' => 'Platnosť vypršala',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Platnosť vyprší',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Datum platnosti zmeneny',
|
||||
'expiry_changed_email_body' => '',
|
||||
'expiry_changed_email_subject' => '',
|
||||
|
@ -440,6 +454,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Francúzština',
|
||||
'fullsearch' => 'Fulltext index vyhľadávanie',
|
||||
'fullsearch_hint' => 'Použiť fulltext index',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Informácie o fulltext indexe',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Atribúty',
|
||||
|
@ -459,6 +474,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Zhrnutie skupinovej recenzie',
|
||||
'guest_login' => 'Prihlásiť sa ako hosť',
|
||||
'guest_login_disabled' => 'Prihlásenie ako hosť je vypnuté.',
|
||||
'hash' => '',
|
||||
'help' => 'Pomoc',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -706,6 +722,7 @@ URL: [url]',
|
|||
'personal_default_keywords' => 'Osobné kľúčové slová',
|
||||
'pl_PL' => 'Polština',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -864,6 +881,7 @@ URL: [url]',
|
|||
'select_one' => 'Vyberte jeden',
|
||||
'select_users' => '',
|
||||
'select_workflow' => '',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'September',
|
||||
'sequence' => 'Postupnosť',
|
||||
|
@ -1065,6 +1083,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => '',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => '',
|
||||
'settings_notfound' => '',
|
||||
'settings_Notification' => '',
|
||||
|
@ -1205,6 +1225,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => '',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => '',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => '',
|
||||
|
@ -1215,6 +1237,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => '',
|
||||
'splash_rm_attribute' => '',
|
||||
'splash_rm_document' => 'Dokument odstránený',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Zložka zmazaná',
|
||||
'splash_rm_group' => '',
|
||||
'splash_rm_group_member' => '',
|
||||
|
@ -1222,6 +1245,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => '',
|
||||
'splash_substituted_user' => '',
|
||||
'splash_switched_back_user' => '',
|
||||
|
@ -1362,6 +1386,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Použite komentár dokumentu',
|
||||
'use_default_categories' => '',
|
||||
'use_default_keywords' => 'Použiť preddefinované kľúčové slová',
|
||||
'valid_till' => '',
|
||||
'version' => 'Verzia',
|
||||
'versioning_file_creation' => 'Vytvorenie verziovacieho súboru',
|
||||
'versioning_file_creation_warning' => 'Touto akciou môžete vytvoriť súbor, obsahujúci verziovaciu informáciu celej DMS zložky. Po vytvorení bude každý súbor uložený do zložky súborov.',
|
||||
|
|
|
@ -271,6 +271,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Skapa fulltext-sökindex',
|
||||
'create_fulltext_index_warning' => 'Du håller på att skapa fulltext-sökindex. Detta kan ta mycket lång tid och sakta ner den allmänna systemprestandan. Om du verkligen vill skapa indexet, bekräfta åtgärden.',
|
||||
'creation_date' => 'Skapat',
|
||||
|
@ -376,6 +377,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'Löper aldrig ut',
|
||||
'does_not_inherit_access_msg' => 'Ärv behörighet',
|
||||
'download' => 'Ladda ner',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Försök att laga kataloger och dokument.',
|
||||
'do_object_setchecksum' => 'Lägg till checksumma',
|
||||
'do_object_setfilesize' => 'Ange filstorlek',
|
||||
|
@ -393,6 +397,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Med denna funktion kan du skapa en dumpfil av innehållet i din databas. När dumpfilen har skapats, kommer den att sparas i datamappen på servern.',
|
||||
'dump_list' => 'Befintliga dumpfiler',
|
||||
'dump_remove' => 'Ta bort dumpfil',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'Duplicera innehåll',
|
||||
'edit' => 'Ändra',
|
||||
'edit_attributes' => 'Ändra attribut',
|
||||
|
@ -442,7 +447,16 @@ URL: [url]',
|
|||
'event_details' => 'Händelseinställningar',
|
||||
'exclude_items' => '',
|
||||
'expired' => 'Har gått ut',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Kommer att gå ut',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Utgångsdatum ändrat',
|
||||
'expiry_changed_email_body' => 'Utgångsdatum ändrat
|
||||
Dokument: [name]
|
||||
|
@ -505,6 +519,7 @@ URL: [url]',
|
|||
'fr_FR' => 'franska',
|
||||
'fullsearch' => 'Fulltext-sökning',
|
||||
'fullsearch_hint' => 'Använd fulltext-index',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Fulltext-indexinfo',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Attributdefinitioner',
|
||||
|
@ -524,6 +539,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Sammanfattning av gruppgranskning',
|
||||
'guest_login' => 'Gästinloggning',
|
||||
'guest_login_disabled' => 'Gästinloggningen är inaktiverad.',
|
||||
'hash' => '',
|
||||
'help' => 'Hjälp',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -801,6 +817,7 @@ URL: [url]',
|
|||
'personal_default_keywords' => 'Personlig nyckelordslista',
|
||||
'pl_PL' => 'polska',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -995,6 +1012,7 @@ URL: [url]',
|
|||
'select_one' => 'Välj',
|
||||
'select_users' => 'Välj användare',
|
||||
'select_workflow' => 'Välj arbetsflöde',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'september',
|
||||
'sequence' => 'Position',
|
||||
|
@ -1196,6 +1214,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Detta är maximum antal av dokument eller katalog som kommer att testas om att det har korrekt rättigheter, när objekt räknas rekursiv. Om detta nummer överskrids, kommer antalet av dokument och katalog i katalogvyn bara bli uppskattat.',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Konfigurera flera inställningar. Standard-inloggning: admin/admin',
|
||||
'settings_notfound' => 'Hittades inte',
|
||||
'settings_Notification' => 'Meddelandeinställningar',
|
||||
|
@ -1336,6 +1356,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Användare sparat',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Spara katalog ändringar',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'Ogiltigt katalog ID',
|
||||
|
@ -1346,6 +1368,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Borttagen från urklipp',
|
||||
'splash_rm_attribute' => 'Attribut har tagits bort',
|
||||
'splash_rm_document' => 'Dokument borttaget',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Mapp raderad',
|
||||
'splash_rm_group' => 'Grupp har tagits bort',
|
||||
'splash_rm_group_member' => 'Gruppmedlem har tagits bort',
|
||||
|
@ -1353,6 +1376,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Användare har tagits bort',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Inställningar sparat',
|
||||
'splash_substituted_user' => 'Bytt användare',
|
||||
'splash_switched_back_user' => 'Byt tillbaka till original användare',
|
||||
|
@ -1502,6 +1526,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Använd dokumentets kommentar',
|
||||
'use_default_categories' => 'Använd fördefinerade kategorier',
|
||||
'use_default_keywords' => 'Använd fördefinerade nyckelord',
|
||||
'valid_till' => '',
|
||||
'version' => 'Version',
|
||||
'versioning_file_creation' => 'Skapa versionsfil',
|
||||
'versioning_file_creation_warning' => 'Med denna funktion kan du skapa en fil som innehåller versionsinformationen för hela DMS-mappen. Efter skapandet kommer alla filer att sparas inom dokumentets mapp.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1048), aydin (83)
|
||||
// Translators: Admin (1049), aydin (83)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -277,6 +277,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Tam metin indeksi oluştur',
|
||||
'create_fulltext_index_warning' => 'Tam metin indeksi yeniden oluşturmak üzeresiniz. Bu işlem bir hayli uzun sürebilir ve sistem performansını olumsuz etkileyebilir. Buna rağmen indeksi oluşturmak istiyorsanız lütfen bu işlemi onaylayın.',
|
||||
'creation_date' => 'Oluşturma tarihi',
|
||||
|
@ -382,6 +383,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'Süresiz',
|
||||
'does_not_inherit_access_msg' => 'Erişim haklarını devir al',
|
||||
'download' => 'İndir',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Tüm klasörleri ve dokümanları onar.',
|
||||
'do_object_setchecksum' => 'Sağlama (checksum) ayarla',
|
||||
'do_object_setfilesize' => 'Dosya boyutu ayarla',
|
||||
|
@ -399,6 +403,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Bu işlemle veritabanınızın dump dosyasını oluşturabilirsiniz. Dump dosyası sunucunuzdaki data klasörüne kaydedilcektir.',
|
||||
'dump_list' => 'Mevcut dump dosyaları',
|
||||
'dump_remove' => 'Dump dosyasını sil',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'içeriği_klonla',
|
||||
'edit' => 'Düzenle',
|
||||
'edit_attributes' => 'Nitelikleri düzenle',
|
||||
|
@ -448,7 +453,16 @@ URL: [url]',
|
|||
'event_details' => 'Etkinkil detayları',
|
||||
'exclude_items' => '',
|
||||
'expired' => 'Süresi doldu',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Süresinin dolacağı zaman',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Süresinin dolacağı tarihi değişti',
|
||||
'expiry_changed_email_body' => 'Bitiş tarihi değişti
|
||||
Doküman: [name]
|
||||
|
@ -511,6 +525,7 @@ URL: [url]',
|
|||
'fr_FR' => 'Fransızca',
|
||||
'fullsearch' => 'Tam metinde ara',
|
||||
'fullsearch_hint' => 'Tam metin indeks kullan',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Tam metin indeks bilgi',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Nitelikler',
|
||||
|
@ -530,6 +545,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Grup gözden geçirme özeti',
|
||||
'guest_login' => 'Misafir olarak giriş yap',
|
||||
'guest_login_disabled' => 'Misafir girişi devre dışı.',
|
||||
'hash' => '',
|
||||
'help' => 'Yardım',
|
||||
'home_folder' => 'Temel klasör',
|
||||
'hook_name' => '',
|
||||
|
@ -817,6 +833,7 @@ Giriş yaparken halen sorun yaşıyorsanız lütfen sistem yöneticinizle görü
|
|||
'personal_default_keywords' => 'Kişisel anahtar kelimeler',
|
||||
'pl_PL' => 'Polonyaca',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => 'Önizle',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -1011,6 +1028,7 @@ URL: [url]',
|
|||
'select_one' => 'Birini seçiniz',
|
||||
'select_users' => 'Kullanıcı seçmek için tıklayın',
|
||||
'select_workflow' => 'İş akışı seç',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => 'Eylül',
|
||||
'sequence' => 'Sıralama',
|
||||
|
@ -1212,6 +1230,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Nesneleri özyinelemeli olarak erişim hakkı kontrolü için sayarken bu değer en fazla sayılacak doküman ve klasör sayısını belirler. Bu sayı aşıldığında klasörün içindeki dosya ve diğer klasörlerin sayısı tahmin yolu ile belirlenecektir.',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Daha fazla ayar yapın. Varsayılan kullanıcı adı/parola: admin/admin',
|
||||
'settings_notfound' => 'Bulunamadı',
|
||||
'settings_Notification' => 'Bildirim ayarları',
|
||||
|
@ -1352,6 +1372,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Kullanıcı kaydedildi',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Klasör değişiklikleri kaydedildi',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'Hatalı klasör ID',
|
||||
|
@ -1362,6 +1384,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Panodan silindi',
|
||||
'splash_rm_attribute' => 'Nitelik silindi',
|
||||
'splash_rm_document' => 'Doküman silindi',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Klasör silindi',
|
||||
'splash_rm_group' => 'Grup silindi',
|
||||
'splash_rm_group_member' => 'Grup üyesi silindi',
|
||||
|
@ -1369,6 +1392,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Kullanıcı silindi',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Ayarlar kaydedildi',
|
||||
'splash_substituted_user' => 'Yerine geçilen kullanıcı',
|
||||
'splash_switched_back_user' => 'Orijinal kullanıcıya geri dönüldü',
|
||||
|
@ -1428,7 +1452,7 @@ URL: [url]',
|
|||
'thursday' => 'Perşembe',
|
||||
'thursday_abbr' => 'Pe',
|
||||
'timeline' => 'Zaman Çizelgesi',
|
||||
'timeline_add_file' => '',
|
||||
'timeline_add_file' => 'Yeni Ek',
|
||||
'timeline_add_version' => '',
|
||||
'timeline_full_add_file' => '',
|
||||
'timeline_full_add_version' => '',
|
||||
|
@ -1518,6 +1542,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Doküman açıklamasını kullan',
|
||||
'use_default_categories' => 'Ön tanımlı kategorileri kullan',
|
||||
'use_default_keywords' => 'Ön tanımlı anahtar kelimeleri kullan',
|
||||
'valid_till' => '',
|
||||
'version' => 'Versiyon',
|
||||
'versioning_file_creation' => 'Version dosyası oluşturma',
|
||||
'versioning_file_creation_warning' => 'Bu işlem ile tüm klasörlerdeki versiyon bilgisinin bulunduğu bir dosya oluşturursunuz. Her dosya oluşturulduğunda doküman klasörüne kaydedilir.',
|
||||
|
|
|
@ -283,6 +283,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => 'Команда',
|
||||
'converter_new_mimetype' => 'Новий mime тип',
|
||||
'copied_to_checkout_as' => 'Файл скопійовано в середовище скачування як',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => 'Створити повнотекстовий індекс',
|
||||
'create_fulltext_index_warning' => 'Ви хочете перестворити повнотекстовий індекс. Це займе деякий час і знизить продуктивність. Продовжити?',
|
||||
'creation_date' => 'Створено',
|
||||
|
@ -388,6 +389,9 @@ URL: [url]',
|
|||
'does_not_expire' => 'Без терміну виконання',
|
||||
'does_not_inherit_access_msg' => 'Наслідувати рівень доступу',
|
||||
'download' => 'Завантажити',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => 'Виправити всі каталоги і документи',
|
||||
'do_object_setchecksum' => 'Встановити контрольну суму',
|
||||
'do_object_setfilesize' => 'Встановити розмір файлу',
|
||||
|
@ -405,6 +409,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => 'Ця операція створить дамп бази даних. Після створення файл буде збережено в каталозі даних сервера.',
|
||||
'dump_list' => 'Існуючі дампи',
|
||||
'dump_remove' => 'Видалити дамп',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => 'Дубльований вміст',
|
||||
'edit' => 'Змінити',
|
||||
'edit_attributes' => 'Змінити атрибути',
|
||||
|
@ -454,7 +459,16 @@ URL: [url]',
|
|||
'event_details' => 'Інформація про подію',
|
||||
'exclude_items' => 'Виключені елементи',
|
||||
'expired' => 'Термін виконання вийшов',
|
||||
'expired_at_date' => '',
|
||||
'expires' => 'Термін виконання виходить',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => 'Дату терміну виконання змінено',
|
||||
'expiry_changed_email_body' => 'Змінено дату терміну виконання
|
||||
Документ: [name]
|
||||
|
@ -517,6 +531,7 @@ URL: [url]',
|
|||
'fr_FR' => 'French',
|
||||
'fullsearch' => 'Повнотекстовий пошук',
|
||||
'fullsearch_hint' => 'Використовувати повнотекстовий індекс',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => 'Інформація про повнотекстовий індекс',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => 'Атрибути',
|
||||
|
@ -536,6 +551,7 @@ URL: [url]',
|
|||
'group_review_summary' => 'Підсумки рецензування групи',
|
||||
'guest_login' => 'Увійти як гість',
|
||||
'guest_login_disabled' => 'Гостьовий вхід відключено',
|
||||
'hash' => '',
|
||||
'help' => 'Допомога',
|
||||
'home_folder' => 'Домашній каталог',
|
||||
'hook_name' => '',
|
||||
|
@ -818,6 +834,7 @@ URL: [url]',
|
|||
'personal_default_keywords' => 'Особистий список ключових слів',
|
||||
'pl_PL' => 'Polish',
|
||||
'possible_substitutes' => 'Підстановки',
|
||||
'preset_expires' => '',
|
||||
'preview' => 'Попередній перегляд',
|
||||
'preview_converters' => 'Попередній перегляд перетворення документу',
|
||||
'preview_images' => '',
|
||||
|
@ -1032,6 +1049,7 @@ URL: [url]',
|
|||
'select_one' => 'Оберіть',
|
||||
'select_users' => 'Оберіть користувачів',
|
||||
'select_workflow' => 'Оберіть процес',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => 'Надіслати тестове повідомлення',
|
||||
'september' => 'Вересень',
|
||||
'sequence' => 'Позиція',
|
||||
|
@ -1233,6 +1251,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => 'Максимальна кількість документів і каталогів, які будуть перевірені на права доступу при рекурсивному підрахунку об\'єктів. При перевищенні цієї кількості, буде оцінено кількість документів і каталогів у вигляді каталогу.',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => 'Інші налаштування. Логін по замовчуванню: admin/admin',
|
||||
'settings_notfound' => 'Не знайдено',
|
||||
'settings_Notification' => 'Налаштування сповіщення',
|
||||
|
@ -1373,6 +1393,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => 'Користувача збережено',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => 'Зміни каталогу збережено',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => 'Невірний ідентифікатор каталогу',
|
||||
|
@ -1383,6 +1405,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => 'Видалити з буферу обміну',
|
||||
'splash_rm_attribute' => 'Атрибут видалено',
|
||||
'splash_rm_document' => 'Документ видалено',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => 'Папку видалено',
|
||||
'splash_rm_group' => 'Групу видалено',
|
||||
'splash_rm_group_member' => 'Члена групи видалено',
|
||||
|
@ -1390,6 +1413,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Користувача видалено',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => 'Налаштування збережено',
|
||||
'splash_substituted_user' => 'Користувача переключено',
|
||||
'splash_switched_back_user' => 'Переключено на початкового користувача',
|
||||
|
@ -1539,6 +1563,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => 'Використовувати коментар документа',
|
||||
'use_default_categories' => 'Використовувати наперед визначені категорії',
|
||||
'use_default_keywords' => 'Використовувати наперед визначені ключові слова',
|
||||
'valid_till' => '',
|
||||
'version' => 'Версія',
|
||||
'versioning_file_creation' => 'Створити файл версій',
|
||||
'versioning_file_creation_warning' => 'Ця операція створить файли версій для всього каталогу. Після створення файли версій будуть збережені в каталозі документів.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (674), fengjohn (5)
|
||||
// Translators: Admin (679), fengjohn (5)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -155,14 +155,14 @@ URL: [url]',
|
|||
'attr_malformed_int' => '',
|
||||
'attr_malformed_url' => '',
|
||||
'attr_max_values' => '',
|
||||
'attr_min_values' => '',
|
||||
'attr_min_values' => '最小值没达到',
|
||||
'attr_not_in_valueset' => '',
|
||||
'attr_no_regex_match' => '',
|
||||
'attr_validation_error' => '',
|
||||
'at_least_n_users_of_group' => '',
|
||||
'august' => '八 月',
|
||||
'authentication' => '认证',
|
||||
'author' => '',
|
||||
'author' => '作者',
|
||||
'automatic_status_update' => '自动状态变化',
|
||||
'back' => '返回',
|
||||
'backup_list' => '备份列表',
|
||||
|
@ -260,6 +260,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => '创建全文索引',
|
||||
'create_fulltext_index_warning' => '你将重新创建全
|
||||
文索引。这将花费一定的时间但是会提升系统的整体表现。如果你想要重新创建索引,请确
|
||||
|
@ -337,6 +338,9 @@ URL: [url]',
|
|||
'does_not_expire' => '永不过期',
|
||||
'does_not_inherit_access_msg' => '继承访问权限',
|
||||
'download' => '下载',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => '',
|
||||
'do_object_setchecksum' => '',
|
||||
'do_object_setfilesize' => '设置文件大小',
|
||||
|
@ -354,6 +358,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => '通过此操作,您可以创建一个您数据库的转储文件,之后可以将转储数据保存到您服务器所在的数据文件夹中',
|
||||
'dump_list' => '存在转储文件',
|
||||
'dump_remove' => '删除转储文件',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '重复的内容',
|
||||
'edit' => '编辑',
|
||||
'edit_attributes' => '编辑属性',
|
||||
|
@ -403,12 +408,21 @@ URL: [url]',
|
|||
'event_details' => '错误详情',
|
||||
'exclude_items' => '',
|
||||
'expired' => '过期',
|
||||
'expired_at_date' => '',
|
||||
'expires' => '有效限期',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => '到期日子已改变',
|
||||
'expiry_changed_email_body' => '',
|
||||
'expiry_changed_email_subject' => '',
|
||||
'export' => '',
|
||||
'extension_manager' => '',
|
||||
'extension_manager' => '扩展管理器',
|
||||
'february' => '二 月',
|
||||
'file' => '文件',
|
||||
'files' => '文件',
|
||||
|
@ -442,6 +456,7 @@ URL: [url]',
|
|||
'fr_FR' => '法语',
|
||||
'fullsearch' => '全文搜索',
|
||||
'fullsearch_hint' => '使用全文索引',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => '全文索引信息',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => '属性',
|
||||
|
@ -461,6 +476,7 @@ URL: [url]',
|
|||
'group_review_summary' => '校对组汇总',
|
||||
'guest_login' => '来宾登录',
|
||||
'guest_login_disabled' => '来宾登录被禁止',
|
||||
'hash' => '',
|
||||
'help' => '帮助',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -667,7 +683,7 @@ URL: [url]',
|
|||
'no_revision_planed' => '',
|
||||
'no_update_cause_locked' => '您不能更新此文档,请联系该文档锁定人',
|
||||
'no_user_image' => '无图片',
|
||||
'no_version_check' => '',
|
||||
'no_version_check' => '检查SeedDMS的新版本失败!这可能是由于在您的php配置中allow_url_fopen设置为0引起的。',
|
||||
'no_version_modification' => '',
|
||||
'no_workflow_available' => '',
|
||||
'objectcheck' => '文件夹/文件检查',
|
||||
|
@ -708,6 +724,7 @@ URL: [url]',
|
|||
'personal_default_keywords' => '用户关键字',
|
||||
'pl_PL' => '波兰语',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '预览',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -734,7 +751,7 @@ URL: [url]',
|
|||
'reception_rejected' => '',
|
||||
'recipients' => '',
|
||||
'redraw' => '',
|
||||
'refresh' => '',
|
||||
'refresh' => '刷新',
|
||||
'rejected' => '拒绝',
|
||||
'released' => '发布',
|
||||
'removed_approver' => '已经从审核人名单中删除',
|
||||
|
@ -866,6 +883,7 @@ URL: [url]',
|
|||
'select_one' => '选择一个',
|
||||
'select_users' => '点击选择用户',
|
||||
'select_workflow' => '',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => '九 月',
|
||||
'sequence' => '次序',
|
||||
|
@ -1067,6 +1085,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => '',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => '',
|
||||
'settings_notfound' => '',
|
||||
'settings_Notification' => '通知设置',
|
||||
|
@ -1207,6 +1227,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => '',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => '',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => '',
|
||||
|
@ -1217,6 +1239,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => '已从剪切板删除',
|
||||
'splash_rm_attribute' => '',
|
||||
'splash_rm_document' => '文档已被移除',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => '已删除的文件夹',
|
||||
'splash_rm_group' => '',
|
||||
'splash_rm_group_member' => '',
|
||||
|
@ -1224,6 +1247,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => '',
|
||||
'splash_substituted_user' => '',
|
||||
'splash_switched_back_user' => '',
|
||||
|
@ -1364,6 +1388,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => '文档注释',
|
||||
'use_default_categories' => '默认分类',
|
||||
'use_default_keywords' => '使用预定义关键字',
|
||||
'valid_till' => '',
|
||||
'version' => '版本',
|
||||
'versioning_file_creation' => '创建版本文件',
|
||||
'versioning_file_creation_warning' => '通过此操作,您可以一个包含整个DMS文件夹的版本信息文件. 版本文件一经创建,每个文件都将保存到文件夹中.',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (2376)
|
||||
// Translators: Admin (2377)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -260,6 +260,7 @@ URL: [url]',
|
|||
'converter_new_cmd' => '',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
'create_fulltext_index' => '創建全文索引',
|
||||
'create_fulltext_index_warning' => '',
|
||||
'creation_date' => '創建日期',
|
||||
|
@ -335,6 +336,9 @@ URL: [url]',
|
|||
'does_not_expire' => '永不過期',
|
||||
'does_not_inherit_access_msg' => '繼承存取權限',
|
||||
'download' => '下載',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
'do_object_repair' => '',
|
||||
'do_object_setchecksum' => '',
|
||||
'do_object_setfilesize' => '',
|
||||
|
@ -352,6 +356,7 @@ URL: [url]',
|
|||
'dump_creation_warning' => '通過此操作,您可以創建一個您資料庫的轉儲檔,之後可以將轉儲資料保存到您伺服器所在的資料檔案夾中',
|
||||
'dump_list' => '存在轉儲文件',
|
||||
'dump_remove' => '刪除轉儲檔',
|
||||
'duplicates' => '',
|
||||
'duplicate_content' => '',
|
||||
'edit' => '編輯',
|
||||
'edit_attributes' => '編輯屬性',
|
||||
|
@ -401,7 +406,16 @@ URL: [url]',
|
|||
'event_details' => '錯誤詳情',
|
||||
'exclude_items' => '',
|
||||
'expired' => '過期',
|
||||
'expired_at_date' => '',
|
||||
'expires' => '有效限期',
|
||||
'expire_by_date' => '',
|
||||
'expire_in_1d' => '',
|
||||
'expire_in_1h' => '',
|
||||
'expire_in_1m' => '',
|
||||
'expire_in_1w' => '',
|
||||
'expire_in_2h' => '',
|
||||
'expire_today' => '',
|
||||
'expire_tomorrow' => '',
|
||||
'expiry_changed_email' => '到期日子已改變',
|
||||
'expiry_changed_email_body' => '',
|
||||
'expiry_changed_email_subject' => '',
|
||||
|
@ -440,6 +454,7 @@ URL: [url]',
|
|||
'fr_FR' => '法語',
|
||||
'fullsearch' => '全文檢索搜尋',
|
||||
'fullsearch_hint' => '使用全文索引',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltext_info' => '全文索引資訊',
|
||||
'global_attributedefinitiongroups' => '',
|
||||
'global_attributedefinitions' => '屬性',
|
||||
|
@ -459,6 +474,7 @@ URL: [url]',
|
|||
'group_review_summary' => '校對組匯總',
|
||||
'guest_login' => '來賓登錄',
|
||||
'guest_login_disabled' => '來賓登錄被禁止',
|
||||
'hash' => '',
|
||||
'help' => '幫助',
|
||||
'home_folder' => '',
|
||||
'hook_name' => '',
|
||||
|
@ -706,6 +722,7 @@ URL: [url]',
|
|||
'personal_default_keywords' => '用戶關鍵字',
|
||||
'pl_PL' => '波蘭語',
|
||||
'possible_substitutes' => '',
|
||||
'preset_expires' => '',
|
||||
'preview' => '',
|
||||
'preview_converters' => '',
|
||||
'preview_images' => '',
|
||||
|
@ -837,7 +854,7 @@ URL: [url]',
|
|||
'search_query' => '搜索',
|
||||
'search_report' => '找到 [count] 個文檔',
|
||||
'search_report_fulltext' => '',
|
||||
'search_resultmode' => '',
|
||||
'search_resultmode' => '搜尋結果',
|
||||
'search_resultmode_both' => '',
|
||||
'search_results' => '搜索結果',
|
||||
'search_results_access_filtered' => '搜索到得結果中可能包含受限訪問的文檔',
|
||||
|
@ -864,6 +881,7 @@ URL: [url]',
|
|||
'select_one' => '選擇一個',
|
||||
'select_users' => '點擊選擇用戶',
|
||||
'select_workflow' => '',
|
||||
'send_email' => '',
|
||||
'send_test_mail' => '',
|
||||
'september' => '九 月',
|
||||
'sequence' => '次序',
|
||||
|
@ -1065,6 +1083,8 @@ URL: [url]',
|
|||
'settings_maxRecursiveCount_desc' => '',
|
||||
'settings_maxSizeForFullText' => '',
|
||||
'settings_maxSizeForFullText_desc' => '',
|
||||
'settings_maxUploadSize' => '',
|
||||
'settings_maxUploadSize_desc' => '',
|
||||
'settings_more_settings' => '',
|
||||
'settings_notfound' => '',
|
||||
'settings_Notification' => '通知設置',
|
||||
|
@ -1205,6 +1225,8 @@ URL: [url]',
|
|||
'splash_edit_role' => '',
|
||||
'splash_edit_user' => '',
|
||||
'splash_error_add_to_transmittal' => '',
|
||||
'splash_error_rm_download_link' => '',
|
||||
'splash_error_send_download_link' => '',
|
||||
'splash_folder_edited' => '',
|
||||
'splash_importfs' => '',
|
||||
'splash_invalid_folder_id' => '',
|
||||
|
@ -1215,6 +1237,7 @@ URL: [url]',
|
|||
'splash_removed_from_clipboard' => '',
|
||||
'splash_rm_attribute' => '',
|
||||
'splash_rm_document' => '文檔已被移除',
|
||||
'splash_rm_download_link' => '',
|
||||
'splash_rm_folder' => '已刪除的資料夾',
|
||||
'splash_rm_group' => '',
|
||||
'splash_rm_group_member' => '',
|
||||
|
@ -1222,6 +1245,7 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_send_download_link' => '',
|
||||
'splash_settings_saved' => '',
|
||||
'splash_substituted_user' => '',
|
||||
'splash_switched_back_user' => '',
|
||||
|
@ -1362,6 +1386,7 @@ URL: [url]',
|
|||
'use_comment_of_document' => '',
|
||||
'use_default_categories' => '默認分類',
|
||||
'use_default_keywords' => '使用預定義關鍵字',
|
||||
'valid_till' => '',
|
||||
'version' => '版本',
|
||||
'versioning_file_creation' => '創建版本檔',
|
||||
'versioning_file_creation_warning' => '通過此操作,您可以一個包含整個DMS資料夾的版本資訊檔. 版本檔一經創建,每個檔都將保存到資料夾中.',
|
||||
|
|
|
@ -244,7 +244,7 @@ if(isset($_POST['fineuploaderuuids']) && $_POST['fineuploaderuuids']) {
|
|||
$uuids = explode(';', $_POST['fineuploaderuuids']);
|
||||
$names = explode(';', $_POST['fineuploadernames']);
|
||||
foreach($uuids as $i=>$uuid) {
|
||||
$fullfile = $settings->_stagingDir.'/'.basename($uuid);
|
||||
$fullfile = $settings->_stagingDir.'/'.utf8_basename($uuid);
|
||||
if(file_exists($fullfile)) {
|
||||
$finfo = finfo_open(FILEINFO_MIME_TYPE);
|
||||
$mimetype = finfo_file($finfo, $fullfile);
|
||||
|
@ -281,7 +281,7 @@ for ($file_num=0;$file_num<count($_FILES["userfile"]["tmp_name"]);$file_num++){
|
|||
|
||||
if ((count($_FILES["userfile"]["tmp_name"])==1)&&($_POST["name"]!=""))
|
||||
$name = trim($_POST["name"]);
|
||||
else $name = basename($userfilename);
|
||||
else $name = utf8_basename($userfilename);
|
||||
|
||||
/* Check if name already exists in the folder */
|
||||
if(!$settings->_enableDuplicateDocNames) {
|
||||
|
@ -307,7 +307,7 @@ for ($file_num=0;$file_num<count($_FILES["userfile"]["tmp_name"]);$file_num++){
|
|||
|
||||
$filesize = SeedDMS_Core_File::fileSize($userfiletmp);
|
||||
$res = $folder->addDocument($name, $comment, $expires, $owner, $keywords,
|
||||
$cats, $userfiletmp, basename($userfilename),
|
||||
$cats, $userfiletmp, utf8_basename($userfilename),
|
||||
$fileType, $userfiletype, $sequence,
|
||||
$reviewers, $approvers, $reqversion,
|
||||
$version_comment, $attributes, $attributes_version, $workflow);
|
||||
|
|
|
@ -90,7 +90,7 @@ for ($file_num=0;$file_num<count($_FILES["userfile"]["tmp_name"]);$file_num++){
|
|||
}
|
||||
|
||||
$res = $document->addDocumentFile($name, $comment, $user, $userfiletmp,
|
||||
basename($userfilename),$fileType, $userfiletype );
|
||||
utf8_basename($userfilename),$fileType, $userfiletype );
|
||||
|
||||
if (is_bool($res) && !$res) {
|
||||
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("error_occured"));
|
||||
|
|
|
@ -78,7 +78,7 @@ if( move_uploaded_file( $source_file_path, $target_file_path ) ) {
|
|||
}
|
||||
|
||||
$res = $document->addDocumentFile($name, $comment, $user, $userfiletmp,
|
||||
basename($userfilename),$fileType, $userfiletype );
|
||||
utf8_basename($userfilename),$fileType, $userfiletype );
|
||||
|
||||
if (is_bool($res) && !$res) {
|
||||
UI::exitError(getMLText("folder_title", array("foldername" => $folder->getName())),getMLText("error_occured"));
|
||||
|
|
|
@ -582,7 +582,7 @@ switch($command) {
|
|||
if (!empty($_POST["name"]))
|
||||
$name = $_POST["name"];
|
||||
else
|
||||
$name = basename($userfilename);
|
||||
$name = utf8_basename($userfilename);
|
||||
|
||||
/* Check if name already exists in the folder */
|
||||
if(!$settings->_enableDuplicateDocNames) {
|
||||
|
@ -651,7 +651,7 @@ switch($command) {
|
|||
|
||||
$filesize = SeedDMS_Core_File::fileSize($userfiletmp);
|
||||
$res = $folder->addDocument($name, '', $expires, $user, '',
|
||||
array(), $userfiletmp, basename($userfilename),
|
||||
array(), $userfiletmp, utf8_basename($userfilename),
|
||||
$fileType, $userfiletype, 0,
|
||||
$reviewers, $approvers, 1,
|
||||
'', array(), array(), $workflow);
|
||||
|
@ -686,7 +686,7 @@ switch($command) {
|
|||
if(isset($GLOBALS['SEEDDMS_HOOKS']['addDocument'])) {
|
||||
foreach($GLOBALS['SEEDDMS_HOOKS']['addDocument'] as $hookObj) {
|
||||
if (method_exists($hookObj, 'preIndexDocument')) {
|
||||
$hookObj->preIndexDocument($document, $idoc);
|
||||
$hookObj->preIndexDocument(null, $document, $idoc);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -112,6 +112,7 @@ if ($action == "saveSettings")
|
|||
$settings->_logFileRotation = $_POST["logFileRotation"];
|
||||
$settings->_enableLargeFileUpload = getBoolValue("enableLargeFileUpload");
|
||||
$settings->_partitionSize = $_POST["partitionSize"];
|
||||
$settings->_maxUploadSize = $_POST["maxUploadSize"];
|
||||
|
||||
// SETTINGS - SYSTEM - AUTHENTICATION
|
||||
$settings->_enableGuestLogin = getBoolValue("enableGuestLogin");
|
||||
|
@ -188,7 +189,7 @@ if ($action == "saveSettings")
|
|||
|
||||
// SETTINGS - ADVANCED - INDEX CMD
|
||||
$settings->_converters['fulltext'] = $_POST["converters"];
|
||||
$newmimetype = preg_replace('#[^A-Za-z0-9_/+.-]+#', '', $_POST["converters_newmimetype"]);
|
||||
$newmimetype = preg_replace('#[^A-Za-z0-9_/+.-*]+#', '', $_POST["converters_newmimetype"]);
|
||||
if($newmimetype && trim($_POST["converters_newcmd"])) {
|
||||
$settings->_converters['fulltext'][$newmimetype] = trim($_POST["converters_newcmd"]);
|
||||
}
|
||||
|
|
|
@ -252,6 +252,9 @@ ul.qq-upload-list li span {
|
|||
border: 1px solid #cccccc;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.qq-hide, .qq-uploader dialog {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
.nav-tabs > li {
|
||||
|
|
|
@ -7411,4 +7411,4 @@
|
|||
});
|
||||
};
|
||||
})(window);
|
||||
//# sourceMappingURL=fine-uploader.js.map
|
||||
//# sourceMappingURL=fine-uploader.js.map
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
<?php
|
||||
require_once("../inc/inc.ClassSettings.php");
|
||||
if(isset($_SERVER['SEEDDMS_HOME'])) {
|
||||
require_once($_SERVER['SEEDDMS_HOME']."/inc/inc.ClassSettings.php");
|
||||
} else {
|
||||
require_once("../inc/inc.ClassSettings.php");
|
||||
}
|
||||
|
||||
function usage() { /* {{{ */
|
||||
echo "Usage:\n";
|
||||
|
@ -276,7 +280,7 @@ function tree($folder, $parent=null, $indent='', $skipcurrent=false) { /* {{{ */
|
|||
if($attributes = $document->getAttributes()) {
|
||||
foreach($attributes as $attribute) {
|
||||
$attrdef = $attribute->getAttributeDefinition();
|
||||
echo $indent." <attr type=\"user\" attrdef=\"".$attrdef->getID()."\">".$attribute->getValue()."</attr>\n";
|
||||
echo $indent." <attr type=\"user\" attrdef=\"".$attrdef->getID()."\">".wrapWithCData($attribute->getValue())."</attr>\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -332,7 +336,7 @@ function tree($folder, $parent=null, $indent='', $skipcurrent=false) { /* {{{ */
|
|||
if($attributes = $version->getAttributes()) {
|
||||
foreach($attributes as $attribute) {
|
||||
$attrdef = $attribute->getAttributeDefinition();
|
||||
echo $indent." <attr type=\"user\" attrdef=\"".$attrdef->getID()."\">".$attribute->getValue()."</attr>\n";
|
||||
echo $indent." <attr type=\"user\" attrdef=\"".$attrdef->getID()."\">".wrapWithCData($attribute->getValue())."</attr>\n";
|
||||
}
|
||||
}
|
||||
if($statuslog = $version->getStatusLog()) {
|
||||
|
@ -623,7 +627,7 @@ if($attrdefs) {
|
|||
echo "\">\n";
|
||||
echo " <attr name=\"name\">".$attrdef->getName()."</attr>\n";
|
||||
echo " <attr name=\"multiple\">".$attrdef->getMultipleValues()."</attr>\n";
|
||||
echo " <attr name=\"valueset\">".$attrdef->getValueSet()."</attr>\n";
|
||||
echo " <attr name=\"valueset\">".wrapWithCData($attrdef->getValueSet())."</attr>\n";
|
||||
echo " <attr name=\"type\">".$attrdef->getType()."</attr>\n";
|
||||
echo " <attr name=\"minvalues\">".$attrdef->getMinValues()."</attr>\n";
|
||||
echo " <attr name=\"maxvalues\">".$attrdef->getMaxValues()."</attr>\n";
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
<?php
|
||||
require_once("../inc/inc.ClassSettings.php");
|
||||
if(isset($_SERVER['SEEDDMS_HOME'])) {
|
||||
require_once($_SERVER['SEEDDMS_HOME']."/inc/inc.ClassSettings.php");
|
||||
} else {
|
||||
require_once("../inc/inc.ClassSettings.php");
|
||||
}
|
||||
require("Log.php");
|
||||
|
||||
function usage() { /* {{{ */
|
||||
|
@ -39,10 +43,15 @@ function getRevAppLog($reviews) { /* {{{ */
|
|||
if($review['attributes']['type'] == 1) {
|
||||
if(isset($objmap['groups'][(int) $review['attributes']['required']]))
|
||||
$newreview['required'] = $dms->getGroup($objmap['groups'][(int) $review['attributes']['required']]);
|
||||
else
|
||||
$logger->warning("Group ".(int) $review['attributes']['required']." for Log cannot be mapped");
|
||||
} else {
|
||||
if(isset($objmap['users'][(int) $review['attributes']['required']]))
|
||||
$newreview['required'] = $dms->getUser($objmap['users'][(int) $review['attributes']['required']]);
|
||||
else
|
||||
$logger->warning("User ".(int) $review['attributes']['required']." for Log cannot be mapped");
|
||||
}
|
||||
if(isset($newreview['required'])) {
|
||||
$newreview['logs'] = array();
|
||||
foreach($review['logs'] as $j=>$log) {
|
||||
if(!array_key_exists($log['attributes']['user'], $objmap['users'])) {
|
||||
|
@ -63,6 +72,7 @@ function getRevAppLog($reviews) { /* {{{ */
|
|||
}
|
||||
}
|
||||
$newreviews[] = $newreview;
|
||||
}
|
||||
}
|
||||
return $newreviews;
|
||||
} /* }}} */
|
||||
|
@ -101,7 +111,7 @@ function insert_user($user) { /* {{{ */
|
|||
if($debug) print_r($user);
|
||||
|
||||
if ($newUser = $dms->getUserByLogin($user['attributes']['login'])) {
|
||||
$logger->info("User '".$user['attributes']['login']."' already exists");
|
||||
$logger->warning("User '".$user['attributes']['login']."' already exists");
|
||||
} else {
|
||||
if(in_array('users', $sections)) {
|
||||
if(substr($user['attributes']['pwdexpiration'], 0, 10) == '0000-00-00')
|
||||
|
@ -164,7 +174,7 @@ function insert_group($group) { /* {{{ */
|
|||
if($debug) print_r($group);
|
||||
|
||||
if ($newGroup = $dms->getGroupByName($group['attributes']['name'])) {
|
||||
$logger->info("Group already exists");
|
||||
$logger->warning("Group already exists");
|
||||
} else {
|
||||
if(in_array('groups', $sections)) {
|
||||
$newGroup = $dms->addGroup($group['attributes']['name'], $group['attributes']['comment']);
|
||||
|
@ -209,10 +219,11 @@ function insert_attributedefinition($attrdef) { /* {{{ */
|
|||
if($debug)
|
||||
print_r($attrdef);
|
||||
if($newAttrdef = $dms->getAttributeDefinitionByName($attrdef['attributes']['name'])) {
|
||||
$logger->info("Attribute definition already exists");
|
||||
$logger->warning("Attribute definition already exists");
|
||||
} else {
|
||||
if(in_array('attributedefinitions', $sections)) {
|
||||
if(!$newAttrdef = $dms->addAttributeDefinition($attrdef['attributes']['name'], $attrdef['objecttype'], $attrdef['attributes']['type'], $attrdef['attributes']['multiple'], $attrdef['attributes']['minvalues'], $attrdef['attributes']['maxvalues'], $attrdef['attributes']['valueset'], $attrdef['attributes']['regex'])) {
|
||||
$objtype = ($attrdef['objecttype'] == 'folder' ? SeedDMS_Core_AttributeDefinition::objtype_folder : ($attrdef['objecttype'] == 'document' ? SeedDMS_Core_AttributeDefinition::objtype_document : ($attrdef['objecttype'] == 'documentcontent' ? SeedDMS_Core_AttributeDefinition::objtype_documentcontent : 0)));
|
||||
if(!$newAttrdef = $dms->addAttributeDefinition($attrdef['attributes']['name'], $objtype, $attrdef['attributes']['type'], $attrdef['attributes']['multiple'], $attrdef['attributes']['minvalues'], $attrdef['attributes']['maxvalues'], $attrdef['attributes']['valueset'], $attrdef['attributes']['regex'])) {
|
||||
$logger->err("Could not add attribute definition");
|
||||
$logger->debug($dms->getDB()->getErrorMsg());
|
||||
return false;
|
||||
|
@ -234,7 +245,7 @@ function insert_documentcategory($documentcat) { /* {{{ */
|
|||
if($debug) print_r($documentcat);
|
||||
|
||||
if($newCategory = $dms->getDocumentCategoryByName($documentcat['attributes']['name'])) {
|
||||
$logger->info("Document category already exists");
|
||||
$logger->warning("Document category already exists");
|
||||
} else {
|
||||
if(in_array('documentcategories', $sections)) {
|
||||
if(!$newCategory = $dms->addDocumentCategory($documentcat['attributes']['name'])) {
|
||||
|
@ -266,7 +277,7 @@ function insert_keywordcategory($keywordcat) { /* {{{ */
|
|||
$owner = $objmap['users'][(int) $keywordcat['attributes']['owner']];
|
||||
|
||||
if($newCategory = $dms->getKeywordCategoryByName($keywordcat['attributes']['name'], $owner)) {
|
||||
$logger->info("Document category already exists");
|
||||
$logger->warning("Keyword category already exists");
|
||||
} else {
|
||||
if(in_array('keywordcategories', $sections)) {
|
||||
if(!$newCategory = $dms->addKeywordCategory($owner, $keywordcat['attributes']['name'])) {
|
||||
|
@ -299,7 +310,7 @@ function insert_workflow($workflow) { /* {{{ */
|
|||
if($debug)
|
||||
print_r($workflow);
|
||||
if($newWorkflow = $dms->getWorkflowByName($workflow['attributes']['name'])) {
|
||||
$logger->info("Workflow already exists");
|
||||
$logger->warning("Workflow already exists");
|
||||
} else {
|
||||
if(in_array('workflows', $sections)) {
|
||||
if(!$initstate = $dms->getWorkflowState($objmap['workflowstates'][(int)$workflow['attributes']['initstate']])) {
|
||||
|
@ -372,7 +383,7 @@ function insert_workflowstate($workflowstate) { /* {{{ */
|
|||
if($debug)
|
||||
print_r($workflowstate);
|
||||
if($newWorkflowstate = $dms->getWorkflowStateByName($workflowstate['attributes']['name'])) {
|
||||
$logger->info("Workflow state already exists");
|
||||
$logger->warning("Workflow state already exists");
|
||||
} else {
|
||||
if(in_array('workflows', $sections)) {
|
||||
if(!$newWorkflowstate = $dms->addWorkflowState($workflowstate['attributes']['name'], isset($workflowstate['attributes']['documentstate']) ? $workflowstate['attributes']['documentstate'] : 0)) {
|
||||
|
@ -396,7 +407,7 @@ function insert_workflowaction($workflowaction) { /* {{{ */
|
|||
if($debug)
|
||||
print_r($workflowaction);
|
||||
if($newWorkflowaction = $dms->getWorkflowActionByName($workflowaction['attributes']['name'])) {
|
||||
$logger->info("Workflow action already exists");
|
||||
$logger->warning("Workflow action already exists");
|
||||
} else {
|
||||
if(in_array('workflows', $sections)) {
|
||||
if(!$newWorkflowaction = $dms->addWorkflowAction($workflowaction['attributes']['name'])) {
|
||||
|
@ -516,7 +527,7 @@ function insert_document($document) { /* {{{ */
|
|||
$document['attributes']['comment'],
|
||||
isset($document['attributes']['expires']) ? dateToTimestamp($document['attributes']['expires']) : 0,
|
||||
$owner,
|
||||
isset($document['attributes']['keywords']) ? $document['attributes']['keywords'] : 0,
|
||||
isset($document['attributes']['keywords']) ? $document['attributes']['keywords'] : '',
|
||||
$categories,
|
||||
$filename,
|
||||
$initversion['attributes']['orgfilename'],
|
||||
|
@ -1704,6 +1715,7 @@ if($defaultuserid) {
|
|||
$defaultUser = null;
|
||||
}
|
||||
|
||||
$users = array();
|
||||
$elementstack = array();
|
||||
$objmap = array(
|
||||
'attributedefs' => array(),
|
||||
|
|
|
@ -34,11 +34,12 @@ class SeedDMS_View_AddDocument extends SeedDMS_Bootstrap_Style {
|
|||
function js() { /* {{{ */
|
||||
$dropfolderdir = $this->params['dropfolderdir'];
|
||||
$partitionsize = $this->params['partitionsize'];
|
||||
$maxuploadsize = $this->params['maxuploadsize'];
|
||||
$enablelargefileupload = $this->params['enablelargefileupload'];
|
||||
header('Content-Type: application/javascript; charset=UTF-8');
|
||||
|
||||
if($enablelargefileupload)
|
||||
$this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize);
|
||||
$this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize, $maxuploadsize);
|
||||
?>
|
||||
$(document).ready(function() {
|
||||
$('#new-file').click(function(event) {
|
||||
|
@ -146,8 +147,10 @@ $(document).ready(function() {
|
|||
$folderid = $folder->getId();
|
||||
|
||||
$this->htmlAddHeader('<script type="text/javascript" src="../styles/'.$this->theme.'/validate/jquery.validate.js"></script>'."\n", 'js');
|
||||
if($enablelargefileupload)
|
||||
if($enablelargefileupload) {
|
||||
$this->htmlAddHeader('<script type="text/javascript" src="../styles/'.$this->theme.'/fine-uploader/jquery.fine-uploader.min.js"></script>'."\n", 'js');
|
||||
$this->htmlAddHeader($this->getFineUploaderTemplate(), 'js');
|
||||
}
|
||||
|
||||
$this->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))));
|
||||
$this->globalNavigation($folder);
|
||||
|
|
|
@ -34,9 +34,10 @@ class SeedDMS_View_AddFile extends SeedDMS_Bootstrap_Style {
|
|||
function js() { /* {{{ */
|
||||
$enablelargefileupload = $this->params['enablelargefileupload'];
|
||||
$partitionsize = $this->params['partitionsize'];
|
||||
$maxuploadsize = $this->params['maxuploadsize'];
|
||||
header('Content-Type: application/javascript');
|
||||
if($enablelargefileupload)
|
||||
$this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize);
|
||||
$this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize, $maxuploadsize);
|
||||
?>
|
||||
|
||||
$(document).ready( function() {
|
||||
|
@ -119,8 +120,10 @@ $(document).ready( function() {
|
|||
$enablelargefileupload = $this->params['enablelargefileupload'];
|
||||
|
||||
$this->htmlAddHeader('<script type="text/javascript" src="../styles/'.$this->theme.'/validate/jquery.validate.js"></script>'."\n", 'js');
|
||||
if($enablelargefileupload)
|
||||
if($enablelargefileupload) {
|
||||
$this->htmlAddHeader('<script type="text/javascript" src="../styles/'.$this->theme.'/fine-uploader/jquery.fine-uploader.min.js"></script>'."\n", 'js');
|
||||
$this->htmlAddHeader($this->getFineUploaderTemplate(), 'js');
|
||||
}
|
||||
|
||||
$this->htmlStartPage(getMLText("document_title", array("documentname" => htmlspecialchars($document->getName()))));
|
||||
$this->globalNavigation($folder);
|
||||
|
|
|
@ -88,9 +88,9 @@ class SeedDMS_View_ApprovalSummary extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($version);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">";
|
||||
if($previewer->hasPreview($version)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>";
|
||||
|
@ -142,9 +142,9 @@ class SeedDMS_View_ApprovalSummary extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($version);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">";
|
||||
if($previewer->hasPreview($version)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>";
|
||||
|
|
|
@ -123,7 +123,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
|
|||
if(!$nofooter) {
|
||||
$this->footNote();
|
||||
if($this->params['showmissingtranslations']) {
|
||||
$this->missingḺanguageKeys();
|
||||
$this->missingLanguageKeys();
|
||||
}
|
||||
}
|
||||
echo '<script src="../styles/'.$this->theme.'/bootstrap/js/bootstrap.min.js"></script>'."\n";
|
||||
|
@ -166,7 +166,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
|
|||
}
|
||||
} /* }}} */
|
||||
|
||||
function missingḺanguageKeys() { /* {{{ */
|
||||
function missingLanguageKeys() { /* {{{ */
|
||||
global $MISSING_LANG, $LANG;
|
||||
if($MISSING_LANG) {
|
||||
echo '<div class="container-fluid">'."\n";
|
||||
|
@ -353,11 +353,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
|
|||
echo " <input type=\"hidden\" name=\"folderid\" value=\"".$folder->getID()."\" />";
|
||||
}
|
||||
echo " <input type=\"hidden\" name=\"navBar\" value=\"1\" />";
|
||||
echo " <input type=\"hidden\" name=\"searchin[]\" value=\"1\" />";
|
||||
echo " <input type=\"hidden\" name=\"searchin[]\" value=\"2\" />";
|
||||
echo " <input type=\"hidden\" name=\"searchin[]\" value=\"3\" />";
|
||||
echo " <input type=\"hidden\" name=\"searchin[]\" value=\"4\" />";
|
||||
echo " <input name=\"query\" class=\"search-query\" id=\"searchfield\" data-provide=\"typeahead\" type=\"text\" style=\"width: 150px;\" placeholder=\"".getMLText("search")."\"/>";
|
||||
echo " <input name=\"query\" class=\"search-query\" ".($this->params['defaultsearchmethod'] == 'fulltext' ? "" : "id=\"searchfield\"")." data-provide=\"typeahead\" type=\"text\" style=\"width: 150px;\" placeholder=\"".getMLText("search")."\"/>";
|
||||
if($this->params['defaultsearchmethod'] == 'fulltext')
|
||||
echo " <input type=\"hidden\" name=\"fullsearch\" value=\"1\" />";
|
||||
// if($this->params['enablefullsearch']) {
|
||||
|
@ -812,74 +808,74 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
|
|||
function getMimeIcon($fileType) { /* {{{ */
|
||||
// for extension use LOWER CASE only
|
||||
$icons = array();
|
||||
$icons["txt"] = "txt.png";
|
||||
$icons["text"] = "txt.png";
|
||||
$icons["doc"] = "word.png";
|
||||
$icons["dot"] = "word.png";
|
||||
$icons["docx"] = "word.png";
|
||||
$icons["dotx"] = "word.png";
|
||||
$icons["rtf"] = "document.png";
|
||||
$icons["xls"] = "excel.png";
|
||||
$icons["xlt"] = "excel.png";
|
||||
$icons["xlsx"] = "excel.png";
|
||||
$icons["xltx"] = "excel.png";
|
||||
$icons["ppt"] = "powerpoint.png";
|
||||
$icons["pot"] = "powerpoint.png";
|
||||
$icons["pptx"] = "powerpoint.png";
|
||||
$icons["potx"] = "powerpoint.png";
|
||||
$icons["exe"] = "binary.png";
|
||||
$icons["html"] = "html.png";
|
||||
$icons["htm"] = "html.png";
|
||||
$icons["gif"] = "image.png";
|
||||
$icons["jpg"] = "image.png";
|
||||
$icons["jpeg"] = "image.png";
|
||||
$icons["bmp"] = "image.png";
|
||||
$icons["png"] = "image.png";
|
||||
$icons["tif"] = "image.png";
|
||||
$icons["tiff"] = "image.png";
|
||||
$icons["txt"] = "text-x-preview.svg";
|
||||
$icons["text"] = "text-x-preview.svg";
|
||||
$icons["doc"] = "office-document.svg";
|
||||
$icons["dot"] = "office-document.svg";
|
||||
$icons["docx"] = "office-document.svg";
|
||||
$icons["dotx"] = "office-document.svg";
|
||||
$icons["rtf"] = "office-document.svg";
|
||||
$icons["xls"] = "office-spreadsheet.svg";
|
||||
$icons["xlt"] = "office-spreadsheet.svg";
|
||||
$icons["xlsx"] = "office-spreadsheet.svg";
|
||||
$icons["xltx"] = "office-spreadsheet.svg";
|
||||
$icons["ppt"] = "office-presentation.svg";
|
||||
$icons["pot"] = "office-presentation.svg";
|
||||
$icons["pptx"] = "office-presentation.svg";
|
||||
$icons["potx"] = "office-presentation.svg";
|
||||
$icons["exe"] = "executable.svg";
|
||||
$icons["html"] = "web.svg";
|
||||
$icons["htm"] = "web.svg";
|
||||
$icons["gif"] = "image.svg";
|
||||
$icons["jpg"] = "image.svg";
|
||||
$icons["jpeg"] = "image.svg";
|
||||
$icons["bmp"] = "image.svg";
|
||||
$icons["png"] = "image.svg";
|
||||
$icons["tif"] = "image.svg";
|
||||
$icons["tiff"] = "image.svg";
|
||||
$icons["log"] = "log.png";
|
||||
$icons["midi"] = "midi.png";
|
||||
$icons["midi"] = "audio.svg";
|
||||
$icons["pdf"] = "pdf.png";
|
||||
$icons["wav"] = "sound.png";
|
||||
$icons["mp3"] = "sound.png";
|
||||
$icons["wav"] = "audio.svg";
|
||||
$icons["mp3"] = "audio.svg";
|
||||
$icons["c"] = "source_c.png";
|
||||
$icons["cpp"] = "source_cpp.png";
|
||||
$icons["h"] = "source_h.png";
|
||||
$icons["java"] = "source_java.png";
|
||||
$icons["py"] = "source_py.png";
|
||||
$icons["tar"] = "tar.png";
|
||||
$icons["tar"] = "package.svg";
|
||||
$icons["gz"] = "gz.png";
|
||||
$icons["7z"] = "gz.png";
|
||||
$icons["bz"] = "gz.png";
|
||||
$icons["bz2"] = "gz.png";
|
||||
$icons["tgz"] = "gz.png";
|
||||
$icons["zip"] = "gz.png";
|
||||
$icons["zip"] = "package.svg";
|
||||
$icons["rar"] = "gz.png";
|
||||
$icons["mpg"] = "video.png";
|
||||
$icons["avi"] = "video.png";
|
||||
$icons["mpg"] = "video.svg";
|
||||
$icons["avi"] = "video.svg";
|
||||
$icons["tex"] = "tex.png";
|
||||
$icons["ods"] = "x-office-spreadsheet.png";
|
||||
$icons["ots"] = "x-office-spreadsheet.png";
|
||||
$icons["sxc"] = "x-office-spreadsheet.png";
|
||||
$icons["stc"] = "x-office-spreadsheet.png";
|
||||
$icons["odt"] = "x-office-document.png";
|
||||
$icons["ott"] = "x-office-document.png";
|
||||
$icons["sxw"] = "x-office-document.png";
|
||||
$icons["stw"] = "x-office-document.png";
|
||||
$icons["odp"] = "ooo_presentation.png";
|
||||
$icons["otp"] = "ooo_presentation.png";
|
||||
$icons["sxi"] = "ooo_presentation.png";
|
||||
$icons["sti"] = "ooo_presentation.png";
|
||||
$icons["odg"] = "ooo_drawing.png";
|
||||
$icons["otg"] = "ooo_drawing.png";
|
||||
$icons["sxd"] = "ooo_drawing.png";
|
||||
$icons["std"] = "ooo_drawing.png";
|
||||
$icons["ods"] = "office-spreadsheet.svg";
|
||||
$icons["ots"] = "office-spreadsheet.svg";
|
||||
$icons["sxc"] = "office-spreadsheet.svg";
|
||||
$icons["stc"] = "office-spreadsheet.svg";
|
||||
$icons["odt"] = "office-document.svg";
|
||||
$icons["ott"] = "office-document.svg";
|
||||
$icons["sxw"] = "office-document.svg";
|
||||
$icons["stw"] = "office-document.svg";
|
||||
$icons["odp"] = "office-presentation.svg";
|
||||
$icons["otp"] = "office-presentation.svg";
|
||||
$icons["sxi"] = "office-presentation.svg";
|
||||
$icons["sti"] = "office-presentation.svg";
|
||||
$icons["odg"] = "office-drawing.png";
|
||||
$icons["otg"] = "office-drawing.png";
|
||||
$icons["sxd"] = "office-drawing.png";
|
||||
$icons["std"] = "office-drawing.png";
|
||||
$icons["odf"] = "ooo_formula.png";
|
||||
$icons["sxm"] = "ooo_formula.png";
|
||||
$icons["smf"] = "ooo_formula.png";
|
||||
$icons["mml"] = "ooo_formula.png";
|
||||
|
||||
$icons["default"] = "default.png";
|
||||
$icons["default"] = "text-x-preview.svg"; //"default.png";
|
||||
|
||||
$ext = strtolower(substr($fileType, 1));
|
||||
if (isset($icons[$ext])) {
|
||||
|
@ -1513,7 +1509,7 @@ $(function() {
|
|||
$comment = $folder->getComment();
|
||||
if (strlen($comment) > 150) $comment = substr($comment, 0, 147) . "...";
|
||||
$content .= "<tr draggable=\"true\" rel=\"folder_".$folder->getID()."\" class=\"folder table-row-folder\" formtoken=\"".createFormKey('movefolder')."\">";
|
||||
$content .= "<td><a draggable=\"false\" href=\"out.ViewFolder.php?folderid=".$folder->getID()."&showtree=".showtree()."\"><img draggable=\"false\" src=\"".$this->imgpath."folder.png\" width=\"24\" height=\"24\" border=0></a></td>\n";
|
||||
$content .= "<td><a draggable=\"false\" href=\"out.ViewFolder.php?folderid=".$folder->getID()."&showtree=".showtree()."\"><img draggable=\"false\" src=\"".$this->imgpath."folder.svg\" width=\"24\" height=\"24\" border=0></a></td>\n";
|
||||
$content .= "<td><a draggable=\"false\" href=\"out.ViewFolder.php?folderid=".$folder->getID()."&showtree=".showtree()."\">" . htmlspecialchars($folder->getName()) . "</a>";
|
||||
if($comment) {
|
||||
$content .= "<br /><span style=\"font-size: 85%;\">".htmlspecialchars($comment)."</span>";
|
||||
|
@ -1543,13 +1539,13 @@ $(function() {
|
|||
if (file_exists($dms->contentDir . $latestContent->getPath())) {
|
||||
$content .= "<td><a draggable=\"false\" href=\"../op/op.Download.php?documentid=".$docid."&version=".$version."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
$content .= "<img draggable=\"false\" class=\"mimeicon\" width=\"40\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=40\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
$content .= "<img draggable=\"false\" class=\"mimeicon\" width=\"40\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=40\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
$content .= "<img draggable=\"false\" class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
$content .= "<img draggable=\"false\" class=\"mimeicon\" width=\"40\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
$content .= "</a></td>";
|
||||
} else
|
||||
$content .= "<td><img draggable=\"false\" class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\"></td>";
|
||||
$content .= "<td><img draggable=\"false\" class=\"mimeicon\" width=\"40\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\"></td>";
|
||||
|
||||
$content .= "<td><a draggable=\"false\" href=\"out.ViewDocument.php?documentid=".$docid."&showtree=".showtree()."\">" . htmlspecialchars($document->getName()) . "</a>";
|
||||
if($comment) {
|
||||
|
@ -1939,13 +1935,13 @@ $(document).ready( function() {
|
|||
if (file_exists($dms->contentDir . $latestContent->getPath())) {
|
||||
$content .= "<a draggable=\"false\" href=\"../op/op.Download.php?documentid=".$docID."&version=".$version."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
$content .= "<img draggable=\"false\" class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
$content .= "<img draggable=\"false\" class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
$content .= "<img draggable=\"false\" class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
$content .= "<img draggable=\"false\" class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" ".($previewwidth ? "width=\"".$previewwidth."\"" : "")."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
$content .= "</a>";
|
||||
} else
|
||||
$content .= "<img draggable=\"false\" class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
$content .= "<img draggable=\"false\" class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
$content .= "</td>";
|
||||
|
||||
$content .= "<td>";
|
||||
|
@ -2021,7 +2017,7 @@ $(document).ready( function() {
|
|||
$content = '';
|
||||
$content .= "<tr id=\"table-row-folder-".$subFolder->getID()."\" draggable=\"true\" rel=\"folder_".$subFolder->getID()."\" class=\"folder table-row-folder\" formtoken=\"".createFormKey('movefolder')."\">";
|
||||
// $content .= "<td><img src=\"images/folder_closed.gif\" width=18 height=18 border=0></td>";
|
||||
$content .= "<td><a _rel=\"folder_".$subFolder->getID()."\" draggable=\"false\" href=\"out.ViewFolder.php?folderid=".$subFolder->getID()."&showtree=".$showtree."\"><img draggable=\"false\" src=\"".$this->imgpath."folder.png\" width=\"24\" height=\"24\" border=0></a></td>\n";
|
||||
$content .= "<td><a _rel=\"folder_".$subFolder->getID()."\" draggable=\"false\" href=\"out.ViewFolder.php?folderid=".$subFolder->getID()."&showtree=".$showtree."\"><img draggable=\"false\" src=\"".$this->imgpath."folder.svg\" width=\"24\" height=\"24\" border=0></a></td>\n";
|
||||
$content .= "<td><a draggable=\"false\" _rel=\"folder_".$subFolder->getID()."\" href=\"out.ViewFolder.php?folderid=".$subFolder->getID()."&showtree=".$showtree."\">" . htmlspecialchars($subFolder->getName()) . "</a>";
|
||||
$content .= "<br /><span style=\"font-size: 85%; font-style: italic; color: #666;\">".getMLText('owner').": <b>".htmlspecialchars($owner->getFullName())."</b>, ".getMLText('creation_date').": <b>".date('Y-m-d', $subFolder->getDate())."</b></span>";
|
||||
if($comment) {
|
||||
|
@ -2386,6 +2382,71 @@ mayscript>
|
|||
parent::show();
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Return HTML Template for jumploader
|
||||
*
|
||||
* @param string $uploadurl URL where post data is send
|
||||
* @param integer $folderid id of folder where document is saved
|
||||
* @param integer $maxfiles maximum number of files allowed to upload
|
||||
* @param array $fields list of post fields
|
||||
*/
|
||||
function getFineUploaderTemplate() { /* {{{ */
|
||||
return '
|
||||
<script type="text/template" id="qq-template">
|
||||
<div class="qq-uploader-selector qq-uploader" qq-drop-area-text="'.getMLText('drop_files_here').'">
|
||||
<div class="qq-total-progress-bar-container-selector qq-total-progress-bar-container">
|
||||
<div role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" class="qq-total-progress-bar-selector qq-progress-bar qq-total-progress-bar"></div>
|
||||
</div>
|
||||
<div class="input-append">
|
||||
<div class="qq-upload-drop-area-selector qq-upload-drop-area" _qq-hide-dropzone>
|
||||
<span class="qq-upload-drop-area-text-selector"></span>
|
||||
</div>
|
||||
<button class="btn qq-upload-button-selector qq-upload-button">'.getMLText('browse').'…</button>
|
||||
</div>
|
||||
<span class="qq-drop-processing-selector qq-drop-processing">
|
||||
<span class="qq-drop-processing-spinner-selector qq-drop-processing-spinner"></span>
|
||||
</span>
|
||||
<ul class="qq-upload-list-selector qq-upload-list unstyled" aria-live="polite" aria-relevant="additions removals">
|
||||
<li>
|
||||
<div class="progress qq-progress-bar-container-selector">
|
||||
<div class="bar qq-progress-bar-selector qq-progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div>
|
||||
</div>
|
||||
<span class="qq-upload-spinner-selector qq-upload-spinner"></span>
|
||||
<img class="qq-thumbnail-selector" qq-max-size="100" qq-server-scale>
|
||||
<span class="qq-upload-file-selector qq-upload-file"></span>
|
||||
<span class="qq-upload-size-selector qq-upload-size"></span>
|
||||
<button class="btn btn-mini qq-btn qq-upload-cancel-selector qq-upload-cancel">Cancel</button>
|
||||
<span role="status" class="qq-upload-status-text-selector qq-upload-status-text"></span>
|
||||
</li>
|
||||
</ul>
|
||||
<dialog class="qq-alert-dialog-selector">
|
||||
<div class="qq-dialog-message-selector"></div>
|
||||
<div class="qq-dialog-buttons">
|
||||
<button class="btn qq-cancel-button-selector">Cancel</button>
|
||||
</div>
|
||||
</dialog>
|
||||
|
||||
<dialog class="qq-confirm-dialog-selector">
|
||||
<div class="qq-dialog-message-selector"></div>
|
||||
<div class="qq-dialog-buttons">
|
||||
<button class="btn qq-cancel-button-selector">Cancel</button>
|
||||
<button class="btn qq-ok-button-selector">Ok</button>
|
||||
</div>
|
||||
</dialog>
|
||||
|
||||
<dialog class="qq-prompt-dialog-selector">
|
||||
<div class="qq-dialog-message-selector"></div>
|
||||
<input type="text">
|
||||
<div class="qq-dialog-buttons">
|
||||
<button class="btn qq-cancel-button-selector">Cancel</button>
|
||||
<button class="btn qq-ok-button-selector">Ok</button>
|
||||
</div>
|
||||
</dialog>
|
||||
</div>
|
||||
</script>
|
||||
';
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Output HTML Code for jumploader
|
||||
*
|
||||
|
@ -2396,58 +2457,6 @@ mayscript>
|
|||
*/
|
||||
function printFineUploaderHtml() { /* {{{ */
|
||||
?>
|
||||
<script type="text/template" id="qq-template">
|
||||
<div class="qq-uploader-selector qq-uploader" qq-drop-area-text="">
|
||||
<div class="qq-total-progress-bar-container-selector qq-total-progress-bar-container">
|
||||
<div role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" class="qq-total-progress-bar-selector qq-progress-bar qq-total-progress-bar"></div>
|
||||
</div>
|
||||
<div class="input-append">
|
||||
<div class="qq-upload-drop-area-selector qq-upload-drop-area" _qq-hide-dropzone>Drop files here
|
||||
<span class="qq-upload-drop-area-text-selector"></span>
|
||||
</div>
|
||||
<button class="btn qq-upload-button-selector qq-upload-button"><?php printMLText('browse'); ?>…</button>
|
||||
</div>
|
||||
<span class="qq-drop-processing-selector qq-drop-processing">
|
||||
<span class="qq-drop-processing-spinner-selector qq-drop-processing-spinner"></span>
|
||||
</span>
|
||||
<ul class="qq-upload-list-selector qq-upload-list unstyled" aria-live="polite" aria-relevant="additions removals">
|
||||
<li>
|
||||
<div class="progress qq-progress-bar-container-selector">
|
||||
<div class="bar qq-progress-bar-selector qq-progress-bar" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100"></div>
|
||||
</div>
|
||||
<span class="qq-upload-spinner-selector qq-upload-spinner"></span>
|
||||
<img class="qq-thumbnail-selector" qq-max-size="100" qq-server-scale>
|
||||
<span class="qq-upload-file-selector qq-upload-file"></span>
|
||||
<span class="qq-upload-size-selector qq-upload-size"></span>
|
||||
<button class="btn btn-mini qq-btn qq-upload-cancel-selector qq-upload-cancel">Cancel</button>
|
||||
<span role="status" class="qq-upload-status-text-selector qq-upload-status-text"></span>
|
||||
</li>
|
||||
</ul>
|
||||
<dialog class="qq-alert-dialog-selector">
|
||||
<div class="qq-dialog-message-selector"></div>
|
||||
<div class="qq-dialog-buttons">
|
||||
<button class="btn qq-cancel-button-selector">Cancel</button>
|
||||
</div>
|
||||
</dialog>
|
||||
|
||||
<dialog class="qq-confirm-dialog-selector">
|
||||
<div class="qq-dialog-message-selector"></div>
|
||||
<div class="qq-dialog-buttons">
|
||||
<button class="btn qq-cancel-button-selector">Cancel</button>
|
||||
<button class="btn qq-ok-button-selector">Ok</button>
|
||||
</div>
|
||||
</dialog>
|
||||
|
||||
<dialog class="qq-prompt-dialog-selector">
|
||||
<div class="qq-dialog-message-selector"></div>
|
||||
<input type="text">
|
||||
<div class="qq-dialog-buttons">
|
||||
<button class="btn qq-cancel-button-selector">Cancel</button>
|
||||
<button class="btn qq-ok-button-selector">Ok</button>
|
||||
</div>
|
||||
</dialog>
|
||||
</div>
|
||||
</script>
|
||||
<div id="manual-fine-uploader"></div>
|
||||
<input type="hidden" class="do_validate" id="fineuploaderuuids" name="fineuploaderuuids" value="" />
|
||||
<input type="hidden" id="fineuploadernames" name="fineuploadernames" value="" />
|
||||
|
@ -2462,22 +2471,31 @@ mayscript>
|
|||
* @param integer $maxfiles maximum number of files allowed to upload
|
||||
* @param array $fields list of post fields
|
||||
*/
|
||||
function printFineUploaderJs($uploadurl, $partsize=0, $multiple=true) { /* {{{ */
|
||||
function printFineUploaderJs($uploadurl, $partsize=0, $maxuploadsize=0, $multiple=true) { /* {{{ */
|
||||
?>
|
||||
$(document).ready(function() {
|
||||
manualuploader = new qq.FineUploader({
|
||||
debug: true,
|
||||
debug: false,
|
||||
autoUpload: false,
|
||||
multiple: <?php echo ($multiple ? 'true' : 'false'); ?>,
|
||||
element: $('#manual-fine-uploader')[0],
|
||||
template: 'qq-template',
|
||||
request: {
|
||||
endpoint: '<?php echo $uploadurl; ?>'
|
||||
},
|
||||
<?php echo ($maxuploadsize > 0 ? '
|
||||
validation: {
|
||||
sizeLimit: '.$maxuploadsize.'
|
||||
},
|
||||
' : ''); ?>
|
||||
chunking: {
|
||||
enabled: true,
|
||||
<?php echo $partsize ? 'partSize: '.(int)$partsize.",\n" : ''; ?>
|
||||
mandatory: true
|
||||
},
|
||||
messages: {
|
||||
sizeError: '{file} is too large, maximum file size is {sizeLimit}.'
|
||||
},
|
||||
callbacks: {
|
||||
onComplete: function(id, name, json, xhr) {
|
||||
},
|
||||
|
|
|
@ -83,7 +83,7 @@ $('.folderselect').click(function(ev) {
|
|||
$previewer->createRawPreview($dir.'/'.$entry, 'dropfolder/', $mimetype);
|
||||
echo "<tr><td style=\"min-width: ".$previewwidth."px;\">";
|
||||
if($previewer->hasRawPreview($dir.'/'.$entry, 'dropfolder/')) {
|
||||
echo "<img style=\"cursor: pointer;\" class=\"fileselect mimeicon\" filename=\"".$entry."\" width=\"".$previewwidth."\"src=\"../op/op.DropFolderPreview.php?filename=".$entry."&width=".$previewwidth."\" title=\"".htmlspecialchars($mimetype)."\">";
|
||||
echo "<img style=\"cursor: pointer;\" class=\"fileselect mimeicon\" filename=\"".$entry."\" width=\"".$previewwidth."\" src=\"../op/op.DropFolderPreview.php?filename=".$entry."&width=".$previewwidth."\" title=\"".htmlspecialchars($mimetype)."\">";
|
||||
}
|
||||
echo "</td><td><span style=\"cursor: pointer;\" class=\"fileselect\" filename=\"".$entry."\">".$entry."</span></td><td align=\"right\">".SeedDMS_Core_File::format_filesize(filesize($dir.'/'.$entry))."</td><td>".date('Y-m-d H:i:s', filectime($dir.'/'.$entry))."</td></tr>\n";
|
||||
} elseif($showfolders && is_dir($dir.'/'.$entry)) {
|
||||
|
|
|
@ -62,6 +62,7 @@ function check_queue() {
|
|||
data: {command: 'indexdocument', id: docid},
|
||||
beforeSend: function() {
|
||||
queue_count++; // Add request to the counter
|
||||
$('.queue-bar').css('width', (queue_count*100/MAX_REQUESTS)+'%');
|
||||
},
|
||||
error: function(xhr, textstatus) {
|
||||
noty({
|
||||
|
|
|
@ -114,9 +114,9 @@ class SeedDMS_View_ManageNotify extends SeedDMS_Bootstrap_Style {
|
|||
print "<tr>\n";
|
||||
print "<td>";
|
||||
if($previewer->hasPreview($latest)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$this->previewwidth."\"src=\"../op/op.Preview.php?documentid=".$doc->getID()."&version=".$latest->getVersion()."&width=".$this->previewwidth."\" title=\"".htmlspecialchars($latest->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$this->previewwidth."\" src=\"../op/op.Preview.php?documentid=".$doc->getID()."&version=".$latest->getVersion()."&width=".$this->previewwidth."\" title=\"".htmlspecialchars($latest->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latest->getFileType())."\" title=\"".htmlspecialchars($latest->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$this->previewwidth."\" src=\"".$this->getMimeIcon($latest->getFileType())."\" title=\"".htmlspecialchars($latest->getMimeType())."\">";
|
||||
}
|
||||
print "</td>";
|
||||
|
||||
|
|
|
@ -174,9 +174,9 @@ class SeedDMS_View_MyDocuments extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($latestContent);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$st["documentID"]."¤ttab=revapp\">".htmlspecialchars($docIdx[$st["documentID"]][$st["version"]]["name"])."</a></td>";
|
||||
|
@ -212,9 +212,9 @@ class SeedDMS_View_MyDocuments extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($latestContent);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$st["documentID"]."¤ttab=revapp\">".htmlspecialchars($docIdx[$st["documentID"]][$st["version"]]["name"])."</a></td>";
|
||||
|
@ -262,9 +262,9 @@ class SeedDMS_View_MyDocuments extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($latestContent);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$st["documentID"]."¤ttab=revapp\">".htmlspecialchars($docIdx[$st["documentID"]][$st["version"]]["name"])."</a></td>";
|
||||
|
@ -297,9 +297,9 @@ class SeedDMS_View_MyDocuments extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($latestContent);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$st["documentID"]."¤ttab=revapp\">".htmlspecialchars($docIdx[$st["documentID"]][$st["version"]]["name"])."</a></td>";
|
||||
|
@ -389,9 +389,9 @@ class SeedDMS_View_MyDocuments extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($latestContent);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$res["documentID"]."&version=".$res["version"]."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$res["documentID"]."¤ttab=revapp\">" . htmlspecialchars($res["name"]) . "</a></td>\n";
|
||||
|
@ -508,9 +508,9 @@ class SeedDMS_View_MyDocuments extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($latestContent);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$st["document"]."&version=".$st["version"]."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
$workflowstate = $latestContent->getWorkflowState();
|
||||
|
@ -550,9 +550,9 @@ class SeedDMS_View_MyDocuments extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($latestContent);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$st["document"]."&version=".$st["version"]."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$st["document"]."¤ttab=workflow\">".htmlspecialchars($docIdx[$st["document"]][$st["version"]]["name"])."</a></td>";
|
||||
|
@ -633,9 +633,9 @@ class SeedDMS_View_MyDocuments extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($latestContent);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$res["documentID"]."&version=".$res["version"]."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$res["documentID"]."¤ttab=workflow\">" . htmlspecialchars($res["name"]) . "</a></td>\n";
|
||||
|
@ -714,9 +714,9 @@ class SeedDMS_View_MyDocuments extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($latestContent);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$res["documentID"]."&version=".$res["version"]."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$res["documentID"]."\">" . htmlspecialchars($res["name"]) . "</a></td>\n";
|
||||
|
@ -817,9 +817,9 @@ class SeedDMS_View_MyDocuments extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($latestContent);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$res["documentID"]."&version=".$res["version"]."\">";
|
||||
if($previewer->hasPreview($latestContent)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$res["documentID"]."\">" . htmlspecialchars($res["name"]) . "</a></td>\n";
|
||||
|
|
|
@ -382,12 +382,13 @@ class SeedDMS_View_ObjectCheck extends SeedDMS_Bootstrap_Style {
|
|||
$this->contentContainerStart();
|
||||
|
||||
if($duplicateversions) {
|
||||
print "<table class=\"table-condensed\">";
|
||||
print "<table class=\"table table-condensed\">";
|
||||
print "<thead>\n<tr>\n";
|
||||
print "<th>".getMLText("document")."</th>\n";
|
||||
print "<th>".getMLText("version")."</th>\n";
|
||||
print "<th>".getMLText("original_filename")."</th>\n";
|
||||
print "<th>".getMLText("mimetype")."</th>\n";
|
||||
print "<th>".getMLText("duplicates")."</th>\n";
|
||||
print "</tr>\n</thead>\n<tbody>\n";
|
||||
foreach($duplicateversions as $rec) {
|
||||
$version = $rec['content'];
|
||||
|
@ -396,7 +397,9 @@ class SeedDMS_View_ObjectCheck extends SeedDMS_Bootstrap_Style {
|
|||
print "<td>".$doc->getId()."</td><td>".$version->getVersion()."</td><td>".$version->getOriginalFileName()."</td><td>".$version->getMimeType()."</td>";
|
||||
print "<td>";
|
||||
foreach($rec['duplicates'] as $duplicate) {
|
||||
print $duplicate->getVersion();
|
||||
$dupdoc = $duplicate->getDocument();
|
||||
print "<a href=\"../out/out.ViewDocument.php?documentid=".$dupdoc->getID()."\">".$dupdoc->getID()."/".$duplicate->getVersion()."</a>";
|
||||
echo "<br />";
|
||||
}
|
||||
print "</td>";
|
||||
print "</tr>\n";
|
||||
|
|
|
@ -90,9 +90,9 @@ class SeedDMS_View_ReviewSummary extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($version);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">";
|
||||
if($previewer->hasPreview($version)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>";
|
||||
|
@ -144,9 +144,9 @@ class SeedDMS_View_ReviewSummary extends SeedDMS_Bootstrap_Style {
|
|||
$previewer->createPreview($version);
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">";
|
||||
if($previewer->hasPreview($version)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["documentID"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>";
|
||||
|
|
|
@ -454,19 +454,24 @@ class SeedDMS_View_Search extends SeedDMS_Bootstrap_Style {
|
|||
$this->pageList($pageNumber, $totalpages, "../out/out.Search.php", $urlparams);
|
||||
// $this->contentContainerStart();
|
||||
|
||||
print "<table class=\"table table-hover\">";
|
||||
print "<thead>\n<tr>\n";
|
||||
print "<th></th>\n";
|
||||
print "<th>".getMLText("name")."</th>\n";
|
||||
print "<th>".getMLText("attributes")."</th>\n";
|
||||
print "<th>".getMLText("status")."</th>\n";
|
||||
print "<th>".getMLText("action")."</th>\n";
|
||||
print "</tr>\n</thead>\n<tbody>\n";
|
||||
$txt = $this->callHook('searchListHeader', $folder, $orderby);
|
||||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else {
|
||||
print "<table class=\"table table-hover\">";
|
||||
print "<thead>\n<tr>\n";
|
||||
print "<th></th>\n";
|
||||
print "<th>".getMLText("name")."</th>\n";
|
||||
print "<th>".getMLText("attributes")."</th>\n";
|
||||
print "<th>".getMLText("status")."</th>\n";
|
||||
print "<th>".getMLText("action")."</th>\n";
|
||||
print "</tr>\n</thead>\n<tbody>\n";
|
||||
}
|
||||
|
||||
$previewer = new SeedDMS_Preview_Previewer($cachedir, $previewwidth, $timeout);
|
||||
foreach ($entries as $entry) {
|
||||
if(get_class($entry) == $dms->getClassname('document')) {
|
||||
$txt = $this->callHook('documentListItem', $entry, $previewer);
|
||||
$txt = $this->callHook('documentListItem', $entry, $previewer, 'search');
|
||||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else {
|
||||
|
@ -490,9 +495,9 @@ class SeedDMS_View_Search extends SeedDMS_Bootstrap_Style {
|
|||
}
|
||||
print "<td><a class=\"standardText\" href=\"../out/out.ViewDocument.php?documentid=".$document->getID()."\">";
|
||||
if($previewer->hasPreview($lc)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$lc->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($lc->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$lc->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($lc->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($lc->getFileType())."\" title=\"".htmlspecialchars($lc->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($lc->getFileType())."\" title=\"".htmlspecialchars($lc->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a class=\"standardText\" href=\"../out/out.ViewDocument.php?documentid=".$document->getID()."\">/";
|
||||
|
|
|
@ -411,6 +411,10 @@ if(!is_writeable($settings->_configFilePath)) {
|
|||
<td><?php printMLText("settings_partitionSize");?>:</td>
|
||||
<td><?php $this->showTextField("partitionSize", $settings->_partitionSize); ?></td>
|
||||
</tr>
|
||||
<tr title="<?php printMLText("settings_maxUploadSize_desc");?>">
|
||||
<td><?php printMLText("settings_maxUploadSize");?>:</td>
|
||||
<td><?php $this->showTextField("maxUploadSize", $settings->_maxUploadSize); ?></td>
|
||||
</tr>
|
||||
<!--
|
||||
-- SETTINGS - SYSTEM - AUTHENTICATION
|
||||
-->
|
||||
|
|
|
@ -36,13 +36,14 @@ class SeedDMS_View_UpdateDocument extends SeedDMS_Bootstrap_Style {
|
|||
$dropfolderdir = $this->params['dropfolderdir'];
|
||||
$enablelargefileupload = $this->params['enablelargefileupload'];
|
||||
$partitionsize = $this->params['partitionsize'];
|
||||
$maxuploadsize = $this->params['maxuploadsize'];
|
||||
header('Content-Type: application/javascript');
|
||||
$this->printDropFolderChooserJs("form1");
|
||||
$this->printSelectPresetButtonJs();
|
||||
$this->printInputPresetButtonJs();
|
||||
$this->printCheckboxPresetButtonJs();
|
||||
if($enablelargefileupload)
|
||||
$this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize, false);
|
||||
$this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize, $maxuploadsize, false);
|
||||
?>
|
||||
$(document).ready( function() {
|
||||
jQuery.validator.addMethod("alternatives", function(value, element, params) {
|
||||
|
@ -129,6 +130,7 @@ console.log(element);
|
|||
$document = $this->params['document'];
|
||||
$strictformcheck = $this->params['strictformcheck'];
|
||||
$enablelargefileupload = $this->params['enablelargefileupload'];
|
||||
$maxuploadsize = $this->params['maxuploadsize'];
|
||||
$enableadminrevapp = $this->params['enableadminrevapp'];
|
||||
$enableownerrevapp = $this->params['enableownerrevapp'];
|
||||
$enableselfrevapp = $this->params['enableselfrevapp'];
|
||||
|
@ -138,8 +140,10 @@ console.log(element);
|
|||
$documentid = $document->getId();
|
||||
|
||||
$this->htmlAddHeader('<script type="text/javascript" src="../styles/'.$this->theme.'/validate/jquery.validate.js"></script>'."\n", 'js');
|
||||
if($enablelargefileupload)
|
||||
if($enablelargefileupload) {
|
||||
$this->htmlAddHeader('<script type="text/javascript" src="../styles/'.$this->theme.'/fine-uploader/jquery.fine-uploader.min.js"></script>'."\n", 'js');
|
||||
$this->htmlAddHeader($this->getFineUploaderTemplate(), 'js');
|
||||
}
|
||||
|
||||
$this->htmlStartPage(getMLText("document_title", array("documentname" => htmlspecialchars($document->getName()))));
|
||||
$this->globalNavigation($folder);
|
||||
|
@ -182,11 +186,20 @@ console.log(element);
|
|||
}
|
||||
}
|
||||
|
||||
$msg = getMLText("max_upload_size").": ".ini_get( "upload_max_filesize");
|
||||
if($enablelargefileupload) {
|
||||
if($maxuploadsize) {
|
||||
$msg = getMLText("max_upload_size").": ".SeedDMS_Core_File::format_filesize($maxuploadsize);
|
||||
} else {
|
||||
$msg = '';
|
||||
}
|
||||
} else {
|
||||
$msg = getMLText("max_upload_size").": ".ini_get( "upload_max_filesize");
|
||||
}
|
||||
if(0 && $enablelargefileupload) {
|
||||
$msg .= "<p>".sprintf(getMLText('link_alt_updatedocument'), "out.AddMultiDocument.php?folderid=".$folder->getID()."&showtree=".showtree())."</p>";
|
||||
}
|
||||
$this->warningMsg($msg);
|
||||
if($msg)
|
||||
$this->warningMsg($msg);
|
||||
$this->contentContainerStart();
|
||||
?>
|
||||
|
||||
|
|
|
@ -475,7 +475,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
|
|||
}
|
||||
?>
|
||||
<li class="<?php if($currenttab == 'attachments') echo 'active'; ?>"><a data-target="#attachments" data-toggle="tab"><?php printMLText('linked_files'); echo (count($files)) ? " (".count($files).")" : ""; ?></a></li>
|
||||
<li class="<?php if($currenttab == 'links') echo 'active'; ?>"><a data-target="#links" data-toggle="tab"><?php printMLText('linked_documents'); echo (count($links)) ? " (".count($links).")" : ""; ?></a></li>
|
||||
<li class="<?php if($currenttab == 'links') echo 'active'; ?>"><a data-target="#links" data-toggle="tab"><?php printMLText('linked_documents'); echo (count($links) || count($reverselinks)) ? " (".count($links)."/".count($reverselinks).")" : ""; ?></a></li>
|
||||
</ul>
|
||||
<div class="tab-content">
|
||||
<div class="tab-pane <?php if(!$currenttab || $currenttab == 'docinfo') echo 'active'; ?>" id="docinfo">
|
||||
|
@ -526,7 +526,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
|
|||
if($previewer->hasPreview($latestContent)) {
|
||||
print("<img class=\"mimeicon\" width=\"".$previewwidthdetail."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidthdetail."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">");
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidthdetail."\" src=\"".$this->getMimeIcon($latestContent->getFileType())."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">";
|
||||
}
|
||||
if ($file_exists) {
|
||||
print "</a>";
|
||||
|
@ -618,7 +618,12 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
|
|||
print "<li><a href=\"out.EditAttributes.php?documentid=".$documentid."&version=".$latestContent->getVersion()."\"><i class=\"icon-edit\"></i>".getMLText("edit_attributes")."</a></li>";
|
||||
}
|
||||
|
||||
//print "<li><a href=\"../op/op.Download.php?documentid=".$documentid."&vfile=1\"><i class=\"icon-info-sign\"></i>".getMLText("versioning_info")."</a></li>";
|
||||
$items = $this->callHook('extraVersionActions', $latestContent);
|
||||
if($items) {
|
||||
foreach($items as $item) {
|
||||
echo "<li>".$item."</li>";
|
||||
}
|
||||
}
|
||||
|
||||
print "</ul>";
|
||||
echo "</td>";
|
||||
|
@ -1101,7 +1106,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
|
|||
if($previewer->hasPreview($version)) {
|
||||
print("<img class=\"mimeicon\" width=\"".$previewwidthdetail."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidthdetail."\" title=\"".htmlspecialchars($version->getMimeType())."\">");
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidthdetail."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
}
|
||||
if($file_exists) {
|
||||
print "</a>\n";
|
||||
|
@ -1154,6 +1159,12 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
|
|||
print "<li><a href=\"out.EditAttributes.php?documentid=".$document->getID()."&version=".$version->getVersion()."\"><i class=\"icon-edit\"></i>".getMLText("edit_attributes")."</a></li>";
|
||||
}
|
||||
print "<li><a href='../out/out.DocumentVersionDetail.php?documentid=".$documentid."&version=".$version->getVersion()."'><i class=\"icon-info-sign\"></i>".getMLText("details")."</a></li>";
|
||||
$items = $this->callHook('extraVersionActions', $version);
|
||||
if($items) {
|
||||
foreach($items as $item) {
|
||||
echo "<li>".$item."</li>";
|
||||
}
|
||||
}
|
||||
print "</ul>";
|
||||
print "</td>\n</tr>\n";
|
||||
}
|
||||
|
@ -1197,7 +1208,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
|
|||
if($previewer->hasPreview($file)) {
|
||||
print("<img class=\"mimeicon\" width=\"".$previewwidthdetail."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&file=".$file->getID()."&width=".$previewwidthdetail."\" title=\"".htmlspecialchars($file->getMimeType())."\">");
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($file->getFileType())."\" title=\"".htmlspecialchars($file->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidthdetail."\" src=\"".$this->getMimeIcon($file->getFileType())."\" title=\"".htmlspecialchars($file->getMimeType())."\">";
|
||||
}
|
||||
if($file_exists) {
|
||||
print "</a>";
|
||||
|
@ -1263,9 +1274,9 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
|
|||
print "<tr>";
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$targetDoc->getID()."&version=".$targetlc->getVersion()."\">";
|
||||
if($previewer->hasPreview($targetlc)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidthlist."\"src=\"../op/op.Preview.php?documentid=".$targetDoc->getID()."&version=".$targetlc->getVersion()."&width=".$previewwidthlist."\" title=\"".htmlspecialchars($targetlc->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidthlist."\" src=\"../op/op.Preview.php?documentid=".$targetDoc->getID()."&version=".$targetlc->getVersion()."&width=".$previewwidthlist."\" title=\"".htmlspecialchars($targetlc->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($targetlc->getFileType())."\" title=\"".htmlspecialchars($targetlc->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidthlist."\" src=\"".$this->getMimeIcon($targetlc->getFileType())."\" title=\"".htmlspecialchars($targetlc->getMimeType())."\">";
|
||||
}
|
||||
print "</td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$targetDoc->getID()."\" class=\"linklist\">".htmlspecialchars($targetDoc->getName())."</a></td>";
|
||||
|
@ -1334,9 +1345,9 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
|
|||
print "<tr>";
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$sourceDoc->getID()."&version=".$sourcelc->getVersion()."\">";
|
||||
if($previewer->hasPreview($sourcelc)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidthlist."\"src=\"../op/op.Preview.php?documentid=".$sourceDoc->getID()."&version=".$sourcelc->getVersion()."&width=".$previewwidthlist."\" title=\"".htmlspecialchars($sourcelc->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidthlist."\" src=\"../op/op.Preview.php?documentid=".$sourceDoc->getID()."&version=".$sourcelc->getVersion()."&width=".$previewwidthlist."\" title=\"".htmlspecialchars($sourcelc->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($sourcelc->getFileType())."\" title=\"".htmlspecialchars($sourcelc->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidthlist."\" src=\"".$this->getMimeIcon($sourcelc->getFileType())."\" title=\"".htmlspecialchars($sourcelc->getMimeType())."\">";
|
||||
}
|
||||
print "</td>";
|
||||
print "<td><a href=\"out.ViewDocument.php?documentid=".$sourceDoc->getID()."\" class=\"linklist\">".htmlspecialchars($sourceDoc->getName())."</a></td>";
|
||||
|
|
|
@ -278,7 +278,11 @@ function folderSelected(id, name) {
|
|||
echo "</div>";
|
||||
}
|
||||
|
||||
$this->contentHeading(getMLText("folder_contents"));
|
||||
$txt = $this->callHook('listHeader', $folder);
|
||||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else
|
||||
$this->contentHeading(getMLText("folder_contents"));
|
||||
|
||||
$subFolders = $folder->getSubFolders($orderby);
|
||||
$subFolders = SeedDMS_Core_DMS::filterAccess($subFolders, $user, M_READ);
|
||||
|
@ -300,36 +304,40 @@ function folderSelected(id, name) {
|
|||
print "<th>".getMLText("action")."</th>\n";
|
||||
print "</tr>\n</thead>\n<tbody>\n";
|
||||
}
|
||||
}
|
||||
else printMLText("empty_folder_list");
|
||||
|
||||
|
||||
foreach($subFolders as $subFolder) {
|
||||
$txt = $this->callHook('folderListItem', $subFolder);
|
||||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else {
|
||||
echo $this->folderListRow($subFolder);
|
||||
foreach($subFolders as $subFolder) {
|
||||
$txt = $this->callHook('folderListItem', $subFolder, 'viewfolder');
|
||||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else {
|
||||
echo $this->folderListRow($subFolder);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
foreach($documents as $document) {
|
||||
$document->verifyLastestContentExpriry();
|
||||
$txt = $this->callHook('documentListItem', $document, $previewer);
|
||||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else {
|
||||
echo $this->documentListRow($document, $previewer);
|
||||
if($subFolders && $documents) {
|
||||
$txt = $this->callHook('folderListSeparator', $folder);
|
||||
if(is_string($txt))
|
||||
echo $txt;
|
||||
}
|
||||
|
||||
foreach($documents as $document) {
|
||||
$document->verifyLastestContentExpriry();
|
||||
$txt = $this->callHook('documentListItem', $document, $previewer, 'viewfolder');
|
||||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else {
|
||||
echo $this->documentListRow($document, $previewer);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ((count($subFolders) > 0)||(count($documents) > 0)) {
|
||||
$txt = $this->callHook('folderListFooter', $folder);
|
||||
if(is_string($txt))
|
||||
echo $txt;
|
||||
else
|
||||
echo "</tbody>\n</table>\n";
|
||||
|
||||
}
|
||||
else printMLText("empty_folder_list");
|
||||
|
||||
echo "</div>\n"; // End of right column div
|
||||
echo "</div>\n"; // End of div around left and right column
|
||||
|
|
|
@ -88,9 +88,9 @@ class SeedDMS_View_WorkflowSummary extends SeedDMS_Bootstrap_Style {
|
|||
print "<tr>\n";
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$document->getID()."&version=".$st['version']."\">";
|
||||
if($previewer->hasPreview($version)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["document"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName());
|
||||
|
@ -145,9 +145,9 @@ class SeedDMS_View_WorkflowSummary extends SeedDMS_Bootstrap_Style {
|
|||
print "<tr>\n";
|
||||
print "<td><a href=\"../op/op.Download.php?documentid=".$document->getID()."&version=".$st['version']."\">";
|
||||
if($previewer->hasPreview($version)) {
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\"src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidth."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
} else {
|
||||
print "<img class=\"mimeicon\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
print "<img class=\"mimeicon\" width=\"".$previewwidth."\" src=\"".$this->getMimeIcon($version->getFileType())."\" title=\"".htmlspecialchars($version->getMimeType())."\">";
|
||||
}
|
||||
print "</a></td>";
|
||||
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["document"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>";
|
||||
|
|
1
views/bootstrap/images/audio.svg
Normal file
After Width: | Height: | Size: 5.0 KiB |
194
views/bootstrap/images/executable.svg
Normal file
|
@ -0,0 +1,194 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48.000000px"
|
||||
height="48.000000px"
|
||||
id="svg53383"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45"
|
||||
sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/mimetypes"
|
||||
sodipodi:docname="application-x-executable.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4746">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4748" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4750" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient2300">
|
||||
<stop
|
||||
id="stop2302"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#000000;stop-opacity:0.32673267;" />
|
||||
<stop
|
||||
id="stop2304"
|
||||
offset="1"
|
||||
style="stop-color:#000000;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="aigrd1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="99.7773"
|
||||
y1="15.4238"
|
||||
x2="153.0005"
|
||||
y2="248.6311">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#184375"
|
||||
id="stop53300" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#C8BDDC"
|
||||
id="stop53302" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#aigrd1"
|
||||
id="linearGradient53551"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="99.7773"
|
||||
y1="15.4238"
|
||||
x2="153.0005"
|
||||
y2="248.6311"
|
||||
gradientTransform="matrix(0.200685,0.000000,0.000000,0.200685,-0.585758,-1.050787)" />
|
||||
<radialGradient
|
||||
gradientUnits="userSpaceOnUse"
|
||||
r="11.689870"
|
||||
fy="72.568001"
|
||||
fx="14.287618"
|
||||
cy="68.872971"
|
||||
cx="14.287618"
|
||||
gradientTransform="matrix(1.399258,-2.234445e-7,8.196178e-8,0.513264,4.365074,4.839285)"
|
||||
id="radialGradient2308"
|
||||
xlink:href="#linearGradient2300"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4746"
|
||||
id="linearGradient4752"
|
||||
x1="25.625187"
|
||||
y1="31.785736"
|
||||
x2="25.821404"
|
||||
y2="58.910736"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:showpageshadow="false"
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="63.362147"
|
||||
inkscape:cy="-4.2524833"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="872"
|
||||
inkscape:window-height="697"
|
||||
inkscape:window-x="414"
|
||||
inkscape:window-y="275" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Executable</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://jimmac.musichall.cz/</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>executable</rdf:li>
|
||||
<rdf:li>program</rdf:li>
|
||||
<rdf:li>binary</rdf:li>
|
||||
<rdf:li>bin</rdf:li>
|
||||
<rdf:li>script</rdf:li>
|
||||
<rdf:li>shell</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="shadow"
|
||||
id="layer2"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
transform="matrix(1.186380,0.000000,0.000000,1.186380,-4.539687,-7.794678)"
|
||||
d="M 44.285715 38.714287 A 19.928572 9.8372450 0 1 1 4.4285717,38.714287 A 19.928572 9.8372450 0 1 1 44.285715 38.714287 z"
|
||||
sodipodi:ry="9.8372450"
|
||||
sodipodi:rx="19.928572"
|
||||
sodipodi:cy="38.714287"
|
||||
sodipodi:cx="24.357143"
|
||||
id="path1538"
|
||||
style="color:#000000;fill:url(#radialGradient2308);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.50000042;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
|
||||
sodipodi:type="arc" />
|
||||
</g>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<path
|
||||
style="fill:url(#linearGradient53551);fill-rule:nonzero;stroke:#3f4561;stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000"
|
||||
d="M 24.285801,43.196358 L 4.3751874,23.285744 L 24.285801,3.3751291 L 44.196415,23.285744 L 24.285801,43.196358 L 24.285801,43.196358 z "
|
||||
id="path53304" />
|
||||
<path
|
||||
style="opacity:0.49999997;fill:#ffffff;fill-rule:nonzero;stroke:none;stroke-miterlimit:4.0000000"
|
||||
d="M 8.9257729,27.145172 L 9.6642227,26.120988 C 10.300972,26.389480 10.964841,26.606057 11.650406,26.765873 L 11.644594,28.342731 C 12.072322,28.431066 12.507604,28.498867 12.948699,28.547102 L 13.430473,27.045213 C 13.774514,27.073690 14.122237,27.089380 14.473834,27.089380 C 14.825043,27.089380 15.172958,27.073883 15.517000,27.045213 L 15.998775,28.547102 C 16.440063,28.498867 16.875151,28.431066 17.302879,28.342731 L 17.296874,26.765680 C 17.982632,26.606057 18.646307,26.389480 19.283056,26.120988 L 20.205536,27.400490 C 20.607887,27.218396 20.999777,27.017899 21.380431,26.799968 L 20.887614,25.301952 C 21.484844,24.939702 22.049337,24.528633 22.575085,24.073980 L 23.847226,25.005759 C 24.172864,24.709178 24.484555,24.397487 24.780942,24.071849 L 23.849357,22.799902 C 24.304204,22.274154 24.715273,21.709855 25.077523,21.112237 L 26.575538,21.605248 C 26.793470,21.224400 26.994161,20.832316 27.175867,20.430160 L 25.896559,19.507873 C 26.165051,18.871124 26.381627,18.207255 26.541638,17.521497 L 28.118301,17.527308 C 28.206636,17.099581 28.274438,16.664298 28.322479,16.223010 L 26.820784,15.741236 C 26.849648,15.397388 26.864951,15.049472 26.864951,14.698069 C 26.864951,14.346666 26.849260,13.998944 26.820784,13.654708 L 28.322479,13.172934 C 28.274632,12.731840 28.206442,12.296751 28.118495,11.868830 L 26.541444,11.874835 C 26.381627,11.189076 26.165051,10.525208 25.896753,9.8886539 L 27.176061,8.9663652 C 26.994354,8.5640139 26.793470,8.1721237 26.575926,7.7912754 L 25.077717,8.2842867 C 24.715466,7.6868623 24.304398,7.1225635 23.849744,6.5970095 L 24.781330,5.3248686 C 24.502958,5.0189892 24.210252,4.7268638 23.905922,4.4467488 L 5.0669275,23.285938 L 6.0738693,24.292880 L 6.3725811,24.074174 C 6.8983295,24.528827 7.4626276,24.939896 8.0600509,25.302146 L 7.8180983,26.037303 L 8.9261605,27.145365 L 8.9257729,27.145172 z "
|
||||
id="path53361" />
|
||||
<path
|
||||
style="opacity:0.49999997;fill:#ffffff;fill-rule:nonzero;stroke:none;stroke-miterlimit:4.0000000"
|
||||
d="M 28.448976,32.191116 C 28.448976,25.706434 32.682859,20.211647 38.536216,18.317093 L 36.309244,16.089926 C 36.292390,16.096901 36.275344,16.102906 36.258684,16.110073 L 36.077171,15.858241 L 34.665167,14.446237 C 34.201989,14.665137 33.748497,14.900697 33.305853,15.153885 L 33.999942,17.263078 C 33.158628,17.772747 32.364194,18.351768 31.624195,18.991810 L 29.833085,17.680151 C 29.374364,18.097611 28.935788,18.536187 28.518521,18.994716 L 29.829986,20.785630 C 29.189945,21.525825 28.611118,22.320258 28.101255,23.161378 L 25.991868,22.467289 C 25.685214,23.003692 25.402775,23.555593 25.146874,24.122021 L 26.948056,25.420314 C 26.570114,26.316643 26.265204,27.251328 26.040298,28.216815 L 23.820299,28.208291 C 23.696127,28.810557 23.600430,29.423479 23.532823,30.044342 L 25.647246,30.722740 C 25.606953,31.207033 25.585255,31.696750 25.585255,32.191310 C 25.585255,32.686063 25.606953,33.175780 25.647246,33.660073 L 23.532823,34.337889 C 23.600430,34.959140 23.696127,35.571868 23.820493,36.174134 L 26.040298,36.165804 C 26.265204,37.131291 26.570114,38.065976 26.948056,38.962306 L 25.146874,40.260792 C 25.289256,40.575582 25.440743,40.885723 25.599010,41.191215 L 29.403033,37.387579 C 28.787013,35.773334 28.448783,34.021743 28.448783,32.191310 L 28.448976,32.191116 z "
|
||||
id="path53363" />
|
||||
<path
|
||||
id="path4736"
|
||||
d="M 24.285794,41.696345 L 5.8751859,23.285737 L 24.285794,4.875128 L 42.696402,23.285737 L 24.285794,41.696345 L 24.285794,41.696345 z "
|
||||
style="fill:none;fill-rule:nonzero;stroke:url(#linearGradient4752);stroke-width:0.9999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;opacity:0.35714286"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.9 KiB |
287
views/bootstrap/images/folder.svg
Normal file
|
@ -0,0 +1,287 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
x="0.0000000"
|
||||
y="0.0000000"
|
||||
width="48.000000px"
|
||||
height="48.000000px"
|
||||
id="svg1"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45"
|
||||
sodipodi:docname="folder.svg"
|
||||
sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/places"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<metadata
|
||||
id="metadata162">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Folder</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:date>2005-02-01</dc:date>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
<dc:identifier>http://jimmac.musichall.cz/</dc:identifier>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>folder</rdf:li>
|
||||
<rdf:li>directory</rdf:li>
|
||||
<rdf:li>storage</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="0.14901961"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="922"
|
||||
inkscape:window-height="655"
|
||||
inkscape:cy="50.536684"
|
||||
inkscape:cx="30.884152"
|
||||
inkscape:zoom="1"
|
||||
inkscape:document-units="px"
|
||||
showgrid="false"
|
||||
inkscape:window-x="515"
|
||||
inkscape:window-y="365"
|
||||
inkscape:current-layer="layer2"
|
||||
inkscape:showpageshadow="false" />
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient4734">
|
||||
<stop
|
||||
style="stop-color:#cccdbc;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4736" />
|
||||
<stop
|
||||
style="stop-color:#b9baa4;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop4738" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2339">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop2341" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop2343" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2339"
|
||||
id="linearGradient2345"
|
||||
x1="25.850664"
|
||||
y1="37.625"
|
||||
x2="24.996323"
|
||||
y2="25.25"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient356">
|
||||
<stop
|
||||
style="stop-color:#fffff3;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop357" />
|
||||
<stop
|
||||
style="stop-color:#fffff3;stop-opacity:0.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop358" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient311">
|
||||
<stop
|
||||
style="stop-color:#cfcfc4;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop312" />
|
||||
<stop
|
||||
style="stop-color:#cfcfc4;stop-opacity:1.0000000;"
|
||||
offset="0.32673267"
|
||||
id="stop335" />
|
||||
<stop
|
||||
style="stop-color:#cfcfc4;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop313" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient235">
|
||||
<stop
|
||||
style="stop-color:#59594a;stop-opacity:1.0000000;"
|
||||
offset="0.0000000"
|
||||
id="stop236" />
|
||||
<stop
|
||||
style="stop-color:#a2a491;stop-opacity:1.0000000;"
|
||||
offset="1.0000000"
|
||||
id="stop237" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient235"
|
||||
id="linearGradient253"
|
||||
gradientTransform="scale(1.068312,0.936056)"
|
||||
x1="24.983023"
|
||||
y1="22.828066"
|
||||
x2="24.983023"
|
||||
y2="8.3744106"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient311"
|
||||
id="linearGradient320"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(0.750458,1.332520)"
|
||||
x1="32.827568"
|
||||
y1="7.9206076"
|
||||
x2="60.071049"
|
||||
y2="7.8678756" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient356"
|
||||
id="linearGradient355"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(0.806859,1.239374)"
|
||||
x1="23.643002"
|
||||
y1="12.818464"
|
||||
x2="28.443289"
|
||||
y2="25.232374" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4734"
|
||||
id="linearGradient4740"
|
||||
x1="24.588383"
|
||||
y1="1.8991361"
|
||||
x2="24.588383"
|
||||
y2="40.858932"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
</defs>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="pixmap"
|
||||
style="display:inline" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="vectors"
|
||||
style="display:inline">
|
||||
<g
|
||||
transform="matrix(0.216083,0.000000,0.000000,0.263095,-0.893233,-10.24236)"
|
||||
id="g1197">
|
||||
<path
|
||||
d="M 32.706693,164.36026 C 22.319193,164.36026 13.956693,172.72276 13.956693,183.11026 C 13.956693,193.49776 22.319193,201.86026 32.706693,201.86026 L 205.20669,201.86026 C 215.59419,201.86026 223.95669,193.49776 223.95669,183.11026 C 223.95669,172.72276 215.59419,164.36026 205.20669,164.36026 L 32.706693,164.36026 z "
|
||||
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
||||
id="path1196" />
|
||||
<path
|
||||
d="M 32.706693,165.61026 C 23.011693,165.61026 15.206693,173.41526 15.206693,183.11026 C 15.206693,192.80526 23.011693,200.61026 32.706693,200.61026 L 205.20669,200.61026 C 214.90169,200.61026 222.70669,192.80526 222.70669,183.11026 C 222.70669,173.41526 214.90169,165.61026 205.20669,165.61026 L 32.706693,165.61026 z "
|
||||
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
||||
id="path1195" />
|
||||
<path
|
||||
d="M 32.706694,166.86026 C 23.704194,166.86026 16.456694,174.10776 16.456694,183.11026 C 16.456694,192.11276 23.704194,199.36026 32.706694,199.36026 L 205.20669,199.36026 C 214.20919,199.36026 221.45669,192.11276 221.45669,183.11026 C 221.45669,174.10776 214.20919,166.86026 205.20669,166.86026 L 32.706694,166.86026 z "
|
||||
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
||||
id="path1194" />
|
||||
<path
|
||||
d="M 32.706694,168.11026 C 24.396694,168.11026 17.706694,174.80026 17.706694,183.11026 C 17.706694,191.42026 24.396694,198.11026 32.706694,198.11026 L 205.20669,198.11026 C 213.51669,198.11026 220.20669,191.42026 220.20669,183.11026 C 220.20669,174.80026 213.51669,168.11026 205.20669,168.11026 L 32.706694,168.11026 z "
|
||||
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
||||
id="path1193" />
|
||||
<path
|
||||
d="M 32.707764,169.36026 C 25.090264,169.36026 18.957764,175.49276 18.957764,183.11026 C 18.957764,190.72776 25.090264,196.86026 32.707764,196.86026 L 205.20618,196.86026 C 212.82368,196.86026 218.95618,190.72776 218.95618,183.11026 C 218.95618,175.49276 212.82368,169.36026 205.20618,169.36026 L 32.707764,169.36026 z "
|
||||
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
||||
id="path1192" />
|
||||
<path
|
||||
d="M 32.706694,170.61026 C 25.781694,170.61026 20.206694,176.18526 20.206694,183.11026 C 20.206694,190.03526 25.781694,195.61026 32.706694,195.61026 L 205.20669,195.61026 C 212.13169,195.61026 217.70669,190.03526 217.70669,183.11026 C 217.70669,176.18526 212.13169,170.61026 205.20669,170.61026 L 32.706694,170.61026 z "
|
||||
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
||||
id="path1191" />
|
||||
<path
|
||||
d="M 32.706694,171.86026 C 26.474194,171.86026 21.456694,176.87776 21.456694,183.11026 C 21.456694,189.34276 26.474194,194.36026 32.706694,194.36026 L 205.20669,194.36026 C 211.43919,194.36026 216.45669,189.34276 216.45669,183.11026 C 216.45669,176.87776 211.43919,171.86026 205.20669,171.86026 L 32.706694,171.86026 z "
|
||||
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
||||
id="path1190" />
|
||||
<path
|
||||
d="M 32.706694,173.11026 C 27.166694,173.11026 22.706694,177.57026 22.706694,183.11026 C 22.706694,188.65026 27.166694,193.11026 32.706694,193.11026 L 205.20669,193.11026 C 210.74669,193.11026 215.20669,188.65026 215.20669,183.11026 C 215.20669,177.57026 210.74669,173.11026 205.20669,173.11026 L 32.706694,173.11026 z "
|
||||
style="opacity:0.047872309;fill-rule:evenodd;stroke-width:3.0000000pt"
|
||||
id="path1189" />
|
||||
</g>
|
||||
<path
|
||||
d="M 5.4186638,5.4561100 C 4.9536872,5.4561100 4.6035534,5.6913368 4.6035534,6.1828330 L 4.6035534,39.203794 C 4.6035534,39.930940 5.0906584,40.415354 5.7526104,40.415354 L 43.489564,40.415354 C 44.155366,40.415354 44.419872,39.962588 44.419872,39.328794 L 44.419872,10.425912 C 44.419872,9.8829469 44.019585,9.5893540 43.520814,9.5893540 L 24.411490,9.5893540 C 24.074477,9.5893540 23.714810,9.3909280 23.517009,9.1180670 L 20.914778,5.9180580 C 20.696913,5.6175190 20.272703,5.4561250 19.901500,5.4561250 L 5.4186638,5.4561100 z "
|
||||
style="fill:url(#linearGradient253);fill-opacity:1.0;fill-rule:evenodd;stroke:#555753;stroke-width:1.0000000;stroke-miterlimit:4.0000000;stroke-opacity:1"
|
||||
id="path895"
|
||||
sodipodi:nodetypes="ccccccccccccc" />
|
||||
<g
|
||||
id="g891"
|
||||
transform="matrix(0.186703,0.000000,0.000000,0.186703,-21.10730,57.62299)" />
|
||||
<path
|
||||
style="fill:url(#linearGradient320);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:0.25000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;opacity:1.0000000;color:#000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 5.0625000,7.9062500 L 5.0625000,36.156250 L 6.0312500,31.781250 L 6.2500000,9.1562500 C 6.2500000,8.4058274 6.7614657,8.0312500 7.4869586,8.0312500 L 19.093750,8.0312500 C 20.655346,8.0312500 22.108598,11.218750 24.411417,11.218750 C 30.383036,11.218750 43.749813,11.306338 43.750000,11.218750 L 43.750000,10.187500 L 24.218750,10.062500 C 22.362615,10.050621 21.088324,6.9062500 19.656250,6.9062500 L 6.2838336,6.9062500 C 5.4685048,6.9062500 5.0625000,7.2604161 5.0625000,7.9062500 z "
|
||||
id="path315"
|
||||
sodipodi:nodetypes="ccccczscczzcc" />
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient4740);fill-opacity:1.0;fill-rule:evenodd;stroke:#555753;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 7.6864537,16.296282 L 15.619799,16.296282 C 16.361533,16.296282 16.987769,15.915471 17.306966,15.414278 C 17.443709,15.199569 18.574948,13.28855 18.66464,13.158052 C 18.963427,12.723328 19.437557,12.399136 20.006622,12.399136 L 43.048855,12.399136 C 43.851692,12.399136 44.498018,13.042925 44.498018,13.84261 L 44.498018,38.915459 C 44.498018,39.715143 43.851692,40.358932 43.048855,40.358932 L 6.1279084,40.358932 C 5.3250725,40.358932 4.6787461,39.715143 4.6787461,38.915459 L 4.6787461,19.481904 C 4.6787461,17.507539 5.8190623,16.296282 7.6864537,16.296282 z "
|
||||
id="rect337"
|
||||
sodipodi:nodetypes="czzszcccccccc"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
style="fill:url(#linearGradient355);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:0.25000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-opacity:1.0000000;opacity:1.0000000;color:#000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-dasharray:none;stroke-dashoffset:0;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 20.500000,13.750000 C 19.853581,13.750000 19.490960,14.031698 19.125000,14.500000 C 18.759040,14.968302 18.343502,15.671815 18.062500,16.218750 C 17.781498,16.765685 17.493409,17.272919 17.218750,17.625000 C 16.944091,17.977081 16.729167,18.125000 16.500000,18.125000 C 15.250000,18.125000 7.3428301,18.125000 6.8428301,18.125000 C 6.3844968,18.125000 6.0073599,18.355519 5.6865801,18.656250 C 5.3658003,18.956981 5.0928301,19.362500 5.0928301,19.875000 C 5.0928302,20.499998 5.0928301,39.250000 5.0928301,39.250000 L 6.0928301,39.250000 C 6.0928301,39.250000 6.0928302,20.500002 6.0928301,19.875000 C 6.0928301,19.762500 6.1948599,19.543019 6.3740801,19.375000 C 6.5533003,19.206981 6.8011635,19.125000 6.8428301,19.125000 C 7.3428301,19.125000 15.250000,19.125000 16.500000,19.125000 C 17.145833,19.125000 17.634731,18.718232 18.000000,18.250000 C 18.365269,17.781768 18.656559,17.203065 18.937500,16.656250 C 19.218441,16.109435 19.568667,15.477011 19.843750,15.125000 C 20.118833,14.772989 20.269189,14.750000 20.500000,14.750000 C 21.716667,14.750000 43.750000,14.875000 43.750000,14.875000 L 43.750000,13.875000 C 43.750000,13.875000 21.783333,13.750000 20.500000,13.750000 z "
|
||||
id="path349"
|
||||
sodipodi:nodetypes="ccccccccccccccccccccc" />
|
||||
<rect
|
||||
style="color:#000000;fill:#fffffd;fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.25000000pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4.0000000;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect459"
|
||||
width="1.2500000"
|
||||
height="1.2500000"
|
||||
x="5.5290294"
|
||||
y="7.3598347"
|
||||
rx="1.4434735"
|
||||
ry="1.2500000" />
|
||||
<rect
|
||||
style="opacity:0.28571429;color:#000000;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient2345);stroke-width:1.00000024;stroke-linecap:square;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect2337"
|
||||
width="37.95816"
|
||||
height="23.625"
|
||||
x="5.5381637"
|
||||
y="15.75"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
rx="0.43750021"
|
||||
ry="0.4375" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
434
views/bootstrap/images/image.svg
Normal file
|
@ -0,0 +1,434 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48px"
|
||||
height="48px"
|
||||
id="svg1306"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.45"
|
||||
sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/mimetypes"
|
||||
sodipodi:docname="image-x-generic.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs1308">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5060">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5062" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5064" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient5048">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop5050" />
|
||||
<stop
|
||||
id="stop5056"
|
||||
offset="0.5"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5052" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6431">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6433" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6435" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6390">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6392" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6394" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6374">
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6376" />
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6378" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient6366">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop6368" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6370" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient6327">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6329" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop6331" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4616">
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4618" />
|
||||
<stop
|
||||
style="stop-color:#2e3436;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4620" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4928">
|
||||
<stop
|
||||
id="stop4930"
|
||||
offset="0"
|
||||
style="stop-color:#fce94f;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4932"
|
||||
offset="1"
|
||||
style="stop-color:#fce94f;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient2065">
|
||||
<stop
|
||||
style="stop-color:#555753"
|
||||
offset="0"
|
||||
id="stop2067" />
|
||||
<stop
|
||||
style="stop-color:#fcaf3e"
|
||||
offset="1"
|
||||
id="stop2069" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2065"
|
||||
id="linearGradient2071"
|
||||
x1="-11.986486"
|
||||
y1="13.122552"
|
||||
x2="-11.986486"
|
||||
y2="29.726542"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.1141976,0,0,1.1666667,37.36883,-3.916667)" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4928"
|
||||
id="radialGradient4915"
|
||||
cx="-6.0070167"
|
||||
cy="32.837029"
|
||||
fx="-6.0070167"
|
||||
fy="32.837029"
|
||||
r="9.90625"
|
||||
gradientTransform="matrix(1,-1.487184e-8,1.425535e-8,0.958546,22.7158,2.575973)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4616"
|
||||
id="linearGradient4622"
|
||||
x1="25.355263"
|
||||
y1="33.654644"
|
||||
x2="25.355263"
|
||||
y2="32.409008"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.117647,0,0,1.5,-2.8235294,-15.5)" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6327"
|
||||
id="linearGradient6333"
|
||||
x1="42.999424"
|
||||
y1="36.811924"
|
||||
x2="40.621296"
|
||||
y2="34.433796"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6327"
|
||||
id="linearGradient6360"
|
||||
x1="61.18124"
|
||||
y1="137.97644"
|
||||
x2="20.420683"
|
||||
y2="2.6749926"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6366"
|
||||
id="linearGradient6372"
|
||||
x1="40.941582"
|
||||
y1="37.639805"
|
||||
x2="35.496311"
|
||||
y2="32.194534"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6374"
|
||||
id="radialGradient6382"
|
||||
cx="39.437065"
|
||||
cy="34.33852"
|
||||
fx="39.437065"
|
||||
fy="34.33852"
|
||||
r="6"
|
||||
gradientTransform="matrix(0.1875,-1.053432,0.7180811,0.127811,7.8227088,71.030427)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6390"
|
||||
id="radialGradient6396"
|
||||
cx="20.236877"
|
||||
cy="25.043303"
|
||||
fx="20.236877"
|
||||
fy="25.043303"
|
||||
r="22"
|
||||
gradientTransform="matrix(0.9409062,-0.2066504,0.109821,0.5000295,-1.5544064,13.219564)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6431"
|
||||
id="radialGradient6437"
|
||||
cx="40.179535"
|
||||
cy="34.080399"
|
||||
fx="40.179535"
|
||||
fy="34.080399"
|
||||
r="4.125"
|
||||
gradientTransform="matrix(1,0,0,0.9356061,0,2.3071141)"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5060"
|
||||
id="radialGradient6909"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.6064769e-2,0,0,7.4117646e-2,11.681601,-1.1750779)"
|
||||
cx="605.71429"
|
||||
cy="486.64789"
|
||||
fx="605.71429"
|
||||
fy="486.64789"
|
||||
r="117.14286" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5060"
|
||||
id="radialGradient6912"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.1044211,0,0,7.4117646e-2,-27.930451,-1.1750779)"
|
||||
cx="605.71429"
|
||||
cy="486.64789"
|
||||
fx="605.71429"
|
||||
fy="486.64789"
|
||||
r="117.14286" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5048"
|
||||
id="linearGradient6915"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(6.8343196e-2,0,0,7.4117646e-2,-6.2011835,-1.1750779)"
|
||||
x1="302.85715"
|
||||
y1="366.64789"
|
||||
x2="302.85715"
|
||||
y2="609.50507" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="39.08644"
|
||||
inkscape:cy="16.34396"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
fill="#fcaf3e"
|
||||
stroke="#555753"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="false"
|
||||
inkscape:window-width="895"
|
||||
inkscape:window-height="760"
|
||||
inkscape:window-x="208"
|
||||
inkscape:window-y="229"
|
||||
inkscape:showpageshadow="false"
|
||||
showborder="false"
|
||||
gridspacingx="0.5px"
|
||||
gridspacingy="0.5px"
|
||||
gridempspacing="2"
|
||||
inkscape:grid-points="false"
|
||||
gridtolerance="50"
|
||||
inkscape:object-paths="false" />
|
||||
<metadata
|
||||
id="metadata1311">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Generic Image</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Lapo Calamandrei</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://www.gnome.org</dc:source>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner, Andreas Nilsson</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
id="g6917">
|
||||
<rect
|
||||
y="26"
|
||||
x="2"
|
||||
height="18"
|
||||
width="33"
|
||||
id="rect6057"
|
||||
style="opacity:0.39195981;color:#000000;fill:url(#linearGradient6915);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccscc"
|
||||
id="path6059"
|
||||
d="M 35,26.00062 C 35,26.00062 35,43.999627 35,43.999627 C 37.30962,44.01418 40.033409,43.272315 42.389531,42.027493 C 45.519106,40.37403 48.000002,37.833194 48,34.998965 C 48,30.030967 41.999197,26.000621 35,26.00062 z "
|
||||
style="opacity:0.40206185;color:#000000;fill:url(#radialGradient6912);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="opacity:0.40206185;color:#000000;fill:url(#radialGradient6909);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 2,26.00062 C 2,26.00062 2,43.999627 2,43.999627 C 1.172704,44.03351 1.3577825e-06,39.966963 1.3577825e-06,34.998965 C 1.3577825e-06,30.030967 0.92320113,26.000621 2,26.00062 z "
|
||||
id="path6061"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
style="fill:url(#linearGradient6360);fill-opacity:1.0;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.767767,6.5 L 45.232237,6.5 C 45.93458,6.5 46.500004,7.0654241 46.500004,7.767767 L 46.5,30.5 C 46.5,31.202343 36.202343,40.5 35.5,40.5 L 2.767767,40.5 C 2.0654241,40.5 1.5,39.934576 1.5,39.232233 L 1.5,7.767767 C 1.5,7.0654241 2.0654241,6.5 2.767767,6.5 z "
|
||||
id="rect5350"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient2071);fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 4.9874617,9.5 L 43.039565,9.5 C 43.309619,9.5 43.527027,9.7276458 43.527027,10.010417 L 43.527027,33.989583 L 40.039565,37.5 L 4.9874617,37.5 C 4.7174079,37.5 4.5,37.272354 4.5,36.989583 L 4.5,10.010417 C 4.5,9.7276458 4.7174079,9.5 4.9874617,9.5 z "
|
||||
id="rect2063"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#radialGradient4915);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 16.083789,23.551777 C 10.91501,23.879732 6.8025384,28.206965 6.8025384,33.458027 C 6.8025384,33.660812 6.8217484,33.852002 6.8337884,34.051777 L 26.583789,34.051777 C 26.59583,33.852002 26.615039,33.660812 26.615039,33.458027 C 26.615039,27.993506 22.17331,23.551777 16.708789,23.551777 C 16.495331,23.551777 16.293902,23.538446 16.083789,23.551777 z "
|
||||
id="path4898"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient4622);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect1324"
|
||||
width="38"
|
||||
height="3"
|
||||
x="5"
|
||||
y="34"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
<path
|
||||
style="opacity:0.81896548;fill:url(#linearGradient6372);fill-opacity:1;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 14.78125,40 L 35.40625,40 C 35.41645,39.995518 35.423208,39.996022 35.46875,39.96875 C 35.559833,39.914206 35.707858,39.809986 35.875,39.6875 C 36.209283,39.442528 36.659837,39.093896 37.1875,38.65625 C 38.242827,37.780957 39.61066,36.608491 40.9375,35.40625 C 42.26434,34.204009 43.563777,32.96157 44.53125,32 C 45.014987,31.519215 45.417906,31.118778 45.6875,30.8125 C 45.822297,30.659361 45.910802,30.519277 45.96875,30.4375 C 45.983237,30.417056 45.991685,30.419536 46,30.40625 L 46,13.78125 L 14.78125,40 z "
|
||||
id="path6364"
|
||||
sodipodi:nodetypes="ccsssssssccc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 29.555584,34.972272 C 29.555584,34.972272 29,31.732526 29,29.747801 C 29.015409,28.842396 36.786707,21.788999 36.806757,20.738368 L 35,22.392753 L 33.734835,18.776232 L 38,19.24059 L 40,17.139148 L 37.734835,18.886405 L 36.955806,18.700662 L 36,15.037705 L 36.486136,18.607791 L 32.955806,18.422048 L 34.06066,21.376634 L 31,18.189869 L 34.237437,22.62545 C 34.237522,23.614733 27.856563,29.653936 27.867417,28.612599 L 25.220971,24.882982 L 25,19.841002 L 27,19.24059 L 28.752155,14.700822 L 26.442435,18.896683 L 24.639267,18.810834 L 20.602879,15.228917 L 15.06066,13 L 19.795495,15.734242 L 16,16.088427 L 21,16.088427 L 24,19.24059 L 24.353553,24.685407 L 19,19.24059 L 21.251301,22.085004 L 18,24.494195 L 21.571429,22.392753 L 27.220971,29.869807 L 27,34.972272 L 29.555584,34.972272 z "
|
||||
id="path2079"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" />
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
id="path4924"
|
||||
d="M 16.367734,28.233668 C 13.547195,28.412629 11.30307,30.773947 11.30307,33.639387 C 11.30307,33.750044 11.313552,33.854374 11.320122,33.963389 L 22.097455,33.963389 C 22.104026,33.854374 22.114508,33.750044 22.114508,33.639387 C 22.114508,30.657465 19.690711,28.233668 16.708789,28.233668 C 16.592307,28.233668 16.48239,28.226393 16.367734,28.233668 z "
|
||||
style="opacity:1;color:#000000;fill:#fef39e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:#fffbd7;fill-opacity:0.55681817;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 16.448682,29.531973 C 14.297594,29.668459 12.586109,31.469322 12.586109,33.654654 C 12.586109,33.739046 12.594104,33.818614 12.599114,33.901754 L 20.818463,33.901754 C 20.823474,33.818614 20.831469,33.739046 20.831469,33.654654 C 20.831469,31.380487 18.982957,29.531973 16.708789,29.531973 C 16.619954,29.531973 16.536126,29.526426 16.448682,29.531973 z "
|
||||
id="path4926"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
|
||||
d="M 2.78125,7.5 C 2.6253137,7.5 2.5,7.6253137 2.5,7.78125 L 2.5,39.21875 C 2.5,39.374686 2.6253136,39.5 2.78125,39.5 L 37.28125,39.5 C 40.921301,36.704635 42.365769,35.606734 45.5,32.25 L 45.5,7.78125 C 45.5,7.6253155 45.374683,7.5 45.21875,7.5 L 2.78125,7.5 z "
|
||||
id="path6351"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="fill:url(#linearGradient6333);fill-rule:evenodd;stroke:url(#radialGradient6382);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;fill-opacity:1.0"
|
||||
d="M 46.5,30.5 C 46.5,35.5 40.5,40.5 35.5,40.5 C 35.5,40.5 39.932134,38.33738 39.5,33.5 C 43.879686,33.916135 46.5,30.5 46.5,30.5 z "
|
||||
id="path6322"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:url(#radialGradient6437);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;opacity:0.73275862"
|
||||
d="M 45.71875 31.96875 C 44.577589 32.932531 42.679856 34.08934 40.03125 34.03125 C 40.059733 36.774444 38.699098 38.58751 37.46875 39.6875 C 38.953141 38.706251 40.825166 37.371805 41.03125 35.03125 C 43.192381 35.027997 44.619214 33.310655 45.6875 32.03125 C 45.693038 32.009581 45.713422 31.990426 45.71875 31.96875 z "
|
||||
id="path6339" />
|
||||
<path
|
||||
style="fill:url(#radialGradient6396);fill-opacity:1.0;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.34482759"
|
||||
d="M 2.78125,7 C 2.3536576,7 2,7.3536576 2,7.78125 L 2,31.09375 C 14.714701,22.184679 34.055102,15.625228 46,19.3125 L 46,7.78125 C 46,7.3536585 45.64634,7 45.21875,7 L 2.78125,7 z "
|
||||
id="path6384"
|
||||
sodipodi:nodetypes="ccccccc" />
|
||||
<path
|
||||
sodipodi:type="inkscape:offset"
|
||||
inkscape:radius="-1"
|
||||
inkscape:original="M 2.78125 6.5 C 2.0789071 6.5 1.5 7.0789071 1.5 7.78125 L 1.5 39.21875 C 1.5 39.921093 2.0789071 40.5 2.78125 40.5 L 35.5 40.5 C 40.5 40.5 46.5 35.5 46.5 30.5 L 46.5 7.78125 C 46.5 7.0789071 45.921091 6.5 45.21875 6.5 L 2.78125 6.5 z "
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;opacity:0.41810345"
|
||||
id="path6427"
|
||||
d="M 2.78125,7.5 C 2.628408,7.5 2.5,7.628408 2.5,7.78125 L 2.5,39.21875 C 2.5,39.371592 2.6284079,39.5 2.78125,39.5 L 35.5,39.5 C 37.666667,39.5 40.249358,38.362698 42.21875,36.625 C 44.188142,34.887302 45.5,32.6 45.5,30.5 L 45.5,7.78125 C 45.5,7.6284098 45.371589,7.5 45.21875,7.5 L 2.78125,7.5 z " />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
740
views/bootstrap/images/office-document.svg
Normal file
|
@ -0,0 +1,740 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="240.00000"
|
||||
inkscape:export-xdpi="240.00000"
|
||||
inkscape:export-filename="/home/jimmac/gfx/novell/pdes/trunk/docs/BIGmime-text.png"
|
||||
sodipodi:docname="x-office-document.svg"
|
||||
sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/mimetypes"
|
||||
inkscape:version="0.45+0.46pre0"
|
||||
sodipodi:version="0.32"
|
||||
id="svg249"
|
||||
height="48.000000px"
|
||||
width="48.000000px"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4616"
|
||||
id="linearGradient6358"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(102.477,-54.43825)"
|
||||
x1="25.355263"
|
||||
y1="34.006802"
|
||||
x2="25.355263"
|
||||
y2="32.409008" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4928"
|
||||
id="radialGradient6356"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,-1.487184e-8,1.425535e-8,0.958546,125.1928,-52.86228)"
|
||||
cx="-6.0070167"
|
||||
cy="32.837029"
|
||||
fx="-6.0070167"
|
||||
fy="32.837029"
|
||||
r="9.90625" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient2065"
|
||||
id="linearGradient6354"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(138.477,-54.43825)"
|
||||
x1="-11.986486"
|
||||
y1="13.122552"
|
||||
x2="-11.986486"
|
||||
y2="29.726542" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3656">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3658" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3660" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3656"
|
||||
id="linearGradient6352"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-26.753757"
|
||||
y1="11.566258"
|
||||
x2="-24.75"
|
||||
y2="9.687501" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3520">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.41295547"
|
||||
offset="0"
|
||||
id="stop3522" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3524" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3520"
|
||||
id="linearGradient6350"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9223058,0,0,0.9185751,-92.447368,1.3256997)"
|
||||
x1="-18.588562"
|
||||
y1="11.052948"
|
||||
x2="-28.789402"
|
||||
y2="14.069944" />
|
||||
<linearGradient
|
||||
id="linearGradient3671">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3673" />
|
||||
<stop
|
||||
id="stop3691"
|
||||
offset="0.47533694"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3675" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3671"
|
||||
id="radialGradient6348"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4073362,-0.2798276,0.7510293,1.0932492,-115.18484,-8.4378699)"
|
||||
cx="-26.305403"
|
||||
cy="10.108011"
|
||||
fx="-26.305403"
|
||||
fy="10.108011"
|
||||
r="7.0421038" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3741">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3743" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3745" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3741"
|
||||
id="radialGradient6346"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.8860258,0,0,1.1764706,-3.5441033,-4.2352941)"
|
||||
cx="4"
|
||||
cy="5.2999997"
|
||||
fx="4"
|
||||
fy="5.2999997"
|
||||
r="17" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3613">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3615" />
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3617" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3613"
|
||||
id="linearGradient6344"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-90,0)"
|
||||
x1="-47.5"
|
||||
y1="49.020683"
|
||||
x2="-62.75"
|
||||
y2="-22.502075" />
|
||||
<linearGradient
|
||||
id="linearGradient3683">
|
||||
<stop
|
||||
id="stop3685"
|
||||
offset="0"
|
||||
style="stop-color:#f6f6f5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3689"
|
||||
offset="1"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3683"
|
||||
id="radialGradient6342"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(3.9957492,0,0,1.9350367,0.62141,-31.167422)"
|
||||
cx="-30.249996"
|
||||
cy="35.357208"
|
||||
fx="-30.249996"
|
||||
fy="35.357208"
|
||||
r="18.000002" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient6340"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient6338"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient6336"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient6334"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient6332"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient6330"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
id="linearGradient2065"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop2067"
|
||||
offset="0"
|
||||
style="stop-color:#555753" />
|
||||
<stop
|
||||
id="stop2069"
|
||||
offset="1"
|
||||
style="stop-color:#fcaf3e" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4928">
|
||||
<stop
|
||||
style="stop-color:#fce94f;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4930" />
|
||||
<stop
|
||||
style="stop-color:#fce94f;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4932" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4616"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop4618"
|
||||
offset="0"
|
||||
style="stop-color:#2e3436;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop4620"
|
||||
offset="1"
|
||||
style="stop-color:#2e3436;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3702">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3704" />
|
||||
<stop
|
||||
id="stop3710"
|
||||
offset="0.5"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3688">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3690" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3692" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="150"
|
||||
inkscape:window-x="291"
|
||||
inkscape:window-height="872"
|
||||
inkscape:window-width="1051"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer6"
|
||||
inkscape:cy="23.350927"
|
||||
inkscape:cx="26.758178"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.25490196"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Rich Text</dc:title>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>rich</rdf:li>
|
||||
<rdf:li>text</rdf:li>
|
||||
<rdf:li>document</rdf:li>
|
||||
<rdf:li>office</rdf:li>
|
||||
<rdf:li>word</rdf:li>
|
||||
<rdf:li>write</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Lapo Calamandrei</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source></dc:source>
|
||||
<dc:date></dc:date>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier></dc:identifier>
|
||||
<dc:relation></dc:relation>
|
||||
<dc:language></dc:language>
|
||||
<dc:coverage></dc:coverage>
|
||||
<dc:description></dc:description>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer6"
|
||||
inkscape:label="Shadow">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g11868"
|
||||
transform="translate(150,-240)">
|
||||
<g
|
||||
transform="translate(0,240)"
|
||||
id="g6083"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
id="rect6085"
|
||||
width="48"
|
||||
height="48"
|
||||
x="-150"
|
||||
y="0" />
|
||||
<g
|
||||
id="g6087">
|
||||
<g
|
||||
transform="matrix(1.0464281,0,0,0.8888889,-151.18571,5.7222396)"
|
||||
inkscape:label="Shadow"
|
||||
id="g6089"
|
||||
style="opacity:0.65587045;display:inline">
|
||||
<g
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)"
|
||||
style="opacity:0.4"
|
||||
id="g6091">
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient6330);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect6093"
|
||||
width="5"
|
||||
height="7"
|
||||
x="38"
|
||||
y="40" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient6332);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect6095"
|
||||
width="5"
|
||||
height="7"
|
||||
x="-10"
|
||||
y="-47"
|
||||
transform="scale(-1,-1)" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient6334);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect6097"
|
||||
width="28"
|
||||
height="7.0000005"
|
||||
x="10"
|
||||
y="40" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.9548466,0,0,0.5555562,-148.98776,19.888875)"
|
||||
inkscape:label="Shadow"
|
||||
id="g6099"
|
||||
style="display:inline">
|
||||
<g
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)"
|
||||
style="opacity:0.4"
|
||||
id="g6101">
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient6336);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect6103"
|
||||
width="5"
|
||||
height="7"
|
||||
x="38"
|
||||
y="40" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient6338);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect6105"
|
||||
width="5"
|
||||
height="7"
|
||||
x="-10"
|
||||
y="-47"
|
||||
transform="scale(-1,-1)" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient6340);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect6107"
|
||||
width="28"
|
||||
height="7.0000005"
|
||||
x="10"
|
||||
y="40" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccccccc"
|
||||
id="path6109"
|
||||
d="M -141.47614,3.5 C -141.47614,3.5 -124,3.5 -122.5,3.5 C -118.62295,3.5729425 -116,6 -113.5,8.5 C -111,11 -108.89232,13.752625 -108.5,17.5 C -108.5,19 -108.5,42.476142 -108.5,42.476142 C -108.5,43.597359 -109.40264,44.5 -110.52385,44.5 L -141.47614,44.5 C -142.59736,44.5 -143.5,43.597359 -143.5,42.476142 L -143.5,5.523858 C -143.5,4.402641 -142.59736,3.5 -141.47614,3.5 z"
|
||||
style="fill:url(#radialGradient6342);fill-opacity:1;stroke:url(#linearGradient6344);stroke-width:1;stroke-miterlimit:4;display:inline" />
|
||||
<path
|
||||
transform="translate(-150,0)"
|
||||
d="M 8.53125,4 C 7.6730803,4 7,4.6730802 7,5.53125 L 7,42.46875 C 7,43.32692 7.6730802,44 8.53125,44 L 39.46875,44 C 40.326919,44 41,43.326918 41,42.46875 C 41,42.46875 41,19 41,17.5 C 41,16.10803 40.513021,13.200521 38.65625,11.34375 C 36.65625,9.34375 35.65625,8.34375 33.65625,6.34375 C 31.799479,4.4869792 28.89197,4 27.5,4 C 26,4 8.53125,4 8.53125,4 z"
|
||||
id="path6111"
|
||||
style="opacity:0.68016196;fill:url(#radialGradient6346);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;display:inline"
|
||||
inkscape:original="M 8.53125 3.5 C 7.410033 3.5 6.5 4.4100329 6.5 5.53125 L 6.5 42.46875 C 6.5 43.589967 7.4100329 44.5 8.53125 44.5 L 39.46875 44.5 C 40.589967 44.5 41.5 43.589966 41.5 42.46875 C 41.5 42.46875 41.5 19 41.5 17.5 C 41.5 16 41 13 39 11 C 37 9 36 8 34 6 C 32 4 29 3.5 27.5 3.5 C 26 3.5 8.5312499 3.5 8.53125 3.5 z "
|
||||
inkscape:radius="-0.4861359"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccczc"
|
||||
id="path6113"
|
||||
d="M -122.5,4 C -123.88889,4 -122.54207,4.4970883 -121.15625,5.125 C -119.77043,5.7529117 -116.18337,8.3400517 -117,12 C -112.67669,11.569417 -110.32087,15.122378 -110,16.28125 C -109.67913,17.440122 -109,18.888889 -109,17.5 C -108.97167,13.694419 -111.84543,11.068299 -113.84375,8.84375 C -115.84207,6.6192012 -118.84621,4.4767615 -122.5,4 z"
|
||||
style="fill:url(#radialGradient6348);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;display:inline" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path6115"
|
||||
d="M -121.39912,5.0143528 C -120.47682,5.0143528 -118.39068,11.210015 -119.31298,15.343603 C -115.01802,14.915844 -110.4596,15.43178 -110,16.28125 C -110.32087,15.122378 -112.67669,11.569417 -117,12 C -116.13534,8.124761 -120.18657,5.3827023 -121.39912,5.0143528 z"
|
||||
style="opacity:0.87854249;fill:url(#linearGradient6350);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;display:inline" />
|
||||
<path
|
||||
transform="translate(-90,0)"
|
||||
d="M -51.46875,4.5 C -52.051916,4.5 -52.5,4.9480842 -52.5,5.53125 L -52.5,42.46875 C -52.5,43.051915 -52.051914,43.5 -51.46875,43.5 L -20.53125,43.5 C -19.948085,43.5 -19.5,43.051914 -19.5,42.46875 C -19.5,42.46875 -19.5,19 -19.5,17.5 C -19.5,16.220971 -19.980469,13.394531 -21.6875,11.6875 C -23.6875,9.6875 -24.6875,8.6875 -26.6875,6.6875 C -28.394531,4.9804687 -31.220971,4.5 -32.5,4.5 C -34,4.5 -51.46875,4.5 -51.46875,4.5 z"
|
||||
id="path6117"
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient6352);stroke-width:1;stroke-miterlimit:4;display:inline"
|
||||
inkscape:original="M -51.46875 3.5 C -52.589967 3.5 -53.5 4.4100329 -53.5 5.53125 L -53.5 42.46875 C -53.5 43.589967 -52.589966 44.5 -51.46875 44.5 L -20.53125 44.5 C -19.410033 44.5 -18.5 43.589966 -18.5 42.46875 C -18.5 42.46875 -18.5 19 -18.5 17.5 C -18.5 16 -19 13 -21 11 C -23 9 -24 8 -26 6 C -28 4 -31 3.5 -32.5 3.5 C -34 3.5 -51.468749 3.5 -51.46875 3.5 z "
|
||||
inkscape:radius="-0.99436891"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(0,-60)"
|
||||
id="g6119">
|
||||
<g
|
||||
id="g6121"
|
||||
transform="translate(-150.00001,299.99709)">
|
||||
<rect
|
||||
ry="0.46875"
|
||||
rx="0.46875009"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
y="9.0625"
|
||||
x="11.000001"
|
||||
height="0.9375"
|
||||
width="16.771515"
|
||||
id="rect6123"
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<rect
|
||||
ry="0.50145501"
|
||||
rx="0.50145501"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
y="13"
|
||||
x="11.000001"
|
||||
height="1.00291"
|
||||
width="25.00001"
|
||||
id="rect6127"
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<rect
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect6129"
|
||||
width="21"
|
||||
height="0.99999964"
|
||||
x="11.00001"
|
||||
y="15.00291"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
rx="0.49999982"
|
||||
ry="0.49999982" />
|
||||
<rect
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect6131"
|
||||
width="16.771515"
|
||||
height="0.9375"
|
||||
x="11.000001"
|
||||
y="17.0625"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
rx="0.46875009"
|
||||
ry="0.46875" />
|
||||
<rect
|
||||
ry="0.46875"
|
||||
rx="0.46875009"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
y="35.0625"
|
||||
x="11.000001"
|
||||
height="0.9375"
|
||||
width="27"
|
||||
id="rect6133"
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<rect
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect6135"
|
||||
width="27"
|
||||
height="0.9375"
|
||||
x="11.000001"
|
||||
y="37.0625"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
rx="0.46875009"
|
||||
ry="0.46875" />
|
||||
<rect
|
||||
ry="0.46875"
|
||||
rx="0.46875009"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
y="39.0625"
|
||||
x="11.000001"
|
||||
height="0.9375"
|
||||
width="9.999999"
|
||||
id="rect6137"
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
transform="matrix(0.30622,0,0,1,-123.36843,297.99709)"
|
||||
id="g6139">
|
||||
<rect
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect6141"
|
||||
width="26.125004"
|
||||
height="0.9375"
|
||||
x="11.000001"
|
||||
y="23.0625"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
rx="1.5307624"
|
||||
ry="0.46875" />
|
||||
<rect
|
||||
ry="0.46875"
|
||||
rx="1.5307624"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
y="25.0625"
|
||||
x="11.000001"
|
||||
height="0.9375"
|
||||
width="26.125004"
|
||||
id="rect6143"
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<rect
|
||||
ry="0.46875"
|
||||
rx="1.5307624"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
y="27.0625"
|
||||
x="11.000001"
|
||||
height="0.9375"
|
||||
width="26.125004"
|
||||
id="rect6145"
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<rect
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect6147"
|
||||
width="26.125004"
|
||||
height="0.9375"
|
||||
x="11.000001"
|
||||
y="29.0625"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
rx="1.5307624"
|
||||
ry="0.46875" />
|
||||
<rect
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
id="rect6149"
|
||||
width="26.125004"
|
||||
height="0.9375"
|
||||
x="11.000001"
|
||||
y="31.0625"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
rx="1.5307624"
|
||||
ry="0.46875" />
|
||||
<rect
|
||||
ry="0.46875"
|
||||
rx="1.5307624"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
y="33.0625"
|
||||
x="11.000001"
|
||||
height="0.9375"
|
||||
width="12.830279"
|
||||
id="rect6151"
|
||||
style="opacity:0.51098902;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
transform="matrix(0.487331,0,0,0.500001,-192.10773,342.46622)"
|
||||
id="g6153">
|
||||
<rect
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
style="fill:url(#linearGradient6354);fill-opacity:1;stroke:none;stroke-width:0.99999994;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect6155"
|
||||
width="35.027027"
|
||||
height="24"
|
||||
x="108.97698"
|
||||
y="-42.938244"
|
||||
rx="0.89774978"
|
||||
ry="0.8749994" />
|
||||
<path
|
||||
style="fill:url(#radialGradient6356);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 118.56077,-31.886469 C 113.39199,-31.558514 109.27952,-27.231281 109.27952,-21.980219 C 109.27952,-21.777434 109.29873,-21.586244 109.31077,-21.386469 L 129.06077,-21.386469 C 129.07281,-21.586244 129.09202,-21.777434 129.09202,-21.980219 C 129.09202,-27.44474 124.65029,-31.886469 119.18577,-31.886469 C 118.97231,-31.886469 118.77088,-31.8998 118.56077,-31.886469 z"
|
||||
id="path6157"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<rect
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
style="fill:url(#linearGradient6358);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect6159"
|
||||
width="34"
|
||||
height="2"
|
||||
x="109.47698"
|
||||
y="-21.438248"
|
||||
rx="0"
|
||||
ry="0" />
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 132.03256,-20.465974 C 132.03256,-20.465974 131.47698,-23.549329 131.47698,-25.438246 C 131.49239,-26.299945 139.26369,-33.012855 139.28374,-34.01277 L 137.47698,-32.438246 L 136.21182,-35.880188 L 140.47698,-35.438246 L 142.47698,-37.438246 L 140.21182,-35.775333 L 139.43279,-35.95211 L 138.47698,-39.438246 L 138.96312,-36.040498 L 135.43279,-36.217275 L 136.53764,-33.405314 L 133.47698,-36.438246 L 136.71442,-32.216782 C 136.7145,-31.275254 130.33354,-25.52758 130.3444,-26.518649 L 127.69795,-30.068227 L 127.47698,-34.866817 L 129.47698,-35.438246 L 131.22913,-39.758867 L 128.91941,-35.765552 L 127.11625,-35.847256 L 123.07986,-39.256265 L 117.53764,-41.377586 L 122.27247,-38.775333 L 118.47698,-38.438246 L 123.47698,-38.438246 L 126.47698,-35.438246 L 126.83053,-30.256265 L 121.47698,-35.438246 L 123.72828,-32.731139 L 120.47698,-30.438246 L 124.04841,-32.438246 L 129.69795,-25.322129 L 129.47698,-20.465974 L 132.03256,-20.465974 z"
|
||||
id="path6161"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccc" />
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
id="path6163"
|
||||
d="M 118.84471,-27.204578 C 116.02417,-27.025617 113.78005,-24.664299 113.78005,-21.798859 C 113.78005,-21.688202 113.79053,-21.583872 113.7971,-21.474857 L 124.57443,-21.474857 C 124.58101,-21.583872 124.59149,-21.688202 124.59149,-21.798859 C 124.59149,-24.780781 122.16769,-27.204578 119.18577,-27.204578 C 119.06929,-27.204578 118.95937,-27.211853 118.84471,-27.204578 z"
|
||||
style="fill:#fef39e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
<path
|
||||
style="fill:#fffbd7;fill-opacity:0.55681817;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 118.92566,-25.906273 C 116.77457,-25.769787 115.06309,-23.968924 115.06309,-21.783592 C 115.06309,-21.6992 115.07108,-21.619632 115.07609,-21.536492 L 123.29544,-21.536492 C 123.30045,-21.619632 123.30845,-21.6992 123.30845,-21.783592 C 123.30845,-24.057759 121.45994,-25.906273 119.18577,-25.906273 C 119.09693,-25.906273 119.01311,-25.91182 118.92566,-25.906273 z"
|
||||
id="path6165"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
</g>
|
||||
</g>
|
||||
<rect
|
||||
ry="0.46875"
|
||||
rx="0.46875009"
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
y="249.05959"
|
||||
x="-139"
|
||||
height="0.9375"
|
||||
width="16.771515"
|
||||
id="rect6823"
|
||||
style="opacity:1;fill:#8d8d8d;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.99999982px;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="Text"
|
||||
style="display:inline" />
|
||||
</svg>
|
After Width: | Height: | Size: 33 KiB |
1
views/bootstrap/images/office-drawing.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48"><defs><linearGradient id="a" gradientTransform="matrix(.922 0 0 .919 57.6 1.33)" gradientUnits="userSpaceOnUse" x1="-18.59" x2="-28.79" y1="11.1" y2="14.1"><stop offset="0" stop-opacity=".41"/><stop offset="1" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="33.2" x2="35.3" y1="11.57" y2="9.69"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientTransform="matrix(1.101 0 0 1.143 -2.51 -6.21)" gradientUnits="userSpaceOnUse" x2="0" y1="47" y2="40"><stop offset="0" stop-opacity="0"/><stop offset=".5"/><stop offset="1" stop-opacity="0"/></linearGradient><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="12.5" x2="-2.75" y1="49" y2="-22.5"><stop offset="0" stop-color="#888a85"/><stop offset="1" stop-color="#babdb6"/></linearGradient><radialGradient id="e" cx="4" cy="5.3" gradientTransform="matrix(1.886 0 0 1.177 -3.54 -4.24)" gradientUnits="userSpaceOnUse" r="17" xlink:href="#b"/><radialGradient id="f" cx="4.99" cy="43.5" gradientTransform="matrix(2.207 0 0 1.6 28.36 -26.1)" gradientUnits="userSpaceOnUse" r="2.5"><stop offset="0"/><stop offset="1" stop-opacity="0"/></radialGradient><radialGradient id="g" cx="-26.3" cy="10.1" gradientTransform="matrix(.407 -.28 .751 1.093 34.82 -8.44)" gradientUnits="userSpaceOnUse" r="7"><stop offset="0" stop-color="#fff"/><stop offset=".48" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></radialGradient><radialGradient id="h" cx="-30.2" cy="35.4" gradientTransform="matrix(3.996 0 0 1.935 150.6 -31.2)" gradientUnits="userSpaceOnUse" r="18"><stop offset="0" stop-color="#f6f6f5"/><stop offset="1" stop-color="#d3d7cf"/></radialGradient><path id="i" d="m11.5 10.5c0 1.33-2 1.33-2 0s2-1.33 2 0zm18 0c0 1.33-2 1.33-2 0s2-1.33 2 0zm-9 28c0 1.33-2 1.33-2 0s2-1.33 2 0zm16-6c0 1.33-2 1.33-2 0s2-1.33 2 0zm-16 5.62 14-5.28m-23-22.35h16" fill="#fff"/><path id="j" d="m18.5 9.5h2v2h-2zm8 25h2v2h-2z"/></defs><g id="k" opacity=".3"><path id="l" d="m39.34 39.5h5.51v8h-5.51z" fill="url(#f)"/><path d="m8.5 39.5h30.84v8h-30.84z" fill="url(#c)"/><use transform="matrix(-1 0 0 1 47.84 0)" xlink:href="#l"/></g><use transform="matrix(.908 0 0 .625 2.21 16.31)" xlink:href="#k"/><path d="m27.5 3.5c3.88.07 6.5 2.5 9 5s4.61 5.25 5 9v24.98c0 1.12-.9 2.02-2.02 2.02h-30.95c-1.12 0-2.02-.9-2.02-2.02v-36.95c0-1.12.9-2.02 2-2.02z" fill="url(#h)" stroke="url(#d)"/><path d="m27.5 4c-1.39 0-.04.5 1.34 1.13 1.39.63 4.97 3.22 4.16 6.88 4.32-.43 6.68 3.12 7 4.28s1 2.61 1 1.22c.03-3.81-2.85-6.43-4.84-8.66-2-2.22-5-4.37-8.66-4.84z" fill="url(#g)"/><path d="m28.6 5c .92 0 3 6.2 2.09 10.33 4.3-.43 8.85.09 9.31.94-.32-1.16-2.68-4.71-7-4.28.86-3.88-3.19-6.62-4.4-6.99z" fill="url(#a)" opacity=".88"/><path d="m7 5.53v36.94c0 .86.67 1.53 1.53 1.53h30.94c.86 0 1.53-.67 1.53-1.53v-24.97c0-1.39-.49-4.3-2.34-6.16l-5-5c-1.86-1.86-4.76-2.34-6.16-2.34h-18.97c-.86 0-1.53.67-1.53 1.53z" fill="url(#e)" opacity=".68"/><g opacity=".9"><path d="m28.5 36.5c12.38-4.38-26.3-25-8-25 18.1 0-4.26 29.34 8 25z" opacity=".06" stroke="#000"/><path d="m27.5 35.5c12.38-4.38-26.3-25-8-25 18.1 0-4.26 29.34 8 25z" fill="#fcaf3e" stroke="#ce5c00"/><g stroke="#fff"><use stroke-width="2" xlink:href="#i"/><use stroke-width="2" xlink:href="#j"/><path d="m16.63 14.92c2.37 3.08 5.9 6.08 8.31 8.66 1.06-4.58 1.49-8.1-.09-10.16-1.68-2.59-8.51-2.23-9.29-1.07-.3496.6521.7375 2.136 1.07 2.57zm12.32 18.17c.34-1.59-1.863-4.26-3.033-5.58-.7262 2.598-1.811 6.581-1.032 7.28.4371.4703 3.79-.1813 4.065-1.7z" fill="none" opacity=".53"/></g><use stroke="#729fcf" xlink:href="#i"/><use fill="#729fcf" stroke="#3465a4" xlink:href="#j"/></g><path d="m7.5 42.47c0 .58.45 1.03 1.03 1.03h30.94c.58 0 1.03-.45 1.03-1.03v-24.97c0-1.28-.48-4.11-2.19-5.81l-5-5c-1.71-1.71-4.53-2.19-5.81-2.19h-18.97c-.58 0-1.03.45-1.03 1.03z" fill="none" stroke="url(#b)"/></svg>
|
After Width: | Height: | Size: 3.9 KiB |
686
views/bootstrap/images/office-presentation.svg
Normal file
|
@ -0,0 +1,686 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
id="svg2160"
|
||||
sodipodi:version="0.32"
|
||||
inkscape:version="0.46"
|
||||
sodipodi:docbase="/home/hbons/Desktop/Ubuntu Visual Refresh: Discovery"
|
||||
sodipodi:docname="x-office-presentation.svg"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
||||
version="1.0">
|
||||
<defs
|
||||
id="defs2162">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3926">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3928" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3930" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3832">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3834" />
|
||||
<stop
|
||||
id="stop3840"
|
||||
offset="0.67355675"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3836" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3448">
|
||||
<stop
|
||||
style="stop-color:#f57900;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3450" />
|
||||
<stop
|
||||
style="stop-color:#fcaf3e;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3452" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3359">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3361" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3363" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3269">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3271" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3273" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3253">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3255" />
|
||||
<stop
|
||||
style="stop-color:#d3d7cf;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3257" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3363">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3365" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3367" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3860">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3862" />
|
||||
<stop
|
||||
style="stop-color:#555753;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3864" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3844">
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3846" />
|
||||
<stop
|
||||
style="stop-color:#eeeeec;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3848" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3780">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3782" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3784" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3688"
|
||||
inkscape:collect="always">
|
||||
<stop
|
||||
id="stop3690"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3692"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient3702">
|
||||
<stop
|
||||
id="stop3704"
|
||||
offset="0"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0.5"
|
||||
id="stop3710" />
|
||||
<stop
|
||||
id="stop3706"
|
||||
offset="1"
|
||||
style="stop-color:black;stop-opacity:0;" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient3095"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient3097"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient3099"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3269"
|
||||
id="linearGradient3966"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-1.2704924,0,0,-1.2704925,-50.516555,48.821273)"
|
||||
x1="14.548253"
|
||||
y1="23.127861"
|
||||
x2="15.581317"
|
||||
y2="26.866568" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3844"
|
||||
id="linearGradient3977"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.972973,0,0,1,-88.837838,-1)"
|
||||
x1="15.470238"
|
||||
y1="-4.5"
|
||||
x2="43"
|
||||
y2="-4.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3860"
|
||||
id="linearGradient3980"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-90,2)"
|
||||
x1="26.357143"
|
||||
y1="2.5714288"
|
||||
x2="29"
|
||||
y2="10.571428" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3832"
|
||||
id="radialGradient3985"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.041059,0,0,0.815965,2.689362,5.4046471)"
|
||||
cx="-65.5"
|
||||
cy="18.5"
|
||||
fx="-65.5"
|
||||
fy="18.5"
|
||||
r="18.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3780"
|
||||
id="linearGradient3990"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="20.134581"
|
||||
y1="29.676609"
|
||||
x2="13.635802"
|
||||
y2="17.022938" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3448"
|
||||
id="linearGradient3992"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="17.696638"
|
||||
y1="29.965809"
|
||||
x2="14.499061"
|
||||
y2="20.717426" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3926"
|
||||
id="radialGradient4157"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,0.3157895,0,29.421053)"
|
||||
cx="24.5"
|
||||
cy="43"
|
||||
fx="24.5"
|
||||
fy="43"
|
||||
r="9.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3253"
|
||||
id="linearGradient4159"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(90,-1)"
|
||||
x1="-25.94198"
|
||||
y1="42.406563"
|
||||
x2="-25.94198"
|
||||
y2="45" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3359"
|
||||
id="linearGradient4161"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-89,2)"
|
||||
x1="24.5"
|
||||
y1="34"
|
||||
x2="24.5"
|
||||
y2="35" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3363"
|
||||
id="linearGradient4163"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-69,-4)"
|
||||
x1="24.857141"
|
||||
y1="39.5"
|
||||
x2="25.5"
|
||||
y2="40" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1"
|
||||
inkscape:cx="-166.8402"
|
||||
inkscape:cy="39.459165"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:grid-bbox="true"
|
||||
inkscape:document-units="px"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="847"
|
||||
inkscape:window-x="36"
|
||||
inkscape:window-y="188"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true"
|
||||
inkscape:snap-nodes="true"
|
||||
inkscape:snap-bbox="false"
|
||||
objecttolerance="10000"
|
||||
gridtolerance="10000"
|
||||
guidetolerance="10000"
|
||||
showborder="false"
|
||||
inkscape:showpageshadow="false">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid2561"
|
||||
empspacing="2"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
spacingx="0.5px"
|
||||
spacingy="0.5px" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata2165">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Lapo Calamandrei</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:title>Presentation</dc:title>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Based of Hylke Bons Work</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
<cc:license
|
||||
rdf:resource="http://www.gnu.org/licenses/lgpl.html" />
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>presentation</rdf:li>
|
||||
<rdf:li>slides</rdf:li>
|
||||
<rdf:li>powerpoint</rdf:li>
|
||||
<rdf:li>spreadsheet</rdf:li>
|
||||
<rdf:li>impress</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer">
|
||||
<g
|
||||
transform="matrix(1.1999995,0,0,0.7777773,-4.8,11.944489)"
|
||||
inkscape:label="Shadow"
|
||||
id="g3075"
|
||||
style="opacity:0.13963964;display:inline">
|
||||
<g
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)"
|
||||
style="opacity:0.4"
|
||||
id="g3077">
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient3095);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3079"
|
||||
width="5"
|
||||
height="7"
|
||||
x="38"
|
||||
y="40" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient3097);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3081"
|
||||
width="5"
|
||||
height="7"
|
||||
x="-10"
|
||||
y="-47"
|
||||
transform="scale(-1,-1)" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient3099);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3083"
|
||||
width="28"
|
||||
height="7.0000005"
|
||||
x="10"
|
||||
y="40" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g4142"
|
||||
transform="translate(90,0)">
|
||||
<path
|
||||
transform="matrix(1,0,0,0.8333338,-89,7.1666452)"
|
||||
d="M 34,43 A 9.5,3 0 1 1 15,43 A 9.5,3 0 1 1 34,43 z"
|
||||
sodipodi:ry="3"
|
||||
sodipodi:rx="9.5"
|
||||
sodipodi:cy="43"
|
||||
sodipodi:cx="24.5"
|
||||
id="path3924"
|
||||
style="opacity:0.2837838;fill:url(#radialGradient4157);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<rect
|
||||
transform="scale(-1,1)"
|
||||
ry="1.0000001"
|
||||
rx="1.0000001"
|
||||
y="34.5"
|
||||
x="63.5"
|
||||
height="9"
|
||||
width="2.0000002"
|
||||
id="rect2466"
|
||||
style="fill:url(#linearGradient4159);fill-opacity:1;stroke:#888a85;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#999999;stroke-width:0.99999994;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect2472"
|
||||
width="2.0000002"
|
||||
height="12.888889"
|
||||
x="63.5"
|
||||
y="27.611113"
|
||||
rx="1.0000001"
|
||||
ry="1.432099"
|
||||
transform="scale(-1,1)" />
|
||||
<g
|
||||
transform="translate(-21,4)"
|
||||
id="g3125">
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:#d3d7cf;fill-rule:evenodd;stroke:#888a85;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M -49.5,39.5 L -43.5,36"
|
||||
id="path3107" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:#d3d7cf;fill-rule:evenodd;stroke:#888a85;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M -37.5,39.5 L -43.5,36"
|
||||
id="path3109" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:#d3d7cf;fill-rule:evenodd;stroke:#d3d7cf;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M -49.5,39.5 L -43.5,36"
|
||||
id="path3111" />
|
||||
<path
|
||||
sodipodi:nodetypes="cc"
|
||||
style="fill:#d3d7cf;fill-rule:evenodd;stroke:#d3d7cf;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M -37.5,39.5 L -43.5,36"
|
||||
id="path3113" />
|
||||
<rect
|
||||
style="fill:#d3d7cf;fill-opacity:1;stroke:#777974;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect3115"
|
||||
width="4"
|
||||
height="3.0000002"
|
||||
x="-45.5"
|
||||
y="34.5"
|
||||
rx="1.5000001"
|
||||
ry="1.5000001" />
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.58113861;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path3119"
|
||||
sodipodi:cx="20.178572"
|
||||
sodipodi:cy="44.67857"
|
||||
sodipodi:rx="1.25"
|
||||
sodipodi:ry="0.96428573"
|
||||
d="M 21.428572,44.67857 A 1.25,0.96428573 0 1 1 18.928572,44.67857 A 1.25,0.96428573 0 1 1 21.428572,44.67857 z"
|
||||
transform="matrix(0.5767767,0,0,0.7476738,-61.13853,6.0950058)" />
|
||||
<rect
|
||||
style="fill:url(#linearGradient4163);fill-opacity:1;stroke:none"
|
||||
id="rect3121"
|
||||
width="3"
|
||||
height="2"
|
||||
x="-45"
|
||||
y="35"
|
||||
rx="1.1250001"
|
||||
ry="1" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.58113861;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path4170"
|
||||
sodipodi:cx="20.178572"
|
||||
sodipodi:cy="44.67857"
|
||||
sodipodi:rx="1.25"
|
||||
sodipodi:ry="0.96428573"
|
||||
d="M 21.428572,44.67857 A 1.25,0.96428573 0 1 1 18.928572,44.67857 A 1.25,0.96428573 0 1 1 21.428572,44.67857 z"
|
||||
transform="matrix(0.5767767,0,0,0.7476738,19.86147,10.095006)" />
|
||||
<g
|
||||
id="g4173"
|
||||
transform="translate(90,0)">
|
||||
<rect
|
||||
ry="1.0573044"
|
||||
rx="1.0195435"
|
||||
y="6.5"
|
||||
x="-84.5"
|
||||
height="28"
|
||||
width="38"
|
||||
id="rect2484"
|
||||
style="fill:url(#radialGradient3985);fill-opacity:1;stroke:#babdb6;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccccccc"
|
||||
id="path2488"
|
||||
d="M -82.59375,7.4999999 C -83.123321,7.4999999 -83.5,7.7440554 -83.5,8.0871703 L -83.5,32.829314 C -83.5,33.172429 -83.123321,33.416484 -82.59375,33.416484 L -48.40625,33.416484 C -47.87668,33.416484 -47.5,33.172428 -47.5,32.829314 L -47.5,8.0871703 C -47.5,7.7440557 -47.876682,7.4999999 -48.40625,7.4999999 L -82.59375,7.4999999 z"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1" />
|
||||
<rect
|
||||
y="7"
|
||||
x="-85"
|
||||
height="2"
|
||||
width="39"
|
||||
id="rect2490"
|
||||
style="opacity:0.11711713;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="1.5"
|
||||
rx="1.5833334"
|
||||
y="4.5"
|
||||
x="-85.5"
|
||||
height="3"
|
||||
width="40"
|
||||
id="rect2492"
|
||||
style="fill:#babdb6;fill-opacity:1;stroke:url(#linearGradient3980);stroke-width:0.99999982;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.48648649"
|
||||
transform="scale(1,-1)"
|
||||
y="-6"
|
||||
x="-84"
|
||||
height="1"
|
||||
width="37"
|
||||
id="rect2494"
|
||||
style="fill:url(#linearGradient3977);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0.99999988"
|
||||
rx="0.99999988"
|
||||
transform="matrix(7.3523151e-8,1,1,-1.8380792e-8,0,0)"
|
||||
y="-85"
|
||||
x="5.0000005"
|
||||
height="1.9999998"
|
||||
width="1.9999999"
|
||||
id="rect2496"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
ry="1.0000001"
|
||||
rx="0.99999988"
|
||||
transform="matrix(7.3523171e-8,1,1,-1.8380787e-8,0,0)"
|
||||
y="-48"
|
||||
x="5.000001"
|
||||
height="2.0000002"
|
||||
width="1.9999999"
|
||||
id="rect2498"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<g
|
||||
transform="translate(-88,0)"
|
||||
style="opacity:0.12108112"
|
||||
id="g2502">
|
||||
<path
|
||||
sodipodi:type="arc"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.837834;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path2504"
|
||||
sodipodi:cx="16.515995"
|
||||
sodipodi:cy="22.291618"
|
||||
sodipodi:rx="4.6972094"
|
||||
sodipodi:ry="4.6972094"
|
||||
d="M 21.213204,22.291618 A 4.6972094,4.6972094 0 1 1 16.554686,17.594568 L 16.515995,22.291618 z"
|
||||
transform="matrix(1.2704924,0,0,1.2704925,-5.483446,-4.8213349)"
|
||||
sodipodi:start="0"
|
||||
sodipodi:end="4.7206261" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.06400001;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1"
|
||||
d="M 17.527085,15.532232 C 21.071259,15.234682 23.763908,17.873475 23.467706,21.527025 L 17.499999,21.49994 L 17.527085,15.532232 z"
|
||||
id="path2506"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
</g>
|
||||
<path
|
||||
sodipodi:end="4.7206261"
|
||||
sodipodi:start="0"
|
||||
transform="matrix(1.2704924,0,0,1.2704925,-94.483446,-5.8213349)"
|
||||
d="M 21.213204,22.291618 A 4.6972094,4.6972094 0 1 1 16.554686,17.594568 L 16.515995,22.291618 z"
|
||||
sodipodi:ry="4.6972094"
|
||||
sodipodi:rx="4.6972094"
|
||||
sodipodi:cy="22.291618"
|
||||
sodipodi:cx="16.515995"
|
||||
id="path2508"
|
||||
style="fill:url(#linearGradient3992);fill-opacity:1;stroke:#af4e00;stroke-width:0.62967712;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
sodipodi:type="arc" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2510"
|
||||
d="M -71.472915,14.532232 C -67.928741,14.234682 -65.236092,16.873475 -65.532294,20.527025 L -71.500001,20.49994 L -71.472915,14.532232 z"
|
||||
style="fill:#729fcf;fill-opacity:1;stroke:#3465a4;stroke-width:0.80000001;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<path
|
||||
transform="matrix(1.2704924,0,0,1.2704925,-94.483446,-5.8213349)"
|
||||
d="M 15.75,18.5625 C 13.977674,18.92812 12.625,20.405564 12.625,22.28125 C 12.625,24.430908 14.381592,26.187501 16.53125,26.1875 C 18.396407,26.1875 19.873194,24.851202 20.25,23.09375 L 16.53125,23.09375 C 16.315632,23.094172 16.108724,23.008705 15.956259,22.856241 C 15.803795,22.703776 15.718328,22.496868 15.71875,22.28125 L 15.75,18.5625 z"
|
||||
id="path2512"
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient3990);stroke-width:0.83783406;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
inkscape:original="M 16.53125 17.59375 C 13.93839 17.59375 11.8125 19.68839 11.8125 22.28125 C 11.8125 24.87411 13.93839 27.000001 16.53125 27 C 19.12411 27 21.218751 24.87411 21.21875 22.28125 L 16.53125 22.28125 L 16.5625 17.59375 C 16.548904 17.593638 16.544847 17.593749 16.53125 17.59375 z "
|
||||
inkscape:radius="-0.81083226"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
<path
|
||||
sodipodi:nodetypes="cccc"
|
||||
id="path2514"
|
||||
d="M -66.536286,19.497742 C -66.692364,17.568713 -68.253498,15.778125 -70.447405,15.561265 L -70.487107,19.480837 L -66.536286,19.497742 z"
|
||||
style="opacity:0.3918919;fill:none;fill-opacity:1;stroke:url(#linearGradient3966);stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.3888889"
|
||||
y="23"
|
||||
x="-59"
|
||||
height="1"
|
||||
width="7"
|
||||
id="rect2516"
|
||||
style="fill:#babdb6;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="21"
|
||||
x="-59"
|
||||
height="1"
|
||||
width="9"
|
||||
id="rect2518"
|
||||
style="fill:#babdb6;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="19"
|
||||
x="-59"
|
||||
height="1"
|
||||
width="9"
|
||||
id="rect2520"
|
||||
style="fill:#555753;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.44444445"
|
||||
y="14"
|
||||
x="-61"
|
||||
height="1"
|
||||
width="8"
|
||||
id="rect2522"
|
||||
style="fill:#babdb6;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
ry="0.5"
|
||||
rx="0.5"
|
||||
y="12"
|
||||
x="-61"
|
||||
height="1"
|
||||
width="9"
|
||||
id="rect2524"
|
||||
style="fill:#555753;fill-opacity:1;stroke:none" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
id="path2526"
|
||||
d="M -67,28.5 L -58.461826,28.510369 L -58.528544,25.488699"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#d3d7cf;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccc"
|
||||
id="path2528"
|
||||
d="M -65.5,14.5 L -65.5,12.5 L -62.5,12.5"
|
||||
style="fill:none;fill-rule:evenodd;stroke:#d3d7cf;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<rect
|
||||
style="opacity:0.11711713;fill:url(#linearGradient4161);fill-opacity:1;stroke:none;stroke-width:0.80000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
||||
id="rect2482"
|
||||
width="3"
|
||||
height="2"
|
||||
x="-66"
|
||||
y="35" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 24 KiB |
972
views/bootstrap/images/office-spreadsheet.svg
Normal file
|
@ -0,0 +1,972 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="240.00000"
|
||||
inkscape:export-xdpi="240.00000"
|
||||
inkscape:export-filename="/home/jimmac/gfx/novell/pdes/trunk/docs/BIGmime-text.png"
|
||||
sodipodi:docname="x-office-spreadsheet.svg"
|
||||
sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/mimetypes"
|
||||
inkscape:version="0.45+0.46pre0"
|
||||
sodipodi:version="0.32"
|
||||
id="svg249"
|
||||
height="48.000000px"
|
||||
width="48.000000px"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient5635">
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5637" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop5639" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5635"
|
||||
id="linearGradient5641"
|
||||
x1="79.5"
|
||||
y1="388.22964"
|
||||
x2="79.5"
|
||||
y2="396.5032"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient5659">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop5661" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="1"
|
||||
id="stop5663" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient5659"
|
||||
id="linearGradient5665"
|
||||
x1="74.875"
|
||||
y1="389.75"
|
||||
x2="74.875"
|
||||
y2="382.375"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
id="linearGradient6333">
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6335" />
|
||||
<stop
|
||||
style="stop-color:#204a87;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6337" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6333"
|
||||
id="linearGradient5211"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1,0)"
|
||||
x1="81.5"
|
||||
y1="368.5"
|
||||
x2="83"
|
||||
y2="368" />
|
||||
<linearGradient
|
||||
id="linearGradient6341">
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop6343" />
|
||||
<stop
|
||||
style="stop-color:#729fcf;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop6345" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient6341"
|
||||
id="linearGradient5209"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-1,0)"
|
||||
x1="81.5"
|
||||
y1="370"
|
||||
x2="83.5"
|
||||
y2="369.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3520">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.41295547"
|
||||
offset="0"
|
||||
id="stop3522" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3524" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3520"
|
||||
id="linearGradient6453"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.9223058,0,0,0.9185751,-92.44737,361.3257)"
|
||||
x1="-18.588562"
|
||||
y1="11.052948"
|
||||
x2="-28.789402"
|
||||
y2="14.069944" />
|
||||
<linearGradient
|
||||
id="linearGradient3671">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3673" />
|
||||
<stop
|
||||
id="stop3691"
|
||||
offset="0.47533694"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3675" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3671"
|
||||
id="radialGradient6457"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.4073362,-0.2798276,0.7510293,1.0932492,-115.18484,351.56213)"
|
||||
cx="-26.305403"
|
||||
cy="10.108011"
|
||||
fx="-26.305403"
|
||||
fy="10.108011"
|
||||
r="7.0421038" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3656">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3658" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3660" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3656"
|
||||
id="linearGradient6448"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="-26.753757"
|
||||
y1="11.566258"
|
||||
x2="-24.75"
|
||||
y2="9.687501" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3741">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3743" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3745" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3741"
|
||||
id="radialGradient6442"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.8860258,0,0,1.1764706,-3.5441033,-4.2352941)"
|
||||
cx="4"
|
||||
cy="5.2999997"
|
||||
fx="4"
|
||||
fy="5.2999997"
|
||||
r="17" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3613">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3615" />
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3617" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3613"
|
||||
id="linearGradient6464"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-90,360)"
|
||||
x1="-47.5"
|
||||
y1="49.020683"
|
||||
x2="-62.75"
|
||||
y2="-22.502075" />
|
||||
<linearGradient
|
||||
id="linearGradient3683">
|
||||
<stop
|
||||
id="stop3685"
|
||||
offset="0"
|
||||
style="stop-color:#f6f6f5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3689"
|
||||
offset="1"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3683"
|
||||
id="radialGradient6462"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(3.9957492,0,0,1.9350367,0.62141,328.83258)"
|
||||
cx="-30.249996"
|
||||
cy="35.357208"
|
||||
fx="-30.249996"
|
||||
fy="35.357208"
|
||||
r="18.000002" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient6436"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient6434"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient6432"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient6430"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient6428"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient6426"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
id="linearGradient3702">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3704" />
|
||||
<stop
|
||||
id="stop3710"
|
||||
offset="0.5"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3688">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3690" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3692" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="117"
|
||||
inkscape:window-x="373"
|
||||
inkscape:window-height="872"
|
||||
inkscape:window-width="929"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer5"
|
||||
inkscape:cy="26.078999"
|
||||
inkscape:cx="74.548046"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.25490196"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Office Spreadsheet</dc:title>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>spreadsheet</rdf:li>
|
||||
<rdf:li>excel</rdf:li>
|
||||
<rdf:li>gnumeric</rdf:li>
|
||||
<rdf:li>opencalc</rdf:li>
|
||||
<rdf:li>office</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Lapo Calamandrei</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source></dc:source>
|
||||
<dc:date></dc:date>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier></dc:identifier>
|
||||
<dc:relation></dc:relation>
|
||||
<dc:language></dc:language>
|
||||
<dc:coverage></dc:coverage>
|
||||
<dc:description></dc:description>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer6"
|
||||
inkscape:label="Shadow" />
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="Text"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g13370"
|
||||
transform="translate(150,-360)">
|
||||
<rect
|
||||
y="360"
|
||||
x="-150"
|
||||
height="48"
|
||||
width="48"
|
||||
id="rect5141"
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline" />
|
||||
<g
|
||||
transform="matrix(1.0464281,0,0,0.8888889,-151.18571,365.72224)"
|
||||
inkscape:label="Shadow"
|
||||
id="g5145"
|
||||
style="opacity:0.65587045;display:inline">
|
||||
<g
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)"
|
||||
style="opacity:0.4"
|
||||
id="g5147">
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient6426);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5149"
|
||||
width="5"
|
||||
height="7"
|
||||
x="38"
|
||||
y="40" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient6428);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5152"
|
||||
width="5"
|
||||
height="7"
|
||||
x="-10"
|
||||
y="-47"
|
||||
transform="scale(-1,-1)" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient6430);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5154"
|
||||
width="28"
|
||||
height="7.0000005"
|
||||
x="10"
|
||||
y="40" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.9548466,0,0,0.5555562,-148.98776,379.88887)"
|
||||
inkscape:label="Shadow"
|
||||
id="g5156"
|
||||
style="display:inline">
|
||||
<g
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)"
|
||||
style="opacity:0.4"
|
||||
id="g5158">
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient6432);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5160"
|
||||
width="5"
|
||||
height="7"
|
||||
x="38"
|
||||
y="40" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient6434);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5162"
|
||||
width="5"
|
||||
height="7"
|
||||
x="-10"
|
||||
y="-47"
|
||||
transform="scale(-1,-1)" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient6436);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect5164"
|
||||
width="28"
|
||||
height="7.0000005"
|
||||
x="10"
|
||||
y="40" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="ccsccccccc"
|
||||
id="path5166"
|
||||
d="M -141.47614,363.5 C -141.47614,363.5 -124,363.5 -122.5,363.5 C -118.62295,363.57294 -116,366 -113.5,368.5 C -111,371 -108.89232,373.75263 -108.5,377.5 C -108.5,379 -108.5,402.47614 -108.5,402.47614 C -108.5,403.59736 -109.40264,404.5 -110.52385,404.5 L -141.47614,404.5 C -142.59736,404.5 -143.5,403.59736 -143.5,402.47614 L -143.5,365.52386 C -143.5,364.40264 -142.59736,363.5 -141.47614,363.5 z"
|
||||
style="fill:url(#radialGradient6462);fill-opacity:1;stroke:url(#linearGradient6464);stroke-width:1;stroke-miterlimit:4;display:inline" />
|
||||
<path
|
||||
transform="translate(-150,360)"
|
||||
d="M 8.53125,4 C 7.6730803,4 7,4.6730802 7,5.53125 L 7,42.46875 C 7,43.32692 7.6730802,44 8.53125,44 L 39.46875,44 C 40.326919,44 41,43.326918 41,42.46875 C 41,42.46875 41,19 41,17.5 C 41,16.10803 40.513021,13.200521 38.65625,11.34375 C 36.65625,9.34375 35.65625,8.34375 33.65625,6.34375 C 31.799479,4.4869792 28.89197,4 27.5,4 C 26,4 8.53125,4 8.53125,4 z"
|
||||
id="path5168"
|
||||
style="opacity:0.68016196;fill:url(#radialGradient6442);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;display:inline"
|
||||
inkscape:original="M 8.53125 3.5 C 7.410033 3.5 6.5 4.4100329 6.5 5.53125 L 6.5 42.46875 C 6.5 43.589967 7.4100329 44.5 8.53125 44.5 L 39.46875 44.5 C 40.589967 44.5 41.5 43.589966 41.5 42.46875 C 41.5 42.46875 41.5 19 41.5 17.5 C 41.5 16 41 13 39 11 C 37 9 36 8 34 6 C 32 4 29 3.5 27.5 3.5 C 26 3.5 8.5312499 3.5 8.53125 3.5 z "
|
||||
inkscape:radius="-0.4861359"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
<path
|
||||
transform="translate(-90,360)"
|
||||
d="M -51.46875,4.5 C -52.051916,4.5 -52.5,4.9480842 -52.5,5.53125 L -52.5,42.46875 C -52.5,43.051915 -52.051914,43.5 -51.46875,43.5 L -20.53125,43.5 C -19.948085,43.5 -19.5,43.051914 -19.5,42.46875 C -19.5,42.46875 -19.5,19 -19.5,17.5 C -19.5,16.220971 -19.980469,13.394531 -21.6875,11.6875 C -23.6875,9.6875 -24.6875,8.6875 -26.6875,6.6875 C -28.394531,4.9804687 -31.220971,4.5 -32.5,4.5 C -34,4.5 -51.46875,4.5 -51.46875,4.5 z"
|
||||
id="path5174"
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient6448);stroke-width:1;stroke-miterlimit:4;display:inline"
|
||||
inkscape:original="M -51.46875 3.5 C -52.589967 3.5 -53.5 4.4100329 -53.5 5.53125 L -53.5 42.46875 C -53.5 43.589967 -52.589966 44.5 -51.46875 44.5 L -20.53125 44.5 C -19.410033 44.5 -18.5 43.589966 -18.5 42.46875 C -18.5 42.46875 -18.5 19 -18.5 17.5 C -18.5 16 -19 13 -21 11 C -23 9 -24 8 -26 6 C -28 4 -31 3.5 -32.5 3.5 C -34 3.5 -51.468749 3.5 -51.46875 3.5 z "
|
||||
inkscape:radius="-0.99436891"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccczc"
|
||||
id="path5170"
|
||||
d="M -122.5,364 C -123.88889,364 -122.54207,364.49709 -121.15625,365.125 C -119.77043,365.75291 -116.18337,368.34005 -117,372 C -112.67669,371.56942 -110.32087,375.12238 -110,376.28125 C -109.67913,377.44012 -109,378.88889 -109,377.5 C -108.97167,373.69442 -111.84543,371.0683 -113.84375,368.84375 C -115.84207,366.6192 -118.84621,364.47676 -122.5,364 z"
|
||||
style="fill:url(#radialGradient6457);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;display:inline" />
|
||||
<path
|
||||
sodipodi:nodetypes="ccccc"
|
||||
id="path5172"
|
||||
d="M -121.39912,365.01435 C -120.47682,365.01435 -118.39068,371.21001 -119.31298,375.3436 C -115.01802,374.91584 -110.4596,375.43178 -110,376.28125 C -110.32087,375.12238 -112.67669,371.56942 -117,372 C -116.13534,368.12476 -120.18657,365.3827 -121.39912,365.01435 z"
|
||||
style="opacity:0.87854249;fill:url(#linearGradient6453);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;display:inline" />
|
||||
<g
|
||||
transform="translate(-200,-50)"
|
||||
style="opacity:0.6"
|
||||
id="g5141">
|
||||
<g
|
||||
id="g6349"
|
||||
style="opacity:1"
|
||||
transform="translate(0,50)">
|
||||
<rect
|
||||
y="371.5"
|
||||
x="78.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6240"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="371.5"
|
||||
x="63.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5184"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="371.5"
|
||||
x="73.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5186"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="374.5"
|
||||
x="78.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6242"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="371.5"
|
||||
x="68.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5188"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="374.5"
|
||||
x="63.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5192"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="371.5"
|
||||
x="59.5"
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect5182"
|
||||
style="opacity:1;fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="374.5"
|
||||
x="73.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5194"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="374.5"
|
||||
x="68.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5196"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="377.5"
|
||||
x="63.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5200"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="374.5"
|
||||
x="59.5"
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect5190"
|
||||
style="opacity:1;fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="377.5"
|
||||
x="73.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5202"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="380.5"
|
||||
x="63.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6258"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="377.5"
|
||||
x="68.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5204"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="368.5"
|
||||
x="59.5"
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect5208"
|
||||
style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="377.5"
|
||||
x="59.5"
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect5198"
|
||||
style="opacity:1;fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="368.5"
|
||||
x="63.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5210"
|
||||
style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="368.5"
|
||||
x="73.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5212"
|
||||
style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="368.5"
|
||||
x="68.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect5214"
|
||||
style="opacity:1;fill:#729fcf;fill-opacity:1;stroke:#204a87;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="377.5"
|
||||
x="78.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6244"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="368.5"
|
||||
x="78.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6246"
|
||||
style="opacity:1;fill:url(#linearGradient5209);fill-opacity:1;stroke:url(#linearGradient5211);stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="374.5"
|
||||
x="83.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6250"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="377.5"
|
||||
x="83.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6252"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="380.5"
|
||||
x="73.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6260"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="380.5"
|
||||
x="68.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6262"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="380.5"
|
||||
x="78.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6264"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="380.5"
|
||||
x="83.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6266"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="383.5"
|
||||
x="63.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6270"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="380.5"
|
||||
x="59.5"
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect6256"
|
||||
style="opacity:1;fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="383.5"
|
||||
x="73.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6272"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="383.5"
|
||||
x="68.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6274"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="383.5"
|
||||
x="78.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6276"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="383.5"
|
||||
x="83.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6278"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="386.5"
|
||||
x="63.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6282"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="383.5"
|
||||
x="59.5"
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect6268"
|
||||
style="opacity:1;fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="386.5"
|
||||
x="73.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6284"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="386.5"
|
||||
x="68.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6286"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="386.5"
|
||||
x="78.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6288"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="386.5"
|
||||
x="83.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6290"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="389.5"
|
||||
x="63.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6294"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="386.5"
|
||||
x="59.5"
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect6280"
|
||||
style="opacity:1;fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="389.5"
|
||||
x="73.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6296"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="389.5"
|
||||
x="68.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6298"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="389.5"
|
||||
x="78.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6300"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="389.5"
|
||||
x="83.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6302"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="392.5"
|
||||
x="63.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6306"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="389.5"
|
||||
x="59.5"
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect6292"
|
||||
style="opacity:1;fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="392.5"
|
||||
x="73.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6308"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="392.5"
|
||||
x="68.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6310"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="392.5"
|
||||
x="78.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6312"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="392.5"
|
||||
x="83.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6314"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="395.5"
|
||||
x="63.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6320"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="392.5"
|
||||
x="59.5"
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect6304"
|
||||
style="opacity:1;fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="395.5"
|
||||
x="59.5"
|
||||
height="3"
|
||||
width="4"
|
||||
id="rect6316"
|
||||
style="opacity:1;fill:#babdb6;fill-opacity:1;stroke:#555753;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="395.5"
|
||||
x="73.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6322"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="395.5"
|
||||
x="68.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6324"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="395.5"
|
||||
x="78.500008"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6329"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
<rect
|
||||
y="395.5"
|
||||
x="83.5"
|
||||
height="3"
|
||||
width="5"
|
||||
id="rect6331"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#888a85;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
|
||||
</g>
|
||||
<g
|
||||
id="g5133"
|
||||
transform="translate(0,50)">
|
||||
<rect
|
||||
y="380.5"
|
||||
x="68.5"
|
||||
height="18"
|
||||
width="20"
|
||||
id="rect4351"
|
||||
style="opacity:1;fill:url(#linearGradient5665);fill-opacity:1;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:1, 2;stroke-dashoffset:0.5;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-200,0)"
|
||||
style="opacity:1"
|
||||
id="g5652">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
style="fill:url(#linearGradient5641);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1;display:inline"
|
||||
d="M 70.5,391.5 L 75.5,388.5 L 77.5,390.5 L 81.5,386.5 L 83.5,388.5 L 85.5,386.5 L 86.5,387.5 L 86.5,396.5 L 70.5,396.5 L 70.5,391.5"
|
||||
id="path5633" />
|
||||
<g
|
||||
id="g5569"
|
||||
style="opacity:1">
|
||||
<path
|
||||
id="path5123"
|
||||
d="M 70.5,382.5 L 70.5,396.5 L 86.5,396.5"
|
||||
style="opacity:1;fill:none;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 38 KiB |
356
views/bootstrap/images/package.svg
Normal file
|
@ -0,0 +1,356 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
sodipodi:docname="emblem-package.svg"
|
||||
sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/emblems"
|
||||
inkscape:version="0.45"
|
||||
sodipodi:version="0.32"
|
||||
id="svg2963"
|
||||
height="48px"
|
||||
width="48px"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
id="linearGradient3703">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3705" />
|
||||
<stop
|
||||
id="stop3711"
|
||||
offset="0.5"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3707" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3681">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3683" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3685" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4532">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4534" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4536" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4559">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4561" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4563" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4770">
|
||||
<stop
|
||||
style="stop-color:#fcf3e6;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4772" />
|
||||
<stop
|
||||
style="stop-color:#fcf3e6;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4774" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient4760">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop4762" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop4764" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="linearGradient4210">
|
||||
<stop
|
||||
id="stop4212"
|
||||
offset="0.0000000"
|
||||
style="stop-color:#eaba6f;stop-opacity:1.0000000;" />
|
||||
<stop
|
||||
id="stop4214"
|
||||
offset="1.0000000"
|
||||
style="stop-color:#b97a1b;stop-opacity:1.0000000;" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4210"
|
||||
id="linearGradient3845"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,1.329903,0,-8.66441)"
|
||||
x1="24.990499"
|
||||
y1="49.424099"
|
||||
x2="23.451571"
|
||||
y2="14.38251" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4760"
|
||||
id="linearGradient4766"
|
||||
x1="28.0625"
|
||||
y1="19"
|
||||
x2="23.9375"
|
||||
y2="19"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4770"
|
||||
id="linearGradient4776"
|
||||
x1="23.157747"
|
||||
y1="7.1424866"
|
||||
x2="30.007845"
|
||||
y2="11.473516"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4559"
|
||||
id="linearGradient4565"
|
||||
x1="23.451576"
|
||||
y1="30.554907"
|
||||
x2="43.00663"
|
||||
y2="45.934479"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient4532"
|
||||
id="linearGradient4538"
|
||||
x1="35.1875"
|
||||
y1="17.5"
|
||||
x2="26.5625"
|
||||
y2="17.4375"
|
||||
gradientUnits="userSpaceOnUse" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3681"
|
||||
id="radialGradient3718"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.990017,0,0,1.1,32.1147,-5.15)"
|
||||
cx="5"
|
||||
cy="41.5"
|
||||
fx="5"
|
||||
fy="41.5"
|
||||
r="5" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3681"
|
||||
id="radialGradient3720"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.99001,0,0,1.1,-14.88523,-86.15)"
|
||||
cx="5"
|
||||
cy="41.5"
|
||||
fx="5"
|
||||
fy="41.5"
|
||||
r="5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3703"
|
||||
id="linearGradient3722"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="17.554192"
|
||||
y1="46.000275"
|
||||
x2="17.554192"
|
||||
y2="34.999718"
|
||||
gradientTransform="matrix(1.179548,0,0,1,-4.219389,0)" />
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="131"
|
||||
inkscape:window-x="605"
|
||||
inkscape:window-height="891"
|
||||
inkscape:window-width="1051"
|
||||
stroke="#c17d11"
|
||||
fill="#e9b96e"
|
||||
inkscape:showpageshadow="false"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer1"
|
||||
inkscape:cy="6.8455345"
|
||||
inkscape:cx="39.429646"
|
||||
inkscape:zoom="11.313708"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="0.16470588"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff"
|
||||
id="base" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Package</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Jakub Steiner</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source>http://jimmac.musichall.cz/</dc:source>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>package</rdf:li>
|
||||
<rdf:li>archive</rdf:li>
|
||||
<rdf:li>tarball</rdf:li>
|
||||
<rdf:li>tar</rdf:li>
|
||||
<rdf:li>bzip</rdf:li>
|
||||
<rdf:li>gzip</rdf:li>
|
||||
<rdf:li>zip</rdf:li>
|
||||
<rdf:li>arj</rdf:li>
|
||||
<rdf:li>tar</rdf:li>
|
||||
<rdf:li>jar</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/Notice" />
|
||||
<cc:permits
|
||||
rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/ShareAlike" />
|
||||
<cc:requires
|
||||
rdf:resource="http://web.resource.org/cc/SourceCode" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1">
|
||||
<g
|
||||
id="g3713"
|
||||
transform="matrix(1.000001,0,0,0.818184,-3.376531e-6,7.363559)"
|
||||
style="opacity:0.4">
|
||||
<rect
|
||||
y="35"
|
||||
x="37.064781"
|
||||
height="11"
|
||||
width="4.9352183"
|
||||
id="rect1907"
|
||||
style="opacity:1;fill:url(#radialGradient3718);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1" />
|
||||
<rect
|
||||
transform="scale(-1,-1)"
|
||||
y="-46"
|
||||
x="-9.9351835"
|
||||
height="11"
|
||||
width="4.9351835"
|
||||
id="rect3689"
|
||||
style="opacity:1;fill:url(#radialGradient3720);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1" />
|
||||
<rect
|
||||
y="35"
|
||||
x="9.9351835"
|
||||
height="11"
|
||||
width="27.129599"
|
||||
id="rect3693"
|
||||
style="opacity:1;fill:url(#linearGradient3722);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.20000057;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
style="color:#000000;fill:url(#linearGradient3845);fill-opacity:1;fill-rule:nonzero;stroke:#a0670c;stroke-width:1.00000083;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible"
|
||||
d="M 11.76152,11.650434 L 23,10.962934 L 23.03125,11.650434 L 34.76662,11.650434 C 36.109591,11.650434 36.940755,12.155856 37.503255,13.544878 L 39.440755,19.375 L 39.440755,39.993876 C 39.440755,41.320398 38.359591,42.38832 37.01662,42.38832 L 9.8865199,42.38832 C 8.543549,42.38832 7.4623847,41.320398 7.4623847,39.993876 L 7.4623847,19.375 L 9.3373847,13.419878 C 9.7123847,12.343356 10.418549,11.650434 11.76152,11.650434 z "
|
||||
id="rect3115"
|
||||
sodipodi:nodetypes="ccccccccccccc"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
inkscape:r_cy="true"
|
||||
inkscape:r_cx="true"
|
||||
sodipodi:nodetypes="ccccccccccc"
|
||||
id="path3847"
|
||||
d="M 12.492646,12.612816 L 34.058961,12.612816 C 35.31794,12.612816 36.097121,13.086589 36.624441,14.388632 L 38.440766,19.853678 L 38.440766,39.55642 C 38.440766,40.799877 37.80222,41.425927 36.543242,41.425927 L 10.234912,41.425927 C 8.9759334,41.425927 8.4623872,40.737377 8.4623872,39.49392 L 8.4623872,19.853678 L 10.220121,14.27146 C 10.571668,13.262348 11.233667,12.612816 12.492646,12.612816 z "
|
||||
style="color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient4565);stroke-width:1.00000095;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:block;overflow:visible;opacity:0.50549451" />
|
||||
<path
|
||||
style="opacity:0.50549454;color:#000000;fill:#000000;fill-opacity:0.75568181;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 8.375,19.875 L 23.0625,20.25 L 23.024674,15.562832 C 23.024674,15.562832 29.583743,15.406064 29.583743,15.406064 C 29.583743,15.406064 23.018096,15.187889 23.018096,15.187889 L 23,13.125 L 22.710804,13.093243 L 22.625,19 L 8.375,19.875 z "
|
||||
id="path4740"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
sodipodi:nodetypes="ccccccccc" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:#f5ddb8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 8.5,19.8125 L 22.625,19.03125 L 22.75,12.125 L 22.28125,18.53125 L 9.3125,19.4375 L 8.5,19.8125 z "
|
||||
id="path4742"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:#dcbd8e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 22.3125,18.5625 L 8,19.6875 L 9.875,13.4375 C 10.374807,12.447628 11.271594,12.053224 12.4375,12.0625 L 22.78125,11.4375 L 22.3125,18.5625 z "
|
||||
id="path4744"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="opacity:0.42857143;color:#000000;fill:url(#linearGradient4538);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 23,13.125 L 23,19.0625 L 37.6875,19.125 L 35.464619,13.195313 L 23,13.125 z "
|
||||
id="path4746"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:#c68b31;fill-opacity:1;fill-rule:evenodd;stroke:#a0670c;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 39.3125,19.375 L 24.75,12.625 L 24.5,4.9375 L 36.07369,11.644276 C 36.504454,11.959366 36.976863,12.399526 37.25,12.9375 L 39.3125,19.375 z "
|
||||
id="path4748"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true"
|
||||
sodipodi:nodetypes="cccccc" />
|
||||
<path
|
||||
style="opacity:0.23076923;color:#000000;fill:url(#linearGradient4766);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 23,19 L 23,20 L 38,20 L 37.5625,19 L 23,19 z "
|
||||
id="path4758"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
style="opacity:1;color:#000000;fill:url(#linearGradient4776);fill-opacity:1.0;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 25.190679,12.246913 L 25.013902,5.8387581 L 35.001786,11.628195 L 25.500038,6.4132823 L 25.676815,11.937554 L 29.168155,14.103069 L 25.190679,12.246913 z "
|
||||
id="path4768"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
<path
|
||||
style="opacity:0.10989009;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
|
||||
d="M 23,19 L 22.9375,15.5625 L 29.8125,15.4375 L 30.1875,15.6875 L 23.1875,15.75 L 23,19 z "
|
||||
id="path4528"
|
||||
inkscape:r_cx="true"
|
||||
inkscape:r_cy="true" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
454
views/bootstrap/images/text-x-preview.svg
Normal file
|
@ -0,0 +1,454 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="240.00000"
|
||||
inkscape:export-xdpi="240.00000"
|
||||
inkscape:export-filename="/home/jimmac/gfx/novell/pdes/trunk/docs/BIGmime-text.png"
|
||||
sodipodi:docname="text-x-preview.svg"
|
||||
sodipodi:docbase="/home/dobey/Projects/gnome-icon-theme/scalable/mimetypes"
|
||||
inkscape:version="0.45+0.46pre0"
|
||||
sodipodi:version="0.32"
|
||||
id="svg249"
|
||||
height="48.000000px"
|
||||
width="48.000000px"
|
||||
inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs
|
||||
id="defs3">
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3520">
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0.41295547"
|
||||
offset="0"
|
||||
id="stop3522" />
|
||||
<stop
|
||||
style="stop-color:#000000;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3524" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3520"
|
||||
id="linearGradient13786"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.5946829,0,0,0.5927814,-62.327355,-48.725799)"
|
||||
x1="-18.618725"
|
||||
y1="10.211342"
|
||||
x2="-30.558546"
|
||||
y2="12.189651" />
|
||||
<linearGradient
|
||||
id="linearGradient3671">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3673" />
|
||||
<stop
|
||||
id="stop3691"
|
||||
offset="0.47533694"
|
||||
style="stop-color:#ffffff;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3675" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3671"
|
||||
id="radialGradient13784"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.2626416,-0.1805803,0.4842474,0.7055033,-76.987986,-55.026495)"
|
||||
cx="-26.305403"
|
||||
cy="10.108011"
|
||||
fx="-26.305403"
|
||||
fy="10.108011"
|
||||
r="7.0421038" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3656">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3658" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3660" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3656"
|
||||
id="linearGradient13792"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-90,-60)"
|
||||
x1="-24.756966"
|
||||
y1="9.5694666"
|
||||
x2="-22.611664"
|
||||
y2="7.4241643" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3741">
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3743" />
|
||||
<stop
|
||||
style="stop-color:#ffffff;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3745" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3741"
|
||||
id="radialGradient13636"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.8860258,0,0,1.1764706,-3.5441033,-4.2352941)"
|
||||
cx="4"
|
||||
cy="5.2999997"
|
||||
fx="4"
|
||||
fy="5.2999997"
|
||||
r="17" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3613">
|
||||
<stop
|
||||
style="stop-color:#888a85;stop-opacity:1"
|
||||
offset="0"
|
||||
id="stop3615" />
|
||||
<stop
|
||||
style="stop-color:#babdb6;stop-opacity:1"
|
||||
offset="1"
|
||||
id="stop3617" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3613"
|
||||
id="linearGradient13634"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="translate(-90,-60)"
|
||||
x1="-47.5"
|
||||
y1="49.020683"
|
||||
x2="-62.75"
|
||||
y2="-22.502075" />
|
||||
<linearGradient
|
||||
id="linearGradient3683">
|
||||
<stop
|
||||
id="stop3685"
|
||||
offset="0"
|
||||
style="stop-color:#f6f6f5;stop-opacity:1;" />
|
||||
<stop
|
||||
id="stop3689"
|
||||
offset="1"
|
||||
style="stop-color:#d3d7cf;stop-opacity:1" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3683"
|
||||
id="radialGradient13632"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(3.9957492,0,0,1.9350367,0.62141,-91.167422)"
|
||||
cx="-30.249996"
|
||||
cy="35.357208"
|
||||
fx="-30.249996"
|
||||
fy="35.357208"
|
||||
r="18.000002" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient13630"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient13628"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient13626"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3702"
|
||||
id="linearGradient13624"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="25.058096"
|
||||
y1="47.027729"
|
||||
x2="25.058096"
|
||||
y2="39.999443" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient13622"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,-20.01187,-104.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#linearGradient3688"
|
||||
id="radialGradient13620"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(2.003784,0,0,1.4,27.98813,-17.4)"
|
||||
cx="4.9929786"
|
||||
cy="43.5"
|
||||
fx="4.9929786"
|
||||
fy="43.5"
|
||||
r="2.5" />
|
||||
<linearGradient
|
||||
id="linearGradient3702">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="0"
|
||||
id="stop3704" />
|
||||
<stop
|
||||
id="stop3710"
|
||||
offset="0.5"
|
||||
style="stop-color:black;stop-opacity:1;" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3706" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
id="linearGradient3688">
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:1;"
|
||||
offset="0"
|
||||
id="stop3690" />
|
||||
<stop
|
||||
style="stop-color:black;stop-opacity:0;"
|
||||
offset="1"
|
||||
id="stop3692" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
inkscape:window-y="101"
|
||||
inkscape:window-x="222"
|
||||
inkscape:window-height="872"
|
||||
inkscape:window-width="1048"
|
||||
inkscape:document-units="px"
|
||||
inkscape:grid-bbox="true"
|
||||
showgrid="false"
|
||||
inkscape:current-layer="layer5"
|
||||
inkscape:cy="34.779391"
|
||||
inkscape:cx="74.36305"
|
||||
inkscape:zoom="1"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
borderopacity="1"
|
||||
bordercolor="#666"
|
||||
pagecolor="#ffffff"
|
||||
id="base"
|
||||
inkscape:showpageshadow="false" />
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Text Preview</dc:title>
|
||||
<dc:subject>
|
||||
<rdf:Bag>
|
||||
<rdf:li>text</rdf:li>
|
||||
<rdf:li>plaintext</rdf:li>
|
||||
<rdf:li>regular</rdf:li>
|
||||
<rdf:li>document</rdf:li>
|
||||
</rdf:Bag>
|
||||
</dc:subject>
|
||||
<cc:license
|
||||
rdf:resource="" />
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Lapo Calamandrei</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:source></dc:source>
|
||||
<dc:date></dc:date>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:publisher>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:publisher>
|
||||
<dc:identifier></dc:identifier>
|
||||
<dc:relation></dc:relation>
|
||||
<dc:language></dc:language>
|
||||
<dc:coverage></dc:coverage>
|
||||
<dc:description></dc:description>
|
||||
<dc:contributor>
|
||||
<cc:Agent>
|
||||
<dc:title></dc:title>
|
||||
</cc:Agent>
|
||||
</dc:contributor>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer6"
|
||||
inkscape:label="Shadow" />
|
||||
<g
|
||||
style="display:inline"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="Base"
|
||||
id="layer1" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="Text"
|
||||
style="display:inline">
|
||||
<g
|
||||
style="display:inline"
|
||||
id="g13794"
|
||||
transform="translate(150,60)">
|
||||
<g
|
||||
transform="translate(0,-60)"
|
||||
id="g13584"
|
||||
style="display:inline">
|
||||
<rect
|
||||
style="opacity:0;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;display:inline"
|
||||
id="rect13586"
|
||||
width="48"
|
||||
height="48"
|
||||
x="-150"
|
||||
y="0" />
|
||||
<g
|
||||
id="g13588">
|
||||
<g
|
||||
transform="matrix(1.0464281,0,0,0.8888889,-151.18571,5.7222396)"
|
||||
inkscape:label="Shadow"
|
||||
id="g13590"
|
||||
style="opacity:0.65587045;display:inline">
|
||||
<g
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)"
|
||||
style="opacity:0.4"
|
||||
id="g13592">
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient13620);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect13594"
|
||||
width="5"
|
||||
height="7"
|
||||
x="38"
|
||||
y="40" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient13622);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect13596"
|
||||
width="5"
|
||||
height="7"
|
||||
x="-10"
|
||||
y="-47"
|
||||
transform="scale(-1,-1)" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient13624);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect13598"
|
||||
width="28"
|
||||
height="7.0000005"
|
||||
x="10"
|
||||
y="40" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.9548466,0,0,0.5555562,-148.98776,19.888875)"
|
||||
inkscape:label="Shadow"
|
||||
id="g13600"
|
||||
style="display:inline">
|
||||
<g
|
||||
transform="matrix(1.052632,0,0,1.285713,-1.263158,-13.42854)"
|
||||
style="opacity:0.4"
|
||||
id="g13602">
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient13626);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect13604"
|
||||
width="5"
|
||||
height="7"
|
||||
x="38"
|
||||
y="40" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#radialGradient13628);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect13606"
|
||||
width="5"
|
||||
height="7"
|
||||
x="-10"
|
||||
y="-47"
|
||||
transform="scale(-1,-1)" />
|
||||
<rect
|
||||
style="opacity:1;fill:url(#linearGradient13630);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect13608"
|
||||
width="28"
|
||||
height="7.0000005"
|
||||
x="10"
|
||||
y="40" />
|
||||
</g>
|
||||
</g>
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccscc"
|
||||
id="path13610"
|
||||
transform="translate(0,60)"
|
||||
d="M -141.46875,-56.5 C -142.58997,-56.5 -143.5,-55.589966 -143.5,-54.46875 L -143.5,-17.53125 C -143.5,-16.410033 -142.58997,-15.5 -141.46875,-15.5 L -110.53125,-15.5 C -109.41004,-15.5 -108.5,-16.410034 -108.5,-17.53125 C -108.5,-27.447917 -108.5,-37.364583 -108.5,-47.28125 C -108.75793,-49.746835 -110.13765,-51.573876 -111.78125,-53.21875 C -113.42485,-54.863625 -115.16982,-56.452007 -117.71875,-56.5 C -125.63542,-56.5 -133.55208,-56.5 -141.46875,-56.5 z"
|
||||
style="fill:url(#radialGradient13632);fill-opacity:1;stroke:url(#linearGradient13634);stroke-width:1;stroke-miterlimit:4;display:inline" />
|
||||
<path
|
||||
transform="translate(-150,0)"
|
||||
d="M 8.53125,4 C 7.6730803,4 7,4.6730802 7,5.53125 L 7,42.46875 C 7,43.32692 7.6730802,44 8.53125,44 L 39.46875,44 C 40.326919,44 41,43.326918 41,42.46875 C 41,42.46875 41,19 41,17.5 C 41,16.10803 40.513021,13.200521 38.65625,11.34375 C 36.65625,9.34375 35.65625,8.34375 33.65625,6.34375 C 31.799479,4.4869792 28.89197,4 27.5,4 C 26,4 8.53125,4 8.53125,4 z"
|
||||
id="path13612"
|
||||
style="opacity:0.68016196;fill:url(#radialGradient13636);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;display:inline"
|
||||
inkscape:original="M 8.53125 3.5 C 7.410033 3.5 6.5 4.4100329 6.5 5.53125 L 6.5 42.46875 C 6.5 43.589967 7.4100329 44.5 8.53125 44.5 L 39.46875 44.5 C 40.589967 44.5 41.5 43.589966 41.5 42.46875 C 41.5 42.46875 41.5 19 41.5 17.5 C 41.5 16 41 13 39 11 C 37 9 36 8 34 6 C 32 4 29 3.5 27.5 3.5 C 26 3.5 8.5312499 3.5 8.53125 3.5 z "
|
||||
inkscape:radius="-0.4861359"
|
||||
sodipodi:type="inkscape:offset" />
|
||||
<path
|
||||
id="path13618"
|
||||
transform="translate(0,60)"
|
||||
d="M -141.46875,-55.5 C -142.05192,-55.5 -142.5,-55.051916 -142.5,-54.46875 L -142.5,-17.53125 C -142.5,-16.948085 -142.05191,-16.5 -141.46875,-16.5 L -110.53125,-16.5 C -109.94808,-16.5 -109.5,-16.948086 -109.5,-17.53125 C -109.5,-17.53125 -109.5,-41 -109.5,-42.5 C -109.5,-42.606586 -109.52415,-42.779716 -109.53125,-42.90625 C -109.53125,-44.658248 -109.53125,-47.01807 -109.53125,-47.28125 C -109.53125,-48.038629 -109.86422,-49.800936 -110.875,-50.8125 C -112.18988,-52.128398 -112.84137,-52.8091 -114.15625,-54.125 C -115.16704,-55.136562 -116.96195,-55.46875 -117.71875,-55.46875 C -118.06477,-55.46875 -120.11232,-55.46875 -122.09375,-55.46875 C -122.22028,-55.475855 -122.39341,-55.5 -122.5,-55.5 C -124,-55.5 -141.46875,-55.5 -141.46875,-55.5 z"
|
||||
style="fill:none;fill-opacity:1;stroke:url(#linearGradient13792);stroke-width:1;stroke-miterlimit:4;display:inline" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-36.006942,-8.993441)"
|
||||
id="g13771">
|
||||
<path
|
||||
style="fill:url(#radialGradient13784);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;display:inline"
|
||||
d="M -81.704642,-47 C -82.600168,-47 -81.731767,-46.679215 -80.83822,-46.274007 C -79.944674,-45.868798 -78.473456,-44.361864 -79,-42 C -74.43068,-42.707107 -73.851802,-39.822428 -73.644912,-39.074576 C -73.438023,-38.326725 -73.000134,-37.391796 -73.000134,-38.288084 C -72.981865,-40.743928 -74.834804,-42.438635 -76.123279,-43.874197 C -77.411755,-45.309758 -79.348756,-46.692333 -81.704642,-47 z"
|
||||
id="path13676"
|
||||
sodipodi:nodetypes="ccccczc" />
|
||||
<path
|
||||
style="opacity:0.87854249;fill:url(#linearGradient13786);fill-opacity:1;stroke:none;stroke-width:1;stroke-miterlimit:4;display:inline"
|
||||
d="M -80.994821,-46.345411 C -80.400137,-46.345411 -80,-42.5 -80,-40 C -77,-40 -74.29634,-39.548186 -74,-39 C -74.20689,-39.747852 -74.538563,-42.773398 -79,-42 C -78.442483,-44.500797 -80.212993,-46.107705 -80.994821,-46.345411 z"
|
||||
id="path13678"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 17 KiB |
1
views/bootstrap/images/video.svg
Normal file
After Width: | Height: | Size: 33 KiB |
1015
views/bootstrap/images/web.svg
Normal file
After Width: | Height: | Size: 42 KiB |