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

This commit is contained in:
Uwe Steinmann 2022-09-08 18:31:36 +02:00
commit 506f822147
33 changed files with 248 additions and 173 deletions

View File

@ -1,42 +1,42 @@
<?php <?php
// MyDMS. Document Management System // MyDMS. Document Management System
// Copyright (C) 2002-2005 Markus Westphal // Copyright (C) 2002-2005 Markus Westphal
// Copyright (C) 2006-2008 Malcolm Cowe // Copyright (C) 2006-2008 Malcolm Cowe
// Copyright (C) 2010 Matteo Lucarelli // Copyright (C) 2010 Matteo Lucarelli
// //
// This program is free software; you can redistribute it and/or modify // 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 // it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or // the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version. // (at your option) any later version.
// //
// This program is distributed in the hope that it will be useful, // This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details. // GNU General Public License for more details.
// //
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// 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.
include("../inc/inc.Settings.php"); include("../inc/inc.Settings.php");
include("../inc/inc.AccessUtils.php"); include("../inc/inc.AccessUtils.php");
include("../inc/inc.ClassAccess.php"); include("../inc/inc.ClassAccess.php");
include("../inc/inc.ClassDocument.php"); include("../inc/inc.ClassDocument.php");
include("../inc/inc.ClassFolder.php"); include("../inc/inc.ClassFolder.php");
include("../inc/inc.ClassGroup.php"); include("../inc/inc.ClassGroup.php");
include("../inc/inc.ClassUser.php"); include("../inc/inc.ClassUser.php");
include("../inc/inc.DBAccess.php"); include("../inc/inc.DBAccess.php");
include("../inc/inc.FileUtils.php"); include("../inc/inc.FileUtils.php");
include("../inc/inc.Authentication.php"); include("../inc/inc.Authentication.php");
print "<html></body>"; print "<html></body>";
if (!$user->isAdmin()) { if (!$user->isAdmin()) {
print "<b>ERROR: You must be administrator to execute the update</b>"; print "<b>ERROR: You must be administrator to execute the update</b>";
die; die;
} }
function update_content() function update_content()
{ {
GLOBAL $db,$settings; GLOBAL $db,$settings;
@ -45,7 +45,7 @@ function update_content()
if (!makedir($settings->_contentDir."/temp")) return false; if (!makedir($settings->_contentDir."/temp")) return false;
// for all contents // for all contents
$queryStr = "SELECT * FROM tblDocumentContent"; $queryStr = "SELECT * FROM tblDocumentContent";
$contents = $db->getResultArray($queryStr); $contents = $db->getResultArray($queryStr);
if (is_bool($contents)&&!$contents) return false; if (is_bool($contents)&&!$contents) return false;
@ -75,7 +75,7 @@ function update_db()
GLOBAL $db,$settings; GLOBAL $db,$settings;
// for all contents // for all contents
$queryStr = "SELECT * FROM tblDocumentContent"; $queryStr = "SELECT * FROM tblDocumentContent";
$contents = $db->getResultArray($queryStr); $contents = $db->getResultArray($queryStr);
if (is_bool($contents)&&!$contents) return false; if (is_bool($contents)&&!$contents) return false;
@ -100,25 +100,24 @@ function update_db()
if (!$db->getResult($queryStr)) return false; if (!$db->getResult($queryStr)) return false;
return true; return true;
} }
print "<b>Updating ...please wait</b><br>"; print "<b>Updating ...please wait</b><br>";
if (!update_content()) { if (!update_content()) {
print "<b>ERROR: An error occurred during the directory reordering</b>"; print "<b>ERROR: An error occurred during the directory reordering</b>";
die; die;
} }
if (!update_db()) { if (!update_db()) {
print "<b>ERROR: An error occurred during the DB update</b>"; print "<b>ERROR: An error occurred during the DB update</b>";
print "<br><b>Please try to execute the update.sql manually</b>"; print "<br><b>Please try to execute the update.sql manually</b>";
die; die;
} }
print "<b>Update done</b><br>"; print "<b>Update done</b><br>";
print "</body></html>"; print "</body></html>";
?>

View File

