Merge branch 'seeddms-5.1.x' into seeddms-6.0.x

This commit is contained in:
Uwe Steinmann 2017-03-20 11:54:55 +01:00
commit df27dcf878
57 changed files with 6173 additions and 274 deletions

View File

@ -69,10 +69,14 @@ class SeedDMS_EmailNotify extends SeedDMS_Notify {
* @return false or -1 in case of error, otherwise true * @return false or -1 in case of error, otherwise true
*/ */
function toIndividual($sender, $recipient, $subject, $message, $params=array()) { /* {{{ */ function toIndividual($sender, $recipient, $subject, $message, $params=array()) { /* {{{ */
if ($recipient->isDisabled() || $recipient->getEmail()=="") return 0; if(is_object($recipient) && !strcasecmp(get_class($recipient), $this->_dms->getClassname('user')) && !$recipient->isDisabled() && $recipient->getEmail()!="") {
$to = $recipient->getEmail();
if(!is_object($recipient) || strcasecmp(get_class($recipient), $this->_dms->getClassname('user'))) { $lang = $recipient->getLanguage();
return -1; } elseif(is_string($recipient) && trim($recipient) != "") {
$to = $recipient;
$lang = 'en_GB';
} else {
return false;
} }
if(is_object($sender) && !strcasecmp(get_class($sender), $this->_dms->getClassname('user'))) { if(is_object($sender) && !strcasecmp(get_class($sender), $this->_dms->getClassname('user'))) {
@ -83,14 +87,13 @@ class SeedDMS_EmailNotify extends SeedDMS_Notify {
$from = $this->from_address; $from = $this->from_address;
} }
$lang = $recipient->getLanguage();
$message = getMLText("email_header", array(), "", $lang)."\r\n\r\n".getMLText($message, $params, "", $lang); $message = getMLText("email_header", array(), "", $lang)."\r\n\r\n".getMLText($message, $params, "", $lang);
$message .= "\r\n\r\n".getMLText("email_footer", array(), "", $lang); $message .= "\r\n\r\n".getMLText("email_footer", array(), "", $lang);
$headers = array (); $headers = array ();
$headers['From'] = $from; $headers['From'] = $from;
$headers['To'] = $recipient->getEmail(); $headers['To'] = $to;
$preferences = array("input-charset" => "UTF-8", "output-charset" => "UTF-8"); $preferences = array("input-charset" => "UTF-8", "output-charset" => "UTF-8");
$encoded_subject = iconv_mime_encode("Subject", getMLText($subject, $params, "", $lang), $preferences); $encoded_subject = iconv_mime_encode("Subject", getMLText($subject, $params, "", $lang), $preferences);
$headers['Subject'] = substr($encoded_subject, strlen('Subject: ')); $headers['Subject'] = substr($encoded_subject, strlen('Subject: '));
@ -113,7 +116,7 @@ class SeedDMS_EmailNotify extends SeedDMS_Notify {
$mail = Mail::factory('mail', $mail_params); $mail = Mail::factory('mail', $mail_params);
} }
$result = $mail->send($recipient->getEmail(), $headers, $message); $result = $mail->send($to, $headers, $message);
if (PEAR::isError($result)) { if (PEAR::isError($result)) {
return false; return false;
} else { } else {

View File

@ -188,8 +188,10 @@ class Settings { /* {{{ */
var $_logFileRotation = "d"; var $_logFileRotation = "d";
// Enable file upload by jumploader // Enable file upload by jumploader
var $_enableLargeFileUpload = false; var $_enableLargeFileUpload = false;
// size of partitions for file upload by jumploader // size of partitions for file uploaded by fine-loader
var $_partitionSize = 2000000; var $_partitionSize = 2000000;
// max size of files uploaded by fine-uploader, set to 0 for unlimited
var $_maxUploadSize = 0;
// enable/disable users images // enable/disable users images
var $_enableUserImage = false; var $_enableUserImage = false;
// enable/disable calendar // enable/disable calendar
@ -478,6 +480,7 @@ class Settings { /* {{{ */
$this->_logFileRotation = strval($tab["logFileRotation"]); $this->_logFileRotation = strval($tab["logFileRotation"]);
$this->_enableLargeFileUpload = Settings::boolVal($tab["enableLargeFileUpload"]); $this->_enableLargeFileUpload = Settings::boolVal($tab["enableLargeFileUpload"]);
$this->_partitionSize = strval($tab["partitionSize"]); $this->_partitionSize = strval($tab["partitionSize"]);
$this->_maxUploadSize = strval($tab["maxUploadSize"]);
// XML Path: /configuration/system/authentication // XML Path: /configuration/system/authentication
$node = $xml->xpath('/configuration/system/authentication'); $node = $xml->xpath('/configuration/system/authentication');
@ -796,6 +799,7 @@ class Settings { /* {{{ */
$this->setXMLAttributValue($node, "logFileRotation", $this->_logFileRotation); $this->setXMLAttributValue($node, "logFileRotation", $this->_logFileRotation);
$this->setXMLAttributValue($node, "enableLargeFileUpload", $this->_enableLargeFileUpload); $this->setXMLAttributValue($node, "enableLargeFileUpload", $this->_enableLargeFileUpload);
$this->setXMLAttributValue($node, "partitionSize", $this->_partitionSize); $this->setXMLAttributValue($node, "partitionSize", $this->_partitionSize);
$this->setXMLAttributValue($node, "maxUploadSize", $this->_maxUploadSize);
// XML Path: /configuration/system/authentication // XML Path: /configuration/system/authentication
$node = $this->getXMLNode($xml, '/configuration/system', 'authentication'); $node = $this->getXMLNode($xml, '/configuration/system', 'authentication');

View File

@ -106,8 +106,9 @@ class UI extends UI_Default {
$view->setParam('enableclipboard', $settings->_enableClipboard); $view->setParam('enableclipboard', $settings->_enableClipboard);
$view->setParam('enablemenutasks', $settings->_enableMenuTasks); $view->setParam('enablemenutasks', $settings->_enableMenuTasks);
$view->setParam('workflowmode', $settings->_workflowMode); $view->setParam('workflowmode', $settings->_workflowMode);
$view->setParam('partitionsize', $settings->_partitionSize);
$view->setParam('checkoutdir', $settings->_checkOutDir); $view->setParam('checkoutdir', $settings->_checkOutDir);
$view->setParam('partitionsize', (int) $settings->_partitionSize);
$view->setParam('maxuploadsize', (int) $settings->_maxUploadSize);
$view->setParam('showmissingtranslations', $settings->_showMissingTranslations); $view->setParam('showmissingtranslations', $settings->_showMissingTranslations);
$view->setParam('defaultsearchmethod', $settings->_defaultSearchMethod); $view->setParam('defaultsearchmethod', $settings->_defaultSearchMethod);
$view->setParam('cachedir', $settings->_cacheDir); $view->setParam('cachedir', $settings->_cacheDir);

View File

@ -378,6 +378,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'صلاحيات موروثة', 'does_not_inherit_access_msg' => 'صلاحيات موروثة',
'download' => 'تنزيل', 'download' => 'تنزيل',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'إصلاح كل المستندات والمجلدات.', 'do_object_repair' => 'إصلاح كل المستندات والمجلدات.',
'do_object_setchecksum' => 'تحديد فحص اخطاء', 'do_object_setchecksum' => 'تحديد فحص اخطاء',
'do_object_setfilesize' => 'تحديد حجم الملف', 'do_object_setfilesize' => 'تحديد حجم الملف',
@ -445,7 +447,16 @@ URL: [url]',
'event_details' => 'تفاصيل الحدث', 'event_details' => 'تفاصيل الحدث',
'exclude_items' => '', 'exclude_items' => '',
'expired' => 'انتهى صلاحيته', 'expired' => 'انتهى صلاحيته',
'expired_at_date' => '',
'expires' => 'تنتهى صلاحيته', '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' => 'تم تغيير تاريخ الصلاحية',
'expiry_changed_email_body' => 'تم تغيير تاريخ الصلاحية 'expiry_changed_email_body' => 'تم تغيير تاريخ الصلاحية
المستند: [name] المستند: [name]
@ -528,6 +539,7 @@ URL: [url]',
'group_review_summary' => 'ملخص مراجعة المجموعة', 'group_review_summary' => 'ملخص مراجعة المجموعة',
'guest_login' => 'الدخول كضيف', 'guest_login' => 'الدخول كضيف',
'guest_login_disabled' => 'دخول ضيف غير متاح.', 'guest_login_disabled' => 'دخول ضيف غير متاح.',
'hash' => '',
'help' => 'المساعدة', 'help' => 'المساعدة',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -805,6 +817,7 @@ URL: [url]',
'personal_default_keywords' => 'قوائم الكلمات البحثية الشخصية', 'personal_default_keywords' => 'قوائم الكلمات البحثية الشخصية',
'pl_PL' => 'ﺎﻠﺑﻮﻠﻧﺪﻳﺓ', 'pl_PL' => 'ﺎﻠﺑﻮﻠﻧﺪﻳﺓ',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -999,6 +1012,7 @@ URL: [url]',
'select_one' => 'اختر واحد', 'select_one' => 'اختر واحد',
'select_users' => 'اضغط لاختيار المستخدم', 'select_users' => 'اضغط لاختيار المستخدم',
'select_workflow' => 'اختر مسار العمل', 'select_workflow' => 'اختر مسار العمل',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'سبتمبر', 'september' => 'سبتمبر',
'sequence' => 'تتابع', 'sequence' => 'تتابع',
@ -1200,6 +1214,8 @@ URL: [url]',
'settings_maxRecursiveCount_desc' => '', 'settings_maxRecursiveCount_desc' => '',
'settings_maxSizeForFullText' => '', 'settings_maxSizeForFullText' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => '', 'settings_more_settings' => '',
'settings_notfound' => '', 'settings_notfound' => '',
'settings_Notification' => '', 'settings_Notification' => '',
@ -1340,6 +1356,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => '', 'splash_edit_user' => '',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => '', 'splash_folder_edited' => '',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => '', 'splash_invalid_folder_id' => '',
@ -1350,6 +1368,7 @@ URL: [url]',
'splash_removed_from_clipboard' => '', 'splash_removed_from_clipboard' => '',
'splash_rm_attribute' => '', 'splash_rm_attribute' => '',
'splash_rm_document' => 'تم حذف المستند', 'splash_rm_document' => 'تم حذف المستند',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'تم حذف المجلد', 'splash_rm_folder' => 'تم حذف المجلد',
'splash_rm_group' => '', 'splash_rm_group' => '',
'splash_rm_group_member' => '', 'splash_rm_group_member' => '',
@ -1357,6 +1376,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => '', 'splash_rm_user' => '',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => '', 'splash_settings_saved' => '',
'splash_substituted_user' => '', 'splash_substituted_user' => '',
'splash_switched_back_user' => '', 'splash_switched_back_user' => '',
@ -1506,6 +1526,7 @@ URL: [url]',
'use_comment_of_document' => 'ﺎﺴﺘﺧﺪﻣ ﺎﻠﺘﻌﻠﻴﻗﺎﺗ ﻞﻟﻮﺜﻴﻗﺓ', 'use_comment_of_document' => 'ﺎﺴﺘﺧﺪﻣ ﺎﻠﺘﻌﻠﻴﻗﺎﺗ ﻞﻟﻮﺜﻴﻗﺓ',
'use_default_categories' => 'استخدم اقسام سابقة التعريف', 'use_default_categories' => 'استخدم اقسام سابقة التعريف',
'use_default_keywords' => 'استخدام كلمات بحثية معدة مسبقا', 'use_default_keywords' => 'استخدام كلمات بحثية معدة مسبقا',
'valid_till' => '',
'version' => 'اصدار', 'version' => 'اصدار',
'versioning_file_creation' => 'انشاء ملف الاصدارات', 'versioning_file_creation' => 'انشاء ملف الاصدارات',
'versioning_file_creation_warning' => 'من خلال تلك العملية يمكنك انشاء ملف يحتوى معلومات الاصدار لمجمل مجلد النظام. بعد الانشاء كل ملف سيتم حفظه داخل المجلد الخاص به', 'versioning_file_creation_warning' => 'من خلال تلك العملية يمكنك انشاء ملف يحتوى معلومات الاصدار لمجمل مجلد النظام. بعد الانشاء كل ملف سيتم حفظه داخل المجلد الخاص به',

View File

@ -333,6 +333,8 @@ $text = array(
'does_not_inherit_access_msg' => 'Наследване нивото на достъп', 'does_not_inherit_access_msg' => 'Наследване нивото на достъп',
'download' => 'Изтегли', 'download' => 'Изтегли',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Поправи всички папки и документи', 'do_object_repair' => 'Поправи всички папки и документи',
'do_object_setchecksum' => 'Установи контролна сума', 'do_object_setchecksum' => 'Установи контролна сума',
'do_object_setfilesize' => 'Установи размер на файла', 'do_object_setfilesize' => 'Установи размер на файла',
@ -400,7 +402,16 @@ $text = array(
'event_details' => 'Детайли за събитието', 'event_details' => 'Детайли за събитието',
'exclude_items' => '', 'exclude_items' => '',
'expired' => 'Изтекъл', 'expired' => 'Изтекъл',
'expired_at_date' => '',
'expires' => 'Изтича', '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' => 'Датата на изтичане променена',
'expiry_changed_email_body' => '', 'expiry_changed_email_body' => '',
'expiry_changed_email_subject' => '', 'expiry_changed_email_subject' => '',
@ -459,6 +470,7 @@ $text = array(
'group_review_summary' => 'Сводка по рецензирането на групи', 'group_review_summary' => 'Сводка по рецензирането на групи',
'guest_login' => 'Влез като гост', 'guest_login' => 'Влез като гост',
'guest_login_disabled' => 'Входът като гост изключен', 'guest_login_disabled' => 'Входът като гост изключен',
'hash' => '',
'help' => 'Помощ', 'help' => 'Помощ',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -706,6 +718,7 @@ $text = array(
'personal_default_keywords' => 'Личен списък с ключови думи', 'personal_default_keywords' => 'Личен списък с ключови думи',
'pl_PL' => '', 'pl_PL' => '',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -864,6 +877,7 @@ $text = array(
'select_one' => 'Избери един', 'select_one' => 'Избери един',
'select_users' => 'Кликни да избереш потребители', 'select_users' => 'Кликни да избереш потребители',
'select_workflow' => 'Избери процес', 'select_workflow' => 'Избери процес',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'септември', 'september' => 'септември',
'sequence' => 'Последователност', 'sequence' => 'Последователност',
@ -1065,6 +1079,8 @@ $text = array(
'settings_maxRecursiveCount_desc' => '', 'settings_maxRecursiveCount_desc' => '',
'settings_maxSizeForFullText' => '', 'settings_maxSizeForFullText' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Още настройки. Логин по подразбиране: admin/admin', 'settings_more_settings' => 'Още настройки. Логин по подразбиране: admin/admin',
'settings_notfound' => 'Не е намерено', 'settings_notfound' => 'Не е намерено',
'settings_Notification' => 'Настройка за известяване', 'settings_Notification' => 'Настройка за известяване',
@ -1205,6 +1221,8 @@ $text = array(
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => '', 'splash_edit_user' => '',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => '', 'splash_folder_edited' => '',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => '', 'splash_invalid_folder_id' => '',
@ -1215,6 +1233,7 @@ $text = array(
'splash_removed_from_clipboard' => '', 'splash_removed_from_clipboard' => '',
'splash_rm_attribute' => '', 'splash_rm_attribute' => '',
'splash_rm_document' => '', 'splash_rm_document' => '',
'splash_rm_download_link' => '',
'splash_rm_folder' => '', 'splash_rm_folder' => '',
'splash_rm_group' => '', 'splash_rm_group' => '',
'splash_rm_group_member' => '', 'splash_rm_group_member' => '',
@ -1222,6 +1241,7 @@ $text = array(
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => '', 'splash_rm_user' => '',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => '', 'splash_settings_saved' => '',
'splash_substituted_user' => '', 'splash_substituted_user' => '',
'splash_switched_back_user' => '', 'splash_switched_back_user' => '',
@ -1362,6 +1382,7 @@ $text = array(
'use_comment_of_document' => '', 'use_comment_of_document' => '',
'use_default_categories' => 'Исползвай предопределени категории', 'use_default_categories' => 'Исползвай предопределени категории',
'use_default_keywords' => 'Исползовай предопределенни ключови думи', 'use_default_keywords' => 'Исползовай предопределенни ключови думи',
'valid_till' => '',
'version' => 'Версия', 'version' => 'Версия',
'versioning_file_creation' => 'Създаване на файл с версии', 'versioning_file_creation' => 'Създаване на файл с версии',
'versioning_file_creation_warning' => 'Тази операция ще създаде файл с версия за всяка папка. След създаване файлът ще бъде съхранен в каталога на документите.', 'versioning_file_creation_warning' => 'Тази операция ще създаде файл с версия за всяка папка. След създаване файлът ще бъде съхранен в каталога на документите.',

View File

@ -19,7 +19,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
// Translators: Admin (710) // Translators: Admin (722)
$text = array( $text = array(
'2_factor_auth' => '', '2_factor_auth' => '',
@ -143,7 +143,7 @@ URL: [url]',
'attrdef_type_string' => '', 'attrdef_type_string' => '',
'attrdef_type_url' => '', 'attrdef_type_url' => '',
'attrdef_valueset' => '', 'attrdef_valueset' => '',
'attributes' => '', 'attributes' => 'Atributs',
'attribute_changed_email_body' => '', 'attribute_changed_email_body' => '',
'attribute_changed_email_subject' => '', 'attribute_changed_email_subject' => '',
'attribute_count' => '', 'attribute_count' => '',
@ -188,7 +188,7 @@ URL: [url]',
'categories_loading' => '', 'categories_loading' => '',
'category' => 'Category', 'category' => 'Category',
'category_exists' => '', 'category_exists' => '',
'category_filter' => '', 'category_filter' => 'Només categories',
'category_info' => '', 'category_info' => '',
'category_in_use' => '', 'category_in_use' => '',
'category_noname' => '', 'category_noname' => '',
@ -228,7 +228,7 @@ URL: [url]',
'choose_workflow_action' => '', 'choose_workflow_action' => '',
'choose_workflow_state' => '', 'choose_workflow_state' => '',
'class_name' => '', 'class_name' => '',
'clear_cache' => '', 'clear_cache' => 'Neteja memòria cau',
'clear_clipboard' => '', 'clear_clipboard' => '',
'clear_password' => '', 'clear_password' => '',
'clipboard' => 'Portapapers', 'clipboard' => 'Portapapers',
@ -294,7 +294,7 @@ URL: [url]',
'documents_in_process' => 'Documents en procés', 'documents_in_process' => 'Documents en procés',
'documents_locked' => '', 'documents_locked' => '',
'documents_locked_by_you' => 'Documents bloquejats per vostè', '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_approve' => 'Documents en espera d\'aprovació d\'usuaris',
'documents_to_process' => '', 'documents_to_process' => '',
'documents_to_receipt' => '', 'documents_to_receipt' => '',
@ -338,6 +338,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'heretar l\'accés', 'does_not_inherit_access_msg' => 'heretar l\'accés',
'download' => 'Descarregar', 'download' => 'Descarregar',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => '', 'do_object_repair' => '',
'do_object_setchecksum' => '', 'do_object_setchecksum' => '',
'do_object_setfilesize' => '', 'do_object_setfilesize' => '',
@ -405,12 +407,21 @@ URL: [url]',
'event_details' => 'Detalls de l\'event', 'event_details' => 'Detalls de l\'event',
'exclude_items' => '', 'exclude_items' => '',
'expired' => 'Caducat', 'expired' => 'Caducat',
'expired_at_date' => '',
'expires' => 'Caduca', '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' => 'Data de caducitat modificada',
'expiry_changed_email_body' => '', 'expiry_changed_email_body' => '',
'expiry_changed_email_subject' => '', 'expiry_changed_email_subject' => '',
'export' => '', 'export' => '',
'extension_manager' => '', 'extension_manager' => 'Gestiona les Extensions',
'february' => 'Febrer', 'february' => 'Febrer',
'file' => 'Fitxer', 'file' => 'Fitxer',
'files' => 'Fitxers', 'files' => 'Fitxers',
@ -419,7 +430,7 @@ URL: [url]',
'files_loading' => '', 'files_loading' => '',
'file_size' => 'Mida', 'file_size' => 'Mida',
'filter_for_documents' => '', 'filter_for_documents' => '',
'filter_for_folders' => '', 'filter_for_folders' => 'Filtre adicional per les carpetes',
'folder' => 'Carpeta', 'folder' => 'Carpeta',
'folders' => 'Carpetes', 'folders' => 'Carpetes',
'folders_and_documents_statistic' => 'Vista general de continguts', 'folders_and_documents_statistic' => 'Vista general de continguts',
@ -464,6 +475,7 @@ URL: [url]',
'group_review_summary' => 'Resum del grup revisor', 'group_review_summary' => 'Resum del grup revisor',
'guest_login' => 'Accés com a invitat', 'guest_login' => 'Accés com a invitat',
'guest_login_disabled' => 'El compte d\'invitat està deshabilitat.', 'guest_login_disabled' => 'El compte d\'invitat està deshabilitat.',
'hash' => '',
'help' => 'Ajuda', 'help' => 'Ajuda',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -595,7 +607,7 @@ URL: [url]',
'may' => 'Maig', 'may' => 'Maig',
'mimetype' => '', 'mimetype' => '',
'minutes' => '', 'minutes' => '',
'misc' => '', 'misc' => 'Miscelànea',
'missing_checksum' => '', 'missing_checksum' => '',
'missing_file' => '', 'missing_file' => '',
'missing_filesize' => '', 'missing_filesize' => '',
@ -711,6 +723,7 @@ URL: [url]',
'personal_default_keywords' => 'Mots clau personals', 'personal_default_keywords' => 'Mots clau personals',
'pl_PL' => 'Polonès', 'pl_PL' => 'Polonès',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -836,21 +849,21 @@ URL: [url]',
'search_in' => 'Buscar a', 'search_in' => 'Buscar a',
'search_mode_and' => 'tots els mots', 'search_mode_and' => 'tots els mots',
'search_mode_documents' => '', 'search_mode_documents' => '',
'search_mode_folders' => '', 'search_mode_folders' => 'Només carpetes',
'search_mode_or' => 'si més no, un mot', 'search_mode_or' => 'si més no, un mot',
'search_no_results' => 'No hi ha documents que coincideixn amb la seva cerca', 'search_no_results' => 'No hi ha documents que coincideixn amb la seva cerca',
'search_query' => 'Cercar', 'search_query' => 'Cercar',
'search_report' => 'Trobats [count] documents', 'search_report' => 'Trobats [count] documents',
'search_report_fulltext' => '', 'search_report_fulltext' => '',
'search_resultmode' => '', 'search_resultmode' => 'Resultats',
'search_resultmode_both' => '', 'search_resultmode_both' => 'Documets i carpetes',
'search_results' => 'Resultats de la cerca', 'search_results' => 'Resultats de la cerca',
'search_results_access_filtered' => 'Els resultats de la cerca podrien incloure continguts amb l\'accés denegat.', 'search_results_access_filtered' => 'Els resultats de la cerca podrien incloure continguts amb l\'accés denegat.',
'search_time' => 'Temps transcorregut: [time] seg.', 'search_time' => 'Temps transcorregut: [time] seg.',
'seconds' => '', 'seconds' => '',
'selection' => 'Selecció', 'selection' => 'Selecció',
'select_attrdefgrp_show' => '', 'select_attrdefgrp_show' => '',
'select_category' => '', 'select_category' => 'Prem per seleccionar la categoria',
'select_groups' => '', 'select_groups' => '',
'select_grp_approvers' => '', 'select_grp_approvers' => '',
'select_grp_ind_approvers' => '', 'select_grp_ind_approvers' => '',
@ -867,8 +880,9 @@ URL: [url]',
'select_ind_reviewers' => '', 'select_ind_reviewers' => '',
'select_ind_revisors' => '', 'select_ind_revisors' => '',
'select_one' => 'Seleccionar un', 'select_one' => 'Seleccionar un',
'select_users' => '', 'select_users' => 'Prem per seleccionar els usuaris',
'select_workflow' => '', 'select_workflow' => '',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'Setembre', 'september' => 'Setembre',
'sequence' => 'Seqüència', 'sequence' => 'Seqüència',
@ -1070,6 +1084,8 @@ URL: [url]',
'settings_maxRecursiveCount_desc' => '', 'settings_maxRecursiveCount_desc' => '',
'settings_maxSizeForFullText' => '', 'settings_maxSizeForFullText' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => '', 'settings_more_settings' => '',
'settings_notfound' => '', 'settings_notfound' => '',
'settings_Notification' => '', 'settings_Notification' => '',
@ -1210,6 +1226,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => '', 'splash_edit_user' => '',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => '', 'splash_folder_edited' => '',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => '', 'splash_invalid_folder_id' => '',
@ -1220,6 +1238,7 @@ URL: [url]',
'splash_removed_from_clipboard' => '', 'splash_removed_from_clipboard' => '',
'splash_rm_attribute' => '', 'splash_rm_attribute' => '',
'splash_rm_document' => 'Document esborrat', 'splash_rm_document' => 'Document esborrat',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Carpeta esborrada', 'splash_rm_folder' => 'Carpeta esborrada',
'splash_rm_group' => '', 'splash_rm_group' => '',
'splash_rm_group_member' => '', 'splash_rm_group_member' => '',
@ -1227,6 +1246,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => '', 'splash_rm_user' => '',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => '', 'splash_settings_saved' => '',
'splash_substituted_user' => '', 'splash_substituted_user' => '',
'splash_switched_back_user' => '', 'splash_switched_back_user' => '',
@ -1367,6 +1387,7 @@ URL: [url]',
'use_comment_of_document' => '', 'use_comment_of_document' => '',
'use_default_categories' => 'Use predefined categories', 'use_default_categories' => 'Use predefined categories',
'use_default_keywords' => 'Utilitzar els mots clau per omisió', 'use_default_keywords' => 'Utilitzar els mots clau per omisió',
'valid_till' => '',
'version' => 'Versió', 'version' => 'Versió',
'versioning_file_creation' => 'Creació de fitxer de versions', '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.', '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.',

View File

@ -19,7 +19,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
// Translators: Admin (719), kreml (455) // Translators: Admin (720), kreml (455)
$text = array( $text = array(
'2_factor_auth' => '', '2_factor_auth' => '',
@ -305,7 +305,7 @@ URL: [url]',
'docs_in_reception_no_access' => '', 'docs_in_reception_no_access' => '',
'docs_in_revision_no_access' => '', 'docs_in_revision_no_access' => '',
'document' => 'Dokument', 'document' => 'Dokument',
'documentcontent' => '', 'documentcontent' => 'Obsah dokumentu',
'documents' => 'Dokumenty', 'documents' => 'Dokumenty',
'documents_checked_out_by_you' => '', 'documents_checked_out_by_you' => '',
'documents_in_process' => 'Zpracovávané dokumenty', 'documents_in_process' => 'Zpracovávané dokumenty',
@ -385,6 +385,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Zdědit přístup', 'does_not_inherit_access_msg' => 'Zdědit přístup',
'download' => 'Stáhnout', 'download' => 'Stáhnout',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Opravit všechny složky a dokumenty.', 'do_object_repair' => 'Opravit všechny složky a dokumenty.',
'do_object_setchecksum' => 'Nastavit kontrolní součet', 'do_object_setchecksum' => 'Nastavit kontrolní součet',
'do_object_setfilesize' => 'Nastavit velikost souboru', 'do_object_setfilesize' => 'Nastavit velikost souboru',
@ -452,7 +454,16 @@ URL: [url]',
'event_details' => 'Údaje akce', 'event_details' => 'Údaje akce',
'exclude_items' => '', 'exclude_items' => '',
'expired' => 'Platnost vypršela', 'expired' => 'Platnost vypršela',
'expired_at_date' => '',
'expires' => 'Platnost vyprší', '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' => 'Datum expirace změněno',
'expiry_changed_email_body' => 'Datum ukončení platnosti změněn 'expiry_changed_email_body' => 'Datum ukončení platnosti změněn
Dokument: [name] Dokument: [name]
@ -535,6 +546,7 @@ URL: [url]',
'group_review_summary' => 'Souhrn revizí skupiny', 'group_review_summary' => 'Souhrn revizí skupiny',
'guest_login' => 'Přihlásit se jako host', 'guest_login' => 'Přihlásit se jako host',
'guest_login_disabled' => 'Přihlášení jako host je vypnuté.', 'guest_login_disabled' => 'Přihlášení jako host je vypnuté.',
'hash' => '',
'help' => 'Pomoc', 'help' => 'Pomoc',
'home_folder' => 'Domácí složka', 'home_folder' => 'Domácí složka',
'hook_name' => '', 'hook_name' => '',
@ -816,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', 'personal_default_keywords' => 'Osobní klíčová slova',
'pl_PL' => 'Polština', 'pl_PL' => 'Polština',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -1008,6 +1021,7 @@ URL: [url]',
'select_one' => 'Vyberte jeden', 'select_one' => 'Vyberte jeden',
'select_users' => 'Kliknutím vyberte uživatele', 'select_users' => 'Kliknutím vyberte uživatele',
'select_workflow' => 'Vyberte postup práce', 'select_workflow' => 'Vyberte postup práce',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'Září', 'september' => 'Září',
'sequence' => 'Posloupnost', 'sequence' => 'Posloupnost',
@ -1209,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_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' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Configure more settings. Default login: admin/admin', 'settings_more_settings' => 'Configure more settings. Default login: admin/admin',
'settings_notfound' => '', 'settings_notfound' => '',
'settings_Notification' => 'Nastavení upozornění', 'settings_Notification' => 'Nastavení upozornění',
@ -1349,6 +1365,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Uživatel uložen', 'splash_edit_user' => 'Uživatel uložen',
'splash_error_add_to_transmittal' => '', '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_folder_edited' => 'Změny složky uloženy',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'Neplatné ID složky', 'splash_invalid_folder_id' => 'Neplatné ID složky',
@ -1359,6 +1377,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Odstraněno ze schránky', 'splash_removed_from_clipboard' => 'Odstraněno ze schránky',
'splash_rm_attribute' => 'Atribut odstraněn', 'splash_rm_attribute' => 'Atribut odstraněn',
'splash_rm_document' => 'Dokument odstraněn', 'splash_rm_document' => 'Dokument odstraněn',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Složka smazána', 'splash_rm_folder' => 'Složka smazána',
'splash_rm_group' => 'Skupina odstraněna', 'splash_rm_group' => 'Skupina odstraněna',
'splash_rm_group_member' => 'Člen skupiny odstraněn', 'splash_rm_group_member' => 'Člen skupiny odstraněn',
@ -1366,6 +1385,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Uživatel odstraněn', 'splash_rm_user' => 'Uživatel odstraněn',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Nastavení uloženo', 'splash_settings_saved' => 'Nastavení uloženo',
'splash_substituted_user' => 'Zaměněný uživatel', 'splash_substituted_user' => 'Zaměněný uživatel',
'splash_switched_back_user' => 'Přepnuto zpět na původního uživatele', 'splash_switched_back_user' => 'Přepnuto zpět na původního uživatele',
@ -1515,6 +1535,7 @@ URL: [url]',
'use_comment_of_document' => 'Použijte komentář dokumentu', 'use_comment_of_document' => 'Použijte komentář dokumentu',
'use_default_categories' => 'Use predefined categories', 'use_default_categories' => 'Use predefined categories',
'use_default_keywords' => 'Použít předdefinovaná klíčová slova', 'use_default_keywords' => 'Použít předdefinovaná klíčová slova',
'valid_till' => '',
'version' => 'Verze', 'version' => 'Verze',
'versioning_file_creation' => 'Vytvoření verzování souboru', '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ů.', '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ů.',

View File

@ -19,7 +19,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
// Translators: Admin (2380), dgrutsch (22) // Translators: Admin (2403), dgrutsch (22)
$text = array( $text = array(
'2_factor_auth' => '2-Faktor Authentifizierung', '2_factor_auth' => '2-Faktor Authentifizierung',
@ -390,6 +390,14 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Berechtigungen wieder erben', 'does_not_inherit_access_msg' => 'Berechtigungen wieder erben',
'download' => 'Download', 'download' => 'Download',
'download_links' => 'Download Links', '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_repair' => 'Repariere alle Ordner und Dokumente.',
'do_object_setchecksum' => 'Setze Check-Summe', 'do_object_setchecksum' => 'Setze Check-Summe',
'do_object_setfilesize' => 'Setze Dateigröße', 'do_object_setfilesize' => 'Setze Dateigröße',
@ -457,7 +465,16 @@ URL: [url]',
'event_details' => 'Ereignisdetails', 'event_details' => 'Ereignisdetails',
'exclude_items' => 'Einträge auslassen', 'exclude_items' => 'Einträge auslassen',
'expired' => 'abgelaufen', 'expired' => 'abgelaufen',
'expired_at_date' => 'Abgelaufen am [datetime]',
'expires' => 'Ablaufdatum', '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' => 'Ablaufdatum geändert',
'expiry_changed_email_body' => 'Ablaufdatum geändert 'expiry_changed_email_body' => 'Ablaufdatum geändert
Dokument: [name] Dokument: [name]
@ -540,6 +557,7 @@ URL: [url]',
'group_review_summary' => 'Übersicht Gruppenprüfungen', 'group_review_summary' => 'Übersicht Gruppenprüfungen',
'guest_login' => 'Als Gast anmelden', 'guest_login' => 'Als Gast anmelden',
'guest_login_disabled' => 'Anmeldung als Gast ist gesperrt.', 'guest_login_disabled' => 'Anmeldung als Gast ist gesperrt.',
'hash' => 'Hash-Wert',
'help' => 'Hilfe', 'help' => 'Hilfe',
'home_folder' => 'Heimatordner', 'home_folder' => 'Heimatordner',
'hook_name' => 'Name des Aufrufs', 'hook_name' => 'Name des Aufrufs',
@ -824,6 +842,7 @@ Sollen Sie danach immer noch Problem bei der Anmeldung haben, dann kontaktieren
'personal_default_keywords' => 'Persönliche Stichwortlisten', 'personal_default_keywords' => 'Persönliche Stichwortlisten',
'pl_PL' => 'Polnisch', 'pl_PL' => 'Polnisch',
'possible_substitutes' => 'Vertreter', 'possible_substitutes' => 'Vertreter',
'preset_expires' => 'Fester Ablaufzeitpunkt',
'preview' => 'Vorschau', 'preview' => 'Vorschau',
'preview_converters' => 'Vorschau Dokumentenumwandlung', 'preview_converters' => 'Vorschau Dokumentenumwandlung',
'preview_images' => 'Vorschaubilder', 'preview_images' => 'Vorschaubilder',
@ -1058,6 +1077,7 @@ URL: [url]',
'select_one' => 'Bitte wählen', 'select_one' => 'Bitte wählen',
'select_users' => 'Klicken zur Auswahl eines Benutzers', 'select_users' => 'Klicken zur Auswahl eines Benutzers',
'select_workflow' => 'Workflow auswählen', 'select_workflow' => 'Workflow auswählen',
'send_email' => 'E-Mail verschicken',
'send_test_mail' => 'Sende Test-Email', 'send_test_mail' => 'Sende Test-Email',
'september' => 'September', 'september' => 'September',
'sequence' => 'Reihenfolge', 'sequence' => 'Reihenfolge',
@ -1259,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_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' => '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_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_more_settings' => 'Weitere Einstellungen. Login mit admin/admin',
'settings_notfound' => 'Nicht gefunden', 'settings_notfound' => 'Nicht gefunden',
'settings_Notification' => 'Benachrichtigungen-Einstellungen', 'settings_Notification' => 'Benachrichtigungen-Einstellungen',
@ -1399,6 +1421,8 @@ URL: [url]',
'splash_edit_role' => 'Rolle gespeichert', 'splash_edit_role' => 'Rolle gespeichert',
'splash_edit_user' => 'Benutzer gespeichert', 'splash_edit_user' => 'Benutzer gespeichert',
'splash_error_add_to_transmittal' => 'Fehler beim Hinzufügen zur Dokumentenliste', '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_folder_edited' => 'Änderungen am Ordner gespeichert',
'splash_importfs' => '[docs] Dokumente und [folders] Ordner importiert', 'splash_importfs' => '[docs] Dokumente und [folders] Ordner importiert',
'splash_invalid_folder_id' => 'Ungültige Ordner-ID', 'splash_invalid_folder_id' => 'Ungültige Ordner-ID',
@ -1409,6 +1433,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Aus der Zwischenablage entfernt', 'splash_removed_from_clipboard' => 'Aus der Zwischenablage entfernt',
'splash_rm_attribute' => 'Attribut gelöscht', 'splash_rm_attribute' => 'Attribut gelöscht',
'splash_rm_document' => 'Dokument gelöscht', 'splash_rm_document' => 'Dokument gelöscht',
'splash_rm_download_link' => 'Download-Link gelöscht',
'splash_rm_folder' => 'Ordner gelöscht', 'splash_rm_folder' => 'Ordner gelöscht',
'splash_rm_group' => 'Gruppe gelöscht', 'splash_rm_group' => 'Gruppe gelöscht',
'splash_rm_group_member' => 'Mitglied der Gruppe gelöscht', 'splash_rm_group_member' => 'Mitglied der Gruppe gelöscht',
@ -1416,6 +1441,7 @@ URL: [url]',
'splash_rm_transmittal' => 'Dokumentenliste gelöscht', 'splash_rm_transmittal' => 'Dokumentenliste gelöscht',
'splash_rm_user' => 'Benutzer gelöscht', 'splash_rm_user' => 'Benutzer gelöscht',
'splash_saved_file' => 'Version gespeichert', 'splash_saved_file' => 'Version gespeichert',
'splash_send_download_link' => 'Download-Link per E-Mail verschickt.',
'splash_settings_saved' => 'Einstellungen gesichert', 'splash_settings_saved' => 'Einstellungen gesichert',
'splash_substituted_user' => 'Benutzer gewechselt', 'splash_substituted_user' => 'Benutzer gewechselt',
'splash_switched_back_user' => 'Zum ursprünglichen Benutzer zurückgekehrt', 'splash_switched_back_user' => 'Zum ursprünglichen Benutzer zurückgekehrt',
@ -1565,6 +1591,7 @@ URL: [url]',
'use_comment_of_document' => 'Verwende Kommentar des Dokuments', 'use_comment_of_document' => 'Verwende Kommentar des Dokuments',
'use_default_categories' => 'Kategorievorlagen', 'use_default_categories' => 'Kategorievorlagen',
'use_default_keywords' => 'Stichwortvorlagen', 'use_default_keywords' => 'Stichwortvorlagen',
'valid_till' => 'Gültig bis',
'version' => 'Version', 'version' => 'Version',
'versioning_file_creation' => 'Datei-Versionierung', '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.', '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.',

View File

@ -19,7 +19,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
// Translators: Admin (215) // Translators: Admin (220)
$text = array( $text = array(
'2_factor_auth' => '', '2_factor_auth' => '',
@ -259,7 +259,7 @@ $text = array(
'create_download_link' => '', 'create_download_link' => '',
'create_fulltext_index' => '', 'create_fulltext_index' => '',
'create_fulltext_index_warning' => '', 'create_fulltext_index_warning' => '',
'creation_date' => '', 'creation_date' => 'Δημιουργήθηκε',
'cs_CZ' => '', 'cs_CZ' => '',
'current_password' => '', 'current_password' => '',
'current_quota' => '', 'current_quota' => '',
@ -333,6 +333,8 @@ $text = array(
'does_not_inherit_access_msg' => '', 'does_not_inherit_access_msg' => '',
'download' => '', 'download' => '',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => '', 'do_object_repair' => '',
'do_object_setchecksum' => '', 'do_object_setchecksum' => '',
'do_object_setfilesize' => '', 'do_object_setfilesize' => '',
@ -362,11 +364,11 @@ $text = array(
'edit_event' => '', 'edit_event' => '',
'edit_existing_access' => '', 'edit_existing_access' => '',
'edit_existing_attribute_groups' => '', 'edit_existing_attribute_groups' => '',
'edit_existing_notify' => '', 'edit_existing_notify' => 'Επεξεργασία λίστας ειδοποιήσεων',
'edit_folder_access' => '', 'edit_folder_access' => 'Επεξεργασία πρόσβασης',
'edit_folder_attrdefgrp' => '', 'edit_folder_attrdefgrp' => '',
'edit_folder_notify' => '', 'edit_folder_notify' => '',
'edit_folder_props' => '', 'edit_folder_props' => 'Επεξεργασία φακέλου',
'edit_group' => '', 'edit_group' => '',
'edit_online' => '', 'edit_online' => '',
'edit_transmittal_props' => '', 'edit_transmittal_props' => '',
@ -400,7 +402,16 @@ $text = array(
'event_details' => '', 'event_details' => '',
'exclude_items' => '', 'exclude_items' => '',
'expired' => 'Έχει λήξει', 'expired' => 'Έχει λήξει',
'expired_at_date' => '',
'expires' => 'Λήγει', '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' => 'Η ημερομηνία λήξης έχει αλλάξει',
'expiry_changed_email_body' => '', 'expiry_changed_email_body' => '',
'expiry_changed_email_subject' => '', 'expiry_changed_email_subject' => '',
@ -459,6 +470,7 @@ $text = array(
'group_review_summary' => '', 'group_review_summary' => '',
'guest_login' => '', 'guest_login' => '',
'guest_login_disabled' => '', 'guest_login_disabled' => '',
'hash' => '',
'help' => 'Βοήθεια', 'help' => 'Βοήθεια',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -480,7 +492,7 @@ $text = array(
'index_converters' => '', 'index_converters' => '',
'index_done' => '', 'index_done' => '',
'index_error' => '', 'index_error' => '',
'index_folder' => '', 'index_folder' => 'Ταξινόμηση φακέλου',
'index_pending' => '', 'index_pending' => '',
'index_waiting' => '', 'index_waiting' => '',
'individuals' => 'Άτομα', 'individuals' => 'Άτομα',
@ -717,6 +729,7 @@ URL: [url]',
'personal_default_keywords' => '', 'personal_default_keywords' => '',
'pl_PL' => '', 'pl_PL' => '',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -875,6 +888,7 @@ URL: [url]',
'select_one' => '', 'select_one' => '',
'select_users' => '', 'select_users' => '',
'select_workflow' => '', 'select_workflow' => '',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'Σεπτέμβριος', 'september' => 'Σεπτέμβριος',
'sequence' => 'Σειρά', 'sequence' => 'Σειρά',
@ -1076,6 +1090,8 @@ URL: [url]',
'settings_maxRecursiveCount_desc' => '', 'settings_maxRecursiveCount_desc' => '',
'settings_maxSizeForFullText' => '', 'settings_maxSizeForFullText' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => '', 'settings_more_settings' => '',
'settings_notfound' => '', 'settings_notfound' => '',
'settings_Notification' => '', 'settings_Notification' => '',
@ -1216,6 +1232,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => '', 'splash_edit_user' => '',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => '', 'splash_folder_edited' => '',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => '', 'splash_invalid_folder_id' => '',
@ -1226,6 +1244,7 @@ URL: [url]',
'splash_removed_from_clipboard' => '', 'splash_removed_from_clipboard' => '',
'splash_rm_attribute' => '', 'splash_rm_attribute' => '',
'splash_rm_document' => '', 'splash_rm_document' => '',
'splash_rm_download_link' => '',
'splash_rm_folder' => '', 'splash_rm_folder' => '',
'splash_rm_group' => '', 'splash_rm_group' => '',
'splash_rm_group_member' => '', 'splash_rm_group_member' => '',
@ -1233,6 +1252,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => '', 'splash_rm_user' => '',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => '', 'splash_settings_saved' => '',
'splash_substituted_user' => '', 'splash_substituted_user' => '',
'splash_switched_back_user' => '', 'splash_switched_back_user' => '',
@ -1373,6 +1393,7 @@ URL: [url]',
'use_comment_of_document' => '', 'use_comment_of_document' => '',
'use_default_categories' => '', 'use_default_categories' => '',
'use_default_keywords' => '', 'use_default_keywords' => '',
'valid_till' => '',
'version' => 'Έκδοση', 'version' => 'Έκδοση',
'versioning_file_creation' => '', 'versioning_file_creation' => '',
'versioning_file_creation_warning' => '', 'versioning_file_creation_warning' => '',

View File

@ -19,7 +19,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
// Translators: Admin (1507), dgrutsch (9), netixw (14) // Translators: Admin (1531), dgrutsch (9), netixw (14)
$text = array( $text = array(
'2_factor_auth' => '2-factor authentication', '2_factor_auth' => '2-factor authentication',
@ -390,6 +390,15 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Inherit access', 'does_not_inherit_access_msg' => 'Inherit access',
'download' => 'Download', 'download' => 'Download',
'download_links' => 'Download links', '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_repair' => 'Repair all folders and documents.',
'do_object_setchecksum' => 'Set checksum', 'do_object_setchecksum' => 'Set checksum',
'do_object_setfilesize' => 'Set file size', 'do_object_setfilesize' => 'Set file size',
@ -457,7 +466,16 @@ URL: [url]',
'event_details' => 'Event details', 'event_details' => 'Event details',
'exclude_items' => 'Exclude items', 'exclude_items' => 'Exclude items',
'expired' => 'Expired', 'expired' => 'Expired',
'expired_at_date' => 'Expired at [datetime]',
'expires' => 'Expires', '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' => 'Expiry date changed',
'expiry_changed_email_body' => 'Expiry date changed 'expiry_changed_email_body' => 'Expiry date changed
Document: [name] Document: [name]
@ -540,6 +558,7 @@ URL: [url]',
'group_review_summary' => 'Group review summary', 'group_review_summary' => 'Group review summary',
'guest_login' => 'Login as guest', 'guest_login' => 'Login as guest',
'guest_login_disabled' => 'Guest login is disabled.', 'guest_login_disabled' => 'Guest login is disabled.',
'hash' => 'Hash',
'help' => 'Help', 'help' => 'Help',
'home_folder' => 'Home folder', 'home_folder' => 'Home folder',
'hook_name' => 'Name of hook', 'hook_name' => 'Name of hook',
@ -825,6 +844,7 @@ If you have still problems to login, then please contact your administrator.',
'personal_default_keywords' => 'Personal keywordlists', 'personal_default_keywords' => 'Personal keywordlists',
'pl_PL' => 'Polish', 'pl_PL' => 'Polish',
'possible_substitutes' => 'Substitutes', 'possible_substitutes' => 'Substitutes',
'preset_expires' => 'Preset expiration',
'preview' => 'Preview', 'preview' => 'Preview',
'preview_converters' => 'Preview document conversion', 'preview_converters' => 'Preview document conversion',
'preview_images' => 'Preview images', 'preview_images' => 'Preview images',
@ -1052,6 +1072,7 @@ URL: [url]',
'select_one' => 'Select one', 'select_one' => 'Select one',
'select_users' => 'Click to select users', 'select_users' => 'Click to select users',
'select_workflow' => 'Select workflow', 'select_workflow' => 'Select workflow',
'send_email' => 'Send email',
'send_test_mail' => 'Send test mail', 'send_test_mail' => 'Send test mail',
'september' => 'September', 'september' => 'September',
'sequence' => 'Sequence', 'sequence' => 'Sequence',
@ -1253,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_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' => '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_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_more_settings' => 'Configure more settings. Default login: admin/admin',
'settings_notfound' => 'Not found', 'settings_notfound' => 'Not found',
'settings_Notification' => 'Notification settings', 'settings_Notification' => 'Notification settings',
@ -1393,6 +1416,8 @@ URL: [url]',
'splash_edit_role' => 'Role saved', 'splash_edit_role' => 'Role saved',
'splash_edit_user' => 'User saved', 'splash_edit_user' => 'User saved',
'splash_error_add_to_transmittal' => 'Error while adding document to transmittal', '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_folder_edited' => 'Save folder changes',
'splash_importfs' => 'Imported [docs] documents and [folders] folders', 'splash_importfs' => 'Imported [docs] documents and [folders] folders',
'splash_invalid_folder_id' => 'Invalid folder ID', 'splash_invalid_folder_id' => 'Invalid folder ID',
@ -1403,6 +1428,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Removed from clipboard', 'splash_removed_from_clipboard' => 'Removed from clipboard',
'splash_rm_attribute' => 'Attribute removed', 'splash_rm_attribute' => 'Attribute removed',
'splash_rm_document' => 'Document removed', 'splash_rm_document' => 'Document removed',
'splash_rm_download_link' => 'Removed download link',
'splash_rm_folder' => 'Folder deleted', 'splash_rm_folder' => 'Folder deleted',
'splash_rm_group' => 'Group removed', 'splash_rm_group' => 'Group removed',
'splash_rm_group_member' => 'Member of group removed', 'splash_rm_group_member' => 'Member of group removed',
@ -1410,6 +1436,7 @@ URL: [url]',
'splash_rm_transmittal' => 'Transmittal deleted', 'splash_rm_transmittal' => 'Transmittal deleted',
'splash_rm_user' => 'User removed', 'splash_rm_user' => 'User removed',
'splash_saved_file' => 'Version saved', 'splash_saved_file' => 'Version saved',
'splash_send_download_link' => 'Download link sent by email.',
'splash_settings_saved' => 'Settings saved', 'splash_settings_saved' => 'Settings saved',
'splash_substituted_user' => 'Substituted user', 'splash_substituted_user' => 'Substituted user',
'splash_switched_back_user' => 'Switched back to original user', 'splash_switched_back_user' => 'Switched back to original user',
@ -1559,6 +1586,7 @@ URL: [url]',
'use_comment_of_document' => 'Use comment of document', 'use_comment_of_document' => 'Use comment of document',
'use_default_categories' => 'Use predefined categories', 'use_default_categories' => 'Use predefined categories',
'use_default_keywords' => 'Use predefined keywords', 'use_default_keywords' => 'Use predefined keywords',
'valid_till' => 'Valid till',
'version' => 'Version', 'version' => 'Version',
'versioning_file_creation' => 'Versioning file creation', '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.', '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.',

View File

@ -385,6 +385,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'heredar el acceso', 'does_not_inherit_access_msg' => 'heredar el acceso',
'download' => 'Descargar', 'download' => 'Descargar',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Reparar todas las carpetas y documentos.', 'do_object_repair' => 'Reparar todas las carpetas y documentos.',
'do_object_setchecksum' => 'Set checksum', 'do_object_setchecksum' => 'Set checksum',
'do_object_setfilesize' => 'Asignar tamaño de fichero', 'do_object_setfilesize' => 'Asignar tamaño de fichero',
@ -452,7 +454,16 @@ URL: [url]',
'event_details' => 'Detalles del evento', 'event_details' => 'Detalles del evento',
'exclude_items' => 'Registros excluidos', 'exclude_items' => 'Registros excluidos',
'expired' => 'Caducado', 'expired' => 'Caducado',
'expired_at_date' => '',
'expires' => 'Caduca', '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' => 'Fecha de caducidad modificada',
'expiry_changed_email_body' => 'Fecha de caducidad modificada 'expiry_changed_email_body' => 'Fecha de caducidad modificada
Documento: [name] Documento: [name]
@ -535,6 +546,7 @@ URL: [url]',
'group_review_summary' => 'Resumen del grupo revisor', 'group_review_summary' => 'Resumen del grupo revisor',
'guest_login' => 'Acceso como invitado', 'guest_login' => 'Acceso como invitado',
'guest_login_disabled' => 'La cuenta de invitado está deshabilitada.', 'guest_login_disabled' => 'La cuenta de invitado está deshabilitada.',
'hash' => '',
'help' => 'Ayuda', 'help' => 'Ayuda',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -820,6 +832,7 @@ Si continua teniendo problemas de acceso, por favor contacte con el administrado
'personal_default_keywords' => 'Listas de palabras clave personales', 'personal_default_keywords' => 'Listas de palabras clave personales',
'pl_PL' => 'Polaco', 'pl_PL' => 'Polaco',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -1014,6 +1027,7 @@ URL: [url]',
'select_one' => 'Seleccionar uno', 'select_one' => 'Seleccionar uno',
'select_users' => 'Haga Click para seleccionar usuarios', 'select_users' => 'Haga Click para seleccionar usuarios',
'select_workflow' => 'Selecionar Flujo de Trabajo', 'select_workflow' => 'Selecionar Flujo de Trabajo',
'send_email' => '',
'send_test_mail' => 'Enviar correo de prueba', 'send_test_mail' => 'Enviar correo de prueba',
'september' => 'Septiembre', 'september' => 'Septiembre',
'sequence' => 'Secuencia', 'sequence' => 'Secuencia',
@ -1215,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_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' => 'Tamaño máximo del fichero para el indexado inmediato',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Configure más parámetros. Acceso por defecto: admin/admin', 'settings_more_settings' => 'Configure más parámetros. Acceso por defecto: admin/admin',
'settings_notfound' => 'No encontrado', 'settings_notfound' => 'No encontrado',
'settings_Notification' => 'Parámetros de notificación', 'settings_Notification' => 'Parámetros de notificación',
@ -1355,6 +1371,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Usuario guardado', 'splash_edit_user' => 'Usuario guardado',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => 'Cambios a la carpeta guardados', 'splash_folder_edited' => 'Cambios a la carpeta guardados',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'ID de carpeta inválido', 'splash_invalid_folder_id' => 'ID de carpeta inválido',
@ -1365,6 +1383,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Eliminado del portapapeles', 'splash_removed_from_clipboard' => 'Eliminado del portapapeles',
'splash_rm_attribute' => 'Atributo eliminado', 'splash_rm_attribute' => 'Atributo eliminado',
'splash_rm_document' => 'Documento eliminado', 'splash_rm_document' => 'Documento eliminado',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Carpeta eliminada', 'splash_rm_folder' => 'Carpeta eliminada',
'splash_rm_group' => 'Grupo eliminado', 'splash_rm_group' => 'Grupo eliminado',
'splash_rm_group_member' => 'Miembro eliminado del grupo', 'splash_rm_group_member' => 'Miembro eliminado del grupo',
@ -1372,6 +1391,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Usuario eliminado', 'splash_rm_user' => 'Usuario eliminado',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Configuración guardada', 'splash_settings_saved' => 'Configuración guardada',
'splash_substituted_user' => 'Usuario sustituido', 'splash_substituted_user' => 'Usuario sustituido',
'splash_switched_back_user' => 'Cambió de nuevo al usuario original', 'splash_switched_back_user' => 'Cambió de nuevo al usuario original',
@ -1521,6 +1541,7 @@ URL: [url]',
'use_comment_of_document' => 'Usar comentario del documento', 'use_comment_of_document' => 'Usar comentario del documento',
'use_default_categories' => 'Utilizar categorías predefinidas', 'use_default_categories' => 'Utilizar categorías predefinidas',
'use_default_keywords' => 'Utilizar palabras claves por defecto', 'use_default_keywords' => 'Utilizar palabras claves por defecto',
'valid_till' => '',
'version' => 'Versión', 'version' => 'Versión',
'versioning_file_creation' => 'Creación de fichero de versiones', '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.', '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.',

View File

@ -390,6 +390,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Accès hérité', 'does_not_inherit_access_msg' => 'Accès hérité',
'download' => 'Téléchargement', 'download' => 'Téléchargement',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Réparer tous les dossiers et documents.', 'do_object_repair' => 'Réparer tous les dossiers et documents.',
'do_object_setchecksum' => 'Définir checksum', 'do_object_setchecksum' => 'Définir checksum',
'do_object_setfilesize' => 'Définir la taille du fichier', 'do_object_setfilesize' => 'Définir la taille du fichier',
@ -457,7 +459,16 @@ URL: [url]',
'event_details' => 'Détails de l\'événement', 'event_details' => 'Détails de l\'événement',
'exclude_items' => 'Exclure des élements', 'exclude_items' => 'Exclure des élements',
'expired' => 'Expiré', 'expired' => 'Expiré',
'expired_at_date' => '',
'expires' => 'Expiration', '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' => 'Date d\'expiration modifiée',
'expiry_changed_email_body' => 'Date d\'expiration modifiée 'expiry_changed_email_body' => 'Date d\'expiration modifiée
Document : [name] Document : [name]
@ -540,6 +551,7 @@ URL: [url]',
'group_review_summary' => 'Résumé groupe correcteur', 'group_review_summary' => 'Résumé groupe correcteur',
'guest_login' => 'Se connecter comme invité', 'guest_login' => 'Se connecter comme invité',
'guest_login_disabled' => 'Connexion d\'invité désactivée.', 'guest_login_disabled' => 'Connexion d\'invité désactivée.',
'hash' => '',
'help' => 'Aide', 'help' => 'Aide',
'home_folder' => 'Dossier personnel', 'home_folder' => 'Dossier personnel',
'hook_name' => '', 'hook_name' => '',
@ -823,6 +835,7 @@ En cas de problème persistant, veuillez contacter votre administrateur.',
'personal_default_keywords' => 'Mots-clés personnels', 'personal_default_keywords' => 'Mots-clés personnels',
'pl_PL' => 'Polonais', 'pl_PL' => 'Polonais',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => 'Aperçu', 'preview' => 'Aperçu',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => 'Miniatures', 'preview_images' => 'Miniatures',
@ -1002,6 +1015,7 @@ URL: [url]',
'select_one' => 'Selectionner', 'select_one' => 'Selectionner',
'select_users' => 'Cliquer pour choisir un utilisateur', 'select_users' => 'Cliquer pour choisir un utilisateur',
'select_workflow' => 'Choisir un workflow', 'select_workflow' => 'Choisir un workflow',
'send_email' => '',
'send_test_mail' => 'Envoyer un e-mail test', 'send_test_mail' => 'Envoyer un e-mail test',
'september' => 'Septembre', 'september' => 'Septembre',
'sequence' => 'Position dans le répertoire', 'sequence' => 'Position dans le répertoire',
@ -1203,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_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' => '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_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_more_settings' => 'Configurer d\'autres paramètres. Connexion par défaut: admin/admin',
'settings_notfound' => 'Introuvable', 'settings_notfound' => 'Introuvable',
'settings_Notification' => 'Notifications', 'settings_Notification' => 'Notifications',
@ -1343,6 +1359,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Utilisateur modifié', 'splash_edit_user' => 'Utilisateur modifié',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => 'Dossier modifié', 'splash_folder_edited' => 'Dossier modifié',
'splash_importfs' => '[docs] documents et [folders] dossiers importés', 'splash_importfs' => '[docs] documents et [folders] dossiers importés',
'splash_invalid_folder_id' => 'Identifiant de répertoire invalide', 'splash_invalid_folder_id' => 'Identifiant de répertoire invalide',
@ -1353,6 +1371,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Enlevé du presse-papiers', 'splash_removed_from_clipboard' => 'Enlevé du presse-papiers',
'splash_rm_attribute' => 'Attribut supprimé', 'splash_rm_attribute' => 'Attribut supprimé',
'splash_rm_document' => 'Document supprimé', 'splash_rm_document' => 'Document supprimé',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Dossier supprimé', 'splash_rm_folder' => 'Dossier supprimé',
'splash_rm_group' => 'Groupe supprimé', 'splash_rm_group' => 'Groupe supprimé',
'splash_rm_group_member' => 'Membre retiré du groupe', 'splash_rm_group_member' => 'Membre retiré du groupe',
@ -1360,6 +1379,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Utilisateur supprimé', 'splash_rm_user' => 'Utilisateur supprimé',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Configuration sauvegardée', 'splash_settings_saved' => 'Configuration sauvegardée',
'splash_substituted_user' => 'Utilisateur de substitution', 'splash_substituted_user' => 'Utilisateur de substitution',
'splash_switched_back_user' => 'Revenu à l\'utilisateur initial', 'splash_switched_back_user' => 'Revenu à l\'utilisateur initial',
@ -1509,6 +1529,7 @@ URL : [url]',
'use_comment_of_document' => 'Utiliser le commentaire du document', 'use_comment_of_document' => 'Utiliser le commentaire du document',
'use_default_categories' => 'Use predefined categories', 'use_default_categories' => 'Use predefined categories',
'use_default_keywords' => 'Utiliser les mots-clés prédéfinis', 'use_default_keywords' => 'Utiliser les mots-clés prédéfinis',
'valid_till' => '',
'version' => 'Version', 'version' => 'Version',
'versioning_file_creation' => 'Créer les fichiers de versionnage', '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 lhistorique 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.', 'versioning_file_creation_warning' => 'Cette opération permet de créer, pour chaque document, un fichier texte contenant les informations générales et lhistorique 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.',

View File

@ -390,6 +390,8 @@ Internet poveznica: [url]',
'does_not_inherit_access_msg' => 'Naslijedi nivo pristupa', 'does_not_inherit_access_msg' => 'Naslijedi nivo pristupa',
'download' => 'Preuzimanje', 'download' => 'Preuzimanje',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Popravi sve mape i dokumente.', 'do_object_repair' => 'Popravi sve mape i dokumente.',
'do_object_setchecksum' => 'Postavi kontrolnu sumu', 'do_object_setchecksum' => 'Postavi kontrolnu sumu',
'do_object_setfilesize' => 'Postavi veličinu datoteke', 'do_object_setfilesize' => 'Postavi veličinu datoteke',
@ -457,7 +459,16 @@ Internet poveznica: [url]',
'event_details' => 'Detalji događaja', 'event_details' => 'Detalji događaja',
'exclude_items' => 'Isključivanje stavki', 'exclude_items' => 'Isključivanje stavki',
'expired' => 'Isteklo', 'expired' => 'Isteklo',
'expired_at_date' => '',
'expires' => 'Datum isteka', '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' => 'Promijenjen datum isteka',
'expiry_changed_email_body' => 'Promijenjen datum isteka 'expiry_changed_email_body' => 'Promijenjen datum isteka
Dokument: <b>[name]</b> Dokument: <b>[name]</b>
@ -540,6 +551,7 @@ Internet poveznica: [url]',
'group_review_summary' => 'Sažetak pregleda grupe', 'group_review_summary' => 'Sažetak pregleda grupe',
'guest_login' => 'Prijavite se kao gost', 'guest_login' => 'Prijavite se kao gost',
'guest_login_disabled' => 'Prijava "kao gost" je onemogućena.', 'guest_login_disabled' => 'Prijava "kao gost" je onemogućena.',
'hash' => '',
'help' => 'Pomoć', 'help' => 'Pomoć',
'home_folder' => 'Početna mapa', 'home_folder' => 'Početna mapa',
'hook_name' => '', 'hook_name' => '',
@ -824,6 +836,7 @@ Ako i dalje imate problema s prijavom, molimo kontaktirajte Vašeg administrator
'personal_default_keywords' => 'Osobni popis ključnih riječi', 'personal_default_keywords' => 'Osobni popis ključnih riječi',
'pl_PL' => 'Poljski', 'pl_PL' => 'Poljski',
'possible_substitutes' => 'Zamjene', 'possible_substitutes' => 'Zamjene',
'preset_expires' => '',
'preview' => 'Predpregled', 'preview' => 'Predpregled',
'preview_converters' => 'Pretpregled konverzije dokumenta', 'preview_converters' => 'Pretpregled konverzije dokumenta',
'preview_images' => '', 'preview_images' => '',
@ -1035,6 +1048,7 @@ Internet poveznica: [url]',
'select_one' => 'Odaberite jednog', 'select_one' => 'Odaberite jednog',
'select_users' => 'Kliknite za odabir korisnika', 'select_users' => 'Kliknite za odabir korisnika',
'select_workflow' => 'Odaberite tok rada', 'select_workflow' => 'Odaberite tok rada',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'Rujan', 'september' => 'Rujan',
'sequence' => 'Redoslijed', 'sequence' => 'Redoslijed',
@ -1236,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_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' => 'Maksimalna veličina dokumenta za instant indeksiranje',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Konfiguriraj više postavki. Zadana prijava: admin/admin', 'settings_more_settings' => 'Konfiguriraj više postavki. Zadana prijava: admin/admin',
'settings_notfound' => 'Nije pronađeno', 'settings_notfound' => 'Nije pronađeno',
'settings_Notification' => 'Postavke bilježenja', 'settings_Notification' => 'Postavke bilježenja',
@ -1376,6 +1392,8 @@ Internet poveznica: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Korisnik pohranjen', 'splash_edit_user' => 'Korisnik pohranjen',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => 'Pohrani izmjene mape', 'splash_folder_edited' => 'Pohrani izmjene mape',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'Nevažeći ID mape', 'splash_invalid_folder_id' => 'Nevažeći ID mape',
@ -1386,6 +1404,7 @@ Internet poveznica: [url]',
'splash_removed_from_clipboard' => 'Uklonjeno iz međuspremnika', 'splash_removed_from_clipboard' => 'Uklonjeno iz međuspremnika',
'splash_rm_attribute' => 'Atribut uklonjen', 'splash_rm_attribute' => 'Atribut uklonjen',
'splash_rm_document' => 'Dokument uklonjen', 'splash_rm_document' => 'Dokument uklonjen',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Mapa izbrisana', 'splash_rm_folder' => 'Mapa izbrisana',
'splash_rm_group' => 'Grupa uklonjena', 'splash_rm_group' => 'Grupa uklonjena',
'splash_rm_group_member' => 'Član grupe uklonjen', 'splash_rm_group_member' => 'Član grupe uklonjen',
@ -1393,6 +1412,7 @@ Internet poveznica: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Korisnik uklonjen', 'splash_rm_user' => 'Korisnik uklonjen',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Postavke pohranjene', 'splash_settings_saved' => 'Postavke pohranjene',
'splash_substituted_user' => 'Zamjenski korisnik', 'splash_substituted_user' => 'Zamjenski korisnik',
'splash_switched_back_user' => 'Prebačeno nazad na izvornog korisnika', 'splash_switched_back_user' => 'Prebačeno nazad na izvornog korisnika',
@ -1542,6 +1562,7 @@ Internet poveznica: [url]',
'use_comment_of_document' => 'Koristi komentar dokumenta', 'use_comment_of_document' => 'Koristi komentar dokumenta',
'use_default_categories' => 'Koristi predefinirane kategorije', 'use_default_categories' => 'Koristi predefinirane kategorije',
'use_default_keywords' => 'Koristi predefinirane ključne riječi', 'use_default_keywords' => 'Koristi predefinirane ključne riječi',
'valid_till' => '',
'version' => 'Verzija', 'version' => 'Verzija',
'versioning_file_creation' => 'Stvaranje nove verzije datoteke', '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.', '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.',

View File

@ -385,6 +385,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Hozzáférés öröklése', 'does_not_inherit_access_msg' => 'Hozzáférés öröklése',
'download' => 'Letöltés', 'download' => 'Letöltés',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Valamennyi mappa és dokumentum helyreállítása.', 'do_object_repair' => 'Valamennyi mappa és dokumentum helyreállítása.',
'do_object_setchecksum' => 'Ellenőrző összeg beállítása', 'do_object_setchecksum' => 'Ellenőrző összeg beállítása',
'do_object_setfilesize' => 'Állomány méret beállítása', 'do_object_setfilesize' => 'Állomány méret beállítása',
@ -452,7 +454,16 @@ URL: [url]',
'event_details' => 'Esemény részletek', 'event_details' => 'Esemény részletek',
'exclude_items' => 'Kizárt elemek', 'exclude_items' => 'Kizárt elemek',
'expired' => 'Lejárt', 'expired' => 'Lejárt',
'expired_at_date' => '',
'expires' => 'Lejárat', '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' => 'Lejárati dátum módosítva',
'expiry_changed_email_body' => 'Lejárati dátum módosult 'expiry_changed_email_body' => 'Lejárati dátum módosult
Dokumentum: [name] Dokumentum: [name]
@ -535,6 +546,7 @@ URL: [url]',
'group_review_summary' => 'Csoport felülvizsgálat összefoglaló', 'group_review_summary' => 'Csoport felülvizsgálat összefoglaló',
'guest_login' => 'Bejelentkezés vendégként', 'guest_login' => 'Bejelentkezés vendégként',
'guest_login_disabled' => 'Vendég bejelentkezés letiltva.', 'guest_login_disabled' => 'Vendég bejelentkezés letiltva.',
'hash' => '',
'help' => 'Segítség', 'help' => 'Segítség',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -820,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', 'personal_default_keywords' => 'Személyes kulcsszó lista',
'pl_PL' => 'Lengyel', 'pl_PL' => 'Lengyel',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => 'Előnézet', 'preview' => 'Előnézet',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -1013,6 +1026,7 @@ URL: [url]',
'select_one' => 'Vßlasszon egyet', 'select_one' => 'Vßlasszon egyet',
'select_users' => 'Kattintson a felhasználó kiválasztásához', 'select_users' => 'Kattintson a felhasználó kiválasztásához',
'select_workflow' => 'Munkafolyamat választás', 'select_workflow' => 'Munkafolyamat választás',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'September', 'september' => 'September',
'sequence' => 'Sorrend', 'sequence' => 'Sorrend',
@ -1214,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_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' => '',
'settings_maxSizeForFullText_desc' => '', '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_more_settings' => 'További beállítások konfigurálása. Alapértelmezett bejelentkezés: admin/admin',
'settings_notfound' => 'Nem található', 'settings_notfound' => 'Nem található',
'settings_Notification' => 'Értesítés beállításai', 'settings_Notification' => 'Értesítés beállításai',
@ -1354,6 +1370,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Felhasználó mentve', 'splash_edit_user' => 'Felhasználó mentve',
'splash_error_add_to_transmittal' => '', '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_folder_edited' => 'Mappa változásainak mentése',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'Érvénytelen mappa azonosító', 'splash_invalid_folder_id' => 'Érvénytelen mappa azonosító',
@ -1364,6 +1382,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Eltávolítva a vágólapról', 'splash_removed_from_clipboard' => 'Eltávolítva a vágólapról',
'splash_rm_attribute' => 'Jellemző eltávolítva', 'splash_rm_attribute' => 'Jellemző eltávolítva',
'splash_rm_document' => 'Dokumentum eltávolítva', 'splash_rm_document' => 'Dokumentum eltávolítva',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Mappa törölve', 'splash_rm_folder' => 'Mappa törölve',
'splash_rm_group' => 'Csoport eltávolítva', 'splash_rm_group' => 'Csoport eltávolítva',
'splash_rm_group_member' => 'Csoporttag eltávolítva', 'splash_rm_group_member' => 'Csoporttag eltávolítva',
@ -1371,6 +1390,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Felhasználó eltávolítva', 'splash_rm_user' => 'Felhasználó eltávolítva',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Beállítások elmentve', 'splash_settings_saved' => 'Beállítások elmentve',
'splash_substituted_user' => 'Helyettesített felhasználó', 'splash_substituted_user' => 'Helyettesített felhasználó',
'splash_switched_back_user' => 'Visszaváltva az eredeti felhasználóra', 'splash_switched_back_user' => 'Visszaváltva az eredeti felhasználóra',
@ -1520,6 +1540,7 @@ URL: [url]',
'use_comment_of_document' => 'Használja a dokumentum megjegyzését', 'use_comment_of_document' => 'Használja a dokumentum megjegyzését',
'use_default_categories' => 'Használjon előre megadott kategóriákat', 'use_default_categories' => 'Használjon előre megadott kategóriákat',
'use_default_keywords' => 'Használjon előre meghatározott kulcsszavakat', 'use_default_keywords' => 'Használjon előre meghatározott kulcsszavakat',
'valid_till' => '',
'version' => 'Változat', 'version' => 'Változat',
'versioning_file_creation' => 'Változatkezelő állomány létrehozás', '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.', '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.',

View File

@ -19,7 +19,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // 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( $text = array(
'2_factor_auth' => 'Autorizzazione a due fattori', '2_factor_auth' => 'Autorizzazione a due fattori',
@ -391,6 +391,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Imposta permessi ereditari', 'does_not_inherit_access_msg' => 'Imposta permessi ereditari',
'download' => 'Scarica', 'download' => 'Scarica',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Ripara tutte le cartelle e i documenti.', 'do_object_repair' => 'Ripara tutte le cartelle e i documenti.',
'do_object_setchecksum' => 'Imposta il checksum', 'do_object_setchecksum' => 'Imposta il checksum',
'do_object_setfilesize' => 'Imposta la dimensione del file', 'do_object_setfilesize' => 'Imposta la dimensione del file',
@ -458,7 +460,16 @@ URL: [url]',
'event_details' => 'Dettagli evento', 'event_details' => 'Dettagli evento',
'exclude_items' => 'Escludi Elementi', 'exclude_items' => 'Escludi Elementi',
'expired' => 'Scaduto', 'expired' => 'Scaduto',
'expired_at_date' => '',
'expires' => 'Scadenza', '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' => 'Scadenza cambiata',
'expiry_changed_email_body' => 'Data di scadenza cambiata 'expiry_changed_email_body' => 'Data di scadenza cambiata
Documento: [name] Documento: [name]
@ -541,6 +552,7 @@ URL: [url]',
'group_review_summary' => 'Dettaglio revisioni di gruppo', 'group_review_summary' => 'Dettaglio revisioni di gruppo',
'guest_login' => 'Login come Ospite', 'guest_login' => 'Login come Ospite',
'guest_login_disabled' => 'Il login come Ospite è disabilitato.', 'guest_login_disabled' => 'Il login come Ospite è disabilitato.',
'hash' => '',
'help' => 'Aiuto', 'help' => 'Aiuto',
'home_folder' => 'Cartella Utente', 'home_folder' => 'Cartella Utente',
'hook_name' => 'Nome del gangio', 'hook_name' => 'Nome del gangio',
@ -640,7 +652,7 @@ URL: [url]',
'linked_to_this_version' => '', '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_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' => '', 'link_to_version' => '',
'list_access_rights' => '', 'list_access_rights' => 'Elenca tutti i diritti di accesso...',
'list_contains_no_access_docs' => '', 'list_contains_no_access_docs' => '',
'list_hooks' => 'Lista ganci', 'list_hooks' => 'Lista ganci',
'local_file' => 'File locale', 'local_file' => 'File locale',
@ -826,6 +838,7 @@ Dovessero esserci ancora problemi al login, prego contatta l\'Amministratore di
'personal_default_keywords' => 'Parole-chiave personali', 'personal_default_keywords' => 'Parole-chiave personali',
'pl_PL' => 'Polacco', 'pl_PL' => 'Polacco',
'possible_substitutes' => 'Sostituti', 'possible_substitutes' => 'Sostituti',
'preset_expires' => '',
'preview' => 'Anteprima', 'preview' => 'Anteprima',
'preview_converters' => 'Anteprima convesione documento', 'preview_converters' => 'Anteprima convesione documento',
'preview_images' => '', 'preview_images' => '',
@ -1047,6 +1060,7 @@ URL: [url]',
'select_one' => 'Seleziona uno', 'select_one' => 'Seleziona uno',
'select_users' => 'Clicca per selezionare gli utenti', 'select_users' => 'Clicca per selezionare gli utenti',
'select_workflow' => 'Seleziona il flusso di lavoro', 'select_workflow' => 'Seleziona il flusso di lavoro',
'send_email' => '',
'send_test_mail' => 'Invia messagio di prova', 'send_test_mail' => 'Invia messagio di prova',
'september' => 'Settembre', 'september' => 'Settembre',
'sequence' => 'Posizione', 'sequence' => 'Posizione',
@ -1248,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_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' => '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_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_more_settings' => 'Ulteriori configurazioni. Login di default: admin/admin',
'settings_notfound' => 'Non trovato', 'settings_notfound' => 'Non trovato',
'settings_Notification' => 'Impostazioni di notifica', 'settings_Notification' => 'Impostazioni di notifica',
@ -1388,6 +1404,8 @@ URL: [url]',
'splash_edit_role' => 'Ruolo memorizzata', 'splash_edit_role' => 'Ruolo memorizzata',
'splash_edit_user' => 'Utente modificato', 'splash_edit_user' => 'Utente modificato',
'splash_error_add_to_transmittal' => 'Errore durante l\'aggiunta di documento per la trasmissione', '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_folder_edited' => 'Cartella modificata',
'splash_importfs' => 'Importati [Documenti] documenti e cartelle [cartelle]', 'splash_importfs' => 'Importati [Documenti] documenti e cartelle [cartelle]',
'splash_invalid_folder_id' => 'ID cartella non valido', 'splash_invalid_folder_id' => 'ID cartella non valido',
@ -1398,6 +1416,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Rimosso dagli appunti', 'splash_removed_from_clipboard' => 'Rimosso dagli appunti',
'splash_rm_attribute' => 'Attributo rimosso', 'splash_rm_attribute' => 'Attributo rimosso',
'splash_rm_document' => 'Documento rimosso', 'splash_rm_document' => 'Documento rimosso',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Cartella eliminata', 'splash_rm_folder' => 'Cartella eliminata',
'splash_rm_group' => 'Gruppo eliminato', 'splash_rm_group' => 'Gruppo eliminato',
'splash_rm_group_member' => 'Membro del gruppo eliminato', 'splash_rm_group_member' => 'Membro del gruppo eliminato',
@ -1405,6 +1424,7 @@ URL: [url]',
'splash_rm_transmittal' => 'Trasmissione cancellato', 'splash_rm_transmittal' => 'Trasmissione cancellato',
'splash_rm_user' => 'Utente eliminato', 'splash_rm_user' => 'Utente eliminato',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Impostazioni salvate', 'splash_settings_saved' => 'Impostazioni salvate',
'splash_substituted_user' => 'Utente sostituito', 'splash_substituted_user' => 'Utente sostituito',
'splash_switched_back_user' => 'Ritorno all\'utente originale', 'splash_switched_back_user' => 'Ritorno all\'utente originale',
@ -1554,6 +1574,7 @@ URL: [url]',
'use_comment_of_document' => 'Utilizza il commento al documento', 'use_comment_of_document' => 'Utilizza il commento al documento',
'use_default_categories' => 'Usa categorie predefinite', 'use_default_categories' => 'Usa categorie predefinite',
'use_default_keywords' => 'Usa parole-chiave predefinite', 'use_default_keywords' => 'Usa parole-chiave predefinite',
'valid_till' => '',
'version' => 'Versione', 'version' => 'Versione',
'versioning_file_creation' => 'Creazione file di 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.', '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.',

View File

@ -390,6 +390,8 @@ URL: [url]',
'does_not_inherit_access_msg' => '액세스 상속', 'does_not_inherit_access_msg' => '액세스 상속',
'download' => '다운로드', 'download' => '다운로드',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => '모든 폴더와 문서를 복구', 'do_object_repair' => '모든 폴더와 문서를 복구',
'do_object_setchecksum' => '오류 검사', 'do_object_setchecksum' => '오류 검사',
'do_object_setfilesize' => '파일 크기 설정', 'do_object_setfilesize' => '파일 크기 설정',
@ -457,7 +459,16 @@ URL: [url]',
'event_details' => '이벤트의 자세한 사항', 'event_details' => '이벤트의 자세한 사항',
'exclude_items' => '항목 제외', 'exclude_items' => '항목 제외',
'expired' => '만료', 'expired' => '만료',
'expired_at_date' => '',
'expires' => '만료', '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' => '유효 기간 변경',
'expiry_changed_email_body' => '유효 기간이 변경 'expiry_changed_email_body' => '유효 기간이 변경
문서: [name] 문서: [name]
@ -540,6 +551,7 @@ URL: [url]',
'group_review_summary' => '그룹 검토 요약', 'group_review_summary' => '그룹 검토 요약',
'guest_login' => '게스트로 로그인', 'guest_login' => '게스트로 로그인',
'guest_login_disabled' => '고객 로그인을 사용할 수 없습니다.', 'guest_login_disabled' => '고객 로그인을 사용할 수 없습니다.',
'hash' => '',
'help' => '도움말', 'help' => '도움말',
'home_folder' => '홈 폴더', 'home_folder' => '홈 폴더',
'hook_name' => '', 'hook_name' => '',
@ -817,6 +829,7 @@ URL : [url]',
'personal_default_keywords' => '개인 키워드 목록', 'personal_default_keywords' => '개인 키워드 목록',
'pl_PL' => '폴란드어', 'pl_PL' => '폴란드어',
'possible_substitutes' => '대체', 'possible_substitutes' => '대체',
'preset_expires' => '',
'preview' => '미리보기', 'preview' => '미리보기',
'preview_converters' => '문서 변환 미리보기', 'preview_converters' => '문서 변환 미리보기',
'preview_images' => '', 'preview_images' => '',
@ -1028,6 +1041,7 @@ URL : [url]',
'select_one' => '선택', 'select_one' => '선택',
'select_users' => '사용자를 선택합니다', 'select_users' => '사용자를 선택합니다',
'select_workflow' => '선택 워크플로우', 'select_workflow' => '선택 워크플로우',
'send_email' => '',
'send_test_mail' => '테스트 메일', 'send_test_mail' => '테스트 메일',
'september' => '9월', 'september' => '9월',
'sequence' => '순서', 'sequence' => '순서',
@ -1229,6 +1243,8 @@ URL : [url]',
'settings_maxRecursiveCount_desc' => '이것은 재귀적으로 개체를 셀 때 사용 권한이 확인됩니다 문서 및 폴더의 최대 수입니다. 이 수를 초과하면 폴더보기에서 문서 나 폴더의 수가 추정됩니다.', 'settings_maxRecursiveCount_desc' => '이것은 재귀적으로 개체를 셀 때 사용 권한이 확인됩니다 문서 및 폴더의 최대 수입니다. 이 수를 초과하면 폴더보기에서 문서 나 폴더의 수가 추정됩니다.',
'settings_maxSizeForFullText' => '', 'settings_maxSizeForFullText' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => '기타 설정을 구성합니다. 기본 로그인 : admin/admin', 'settings_more_settings' => '기타 설정을 구성합니다. 기본 로그인 : admin/admin',
'settings_notfound' => '찾을 수 없음', 'settings_notfound' => '찾을 수 없음',
'settings_Notification' => '알림 설정', 'settings_Notification' => '알림 설정',
@ -1369,6 +1385,8 @@ URL : [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => '사용자 저장', 'splash_edit_user' => '사용자 저장',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => '저장 폴더 변경', 'splash_folder_edited' => '저장 폴더 변경',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => '잘못된 폴더 ID', 'splash_invalid_folder_id' => '잘못된 폴더 ID',
@ -1379,6 +1397,7 @@ URL : [url]',
'splash_removed_from_clipboard' => '클립 보드에서 제거', 'splash_removed_from_clipboard' => '클립 보드에서 제거',
'splash_rm_attribute' => '속성 제거', 'splash_rm_attribute' => '속성 제거',
'splash_rm_document' => '문서 삭제', 'splash_rm_document' => '문서 삭제',
'splash_rm_download_link' => '',
'splash_rm_folder' => '폴더 삭제', 'splash_rm_folder' => '폴더 삭제',
'splash_rm_group' => '그룹 제거', 'splash_rm_group' => '그룹 제거',
'splash_rm_group_member' => '회원 그룹 제거', 'splash_rm_group_member' => '회원 그룹 제거',
@ -1386,6 +1405,7 @@ URL : [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => '사용자 제거', 'splash_rm_user' => '사용자 제거',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => '설정 저장', 'splash_settings_saved' => '설정 저장',
'splash_substituted_user' => '전환된 사용자', 'splash_substituted_user' => '전환된 사용자',
'splash_switched_back_user' => '원래 사용자로 전환', 'splash_switched_back_user' => '원래 사용자로 전환',
@ -1535,6 +1555,7 @@ URL : [url]',
'use_comment_of_document' => '문서 설명을 사용하십시오', 'use_comment_of_document' => '문서 설명을 사용하십시오',
'use_default_categories' => '미리 정의 된 범주를 사용하십시오', 'use_default_categories' => '미리 정의 된 범주를 사용하십시오',
'use_default_keywords' => '사전 정의 된 키워드를 사용하십시오', 'use_default_keywords' => '사전 정의 된 키워드를 사용하십시오',
'valid_till' => '',
'version' => '버전', 'version' => '버전',
'versioning_file_creation' => '버전 관리 파일 생성', 'versioning_file_creation' => '버전 관리 파일 생성',
'versioning_file_creation_warning' => '버전 정보가 포함 된 파일을 만들 수 있습니다. 이 작업은 전체 DMS 폴더를 작성 후 모든 파일이 문서 폴더 안에 저장됩니다.', 'versioning_file_creation_warning' => '버전 정보가 포함 된 파일을 만들 수 있습니다. 이 작업은 전체 DMS 폴더를 작성 후 모든 파일이 문서 폴더 안에 저장됩니다.',

View File

@ -383,6 +383,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Erft toegang', 'does_not_inherit_access_msg' => 'Erft toegang',
'download' => 'Download', 'download' => 'Download',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Repareer alle mappen en documenten.', 'do_object_repair' => 'Repareer alle mappen en documenten.',
'do_object_setchecksum' => 'Set checksum', 'do_object_setchecksum' => 'Set checksum',
'do_object_setfilesize' => 'Voer bestandgrootte in', 'do_object_setfilesize' => 'Voer bestandgrootte in',
@ -450,7 +452,16 @@ URL: [url]',
'event_details' => 'Activiteit details', 'event_details' => 'Activiteit details',
'exclude_items' => 'Sluit iems uit', 'exclude_items' => 'Sluit iems uit',
'expired' => 'Verlopen', 'expired' => 'Verlopen',
'expired_at_date' => '',
'expires' => 'Verloopt', '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' => 'Verloopdatum gewijzigd',
'expiry_changed_email_body' => 'Vervaldatum gewijzigd 'expiry_changed_email_body' => 'Vervaldatum gewijzigd
Document: [name] Document: [name]
@ -533,6 +544,7 @@ URL: [url]',
'group_review_summary' => 'Groep Beoordeling samenvatting', 'group_review_summary' => 'Groep Beoordeling samenvatting',
'guest_login' => 'Login als Gast', 'guest_login' => 'Login als Gast',
'guest_login_disabled' => 'Gast login is uitgeschakeld.', 'guest_login_disabled' => 'Gast login is uitgeschakeld.',
'hash' => '',
'help' => 'Help', 'help' => 'Help',
'home_folder' => 'Thuismap', 'home_folder' => 'Thuismap',
'hook_name' => '', 'hook_name' => '',
@ -818,6 +830,7 @@ Mocht u de komende minuten geen email ontvangen, probeer het dan nogmaals en con
'personal_default_keywords' => 'Persoonlijke sleutelwoorden', 'personal_default_keywords' => 'Persoonlijke sleutelwoorden',
'pl_PL' => 'Polen', 'pl_PL' => 'Polen',
'possible_substitutes' => 'Mogelijke alternatieven', 'possible_substitutes' => 'Mogelijke alternatieven',
'preset_expires' => '',
'preview' => 'Voorbeeld', 'preview' => 'Voorbeeld',
'preview_converters' => 'Converters', 'preview_converters' => 'Converters',
'preview_images' => '', 'preview_images' => '',
@ -1037,6 +1050,7 @@ URL: [url]',
'select_one' => 'Selecteer een', 'select_one' => 'Selecteer een',
'select_users' => 'Klik om gebruikers te selecteren', 'select_users' => 'Klik om gebruikers te selecteren',
'select_workflow' => 'Selecteer workflow', 'select_workflow' => 'Selecteer workflow',
'send_email' => '',
'send_test_mail' => 'Testmail versturen', 'send_test_mail' => 'Testmail versturen',
'september' => 'september', 'september' => 'september',
'sequence' => 'Volgorde', 'sequence' => 'Volgorde',
@ -1242,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_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' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Meer instellingen. Standaard login: admin/admin', 'settings_more_settings' => 'Meer instellingen. Standaard login: admin/admin',
'settings_notfound' => 'Niet gevonden', 'settings_notfound' => 'Niet gevonden',
'settings_Notification' => 'Notificatie instellingen', 'settings_Notification' => 'Notificatie instellingen',
@ -1382,6 +1398,8 @@ URL: [url]',
'splash_edit_role' => 'Rol opgeslagen', 'splash_edit_role' => 'Rol opgeslagen',
'splash_edit_user' => 'Gebruiker opgeslagen', 'splash_edit_user' => 'Gebruiker opgeslagen',
'splash_error_add_to_transmittal' => 'Fout: toevoeging aan verzending', '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_folder_edited' => 'Opslaan mapwijzigingen',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'Ongeldige map ID', 'splash_invalid_folder_id' => 'Ongeldige map ID',
@ -1392,6 +1410,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Verwijderd van het klembord', 'splash_removed_from_clipboard' => 'Verwijderd van het klembord',
'splash_rm_attribute' => 'Attribuut verwijderd', 'splash_rm_attribute' => 'Attribuut verwijderd',
'splash_rm_document' => 'Document verwijderd', 'splash_rm_document' => 'Document verwijderd',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Map verwijderd', 'splash_rm_folder' => 'Map verwijderd',
'splash_rm_group' => 'Groep verwijderd', 'splash_rm_group' => 'Groep verwijderd',
'splash_rm_group_member' => 'Lid van de groep verwijderd', 'splash_rm_group_member' => 'Lid van de groep verwijderd',
@ -1399,6 +1418,7 @@ URL: [url]',
'splash_rm_transmittal' => 'Verzending verwijderd', 'splash_rm_transmittal' => 'Verzending verwijderd',
'splash_rm_user' => 'Gebruiker verwijderd', 'splash_rm_user' => 'Gebruiker verwijderd',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Instellingen opgeslagen', 'splash_settings_saved' => 'Instellingen opgeslagen',
'splash_substituted_user' => 'Invallers gebruiker', 'splash_substituted_user' => 'Invallers gebruiker',
'splash_switched_back_user' => 'Teruggeschakeld naar de oorspronkelijke gebruiker', 'splash_switched_back_user' => 'Teruggeschakeld naar de oorspronkelijke gebruiker',
@ -1548,6 +1568,7 @@ URL: [url]',
'use_comment_of_document' => 'Gebruik reactie van document', 'use_comment_of_document' => 'Gebruik reactie van document',
'use_default_categories' => 'Gebruik voorgedefinieerde categorieen', 'use_default_categories' => 'Gebruik voorgedefinieerde categorieen',
'use_default_keywords' => 'Gebruik bestaande sleutelwoorden', 'use_default_keywords' => 'Gebruik bestaande sleutelwoorden',
'valid_till' => '',
'version' => 'Versie', 'version' => 'Versie',
'versioning_file_creation' => 'Aanmaken bestand versies', '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.', '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.',

View File

@ -378,6 +378,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Dziedzicz dostęp', 'does_not_inherit_access_msg' => 'Dziedzicz dostęp',
'download' => 'Pobierz', 'download' => 'Pobierz',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Napraw wszystkie katalogi i pliki.', 'do_object_repair' => 'Napraw wszystkie katalogi i pliki.',
'do_object_setchecksum' => 'Ustaw sumę kontrolną', 'do_object_setchecksum' => 'Ustaw sumę kontrolną',
'do_object_setfilesize' => 'Podaj rozmiar pliku', 'do_object_setfilesize' => 'Podaj rozmiar pliku',
@ -445,7 +447,16 @@ URL: [url]',
'event_details' => 'Szczegóły zdarzenia', 'event_details' => 'Szczegóły zdarzenia',
'exclude_items' => '', 'exclude_items' => '',
'expired' => 'Wygasłe', 'expired' => 'Wygasłe',
'expired_at_date' => '',
'expires' => 'Wygasa', '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' => 'Zmieniona data wygaśnięcia',
'expiry_changed_email_body' => 'Zmiana daty wygaśnięcia 'expiry_changed_email_body' => 'Zmiana daty wygaśnięcia
Dokument: [name] Dokument: [name]
@ -528,6 +539,7 @@ URL: [url]',
'group_review_summary' => 'Podsumowanie opiniowania dla grupy', 'group_review_summary' => 'Podsumowanie opiniowania dla grupy',
'guest_login' => 'Zalogowany jako gość', 'guest_login' => 'Zalogowany jako gość',
'guest_login_disabled' => 'Logowanie dla gościa jest wyłączone.', 'guest_login_disabled' => 'Logowanie dla gościa jest wyłączone.',
'hash' => '',
'help' => 'Pomoc', 'help' => 'Pomoc',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -813,6 +825,7 @@ Jeśli nadal będą problemy z zalogowaniem, prosimy o kontakt z administratorem
'personal_default_keywords' => 'Osobiste sława kluczowe', 'personal_default_keywords' => 'Osobiste sława kluczowe',
'pl_PL' => 'Polski', 'pl_PL' => 'Polski',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -993,6 +1006,7 @@ URL: [url]',
'select_one' => 'Wybierz', 'select_one' => 'Wybierz',
'select_users' => 'Kliknij by wybrać użytkowników', 'select_users' => 'Kliknij by wybrać użytkowników',
'select_workflow' => 'Wybierz proces', 'select_workflow' => 'Wybierz proces',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'Wrzesień', 'september' => 'Wrzesień',
'sequence' => 'Kolejność', 'sequence' => 'Kolejność',
@ -1194,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_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' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Wykonaj dalszą konfigurację. Domyślny login/hasło: admin/admin', 'settings_more_settings' => 'Wykonaj dalszą konfigurację. Domyślny login/hasło: admin/admin',
'settings_notfound' => 'Nie znaleziono', 'settings_notfound' => 'Nie znaleziono',
'settings_Notification' => 'Ustawienia powiadomień', 'settings_Notification' => 'Ustawienia powiadomień',
@ -1334,6 +1350,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Zapisano użytkownika', 'splash_edit_user' => 'Zapisano użytkownika',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => 'Zapisz zmiany folderu', 'splash_folder_edited' => 'Zapisz zmiany folderu',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'Nieprawidłowy identyfikator folderu', 'splash_invalid_folder_id' => 'Nieprawidłowy identyfikator folderu',
@ -1344,6 +1362,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Usunięto ze schowka', 'splash_removed_from_clipboard' => 'Usunięto ze schowka',
'splash_rm_attribute' => 'Usunięto atrybut', 'splash_rm_attribute' => 'Usunięto atrybut',
'splash_rm_document' => 'Dokument usunięto', 'splash_rm_document' => 'Dokument usunięto',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Folder usunięty', 'splash_rm_folder' => 'Folder usunięty',
'splash_rm_group' => 'Grupę usunięto', 'splash_rm_group' => 'Grupę usunięto',
'splash_rm_group_member' => 'Usunięto członka grupy', 'splash_rm_group_member' => 'Usunięto członka grupy',
@ -1351,6 +1370,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Użytkownika usunięto', 'splash_rm_user' => 'Użytkownika usunięto',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Zmiany zapisano', 'splash_settings_saved' => 'Zmiany zapisano',
'splash_substituted_user' => 'Zmieniono użytkownika', 'splash_substituted_user' => 'Zmieniono użytkownika',
'splash_switched_back_user' => 'Przełączono z powrotem do oryginalnego użytkownika', 'splash_switched_back_user' => 'Przełączono z powrotem do oryginalnego użytkownika',
@ -1500,6 +1520,7 @@ URL: [url]',
'use_comment_of_document' => 'Skomentuj dokumentu', 'use_comment_of_document' => 'Skomentuj dokumentu',
'use_default_categories' => 'Użyj predefiniowanych kategorii', 'use_default_categories' => 'Użyj predefiniowanych kategorii',
'use_default_keywords' => 'Użyj predefiniowanych słów kluczowych', 'use_default_keywords' => 'Użyj predefiniowanych słów kluczowych',
'valid_till' => '',
'version' => 'Wersja', 'version' => 'Wersja',
'versioning_file_creation' => 'Utwórz archiwum z wersjonowaniem', '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.', '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.',

View File

@ -19,7 +19,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // 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( $text = array(
'2_factor_auth' => '', '2_factor_auth' => '',
@ -173,7 +173,7 @@ URL: [url]',
'attr_malformed_int' => '', 'attr_malformed_int' => '',
'attr_malformed_url' => '', 'attr_malformed_url' => '',
'attr_max_values' => '', '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_not_in_valueset' => '',
'attr_no_regex_match' => 'O valor do atributo não corresponde à expressão regular', 'attr_no_regex_match' => 'O valor do atributo não corresponde à expressão regular',
'attr_validation_error' => '', 'attr_validation_error' => '',
@ -384,6 +384,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Inherit access', 'does_not_inherit_access_msg' => 'Inherit access',
'download' => 'Download', 'download' => 'Download',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Reparar todas as pastas e documentos.', 'do_object_repair' => 'Reparar todas as pastas e documentos.',
'do_object_setchecksum' => 'Defina soma de verificação', 'do_object_setchecksum' => 'Defina soma de verificação',
'do_object_setfilesize' => 'Defina o tamanho do arquivo', 'do_object_setfilesize' => 'Defina o tamanho do arquivo',
@ -451,7 +453,16 @@ URL: [url]',
'event_details' => 'Event details', 'event_details' => 'Event details',
'exclude_items' => 'Excluir ítens', 'exclude_items' => 'Excluir ítens',
'expired' => 'Expirado', 'expired' => 'Expirado',
'expired_at_date' => '',
'expires' => 'Expira', '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' => 'Data de validade mudou',
'expiry_changed_email_body' => 'Data de validade mudou 'expiry_changed_email_body' => 'Data de validade mudou
Documento: [name] Documento: [name]
@ -534,6 +545,7 @@ URL: [url]',
'group_review_summary' => 'Resumo da avaliação do grupo', 'group_review_summary' => 'Resumo da avaliação do grupo',
'guest_login' => 'Entre como convidado', 'guest_login' => 'Entre como convidado',
'guest_login_disabled' => 'Guest login is disabled.', 'guest_login_disabled' => 'Guest login is disabled.',
'hash' => '',
'help' => 'Ajuda', 'help' => 'Ajuda',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -551,7 +563,7 @@ URL: [url]',
'include_content' => '', 'include_content' => '',
'include_documents' => 'Include documents', 'include_documents' => 'Include documents',
'include_subdirectories' => 'Include subdirectories', '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_converters' => 'Índice de conversão de documentos',
'index_done' => '', 'index_done' => '',
'index_error' => '', 'index_error' => '',
@ -775,7 +787,7 @@ URL: [url]',
'only_jpg_user_images' => 'Somente imagens jpg podem ser utilizadas como avatar', 'only_jpg_user_images' => 'Somente imagens jpg podem ser utilizadas como avatar',
'order_by_sequence_off' => '', 'order_by_sequence_off' => '',
'original_filename' => 'Arquivo original', 'original_filename' => 'Arquivo original',
'overall_indexing_progress' => '', 'overall_indexing_progress' => 'Progresso geral da indexação',
'owner' => 'Proprietário', 'owner' => 'Proprietário',
'ownership_changed_email' => 'O proprietário mudou', 'ownership_changed_email' => 'O proprietário mudou',
'ownership_changed_email_body' => 'Proprietário mudou 'ownership_changed_email_body' => 'Proprietário mudou
@ -818,6 +830,7 @@ Se você ainda tiver problemas para fazer o login, por favor, contate o administ
'personal_default_keywords' => 'palavras-chave pessoais', 'personal_default_keywords' => 'palavras-chave pessoais',
'pl_PL' => 'Polonês', 'pl_PL' => 'Polonês',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => 'visualizar', 'preview' => 'visualizar',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -1011,6 +1024,7 @@ URL: [url]',
'select_one' => 'Selecione um', 'select_one' => 'Selecione um',
'select_users' => 'Clique para selecionar os usuários', 'select_users' => 'Clique para selecionar os usuários',
'select_workflow' => 'Selecione o fluxo de trabalho', 'select_workflow' => 'Selecione o fluxo de trabalho',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'September', 'september' => 'September',
'sequence' => 'Sequência', 'sequence' => 'Sequência',
@ -1212,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_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' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Configurar outras configurações. Login padrão: admin/admin', 'settings_more_settings' => 'Configurar outras configurações. Login padrão: admin/admin',
'settings_notfound' => 'Não encontrado', 'settings_notfound' => 'Não encontrado',
'settings_Notification' => 'Configurações de notificação', 'settings_Notification' => 'Configurações de notificação',
@ -1352,6 +1368,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Usuário salvo', 'splash_edit_user' => 'Usuário salvo',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => 'Salvar modificação de pastas', 'splash_folder_edited' => 'Salvar modificação de pastas',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'ID de pasta inválida', 'splash_invalid_folder_id' => 'ID de pasta inválida',
@ -1362,6 +1380,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Remover da área de transferência', 'splash_removed_from_clipboard' => 'Remover da área de transferência',
'splash_rm_attribute' => 'Atributo removido', 'splash_rm_attribute' => 'Atributo removido',
'splash_rm_document' => 'Documento removido', 'splash_rm_document' => 'Documento removido',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Pasta excluida', 'splash_rm_folder' => 'Pasta excluida',
'splash_rm_group' => 'Grupo removido', 'splash_rm_group' => 'Grupo removido',
'splash_rm_group_member' => 'Membro do grupo removido', 'splash_rm_group_member' => 'Membro do grupo removido',
@ -1369,6 +1388,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Usuário removido', 'splash_rm_user' => 'Usuário removido',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Configurações salvas', 'splash_settings_saved' => 'Configurações salvas',
'splash_substituted_user' => 'Usuário substituido', 'splash_substituted_user' => 'Usuário substituido',
'splash_switched_back_user' => 'Comutada de volta ao usuário original', 'splash_switched_back_user' => 'Comutada de volta ao usuário original',
@ -1518,6 +1538,7 @@ URL: [url]',
'use_comment_of_document' => 'Utilize comentário de documento', 'use_comment_of_document' => 'Utilize comentário de documento',
'use_default_categories' => 'Utilize categorias predefinidas', 'use_default_categories' => 'Utilize categorias predefinidas',
'use_default_keywords' => 'Use palavras-chave pré-definidas', 'use_default_keywords' => 'Use palavras-chave pré-definidas',
'valid_till' => '',
'version' => 'Versão', 'version' => 'Versão',
'versioning_file_creation' => 'Versioning file creation', '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.', '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.',

View File

@ -19,7 +19,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
// Translators: Admin (1048), balan (87) // Translators: Admin (1050), balan (87)
$text = array( $text = array(
'2_factor_auth' => '', '2_factor_auth' => '',
@ -152,7 +152,7 @@ URL: [url]',
'attrdef_regex' => 'Expresie regulată', 'attrdef_regex' => 'Expresie regulată',
'attrdef_type' => 'Tip', 'attrdef_type' => 'Tip',
'attrdef_type_boolean' => 'Boolean', 'attrdef_type_boolean' => 'Boolean',
'attrdef_type_date' => '', 'attrdef_type_date' => 'Data',
'attrdef_type_email' => 'Email', 'attrdef_type_email' => 'Email',
'attrdef_type_float' => 'Float', 'attrdef_type_float' => 'Float',
'attrdef_type_int' => 'Intreg', 'attrdef_type_int' => 'Intreg',
@ -310,7 +310,7 @@ URL: [url]',
'docs_in_reception_no_access' => '', 'docs_in_reception_no_access' => '',
'docs_in_revision_no_access' => '', 'docs_in_revision_no_access' => '',
'document' => 'Document', 'document' => 'Document',
'documentcontent' => '', 'documentcontent' => 'Continut Document',
'documents' => 'Documente', 'documents' => 'Documente',
'documents_checked_out_by_you' => 'Documente verificate de tine', 'documents_checked_out_by_you' => 'Documente verificate de tine',
'documents_in_process' => 'Documente în procesare', 'documents_in_process' => 'Documente în procesare',
@ -390,6 +390,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Acces moștenit', 'does_not_inherit_access_msg' => 'Acces moștenit',
'download' => 'Descarca', 'download' => 'Descarca',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Repară toate folderele și documentele.', 'do_object_repair' => 'Repară toate folderele și documentele.',
'do_object_setchecksum' => 'Setare sumă de control(checksum)', 'do_object_setchecksum' => 'Setare sumă de control(checksum)',
'do_object_setfilesize' => 'Setare dimensiune fișier', 'do_object_setfilesize' => 'Setare dimensiune fișier',
@ -457,7 +459,16 @@ URL: [url]',
'event_details' => 'Detalii eveniment', 'event_details' => 'Detalii eveniment',
'exclude_items' => 'Elemente excluse', 'exclude_items' => 'Elemente excluse',
'expired' => 'Expirat', 'expired' => 'Expirat',
'expired_at_date' => '',
'expires' => 'Expiră', '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' => 'Data de expirare schimbată',
'expiry_changed_email_body' => 'Data de expirare schimbată 'expiry_changed_email_body' => 'Data de expirare schimbată
Document: [name] Document: [name]
@ -540,6 +551,7 @@ URL: [url]',
'group_review_summary' => 'Sumar revizuiri grup', 'group_review_summary' => 'Sumar revizuiri grup',
'guest_login' => 'Login ca oaspete', 'guest_login' => 'Login ca oaspete',
'guest_login_disabled' => 'Logarea ca oaspete este dezactivată.', 'guest_login_disabled' => 'Logarea ca oaspete este dezactivată.',
'hash' => '',
'help' => 'Ajutor', 'help' => 'Ajutor',
'home_folder' => 'Folder Home', 'home_folder' => 'Folder Home',
'hook_name' => '', 'hook_name' => '',
@ -825,6 +837,7 @@ Dacă aveți în continuare probleme la autentificare, vă rugăm să contactaț
'personal_default_keywords' => 'Liste de cuvinte cheie personale', 'personal_default_keywords' => 'Liste de cuvinte cheie personale',
'pl_PL' => 'Poloneză', 'pl_PL' => 'Poloneză',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -1036,6 +1049,7 @@ URL: [url]',
'select_one' => 'Selectați unul', 'select_one' => 'Selectați unul',
'select_users' => 'Click pentru a selecta utilizatori', 'select_users' => 'Click pentru a selecta utilizatori',
'select_workflow' => 'Selectați workflow', 'select_workflow' => 'Selectați workflow',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'Septembrie', 'september' => 'Septembrie',
'sequence' => 'Poziție', 'sequence' => 'Poziție',
@ -1237,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_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' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Configurare mai multe setări. Autentificare implicită: admin/admin', 'settings_more_settings' => 'Configurare mai multe setări. Autentificare implicită: admin/admin',
'settings_notfound' => 'Nu a fost găsit', 'settings_notfound' => 'Nu a fost găsit',
'settings_Notification' => 'Setările de notificare', 'settings_Notification' => 'Setările de notificare',
@ -1377,6 +1393,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Utilizator salvat', 'splash_edit_user' => 'Utilizator salvat',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => 'Salvați modificările folderului', 'splash_folder_edited' => 'Salvați modificările folderului',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'ID folder invalid', 'splash_invalid_folder_id' => 'ID folder invalid',
@ -1387,6 +1405,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Eliminat din clipboard', 'splash_removed_from_clipboard' => 'Eliminat din clipboard',
'splash_rm_attribute' => 'Atribut eliminat', 'splash_rm_attribute' => 'Atribut eliminat',
'splash_rm_document' => 'Document eliminat', 'splash_rm_document' => 'Document eliminat',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Folder șters', 'splash_rm_folder' => 'Folder șters',
'splash_rm_group' => 'Grup eliminat', 'splash_rm_group' => 'Grup eliminat',
'splash_rm_group_member' => 'Membru grup eliminat', 'splash_rm_group_member' => 'Membru grup eliminat',
@ -1394,6 +1413,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Uilizator eliminat', 'splash_rm_user' => 'Uilizator eliminat',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Setări salvate', 'splash_settings_saved' => 'Setări salvate',
'splash_substituted_user' => 'Utilizator substituit', 'splash_substituted_user' => 'Utilizator substituit',
'splash_switched_back_user' => 'Comutat înapoi la utilizatorul original', 'splash_switched_back_user' => 'Comutat înapoi la utilizatorul original',
@ -1543,6 +1563,7 @@ URL: [url]',
'use_comment_of_document' => 'Utilizați comentarii la documente', 'use_comment_of_document' => 'Utilizați comentarii la documente',
'use_default_categories' => 'Utilizați categorii predefinite', 'use_default_categories' => 'Utilizați categorii predefinite',
'use_default_keywords' => 'Utilizați cuvinte cheie predefinite', 'use_default_keywords' => 'Utilizați cuvinte cheie predefinite',
'valid_till' => '',
'version' => 'Versiune', 'version' => 'Versiune',
'versioning_file_creation' => 'Creare fișier de versionare', '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.', '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.',

View File

@ -390,6 +390,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Наследовать уровень доступа', 'does_not_inherit_access_msg' => 'Наследовать уровень доступа',
'download' => 'Загрузить', 'download' => 'Загрузить',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Исправить все каталоги и документы', 'do_object_repair' => 'Исправить все каталоги и документы',
'do_object_setchecksum' => 'Установить контрольную сумму', 'do_object_setchecksum' => 'Установить контрольную сумму',
'do_object_setfilesize' => 'Установить размер файла', 'do_object_setfilesize' => 'Установить размер файла',
@ -457,7 +459,16 @@ URL: [url]',
'event_details' => 'Информация о событии', 'event_details' => 'Информация о событии',
'exclude_items' => 'Не показывать события:', 'exclude_items' => 'Не показывать события:',
'expired' => 'Срок действия вышел', 'expired' => 'Срок действия вышел',
'expired_at_date' => '',
'expires' => 'Срок действия', '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' => 'Срок действия изменен',
'expiry_changed_email_body' => 'Срок действия изменен 'expiry_changed_email_body' => 'Срок действия изменен
Документ: [name] Документ: [name]
@ -540,6 +551,7 @@ URL: [url]',
'group_review_summary' => 'Сводка по рецензированию группы', 'group_review_summary' => 'Сводка по рецензированию группы',
'guest_login' => 'Войти как гость', 'guest_login' => 'Войти как гость',
'guest_login_disabled' => 'Гостевой вход отключён', 'guest_login_disabled' => 'Гостевой вход отключён',
'hash' => '',
'help' => 'Помощь', 'help' => 'Помощь',
'home_folder' => 'Домашний каталог', 'home_folder' => 'Домашний каталог',
'hook_name' => 'Имя хука', 'hook_name' => 'Имя хука',
@ -822,6 +834,7 @@ URL: [url]',
'personal_default_keywords' => 'Личный список меток', 'personal_default_keywords' => 'Личный список меток',
'pl_PL' => 'Polish', 'pl_PL' => 'Polish',
'possible_substitutes' => 'Замена', 'possible_substitutes' => 'Замена',
'preset_expires' => '',
'preview' => 'Предварительный просмотр', 'preview' => 'Предварительный просмотр',
'preview_converters' => 'Предварительный просмотр конвертации документа', 'preview_converters' => 'Предварительный просмотр конвертации документа',
'preview_images' => '', 'preview_images' => '',
@ -1043,6 +1056,7 @@ URL: [url]',
'select_one' => 'Выберите', 'select_one' => 'Выберите',
'select_users' => 'Выберите пользователей', 'select_users' => 'Выберите пользователей',
'select_workflow' => 'Выберите процесс', 'select_workflow' => 'Выберите процесс',
'send_email' => '',
'send_test_mail' => 'Отправить тестовое сообщение', 'send_test_mail' => 'Отправить тестовое сообщение',
'september' => 'Сентябрь', 'september' => 'Сентябрь',
'sequence' => 'Позиция', 'sequence' => 'Позиция',
@ -1244,6 +1258,8 @@ URL: [url]',
'settings_maxRecursiveCount_desc' => 'Максимальное количество документов или каталогов, которые будут проверены на права доступа при рекурсивном подсчёте объектов. При превышении этого количества, будет оценено количество документов и каталогов в виде каталога.', 'settings_maxRecursiveCount_desc' => 'Максимальное количество документов или каталогов, которые будут проверены на права доступа при рекурсивном подсчёте объектов. При превышении этого количества, будет оценено количество документов и каталогов в виде каталога.',
'settings_maxSizeForFullText' => 'Макс. размер документа для индексирования на лету', 'settings_maxSizeForFullText' => 'Макс. размер документа для индексирования на лету',
'settings_maxSizeForFullText_desc' => 'Размер документа, который может быть индексирован срузу после добавления', 'settings_maxSizeForFullText_desc' => 'Размер документа, который может быть индексирован срузу после добавления',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Прочие настройки. Логин по умолчанию: admin/admin', 'settings_more_settings' => 'Прочие настройки. Логин по умолчанию: admin/admin',
'settings_notfound' => 'Не найден', 'settings_notfound' => 'Не найден',
'settings_Notification' => 'Настройки извещения', 'settings_Notification' => 'Настройки извещения',
@ -1384,6 +1400,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Пользователь сохранён', 'splash_edit_user' => 'Пользователь сохранён',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => 'Изменения каталога сохранены', 'splash_folder_edited' => 'Изменения каталога сохранены',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'Неверный идентификатор каталога', 'splash_invalid_folder_id' => 'Неверный идентификатор каталога',
@ -1394,6 +1412,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Удалён из буфера обмена', 'splash_removed_from_clipboard' => 'Удалён из буфера обмена',
'splash_rm_attribute' => 'Атрибут удалён', 'splash_rm_attribute' => 'Атрибут удалён',
'splash_rm_document' => 'Документ удалён', 'splash_rm_document' => 'Документ удалён',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Папка удалена', 'splash_rm_folder' => 'Папка удалена',
'splash_rm_group' => 'Группа удалена', 'splash_rm_group' => 'Группа удалена',
'splash_rm_group_member' => 'Удалён член группы', 'splash_rm_group_member' => 'Удалён член группы',
@ -1401,6 +1420,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Пользователь удалён', 'splash_rm_user' => 'Пользователь удалён',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Настройки сохранены', 'splash_settings_saved' => 'Настройки сохранены',
'splash_substituted_user' => 'Пользователь переключён', 'splash_substituted_user' => 'Пользователь переключён',
'splash_switched_back_user' => 'Переключён на исходного пользователя', 'splash_switched_back_user' => 'Переключён на исходного пользователя',
@ -1550,6 +1570,7 @@ URL: [url]',
'use_comment_of_document' => 'Использовать комментарий документа', 'use_comment_of_document' => 'Использовать комментарий документа',
'use_default_categories' => 'Использовать предопределённые категории', 'use_default_categories' => 'Использовать предопределённые категории',
'use_default_keywords' => 'Использовать предопределённые метки', 'use_default_keywords' => 'Использовать предопределённые метки',
'valid_till' => '',
'version' => 'Версия', 'version' => 'Версия',
'versioning_file_creation' => 'Создать файл версий', 'versioning_file_creation' => 'Создать файл версий',
'versioning_file_creation_warning' => 'Эта операция создаст файлы версий для всего каталога. После создания файлы версий будут сохранены в каталоге документов.', 'versioning_file_creation_warning' => 'Эта операция создаст файлы версий для всего каталога. После создания файлы версий будут сохранены в каталоге документов.',

View File

@ -337,6 +337,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Zdediť prístup', 'does_not_inherit_access_msg' => 'Zdediť prístup',
'download' => 'Stiahnuť', 'download' => 'Stiahnuť',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => '', 'do_object_repair' => '',
'do_object_setchecksum' => '', 'do_object_setchecksum' => '',
'do_object_setfilesize' => '', 'do_object_setfilesize' => '',
@ -404,7 +406,16 @@ URL: [url]',
'event_details' => 'Detail udalosti', 'event_details' => 'Detail udalosti',
'exclude_items' => '', 'exclude_items' => '',
'expired' => 'Platnosť vypršala', 'expired' => 'Platnosť vypršala',
'expired_at_date' => '',
'expires' => 'Platnosť vyprší', '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' => 'Datum platnosti zmeneny',
'expiry_changed_email_body' => '', 'expiry_changed_email_body' => '',
'expiry_changed_email_subject' => '', 'expiry_changed_email_subject' => '',
@ -463,6 +474,7 @@ URL: [url]',
'group_review_summary' => 'Zhrnutie skupinovej recenzie', 'group_review_summary' => 'Zhrnutie skupinovej recenzie',
'guest_login' => 'Prihlásiť sa ako hosť', 'guest_login' => 'Prihlásiť sa ako hosť',
'guest_login_disabled' => 'Prihlásenie ako hosť je vypnuté.', 'guest_login_disabled' => 'Prihlásenie ako hosť je vypnuté.',
'hash' => '',
'help' => 'Pomoc', 'help' => 'Pomoc',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -710,6 +722,7 @@ URL: [url]',
'personal_default_keywords' => 'Osobné kľúčové slová', 'personal_default_keywords' => 'Osobné kľúčové slová',
'pl_PL' => 'Polština', 'pl_PL' => 'Polština',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -868,6 +881,7 @@ URL: [url]',
'select_one' => 'Vyberte jeden', 'select_one' => 'Vyberte jeden',
'select_users' => '', 'select_users' => '',
'select_workflow' => '', 'select_workflow' => '',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'September', 'september' => 'September',
'sequence' => 'Postupnosť', 'sequence' => 'Postupnosť',
@ -1069,6 +1083,8 @@ URL: [url]',
'settings_maxRecursiveCount_desc' => '', 'settings_maxRecursiveCount_desc' => '',
'settings_maxSizeForFullText' => '', 'settings_maxSizeForFullText' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => '', 'settings_more_settings' => '',
'settings_notfound' => '', 'settings_notfound' => '',
'settings_Notification' => '', 'settings_Notification' => '',
@ -1209,6 +1225,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => '', 'splash_edit_user' => '',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => '', 'splash_folder_edited' => '',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => '', 'splash_invalid_folder_id' => '',
@ -1219,6 +1237,7 @@ URL: [url]',
'splash_removed_from_clipboard' => '', 'splash_removed_from_clipboard' => '',
'splash_rm_attribute' => '', 'splash_rm_attribute' => '',
'splash_rm_document' => 'Dokument odstránený', 'splash_rm_document' => 'Dokument odstránený',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Zložka zmazaná', 'splash_rm_folder' => 'Zložka zmazaná',
'splash_rm_group' => '', 'splash_rm_group' => '',
'splash_rm_group_member' => '', 'splash_rm_group_member' => '',
@ -1226,6 +1245,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => '', 'splash_rm_user' => '',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => '', 'splash_settings_saved' => '',
'splash_substituted_user' => '', 'splash_substituted_user' => '',
'splash_switched_back_user' => '', 'splash_switched_back_user' => '',
@ -1366,6 +1386,7 @@ URL: [url]',
'use_comment_of_document' => 'Použite komentár dokumentu', 'use_comment_of_document' => 'Použite komentár dokumentu',
'use_default_categories' => '', 'use_default_categories' => '',
'use_default_keywords' => 'Použiť preddefinované kľúčové slová', 'use_default_keywords' => 'Použiť preddefinované kľúčové slová',
'valid_till' => '',
'version' => 'Verzia', 'version' => 'Verzia',
'versioning_file_creation' => 'Vytvorenie verziovacieho súboru', '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.', '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.',

View File

@ -378,6 +378,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Ärv behörighet', 'does_not_inherit_access_msg' => 'Ärv behörighet',
'download' => 'Ladda ner', 'download' => 'Ladda ner',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Försök att laga kataloger och dokument.', 'do_object_repair' => 'Försök att laga kataloger och dokument.',
'do_object_setchecksum' => 'Lägg till checksumma', 'do_object_setchecksum' => 'Lägg till checksumma',
'do_object_setfilesize' => 'Ange filstorlek', 'do_object_setfilesize' => 'Ange filstorlek',
@ -445,7 +447,16 @@ URL: [url]',
'event_details' => 'Händelseinställningar', 'event_details' => 'Händelseinställningar',
'exclude_items' => '', 'exclude_items' => '',
'expired' => 'Har gått ut', 'expired' => 'Har gått ut',
'expired_at_date' => '',
'expires' => 'Kommer att gå ut', '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' => 'Utgångsdatum ändrat',
'expiry_changed_email_body' => 'Utgångsdatum ändrat 'expiry_changed_email_body' => 'Utgångsdatum ändrat
Dokument: [name] Dokument: [name]
@ -528,6 +539,7 @@ URL: [url]',
'group_review_summary' => 'Sammanfattning av gruppgranskning', 'group_review_summary' => 'Sammanfattning av gruppgranskning',
'guest_login' => 'Gästinloggning', 'guest_login' => 'Gästinloggning',
'guest_login_disabled' => 'Gästinloggningen är inaktiverad.', 'guest_login_disabled' => 'Gästinloggningen är inaktiverad.',
'hash' => '',
'help' => 'Hjälp', 'help' => 'Hjälp',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -805,6 +817,7 @@ URL: [url]',
'personal_default_keywords' => 'Personlig nyckelordslista', 'personal_default_keywords' => 'Personlig nyckelordslista',
'pl_PL' => 'polska', 'pl_PL' => 'polska',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -999,6 +1012,7 @@ URL: [url]',
'select_one' => 'Välj', 'select_one' => 'Välj',
'select_users' => 'Välj användare', 'select_users' => 'Välj användare',
'select_workflow' => 'Välj arbetsflöde', 'select_workflow' => 'Välj arbetsflöde',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'september', 'september' => 'september',
'sequence' => 'Position', 'sequence' => 'Position',
@ -1200,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_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' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Konfigurera flera inställningar. Standard-inloggning: admin/admin', 'settings_more_settings' => 'Konfigurera flera inställningar. Standard-inloggning: admin/admin',
'settings_notfound' => 'Hittades inte', 'settings_notfound' => 'Hittades inte',
'settings_Notification' => 'Meddelandeinställningar', 'settings_Notification' => 'Meddelandeinställningar',
@ -1340,6 +1356,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Användare sparat', 'splash_edit_user' => 'Användare sparat',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => 'Spara katalog ändringar', 'splash_folder_edited' => 'Spara katalog ändringar',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'Ogiltigt katalog ID', 'splash_invalid_folder_id' => 'Ogiltigt katalog ID',
@ -1350,6 +1368,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Borttagen från urklipp', 'splash_removed_from_clipboard' => 'Borttagen från urklipp',
'splash_rm_attribute' => 'Attribut har tagits bort', 'splash_rm_attribute' => 'Attribut har tagits bort',
'splash_rm_document' => 'Dokument borttaget', 'splash_rm_document' => 'Dokument borttaget',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Mapp raderad', 'splash_rm_folder' => 'Mapp raderad',
'splash_rm_group' => 'Grupp har tagits bort', 'splash_rm_group' => 'Grupp har tagits bort',
'splash_rm_group_member' => 'Gruppmedlem har tagits bort', 'splash_rm_group_member' => 'Gruppmedlem har tagits bort',
@ -1357,6 +1376,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Användare har tagits bort', 'splash_rm_user' => 'Användare har tagits bort',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Inställningar sparat', 'splash_settings_saved' => 'Inställningar sparat',
'splash_substituted_user' => 'Bytt användare', 'splash_substituted_user' => 'Bytt användare',
'splash_switched_back_user' => 'Byt tillbaka till original användare', 'splash_switched_back_user' => 'Byt tillbaka till original användare',
@ -1506,6 +1526,7 @@ URL: [url]',
'use_comment_of_document' => 'Använd dokumentets kommentar', 'use_comment_of_document' => 'Använd dokumentets kommentar',
'use_default_categories' => 'Använd fördefinerade kategorier', 'use_default_categories' => 'Använd fördefinerade kategorier',
'use_default_keywords' => 'Använd fördefinerade nyckelord', 'use_default_keywords' => 'Använd fördefinerade nyckelord',
'valid_till' => '',
'version' => 'Version', 'version' => 'Version',
'versioning_file_creation' => 'Skapa versionsfil', '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.', '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.',

View File

@ -384,6 +384,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Erişim haklarını devir al', 'does_not_inherit_access_msg' => 'Erişim haklarını devir al',
'download' => 'İndir', 'download' => 'İndir',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Tüm klasörleri ve dokümanları onar.', 'do_object_repair' => 'Tüm klasörleri ve dokümanları onar.',
'do_object_setchecksum' => 'Sağlama (checksum) ayarla', 'do_object_setchecksum' => 'Sağlama (checksum) ayarla',
'do_object_setfilesize' => 'Dosya boyutu ayarla', 'do_object_setfilesize' => 'Dosya boyutu ayarla',
@ -451,7 +453,16 @@ URL: [url]',
'event_details' => 'Etkinkil detayları', 'event_details' => 'Etkinkil detayları',
'exclude_items' => '', 'exclude_items' => '',
'expired' => 'Süresi doldu', 'expired' => 'Süresi doldu',
'expired_at_date' => '',
'expires' => 'Süresinin dolacağı zaman', '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' => 'Süresinin dolacağı tarihi değişti',
'expiry_changed_email_body' => 'Bitiş tarihi değişti 'expiry_changed_email_body' => 'Bitiş tarihi değişti
Doküman: [name] Doküman: [name]
@ -534,6 +545,7 @@ URL: [url]',
'group_review_summary' => 'Grup gözden geçirme özeti', 'group_review_summary' => 'Grup gözden geçirme özeti',
'guest_login' => 'Misafir olarak giriş yap', 'guest_login' => 'Misafir olarak giriş yap',
'guest_login_disabled' => 'Misafir girişi devre dışı.', 'guest_login_disabled' => 'Misafir girişi devre dışı.',
'hash' => '',
'help' => 'Yardım', 'help' => 'Yardım',
'home_folder' => 'Temel klasör', 'home_folder' => 'Temel klasör',
'hook_name' => '', 'hook_name' => '',
@ -821,6 +833,7 @@ Giriş yaparken halen sorun yaşıyorsanız lütfen sistem yöneticinizle görü
'personal_default_keywords' => 'Kişisel anahtar kelimeler', 'personal_default_keywords' => 'Kişisel anahtar kelimeler',
'pl_PL' => 'Polonyaca', 'pl_PL' => 'Polonyaca',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => 'Önizle', 'preview' => 'Önizle',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -1015,6 +1028,7 @@ URL: [url]',
'select_one' => 'Birini seçiniz', 'select_one' => 'Birini seçiniz',
'select_users' => 'Kullanıcı seçmek için tıklayın', 'select_users' => 'Kullanıcı seçmek için tıklayın',
'select_workflow' => 'İş akışı seç', 'select_workflow' => 'İş akışı seç',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => 'Eylül', 'september' => 'Eylül',
'sequence' => 'Sıralama', 'sequence' => 'Sıralama',
@ -1216,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ııldığında klasörün içindeki dosya ve diğer klasörlerin sayısı tahmin yolu ile belirlenecektir.', '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ııldığında klasörün içindeki dosya ve diğer klasörlerin sayısı tahmin yolu ile belirlenecektir.',
'settings_maxSizeForFullText' => '', 'settings_maxSizeForFullText' => '',
'settings_maxSizeForFullText_desc' => '', '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_more_settings' => 'Daha fazla ayar yapın. Varsayılan kullanıcı adı/parola: admin/admin',
'settings_notfound' => 'Bulunamadı', 'settings_notfound' => 'Bulunamadı',
'settings_Notification' => 'Bildirim ayarları', 'settings_Notification' => 'Bildirim ayarları',
@ -1356,6 +1372,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Kullanıcı kaydedildi', 'splash_edit_user' => 'Kullanıcı kaydedildi',
'splash_error_add_to_transmittal' => '', '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_folder_edited' => 'Klasör değişiklikleri kaydedildi',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'Hatalı klasör ID', 'splash_invalid_folder_id' => 'Hatalı klasör ID',
@ -1366,6 +1384,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Panodan silindi', 'splash_removed_from_clipboard' => 'Panodan silindi',
'splash_rm_attribute' => 'Nitelik silindi', 'splash_rm_attribute' => 'Nitelik silindi',
'splash_rm_document' => 'Doküman silindi', 'splash_rm_document' => 'Doküman silindi',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Klasör silindi', 'splash_rm_folder' => 'Klasör silindi',
'splash_rm_group' => 'Grup silindi', 'splash_rm_group' => 'Grup silindi',
'splash_rm_group_member' => 'Grup üyesi silindi', 'splash_rm_group_member' => 'Grup üyesi silindi',
@ -1373,6 +1392,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Kullanıcı silindi', 'splash_rm_user' => 'Kullanıcı silindi',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Ayarlar kaydedildi', 'splash_settings_saved' => 'Ayarlar kaydedildi',
'splash_substituted_user' => 'Yerine geçilen kullanıcı', 'splash_substituted_user' => 'Yerine geçilen kullanıcı',
'splash_switched_back_user' => 'Orijinal kullanıcıya geri dönüldü', 'splash_switched_back_user' => 'Orijinal kullanıcıya geri dönüldü',
@ -1522,6 +1542,7 @@ URL: [url]',
'use_comment_of_document' => 'Doküman açıklamasını kullan', 'use_comment_of_document' => 'Doküman açıklamasını kullan',
'use_default_categories' => 'Ön tanımlı kategorileri kullan', 'use_default_categories' => 'Ön tanımlı kategorileri kullan',
'use_default_keywords' => 'Ön tanımlı anahtar kelimeleri kullan', 'use_default_keywords' => 'Ön tanımlı anahtar kelimeleri kullan',
'valid_till' => '',
'version' => 'Versiyon', 'version' => 'Versiyon',
'versioning_file_creation' => 'Version dosyası oluşturma', '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.', '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.',

View File

@ -390,6 +390,8 @@ URL: [url]',
'does_not_inherit_access_msg' => 'Наслідувати рівень доступу', 'does_not_inherit_access_msg' => 'Наслідувати рівень доступу',
'download' => 'Завантажити', 'download' => 'Завантажити',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => 'Виправити всі каталоги і документи', 'do_object_repair' => 'Виправити всі каталоги і документи',
'do_object_setchecksum' => 'Встановити контрольну суму', 'do_object_setchecksum' => 'Встановити контрольну суму',
'do_object_setfilesize' => 'Встановити розмір файлу', 'do_object_setfilesize' => 'Встановити розмір файлу',
@ -457,7 +459,16 @@ URL: [url]',
'event_details' => 'Інформація про подію', 'event_details' => 'Інформація про подію',
'exclude_items' => 'Виключені елементи', 'exclude_items' => 'Виключені елементи',
'expired' => 'Термін виконання вийшов', 'expired' => 'Термін виконання вийшов',
'expired_at_date' => '',
'expires' => 'Термін виконання виходить', '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' => 'Дату терміну виконання змінено',
'expiry_changed_email_body' => 'Змінено дату терміну виконання 'expiry_changed_email_body' => 'Змінено дату терміну виконання
Документ: [name] Документ: [name]
@ -540,6 +551,7 @@ URL: [url]',
'group_review_summary' => 'Підсумки рецензування групи', 'group_review_summary' => 'Підсумки рецензування групи',
'guest_login' => 'Увійти як гість', 'guest_login' => 'Увійти як гість',
'guest_login_disabled' => 'Гостьовий вхід відключено', 'guest_login_disabled' => 'Гостьовий вхід відключено',
'hash' => '',
'help' => 'Допомога', 'help' => 'Допомога',
'home_folder' => 'Домашній каталог', 'home_folder' => 'Домашній каталог',
'hook_name' => '', 'hook_name' => '',
@ -822,6 +834,7 @@ URL: [url]',
'personal_default_keywords' => 'Особистий список ключових слів', 'personal_default_keywords' => 'Особистий список ключових слів',
'pl_PL' => 'Polish', 'pl_PL' => 'Polish',
'possible_substitutes' => 'Підстановки', 'possible_substitutes' => 'Підстановки',
'preset_expires' => '',
'preview' => 'Попередній перегляд', 'preview' => 'Попередній перегляд',
'preview_converters' => 'Попередній перегляд перетворення документу', 'preview_converters' => 'Попередній перегляд перетворення документу',
'preview_images' => '', 'preview_images' => '',
@ -1036,6 +1049,7 @@ URL: [url]',
'select_one' => 'Оберіть', 'select_one' => 'Оберіть',
'select_users' => 'Оберіть користувачів', 'select_users' => 'Оберіть користувачів',
'select_workflow' => 'Оберіть процес', 'select_workflow' => 'Оберіть процес',
'send_email' => '',
'send_test_mail' => 'Надіслати тестове повідомлення', 'send_test_mail' => 'Надіслати тестове повідомлення',
'september' => 'Вересень', 'september' => 'Вересень',
'sequence' => 'Позиція', 'sequence' => 'Позиція',
@ -1237,6 +1251,8 @@ URL: [url]',
'settings_maxRecursiveCount_desc' => 'Максимальна кількість документів і каталогів, які будуть перевірені на права доступу при рекурсивному підрахунку об\'єктів. При перевищенні цієї кількості, буде оцінено кількість документів і каталогів у вигляді каталогу.', 'settings_maxRecursiveCount_desc' => 'Максимальна кількість документів і каталогів, які будуть перевірені на права доступу при рекурсивному підрахунку об\'єктів. При перевищенні цієї кількості, буде оцінено кількість документів і каталогів у вигляді каталогу.',
'settings_maxSizeForFullText' => '', 'settings_maxSizeForFullText' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => 'Інші налаштування. Логін по замовчуванню: admin/admin', 'settings_more_settings' => 'Інші налаштування. Логін по замовчуванню: admin/admin',
'settings_notfound' => 'Не знайдено', 'settings_notfound' => 'Не знайдено',
'settings_Notification' => 'Налаштування сповіщення', 'settings_Notification' => 'Налаштування сповіщення',
@ -1377,6 +1393,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => 'Користувача збережено', 'splash_edit_user' => 'Користувача збережено',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => 'Зміни каталогу збережено', 'splash_folder_edited' => 'Зміни каталогу збережено',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => 'Невірний ідентифікатор каталогу', 'splash_invalid_folder_id' => 'Невірний ідентифікатор каталогу',
@ -1387,6 +1405,7 @@ URL: [url]',
'splash_removed_from_clipboard' => 'Видалити з буферу обміну', 'splash_removed_from_clipboard' => 'Видалити з буферу обміну',
'splash_rm_attribute' => 'Атрибут видалено', 'splash_rm_attribute' => 'Атрибут видалено',
'splash_rm_document' => 'Документ видалено', 'splash_rm_document' => 'Документ видалено',
'splash_rm_download_link' => '',
'splash_rm_folder' => 'Папку видалено', 'splash_rm_folder' => 'Папку видалено',
'splash_rm_group' => 'Групу видалено', 'splash_rm_group' => 'Групу видалено',
'splash_rm_group_member' => 'Члена групи видалено', 'splash_rm_group_member' => 'Члена групи видалено',
@ -1394,6 +1413,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => 'Користувача видалено', 'splash_rm_user' => 'Користувача видалено',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => 'Налаштування збережено', 'splash_settings_saved' => 'Налаштування збережено',
'splash_substituted_user' => 'Користувача переключено', 'splash_substituted_user' => 'Користувача переключено',
'splash_switched_back_user' => 'Переключено на початкового користувача', 'splash_switched_back_user' => 'Переключено на початкового користувача',
@ -1543,6 +1563,7 @@ URL: [url]',
'use_comment_of_document' => 'Використовувати коментар документа', 'use_comment_of_document' => 'Використовувати коментар документа',
'use_default_categories' => 'Використовувати наперед визначені категорії', 'use_default_categories' => 'Використовувати наперед визначені категорії',
'use_default_keywords' => 'Використовувати наперед визначені ключові слова', 'use_default_keywords' => 'Використовувати наперед визначені ключові слова',
'valid_till' => '',
'version' => 'Версія', 'version' => 'Версія',
'versioning_file_creation' => 'Створити файл версій', 'versioning_file_creation' => 'Створити файл версій',
'versioning_file_creation_warning' => 'Ця операція створить файли версій для всього каталогу. Після створення файли версій будуть збережені в каталозі документів.', 'versioning_file_creation_warning' => 'Ця операція створить файли версій для всього каталогу. Після створення файли версій будуть збережені в каталозі документів.',

View File

@ -19,7 +19,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
// Translators: Admin (678), fengjohn (5) // Translators: Admin (679), fengjohn (5)
$text = array( $text = array(
'2_factor_auth' => '', '2_factor_auth' => '',
@ -339,6 +339,8 @@ URL: [url]',
'does_not_inherit_access_msg' => '继承访问权限', 'does_not_inherit_access_msg' => '继承访问权限',
'download' => '下载', 'download' => '下载',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => '', 'do_object_repair' => '',
'do_object_setchecksum' => '', 'do_object_setchecksum' => '',
'do_object_setfilesize' => '设置文件大小', 'do_object_setfilesize' => '设置文件大小',
@ -406,7 +408,16 @@ URL: [url]',
'event_details' => '错误详情', 'event_details' => '错误详情',
'exclude_items' => '', 'exclude_items' => '',
'expired' => '过期', 'expired' => '过期',
'expired_at_date' => '',
'expires' => '有效限期', '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' => '到期日子已改变',
'expiry_changed_email_body' => '', 'expiry_changed_email_body' => '',
'expiry_changed_email_subject' => '', 'expiry_changed_email_subject' => '',
@ -465,6 +476,7 @@ URL: [url]',
'group_review_summary' => '校对组汇总', 'group_review_summary' => '校对组汇总',
'guest_login' => '来宾登录', 'guest_login' => '来宾登录',
'guest_login_disabled' => '来宾登录被禁止', 'guest_login_disabled' => '来宾登录被禁止',
'hash' => '',
'help' => '帮助', 'help' => '帮助',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -671,7 +683,7 @@ URL: [url]',
'no_revision_planed' => '', 'no_revision_planed' => '',
'no_update_cause_locked' => '您不能更新此文档,请联系该文档锁定人', 'no_update_cause_locked' => '您不能更新此文档,请联系该文档锁定人',
'no_user_image' => '无图片', 'no_user_image' => '无图片',
'no_version_check' => '', 'no_version_check' => '检查SeedDMS的新版本失败这可能是由于在您的php配置中allow_url_fopen设置为0引起的。',
'no_version_modification' => '', 'no_version_modification' => '',
'no_workflow_available' => '', 'no_workflow_available' => '',
'objectcheck' => '文件夹/文件检查', 'objectcheck' => '文件夹/文件检查',
@ -712,6 +724,7 @@ URL: [url]',
'personal_default_keywords' => '用户关键字', 'personal_default_keywords' => '用户关键字',
'pl_PL' => '波兰语', 'pl_PL' => '波兰语',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '预览', 'preview' => '预览',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -870,6 +883,7 @@ URL: [url]',
'select_one' => '选择一个', 'select_one' => '选择一个',
'select_users' => '点击选择用户', 'select_users' => '点击选择用户',
'select_workflow' => '', 'select_workflow' => '',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => '九 月', 'september' => '九 月',
'sequence' => '次序', 'sequence' => '次序',
@ -1071,6 +1085,8 @@ URL: [url]',
'settings_maxRecursiveCount_desc' => '', 'settings_maxRecursiveCount_desc' => '',
'settings_maxSizeForFullText' => '', 'settings_maxSizeForFullText' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => '', 'settings_more_settings' => '',
'settings_notfound' => '', 'settings_notfound' => '',
'settings_Notification' => '通知设置', 'settings_Notification' => '通知设置',
@ -1211,6 +1227,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => '', 'splash_edit_user' => '',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => '', 'splash_folder_edited' => '',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => '', 'splash_invalid_folder_id' => '',
@ -1221,6 +1239,7 @@ URL: [url]',
'splash_removed_from_clipboard' => '已从剪切板删除', 'splash_removed_from_clipboard' => '已从剪切板删除',
'splash_rm_attribute' => '', 'splash_rm_attribute' => '',
'splash_rm_document' => '文档已被移除', 'splash_rm_document' => '文档已被移除',
'splash_rm_download_link' => '',
'splash_rm_folder' => '已删除的文件夹', 'splash_rm_folder' => '已删除的文件夹',
'splash_rm_group' => '', 'splash_rm_group' => '',
'splash_rm_group_member' => '', 'splash_rm_group_member' => '',
@ -1228,6 +1247,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => '', 'splash_rm_user' => '',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => '', 'splash_settings_saved' => '',
'splash_substituted_user' => '', 'splash_substituted_user' => '',
'splash_switched_back_user' => '', 'splash_switched_back_user' => '',
@ -1368,6 +1388,7 @@ URL: [url]',
'use_comment_of_document' => '文档注释', 'use_comment_of_document' => '文档注释',
'use_default_categories' => '默认分类', 'use_default_categories' => '默认分类',
'use_default_keywords' => '使用预定义关键字', 'use_default_keywords' => '使用预定义关键字',
'valid_till' => '',
'version' => '版本', 'version' => '版本',
'versioning_file_creation' => '创建版本文件', 'versioning_file_creation' => '创建版本文件',
'versioning_file_creation_warning' => '通过此操作您可以一个包含整个DMS文件夹的版本信息文件. 版本文件一经创建,每个文件都将保存到文件夹中.', 'versioning_file_creation_warning' => '通过此操作您可以一个包含整个DMS文件夹的版本信息文件. 版本文件一经创建,每个文件都将保存到文件夹中.',

View File

@ -19,7 +19,7 @@
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
// Translators: Admin (2376) // Translators: Admin (2377)
$text = array( $text = array(
'2_factor_auth' => '', '2_factor_auth' => '',
@ -337,6 +337,8 @@ URL: [url]',
'does_not_inherit_access_msg' => '繼承存取權限', 'does_not_inherit_access_msg' => '繼承存取權限',
'download' => '下載', 'download' => '下載',
'download_links' => '', 'download_links' => '',
'download_link_email_body' => '',
'download_link_email_subject' => '',
'do_object_repair' => '', 'do_object_repair' => '',
'do_object_setchecksum' => '', 'do_object_setchecksum' => '',
'do_object_setfilesize' => '', 'do_object_setfilesize' => '',
@ -404,7 +406,16 @@ URL: [url]',
'event_details' => '錯誤詳情', 'event_details' => '錯誤詳情',
'exclude_items' => '', 'exclude_items' => '',
'expired' => '過期', 'expired' => '過期',
'expired_at_date' => '',
'expires' => '有效限期', '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' => '到期日子已改變',
'expiry_changed_email_body' => '', 'expiry_changed_email_body' => '',
'expiry_changed_email_subject' => '', 'expiry_changed_email_subject' => '',
@ -463,6 +474,7 @@ URL: [url]',
'group_review_summary' => '校對組匯總', 'group_review_summary' => '校對組匯總',
'guest_login' => '來賓登錄', 'guest_login' => '來賓登錄',
'guest_login_disabled' => '來賓登錄被禁止', 'guest_login_disabled' => '來賓登錄被禁止',
'hash' => '',
'help' => '幫助', 'help' => '幫助',
'home_folder' => '', 'home_folder' => '',
'hook_name' => '', 'hook_name' => '',
@ -710,6 +722,7 @@ URL: [url]',
'personal_default_keywords' => '用戶關鍵字', 'personal_default_keywords' => '用戶關鍵字',
'pl_PL' => '波蘭語', 'pl_PL' => '波蘭語',
'possible_substitutes' => '', 'possible_substitutes' => '',
'preset_expires' => '',
'preview' => '', 'preview' => '',
'preview_converters' => '', 'preview_converters' => '',
'preview_images' => '', 'preview_images' => '',
@ -841,7 +854,7 @@ URL: [url]',
'search_query' => '搜索', 'search_query' => '搜索',
'search_report' => '找到 [count] 個文檔', 'search_report' => '找到 [count] 個文檔',
'search_report_fulltext' => '', 'search_report_fulltext' => '',
'search_resultmode' => '', 'search_resultmode' => '搜尋結果',
'search_resultmode_both' => '', 'search_resultmode_both' => '',
'search_results' => '搜索結果', 'search_results' => '搜索結果',
'search_results_access_filtered' => '搜索到得結果中可能包含受限訪問的文檔', 'search_results_access_filtered' => '搜索到得結果中可能包含受限訪問的文檔',
@ -868,6 +881,7 @@ URL: [url]',
'select_one' => '選擇一個', 'select_one' => '選擇一個',
'select_users' => '點擊選擇用戶', 'select_users' => '點擊選擇用戶',
'select_workflow' => '', 'select_workflow' => '',
'send_email' => '',
'send_test_mail' => '', 'send_test_mail' => '',
'september' => '九 月', 'september' => '九 月',
'sequence' => '次序', 'sequence' => '次序',
@ -1069,6 +1083,8 @@ URL: [url]',
'settings_maxRecursiveCount_desc' => '', 'settings_maxRecursiveCount_desc' => '',
'settings_maxSizeForFullText' => '', 'settings_maxSizeForFullText' => '',
'settings_maxSizeForFullText_desc' => '', 'settings_maxSizeForFullText_desc' => '',
'settings_maxUploadSize' => '',
'settings_maxUploadSize_desc' => '',
'settings_more_settings' => '', 'settings_more_settings' => '',
'settings_notfound' => '', 'settings_notfound' => '',
'settings_Notification' => '通知設置', 'settings_Notification' => '通知設置',
@ -1209,6 +1225,8 @@ URL: [url]',
'splash_edit_role' => '', 'splash_edit_role' => '',
'splash_edit_user' => '', 'splash_edit_user' => '',
'splash_error_add_to_transmittal' => '', 'splash_error_add_to_transmittal' => '',
'splash_error_rm_download_link' => '',
'splash_error_send_download_link' => '',
'splash_folder_edited' => '', 'splash_folder_edited' => '',
'splash_importfs' => '', 'splash_importfs' => '',
'splash_invalid_folder_id' => '', 'splash_invalid_folder_id' => '',
@ -1219,6 +1237,7 @@ URL: [url]',
'splash_removed_from_clipboard' => '', 'splash_removed_from_clipboard' => '',
'splash_rm_attribute' => '', 'splash_rm_attribute' => '',
'splash_rm_document' => '文檔已被移除', 'splash_rm_document' => '文檔已被移除',
'splash_rm_download_link' => '',
'splash_rm_folder' => '已刪除的資料夾', 'splash_rm_folder' => '已刪除的資料夾',
'splash_rm_group' => '', 'splash_rm_group' => '',
'splash_rm_group_member' => '', 'splash_rm_group_member' => '',
@ -1226,6 +1245,7 @@ URL: [url]',
'splash_rm_transmittal' => '', 'splash_rm_transmittal' => '',
'splash_rm_user' => '', 'splash_rm_user' => '',
'splash_saved_file' => '', 'splash_saved_file' => '',
'splash_send_download_link' => '',
'splash_settings_saved' => '', 'splash_settings_saved' => '',
'splash_substituted_user' => '', 'splash_substituted_user' => '',
'splash_switched_back_user' => '', 'splash_switched_back_user' => '',
@ -1366,6 +1386,7 @@ URL: [url]',
'use_comment_of_document' => '', 'use_comment_of_document' => '',
'use_default_categories' => '默認分類', 'use_default_categories' => '默認分類',
'use_default_keywords' => '使用預定義關鍵字', 'use_default_keywords' => '使用預定義關鍵字',
'valid_till' => '',
'version' => '版本', 'version' => '版本',
'versioning_file_creation' => '創建版本檔', 'versioning_file_creation' => '創建版本檔',
'versioning_file_creation_warning' => '通過此操作您可以一個包含整個DMS資料夾的版本資訊檔. 版本檔一經創建,每個檔都將保存到資料夾中.', 'versioning_file_creation_warning' => '通過此操作您可以一個包含整個DMS資料夾的版本資訊檔. 版本檔一經創建,每個檔都將保存到資料夾中.',

View File

@ -511,89 +511,6 @@ switch($command) {
} }
break; /* }}} */ break; /* }}} */
case 'view': /* {{{ */
require_once("SeedDMS/Preview.php");
require_once("../inc/inc.ClassAccessOperation.php");
$view = UI::factory($theme, '', array('dms'=>$dms, 'user'=>$user));
$accessop = new SeedDMS_AccessOperation($dms, $user, $settings);
if($view) {
$view->setParam('refferer', '');
$view->setParam('cachedir', $settings->_cacheDir);
$view->setParam('accessobject', $accessop);
}
$content = '';
$viewname = $_REQUEST["view"];
switch($viewname) {
case 'menuclipboard':
$content = $view->menuClipboard($session->getClipboard());
break;
case 'menutasks':
$reviews = array();
$approvals = array();
$receipts = array();
$revisions = array();
$resArr = $dms->getDocumentList('ApproveByMe', $user);
if($resArr) {
foreach ($resArr as $res) {
$document = $dms->getDocument($res["id"]);
if($document->getAccessMode($user) >= M_READ && $document->getLatestContent()) {
$approvals[] = $res['id'];
}
}
}
$resArr = $dms->getDocumentList('ReviewByMe', $user);
if($resArr) {
foreach ($resArr as $res) {
$document = $dms->getDocument($res["id"]);
if($document->getAccessMode($user) >= M_READ && $document->getLatestContent()) {
$reviews[] = $res['id'];
}
}
}
$resArr = $dms->getDocumentList('ReceiptByMe', $user);
if($resArr) {
foreach ($resArr as $res) {
$document = $dms->getDocument($res["id"]);
if($document->getAccessMode($user) >= M_READ && $document->getLatestContent()) {
$receipts[] = $res['id'];
}
}
}
$resArr = $dms->getDocumentList('ReviseByMe', $user);
if($resArr) {
foreach ($resArr as $res) {
$document = $dms->getDocument($res["id"]);
if($document->getAccessMode($user) >= M_READ && $document->getLatestContent()) {
$revisions[] = $res['id'];
}
}
}
$content = $view->menuTasks(array('review'=>$reviews, 'approval'=>$approvals, 'receipt'=>$receipts, 'revision'=>$revisions));
break;
case 'mainclipboard':
$previewer = new SeedDMS_Preview_Previewer($settings->_cacheDir, $settings->_previewWidthList);
$previewer->setConverters($settings->_converters['preview']);
$content = $view->mainClipboard($session->getClipboard(), $previewer);
break;
case 'documentlistrow':
$document = $dms->getDocument($_REQUEST['id']);
if($document) {
if ($document->getAccessMode($user) >= M_READ) {
$previewer = new SeedDMS_Preview_Previewer($settings->_cacheDir, $settings->_previewWidthList);
$previewer->setConverters($settings->_converters['preview']);
$view->setParam('previewWidthList', $settings->_previewWidthList);
$view->setParam('showtree', showtree());
$content = $view->documentListRow($document, $previewer, true);
}
}
break;
default:
$content = '';
}
echo $content;
break; /* }}} */
case 'uploaddocument': /* {{{ */ case 'uploaddocument': /* {{{ */
if($user) { if($user) {
if(checkFormKey('adddocument')) { if(checkFormKey('adddocument')) {

View File

@ -117,6 +117,7 @@ if ($action == "saveSettings")
$settings->_logFileRotation = $_POST["logFileRotation"]; $settings->_logFileRotation = $_POST["logFileRotation"];
$settings->_enableLargeFileUpload = getBoolValue("enableLargeFileUpload"); $settings->_enableLargeFileUpload = getBoolValue("enableLargeFileUpload");
$settings->_partitionSize = $_POST["partitionSize"]; $settings->_partitionSize = $_POST["partitionSize"];
$settings->_maxUploadSize = $_POST["maxUploadSize"];
// SETTINGS - SYSTEM - AUTHENTICATION // SETTINGS - SYSTEM - AUTHENTICATION
$settings->_enableGuestLogin = getBoolValue("enableGuestLogin"); $settings->_enableGuestLogin = getBoolValue("enableGuestLogin");

42
out/out.Clipboard.php Normal file
View File

@ -0,0 +1,42 @@
<?php
// MyDMS. Document Management System
// Copyright (C) 2002-2005 Markus Westphal
// Copyright (C) 2006-2008 Malcolm Cowe
// Copyright (C) 2010 Matteo Lucarelli
// Copyright (C) 2010-2016 Uwe Steinmann
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
include("../inc/inc.Settings.php");
include("../inc/inc.Utils.php");
include("../inc/inc.Language.php");
include("../inc/inc.Init.php");
include("../inc/inc.Extension.php");
include("../inc/inc.DBInit.php");
include("../inc/inc.Authentication.php");
include("../inc/inc.ClassAccessOperation.php");
include("../inc/inc.ClassUI.php");
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
if($view) {
$view->setParam('previewWidthList', $settings->_previewWidthList);
$view->setParam('timeout', $settings->_cmdTimeout);
$view($_GET);
exit;
}
?>

View File

@ -320,6 +320,9 @@ ul.qq-upload-list li span {
border: 1px solid #cccccc; border: 1px solid #cccccc;
border-radius: 4px; border-radius: 4px;
} }
.qq-hide, .qq-uploader dialog {
display: none;
}
@media (max-width: 480px) { @media (max-width: 480px) {
.nav-tabs > li { .nav-tabs > li {

View File

@ -165,8 +165,10 @@ $(document).ready( function() {
{ command: 'addtoclipboard', type: type, id: id }, { command: 'addtoclipboard', type: type, id: id },
function(data) { function(data) {
if(data.success) { if(data.success) {
$("#main-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=mainclipboard') // $("#main-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=mainclipboard')
$("#menu-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=menuclipboard') $("#main-clipboard").html('Loading').load('../out/out.Clipboard.php?action=mainclipboard')
//$("#menu-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=menuclipboard')
$("#menu-clipboard").html('Loading').load('../out/out.Clipboard.php?action=menuclipboard')
noty({ noty({
text: attr_msg, text: attr_msg,
type: 'success', type: 'success',
@ -200,8 +202,10 @@ $(document).ready( function() {
{ command: 'removefromclipboard', type: type, id: id }, { command: 'removefromclipboard', type: type, id: id },
function(data) { function(data) {
if(data.success) { if(data.success) {
$("#main-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=mainclipboard') // $("#main-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=mainclipboard')
$("#menu-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=menuclipboard') $("#main-clipboard").html('Loading').load('../out/out.Clipboard.php?action=mainclipboard')
//$("#menu-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=menuclipboard')
$("#menu-clipboard").html('Loading').load('../out/out.Clipboard.php?action=menuclipboard')
noty({ noty({
text: attr_msg, text: attr_msg,
type: 'success', type: 'success',
@ -234,7 +238,8 @@ $(document).ready( function() {
{ command: 'tooglelockdocument', id: id }, { command: 'tooglelockdocument', id: id },
function(data) { function(data) {
if(data.success) { if(data.success) {
$("#table-row-document-"+id).html('Loading').load('../op/op.Ajax.php?command=view&view=documentlistrow&id='+id) //$("#table-row-document-"+id).html('Loading').load('../op/op.Ajax.php?command=view&view=documentlistrow&id='+id)
$("#table-row-document-"+id).html('Loading').load('../out/out.ViewDocument.php?action=documentlistitem&documentid='+id)
noty({ noty({
text: attr_msg, text: attr_msg,
type: 'success', type: 'success',
@ -451,8 +456,10 @@ $(document).ready( function() {
success: function(data){ success: function(data){
if(data.success) { if(data.success) {
if(element.data('param1') == 'command=clearclipboard') { if(element.data('param1') == 'command=clearclipboard') {
$("#main-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=mainclipboard') // $("#main-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=mainclipboard')
$("#menu-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=menuclipboard') $("#main-clipboard").html('Loading').load('../out/out.Clipboard.php?action=mainclipboard')
//$("#menu-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=menuclipboard')
$("#menu-clipboard").html('Loading').load('../out/out.Clipboard.php?action=menuclipboard')
} }
noty({ noty({
text: data.message, text: data.message,
@ -494,8 +501,10 @@ function onAddClipboard(ev) { /* {{{ */
{ command: 'addtoclipboard', type: source_type, id: source_id }, { command: 'addtoclipboard', type: source_type, id: source_id },
function(data) { function(data) {
if(data.success) { if(data.success) {
$("#main-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=mainclipboard') // $("#main-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=mainclipboard')
$("#menu-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=menuclipboard') $("#main-clipboard").html('Loading').load('../out/out.Clipboard.php?action=mainclipboard')
//$("#menu-clipboard").html('Loading').load('../op/op.Ajax.php?command=view&view=menuclipboard')
$("#menu-clipboard").html('Loading').load('../out/out.Clipboard.php?action=menuclipboard')
noty({ noty({
text: data.message, text: data.message,
type: 'success', type: 'success',

View File

@ -7411,4 +7411,4 @@
}); });
}; };
})(window); })(window);
//# sourceMappingURL=fine-uploader.js.map //# sourceMappingURL=fine-uploader.js.map

View File

@ -35,11 +35,12 @@ class SeedDMS_View_AddDocument extends SeedDMS_Bootstrap_Style {
$libraryfolder = $this->params['libraryfolder']; $libraryfolder = $this->params['libraryfolder'];
$dropfolderdir = $this->params['dropfolderdir']; $dropfolderdir = $this->params['dropfolderdir'];
$partitionsize = $this->params['partitionsize']; $partitionsize = $this->params['partitionsize'];
$maxuploadsize = $this->params['maxuploadsize'];
$enablelargefileupload = $this->params['enablelargefileupload']; $enablelargefileupload = $this->params['enablelargefileupload'];
header('Content-Type: application/javascript; charset=UTF-8'); header('Content-Type: application/javascript; charset=UTF-8');
if($enablelargefileupload) if($enablelargefileupload)
$this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize); $this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize, $maxuploadsize);
?> ?>
$(document).ready(function() { $(document).ready(function() {
$('#new-file').click(function(event) { $('#new-file').click(function(event) {
@ -156,8 +157,10 @@ $(document).ready(function() {
$folderid = $folder->getId(); $folderid = $folder->getId();
$this->htmlAddHeader('<script type="text/javascript" src="../styles/'.$this->theme.'/validate/jquery.validate.js"></script>'."\n", 'js'); $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('<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->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))));
$this->globalNavigation($folder); $this->globalNavigation($folder);

View File

@ -34,9 +34,10 @@ class SeedDMS_View_AddFile extends SeedDMS_Bootstrap_Style {
function js() { /* {{{ */ function js() { /* {{{ */
$enablelargefileupload = $this->params['enablelargefileupload']; $enablelargefileupload = $this->params['enablelargefileupload'];
$partitionsize = $this->params['partitionsize']; $partitionsize = $this->params['partitionsize'];
$maxuploadsize = $this->params['maxuploadsize'];
header('Content-Type: application/javascript'); header('Content-Type: application/javascript');
if($enablelargefileupload) if($enablelargefileupload)
$this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize); $this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize, $maxuploadsize);
?> ?>
$(document).ready( function() { $(document).ready( function() {
@ -119,8 +120,10 @@ $(document).ready( function() {
$enablelargefileupload = $this->params['enablelargefileupload']; $enablelargefileupload = $this->params['enablelargefileupload'];
$this->htmlAddHeader('<script type="text/javascript" src="../styles/'.$this->theme.'/validate/jquery.validate.js"></script>'."\n", 'js'); $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('<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->htmlStartPage(getMLText("document_title", array("documentname" => htmlspecialchars($document->getName()))));
$this->globalNavigation($folder); $this->globalNavigation($folder);

View File

@ -64,6 +64,12 @@ class SeedDMS_Bootstrap_Style extends SeedDMS_View_Common {
header($csp . ": " . $csp_rules); header($csp . ": " . $csp_rules);
} }
} }
$hookObjs = $this->getHookObjects('SeedDMS_View_Bootstrap');
foreach($hookObjs as $hookObj) {
if (method_exists($hookObj, 'startPage')) {
$hookObj->startPage($this);
}
}
echo "<!DOCTYPE html>\n"; echo "<!DOCTYPE html>\n";
echo "<html lang=\"en\">\n<head>\n"; echo "<html lang=\"en\">\n<head>\n";
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n"; echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n";
@ -113,6 +119,11 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
$this->params['session']->clearSplashMsg(); $this->params['session']->clearSplashMsg();
echo "<div class=\"splash\" data-type=\"".$flashmsg['type']."\">".$flashmsg['msg']."</div>\n"; echo "<div class=\"splash\" data-type=\"".$flashmsg['type']."\">".$flashmsg['msg']."</div>\n";
} }
foreach($hookObjs as $hookObj) {
if (method_exists($hookObj, 'startBody')) {
$hookObj->startBody($this);
}
}
} /* }}} */ } /* }}} */
function htmlAddHeader($head, $type='js') { /* {{{ */ function htmlAddHeader($head, $type='js') { /* {{{ */
@ -123,7 +134,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
if(!$nofooter) { if(!$nofooter) {
$this->footNote(); $this->footNote();
if($this->params['showmissingtranslations']) { if($this->params['showmissingtranslations']) {
$this->missinganguageKeys(); $this->missingLanguageKeys();
} }
} }
echo '<script src="../styles/'.$this->theme.'/bootstrap/js/bootstrap.min.js"></script>'."\n"; echo '<script src="../styles/'.$this->theme.'/bootstrap/js/bootstrap.min.js"></script>'."\n";
@ -169,7 +180,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
} }
} /* }}} */ } /* }}} */
function missinganguageKeys() { /* {{{ */ function missingLanguageKeys() { /* {{{ */
global $MISSING_LANG, $LANG; global $MISSING_LANG, $LANG;
if($MISSING_LANG) { if($MISSING_LANG) {
echo '<div class="container-fluid">'."\n"; echo '<div class="container-fluid">'."\n";
@ -431,7 +442,7 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
if($this->params['enableclipboard']) { if($this->params['enableclipboard']) {
echo " <div id=\"menu-clipboard\">"; echo " <div id=\"menu-clipboard\">";
echo $this->menuClipboard($this->params['session']->getClipboard()); echo " <div class=\"ajax\" data-view=\"Clipboard\" data-action=\"menuClipboard\"></div>";
echo " </div>"; echo " </div>";
} }
@ -973,74 +984,74 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
function getMimeIcon($fileType) { /* {{{ */ function getMimeIcon($fileType) { /* {{{ */
// for extension use LOWER CASE only // for extension use LOWER CASE only
$icons = array(); $icons = array();
$icons["txt"] = "txt.png"; $icons["txt"] = "text-x-preview.svg";
$icons["text"] = "txt.png"; $icons["text"] = "text-x-preview.svg";
$icons["doc"] = "word.png"; $icons["doc"] = "office-document.svg";
$icons["dot"] = "word.png"; $icons["dot"] = "office-document.svg";
$icons["docx"] = "word.png"; $icons["docx"] = "office-document.svg";
$icons["dotx"] = "word.png"; $icons["dotx"] = "office-document.svg";
$icons["rtf"] = "document.png"; $icons["rtf"] = "office-document.svg";
$icons["xls"] = "excel.png"; $icons["xls"] = "office-spreadsheet.svg";
$icons["xlt"] = "excel.png"; $icons["xlt"] = "office-spreadsheet.svg";
$icons["xlsx"] = "excel.png"; $icons["xlsx"] = "office-spreadsheet.svg";
$icons["xltx"] = "excel.png"; $icons["xltx"] = "office-spreadsheet.svg";
$icons["ppt"] = "powerpoint.png"; $icons["ppt"] = "office-presentation.svg";
$icons["pot"] = "powerpoint.png"; $icons["pot"] = "office-presentation.svg";
$icons["pptx"] = "powerpoint.png"; $icons["pptx"] = "office-presentation.svg";
$icons["potx"] = "powerpoint.png"; $icons["potx"] = "office-presentation.svg";
$icons["exe"] = "binary.png"; $icons["exe"] = "executable.svg";
$icons["html"] = "html.png"; $icons["html"] = "web.svg";
$icons["htm"] = "html.png"; $icons["htm"] = "web.svg";
$icons["gif"] = "image.png"; $icons["gif"] = "image.svg";
$icons["jpg"] = "image.png"; $icons["jpg"] = "image.svg";
$icons["jpeg"] = "image.png"; $icons["jpeg"] = "image.svg";
$icons["bmp"] = "image.png"; $icons["bmp"] = "image.svg";
$icons["png"] = "image.png"; $icons["png"] = "image.svg";
$icons["tif"] = "image.png"; $icons["tif"] = "image.svg";
$icons["tiff"] = "image.png"; $icons["tiff"] = "image.svg";
$icons["log"] = "log.png"; $icons["log"] = "log.png";
$icons["midi"] = "midi.png"; $icons["midi"] = "audio.svg";
$icons["pdf"] = "pdf.png"; $icons["pdf"] = "pdf.png";
$icons["wav"] = "sound.png"; $icons["wav"] = "audio.svg";
$icons["mp3"] = "sound.png"; $icons["mp3"] = "audio.svg";
$icons["c"] = "source_c.png"; $icons["c"] = "source_c.png";
$icons["cpp"] = "source_cpp.png"; $icons["cpp"] = "source_cpp.png";
$icons["h"] = "source_h.png"; $icons["h"] = "source_h.png";
$icons["java"] = "source_java.png"; $icons["java"] = "source_java.png";
$icons["py"] = "source_py.png"; $icons["py"] = "source_py.png";
$icons["tar"] = "tar.png"; $icons["tar"] = "package.svg";
$icons["gz"] = "gz.png"; $icons["gz"] = "gz.png";
$icons["7z"] = "gz.png"; $icons["7z"] = "gz.png";
$icons["bz"] = "gz.png"; $icons["bz"] = "gz.png";
$icons["bz2"] = "gz.png"; $icons["bz2"] = "gz.png";
$icons["tgz"] = "gz.png"; $icons["tgz"] = "gz.png";
$icons["zip"] = "gz.png"; $icons["zip"] = "package.svg";
$icons["rar"] = "gz.png"; $icons["rar"] = "gz.png";
$icons["mpg"] = "video.png"; $icons["mpg"] = "video.svg";
$icons["avi"] = "video.png"; $icons["avi"] = "video.svg";
$icons["tex"] = "tex.png"; $icons["tex"] = "tex.png";
$icons["ods"] = "x-office-spreadsheet.png"; $icons["ods"] = "office-spreadsheet.svg";
$icons["ots"] = "x-office-spreadsheet.png"; $icons["ots"] = "office-spreadsheet.svg";
$icons["sxc"] = "x-office-spreadsheet.png"; $icons["sxc"] = "office-spreadsheet.svg";
$icons["stc"] = "x-office-spreadsheet.png"; $icons["stc"] = "office-spreadsheet.svg";
$icons["odt"] = "x-office-document.png"; $icons["odt"] = "office-document.svg";
$icons["ott"] = "x-office-document.png"; $icons["ott"] = "office-document.svg";
$icons["sxw"] = "x-office-document.png"; $icons["sxw"] = "office-document.svg";
$icons["stw"] = "x-office-document.png"; $icons["stw"] = "office-document.svg";
$icons["odp"] = "ooo_presentation.png"; $icons["odp"] = "office-presentation.svg";
$icons["otp"] = "ooo_presentation.png"; $icons["otp"] = "office-presentation.svg";
$icons["sxi"] = "ooo_presentation.png"; $icons["sxi"] = "office-presentation.svg";
$icons["sti"] = "ooo_presentation.png"; $icons["sti"] = "office-presentation.svg";
$icons["odg"] = "ooo_drawing.png"; $icons["odg"] = "office-drawing.png";
$icons["otg"] = "ooo_drawing.png"; $icons["otg"] = "office-drawing.png";
$icons["sxd"] = "ooo_drawing.png"; $icons["sxd"] = "office-drawing.png";
$icons["std"] = "ooo_drawing.png"; $icons["std"] = "office-drawing.png";
$icons["odf"] = "ooo_formula.png"; $icons["odf"] = "ooo_formula.png";
$icons["sxm"] = "ooo_formula.png"; $icons["sxm"] = "ooo_formula.png";
$icons["smf"] = "ooo_formula.png"; $icons["smf"] = "ooo_formula.png";
$icons["mml"] = "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)); $ext = strtolower(substr($fileType, 1));
if (isset($icons[$ext])) { if (isset($icons[$ext])) {
@ -1774,7 +1785,9 @@ $(function() {
function printClipboard($clipboard, $previewer){ /* {{{ */ function printClipboard($clipboard, $previewer){ /* {{{ */
$this->contentHeading(getMLText("clipboard"), true); $this->contentHeading(getMLText("clipboard"), true);
echo "<div id=\"main-clipboard\">\n"; echo "<div id=\"main-clipboard\">\n";
echo $this->mainClipboard($clipboard, $previewer); ?>
<div class="ajax" data-view="Clipboard" data-action="mainClipboard"></div>
<?php
echo "</div>\n"; echo "</div>\n";
} /* }}} */ } /* }}} */
@ -2130,14 +2143,14 @@ $(document).ready( function() {
if($accessop->check_controller_access('Download', array('action'=>'version'))) if($accessop->check_controller_access('Download', array('action'=>'version')))
$content .= "<a draggable=\"false\" href=\"../op/op.Download.php?documentid=".$docID."&version=".$version."\">"; $content .= "<a draggable=\"false\" href=\"../op/op.Download.php?documentid=".$docID."&version=".$version."\">";
if($previewer->hasPreview($latestContent)) { 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 { } 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())."\">";
} }
if($accessop->check_controller_access('Download', array('action'=>'run'))) if($accessop->check_controller_access('Download', array('action'=>'run')))
$content .= "</a>"; $content .= "</a>";
} else } 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>";
$content .= "<td>"; $content .= "<td>";
@ -2230,7 +2243,7 @@ $(document).ready( function() {
$content = ''; $content = '';
$content .= "<tr id=\"table-row-folder-".$subFolder->getID()."\" draggable=\"true\" rel=\"folder_".$subFolder->getID()."\" class=\"folder table-row-folder\" formtoken=\"".createFormKey('movefolder')."\">"; $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><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 .= "<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>"; $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) { if($comment) {
@ -2595,6 +2608,71 @@ mayscript>
parent::show(); 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').'&hellip;</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 * Output HTML Code for jumploader
* *
@ -2605,58 +2683,6 @@ mayscript>
*/ */
function printFineUploaderHtml() { /* {{{ */ 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'); ?>&hellip;</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> <div id="manual-fine-uploader"></div>
<input type="hidden" class="do_validate" id="fineuploaderuuids" name="fineuploaderuuids" value="" /> <input type="hidden" class="do_validate" id="fineuploaderuuids" name="fineuploaderuuids" value="" />
<input type="hidden" id="fineuploadernames" name="fineuploadernames" value="" /> <input type="hidden" id="fineuploadernames" name="fineuploadernames" value="" />
@ -2671,22 +2697,31 @@ mayscript>
* @param integer $maxfiles maximum number of files allowed to upload * @param integer $maxfiles maximum number of files allowed to upload
* @param array $fields list of post fields * @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() { $(document).ready(function() {
manualuploader = new qq.FineUploader({ manualuploader = new qq.FineUploader({
debug: true, debug: false,
autoUpload: false, autoUpload: false,
multiple: <?php echo ($multiple ? 'true' : 'false'); ?>, multiple: <?php echo ($multiple ? 'true' : 'false'); ?>,
element: $('#manual-fine-uploader')[0], element: $('#manual-fine-uploader')[0],
template: 'qq-template',
request: { request: {
endpoint: '<?php echo $uploadurl; ?>' endpoint: '<?php echo $uploadurl; ?>'
}, },
<?php echo ($maxuploadsize > 0 ? '
validation: {
sizeLimit: '.$maxuploadsize.'
},
' : ''); ?>
chunking: { chunking: {
enabled: true, enabled: true,
<?php echo $partsize ? 'partSize: '.(int)$partsize.",\n" : ''; ?> <?php echo $partsize ? 'partSize: '.(int)$partsize.",\n" : ''; ?>
mandatory: true mandatory: true
}, },
messages: {
sizeError: '{file} is too large, maximum file size is {sizeLimit}.'
},
callbacks: { callbacks: {
onComplete: function(id, name, json, xhr) { onComplete: function(id, name, json, xhr) {
}, },

View File

@ -0,0 +1,166 @@
<?php
/**
* Implementation of Clipboard view
*
* @category DMS
* @package SeedDMS
* @license GPL 2
* @version @version@
* @author Uwe Steinmann <uwe@steinmann.cx>
* @copyright Copyright (C) 2002-2005 Markus Westphal,
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
* 2010-2012 Uwe Steinmann
* @version Release: @package_version@
*/
/**
* Include parent class
*/
require_once("class.Bootstrap.php");
/**
* Include class to preview documents
*/
require_once("SeedDMS/Preview.php");
/**
* Class which outputs the html page for clipboard view
*
* @category DMS
* @package SeedDMS
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
* @copyright Copyright (C) 2002-2005 Markus Westphal,
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
* 2010-2012 Uwe Steinmann
* @version Release: @package_version@
*/
class SeedDMS_View_Clipboard extends SeedDMS_Bootstrap_Style {
/**
* Returns the html needed for the clipboard list in the menu
*
* This function renders the clipboard in a way suitable to be
* used as a menu
*
* @param array $clipboard clipboard containing two arrays for both
* documents and folders.
* @return string html code
*/
public function menuClipboard() { /* {{{ */
$clipboard = $this->params['session']->getClipboard();
if ($this->params['user']->isGuest() || (count($clipboard['docs']) + count($clipboard['folders'])) == 0) {
return '';
}
$content = '';
$content .= " <ul id=\"main-menu-clipboard\" class=\"nav pull-right\">\n";
$content .= " <li class=\"dropdown add-clipboard-area\">\n";
$content .= " <a href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" class=\"add-clipboard-area\">".getMLText('clipboard')." (".count($clipboard['folders'])."/".count($clipboard['docs']).") <i class=\"icon-caret-down\"></i></a>\n";
$content .= " <ul class=\"dropdown-menu\" role=\"menu\">\n";
foreach($clipboard['folders'] as $folderid) {
if($folder = $this->params['dms']->getFolder($folderid))
$content .= " <li><a href=\"../out/out.ViewFolder.php?folderid=".$folder->getID()."\"><i class=\"icon-folder-close-alt\"></i> ".htmlspecialchars($folder->getName())."</a></li>\n";
}
foreach($clipboard['docs'] as $docid) {
if($document = $this->params['dms']->getDocument($docid))
$content .= " <li><a href=\"../out/out.ViewDocument.php?documentid=".$document->getID()."\"><i class=\"icon-file\"></i> ".htmlspecialchars($document->getName())."</a></li>\n";
}
$content .= " <li class=\"divider\"></li>\n";
if(isset($this->params['folder']) && $this->params['folder']->getAccessMode($this->params['user']) >= M_READWRITE) {
$content .= " <li><a href=\"../op/op.MoveClipboard.php?targetid=".$this->params['folder']->getID()."&refferer=".urlencode($this->params['refferer'])."\">".getMLText("move_clipboard")."</a></li>\n";
}
// $content .= " <li><a href=\"../op/op.ClearClipboard.php?refferer=".urlencode($this->params['refferer'])."\">".getMLText("clear_clipboard")."</a><a class=\"ajax-click\" data-href=\"../op/op.Ajax.php\" data-param1=\"command=clearclipboard\">kkk</a> </li>\n";
$content .= " <li><a class=\"ajax-click\" data-href=\"../op/op.Ajax.php\" data-param1=\"command=clearclipboard\">".getMLText("clear_clipboard")."</a></li>\n";
$content .= " </ul>\n";
$content .= " </li>\n";
$content .= " </ul>\n";
echo $content;
} /* }}} */
/**
* Return clipboard content rendered as html
*
* @param array clipboard
* @return string rendered html content
*/
public function mainClipboard() { /* {{{ */
$dms = $this->params['dms'];
$clipboard = $this->params['session']->getClipboard();
$cachedir = $this->params['cachedir'];
$previewwidth = $this->params['previewWidthList'];
$timeout = $this->params['timeout'];
$previewer = new SeedDMS_Preview_Previewer($cachedir, $previewwidth, $timeout);
$content = '';
$foldercount = $doccount = 0;
if($clipboard['folders']) {
foreach($clipboard['folders'] as $folderid) {
/* FIXME: check for access rights, which could have changed after adding the folder to the clipboard */
if($folder = $dms->getFolder($folderid)) {
$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()."\">" . htmlspecialchars($folder->getName()) . "</a>";
if($comment) {
$content .= "<br /><span style=\"font-size: 85%;\">".htmlspecialchars($comment)."</span>";
}
$content .= "</td>\n";
$content .= "<td>\n";
$content .= "<div class=\"list-action\"><a class=\"removefromclipboard\" rel=\"F".$folderid."\" msg=\"".getMLText('splash_removed_from_clipboard')."\" _href=\"../op/op.RemoveFromClipboard.php?folderid=".(isset($this->params['folder']) ? $this->params['folder']->getID() : '')."&id=".$folderid."&type=folder\" title=\"".getMLText('rm_from_clipboard')."\"><i class=\"icon-remove\"></i></a></div>";
$content .= "</td>\n";
$content .= "</tr>\n";
$foldercount++;
}
}
}
if($clipboard['docs']) {
foreach($clipboard['docs'] as $docid) {
/* FIXME: check for access rights, which could have changed after adding the document to the clipboard */
if($document = $dms->getDocument($docid)) {
$comment = $document->getComment();
if (strlen($comment) > 150) $comment = substr($comment, 0, 147) . "...";
if($latestContent = $document->getLatestContent()) {
$previewer->createPreview($latestContent);
$version = $latestContent->getVersion();
$status = $latestContent->getStatus();
$content .= "<tr draggable=\"true\" rel=\"document_".$docid."\" class=\"table-row-document\" formtoken=\"".createFormKey('movedocument')."\">";
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())."\">";
} else {
$content .= "<img draggable=\"false\" class=\"mimeicon\" 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><a draggable=\"false\" href=\"out.ViewDocument.php?documentid=".$docid."&showtree=".showtree()."\">" . htmlspecialchars($document->getName()) . "</a>";
if($comment) {
$content .= "<br /><span style=\"font-size: 85%;\">".htmlspecialchars($comment)."</span>";
}
$content .= "</td>\n";
$content .= "<td>\n";
$content .= "<div class=\"list-action\"><a class=\"removefromclipboard\" rel=\"D".$docid."\" msg=\"".getMLText('splash_removed_from_clipboard')."\" _href=\"../op/op.RemoveFromClipboard.php?folderid=".(isset($this->params['folder']) ? $this->params['folder']->getID() : '')."&id=".$docid."&type=document\" title=\"".getMLText('rm_from_clipboard')."\"><i class=\"icon-remove\"></i></a></div>";
$content .= "</td>\n";
$content .= "</tr>";
$doccount++;
}
}
}
}
/* $foldercount or $doccount will only count objects which are
* actually available
*/
if($foldercount || $doccount) {
$content = "<table class=\"table\">".$content;
$content .= "</table>";
} else {
}
$content .= "<div class=\"alert add-clipboard-area\">".getMLText("drag_icon_here")."</div>";
echo $content;
} /* }}} */
}

View File

@ -83,7 +83,7 @@ $('.folderselect').click(function(ev) {
$previewer->createRawPreview($dir.'/'.$entry, 'dropfolder/', $mimetype); $previewer->createRawPreview($dir.'/'.$entry, 'dropfolder/', $mimetype);
echo "<tr><td style=\"min-width: ".$previewwidth."px;\">"; echo "<tr><td style=\"min-width: ".$previewwidth."px;\">";
if($previewer->hasRawPreview($dir.'/'.$entry, 'dropfolder/')) { 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"; 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)) { } elseif($showfolders && is_dir($dir.'/'.$entry)) {

View File

@ -115,9 +115,9 @@ class SeedDMS_View_ManageNotify extends SeedDMS_Bootstrap_Style {
print "<tr>\n"; print "<tr>\n";
print "<td>"; print "<td>";
if($previewer->hasPreview($latest)) { 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 { } 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>"; print "</td>";

View File

@ -594,9 +594,9 @@ $(document).ready( function() {
} }
print "<td><a class=\"standardText\" href=\"../out/out.ViewDocument.php?documentid=".$document->getID()."\">"; print "<td><a class=\"standardText\" href=\"../out/out.ViewDocument.php?documentid=".$document->getID()."\">";
if($previewer->hasPreview($lc)) { 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 { } 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 "</a></td>";
print "<td><a class=\"standardText\" href=\"../out/out.ViewDocument.php?documentid=".$document->getID()."\">/"; print "<td><a class=\"standardText\" href=\"../out/out.ViewDocument.php?documentid=".$document->getID()."\">/";

View File

@ -434,6 +434,10 @@ if(!is_writeable($settings->_configFilePath)) {
<td><?php printMLText("settings_partitionSize");?>:</td> <td><?php printMLText("settings_partitionSize");?>:</td>
<td><?php $this->showTextField("partitionSize", $settings->_partitionSize); ?></td> <td><?php $this->showTextField("partitionSize", $settings->_partitionSize); ?></td>
</tr> </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 -- SETTINGS - SYSTEM - AUTHENTICATION
--> -->

View File

@ -36,13 +36,14 @@ class SeedDMS_View_UpdateDocument extends SeedDMS_Bootstrap_Style {
$dropfolderdir = $this->params['dropfolderdir']; $dropfolderdir = $this->params['dropfolderdir'];
$enablelargefileupload = $this->params['enablelargefileupload']; $enablelargefileupload = $this->params['enablelargefileupload'];
$partitionsize = $this->params['partitionsize']; $partitionsize = $this->params['partitionsize'];
$maxuploadsize = $this->params['maxuploadsize'];
header('Content-Type: application/javascript'); header('Content-Type: application/javascript');
$this->printDropFolderChooserJs("form1"); $this->printDropFolderChooserJs("form1");
$this->printSelectPresetButtonJs(); $this->printSelectPresetButtonJs();
$this->printInputPresetButtonJs(); $this->printInputPresetButtonJs();
$this->printCheckboxPresetButtonJs(); $this->printCheckboxPresetButtonJs();
if($enablelargefileupload) if($enablelargefileupload)
$this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize, false); $this->printFineUploaderJs('../op/op.UploadChunks.php', $partitionsize, $maxuploadsize, false);
?> ?>
$(document).ready( function() { $(document).ready( function() {
jQuery.validator.addMethod("alternatives", function(value, element, params) { jQuery.validator.addMethod("alternatives", function(value, element, params) {
@ -129,6 +130,7 @@ console.log(element);
$document = $this->params['document']; $document = $this->params['document'];
$strictformcheck = $this->params['strictformcheck']; $strictformcheck = $this->params['strictformcheck'];
$enablelargefileupload = $this->params['enablelargefileupload']; $enablelargefileupload = $this->params['enablelargefileupload'];
$maxuploadsize = $this->params['maxuploadsize'];
$enableadminrevapp = $this->params['enableadminrevapp']; $enableadminrevapp = $this->params['enableadminrevapp'];
$enableownerrevapp = $this->params['enableownerrevapp']; $enableownerrevapp = $this->params['enableownerrevapp'];
$enableselfrevapp = $this->params['enableselfrevapp']; $enableselfrevapp = $this->params['enableselfrevapp'];
@ -138,8 +140,10 @@ console.log(element);
$documentid = $document->getId(); $documentid = $document->getId();
$this->htmlAddHeader('<script type="text/javascript" src="../styles/'.$this->theme.'/validate/jquery.validate.js"></script>'."\n", 'js'); $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('<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->htmlStartPage(getMLText("document_title", array("documentname" => htmlspecialchars($document->getName()))));
$this->globalNavigation($folder); $this->globalNavigation($folder);
@ -182,8 +186,14 @@ console.log(element);
} }
} }
$msg = getMLText("max_upload_size").": ".ini_get( "upload_max_filesize");
if($enablelargefileupload) { if($enablelargefileupload) {
if($maxuploadsize) {
$msg = getMLText("max_upload_size").": ".SeedDMS_Core_File::format_filesize($maxuploadsize);
}
} 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>"; $msg .= "<p>".sprintf(getMLText('link_alt_updatedocument'), "out.AddMultiDocument.php?folderid=".$folder->getID()."&showtree=".showtree())."</p>";
} }
$this->warningMsg($msg); $this->warningMsg($msg);

View File

@ -121,6 +121,25 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
<?php <?php
} /* }}} */ } /* }}} */
function documentListItem() { /* {{{ */
$dms = $this->params['dms'];
$user = $this->params['user'];
$previewwidth = $this->params['previewWidthList'];
$cachedir = $this->params['cachedir'];
$document = $this->params['document'];
if($document) {
if ($document->getAccessMode($user) >= M_READ) {
$previewer = new SeedDMS_Preview_Previewer($cachedir, $previewwidth);
$txt = $this->callHook('documentListItem', $document, $previewer, true, '');
if(is_string($txt))
$content = $txt;
else
$content = $this->documentListRow($document, $previewer, true);
echo $content;
}
}
} /* }}} */
function timelinedata() { /* {{{ */ function timelinedata() { /* {{{ */
$dms = $this->params['dms']; $dms = $this->params['dms'];
$user = $this->params['user']; $user = $this->params['user'];
@ -554,7 +573,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
if($previewer->hasPreview($latestContent)) { 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())."\">"); print("<img class=\"mimeicon\" width=\"".$previewwidthdetail."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$latestContent->getVersion()."&width=".$previewwidthdetail."\" title=\"".htmlspecialchars($latestContent->getMimeType())."\">");
} else { } 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) { if ($file_exists) {
if($accessop->check_controller_access('Download', array('action'=>'run')) || $accessop->check_controller_access('ViewOnline', array('action'=>'run'))) if($accessop->check_controller_access('Download', array('action'=>'run')) || $accessop->check_controller_access('ViewOnline', array('action'=>'run')))
@ -670,7 +689,12 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
print "<li>".$this->html_link('EditAttributes', array('documentid'=>$documentid, 'version'=>$latestContent->getVersion()), array(), "<i class=\"icon-edit\"></i>".getMLText("edit_attributes"), false, true)."</li>"; print "<li>".$this->html_link('EditAttributes', array('documentid'=>$documentid, 'version'=>$latestContent->getVersion()), array(), "<i class=\"icon-edit\"></i>".getMLText("edit_attributes"), false, true)."</li>";
} }
//print "<li>".$this->html_link('Download', array('documentid'=>$documentid, 'vfile'=>1), array(), "<i class=\"icon-info-sign\"></i>".getMLText("versioning_info"), false, true)."</li>"; $items = $this->callHook('extraVersionActions', $latestContent);
if($items) {
foreach($items as $item) {
echo "<li>".$item."</li>";
}
}
print "</ul>"; print "</ul>";
echo "</td>"; echo "</td>";
@ -1367,7 +1391,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
if($previewer->hasPreview($version)) { 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())."\">"); print("<img class=\"mimeicon\" width=\"".$previewwidthdetail."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&version=".$version->getVersion()."&width=".$previewwidthdetail."\" title=\"".htmlspecialchars($version->getMimeType())."\">");
} else { } 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) { if($file_exists) {
if($accessop->check_controller_access('Download', array('action'=>'run')) || $accessop->check_controller_access('ViewOnline', array('action'=>'run'))) if($accessop->check_controller_access('Download', array('action'=>'run')) || $accessop->check_controller_access('ViewOnline', array('action'=>'run')))
@ -1429,6 +1453,12 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
print "<li>".$this->html_link('EditAttributes', array('documentid'=>$documentid, 'version'=>$version->getVersion()), array(), "<i class=\"icon-edit\"></i>".getMLText("edit_attributes"), false, true)."</li>"; print "<li>".$this->html_link('EditAttributes', array('documentid'=>$documentid, 'version'=>$version->getVersion()), array(), "<i class=\"icon-edit\"></i>".getMLText("edit_attributes"), false, true)."</li>";
} }
print "<li>".$this->html_link('DocumentVersionDetail', array('documentid'=>$documentid, 'version'=>$version->getVersion()), array(), "<i class=\"icon-info-sign\"></i>".getMLText("details"), false, true)."</li>"; print "<li>".$this->html_link('DocumentVersionDetail', array('documentid'=>$documentid, 'version'=>$version->getVersion()), array(), "<i class=\"icon-info-sign\"></i>".getMLText("details"), false, true)."</li>";
$items = $this->callHook('extraVersionActions', $version);
if($items) {
foreach($items as $item) {
echo "<li>".$item."</li>";
}
}
print "</ul>"; print "</ul>";
print "</td>\n</tr>\n"; print "</td>\n</tr>\n";
} }
@ -1477,7 +1507,7 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
if($previewer->hasPreview($file)) { 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())."\">"); print("<img class=\"mimeicon\" width=\"".$previewwidthdetail."\" src=\"../op/op.Preview.php?documentid=".$document->getID()."&file=".$file->getID()."&width=".$previewwidthdetail."\" title=\"".htmlspecialchars($file->getMimeType())."\">");
} else { } 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) { if($file_exists) {
if($accessop->check_controller_access('Download', array('action'=>'run')) || $accessop->check_controller_access('ViewOnline', array('action'=>'run'))) if($accessop->check_controller_access('Download', array('action'=>'run')) || $accessop->check_controller_access('ViewOnline', array('action'=>'run')))
@ -1568,9 +1598,9 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
if($accessop->check_controller_access('Download', array('action'=>'version'))) if($accessop->check_controller_access('Download', array('action'=>'version')))
print "<a href=\"../op/op.Download.php?documentid=".$targetDoc->getID()."&version=".$targetlc->getVersion()."\">"; print "<a href=\"../op/op.Download.php?documentid=".$targetDoc->getID()."&version=".$targetlc->getVersion()."\">";
if($previewer->hasPreview($targetlc)) { if($previewer->hasPreview($targetlc)) {
print "<img class=\"mimeicon\" width=\"".$previewwidthdetail."\"src=\"../op/op.Preview.php?documentid=".$targetDoc->getID()."&version=".$targetlc->getVersion()."&width=".$previewwidthdetail."\" 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 { } 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())."\">";
} }
if($accessop->check_controller_access('Download', array('action'=>'run'))) if($accessop->check_controller_access('Download', array('action'=>'run')))
print "</a>"; print "</a>";
@ -1645,9 +1675,9 @@ class SeedDMS_View_ViewDocument extends SeedDMS_Bootstrap_Style {
if($accessop->check_controller_access('Download', array('action'=>'version'))) if($accessop->check_controller_access('Download', array('action'=>'version')))
print "<a href=\"../op/op.Download.php?documentid=".$sourceDoc->getID()."&version=".$sourcelc->getVersion()."\">"; print "<a href=\"../op/op.Download.php?documentid=".$sourceDoc->getID()."&version=".$sourcelc->getVersion()."\">";
if($previewer->hasPreview($sourcelc)) { if($previewer->hasPreview($sourcelc)) {
print "<img class=\"mimeicon\" width=\"".$previewwidthdetail."\"src=\"../op/op.Preview.php?documentid=".$sourceDoc->getID()."&version=".$sourcelc->getVersion()."&width=".$previewwidthdetail."\" 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 { } 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())."\">";
} }
if($accessop->check_controller_access('Download', array('action'=>'run'))) if($accessop->check_controller_access('Download', array('action'=>'run')))
print "</a>"; print "</a>";

View File

@ -280,7 +280,11 @@ function folderSelected(id, name) {
echo "</div>"; 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 = $folder->getSubFolders($orderby);
$subFolders = SeedDMS_Core_DMS::filterAccess($subFolders, $user, M_READ); $subFolders = SeedDMS_Core_DMS::filterAccess($subFolders, $user, M_READ);
@ -312,6 +316,12 @@ function folderSelected(id, name) {
} }
} }
if($subFolders && $documents) {
$txt = $this->callHook('folderListSeparator', $folder);
if(is_string($txt))
echo $txt;
}
foreach($documents as $document) { foreach($documents as $document) {
$document->verifyLastestContentExpriry(); $document->verifyLastestContentExpriry();
$txt = $this->callHook('documentListItem', $document, $previewer, 'viewfolder'); $txt = $this->callHook('documentListItem', $document, $previewer, 'viewfolder');

View File

@ -90,9 +90,9 @@ class SeedDMS_View_WorkflowSummary extends SeedDMS_Bootstrap_Style {
print "<tr>\n"; print "<tr>\n";
print "<td><a href=\"../op/op.Download.php?documentid=".$document->getID()."&version=".$st['version']."\">"; print "<td><a href=\"../op/op.Download.php?documentid=".$document->getID()."&version=".$st['version']."\">";
if($previewer->hasPreview($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 { } 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 "</a></td>";
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["document"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName()); print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["document"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName());
@ -147,9 +147,9 @@ class SeedDMS_View_WorkflowSummary extends SeedDMS_Bootstrap_Style {
print "<tr>\n"; print "<tr>\n";
print "<td><a href=\"../op/op.Download.php?documentid=".$document->getID()."&version=".$st['version']."\">"; print "<td><a href=\"../op/op.Download.php?documentid=".$document->getID()."&version=".$st['version']."\">";
if($previewer->hasPreview($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 { } 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 "</a></td>";
print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["document"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>"; print "<td><a href=\"out.DocumentVersionDetail.php?documentid=".$st["document"]."&version=".$st["version"]."\">".htmlspecialchars($document->getName())."</a></td>";

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.0 KiB

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

View 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

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 33 KiB

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 42 KiB