Merge branch 'seeddms-4.3.x' into seeddms-5.0.x

This commit is contained in:
Uwe Steinmann 2016-11-11 16:28:35 +01:00
commit 26f19b8654
25 changed files with 114 additions and 53 deletions

View File

@ -591,16 +591,18 @@ class Settings { /* {{{ */
$this->_maxExecutionTime = ini_get("max_execution_time"); $this->_maxExecutionTime = ini_get("max_execution_time");
// XML Path: /configuration/system/advanced/converters // XML Path: /configuration/system/advanced/converters
$converters = $xml->xpath('/configuration/advanced/converters[@target="fulltext"]/converter'); $convertergroups = $xml->xpath('/configuration/advanced/converters');
if(!$converters)
$converters = $xml->xpath('/configuration/advanced/converters/converter');
$this->_converters = array(); $this->_converters = array();
foreach($converters as $converter) { foreach($convertergroups as $convertergroup) {
$tab = $converter->attributes(); $tabgroup = $convertergroup->attributes();
if(!trim(strval($tab['target']))) if(strval($tabgroup['target']))
$this->_converters['fulltext'][trim(strval($tab['mimeType']))] = trim(strval($converter)); $target = strval($tabgroup['target']);
else else
$this->_converters[trim(strval($tab['target']))][trim(strval($tab['mimeType']))] = trim(strval($converter)); $target = 'fulltext';
foreach($convertergroup as $converter) {
$tab = $converter->attributes();
$this->_converters[$target][trim(strval($tab['mimeType']))] = trim(strval($converter));
}
} }
// XML Path: /configuration/extensions // XML Path: /configuration/extensions
@ -870,30 +872,41 @@ class Settings { /* {{{ */
$this->setXMLAttributValue($node, "maxExecutionTime", $this->_maxExecutionTime); $this->setXMLAttributValue($node, "maxExecutionTime", $this->_maxExecutionTime);
$this->setXMLAttributValue($node, "cmdTimeout", $this->_cmdTimeout); $this->setXMLAttributValue($node, "cmdTimeout", $this->_cmdTimeout);
// XML Path: /configuration/advanced/converters /* Check if there is still a converters list with a target attribute */
foreach($this->_converters['fulltext'] as $mimeType => $cmd) $node = $xml->xpath('/configuration/advanced/converters[count(@*)=0]');
{ if (count($node)>0) {
// search XML node $this->setXMLAttributValue($node[0], 'target', 'fulltext');
$node = $xml->xpath('/configuration/advanced/converters/converter[@mimeType="'. $mimeType .'"]'); }
if (isset($node)) // XML Path: /configuration/advanced/converters
{ foreach($this->_converters as $type=>$converters) {
if (count($node)>0) foreach($this->_converters[$type] as $mimeType => $cmd) {
{ // search XML node
$node = $node[0]; $node = $xml->xpath('/configuration/advanced/converters[@target="'.$type.'"]/converter[@mimeType="'. $mimeType .'"]');
}
else
{
$nodeParent = $xml->xpath('/configuration/advanced/converters');
$node = $nodeParent[0]->addChild("converter");
}
$node[0] = $cmd; if (count($node)>0) {
$this->setXMLAttributValue($node, 'mimeType', $mimeType); if(trim($cmd)) {
$node = $node[0];
} // isset($node) $node[0] = $cmd;
$this->setXMLAttributValue($node, 'mimeType', $mimeType);
} // foreach } else {
$node = $node[0];
unset($node[0]);
}
} else {
if(trim($cmd)) {
$nodeParent = $xml->xpath('/configuration/advanced/converters[@target="'.$type.'"]');
if(count($nodeParent) == 0) {
$nodeParent = array($advnode->addChild("converters"));
$this->setXMLAttributValue($nodeParent[0], 'target', $type);
}
$node = $nodeParent[0]->addChild("converter");
$node[0] = $cmd;
$this->setXMLAttributValue($node, 'mimeType', $mimeType);
}
}
} // foreach
} // foreach
// XML Path: /configuration/extensions // XML Path: /configuration/extensions

View File

@ -158,6 +158,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - تم تغيير سمة', 'attribute_changed_email_subject' => '[sitename]: [name] - تم تغيير سمة',
'attribute_count' => 'ﻉﺩﺩ ﻡﺭﺎﺗ ﺍﻸﺴﺘﺧﺩﺎﻣ', 'attribute_count' => 'ﻉﺩﺩ ﻡﺭﺎﺗ ﺍﻸﺴﺘﺧﺩﺎﻣ',
'attribute_value' => 'ﻖﻴﻣﺓ ﺎﻠﺴﻣﺓ', 'attribute_value' => 'ﻖﻴﻣﺓ ﺎﻠﺴﻣﺓ',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -606,6 +607,7 @@ URL: [url]',
'linked_documents' => 'مستندات متعلقة', 'linked_documents' => 'مستندات متعلقة',
'linked_files' => 'ملحقات', 'linked_files' => 'ملحقات',
'link_alt_updatedocument' => 'اذا كنت تود تحميل ملفات اكبر من حجم الملفات المتاحة حاليا, من فضلك استخدم البديل <a href="%s">صفحة التحميل</a>.', 'link_alt_updatedocument' => 'اذا كنت تود تحميل ملفات اكبر من حجم الملفات المتاحة حاليا, من فضلك استخدم البديل <a href="%s">صفحة التحميل</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'ملف محلي', 'local_file' => 'ملف محلي',
'locked_by' => 'محمي بواسطة', 'locked_by' => 'محمي بواسطة',

View File

@ -143,6 +143,7 @@ $text = array(
'attribute_changed_email_subject' => '', 'attribute_changed_email_subject' => '',
'attribute_count' => '', 'attribute_count' => '',
'attribute_value' => '', 'attribute_value' => '',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -537,6 +538,7 @@ $text = array(
'linked_documents' => 'Свързани документи', 'linked_documents' => 'Свързани документи',
'linked_files' => 'Приложения', 'linked_files' => 'Приложения',
'link_alt_updatedocument' => 'Ако искате да качите файлове над текущия лимит, използвайте друг <a href="%s">начин</a>.', 'link_alt_updatedocument' => 'Ако искате да качите файлове над текущия лимит, използвайте друг <a href="%s">начин</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Локален файл', 'local_file' => 'Локален файл',
'locked_by' => 'Блокиран', 'locked_by' => 'Блокиран',

View File

@ -148,6 +148,7 @@ URL: [url]',
'attribute_changed_email_subject' => '', 'attribute_changed_email_subject' => '',
'attribute_count' => '', 'attribute_count' => '',
'attribute_value' => '', 'attribute_value' => '',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -542,6 +543,7 @@ URL: [url]',
'linked_documents' => 'Documents relacionats', 'linked_documents' => 'Documents relacionats',
'linked_files' => 'Adjunts', 'linked_files' => 'Adjunts',
'link_alt_updatedocument' => '', 'link_alt_updatedocument' => '',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Arxiu local', 'local_file' => 'Arxiu local',
'locked_by' => 'Locked by', 'locked_by' => 'Locked by',

View File

@ -165,6 +165,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Atributy změněny', 'attribute_changed_email_subject' => '[sitename]: [name] - Atributy změněny',
'attribute_count' => 'Počet použití', 'attribute_count' => 'Počet použití',
'attribute_value' => 'Hodnota atributu', 'attribute_value' => 'Hodnota atributu',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -613,6 +614,7 @@ URL: [url]',
'linked_documents' => 'Související dokumenty', 'linked_documents' => 'Související dokumenty',
'linked_files' => 'Přílohy', 'linked_files' => 'Přílohy',
'link_alt_updatedocument' => 'Hodláte-li nahrát soubory větší než je maximální velikost pro nahrávání, použijte prosím <a href="%s">alternativní stránku</a>.', 'link_alt_updatedocument' => 'Hodláte-li nahrát soubory větší než je maximální velikost pro nahrávání, použijte prosím <a href="%s">alternativní stránku</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Lokální soubor', 'local_file' => 'Lokální soubor',
'locked_by' => 'Zamčeno kým', 'locked_by' => 'Zamčeno kým',

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 (2331), dgrutsch (21) // Translators: Admin (2335), dgrutsch (21)
$text = array( $text = array(
'2_factor_auth' => '2-Faktor Authentifizierung', '2_factor_auth' => '2-Faktor Authentifizierung',
@ -170,6 +170,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Attribut geändert', 'attribute_changed_email_subject' => '[sitename]: [name] - Attribut geändert',
'attribute_count' => 'Anzahl Verwendungen', 'attribute_count' => 'Anzahl Verwendungen',
'attribute_value' => 'Attributwert', 'attribute_value' => 'Attributwert',
'attribute_value_not_in_valueset' => 'Wert nicht im Wertebereich',
'attr_malformed_boolean' => 'Der Attributwert \'[value]\' des Attributs \'[attrname]\' ist kein gültiger Ja/Nein-Wert.', 'attr_malformed_boolean' => 'Der Attributwert \'[value]\' des Attributs \'[attrname]\' ist kein gültiger Ja/Nein-Wert.',
'attr_malformed_date' => 'Der Attributwert \'[value]\' des Attributs \'[attrname]\' ist kein gültiges Datum.', 'attr_malformed_date' => 'Der Attributwert \'[value]\' des Attributs \'[attrname]\' ist kein gültiges Datum.',
'attr_malformed_email' => 'Der Attributwert \'[value]\' des Attributs \'[attrname]\' ist keine gültige E-Mail.', 'attr_malformed_email' => 'Der Attributwert \'[value]\' des Attributs \'[attrname]\' ist keine gültige E-Mail.',
@ -243,7 +244,7 @@ URL: [url]',
'choose_target_category' => 'Kategorie wählen', 'choose_target_category' => 'Kategorie wählen',
'choose_target_document' => 'Dokument wählen', 'choose_target_document' => 'Dokument wählen',
'choose_target_file' => 'Datei wählen', 'choose_target_file' => 'Datei wählen',
'choose_target_folder' => 'Zielordner wählen', 'choose_target_folder' => 'Ordner wählen',
'choose_user' => 'Benutzer wählen', 'choose_user' => 'Benutzer wählen',
'choose_workflow' => 'Workflow wählen', 'choose_workflow' => 'Workflow wählen',
'choose_workflow_action' => 'Workflow-Aktion wählen', 'choose_workflow_action' => 'Workflow-Aktion wählen',
@ -618,6 +619,7 @@ URL: [url]',
'linked_documents' => 'verknüpfte Dokumente', 'linked_documents' => 'verknüpfte Dokumente',
'linked_files' => 'Anhänge', 'linked_files' => 'Anhänge',
'link_alt_updatedocument' => 'Wenn Sie ein Dokument hochladen möchten, das größer als die maximale Dateigröße ist, dann benutzen Sie bitte die alternative <a href="%s">Upload-Seite</a>.', 'link_alt_updatedocument' => 'Wenn Sie ein Dokument hochladen möchten, das größer als die maximale Dateigröße ist, dann benutzen Sie bitte die alternative <a href="%s">Upload-Seite</a>.',
'list_contains_no_access_docs' => 'Die Liste enthält weitere Dokumente auf die Sie keinen Zugriff haben und deshalb nicht angezeigt werden.',
'list_hooks' => 'Liste interne Aufrufe', 'list_hooks' => 'Liste interne Aufrufe',
'local_file' => 'Lokale Datei', 'local_file' => 'Lokale Datei',
'locked_by' => 'Gesperrt von', 'locked_by' => 'Gesperrt von',

View File

@ -143,6 +143,7 @@ $text = array(
'attribute_changed_email_subject' => '', 'attribute_changed_email_subject' => '',
'attribute_count' => '', 'attribute_count' => '',
'attribute_value' => '', 'attribute_value' => '',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -537,6 +538,7 @@ $text = array(
'linked_documents' => '', 'linked_documents' => '',
'linked_files' => '', 'linked_files' => '',
'link_alt_updatedocument' => '', 'link_alt_updatedocument' => '',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => '', 'local_file' => '',
'locked_by' => '', 'locked_by' => '',

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 (1465), dgrutsch (7), netixw (14) // Translators: Admin (1468), dgrutsch (7), netixw (14)
$text = array( $text = array(
'2_factor_auth' => '2-factor authentication', '2_factor_auth' => '2-factor authentication',
@ -170,6 +170,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Attribute changed', 'attribute_changed_email_subject' => '[sitename]: [name] - Attribute changed',
'attribute_count' => 'Number of uses', 'attribute_count' => 'Number of uses',
'attribute_value' => 'Value of attribute', 'attribute_value' => 'Value of attribute',
'attribute_value_not_in_valueset' => 'Value not in value set',
'attr_malformed_boolean' => 'The attribute value \'[value]\' of attribute \'[attrname]\' is not a valid boolean.', 'attr_malformed_boolean' => 'The attribute value \'[value]\' of attribute \'[attrname]\' is not a valid boolean.',
'attr_malformed_date' => 'The attribute value \'[value]\' of attribute \'[attrname]\' is not a valid date.', 'attr_malformed_date' => 'The attribute value \'[value]\' of attribute \'[attrname]\' is not a valid date.',
'attr_malformed_email' => 'The attribute value \'[value]\' of attribute \'[attrname]\' is not a valid URL.', 'attr_malformed_email' => 'The attribute value \'[value]\' of attribute \'[attrname]\' is not a valid URL.',
@ -618,6 +619,7 @@ URL: [url]',
'linked_documents' => 'Related Documents', 'linked_documents' => 'Related Documents',
'linked_files' => 'Attachments', 'linked_files' => 'Attachments',
'link_alt_updatedocument' => 'If you would like to upload files bigger than the current maximum upload size, please use the alternative <a href="%s">upload page</a>.', 'link_alt_updatedocument' => 'If you would like to upload files bigger than the current maximum upload size, please use the alternative <a href="%s">upload page</a>.',
'list_contains_no_access_docs' => 'The list contains more documents you have no access to and are not displayed.',
'list_hooks' => 'List hooks', 'list_hooks' => 'List hooks',
'local_file' => 'Local file', 'local_file' => 'Local file',
'locked_by' => 'Locked by', 'locked_by' => 'Locked by',

View File

@ -165,6 +165,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Atributo modificado', 'attribute_changed_email_subject' => '[sitename]: [name] - Atributo modificado',
'attribute_count' => 'Cantidad de usos', 'attribute_count' => 'Cantidad de usos',
'attribute_value' => 'Valor del atributo', 'attribute_value' => 'Valor del atributo',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -613,6 +614,7 @@ URL: [url]',
'linked_documents' => 'Documentos relacionados', 'linked_documents' => 'Documentos relacionados',
'linked_files' => 'Adjuntos', 'linked_files' => 'Adjuntos',
'link_alt_updatedocument' => 'Si desea subir archivos mayores que el tamaño máximo actualmente permitido, por favor, utilice la <a href="%s">página de subida</a> alternativa.', 'link_alt_updatedocument' => 'Si desea subir archivos mayores que el tamaño máximo actualmente permitido, por favor, utilice la <a href="%s">página de subida</a> alternativa.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Fichero local', 'local_file' => 'Fichero local',
'locked_by' => 'Bloqueado por', 'locked_by' => 'Bloqueado por',

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 (1053), jeromerobert (50), lonnnew (9), Oudiceval (110) // Translators: Admin (1055), jeromerobert (50), lonnnew (9), Oudiceval (130)
$text = array( $text = array(
'2_factor_auth' => 'Authentification forte', '2_factor_auth' => 'Authentification forte',
@ -170,6 +170,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Attribut changé', 'attribute_changed_email_subject' => '[sitename]: [name] - Attribut changé',
'attribute_count' => 'Nombre d\'utilisations', 'attribute_count' => 'Nombre d\'utilisations',
'attribute_value' => 'Valeur de l\'attribut', 'attribute_value' => 'Valeur de l\'attribut',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => 'La valeur « [value] » de lattribut « [attrname] » nest pas un booléen valide.', 'attr_malformed_boolean' => 'La valeur « [value] » de lattribut « [attrname] » nest pas un booléen valide.',
'attr_malformed_date' => 'La valeur « [value] » de lattribut « [attrname] » nest pas une date valide.', 'attr_malformed_date' => 'La valeur « [value] » de lattribut « [attrname] » nest pas une date valide.',
'attr_malformed_email' => 'La valeur « [value] » de lattribut « [attrname] » nest pas une adresse e-mail valide.', 'attr_malformed_email' => 'La valeur « [value] » de lattribut « [attrname] » nest pas une adresse e-mail valide.',
@ -242,7 +243,7 @@ URL: [url]',
'choose_role' => '', 'choose_role' => '',
'choose_target_category' => 'Choisir une catégorie', 'choose_target_category' => 'Choisir une catégorie',
'choose_target_document' => 'Choisir un document', 'choose_target_document' => 'Choisir un document',
'choose_target_file' => 'Choose un fichier', 'choose_target_file' => 'Choisir un fichier',
'choose_target_folder' => 'Choisir un dossier cible', 'choose_target_folder' => 'Choisir un dossier cible',
'choose_user' => 'Choisir un utilisateur', 'choose_user' => 'Choisir un utilisateur',
'choose_workflow' => 'Choisir un workflow', 'choose_workflow' => 'Choisir un workflow',
@ -251,7 +252,7 @@ URL: [url]',
'class_name' => '', 'class_name' => '',
'clear_cache' => 'Effacer le cache', 'clear_cache' => 'Effacer le cache',
'clear_clipboard' => 'Vider le presse-papier', 'clear_clipboard' => 'Vider le presse-papier',
'clear_password' => '', 'clear_password' => 'Sans mot de passe',
'clipboard' => 'Presse-papier', 'clipboard' => 'Presse-papier',
'close' => 'Fermer', 'close' => 'Fermer',
'comment' => 'Commentaire', 'comment' => 'Commentaire',
@ -336,7 +337,7 @@ URL: [url]',
Document : [name] Document : [name]
Dossier parent : [folder_path] Dossier parent : [folder_path]
Utilisateur : [username]', Utilisateur : [username]',
'document_deleted_email_subject' => '[sitename]: [name] - ocument supprimé', 'document_deleted_email_subject' => '[sitename] : [name] - Document supprimé',
'document_duplicate_name' => 'Un document porte déjà ce nom !', 'document_duplicate_name' => 'Un document porte déjà ce nom !',
'document_has_no_workflow' => 'Le document n\'a pas de workflow', 'document_has_no_workflow' => 'Le document n\'a pas de workflow',
'document_infos' => 'Informations sur le document', 'document_infos' => 'Informations sur le document',
@ -391,8 +392,8 @@ URL: [url]',
'draft_pending_review' => 'Ebauche - En cours de correction', 'draft_pending_review' => 'Ebauche - En cours de correction',
'drag_icon_here' => 'Glisser/déposer le fichier ou document ici!', 'drag_icon_here' => 'Glisser/déposer le fichier ou document ici!',
'dropfolderdir_missing' => 'Votre dossier de dépôt personnel n\'existe pas sur le serveur ! Veuillez faire une demande à l\'administrateur.', 'dropfolderdir_missing' => 'Votre dossier de dépôt personnel n\'existe pas sur le serveur ! Veuillez faire une demande à l\'administrateur.',
'dropfolder_file' => 'Fichier du dossier déposé', 'dropfolder_file' => 'Fichier du dossier de dépôt',
'dropfolder_folder' => '', 'dropfolder_folder' => 'Répertoire du dossier de dépôt',
'dropupload' => 'Téléchargement rapide', 'dropupload' => 'Téléchargement rapide',
'drop_files_here' => 'Glissez les fichiers ici !', 'drop_files_here' => 'Glissez les fichiers ici !',
'dump_creation' => 'Sauvegarder la base de données', 'dump_creation' => 'Sauvegarder la base de données',
@ -424,7 +425,7 @@ URL: [url]',
'el_GR' => 'Grec', 'el_GR' => 'Grec',
'email' => 'E-mail', 'email' => 'E-mail',
'email_error_title' => 'Aucun e-mail indiqué', 'email_error_title' => 'Aucun e-mail indiqué',
'email_footer' => 'Vous pouvez modifier les paramètres de messagerie via \'Mon compte\'.', 'email_footer' => 'Vous pouvez modifier vos notifications via « Mon compte ».',
'email_header' => 'Ceci est un message automatique généré par le serveur DMS.', 'email_header' => 'Ceci est un message automatique généré par le serveur DMS.',
'email_not_given' => 'Veuillez entrer une adresse e-mail valide.', 'email_not_given' => 'Veuillez entrer une adresse e-mail valide.',
'empty_attribute_group_list' => '', 'empty_attribute_group_list' => '',
@ -435,7 +436,7 @@ URL: [url]',
'error' => 'Erreur', 'error' => 'Erreur',
'error_add_aro' => '', 'error_add_aro' => '',
'error_add_permission' => 'Erreur lors de lajout de permission', 'error_add_permission' => 'Erreur lors de lajout de permission',
'error_clearcache' => '', 'error_clearcache' => 'Erreur lors du vidage du cache',
'error_importfs' => '', 'error_importfs' => '',
'error_no_document_selected' => 'Aucun document sélectionné', 'error_no_document_selected' => 'Aucun document sélectionné',
'error_no_folder_selected' => 'Aucun dossier sélectionné', 'error_no_folder_selected' => 'Aucun dossier sélectionné',
@ -541,7 +542,7 @@ URL: [url]',
'import' => 'Importer', 'import' => 'Importer',
'importfs' => 'Importer depuis le système de fichiers', 'importfs' => 'Importer depuis le système de fichiers',
'import_fs' => 'Importer depuis le système de fichiers', 'import_fs' => 'Importer depuis le système de fichiers',
'import_fs_warning' => '', 'import_fs_warning' => 'Limportation peut se faire à partir du dossier de dépôt personnel uniquement. Tous les sous-dossiers et fichiers seront importés. Les fichiers seront immédiatement publiés.',
'include_content' => '', 'include_content' => '',
'include_documents' => 'Inclure les documents', 'include_documents' => 'Inclure les documents',
'include_subdirectories' => 'Inclure les sous-dossiers', 'include_subdirectories' => 'Inclure les sous-dossiers',
@ -561,7 +562,7 @@ URL: [url]',
'invalid_create_date_end' => 'Date de fin invalide pour la plage de dates de création.', 'invalid_create_date_end' => 'Date de fin invalide pour la plage de dates de création.',
'invalid_create_date_start' => 'Date de début invalide pour la plage de dates de création.', 'invalid_create_date_start' => 'Date de début invalide pour la plage de dates de création.',
'invalid_doc_id' => 'Identifiant de document invalide', 'invalid_doc_id' => 'Identifiant de document invalide',
'invalid_dropfolder_folder' => '', 'invalid_dropfolder_folder' => 'Répertoire du dossier de dépôt invalide',
'invalid_expiration_date_end' => '', 'invalid_expiration_date_end' => '',
'invalid_expiration_date_start' => '', 'invalid_expiration_date_start' => '',
'invalid_file_id' => 'Identifiant de fichier invalide', 'invalid_file_id' => 'Identifiant de fichier invalide',
@ -618,6 +619,7 @@ URL: [url]',
'linked_documents' => 'Documents liés', 'linked_documents' => 'Documents liés',
'linked_files' => 'Fichiers attachés', 'linked_files' => 'Fichiers attachés',
'link_alt_updatedocument' => 'Pour déposer des fichiers de taille supérieure, utilisez la <a href="%s">page d\'ajout multiple</a>.', 'link_alt_updatedocument' => 'Pour déposer des fichiers de taille supérieure, utilisez la <a href="%s">page d\'ajout multiple</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Fichier local', 'local_file' => 'Fichier local',
'locked_by' => 'Verrouillé par', 'locked_by' => 'Verrouillé par',
@ -1000,7 +1002,7 @@ URL: [url]',
'settings_contentDir_desc' => 'Endroit ou les fichiers téléchargés sont stockés (il est préférable de choisir un répertoire qui n\'est pas accessible par votre serveur web)', 'settings_contentDir_desc' => 'Endroit ou les fichiers téléchargés sont stockés (il est préférable de choisir un répertoire qui n\'est pas accessible par votre serveur web)',
'settings_contentOffsetDir' => 'Content Offset Directory', 'settings_contentOffsetDir' => 'Content Offset Directory',
'settings_contentOffsetDir_desc' => 'To work around limitations in the underlying file system, a new directory structure has been devised that exists within the content directory (Content Directory). This requires a base directory from which to begin. Usually leave this to the default setting, 1048576, but can be any number or string that does not already exist within (Content Directory)', 'settings_contentOffsetDir_desc' => 'To work around limitations in the underlying file system, a new directory structure has been devised that exists within the content directory (Content Directory). This requires a base directory from which to begin. Usually leave this to the default setting, 1048576, but can be any number or string that does not already exist within (Content Directory)',
'settings_convertToPdf' => '', 'settings_convertToPdf' => 'Convertir en PDF le document pour prévisualisation',
'settings_convertToPdf_desc' => '', 'settings_convertToPdf_desc' => '',
'settings_cookieLifetime' => 'Durée de vie des Cookies', 'settings_cookieLifetime' => 'Durée de vie des Cookies',
'settings_cookieLifetime_desc' => 'La durée de vie d\'un cooke en secondes. Si réglée à 0, le cookie sera supprimé à la fermeture du navigateur.', 'settings_cookieLifetime_desc' => 'La durée de vie d\'un cooke en secondes. Si réglée à 0, le cookie sera supprimé à la fermeture du navigateur.',
@ -1127,7 +1129,7 @@ URL: [url]',
'settings_initialDocumentStatus' => '', 'settings_initialDocumentStatus' => '',
'settings_initialDocumentStatus_desc' => '', 'settings_initialDocumentStatus_desc' => '',
'settings_initialDocumentStatus_draft' => 'Brouillon', 'settings_initialDocumentStatus_draft' => 'Brouillon',
'settings_initialDocumentStatus_released' => '', 'settings_initialDocumentStatus_released' => 'publié',
'settings_installADOdb' => 'Installer ADOdb', 'settings_installADOdb' => 'Installer ADOdb',
'settings_install_disabled' => 'Le fichier ENABLE_INSTALL_TOOL a été supprimé. ous pouvez maintenant vous connecter à SeedDMS et poursuivre la configuration.', 'settings_install_disabled' => 'Le fichier ENABLE_INSTALL_TOOL a été supprimé. ous pouvez maintenant vous connecter à SeedDMS et poursuivre la configuration.',
'settings_install_pear_package_log' => 'Installer le paquet Pear \'Log\'', 'settings_install_pear_package_log' => 'Installer le paquet Pear \'Log\'',
@ -1204,12 +1206,12 @@ URL: [url]',
'settings_rootFolderID_desc' => 'ID du répertoire racine (la plupart du temps pas besoin de changer)', 'settings_rootFolderID_desc' => 'ID du répertoire racine (la plupart du temps pas besoin de changer)',
'settings_SaveError' => 'Erreur de sauvegarde du fichier de configuration', 'settings_SaveError' => 'Erreur de sauvegarde du fichier de configuration',
'settings_Server' => 'Paramètres serveur', 'settings_Server' => 'Paramètres serveur',
'settings_showFullPreview' => '', 'settings_showFullPreview' => 'Visualisation complète du document',
'settings_showFullPreview_desc' => '', 'settings_showFullPreview_desc' => '',
'settings_showMissingTranslations' => 'Afficher les traductions manquantes', 'settings_showMissingTranslations' => 'Afficher les traductions manquantes',
'settings_showMissingTranslations_desc' => 'Lister toutes les traductions manquantes de la page dans le bas de la page. L\'utilisateur connecté pourra proposer une traduction manquante qui sera sauvegardée dans un fichier CSV. Ne pas activer cette fonction en production.', 'settings_showMissingTranslations_desc' => 'Lister toutes les traductions manquantes de la page dans le bas de la page. L\'utilisateur connecté pourra proposer une traduction manquante qui sera sauvegardée dans un fichier CSV. Ne pas activer cette fonction en production.',
'settings_showSingleSearchHit' => '', 'settings_showSingleSearchHit' => 'Aller au document en cas de résultat unique',
'settings_showSingleSearchHit_desc' => '', 'settings_showSingleSearchHit_desc' => 'Quand une recherche retourne un seul résultat, afficher celui-ci directement à la place de la page des résultats.',
'settings_Site' => 'Site', 'settings_Site' => 'Site',
'settings_siteDefaultPage' => 'Page par défaut du site', 'settings_siteDefaultPage' => 'Page par défaut du site',
'settings_siteDefaultPage_desc' => 'Page par défaut lors de la connexion. Si vide, valeur par défaut à out/out.ViewFolder.php', 'settings_siteDefaultPage_desc' => 'Page par défaut lors de la connexion. Si vide, valeur par défaut à out/out.ViewFolder.php',
@ -1258,7 +1260,7 @@ URL: [url]',
'settings_versioningFileName_desc' => 'The name of the versioning info file created by the backup tool', 'settings_versioningFileName_desc' => 'The name of the versioning info file created by the backup tool',
'settings_versiontolow' => '', 'settings_versiontolow' => '',
'settings_viewOnlineFileTypes' => 'Aperçu en ligne des fichiers', 'settings_viewOnlineFileTypes' => 'Aperçu en ligne des fichiers',
'settings_viewOnlineFileTypes_desc' => 'Files with one of the following endings can be viewed online (USE ONLY LOWER CASE CHARACTERS)', 'settings_viewOnlineFileTypes_desc' => 'Extensions des fichiers pouvant être visionnés en ligne (en lettres minuscules uniquement).',
'settings_workflowMode' => 'Mode workflow', 'settings_workflowMode' => 'Mode workflow',
'settings_workflowMode_desc' => 'Le workflow avancé permet de définir son propre workflow de parution pour les versions de documents.', 'settings_workflowMode_desc' => 'Le workflow avancé permet de définir son propre workflow de parution pour les versions de documents.',
'settings_workflowMode_valadvanced' => 'avancé', 'settings_workflowMode_valadvanced' => 'avancé',
@ -1284,7 +1286,7 @@ URL: [url]',
'splash_add_to_transmittal' => '', 'splash_add_to_transmittal' => '',
'splash_add_transmittal' => '', 'splash_add_transmittal' => '',
'splash_add_user' => 'Nouvel utilisateur ajouté', 'splash_add_user' => 'Nouvel utilisateur ajouté',
'splash_clearcache' => '', 'splash_clearcache' => 'Cache vidé',
'splash_cleared_clipboard' => 'Presse-papier vidé', 'splash_cleared_clipboard' => 'Presse-papier vidé',
'splash_document_added' => 'Document ajouté', 'splash_document_added' => 'Document ajouté',
'splash_document_checkedout' => '', 'splash_document_checkedout' => '',
@ -1371,9 +1373,9 @@ URL: [url]',
'thursday' => 'Jeudi', 'thursday' => 'Jeudi',
'thursday_abbr' => 'Jeu.', 'thursday_abbr' => 'Jeu.',
'timeline' => 'Chronologie', 'timeline' => 'Chronologie',
'timeline_add_file' => 'Nouvelle Pièce Jointe', 'timeline_add_file' => 'Nouveau fichier attaché',
'timeline_add_version' => 'Nouvelle version ([version])', 'timeline_add_version' => 'Nouvelle version ([version])',
'timeline_full_add_file' => '', 'timeline_full_add_file' => '[document]<br />Nouveau fichier attaché',
'timeline_full_add_version' => '[document]<br />Nouvelle version ([version])', 'timeline_full_add_version' => '[document]<br />Nouvelle version ([version])',
'timeline_full_status_change' => '[document]<br />Version [version] : [status]', 'timeline_full_status_change' => '[document]<br />Version [version] : [status]',
'timeline_selected_item' => 'Document sélectionné', 'timeline_selected_item' => 'Document sélectionné',
@ -1382,7 +1384,7 @@ URL: [url]',
'timeline_skip_status_change_-3' => 'expirés', 'timeline_skip_status_change_-3' => 'expirés',
'timeline_skip_status_change_0' => 'en attente de revue', 'timeline_skip_status_change_0' => 'en attente de revue',
'timeline_skip_status_change_1' => 'en attente d\'approbation', 'timeline_skip_status_change_1' => 'en attente d\'approbation',
'timeline_skip_status_change_2' => 'en mode release', 'timeline_skip_status_change_2' => 'publié',
'timeline_skip_status_change_3' => 'encore dans un workflow', 'timeline_skip_status_change_3' => 'encore dans un workflow',
'timeline_status_change' => 'Version [version] : [status]', 'timeline_status_change' => 'Version [version] : [status]',
'to' => 'Au', 'to' => 'Au',

View File

@ -170,6 +170,7 @@ Internet poveznica: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Promijenjen atribut', 'attribute_changed_email_subject' => '[sitename]: [name] - Promijenjen atribut',
'attribute_count' => 'Broj uporaba', 'attribute_count' => 'Broj uporaba',
'attribute_value' => 'Vrijednost atributa', 'attribute_value' => 'Vrijednost atributa',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => 'Vrijednost atributa \'[value]\' za atribut \'[attrname]\' nije važeći URL.', 'attr_malformed_email' => 'Vrijednost atributa \'[value]\' za atribut \'[attrname]\' nije važeći URL.',
@ -618,6 +619,7 @@ Internet poveznica: [url]',
'linked_documents' => 'Vezani dokumenti', 'linked_documents' => 'Vezani dokumenti',
'linked_files' => 'Prilozi', 'linked_files' => 'Prilozi',
'link_alt_updatedocument' => 'Ako želite prenijeti datoteke veće od trenutne maksimalne veličine prijenosa, molimo koristite alternativu <a href="%s">upload page</a>.', 'link_alt_updatedocument' => 'Ako želite prenijeti datoteke veće od trenutne maksimalne veličine prijenosa, molimo koristite alternativu <a href="%s">upload page</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Lokalna datoteka', 'local_file' => 'Lokalna datoteka',
'locked_by' => 'Zaključao', 'locked_by' => 'Zaključao',

View File

@ -165,6 +165,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Jellemző módosult', 'attribute_changed_email_subject' => '[sitename]: [name] - Jellemző módosult',
'attribute_count' => 'Felhasználók száma', 'attribute_count' => 'Felhasználók száma',
'attribute_value' => 'Tulajdonság értéke', 'attribute_value' => 'Tulajdonság értéke',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -613,6 +614,7 @@ URL: [url]',
'linked_documents' => 'Kapcsolódó dokumentumok', 'linked_documents' => 'Kapcsolódó dokumentumok',
'linked_files' => 'Mellékletek', 'linked_files' => 'Mellékletek',
'link_alt_updatedocument' => 'Ha a jelenlegi maximális feltöltési méretnél nagyobb állományokat szeretne feltölteni, akkor használja az alternatív <a href="%s">feltöltő oldalt</a>.', 'link_alt_updatedocument' => 'Ha a jelenlegi maximális feltöltési méretnél nagyobb állományokat szeretne feltölteni, akkor használja az alternatív <a href="%s">feltöltő oldalt</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Helyi állomány', 'local_file' => 'Helyi állomány',
'locked_by' => 'Zárolta', 'locked_by' => 'Zárolta',

View File

@ -170,6 +170,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Attributo modificato', 'attribute_changed_email_subject' => '[sitename]: [name] - Attributo modificato',
'attribute_count' => 'Numero di utilizzi', 'attribute_count' => 'Numero di utilizzi',
'attribute_value' => 'Valore dell\'Attributo', 'attribute_value' => 'Valore dell\'Attributo',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => 'Il valore di \'[value]\' dell, 'attr_malformed_email' => 'Il valore di \'[value]\' dell,
@ -619,6 +620,7 @@ URL: [url]',
'linked_documents' => 'Documenti collegati', 'linked_documents' => 'Documenti collegati',
'linked_files' => 'Allegati', 'linked_files' => 'Allegati',
'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>.',
'list_contains_no_access_docs' => '',
'list_hooks' => 'Lista ganci', 'list_hooks' => 'Lista ganci',
'local_file' => 'File locale', 'local_file' => 'File locale',
'locked_by' => 'Bloccato da', 'locked_by' => 'Bloccato da',

View File

@ -170,6 +170,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename] : [name] - 속성이 변경', 'attribute_changed_email_subject' => '[sitename] : [name] - 속성이 변경',
'attribute_count' => '사용자수', 'attribute_count' => '사용자수',
'attribute_value' => '속성', 'attribute_value' => '속성',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '속성값 \'[value]\' \'[attrname]\'은(는) 유효한 URL이 아닙니다.', 'attr_malformed_email' => '속성값 \'[value]\' \'[attrname]\'은(는) 유효한 URL이 아닙니다.',
@ -618,6 +619,7 @@ URL: [url]',
'linked_documents' => '관련 문서', 'linked_documents' => '관련 문서',
'linked_files' => '첨부 파일', 'linked_files' => '첨부 파일',
'link_alt_updatedocument' => '최대 업로드 크기보다 큰 파일을 업로드하려는 경우, 대체 업로드 페이지를 <a href="%s">upload page</a> 사용하십시오.', 'link_alt_updatedocument' => '최대 업로드 크기보다 큰 파일을 업로드하려는 경우, 대체 업로드 페이지를 <a href="%s">upload page</a> 사용하십시오.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => '로컬 파일', 'local_file' => '로컬 파일',
'locked_by' => '잠금', 'locked_by' => '잠금',

View File

@ -163,6 +163,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Attribuut gewijzigd', 'attribute_changed_email_subject' => '[sitename]: [name] - Attribuut gewijzigd',
'attribute_count' => 'Aantal maal gebruikt', 'attribute_count' => 'Aantal maal gebruikt',
'attribute_value' => 'Waarde van het attribuut', 'attribute_value' => 'Waarde van het attribuut',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => 'Foute vormgeving email', 'attr_malformed_email' => 'Foute vormgeving email',
@ -611,6 +612,7 @@ URL: [url]',
'linked_documents' => 'Gerelateerde Documenten', 'linked_documents' => 'Gerelateerde Documenten',
'linked_files' => 'Bijlagen', 'linked_files' => 'Bijlagen',
'link_alt_updatedocument' => 'Als u bestanden wilt uploaden groter dan het huidige maximum, gebruik aub de alternatieve <a href="%s">upload pagina</a>.', 'link_alt_updatedocument' => 'Als u bestanden wilt uploaden groter dan het huidige maximum, gebruik aub de alternatieve <a href="%s">upload pagina</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Lokaal bestand', 'local_file' => 'Lokaal bestand',
'locked_by' => 'In gebruik door', 'locked_by' => 'In gebruik door',

View File

@ -158,6 +158,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Zmiana atrybutu', 'attribute_changed_email_subject' => '[sitename]: [name] - Zmiana atrybutu',
'attribute_count' => 'liczba użyć', 'attribute_count' => 'liczba użyć',
'attribute_value' => 'wartość atrybutu', 'attribute_value' => 'wartość atrybutu',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -606,6 +607,7 @@ URL: [url]',
'linked_documents' => 'Powiązane dokumenty', 'linked_documents' => 'Powiązane dokumenty',
'linked_files' => 'Załączniki', 'linked_files' => 'Załączniki',
'link_alt_updatedocument' => 'Jeśli chcesz wczytać pliki większe niż bieżące maksimum, użyj alternatywnej <a href="%s">strony wczytywania</a>.', 'link_alt_updatedocument' => 'Jeśli chcesz wczytać pliki większe niż bieżące maksimum, użyj alternatywnej <a href="%s">strony wczytywania</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Lokalny plik', 'local_file' => 'Lokalny plik',
'locked_by' => 'Zablokowane przez', 'locked_by' => 'Zablokowane przez',

View File

@ -165,6 +165,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Atributo modificado', 'attribute_changed_email_subject' => '[sitename]: [name] - Atributo modificado',
'attribute_count' => 'Número de utilizações', 'attribute_count' => 'Número de utilizações',
'attribute_value' => 'Valor do atributo', 'attribute_value' => 'Valor do atributo',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -612,6 +613,7 @@ URL: [url]',
'linked_documents' => 'Documentos relacionados', 'linked_documents' => 'Documentos relacionados',
'linked_files' => 'Arquivos anexados', 'linked_files' => 'Arquivos anexados',
'link_alt_updatedocument' => 'Se você gostaria de fazer envio de arquivos maiores que o tamanho permitido, por favor use a página alternativa de <a href="%s">envio</a>.', 'link_alt_updatedocument' => 'Se você gostaria de fazer envio de arquivos maiores que o tamanho permitido, por favor use a página alternativa de <a href="%s">envio</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Arquivo local', 'local_file' => 'Arquivo local',
'locked_by' => 'Bloqueado por', 'locked_by' => 'Bloqueado por',

View File

@ -170,6 +170,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Atribut schimbat', 'attribute_changed_email_subject' => '[sitename]: [name] - Atribut schimbat',
'attribute_count' => 'Numărul de utilizări', 'attribute_count' => 'Numărul de utilizări',
'attribute_value' => 'Valoare atribut', 'attribute_value' => 'Valoare atribut',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => 'Valoarea \'[value]\' a atributului \'[attrname]\' nu este o adresa URL valida.', 'attr_malformed_email' => 'Valoarea \'[value]\' a atributului \'[attrname]\' nu este o adresa URL valida.',
@ -618,6 +619,7 @@ URL: [url]',
'linked_documents' => 'Documente relationate', 'linked_documents' => 'Documente relationate',
'linked_files' => 'Atașamente', 'linked_files' => 'Atașamente',
'link_alt_updatedocument' => 'Dacă doriți să încărcați fișiere mai mari decât dimensiunea maximă curentă de încărcare, vă rugăm să folosiți alternativa <a href="%s">pagină de încărcare</a>.', 'link_alt_updatedocument' => 'Dacă doriți să încărcați fișiere mai mari decât dimensiunea maximă curentă de încărcare, vă rugăm să folosiți alternativa <a href="%s">pagină de încărcare</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Fișier local', 'local_file' => 'Fișier local',
'locked_by' => 'Blocat de', 'locked_by' => 'Blocat de',

View File

@ -170,6 +170,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: изменён атрибут «[name]»', 'attribute_changed_email_subject' => '[sitename]: изменён атрибут «[name]»',
'attribute_count' => 'Использован раз', 'attribute_count' => 'Использован раз',
'attribute_value' => 'Значение атрибута', 'attribute_value' => 'Значение атрибута',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => 'Значение атрибута \'[value]\' атрибута \'[attrname]\' не является допустимым URL.', 'attr_malformed_email' => 'Значение атрибута \'[value]\' атрибута \'[attrname]\' не является допустимым URL.',
@ -618,6 +619,7 @@ URL: [url]',
'linked_documents' => 'Связанные документы', 'linked_documents' => 'Связанные документы',
'linked_files' => 'Приложения', 'linked_files' => 'Приложения',
'link_alt_updatedocument' => 'Для загрузки файлов, превышающих ограничение размера, используйте <a href="%s">другой способ</a>.', 'link_alt_updatedocument' => 'Для загрузки файлов, превышающих ограничение размера, используйте <a href="%s">другой способ</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Локальный файл', 'local_file' => 'Локальный файл',
'locked_by' => 'Заблокирован', 'locked_by' => 'Заблокирован',

View File

@ -147,6 +147,7 @@ URL: [url]',
'attribute_changed_email_subject' => '', 'attribute_changed_email_subject' => '',
'attribute_count' => '', 'attribute_count' => '',
'attribute_value' => '', 'attribute_value' => '',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -541,6 +542,7 @@ URL: [url]',
'linked_documents' => 'Súvisiace dokumenty', 'linked_documents' => 'Súvisiace dokumenty',
'linked_files' => 'Prílohy', 'linked_files' => 'Prílohy',
'link_alt_updatedocument' => '', 'link_alt_updatedocument' => '',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Lokálny súbor', 'local_file' => 'Lokálny súbor',
'locked_by' => 'Uzamkol', 'locked_by' => 'Uzamkol',

View File

@ -158,6 +158,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Ändrad attribut', 'attribute_changed_email_subject' => '[sitename]: [name] - Ändrad attribut',
'attribute_count' => 'Antal användningar', 'attribute_count' => 'Antal användningar',
'attribute_value' => 'Attributvärde', 'attribute_value' => 'Attributvärde',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -606,6 +607,7 @@ URL: [url]',
'linked_documents' => 'Relaterade dokument', 'linked_documents' => 'Relaterade dokument',
'linked_files' => 'Bilagor', 'linked_files' => 'Bilagor',
'link_alt_updatedocument' => 'Om du vill ladda upp filer som är större än den aktuella största tillåtna storleken, använd dig av den alternativa metoden att ladda upp filer <a href="%s">Alternativ uppladdning</a>.', 'link_alt_updatedocument' => 'Om du vill ladda upp filer som är större än den aktuella största tillåtna storleken, använd dig av den alternativa metoden att ladda upp filer <a href="%s">Alternativ uppladdning</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Lokal fil', 'local_file' => 'Lokal fil',
'locked_by' => 'Låst av', 'locked_by' => 'Låst av',

View File

@ -164,6 +164,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: [name] - Nitelik değişti', 'attribute_changed_email_subject' => '[sitename]: [name] - Nitelik değişti',
'attribute_count' => 'Kullanım sayısı', 'attribute_count' => 'Kullanım sayısı',
'attribute_value' => 'Niteliğin değeri', 'attribute_value' => 'Niteliğin değeri',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -612,6 +613,7 @@ URL: [url]',
'linked_documents' => 'İlgili Dokümanlar', 'linked_documents' => 'İlgili Dokümanlar',
'linked_files' => 'Ekler', 'linked_files' => 'Ekler',
'link_alt_updatedocument' => 'Mevcut maksimum yükleme boyutundan daha büyük dosya yüklemek istiyorsanız <a href="%s">alternatif yükleme sayfası için tıklayın</a>.', 'link_alt_updatedocument' => 'Mevcut maksimum yükleme boyutundan daha büyük dosya yüklemek istiyorsanız <a href="%s">alternatif yükleme sayfası için tıklayın</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Yerel dosya', 'local_file' => 'Yerel dosya',
'locked_by' => 'Kilitleyen', 'locked_by' => 'Kilitleyen',

View File

@ -170,6 +170,7 @@ URL: [url]',
'attribute_changed_email_subject' => '[sitename]: змінено атрибут «[name]»', 'attribute_changed_email_subject' => '[sitename]: змінено атрибут «[name]»',
'attribute_count' => 'Використано разів', 'attribute_count' => 'Використано разів',
'attribute_value' => 'Значення атрибута', 'attribute_value' => 'Значення атрибута',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => 'Значення \'[value]\' атрибуту \'[attrname]\' не є правильною адресою email.', 'attr_malformed_email' => 'Значення \'[value]\' атрибуту \'[attrname]\' не є правильною адресою email.',
@ -618,6 +619,7 @@ URL: [url]',
'linked_documents' => 'Пов\'язані документи', 'linked_documents' => 'Пов\'язані документи',
'linked_files' => 'Пов\'язані файли', 'linked_files' => 'Пов\'язані файли',
'link_alt_updatedocument' => 'Для завантаження файлів, які перевищують обмеження розміру, використовуйте <a href="%s">інший метод</a>.', 'link_alt_updatedocument' => 'Для завантаження файлів, які перевищують обмеження розміру, використовуйте <a href="%s">інший метод</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => 'Локальний файл', 'local_file' => 'Локальний файл',
'locked_by' => 'Заблоковано', 'locked_by' => 'Заблоковано',

View File

@ -147,6 +147,7 @@ URL: [url]',
'attribute_changed_email_subject' => '', 'attribute_changed_email_subject' => '',
'attribute_count' => '使用次数', 'attribute_count' => '使用次数',
'attribute_value' => '属性值', 'attribute_value' => '属性值',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -543,6 +544,7 @@ URL: [url]',
'linked_documents' => '相关文档', 'linked_documents' => '相关文档',
'linked_files' => '附件', 'linked_files' => '附件',
'link_alt_updatedocument' => '超过20M大文件请选择<a href="%s">上传大文件</a>.', 'link_alt_updatedocument' => '超过20M大文件请选择<a href="%s">上传大文件</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => '本地文件', 'local_file' => '本地文件',
'locked_by' => '锁定人', 'locked_by' => '锁定人',

View File

@ -147,6 +147,7 @@ URL: [url]',
'attribute_changed_email_subject' => '', 'attribute_changed_email_subject' => '',
'attribute_count' => '使用次數', 'attribute_count' => '使用次數',
'attribute_value' => '屬性值', 'attribute_value' => '屬性值',
'attribute_value_not_in_valueset' => '',
'attr_malformed_boolean' => '', 'attr_malformed_boolean' => '',
'attr_malformed_date' => '', 'attr_malformed_date' => '',
'attr_malformed_email' => '', 'attr_malformed_email' => '',
@ -541,6 +542,7 @@ URL: [url]',
'linked_documents' => '相關文檔', 'linked_documents' => '相關文檔',
'linked_files' => '附件', 'linked_files' => '附件',
'link_alt_updatedocument' => '超過20M大檔請選擇<a href="%s">上傳大檔</a>.', 'link_alt_updatedocument' => '超過20M大檔請選擇<a href="%s">上傳大檔</a>.',
'list_contains_no_access_docs' => '',
'list_hooks' => '', 'list_hooks' => '',
'local_file' => '本地檔', 'local_file' => '本地檔',
'locked_by' => '鎖定人', 'locked_by' => '鎖定人',