@ -1,33 +1,33 @@
-- mysql -uroot -ppassword mydms < update.sql -- mysql -uroot -ppassword mydms < update.sql
-- this script must be executed when updating form a version < 1.8.1 -- this script must be executed when updating form a version < 1.8.1
-- -------------------------------------------------------- -- --------------------------------------------------------
-- --
-- New table for document-related files -- New table for document-related files
-- --
CREATE TABLE `tblDocumentFiles` ( CREATE TABLE `tblDocumentFiles` (
`id` int(11) NOT NULL auto_increment, `id` int(11) NOT NULL auto_increment,
`document` int(11) NOT NULL default '0', `document` int(11) NOT NULL default '0',
`userID` int(11) NOT NULL default '0', `userID` int(11) NOT NULL default '0',
`comment` text, `comment` text,
`name` varchar(150) default NULL, `name` varchar(150) default NULL,
`date` int(12) default NULL, `date` int(12) default NULL,
`dir` varchar(255) NOT NULL default '', `dir` varchar(255) NOT NULL default '',
`orgFileName` varchar(150) NOT NULL default '', `orgFileName` varchar(150) NOT NULL default '',
`fileType` varchar(10) NOT NULL default '', `fileType` varchar(10) NOT NULL default '',
`mimeType` varchar(70) NOT NULL default '', `mimeType` varchar(70) NOT NULL default '',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ; ) Engine=MyISAM ;
-- -------------------------------------------------------- -- --------------------------------------------------------
-- --
-- Not longer required by new filesystem structure -- Not longer required by new filesystem structure
-- --
DROP TABLE `tblDirPath`; DROP TABLE `tblDirPath`;
DROP TABLE `tblPathList`; DROP TABLE `tblPathList`;

View File

@ -1,39 +1,39 @@
<?php <?php
// MyDMS. Document Management System // MyDMS. Document Management System
// Copyright (C) 2002-2005 Markus Westphal // Copyright (C) 2002-2005 Markus Westphal
// Copyright (C) 2006-2008 Malcolm Cowe // Copyright (C) 2006-2008 Malcolm Cowe
// Copyright (C) 2010 Matteo Lucarelli // Copyright (C) 2010 Matteo Lucarelli
// //
// This program is free software; you can redistribute it and/or modify // 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 // it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or // the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version. // (at your option) any later version.
// //
// This program is distributed in the hope that it will be useful, // This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details. // GNU General Public License for more details.
// //
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// 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.
include("../inc/inc.Settings.php"); include("../inc/inc.Settings.php");
include("../inc/inc.AccessUtils.php"); include("../inc/inc.AccessUtils.php");
include("../inc/inc.ClassAccess.php"); include("../inc/inc.ClassAccess.php");
include("../inc/inc.ClassDocument.php"); include("../inc/inc.ClassDocument.php");
include("../inc/inc.ClassFolder.php"); include("../inc/inc.ClassFolder.php");
include("../inc/inc.ClassGroup.php"); include("../inc/inc.ClassGroup.php");
include("../inc/inc.ClassUser.php"); include("../inc/inc.ClassUser.php");
include("../inc/inc.DBAccess.php"); include("../inc/inc.DBAccess.php");
include("../inc/inc.FileUtils.php"); include("../inc/inc.FileUtils.php");
include("../inc/inc.Authentication.php"); include("../inc/inc.Authentication.php");
print "<html></body>"; print "<html></body>";
if (!$user->isAdmin()) { if (!$user->isAdmin()) {
print "<b>ERROR: You must be administrator to execute the update</b>"; print "<b>ERROR: You must be administrator to execute the update</b>";
die; die;
} }
function update_db() function update_db()
@ -52,22 +52,21 @@ function update_db()
if (!$db->getResult($queryStr)) return false; if (!$db->getResult($queryStr)) return false;
return true; return true;
} }
print "<b>Updating ...please wait</b><br>"; print "<b>Updating ...please wait</b><br>";
print "<pre>"; print "<pre>";
if (!update_db()) { if (!update_db()) {
print "</pre>"; print "</pre>";
print "<b>ERROR: An error occurred during the DB update</b>"; print "<b>ERROR: An error occurred during the DB update</b>";
print "<br><b>Please try to execute the update.sql manually</b>"; print "<br><b>Please try to execute the update.sql manually</b>";
die; die;
}else print "</pre><b>Update done</b><br>"; }else print "</pre><b>Update done</b><br>";
print "</body></html>"; print "</body></html>";
?>

View File

@ -1,10 +1,10 @@
-- mysql -uyouruser -pyourpassword yourdb < update.sql -- mysql -uyouruser -pyourpassword yourdb < update.sql
-- this script must be executed when updating form a version < 1.9 -- this script must be executed when updating form a version < 1.9
-- -------------------------------------------------------- -- --------------------------------------------------------
-- --
-- New field for hidden users -- New field for hidden users
-- --
ALTER TABLE `tblUsers` ADD `hidden` smallint(1) NOT NULL default '0' ; ALTER TABLE `tblUsers` ADD `hidden` smallint(1) NOT NULL default '0' ;
@ -12,27 +12,27 @@ ALTER TABLE `tblUsers` ADD `hidden` smallint(1) NOT NULL default '0' ;
-- --
-- New field for group manager permission -- New field for group manager permission
-- --
ALTER TABLE `tblGroupMembers` ADD `manager` smallint(1) NOT NULL default '0' ;
-- ALTER TABLE `tblGroupMembers` ADD `manager` smallint(1) NOT NULL default '0' ;
-- Table structure for mandatory reviewers
--
CREATE TABLE `tblMandatoryReviewers` (
`userID` int(11) NOT NULL default '0',
`reviewerUserID` int(11) NOT NULL default '0',
`reviewerGroupID` int(11) NOT NULL default '0',
PRIMARY KEY (`userID`,`reviewerUserID`,`reviewerGroupID`)
) ;
-- --
-- Table structure for mandatory approvers -- Table structure for mandatory reviewers
-- --
CREATE TABLE `tblMandatoryApprovers` ( CREATE TABLE `tblMandatoryReviewers` (
`userID` int(11) NOT NULL default '0', `userID` int(11) NOT NULL default '0',
`approverUserID` int(11) NOT NULL default '0', `reviewerUserID` int(11) NOT NULL default '0',
`approverGroupID` int(11) NOT NULL default '0', `reviewerGroupID` int(11) NOT NULL default '0',
PRIMARY KEY (`userID`,`approverUserID`,`approverGroupID`) PRIMARY KEY (`userID`,`reviewerUserID`,`reviewerGroupID`)
) ; ) Engine=MyISAM ;
--
-- Table structure for mandatory approvers
--
CREATE TABLE `tblMandatoryApprovers` (
`userID` int(11) NOT NULL default '0',
`approverUserID` int(11) NOT NULL default '0',
`approverGroupID` int(11) NOT NULL default '0',
PRIMARY KEY (`userID`,`approverUserID`,`approverGroupID`)
) Engine=MyISAM ;

View File

@ -1,39 +1,39 @@
<?php <?php
// MyDMS. Document Management System // MyDMS. Document Management System
// Copyright (C) 2002-2005 Markus Westphal // Copyright (C) 2002-2005 Markus Westphal
// Copyright (C) 2006-2008 Malcolm Cowe // Copyright (C) 2006-2008 Malcolm Cowe
// Copyright (C) 2010 Matteo Lucarelli // Copyright (C) 2010 Matteo Lucarelli
// //
// This program is free software; you can redistribute it and/or modify // 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 // it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or // the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version. // (at your option) any later version.
// //
// This program is distributed in the hope that it will be useful, // This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details. // GNU General Public License for more details.
// //
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// 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.
include("../inc/inc.Settings.php"); include("../inc/inc.Settings.php");
include("../inc/inc.AccessUtils.php"); include("../inc/inc.AccessUtils.php");
include("../inc/inc.ClassAccess.php"); include("../inc/inc.ClassAccess.php");
include("../inc/inc.ClassDocument.php"); include("../inc/inc.ClassDocument.php");
include("../inc/inc.ClassFolder.php"); include("../inc/inc.ClassFolder.php");
include("../inc/inc.ClassGroup.php"); include("../inc/inc.ClassGroup.php");
include("../inc/inc.ClassUser.php"); include("../inc/inc.ClassUser.php");
include("../inc/inc.DBAccess.php"); include("../inc/inc.DBAccess.php");
include("../inc/inc.FileUtils.php"); include("../inc/inc.FileUtils.php");
include("../inc/inc.Authentication.php"); include("../inc/inc.Authentication.php");
print "<html></body>"; print "<html></body>";
if (!$user->isAdmin()) { if (!$user->isAdmin()) {
print "<b>ERROR: You must be administrator to execute the update</b>"; print "<b>ERROR: You must be administrator to execute the update</b>";
die; die;
} }
function update_db() function update_db()
@ -52,22 +52,20 @@ function update_db()
if (!$db->getResult($queryStr)) return false; if (!$db->getResult($queryStr)) return false;
return true; return true;
} }
print "<b>Updating ...please wait</b><br>"; print "<b>Updating ...please wait</b><br>";
print "<pre>"; print "<pre>";
if (!update_db()) { if (!update_db()) {
print "</pre>"; print "</pre>";
print "<b>ERROR: An error occurred during the DB update</b>"; print "<b>ERROR: An error occurred during the DB update</b>";
print "<br><b>Please try to execute the update.sql manually</b>"; print "<br><b>Please try to execute the update.sql manually</b>";
die; die;
}else print "</pre><b>Update done</b><br>"; }else print "</pre><b>Update done</b><br>";
print "</body></html>"; print "</body></html>";
?>

View File

@ -20,9 +20,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
function check($doupdate=0) { /* {{{ */ function check($db, $doupdate=0) { /* {{{ */
global $db, $settings;
$arr = array(); $arr = array();
$arr['tblDocuments'] = array('key'=>'id', 'fields'=>array('name', 'comment', 'keywords')); $arr['tblDocuments'] = array('key'=>'id', 'fields'=>array('name', 'comment', 'keywords'));
$arr['tblDocumentFiles'] = array('key'=>'id', 'fields'=>array('name', 'comment', 'mimeType')); $arr['tblDocumentFiles'] = array('key'=>'id', 'fields'=>array('name', 'comment', 'mimeType'));
@ -91,7 +89,7 @@ else
$doupdate = 0; $doupdate = 0;
$doupdate = 1; $doupdate = 1;
if (!check($doupdate)) { if (!check($db, $doupdate)) {
print "<p>Update failed</p>"; print "<p>Update failed</p>";
} }

View File

@ -222,6 +222,7 @@ URL: [url]',
'backup_tools' => 'أدوات النسخ الاحتياطية', 'backup_tools' => 'أدوات النسخ الاحتياطية',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'بين', 'between' => 'بين',
'bg_BG' => 'بلغارية', 'bg_BG' => 'بلغارية',
@ -861,6 +862,8 @@ URL: [url]',
'mandatory_reviewers' => 'مراجعين اجباريين', 'mandatory_reviewers' => 'مراجعين اجباريين',
'mandatory_reviewer_no_access' => 'ممنوع دخول المراجع الإجباري', 'mandatory_reviewer_no_access' => 'ممنوع دخول المراجع الإجباري',
'march' => 'مارس', 'march' => 'مارس',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'الحجم الاقصى للملف', 'max_upload_size' => 'الحجم الاقصى للملف',
'may' => 'مايو', 'may' => 'مايو',
'menu_dropfolder' => 'صفحة المجلد', 'menu_dropfolder' => 'صفحة المجلد',

View File

@ -205,6 +205,7 @@ $text = array(
'backup_tools' => 'Иструменти за бекъп', 'backup_tools' => 'Иструменти за бекъп',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'между', 'between' => 'между',
'bg_BG' => 'Български', 'bg_BG' => 'Български',
@ -790,6 +791,8 @@ $text = array(
'mandatory_reviewers' => '', 'mandatory_reviewers' => '',
'mandatory_reviewer_no_access' => '', 'mandatory_reviewer_no_access' => '',
'march' => 'март', 'march' => 'март',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Лимит за размер на файла', 'max_upload_size' => 'Лимит за размер на файла',
'may' => 'май', 'may' => 'май',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

View File

@ -210,6 +210,7 @@ URL: [url]',
'backup_tools' => 'Eines de còpia de seguretat', 'backup_tools' => 'Eines de còpia de seguretat',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'entre', 'between' => 'entre',
'bg_BG' => 'Búlgar', 'bg_BG' => 'Búlgar',
@ -795,6 +796,8 @@ URL: [url]',
'mandatory_reviewers' => '', 'mandatory_reviewers' => '',
'mandatory_reviewer_no_access' => '', 'mandatory_reviewer_no_access' => '',
'march' => 'Març', 'march' => 'Març',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Mida màxima de pujada de cada fitxer', 'max_upload_size' => 'Mida màxima de pujada de cada fitxer',
'may' => 'Maig', 'may' => 'Maig',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

View File

@ -234,6 +234,7 @@ URL: [url]',
'backup_tools' => 'Nástroje pro zálohování', 'backup_tools' => 'Nástroje pro zálohování',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'mezi', 'between' => 'mezi',
'bg_BG' => 'Bulharština', 'bg_BG' => 'Bulharština',
@ -892,6 +893,8 @@ URL: [url]',
'mandatory_reviewers' => 'Stanovení recenzenti', 'mandatory_reviewers' => 'Stanovení recenzenti',
'mandatory_reviewer_no_access' => 'Stanovený recenzent \'[user]\' má nedostatečná přístupová práva.', 'mandatory_reviewer_no_access' => 'Stanovený recenzent \'[user]\' má nedostatečná přístupová práva.',
'march' => 'Březen', 'march' => 'Březen',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Max. délka pro nahrání jednoho souboru', 'max_upload_size' => 'Max. délka pro nahrání jednoho souboru',
'may' => 'Květen', 'may' => 'Květen',
'menu_dropfolder' => 'Vhazovací složka', 'menu_dropfolder' => 'Vhazovací složka',

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 (3119), dgrutsch (22) // Translators: Admin (3122), dgrutsch (22)
$text = array( $text = array(
'2_factor_auth' => '2-Faktor Authentifizierung', '2_factor_auth' => '2-Faktor Authentifizierung',
@ -273,6 +273,7 @@ URL: [url]</p>',
'backup_tools' => 'Backup tools', 'backup_tools' => 'Backup tools',
'batch_change_owner' => 'Besitzer ändern', 'batch_change_owner' => 'Besitzer ändern',
'batch_new_owner_msg' => 'Der Besitzer von [count] Dokuments wurde geändert.', 'batch_new_owner_msg' => 'Der Besitzer von [count] Dokuments wurde geändert.',
'batch_operation' => 'Massenoperation',
'batch_operation_result' => 'Ergebnis der Massenoperation', 'batch_operation_result' => 'Ergebnis der Massenoperation',
'between' => 'zwischen', 'between' => 'zwischen',
'bg_BG' => 'Bulgarisch', 'bg_BG' => 'Bulgarisch',
@ -1035,6 +1036,8 @@ URL: [url]</p>',
'mandatory_reviewers' => 'Zwingende Prüfer', 'mandatory_reviewers' => 'Zwingende Prüfer',
'mandatory_reviewer_no_access' => 'Zwingender Prüfer \'[user]\' hat nicht ausreichende Zugriffsrechte.', 'mandatory_reviewer_no_access' => 'Zwingender Prüfer \'[user]\' hat nicht ausreichende Zugriffsrechte.',
'march' => 'März', 'march' => 'März',
'mark_document' => 'Dokument für Massenoperation auswählen',
'mark_folder' => 'Ordner für Massenoperation auswählen',
'max_upload_size' => 'Maximale Dateigröße', 'max_upload_size' => 'Maximale Dateigröße',
'may' => 'Mai', 'may' => 'Mai',
'menu_dropfolder' => 'Ablageordner', 'menu_dropfolder' => 'Ablageordner',

View File

@ -205,6 +205,7 @@ $text = array(
'backup_tools' => 'Εργαλεία εφεδρικής καταγραφής', 'backup_tools' => 'Εργαλεία εφεδρικής καταγραφής',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'μεταξύ', 'between' => 'μεταξύ',
'bg_BG' => 'Βουλγάρικα', 'bg_BG' => 'Βουλγάρικα',
@ -790,6 +791,8 @@ $text = array(
'mandatory_reviewers' => '', 'mandatory_reviewers' => '',
'mandatory_reviewer_no_access' => '', 'mandatory_reviewer_no_access' => '',
'march' => 'Μάρτιος', 'march' => 'Μάρτιος',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Μέγιστο μέγεθος μεταφόρτωσης', 'max_upload_size' => 'Μέγιστο μέγεθος μεταφόρτωσης',
'may' => 'Μάϊος', 'may' => 'Μάϊος',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

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 (2213), archonwang (3), dgrutsch (9), netixw (14) // Translators: Admin (2216), archonwang (3), dgrutsch (9), netixw (14)
$text = array( $text = array(
'2_factor_auth' => '2-factor authentication', '2_factor_auth' => '2-factor authentication',
@ -273,6 +273,7 @@ URL: [url]</p>',
'backup_tools' => 'Backup tools', 'backup_tools' => 'Backup tools',
'batch_change_owner' => 'Change owner', 'batch_change_owner' => 'Change owner',
'batch_new_owner_msg' => 'The owner of [count] documents has been changed.', 'batch_new_owner_msg' => 'The owner of [count] documents has been changed.',
'batch_operation' => 'Batch operation',
'batch_operation_result' => 'Result of batch operation', 'batch_operation_result' => 'Result of batch operation',
'between' => 'between', 'between' => 'between',
'bg_BG' => 'Bulgarian', 'bg_BG' => 'Bulgarian',
@ -1036,6 +1037,8 @@ URL: [url]</p>',
'mandatory_reviewers' => 'Mandatory reviewers', 'mandatory_reviewers' => 'Mandatory reviewers',
'mandatory_reviewer_no_access' => 'Mandatory reviewer \'[user]\' has insufficient access rights.', 'mandatory_reviewer_no_access' => 'Mandatory reviewer \'[user]\' has insufficient access rights.',
'march' => 'March', 'march' => 'March',
'mark_document' => 'Mark document for batch operation',
'mark_folder' => 'Mark folder for batch operation',
'max_upload_size' => 'Maximum upload size', 'max_upload_size' => 'Maximum upload size',
'may' => 'May', 'may' => 'May',
'menu_dropfolder' => 'Drop folder', 'menu_dropfolder' => 'Drop folder',

View File

@ -229,6 +229,7 @@ URL: [url]',
'backup_tools' => 'Herramientas de copia de seguridad', 'backup_tools' => 'Herramientas de copia de seguridad',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'entre', 'between' => 'entre',
'bg_BG' => 'Búlgaro', 'bg_BG' => 'Búlgaro',
@ -880,6 +881,8 @@ URL: [url]',
'mandatory_reviewers' => 'Revisores obligatorios', 'mandatory_reviewers' => 'Revisores obligatorios',
'mandatory_reviewer_no_access' => 'El revisor obligatorio \'[user]\' no tiene suficiente nivel de acceso.', 'mandatory_reviewer_no_access' => 'El revisor obligatorio \'[user]\' no tiene suficiente nivel de acceso.',
'march' => 'Marzo', 'march' => 'Marzo',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Tamaño máximo de subida para cada fichero', 'max_upload_size' => 'Tamaño máximo de subida para cada fichero',
'may' => 'Mayo', 'may' => 'Mayo',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

View File

@ -263,6 +263,7 @@ URL : [url]</p>',
'backup_tools' => 'Outils de sauvegarde', 'backup_tools' => 'Outils de sauvegarde',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'entre', 'between' => 'entre',
'bg_BG' => 'Bulgare', 'bg_BG' => 'Bulgare',
@ -1022,6 +1023,8 @@ URL : [url]</p>',
'mandatory_reviewers' => 'Examinateurs', 'mandatory_reviewers' => 'Examinateurs',
'mandatory_reviewer_no_access' => 'Examinateur \'[user]\' ne dispose pas des droits suffisants', 'mandatory_reviewer_no_access' => 'Examinateur \'[user]\' ne dispose pas des droits suffisants',
'march' => 'Mars', 'march' => 'Mars',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Taille maximum de fichier déposé', 'max_upload_size' => 'Taille maximum de fichier déposé',
'may' => 'Mai', 'may' => 'Mai',
'menu_dropfolder' => 'Dossier de dépôt', 'menu_dropfolder' => 'Dossier de dépôt',

View File

@ -234,6 +234,7 @@ Internet poveznica: [url]',
'backup_tools' => 'Alat za sigurnosnu kopiju', 'backup_tools' => 'Alat za sigurnosnu kopiju',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'između', 'between' => 'između',
'bg_BG' => 'Bugarski', 'bg_BG' => 'Bugarski',
@ -873,6 +874,8 @@ Internet poveznica: [url]',
'mandatory_reviewers' => 'Obavezni recezenti', 'mandatory_reviewers' => 'Obavezni recezenti',
'mandatory_reviewer_no_access' => 'Recezenti \'[user]\' nemaju dovoljno prava pristupa.', 'mandatory_reviewer_no_access' => 'Recezenti \'[user]\' nemaju dovoljno prava pristupa.',
'march' => 'Ožujak', 'march' => 'Ožujak',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Max. veličina za prijenos', 'max_upload_size' => 'Max. veličina za prijenos',
'may' => 'Svibanj', 'may' => 'Svibanj',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

View File

@ -229,6 +229,7 @@ URL: [url]',
'backup_tools' => 'Mentő eszközök', 'backup_tools' => 'Mentő eszközök',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'között', 'between' => 'között',
'bg_BG' => 'Bulgár', 'bg_BG' => 'Bulgár',
@ -868,6 +869,8 @@ URL: [url]',
'mandatory_reviewers' => 'Kötelező felülvizsgálók', 'mandatory_reviewers' => 'Kötelező felülvizsgálók',
'mandatory_reviewer_no_access' => 'Kötelező felülvizsgáló \'[user]\' nem rendelkezik elegendő jogosultságokkal.', 'mandatory_reviewer_no_access' => 'Kötelező felülvizsgáló \'[user]\' nem rendelkezik elegendő jogosultságokkal.',
'march' => 'Március', 'march' => 'Március',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Legnagyobb feltölthető méret', 'max_upload_size' => 'Legnagyobb feltölthető méret',
'may' => 'Május', 'may' => 'Május',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

View File

@ -243,6 +243,7 @@ URL: [url]</p>',
'backup_tools' => 'Alat cadangan', 'backup_tools' => 'Alat cadangan',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => '', 'between' => '',
'bg_BG' => 'Bulgaria', 'bg_BG' => 'Bulgaria',
@ -924,6 +925,8 @@ URL: [url]</p>',
'mandatory_reviewers' => '', 'mandatory_reviewers' => '',
'mandatory_reviewer_no_access' => 'Mandatory reviewer \'[user]\' memiliki hak akses yang tidak memadai.', 'mandatory_reviewer_no_access' => 'Mandatory reviewer \'[user]\' memiliki hak akses yang tidak memadai.',
'march' => 'Maret', 'march' => 'Maret',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Ukuran maksimum unggahan', 'max_upload_size' => 'Ukuran maksimum unggahan',
'may' => 'Mei', 'may' => 'Mei',
'menu_dropfolder' => 'Seret folder', 'menu_dropfolder' => 'Seret folder',

View File

@ -234,6 +234,7 @@ URL: [url]',
'backup_tools' => 'Strumenti di backup', 'backup_tools' => 'Strumenti di backup',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'tra', 'between' => 'tra',
'bg_BG' => 'Bulgaro', 'bg_BG' => 'Bulgaro',
@ -878,6 +879,8 @@ URL: [url]',
'mandatory_reviewers' => 'Revisori necessari', 'mandatory_reviewers' => 'Revisori necessari',
'mandatory_reviewer_no_access' => 'Il revisore necessario \'[user]\' non ha sufficienti permessi d\'accesso.', 'mandatory_reviewer_no_access' => 'Il revisore necessario \'[user]\' non ha sufficienti permessi d\'accesso.',
'march' => 'Marzo', 'march' => 'Marzo',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Dimensione massima caricabile per ogni file', 'max_upload_size' => 'Dimensione massima caricabile per ogni file',
'may' => 'Maggio', 'may' => 'Maggio',
'menu_dropfolder' => 'Cartella di pubblicazione', 'menu_dropfolder' => 'Cartella di pubblicazione',

View File

@ -236,6 +236,7 @@ URL: [url]',
'backup_tools' => '백업 도구', 'backup_tools' => '백업 도구',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => '사이', 'between' => '사이',
'bg_BG' => '불가리아', 'bg_BG' => '불가리아',
@ -874,6 +875,8 @@ URL: [url]',
'mandatory_reviewers' => '필수 검토자', 'mandatory_reviewers' => '필수 검토자',
'mandatory_reviewer_no_access' => '필수 검수자\'[user]\'가 충분한 권한을 가지고 있지 않습니다.', 'mandatory_reviewer_no_access' => '필수 검수자\'[user]\'가 충분한 권한을 가지고 있지 않습니다.',
'march' => '3월', 'march' => '3월',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => '최대 업로드 크기', 'max_upload_size' => '최대 업로드 크기',
'may' => '월', 'may' => '월',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

View File

@ -232,6 +232,7 @@ URL: [url]',
'backup_tools' => 'ເຄື່ອງມືສຳຮອງຂໍມູນ', 'backup_tools' => 'ເຄື່ອງມືສຳຮອງຂໍມູນ',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'ລະຫວ່າງ', 'between' => 'ລະຫວ່າງ',
'bg_BG' => 'ບັດແກເຣີຍ', 'bg_BG' => 'ບັດແກເຣີຍ',
@ -871,6 +872,8 @@ URL: [url]',
'mandatory_reviewers' => 'ຜູ້ກວດສອບແບບບັງຄັບ', 'mandatory_reviewers' => 'ຜູ້ກວດສອບແບບບັງຄັບ',
'mandatory_reviewer_no_access' => 'ຜູ້ກວດສອບແບບບັງຄັບ "[user] " ມີສິດທິການເຂົ້າເຖິງບໍ່ພຽງພໍ', 'mandatory_reviewer_no_access' => 'ຜູ້ກວດສອບແບບບັງຄັບ "[user] " ມີສິດທິການເຂົ້າເຖິງບໍ່ພຽງພໍ',
'march' => 'ເດືອນມີນາ', 'march' => 'ເດືອນມີນາ',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'ຂະຫນາດການອັບໂຫລດສູງສຸດ', 'max_upload_size' => 'ຂະຫນາດການອັບໂຫລດສູງສຸດ',
'may' => 'ເດືອນພຶດສະພາ', 'may' => 'ເດືອນພຶດສະພາ',
'menu_dropfolder' => 'ວາງໂຟລເດີ', 'menu_dropfolder' => 'ວາງໂຟລເດີ',

View File

@ -234,6 +234,7 @@ URL: [url]',
'backup_tools' => 'Sikkerhetskopi-verktøy', 'backup_tools' => 'Sikkerhetskopi-verktøy',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'mellom', 'between' => 'mellom',
'bg_BG' => 'Bulgaria', 'bg_BG' => 'Bulgaria',
@ -892,6 +893,8 @@ URL: [url]',
'mandatory_reviewers' => 'Obligatorisk korrekturleser', 'mandatory_reviewers' => 'Obligatorisk korrekturleser',
'mandatory_reviewer_no_access' => 'Obligatorisk korrekturleser \'[user]\' har mangelfull adgangsrettigheter.', 'mandatory_reviewer_no_access' => 'Obligatorisk korrekturleser \'[user]\' har mangelfull adgangsrettigheter.',
'march' => 'Mars', 'march' => 'Mars',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Maksimal størrelse for opplasting', 'max_upload_size' => 'Maksimal størrelse for opplasting',
'may' => 'Mai', 'may' => 'Mai',
'menu_dropfolder' => 'Slipp mappe', 'menu_dropfolder' => 'Slipp mappe',

View File

@ -227,6 +227,7 @@ URL: [url]',
'backup_tools' => 'Backup-gereedschap', 'backup_tools' => 'Backup-gereedschap',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'tussen', 'between' => 'tussen',
'bg_BG' => 'Bulgaars', 'bg_BG' => 'Bulgaars',
@ -885,6 +886,8 @@ URL: [url]',
'mandatory_reviewers' => 'Verplichte beoordelaars \'[user]\'', 'mandatory_reviewers' => 'Verplichte beoordelaars \'[user]\'',
'mandatory_reviewer_no_access' => 'De verplichte gebruikers hebben onvoldoende rechten.', 'mandatory_reviewer_no_access' => 'De verplichte gebruikers hebben onvoldoende rechten.',
'march' => 'maart', 'march' => 'maart',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Maximale upload omvang voor ieder bestand', 'max_upload_size' => 'Maximale upload omvang voor ieder bestand',
'may' => 'mei', 'may' => 'mei',
'menu_dropfolder' => 'Dropfolder', 'menu_dropfolder' => 'Dropfolder',

View File

@ -222,6 +222,7 @@ URL: [url]',
'backup_tools' => 'Narzędzia kopii zapasowej', 'backup_tools' => 'Narzędzia kopii zapasowej',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'między', 'between' => 'między',
'bg_BG' => 'Bułgarski', 'bg_BG' => 'Bułgarski',
@ -861,6 +862,8 @@ URL: [url]',
'mandatory_reviewers' => 'Wymagani przeglądający', 'mandatory_reviewers' => 'Wymagani przeglądający',
'mandatory_reviewer_no_access' => 'Obowiązkowy recenzent \'[user]\' ma niewystarczające prawa dostępu.', 'mandatory_reviewer_no_access' => 'Obowiązkowy recenzent \'[user]\' ma niewystarczające prawa dostępu.',
'march' => 'Marzec', 'march' => 'Marzec',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Maksymalny rozmiar pliku', 'max_upload_size' => 'Maksymalny rozmiar pliku',
'may' => 'Maj', 'may' => 'Maj',
'menu_dropfolder' => 'Folder zrzutu', 'menu_dropfolder' => 'Folder zrzutu',

View File

@ -234,6 +234,7 @@ URL: [url]',
'backup_tools' => 'Ferramentas de backup', 'backup_tools' => 'Ferramentas de backup',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'entre', 'between' => 'entre',
'bg_BG' => 'Bulgaro', 'bg_BG' => 'Bulgaro',
@ -892,6 +893,8 @@ URL: [url]',
'mandatory_reviewers' => 'Avaliadores obrigatórios', 'mandatory_reviewers' => 'Avaliadores obrigatórios',
'mandatory_reviewer_no_access' => 'Avaliação obrigatória \'[usuário]\' tem direitos de acesso insuficientes.', 'mandatory_reviewer_no_access' => 'Avaliação obrigatória \'[usuário]\' tem direitos de acesso insuficientes.',
'march' => 'Março', 'march' => 'Março',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Tamanho máximo de arquivo para upload', 'max_upload_size' => 'Tamanho máximo de arquivo para upload',
'may' => 'Maio', 'may' => 'Maio',
'menu_dropfolder' => 'Pasta suspensa', 'menu_dropfolder' => 'Pasta suspensa',

View File

@ -234,6 +234,7 @@ URL: [url]',
'backup_tools' => 'Backup tools', 'backup_tools' => 'Backup tools',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'între', 'between' => 'între',
'bg_BG' => 'Bulgară', 'bg_BG' => 'Bulgară',
@ -873,6 +874,8 @@ URL: [url]',
'mandatory_reviewers' => 'Revizuitori obligatorii', 'mandatory_reviewers' => 'Revizuitori obligatorii',
'mandatory_reviewer_no_access' => 'Revizuitorul obligatoriu \'[user]\' are drepturi de acces insuficiente.', 'mandatory_reviewer_no_access' => 'Revizuitorul obligatoriu \'[user]\' are drepturi de acces insuficiente.',
'march' => 'Martie', 'march' => 'Martie',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Dimensiunea maximă de încărcare', 'max_upload_size' => 'Dimensiunea maximă de încărcare',
'may' => 'Mai', 'may' => 'Mai',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

View File

@ -234,6 +234,7 @@ URL: [url]',
'backup_tools' => 'Резервные копии', 'backup_tools' => 'Резервные копии',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'между', 'between' => 'между',
'bg_BG' => 'Болгарский', 'bg_BG' => 'Болгарский',
@ -873,6 +874,8 @@ URL: [url]',
'mandatory_reviewers' => 'Обязательные рецензенты', 'mandatory_reviewers' => 'Обязательные рецензенты',
'mandatory_reviewer_no_access' => 'Обязательный рецензент «[user]» не имеет достаточных прав доступа.', 'mandatory_reviewer_no_access' => 'Обязательный рецензент «[user]» не имеет достаточных прав доступа.',
'march' => 'Март', 'march' => 'Март',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Ограничение размера файла', 'max_upload_size' => 'Ограничение размера файла',
'may' => 'Май', 'may' => 'Май',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

View File

@ -234,6 +234,7 @@ URL: [url]',
'backup_tools' => 'Zálohovacie nástroje', 'backup_tools' => 'Zálohovacie nástroje',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'medzi', 'between' => 'medzi',
'bg_BG' => 'Bulharsky', 'bg_BG' => 'Bulharsky',
@ -892,6 +893,8 @@ URL: [url]',
'mandatory_reviewers' => 'Mandatory reviewers', 'mandatory_reviewers' => 'Mandatory reviewers',
'mandatory_reviewer_no_access' => 'Mandatory reviewer \'[user]\' has insufficient access rights.', 'mandatory_reviewer_no_access' => 'Mandatory reviewer \'[user]\' has insufficient access rights.',
'march' => 'Marec', 'march' => 'Marec',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Maximálna veľkosť každého súboru', 'max_upload_size' => 'Maximálna veľkosť každého súboru',
'may' => 'Máj', 'may' => 'Máj',
'menu_dropfolder' => 'Drop zložka', 'menu_dropfolder' => 'Drop zložka',

View File

@ -235,6 +235,7 @@ URL: [url]',
'backup_tools' => 'Backup-verktyg', 'backup_tools' => 'Backup-verktyg',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'mellan', 'between' => 'mellan',
'bg_BG' => 'Bulgariska', 'bg_BG' => 'Bulgariska',
@ -879,6 +880,8 @@ URL: [url]',
'mandatory_reviewers' => 'Obligatoriska granskare', 'mandatory_reviewers' => 'Obligatoriska granskare',
'mandatory_reviewer_no_access' => 'Obligatorisk person som granskar \'[user]\' ar inga rättigheter.', 'mandatory_reviewer_no_access' => 'Obligatorisk person som granskar \'[user]\' ar inga rättigheter.',
'march' => 'Mars', 'march' => 'Mars',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Maximal storlek för uppladdning', 'max_upload_size' => 'Maximal storlek för uppladdning',
'may' => 'Maj', 'may' => 'Maj',
'menu_dropfolder' => 'Mapp för snabbuppladdning', 'menu_dropfolder' => 'Mapp för snabbuppladdning',

View File

@ -228,6 +228,7 @@ URL: [url]',
'backup_tools' => 'Yedekleme araçları', 'backup_tools' => 'Yedekleme araçları',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'arasında', 'between' => 'arasında',
'bg_BG' => 'Bulgarca', 'bg_BG' => 'Bulgarca',
@ -867,6 +868,8 @@ URL: [url]',
'mandatory_reviewers' => 'Zorunlu kontrol edenler', 'mandatory_reviewers' => 'Zorunlu kontrol edenler',
'mandatory_reviewer_no_access' => 'Zorunlu kontrol üyesi \'[user]\' yetersiz erişim haklarına sahip', 'mandatory_reviewer_no_access' => 'Zorunlu kontrol üyesi \'[user]\' yetersiz erişim haklarına sahip',
'march' => 'Mart', 'march' => 'Mart',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Maksimum yükleme boyutu', 'max_upload_size' => 'Maksimum yükleme boyutu',
'may' => 'Mayıs', 'may' => 'Mayıs',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

View File

@ -234,6 +234,7 @@ URL: [url]',
'backup_tools' => 'Резервні копії', 'backup_tools' => 'Резервні копії',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => 'між', 'between' => 'між',
'bg_BG' => 'Bulgarian', 'bg_BG' => 'Bulgarian',
@ -873,6 +874,8 @@ URL: [url]',
'mandatory_reviewers' => 'Обов\'язкові рецензенти', 'mandatory_reviewers' => 'Обов\'язкові рецензенти',
'mandatory_reviewer_no_access' => 'Обов\'язковий рецензент «[user]» не має достатніх прав доступу.', 'mandatory_reviewer_no_access' => 'Обов\'язковий рецензент «[user]» не має достатніх прав доступу.',
'march' => 'Березень', 'march' => 'Березень',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => 'Обмеження розміру файлу', 'max_upload_size' => 'Обмеження розміру файлу',
'may' => 'Травень', 'may' => 'Травень',
'menu_dropfolder' => '', 'menu_dropfolder' => '',

View File

@ -226,6 +226,7 @@ URL: [url]',
'backup_tools' => '备份工具', 'backup_tools' => '备份工具',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => '时间段', 'between' => '时间段',
'bg_BG' => '保加利亚语', 'bg_BG' => '保加利亚语',
@ -875,6 +876,8 @@ URL: [url]',
'mandatory_reviewers' => '必选校对人', 'mandatory_reviewers' => '必选校对人',
'mandatory_reviewer_no_access' => '必须的评审员\'[user]\'没有足够的访问权限', 'mandatory_reviewer_no_access' => '必须的评审员\'[user]\'没有足够的访问权限',
'march' => '三 月', 'march' => '三 月',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => '最大上传文件大小', 'max_upload_size' => '最大上传文件大小',
'may' => '五 月', 'may' => '五 月',
'menu_dropfolder' => '删除文件夹', 'menu_dropfolder' => '删除文件夹',

View File

@ -234,6 +234,7 @@ URL: [url]',
'backup_tools' => '備份工具', 'backup_tools' => '備份工具',
'batch_change_owner' => '', 'batch_change_owner' => '',
'batch_new_owner_msg' => '', 'batch_new_owner_msg' => '',
'batch_operation' => '',
'batch_operation_result' => '', 'batch_operation_result' => '',
'between' => '時間段', 'between' => '時間段',
'bg_BG' => '保加利亞語', 'bg_BG' => '保加利亞語',
@ -892,6 +893,8 @@ URL: [url]',
'mandatory_reviewers' => '強制性審稿人', 'mandatory_reviewers' => '強制性審稿人',
'mandatory_reviewer_no_access' => '強制性審閱者\'[user] \'沒有足夠的訪問權限。', 'mandatory_reviewer_no_access' => '強制性審閱者\'[user] \'沒有足夠的訪問權限。',
'march' => '三 月', 'march' => '三 月',
'mark_document' => '',
'mark_folder' => '',
'max_upload_size' => '最大上傳文件大小', 'max_upload_size' => '最大上傳文件大小',
'may' => '五 月', 'may' => '五 月',
'menu_dropfolder' => '下拉目錄', 'menu_dropfolder' => '下拉目錄',