mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-06-07 13:49:23 +00:00
Merge tag '5.0.5'
This commit is contained in:
commit
2a45854818
30
CHANGELOG
30
CHANGELOG
|
@ -1,3 +1,10 @@
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
Changes in version 5.0.5
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
- merged changes from 4.3.28
|
||||||
|
- fix choosing home folder of users
|
||||||
|
- fix clearing cache
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 5.0.4
|
Changes in version 5.0.4
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
@ -31,6 +38,29 @@
|
||||||
- add .xml to online file types by default
|
- add .xml to online file types by default
|
||||||
- add home folder for users
|
- add home folder for users
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
Changes in version 4.3.28
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
- add expiration in list of documents
|
||||||
|
- fix SetReviewersApprovers if reviewer/approver is an admin or the owner
|
||||||
|
- full text index documents after upload if they are smaller than a configured
|
||||||
|
size
|
||||||
|
- reindex documents when versions were added or removed in order to keep the
|
||||||
|
full text index up to date
|
||||||
|
- show only those groups in GroupView the current user is a member of (partly
|
||||||
|
fixes #239)
|
||||||
|
- make UserView look similar to UserList
|
||||||
|
- log correct ip even after a reverse proxy (Closes #206)
|
||||||
|
- fix sql error in table creation if sql mode is set to STRICT_TRANS_TABLE
|
||||||
|
- menu entry 'Clear clipboard' will call ajax function and no longer
|
||||||
|
redirects to new page
|
||||||
|
- apply all login restrictions like guest login, restrict to ip address,
|
||||||
|
disabled account when authenticating by ldap
|
||||||
|
- place all authentication methods into its own class
|
||||||
|
- do not cache output of op/op.Ajax.php (Closes #280)
|
||||||
|
- major update of italian translations
|
||||||
|
- search also in comment of document versions
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 4.3.27
|
Changes in version 4.3.27
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,4 +1,4 @@
|
||||||
VERSION=5.0.4
|
VERSION=5.0.5
|
||||||
SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc drop-tables-innodb.sql styles js TODO LICENSE Makefile webdav install restapi
|
SRC=CHANGELOG inc conf utils index.php languages views op out controllers doc drop-tables-innodb.sql styles js TODO LICENSE Makefile webdav install restapi
|
||||||
# webapp
|
# webapp
|
||||||
|
|
||||||
|
|
|
@ -312,7 +312,7 @@ class SeedDMS_Core_DMS {
|
||||||
$this->callbacks = array();
|
$this->callbacks = array();
|
||||||
$this->version = '@package_version@';
|
$this->version = '@package_version@';
|
||||||
if($this->version[0] == '@')
|
if($this->version[0] == '@')
|
||||||
$this->version = '5.0.4';
|
$this->version = '5.0.5';
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -830,6 +830,7 @@ class SeedDMS_Core_DMS {
|
||||||
}
|
}
|
||||||
if (in_array(3, $searchin)) {
|
if (in_array(3, $searchin)) {
|
||||||
$searchFields[] = "`tblDocuments`.`comment`";
|
$searchFields[] = "`tblDocuments`.`comment`";
|
||||||
|
$searchFields[] = "`tblDocumentContent`.`comment`";
|
||||||
}
|
}
|
||||||
if (in_array(4, $searchin)) {
|
if (in_array(4, $searchin)) {
|
||||||
$searchFields[] = "`tblDocumentAttributes`.`value`";
|
$searchFields[] = "`tblDocumentAttributes`.`value`";
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
* @copyright Copyright (C) 2002-2005 Markus Westphal, 2006-2008 Malcolm Cowe, 2010 Uwe Steinmann
|
* @copyright Copyright (C) 2002-2005 Markus Westphal, 2006-2008 Malcolm Cowe, 2010 Uwe Steinmann
|
||||||
* @version Release: @package_version@
|
* @version Release: @package_version@
|
||||||
*/
|
*/
|
||||||
class SeedDMS_Core_Group {
|
class SeedDMS_Core_Group { /* {{{ */
|
||||||
/**
|
/**
|
||||||
* The id of the user group
|
* The id of the user group
|
||||||
*
|
*
|
||||||
|
@ -36,6 +36,13 @@ class SeedDMS_Core_Group {
|
||||||
*/
|
*/
|
||||||
protected $_name;
|
protected $_name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The comment of the user group
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $_comment;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Back reference to DMS this user group belongs to
|
* Back reference to DMS this user group belongs to
|
||||||
*
|
*
|
||||||
|
@ -203,8 +210,14 @@ class SeedDMS_Core_Group {
|
||||||
return true;
|
return true;
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
// $asManager=false: verify if user is in group
|
/**
|
||||||
// $asManager=true : verify if user is in group as manager
|
* Check if user is member of group
|
||||||
|
*
|
||||||
|
* @param object $user user to be checked
|
||||||
|
* @param boolean $asManager also check whether user is manager of group if
|
||||||
|
* set to true, otherwise does not care about manager status
|
||||||
|
* @return boolean true if user is member, otherwise false
|
||||||
|
*/
|
||||||
function isMember($user,$asManager=false) { /* {{{ */
|
function isMember($user,$asManager=false) { /* {{{ */
|
||||||
if (isset($this->_users)&&!$asManager) {
|
if (isset($this->_users)&&!$asManager) {
|
||||||
foreach ($this->_users as $usr)
|
foreach ($this->_users as $usr)
|
||||||
|
@ -225,6 +238,12 @@ class SeedDMS_Core_Group {
|
||||||
return true;
|
return true;
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toggle manager status of user
|
||||||
|
*
|
||||||
|
* @param object $user
|
||||||
|
* @return boolean true if operation was successful, otherwise false
|
||||||
|
*/
|
||||||
function toggleManager($user) { /* {{{ */
|
function toggleManager($user) { /* {{{ */
|
||||||
$db = $this->_dms->getDB();
|
$db = $this->_dms->getDB();
|
||||||
|
|
||||||
|
@ -437,5 +456,5 @@ class SeedDMS_Core_Group {
|
||||||
return $notifications;
|
return $notifications;
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
}
|
} /* }}} */
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -12,11 +12,11 @@
|
||||||
<email>uwe@steinmann.cx</email>
|
<email>uwe@steinmann.cx</email>
|
||||||
<active>yes</active>
|
<active>yes</active>
|
||||||
</lead>
|
</lead>
|
||||||
<date>2016-05-03</date>
|
<date>2016-08-09</date>
|
||||||
<time>08:56:33</time>
|
<time>06:23:34</time>
|
||||||
<version>
|
<version>
|
||||||
<release>5.0.4</release>
|
<release>5.0.5</release>
|
||||||
<api>5.0.4</api>
|
<api>5.0.5</api>
|
||||||
</version>
|
</version>
|
||||||
<stability>
|
<stability>
|
||||||
<release>stable</release>
|
<release>stable</release>
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
</stability>
|
</stability>
|
||||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||||
<notes>
|
<notes>
|
||||||
- all changes from 4.3.27 merged
|
- all changes from 4.3.28 merged
|
||||||
</notes>
|
</notes>
|
||||||
<contents>
|
<contents>
|
||||||
<dir baseinstalldir="SeedDMS" name="/">
|
<dir baseinstalldir="SeedDMS" name="/">
|
||||||
|
@ -1090,5 +1090,54 @@ SeedDMS_Core_DMS::getNotificationsByUser() are deprecated
|
||||||
- all changes from 4.3.26 merged
|
- all changes from 4.3.26 merged
|
||||||
</notes>
|
</notes>
|
||||||
</release>
|
</release>
|
||||||
|
<release>
|
||||||
|
<date>2016-05-03</date>
|
||||||
|
<time>08:56:33</time>
|
||||||
|
<version>
|
||||||
|
<release>5.0.4</release>
|
||||||
|
<api>5.0.4</api>
|
||||||
|
</version>
|
||||||
|
<stability>
|
||||||
|
<release>stable</release>
|
||||||
|
<api>stable</api>
|
||||||
|
</stability>
|
||||||
|
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||||
|
<notes>
|
||||||
|
- all changes from 4.3.27 merged
|
||||||
|
</notes>
|
||||||
|
</release>
|
||||||
|
<release>
|
||||||
|
<date>2016-04-26</date>
|
||||||
|
<time>12:04:59</time>
|
||||||
|
<version>
|
||||||
|
<release>4.3.27</release>
|
||||||
|
<api>4.3.27</api>
|
||||||
|
</version>
|
||||||
|
<stability>
|
||||||
|
<release>stable</release>
|
||||||
|
<api>stable</api>
|
||||||
|
</stability>
|
||||||
|
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||||
|
<notes>
|
||||||
|
- callbacks can have more then one user function
|
||||||
|
- fix some sql statements, because they didn't work with mysql 5.7.5 anymore
|
||||||
|
</notes>
|
||||||
|
</release>
|
||||||
|
<release>
|
||||||
|
<date>2016-08-24</date>
|
||||||
|
<time>10:18:59</time>
|
||||||
|
<version>
|
||||||
|
<release>4.3.28</release>
|
||||||
|
<api>4.3.28</api>
|
||||||
|
</version>
|
||||||
|
<stability>
|
||||||
|
<release>stable</release>
|
||||||
|
<api>stable</api>
|
||||||
|
</stability>
|
||||||
|
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||||
|
<notes>
|
||||||
|
- all changes from 4.3.28 merged
|
||||||
|
</notes>
|
||||||
|
</release>
|
||||||
</changelog>
|
</changelog>
|
||||||
</package>
|
</package>
|
||||||
|
|
|
@ -145,8 +145,8 @@
|
||||||
- URIs are supported, e.g.: ldaps://ldap.host.com
|
- URIs are supported, e.g.: ldaps://ldap.host.com
|
||||||
- port: port of the authentification server
|
- port: port of the authentification server
|
||||||
- baseDN: top level of the LDAP directory tree
|
- baseDN: top level of the LDAP directory tree
|
||||||
- bindDN: XXX
|
- bindDN: use this dn for a first step bind, leave empty for annonymous bind
|
||||||
- bindPw: XXX
|
- bindPw: use this password for a first step bind
|
||||||
- filter: Additional filters which are to be checked
|
- filter: Additional filters which are to be checked
|
||||||
-->
|
-->
|
||||||
<connector
|
<connector
|
||||||
|
@ -165,9 +165,10 @@
|
||||||
- host: hostname of the authentification server
|
- host: hostname of the authentification server
|
||||||
- port: port of the authentification server
|
- port: port of the authentification server
|
||||||
- baseDN: top level of the LDAP directory tree
|
- baseDN: top level of the LDAP directory tree
|
||||||
|
- bindDN: use this dn for a first step bind, leave empty for annonymous bind
|
||||||
|
- bindPw: use this password for a first step bind
|
||||||
|
- filter: Additional filters which are to be checked
|
||||||
- accountDomainName: sample: example.com
|
- accountDomainName: sample: example.com
|
||||||
- bindDN: XXX
|
|
||||||
- bindPw: XXX
|
|
||||||
-->
|
-->
|
||||||
<connector
|
<connector
|
||||||
enable = "false"
|
enable = "false"
|
||||||
|
|
53
inc/inc.ClassAuthentication.php
Normal file
53
inc/inc.ClassAuthentication.php
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Implementation of user authentication
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS
|
||||||
|
* @license GPL 2
|
||||||
|
* @version @version@
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstract class to authenticate user
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
abstract class SeedDMS_Authentication {
|
||||||
|
/**
|
||||||
|
* @var object $dms object of dms
|
||||||
|
* @access protected
|
||||||
|
*/
|
||||||
|
private $dms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var object $settings SeedDMS Settings
|
||||||
|
* @access protected
|
||||||
|
*/
|
||||||
|
private $settings;
|
||||||
|
|
||||||
|
function __construct($dms, $settings) { /* {{{ */
|
||||||
|
$this->dms = $dms;
|
||||||
|
$this->settings = $settings;
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Do Authentication
|
||||||
|
*
|
||||||
|
* This function must check the username and login. If authentication succeeds
|
||||||
|
* the user object otherwise false must be returned. If authentication fails
|
||||||
|
* the number of failed logins should be incremented and account disabled.
|
||||||
|
*
|
||||||
|
* @param string $username
|
||||||
|
* @param string $password
|
||||||
|
* @return object|boolean user object if authentication was successful otherwise false
|
||||||
|
*/
|
||||||
|
abstract function authenticate($username, $password);
|
||||||
|
}
|
74
inc/inc.ClassDbAuthentication.php
Normal file
74
inc/inc.ClassDbAuthentication.php
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Implementation of user authentication
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS
|
||||||
|
* @license GPL 2
|
||||||
|
* @version @version@
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
|
||||||
|
require_once "inc.ClassAuthentication.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstract class to authenticate user against ѕeeddms database
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
class SeedDMS_DbAuthentication extends SeedDMS_Authentication {
|
||||||
|
/**
|
||||||
|
* @var object $dms object of dms
|
||||||
|
* @access protected
|
||||||
|
*/
|
||||||
|
private $dms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var object $settings SeedDMS Settings
|
||||||
|
* @access protected
|
||||||
|
*/
|
||||||
|
private $settings;
|
||||||
|
|
||||||
|
function __construct($dms, $settings) { /* {{{ */
|
||||||
|
$this->dms = $dms;
|
||||||
|
$this->settings = $settings;
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Do Authentication
|
||||||
|
*
|
||||||
|
* @param string $username
|
||||||
|
* @param string $password
|
||||||
|
* @return object|boolean user object if authentication was successful otherwise false
|
||||||
|
*/
|
||||||
|
public function authenticate($username, $password) { /* {{{ */
|
||||||
|
$settings = $this->settings;
|
||||||
|
$dms = $this->dms;
|
||||||
|
|
||||||
|
// Try to find user with given login.
|
||||||
|
if($user = $dms->getUserByLogin($username)) {
|
||||||
|
$userid = $user->getID();
|
||||||
|
|
||||||
|
// Check if password matches (if not a guest user)
|
||||||
|
// Assume that the password has been sent via HTTP POST. It would be careless
|
||||||
|
// (and dangerous) for passwords to be sent via GET.
|
||||||
|
if (($userid != $settings->_guestID) && (md5($password) != $user->getPwd()) || ($userid == $settings->_guestID) && $user->getPwd() && (md5($password) != $user->getPwd())) {
|
||||||
|
/* if counting of login failures is turned on, then increment its value */
|
||||||
|
if($settings->_loginFailure) {
|
||||||
|
$failures = $user->addLoginFailure();
|
||||||
|
if($failures >= $settings->_loginFailure)
|
||||||
|
$user->setDisabled(true);
|
||||||
|
}
|
||||||
|
$user = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $user;
|
||||||
|
} /* }}} */
|
||||||
|
}
|
163
inc/inc.ClassLdapAuthentication.php
Normal file
163
inc/inc.ClassLdapAuthentication.php
Normal file
|
@ -0,0 +1,163 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Implementation of user authentication
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS
|
||||||
|
* @license GPL 2
|
||||||
|
* @version @version@
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
|
||||||
|
require_once "inc.ClassAuthentication.php";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Abstract class to authenticate user against ldap server
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
class SeedDMS_LdapAuthentication extends SeedDMS_Authentication {
|
||||||
|
/**
|
||||||
|
* @var object $dms object of dms
|
||||||
|
* @access protected
|
||||||
|
*/
|
||||||
|
private $dms;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var object $settings SeedDMS Settings
|
||||||
|
* @access protected
|
||||||
|
*/
|
||||||
|
private $settings;
|
||||||
|
|
||||||
|
function __construct($dms, $settings) { /* {{{ */
|
||||||
|
$this->dms = $dms;
|
||||||
|
$this->settings = $settings;
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Do ldap authentication
|
||||||
|
*
|
||||||
|
* This method supports active directory and open ldap servers. Others may work but
|
||||||
|
* are not tested.
|
||||||
|
* The authentication is done in two steps.
|
||||||
|
* 1. First an anonymous bind is done and the user who wants to login is searched
|
||||||
|
* for. If it is found the cn of that user will be used for the bind in step 2.
|
||||||
|
* If the user cannot be found the second step will use a cn: cn=<username>,<basedn>
|
||||||
|
* 2. A second bind with a password and cn will be executed. This is the actuall
|
||||||
|
* authentication. If that succeeds the user is logged in. If the user doesn't
|
||||||
|
* exist in the database, it will be created.
|
||||||
|
*
|
||||||
|
* @param string $username
|
||||||
|
* @param string $password
|
||||||
|
* @return object|boolean user object if authentication was successful otherwise false
|
||||||
|
*/
|
||||||
|
public function authenticate($username, $password) { /* {{{ */
|
||||||
|
$settings = $this->settings;
|
||||||
|
$dms = $this->dms;
|
||||||
|
|
||||||
|
if (isset($settings->_ldapPort) && is_int($settings->_ldapPort)) {
|
||||||
|
$ds = ldap_connect($settings->_ldapHost, $settings->_ldapPort);
|
||||||
|
} else {
|
||||||
|
$ds = ldap_connect($settings->_ldapHost);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!is_bool($ds)) {
|
||||||
|
/* Check if ldap base dn is set, and use ldap server if it is */
|
||||||
|
if (isset($settings->_ldapBaseDN)) {
|
||||||
|
$ldapSearchAttribut = "uid=";
|
||||||
|
$tmpDN = "cn=".$username.",".$settings->_ldapBaseDN;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Active directory has a different base dn */
|
||||||
|
if (isset($settings->_ldapType)) {
|
||||||
|
if ($settings->_ldapType==1) {
|
||||||
|
$ldapSearchAttribut = "sAMAccountName=";
|
||||||
|
$tmpDN = $username.'@'.$settings->_ldapAccountDomainName;
|
||||||
|
// Add the following if authentication with an Active Dir doesn't work
|
||||||
|
// See https://sourceforge.net/p/seeddms/discussion/general/thread/19c70d8d/
|
||||||
|
// and http://stackoverflow.com/questions/6222641/how-to-php-ldap-search-to-get-user-ou-if-i-dont-know-the-ou-for-base-dn
|
||||||
|
ldap_set_option($ds, LDAP_OPT_REFERRALS, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ensure that the LDAP connection is set to use version 3 protocol.
|
||||||
|
// Required for most authentication methods, including SASL.
|
||||||
|
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
|
||||||
|
|
||||||
|
// try an authenticated/anonymous bind first.
|
||||||
|
// If it succeeds, get the DN for the user and use it for an authentication
|
||||||
|
// with the users password.
|
||||||
|
$bind = false;
|
||||||
|
if (isset($settings->_ldapBindDN)) {
|
||||||
|
$bind = @ldap_bind($ds, $settings->_ldapBindDN, $settings->_ldapBindPw);
|
||||||
|
} else {
|
||||||
|
$bind = @ldap_bind($ds);
|
||||||
|
}
|
||||||
|
$dn = false;
|
||||||
|
/* If bind succeed, then get the dn of for the user */
|
||||||
|
if ($bind) {
|
||||||
|
if (isset($settings->_ldapFilter) && strlen($settings->_ldapFilter) > 0) {
|
||||||
|
$search = ldap_search($ds, $settings->_ldapBaseDN, "(&(".$ldapSearchAttribut.$username.")".$settings->_ldapFilter.")");
|
||||||
|
} else {
|
||||||
|
$search = ldap_search($ds, $settings->_ldapBaseDN, $ldapSearchAttribut.$username);
|
||||||
|
}
|
||||||
|
if (!is_bool($search)) {
|
||||||
|
$info = ldap_get_entries($ds, $search);
|
||||||
|
if (!is_bool($info) && $info["count"]>0) {
|
||||||
|
$dn = $info[0]['dn'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If the previous bind failed, try it with the users creditionals
|
||||||
|
* by simply setting $dn to a default string
|
||||||
|
*/
|
||||||
|
if (is_bool($dn)) {
|
||||||
|
$dn = $tmpDN;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* No do the actual authentication of the user */
|
||||||
|
$bind = @ldap_bind($ds, $dn, $password);
|
||||||
|
$user = $dms->getUserByLogin($username);
|
||||||
|
if ($bind) {
|
||||||
|
// Successfully authenticated. Now check to see if the user exists within
|
||||||
|
// the database. If not, add them in if _restricted is not set,
|
||||||
|
// but do not add their password.
|
||||||
|
if (is_bool($user) && !$settings->_restricted) {
|
||||||
|
// Retrieve the user's LDAP information.
|
||||||
|
if (isset($settings->_ldapFilter) && strlen($settings->_ldapFilter) > 0) {
|
||||||
|
$search = ldap_search($ds, $settings->_ldapBaseDN, "(&(".$ldapSearchAttribut.$username.")".$settings->_ldapFilter.")");
|
||||||
|
} else {
|
||||||
|
$search = ldap_search($ds, $settings->_ldapBaseDN, $ldapSearchAttribut.$username);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!is_bool($search)) {
|
||||||
|
$info = ldap_get_entries($ds, $search);
|
||||||
|
if (!is_bool($info) && $info["count"]==1 && $info[0]["count"]>0) {
|
||||||
|
$user = $dms->addUser($username, null, $info[0]['cn'][0], $info[0]['mail'][0], $settings->_language, $settings->_theme, "", 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} elseif($user) {
|
||||||
|
$userid = $user->getID();
|
||||||
|
if($settings->_loginFailure) {
|
||||||
|
$failures = $user->addLoginFailure();
|
||||||
|
if($failures >= $settings->_loginFailure)
|
||||||
|
$user->setDisabled(true);
|
||||||
|
}
|
||||||
|
$user = false;
|
||||||
|
}
|
||||||
|
ldap_close($ds);
|
||||||
|
|
||||||
|
return $user;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} /* }}} */
|
||||||
|
}
|
|
@ -48,7 +48,7 @@ class SeedDMS_PasswordHistoryManager {
|
||||||
|
|
||||||
function add($user, $pwd) { /* {{{ */
|
function add($user, $pwd) { /* {{{ */
|
||||||
$queryStr = "INSERT INTO tblUserPasswordHistory (userID, pwd, `date`) ".
|
$queryStr = "INSERT INTO tblUserPasswordHistory (userID, pwd, `date`) ".
|
||||||
"VALUES (".$this->db->qstr($user->getId()).", ".$this->db->qstr($pwd).", CURRENT_TIMESTAMP)";
|
"VALUES (".$this->db->qstr($user->getId()).", ".$this->db->qstr($pwd).", ".$this->db->getCurrentDatetime().")";
|
||||||
if (!$this->db->getResult($queryStr)) {
|
if (!$this->db->getResult($queryStr)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,6 +93,8 @@ class Settings { /* {{{ */
|
||||||
var $_stopWordsFile = null;
|
var $_stopWordsFile = null;
|
||||||
// enable/disable lucene fulltext search
|
// enable/disable lucene fulltext search
|
||||||
var $_enableFullSearch = true;
|
var $_enableFullSearch = true;
|
||||||
|
// max size of documents for direct indexing
|
||||||
|
var $_maxSizeForFullText = 0;
|
||||||
// fulltext search engine
|
// fulltext search engine
|
||||||
var $_fullSearchEngine = 'lucene';
|
var $_fullSearchEngine = 'lucene';
|
||||||
// default search method
|
// default search method
|
||||||
|
@ -188,7 +190,7 @@ class Settings { /* {{{ */
|
||||||
var $_sortUsersInList = '';
|
var $_sortUsersInList = '';
|
||||||
// Sort method for forders and documents ('n' (name) or '')
|
// Sort method for forders and documents ('n' (name) or '')
|
||||||
var $_sortFoldersDefault = '';
|
var $_sortFoldersDefault = '';
|
||||||
// enable/disable lucene fulltext search
|
// Set valid IP for admin logins
|
||||||
// if enabled admin can login only by specified IP addres
|
// if enabled admin can login only by specified IP addres
|
||||||
var $_adminIP = "";
|
var $_adminIP = "";
|
||||||
// Max Execution Time
|
// Max Execution Time
|
||||||
|
@ -225,14 +227,24 @@ class Settings { /* {{{ */
|
||||||
var $_smtpUser = null;
|
var $_smtpUser = null;
|
||||||
// SMTP : password
|
// SMTP : password
|
||||||
var $_smtpPassword = null;
|
var $_smtpPassword = null;
|
||||||
// LDAP
|
// LDAP Host, URIs are supported, e.g.: ldaps://ldap.host.com
|
||||||
var $_ldapHost = ""; // URIs are supported, e.g.: ldaps://ldap.host.com
|
var $_ldapHost = "";
|
||||||
var $_ldapPort = 389; // Optional.
|
// Port of ldap server, optional.
|
||||||
|
var $_ldapPort = 389;
|
||||||
|
// Base dn for searching users, if set the user will be search below base dn
|
||||||
var $_ldapBaseDN = "";
|
var $_ldapBaseDN = "";
|
||||||
|
// Use this dn for an initial bind for searching the user
|
||||||
var $_ldapBindDN = "";
|
var $_ldapBindDN = "";
|
||||||
|
// Use this password for an initial bind for searching the user
|
||||||
var $_ldapBindPw = "";
|
var $_ldapBindPw = "";
|
||||||
|
// Used only by AD <username>@_ldapAccountDomainName will be used for a bind
|
||||||
|
// when the user is validated
|
||||||
var $_ldapAccountDomainName = "";
|
var $_ldapAccountDomainName = "";
|
||||||
var $_ldapType = 1; // 0 = ldap; 1 = AD
|
// Type of Ldap server: 0 = ldap; 1 = AD
|
||||||
|
var $_ldapType = 1;
|
||||||
|
// Additional filter when searching for the user. If not set, the user will be searched
|
||||||
|
// below basedn and the search term 'uid=<username>' or 'sAMAccountName=<username>'
|
||||||
|
// if set the search will be (&(cn=<username>)<filter>)
|
||||||
var $_ldapFilter = "";
|
var $_ldapFilter = "";
|
||||||
var $_converters = array(); // list of commands used to convert files to text for Indexer
|
var $_converters = array(); // list of commands used to convert files to text for Indexer
|
||||||
var $_extensions = array(); // configuration for extensions
|
var $_extensions = array(); // configuration for extensions
|
||||||
|
@ -389,6 +401,7 @@ class Settings { /* {{{ */
|
||||||
$this->_enableLanguageSelector = Settings::boolVal($tab["enableLanguageSelector"]);
|
$this->_enableLanguageSelector = Settings::boolVal($tab["enableLanguageSelector"]);
|
||||||
$this->_enableThemeSelector = Settings::boolVal($tab["enableThemeSelector"]);
|
$this->_enableThemeSelector = Settings::boolVal($tab["enableThemeSelector"]);
|
||||||
$this->_enableFullSearch = Settings::boolVal($tab["enableFullSearch"]);
|
$this->_enableFullSearch = Settings::boolVal($tab["enableFullSearch"]);
|
||||||
|
$this->_maxSizeForFullText = intval($tab["maxSizeForFullText"]);
|
||||||
$this->_fullSearchEngine = strval($tab["fullSearchEngine"]);
|
$this->_fullSearchEngine = strval($tab["fullSearchEngine"]);
|
||||||
$this->_defaultSearchMethod = strval($tab["defaultSearchMethod"]);
|
$this->_defaultSearchMethod = strval($tab["defaultSearchMethod"]);
|
||||||
$this->_stopWordsFile = strval($tab["stopWordsFile"]);
|
$this->_stopWordsFile = strval($tab["stopWordsFile"]);
|
||||||
|
@ -686,6 +699,7 @@ class Settings { /* {{{ */
|
||||||
$this->setXMLAttributValue($node, "enableLanguageSelector", $this->_enableLanguageSelector);
|
$this->setXMLAttributValue($node, "enableLanguageSelector", $this->_enableLanguageSelector);
|
||||||
$this->setXMLAttributValue($node, "enableThemeSelector", $this->_enableThemeSelector);
|
$this->setXMLAttributValue($node, "enableThemeSelector", $this->_enableThemeSelector);
|
||||||
$this->setXMLAttributValue($node, "enableFullSearch", $this->_enableFullSearch);
|
$this->setXMLAttributValue($node, "enableFullSearch", $this->_enableFullSearch);
|
||||||
|
$this->setXMLAttributValue($node, "maxSizeForFullText", $this->_maxSizeForFullText);
|
||||||
$this->setXMLAttributValue($node, "fullSearchEngine", $this->_fullSearchEngine);
|
$this->setXMLAttributValue($node, "fullSearchEngine", $this->_fullSearchEngine);
|
||||||
$this->setXMLAttributValue($node, "defaultSearchMethod", $this->_defaultSearchMethod);
|
$this->setXMLAttributValue($node, "defaultSearchMethod", $this->_defaultSearchMethod);
|
||||||
$this->setXMLAttributValue($node, "expandFolderTree", $this->_expandFolderTree);
|
$this->setXMLAttributValue($node, "expandFolderTree", $this->_expandFolderTree);
|
||||||
|
|
|
@ -355,10 +355,14 @@ function add_log_line($msg="", $priority=null) { /* {{{ */
|
||||||
|
|
||||||
if(!$logger) return;
|
if(!$logger) return;
|
||||||
|
|
||||||
if($user)
|
if(!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
|
||||||
$logger->log($user->getLogin()." (".$_SERVER['REMOTE_ADDR'].") ".basename($_SERVER["REQUEST_URI"], ".php").$msg, $priority);
|
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
|
||||||
else
|
else
|
||||||
$logger->log("-- (".$_SERVER['REMOTE_ADDR'].") ".basename($_SERVER["REQUEST_URI"], ".php").$msg, $priority);
|
$ip = $_SERVER['REMOTE_ADDR'];
|
||||||
|
if($user)
|
||||||
|
$logger->log($user->getLogin()." (".$ip.") ".basename($_SERVER["REQUEST_URI"], ".php").$msg, $priority);
|
||||||
|
else
|
||||||
|
$logger->log("-- (".$ip.") ".basename($_SERVER["REQUEST_URI"], ".php").$msg, $priority);
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
function _add_log_line($msg="") { /* {{{ */
|
function _add_log_line($msg="") { /* {{{ */
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
class SeedDMS_Version {
|
class SeedDMS_Version {
|
||||||
|
|
||||||
public $_number = "5.0.4";
|
public $_number = "5.0.5";
|
||||||
private $_string = "SeedDMS";
|
private $_string = "SeedDMS";
|
||||||
|
|
||||||
function __construct() {
|
function __construct() {
|
||||||
|
|
|
@ -493,9 +493,9 @@ CREATE TABLE `tblSessions` (
|
||||||
`lastAccess` int(11) NOT NULL default '0',
|
`lastAccess` int(11) NOT NULL default '0',
|
||||||
`theme` varchar(30) NOT NULL default '',
|
`theme` varchar(30) NOT NULL default '',
|
||||||
`language` varchar(30) NOT NULL default '',
|
`language` varchar(30) NOT NULL default '',
|
||||||
`clipboard` text default '',
|
`clipboard` text default NULL,
|
||||||
`su` INTEGER DEFAULT NULL,
|
`su` INTEGER DEFAULT NULL,
|
||||||
`splashmsg` text default '',
|
`splashmsg` text default NULL,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
CONSTRAINT `tblSessions_user` FOREIGN KEY (`userID`) REFERENCES `tblUsers` (`id`) ON DELETE CASCADE
|
CONSTRAINT `tblSessions_user` FOREIGN KEY (`userID`) REFERENCES `tblUsers` (`id`) ON DELETE CASCADE
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
|
@ -37,7 +37,7 @@ CREATE TABLE `tblAttributeDefinitions` (
|
||||||
`minvalues` INTEGER NOT NULL default '0',
|
`minvalues` INTEGER NOT NULL default '0',
|
||||||
`maxvalues` INTEGER NOT NULL default '0',
|
`maxvalues` INTEGER NOT NULL default '0',
|
||||||
`valueset` TEXT default NULL,
|
`valueset` TEXT default NULL,
|
||||||
`regex` TEXT DEFAULT '',
|
`regex` TEXT DEFAULT NULL,
|
||||||
UNIQUE(`name`)
|
UNIQUE(`name`)
|
||||||
) ;
|
) ;
|
||||||
|
|
||||||
|
@ -428,9 +428,9 @@ CREATE TABLE `tblSessions` (
|
||||||
`lastAccess` INTEGER NOT NULL default '0',
|
`lastAccess` INTEGER NOT NULL default '0',
|
||||||
`theme` varchar(30) NOT NULL default '',
|
`theme` varchar(30) NOT NULL default '',
|
||||||
`language` varchar(30) NOT NULL default '',
|
`language` varchar(30) NOT NULL default '',
|
||||||
`clipboard` text default '',
|
`clipboard` text default NULL,
|
||||||
`su` INTEGER DEFAULT NULL,
|
`su` INTEGER DEFAULT NULL,
|
||||||
`splashmsg` text default ''
|
`splashmsg` text default NULL
|
||||||
) ;
|
) ;
|
||||||
|
|
||||||
-- --------------------------------------------------------
|
-- --------------------------------------------------------
|
||||||
|
|
|
@ -118,7 +118,7 @@ function fileExistsInIncludePath($file) { /* {{{ */
|
||||||
* Load default settings + set
|
* Load default settings + set
|
||||||
*/
|
*/
|
||||||
define("SEEDDMS_INSTALL", "on");
|
define("SEEDDMS_INSTALL", "on");
|
||||||
define("SEEDDMS_VERSION", "5.0.4");
|
define("SEEDDMS_VERSION", "5.0.5");
|
||||||
|
|
||||||
require_once('../inc/inc.ClassSettings.php');
|
require_once('../inc/inc.ClassSettings.php');
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,8 @@ END
|
||||||
|
|
||||||
START TRANSACTION;
|
START TRANSACTION;
|
||||||
|
|
||||||
|
ALTER TABLE `tblDocumentContent` MODIFY `version` smallint(5) unsigned NOT NULL;
|
||||||
|
|
||||||
ALTER TABLE tblACLs ENGINE=InnoDB;
|
ALTER TABLE tblACLs ENGINE=InnoDB;
|
||||||
|
|
||||||
ALTER TABLE tblCategory ENGINE=InnoDB;
|
ALTER TABLE tblCategory ENGINE=InnoDB;
|
||||||
|
@ -99,6 +101,8 @@ ALTER TABLE tblDocuments ADD CONSTRAINT `tblDocuments_folder` FOREIGN KEY (`fold
|
||||||
|
|
||||||
CALL DROPFK('tblDocumentContent', 'tblDocumentDocument_document');
|
CALL DROPFK('tblDocumentContent', 'tblDocumentDocument_document');
|
||||||
|
|
||||||
|
ALTER TABLE tblDocumentContent DROP PRIMARY KEY;
|
||||||
|
|
||||||
ALTER TABLE tblDocumentContent ADD CONSTRAINT `tblDocumentContent_document` FOREIGN KEY (`document`) REFERENCES `tblDocuments` (`id`);
|
ALTER TABLE tblDocumentContent ADD CONSTRAINT `tblDocumentContent_document` FOREIGN KEY (`document`) REFERENCES `tblDocuments` (`id`);
|
||||||
|
|
||||||
CALL DROPFK('tblDocumentLinks', 'tblDocumentLinks_user');
|
CALL DROPFK('tblDocumentLinks', 'tblDocumentLinks_user');
|
||||||
|
|
|
@ -12,7 +12,7 @@ ALTER TABLE tblDocumentContent ADD COLUMN `checksum` char(32);
|
||||||
|
|
||||||
ALTER TABLE tblUsers ADD COLUMN `quota` bigint;
|
ALTER TABLE tblUsers ADD COLUMN `quota` bigint;
|
||||||
|
|
||||||
ALTER TABLE tblSessions ADD COLUMN `clipboard` text DEFAULT '';
|
ALTER TABLE tblSessions ADD COLUMN `clipboard` text DEFAULT NULL;
|
||||||
|
|
||||||
CREATE TABLE tblWorkflowStates (
|
CREATE TABLE tblWorkflowStates (
|
||||||
`id` int(11) NOT NULL auto_increment,
|
`id` int(11) NOT NULL auto_increment,
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
BEGIN;
|
BEGIN;
|
||||||
|
|
||||||
ALTER TABLE tblSessions ADD COLUMN `splashmsg` TEXT DEFAULT '';
|
ALTER TABLE tblSessions ADD COLUMN `splashmsg` TEXT DEFAULT NULL;
|
||||||
|
|
||||||
ALTER TABLE tblAttributeDefinitions ADD COLUMN `regex` TEXT DEFAULT '';
|
ALTER TABLE tblAttributeDefinitions ADD COLUMN `regex` TEXT DEFAULT NULL;
|
||||||
|
|
||||||
UPDATE tblVersion set major=4, minor=3, subminor=0;
|
UPDATE tblVersion set major=4, minor=3, subminor=0;
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
START TRANSACTION;
|
START TRANSACTION;
|
||||||
|
|
||||||
ALTER TABLE tblSessions ADD COLUMN `splashmsg` TEXT DEFAULT '';
|
ALTER TABLE tblSessions ADD COLUMN `splashmsg` TEXT DEFAULT NULL;
|
||||||
|
|
||||||
ALTER TABLE tblAttributeDefinitions ADD COLUMN `regex` TEXT DEFAULT '';
|
ALTER TABLE tblAttributeDefinitions ADD COLUMN `regex` TEXT DEFAULT NULL;
|
||||||
|
|
||||||
UPDATE tblVersion set major=4, minor=3, subminor=0;
|
UPDATE tblVersion set major=4, minor=3, subminor=0;
|
||||||
|
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (1267)
|
// Translators: Admin (1268)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'وافق',
|
'accept' => 'وافق',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'تنقيح',
|
'action_revise' => 'تنقيح',
|
||||||
'add' => 'إضافة',
|
'add' => 'إضافة',
|
||||||
'add_approval' => 'ادخال موافقة',
|
'add_approval' => 'ادخال موافقة',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'إضافة مستند',
|
'add_document' => 'إضافة مستند',
|
||||||
'add_document_link' => 'إضافة رابط',
|
'add_document_link' => 'إضافة رابط',
|
||||||
'add_document_notify' => 'ﺖﺨﺼﻴﺻ ﺎﺸﻋﺍﺭ',
|
'add_document_notify' => 'ﺖﺨﺼﻴﺻ ﺎﺸﻋﺍﺭ',
|
||||||
|
@ -115,6 +119,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'تخصيص مراجعون',
|
'assign_reviewers' => 'تخصيص مراجعون',
|
||||||
'assign_user_property_to' => 'تخصيص خصائص المستخدم الى',
|
'assign_user_property_to' => 'تخصيص خصائص المستخدم الى',
|
||||||
'assumed_released' => 'يعتبر تم نشره',
|
'assumed_released' => 'يعتبر تم نشره',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'تعريف السمة بالفعل موجود',
|
'attrdef_exists' => 'تعريف السمة بالفعل موجود',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'تعريف السمة مشغول حاليا',
|
'attrdef_in_use' => 'تعريف السمة مشغول حاليا',
|
||||||
|
@ -209,6 +218,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => 'من فضلك اختر تعريف السمة',
|
'choose_attrdef' => 'من فضلك اختر تعريف السمة',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'من فضلك اختر',
|
'choose_category' => 'من فضلك اختر',
|
||||||
'choose_group' => 'اختر المجموعة',
|
'choose_group' => 'اختر المجموعة',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -381,8 +391,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'تعديل مستند',
|
'edit_document_props' => 'تعديل مستند',
|
||||||
'edit_event' => 'تعديل الحدث',
|
'edit_event' => 'تعديل الحدث',
|
||||||
'edit_existing_access' => 'تعديل قائمة الصلاحيات',
|
'edit_existing_access' => 'تعديل قائمة الصلاحيات',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'تعديل قائمة التنبيهات',
|
'edit_existing_notify' => 'تعديل قائمة التنبيهات',
|
||||||
'edit_folder_access' => 'تعديل صلاحيات',
|
'edit_folder_access' => 'تعديل صلاحيات',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'تعديل قائمة التنبيهات',
|
'edit_folder_notify' => 'تعديل قائمة التنبيهات',
|
||||||
'edit_folder_props' => 'تعديل مجلد',
|
'edit_folder_props' => 'تعديل مجلد',
|
||||||
'edit_group' => 'تعديل مجموعة',
|
'edit_group' => 'تعديل مجموعة',
|
||||||
|
@ -396,6 +408,7 @@ URL: [url]',
|
||||||
'email_footer' => 'يمكنك دائما تغيير اعدادات بريدك الالكتروني من خلال خاصية - مستنداتي',
|
'email_footer' => 'يمكنك دائما تغيير اعدادات بريدك الالكتروني من خلال خاصية - مستنداتي',
|
||||||
'email_header' => 'هذا رسالة تلقائية من نظام ادارة المستندات!',
|
'email_header' => 'هذا رسالة تلقائية من نظام ادارة المستندات!',
|
||||||
'email_not_given' => 'من فضلك ادخل بريد الكتروني صحيح.',
|
'email_not_given' => 'من فضلك ادخل بريد الكتروني صحيح.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'لايوجد مستندات او مجلدات',
|
'empty_folder_list' => 'لايوجد مستندات او مجلدات',
|
||||||
'empty_notify_list' => 'لايوجد مدخلات',
|
'empty_notify_list' => 'لايوجد مدخلات',
|
||||||
'en_GB' => 'الإنكليزية (GB)',
|
'en_GB' => 'الإنكليزية (GB)',
|
||||||
|
@ -403,6 +416,7 @@ URL: [url]',
|
||||||
'error' => 'خطأ',
|
'error' => 'خطأ',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'لم يتم اختيار مستند',
|
'error_no_document_selected' => 'لم يتم اختيار مستند',
|
||||||
'error_no_folder_selected' => 'لم يتم اختيار مجلد',
|
'error_no_folder_selected' => 'لم يتم اختيار مجلد',
|
||||||
|
@ -477,6 +491,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'البحث النصي الكامل',
|
'fullsearch' => 'البحث النصي الكامل',
|
||||||
'fullsearch_hint' => 'استخدم فهرس النص الكامل',
|
'fullsearch_hint' => 'استخدم فهرس النص الكامل',
|
||||||
'fulltext_info' => 'معلومات فهرس النص الكامل',
|
'fulltext_info' => 'معلومات فهرس النص الكامل',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'سمات',
|
'global_attributedefinitions' => 'سمات',
|
||||||
'global_default_keywords' => 'كلمات بحثية عامة',
|
'global_default_keywords' => 'كلمات بحثية عامة',
|
||||||
'global_document_categories' => 'اقسام',
|
'global_document_categories' => 'اقسام',
|
||||||
|
@ -629,6 +644,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'اسم',
|
'name' => 'اسم',
|
||||||
'needs_workflow_action' => 'هذا المستند يتطلب انتباهك . من فضلك تفقد زر مسار العمل',
|
'needs_workflow_action' => 'هذا المستند يتطلب انتباهك . من فضلك تفقد زر مسار العمل',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => '',
|
'never' => '',
|
||||||
'new' => 'جديد',
|
'new' => 'جديد',
|
||||||
'new_attrdef' => 'اضافة تعريف سمة',
|
'new_attrdef' => 'اضافة تعريف سمة',
|
||||||
|
@ -689,6 +705,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'لايوجد كلمات بحثية متاحة',
|
'no_default_keywords' => 'لايوجد كلمات بحثية متاحة',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'لايوجد مستندات حاليا مقفلة/محمية من التعديل',
|
'no_docs_locked' => 'لايوجد مستندات حاليا مقفلة/محمية من التعديل',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'لايوجد مستندات حالية في انتظار الموافقة',
|
'no_docs_to_approve' => 'لايوجد مستندات حالية في انتظار الموافقة',
|
||||||
'no_docs_to_look_at' => 'لايوجد مستندات حاليا تستدعي انتباهك',
|
'no_docs_to_look_at' => 'لايوجد مستندات حاليا تستدعي انتباهك',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -707,7 +724,7 @@ URL: [url]',
|
||||||
'no_update_cause_locked' => 'لايمكنك تعديل المستند. قم بمخاطبة المستخدم الذي قام بحمايته من التعديل',
|
'no_update_cause_locked' => 'لايمكنك تعديل المستند. قم بمخاطبة المستخدم الذي قام بحمايته من التعديل',
|
||||||
'no_user_image' => 'لا يوجد صورة متاحة',
|
'no_user_image' => 'لا يوجد صورة متاحة',
|
||||||
'no_version_check' => '',
|
'no_version_check' => '',
|
||||||
'no_version_modification' => '',
|
'no_version_modification' => 'ﻻ ﺖﻋﺪﻴﻟ ﻊﻠﻳ ﺎﻠﻨﺴﺧﺓ',
|
||||||
'no_workflow_available' => '',
|
'no_workflow_available' => '',
|
||||||
'objectcheck' => 'التحقق من مستند/مجلد',
|
'objectcheck' => 'التحقق من مستند/مجلد',
|
||||||
'obsolete' => 'مهمل',
|
'obsolete' => 'مهمل',
|
||||||
|
@ -853,6 +870,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - اعادة بدء مسار العمل',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - اعادة بدء مسار العمل',
|
||||||
'rewind_workflow_warning' => 'لو قمت باعادة تشغيل مسار العمل لحالته الاصلية، سيتم مسح سجلات مسار العمل للمستند ولايمكن استعادته',
|
'rewind_workflow_warning' => 'لو قمت باعادة تشغيل مسار العمل لحالته الاصلية، سيتم مسح سجلات مسار العمل للمستند ولايمكن استعادته',
|
||||||
'rm_attrdef' => 'ازالة تعريف سمة',
|
'rm_attrdef' => 'ازالة تعريف سمة',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'ازالة القسم',
|
'rm_default_keyword_category' => 'ازالة القسم',
|
||||||
'rm_document' => 'ازالة المستند',
|
'rm_document' => 'ازالة المستند',
|
||||||
'rm_document_category' => 'ازالة القسم',
|
'rm_document_category' => 'ازالة القسم',
|
||||||
|
@ -910,6 +928,7 @@ URL: [url]',
|
||||||
'search_time' => 'الوقت المتبقي: [time] sec.',
|
'search_time' => 'الوقت المتبقي: [time] sec.',
|
||||||
'seconds' => 'ثواني',
|
'seconds' => 'ثواني',
|
||||||
'selection' => 'اختيار',
|
'selection' => 'اختيار',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'اضغط لاختيار قسم',
|
'select_category' => 'اضغط لاختيار قسم',
|
||||||
'select_groups' => 'اضغط لاختيار مجموعة',
|
'select_groups' => 'اضغط لاختيار مجموعة',
|
||||||
'select_grp_approvers' => 'اضغط لاختيار مجموعة الموافقون',
|
'select_grp_approvers' => 'اضغط لاختيار مجموعة الموافقون',
|
||||||
|
@ -999,6 +1018,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'اعدادات التحرير',
|
'settings_Edition' => 'اعدادات التحرير',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => '',
|
'settings_enableAdminRevApp' => '',
|
||||||
|
@ -1112,6 +1133,8 @@ URL: [url]',
|
||||||
'settings_maxExecutionTime_desc' => '',
|
'settings_maxExecutionTime_desc' => '',
|
||||||
'settings_maxRecursiveCount' => '',
|
'settings_maxRecursiveCount' => '',
|
||||||
'settings_maxRecursiveCount_desc' => '',
|
'settings_maxRecursiveCount_desc' => '',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => '',
|
'settings_more_settings' => '',
|
||||||
'settings_notfound' => '',
|
'settings_notfound' => '',
|
||||||
'settings_Notification' => '',
|
'settings_Notification' => '',
|
||||||
|
@ -1233,6 +1256,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => '',
|
'splash_add_user' => '',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => '',
|
'splash_cleared_clipboard' => '',
|
||||||
'splash_document_added' => '',
|
'splash_document_added' => '',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1286,6 +1310,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'مجهول',
|
'status_unknown' => 'مجهول',
|
||||||
'storage_size' => 'حجم التخزين',
|
'storage_size' => 'حجم التخزين',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'ادخال موافقة',
|
'submit_approval' => 'ادخال موافقة',
|
||||||
'submit_login' => 'تسجيل الدخول',
|
'submit_login' => 'تسجيل الدخول',
|
||||||
'submit_password' => 'تحديد كلمة سر جديدة',
|
'submit_password' => 'تحديد كلمة سر جديدة',
|
||||||
|
@ -1331,6 +1356,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'ﺖﻐﻳﺭ ﺎﻠﺣﺎﻟﺓ ﻢﻋ ﺎﻟﺰﻤﻧ',
|
'timeline_status_change' => 'ﺖﻐﻳﺭ ﺎﻠﺣﺎﻟﺓ ﻢﻋ ﺎﻟﺰﻤﻧ',
|
||||||
'to' => 'الى',
|
'to' => 'الى',
|
||||||
'toggle_manager' => 'رجح مدير',
|
'toggle_manager' => 'رجح مدير',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => '',
|
'to_before_from' => '',
|
||||||
'transition_triggered_email' => 'تم تحريك انتقال مسار العمل',
|
'transition_triggered_email' => 'تم تحريك انتقال مسار العمل',
|
||||||
'transition_triggered_email_body' => 'تم تحريك انتقال مسار العمل
|
'transition_triggered_email_body' => 'تم تحريك انتقال مسار العمل
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (785)
|
// Translators: Admin (786)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Приеми',
|
'accept' => 'Приеми',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -47,6 +50,7 @@ $text = array(
|
||||||
'action_revise' => 'Ревизия',
|
'action_revise' => 'Ревизия',
|
||||||
'add' => 'Добави',
|
'add' => 'Добави',
|
||||||
'add_approval' => 'Утвърди',
|
'add_approval' => 'Утвърди',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Добави документ',
|
'add_document' => 'Добави документ',
|
||||||
'add_document_link' => 'Добави препратка',
|
'add_document_link' => 'Добави препратка',
|
||||||
'add_document_notify' => '',
|
'add_document_notify' => '',
|
||||||
|
@ -106,6 +110,11 @@ $text = array(
|
||||||
'assign_reviewers' => 'Назначи рецензенти',
|
'assign_reviewers' => 'Назначи рецензенти',
|
||||||
'assign_user_property_to' => 'Назначи свойства на потребителя',
|
'assign_user_property_to' => 'Назначи свойства на потребителя',
|
||||||
'assumed_released' => 'Утверден',
|
'assumed_released' => 'Утверден',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Тази дефиниция на атрибути вече съществува',
|
'attrdef_exists' => 'Тази дефиниция на атрибути вече съществува',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'Тази дефиниция на атрибути все още се ползва',
|
'attrdef_in_use' => 'Тази дефиниция на атрибути все още се ползва',
|
||||||
|
@ -194,6 +203,7 @@ $text = array(
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => 'Изберете attribute definition',
|
'choose_attrdef' => 'Изберете attribute definition',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Изберете',
|
'choose_category' => 'Изберете',
|
||||||
'choose_group' => 'Изберете група',
|
'choose_group' => 'Изберете група',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -336,8 +346,10 @@ $text = array(
|
||||||
'edit_document_props' => 'Редактирай документ',
|
'edit_document_props' => 'Редактирай документ',
|
||||||
'edit_event' => 'Редактирай събитие',
|
'edit_event' => 'Редактирай събитие',
|
||||||
'edit_existing_access' => 'Редактирай списъкът за достъп',
|
'edit_existing_access' => 'Редактирай списъкът за достъп',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Редактирай списъкът с уведомявания',
|
'edit_existing_notify' => 'Редактирай списъкът с уведомявания',
|
||||||
'edit_folder_access' => 'Редактирай достъп',
|
'edit_folder_access' => 'Редактирай достъп',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Списък с уведомявания за папка',
|
'edit_folder_notify' => 'Списък с уведомявания за папка',
|
||||||
'edit_folder_props' => 'Редактирай папка',
|
'edit_folder_props' => 'Редактирай папка',
|
||||||
'edit_group' => 'Редактирай група',
|
'edit_group' => 'Редактирай група',
|
||||||
|
@ -351,6 +363,7 @@ $text = array(
|
||||||
'email_footer' => 'Винаги можете да измените e-mail исползвайки функцията \'Моя учетка\'',
|
'email_footer' => 'Винаги можете да измените e-mail исползвайки функцията \'Моя учетка\'',
|
||||||
'email_header' => 'Това е автоматично уведомяване от сървъра за документооборот',
|
'email_header' => 'Това е автоматично уведомяване от сървъра за документооборот',
|
||||||
'email_not_given' => 'Въведете настоящ email.',
|
'email_not_given' => 'Въведете настоящ email.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Няма документи или папки',
|
'empty_folder_list' => 'Няма документи или папки',
|
||||||
'empty_notify_list' => 'Няма записи',
|
'empty_notify_list' => 'Няма записи',
|
||||||
'en_GB' => '',
|
'en_GB' => '',
|
||||||
|
@ -358,6 +371,7 @@ $text = array(
|
||||||
'error' => 'Грешка',
|
'error' => 'Грешка',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Няма избрани документи',
|
'error_no_document_selected' => 'Няма избрани документи',
|
||||||
'error_no_folder_selected' => 'Няма избрани папки',
|
'error_no_folder_selected' => 'Няма избрани папки',
|
||||||
|
@ -408,6 +422,7 @@ $text = array(
|
||||||
'fullsearch' => 'Пълнотекстово търсене',
|
'fullsearch' => 'Пълнотекстово търсене',
|
||||||
'fullsearch_hint' => 'Използвай пълнотекстов индекс',
|
'fullsearch_hint' => 'Използвай пълнотекстов индекс',
|
||||||
'fulltext_info' => 'Информация за пълнотекстов индексе',
|
'fulltext_info' => 'Информация за пълнотекстов индексе',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'атрибути',
|
'global_attributedefinitions' => 'атрибути',
|
||||||
'global_default_keywords' => 'Глобални ключови думи',
|
'global_default_keywords' => 'Глобални ключови думи',
|
||||||
'global_document_categories' => 'Категории',
|
'global_document_categories' => 'Категории',
|
||||||
|
@ -560,6 +575,7 @@ $text = array(
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'Име',
|
'name' => 'Име',
|
||||||
'needs_workflow_action' => '',
|
'needs_workflow_action' => '',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => '',
|
'never' => '',
|
||||||
'new' => 'Нов',
|
'new' => 'Нов',
|
||||||
'new_attrdef' => 'Добави дефиниция атрибути',
|
'new_attrdef' => 'Добави дефиниция атрибути',
|
||||||
|
@ -596,6 +612,7 @@ $text = array(
|
||||||
'no_default_keywords' => 'Няма ключови думи',
|
'no_default_keywords' => 'Няма ключови думи',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'Няма блокирани документи',
|
'no_docs_locked' => 'Няма блокирани документи',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Няма документи, нуждаещи се от утвърждаване',
|
'no_docs_to_approve' => 'Няма документи, нуждаещи се от утвърждаване',
|
||||||
'no_docs_to_look_at' => 'Няма документи, нуждаещи се от внимание',
|
'no_docs_to_look_at' => 'Няма документи, нуждаещи се от внимание',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -725,6 +742,7 @@ $text = array(
|
||||||
'rewind_workflow_email_subject' => '',
|
'rewind_workflow_email_subject' => '',
|
||||||
'rewind_workflow_warning' => 'Ако превъртите процеса до неговото начало, целия log на процеса за този документ ще бъде изтрит и нема връщане.',
|
'rewind_workflow_warning' => 'Ако превъртите процеса до неговото начало, целия log на процеса за този документ ще бъде изтрит и нема връщане.',
|
||||||
'rm_attrdef' => 'Премахни дефиниция на атрибути',
|
'rm_attrdef' => 'Премахни дефиниция на атрибути',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Премахни категория',
|
'rm_default_keyword_category' => 'Премахни категория',
|
||||||
'rm_document' => 'Премахни документ',
|
'rm_document' => 'Премахни документ',
|
||||||
'rm_document_category' => 'Премахни категория',
|
'rm_document_category' => 'Премахни категория',
|
||||||
|
@ -775,6 +793,7 @@ $text = array(
|
||||||
'search_time' => 'Изминаха: [time] sec.',
|
'search_time' => 'Изминаха: [time] sec.',
|
||||||
'seconds' => 'секунди',
|
'seconds' => 'секунди',
|
||||||
'selection' => 'Избор',
|
'selection' => 'Избор',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => '',
|
'select_category' => '',
|
||||||
'select_groups' => 'Кликни да избереш групи',
|
'select_groups' => 'Кликни да избереш групи',
|
||||||
'select_grp_approvers' => 'Кликни да избереш група утвърждаващи',
|
'select_grp_approvers' => 'Кликни да избереш група утвърждаващи',
|
||||||
|
@ -864,6 +883,8 @@ $text = array(
|
||||||
'settings_Edition' => 'Настройки редакция',
|
'settings_Edition' => 'Настройки редакция',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => 'Разреши Admin Rev App',
|
'settings_enableAdminRevApp' => 'Разреши Admin Rev App',
|
||||||
|
@ -972,11 +993,13 @@ $text = array(
|
||||||
'settings_luceneDir' => 'Каталог за пълнотекстовия индекс',
|
'settings_luceneDir' => 'Каталог за пълнотекстовия индекс',
|
||||||
'settings_luceneDir_desc' => 'Път, където Lucene ще пише своя индекс',
|
'settings_luceneDir_desc' => 'Път, където Lucene ще пише своя индекс',
|
||||||
'settings_maxDirID' => 'Максимален ID на папка',
|
'settings_maxDirID' => 'Максимален ID на папка',
|
||||||
'settings_maxDirID_desc' => 'Максимум подпапки в родителската папка. По подразбиране: 32700.',
|
'settings_maxDirID_desc' => 'Максимум подпапки в родителската папка. По подразбиране: 0.',
|
||||||
'settings_maxExecutionTime' => 'Максимално време за изпълнение (с)',
|
'settings_maxExecutionTime' => 'Максимално време за изпълнение (с)',
|
||||||
'settings_maxExecutionTime_desc' => 'Установява максимално време за изпълнение на скрипта, преди да бъде прибит от парсера',
|
'settings_maxExecutionTime_desc' => 'Установява максимално време за изпълнение на скрипта, преди да бъде прибит от парсера',
|
||||||
'settings_maxRecursiveCount' => '',
|
'settings_maxRecursiveCount' => '',
|
||||||
'settings_maxRecursiveCount_desc' => '',
|
'settings_maxRecursiveCount_desc' => '',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Още настройки. Логин по подразбиране: admin/admin',
|
'settings_more_settings' => 'Още настройки. Логин по подразбиране: admin/admin',
|
||||||
'settings_notfound' => 'Не е намерено',
|
'settings_notfound' => 'Не е намерено',
|
||||||
'settings_Notification' => 'Настройка за известяване',
|
'settings_Notification' => 'Настройка за известяване',
|
||||||
|
@ -1098,6 +1121,7 @@ $text = array(
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => '',
|
'splash_add_user' => '',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => '',
|
'splash_cleared_clipboard' => '',
|
||||||
'splash_document_added' => '',
|
'splash_document_added' => '',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1151,6 +1175,7 @@ $text = array(
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Неизвестен',
|
'status_unknown' => 'Неизвестен',
|
||||||
'storage_size' => 'Размер на хранилището',
|
'storage_size' => 'Размер на хранилището',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Утвърди',
|
'submit_approval' => 'Утвърди',
|
||||||
'submit_login' => 'Влез',
|
'submit_login' => 'Влез',
|
||||||
'submit_password' => 'Установи нова парола',
|
'submit_password' => 'Установи нова парола',
|
||||||
|
@ -1196,6 +1221,7 @@ $text = array(
|
||||||
'timeline_status_change' => '',
|
'timeline_status_change' => '',
|
||||||
'to' => 'към',
|
'to' => 'към',
|
||||||
'toggle_manager' => 'Превключи мениджър',
|
'toggle_manager' => 'Превключи мениджър',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => '',
|
'to_before_from' => '',
|
||||||
'transition_triggered_email' => 'Забелязана промяна на процес',
|
'transition_triggered_email' => 'Забелязана промяна на процес',
|
||||||
'transition_triggered_email_body' => '',
|
'transition_triggered_email_body' => '',
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
// Translators: Admin (702)
|
// Translators: Admin (702)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Acceptar',
|
'accept' => 'Acceptar',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -47,6 +50,7 @@ $text = array(
|
||||||
'action_revise' => '',
|
'action_revise' => '',
|
||||||
'add' => 'Afegir',
|
'add' => 'Afegir',
|
||||||
'add_approval' => 'Enviar aprovació',
|
'add_approval' => 'Enviar aprovació',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Afegir document',
|
'add_document' => 'Afegir document',
|
||||||
'add_document_link' => 'Afegir vincle',
|
'add_document_link' => 'Afegir vincle',
|
||||||
'add_document_notify' => '',
|
'add_document_notify' => '',
|
||||||
|
@ -111,6 +115,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Assignar revisors',
|
'assign_reviewers' => 'Assignar revisors',
|
||||||
'assign_user_property_to' => 'Assignar propietats d\'usuari a',
|
'assign_user_property_to' => 'Assignar propietats d\'usuari a',
|
||||||
'assumed_released' => 'Se suposa com a publicat',
|
'assumed_released' => 'Se suposa com a publicat',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => '',
|
'attrdef_exists' => '',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => '',
|
'attrdef_in_use' => '',
|
||||||
|
@ -199,6 +208,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => '',
|
'choose_attrdef' => '',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => '--Elegir categoria--',
|
'choose_category' => '--Elegir categoria--',
|
||||||
'choose_group' => '--Seleccionar grup--',
|
'choose_group' => '--Seleccionar grup--',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -341,8 +351,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Editar document',
|
'edit_document_props' => 'Editar document',
|
||||||
'edit_event' => 'Editar event',
|
'edit_event' => 'Editar event',
|
||||||
'edit_existing_access' => 'Editar llista d\'accés',
|
'edit_existing_access' => 'Editar llista d\'accés',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Editar llista de notificació',
|
'edit_existing_notify' => 'Editar llista de notificació',
|
||||||
'edit_folder_access' => 'Editar accés',
|
'edit_folder_access' => 'Editar accés',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Llista de notificació',
|
'edit_folder_notify' => 'Llista de notificació',
|
||||||
'edit_folder_props' => 'Editar directori',
|
'edit_folder_props' => 'Editar directori',
|
||||||
'edit_group' => 'Editar grup...',
|
'edit_group' => 'Editar grup...',
|
||||||
|
@ -356,6 +368,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Sempre es pot canviar la configuració de correu electrònic utilitzant les funcions de «El meu compte»',
|
'email_footer' => 'Sempre es pot canviar la configuració de correu electrònic utilitzant les funcions de «El meu compte»',
|
||||||
'email_header' => 'Aquest es un missatge automàtic del servidor de DMS.',
|
'email_header' => 'Aquest es un missatge automàtic del servidor de DMS.',
|
||||||
'email_not_given' => '',
|
'email_not_given' => '',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => '',
|
'empty_folder_list' => '',
|
||||||
'empty_notify_list' => 'No hi ha entrades',
|
'empty_notify_list' => 'No hi ha entrades',
|
||||||
'en_GB' => 'Anglès (Regne Unit)',
|
'en_GB' => 'Anglès (Regne Unit)',
|
||||||
|
@ -363,6 +376,7 @@ URL: [url]',
|
||||||
'error' => '',
|
'error' => '',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => '',
|
'error_no_document_selected' => '',
|
||||||
'error_no_folder_selected' => '',
|
'error_no_folder_selected' => '',
|
||||||
|
@ -413,6 +427,7 @@ URL: [url]',
|
||||||
'fullsearch' => '',
|
'fullsearch' => '',
|
||||||
'fullsearch_hint' => '',
|
'fullsearch_hint' => '',
|
||||||
'fulltext_info' => '',
|
'fulltext_info' => '',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => '',
|
'global_attributedefinitions' => '',
|
||||||
'global_default_keywords' => 'Mots clau globals',
|
'global_default_keywords' => 'Mots clau globals',
|
||||||
'global_document_categories' => 'Categories',
|
'global_document_categories' => 'Categories',
|
||||||
|
@ -565,6 +580,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'Nom',
|
'name' => 'Nom',
|
||||||
'needs_workflow_action' => '',
|
'needs_workflow_action' => '',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => '',
|
'never' => '',
|
||||||
'new' => 'Nou',
|
'new' => 'Nou',
|
||||||
'new_attrdef' => '',
|
'new_attrdef' => '',
|
||||||
|
@ -601,6 +617,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'No hi ha mots clau disponibles',
|
'no_default_keywords' => 'No hi ha mots clau disponibles',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'No hi ha documents bloquejats.',
|
'no_docs_locked' => 'No hi ha documents bloquejats.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Actualmente no hi ha documents que necessitin aprovació.',
|
'no_docs_to_approve' => 'Actualmente no hi ha documents que necessitin aprovació.',
|
||||||
'no_docs_to_look_at' => 'No hi ha documents que necessitin atenció.',
|
'no_docs_to_look_at' => 'No hi ha documents que necessitin atenció.',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -730,6 +747,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '',
|
'rewind_workflow_email_subject' => '',
|
||||||
'rewind_workflow_warning' => '',
|
'rewind_workflow_warning' => '',
|
||||||
'rm_attrdef' => '',
|
'rm_attrdef' => '',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Eliminar categoria',
|
'rm_default_keyword_category' => 'Eliminar categoria',
|
||||||
'rm_document' => 'Eliminar document',
|
'rm_document' => 'Eliminar document',
|
||||||
'rm_document_category' => '',
|
'rm_document_category' => '',
|
||||||
|
@ -780,6 +798,7 @@ URL: [url]',
|
||||||
'search_time' => 'Temps transcorregut: [time] seg.',
|
'search_time' => 'Temps transcorregut: [time] seg.',
|
||||||
'seconds' => '',
|
'seconds' => '',
|
||||||
'selection' => 'Selecció',
|
'selection' => 'Selecció',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => '',
|
'select_category' => '',
|
||||||
'select_groups' => '',
|
'select_groups' => '',
|
||||||
'select_grp_approvers' => '',
|
'select_grp_approvers' => '',
|
||||||
|
@ -869,6 +888,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Edition settings',
|
'settings_Edition' => 'Edition settings',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => '',
|
'settings_enableAdminRevApp' => '',
|
||||||
|
@ -982,6 +1003,8 @@ URL: [url]',
|
||||||
'settings_maxExecutionTime_desc' => '',
|
'settings_maxExecutionTime_desc' => '',
|
||||||
'settings_maxRecursiveCount' => '',
|
'settings_maxRecursiveCount' => '',
|
||||||
'settings_maxRecursiveCount_desc' => '',
|
'settings_maxRecursiveCount_desc' => '',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => '',
|
'settings_more_settings' => '',
|
||||||
'settings_notfound' => '',
|
'settings_notfound' => '',
|
||||||
'settings_Notification' => '',
|
'settings_Notification' => '',
|
||||||
|
@ -1103,6 +1126,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => '',
|
'splash_add_user' => '',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => '',
|
'splash_cleared_clipboard' => '',
|
||||||
'splash_document_added' => '',
|
'splash_document_added' => '',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1156,6 +1180,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Desconegut',
|
'status_unknown' => 'Desconegut',
|
||||||
'storage_size' => 'Storage size',
|
'storage_size' => 'Storage size',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Enviar aprovació',
|
'submit_approval' => 'Enviar aprovació',
|
||||||
'submit_login' => 'Connectat',
|
'submit_login' => 'Connectat',
|
||||||
'submit_password' => '',
|
'submit_password' => '',
|
||||||
|
@ -1201,6 +1226,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Versió [version]:[status]',
|
'timeline_status_change' => 'Versió [version]:[status]',
|
||||||
'to' => 'Fins',
|
'to' => 'Fins',
|
||||||
'toggle_manager' => 'Intercanviar manager',
|
'toggle_manager' => 'Intercanviar manager',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => '',
|
'to_before_from' => '',
|
||||||
'transition_triggered_email' => '',
|
'transition_triggered_email' => '',
|
||||||
'transition_triggered_email_body' => '',
|
'transition_triggered_email_body' => '',
|
||||||
|
|
|
@ -22,6 +22,9 @@
|
||||||
// Translators: Admin (707), kreml (455)
|
// Translators: Admin (707), kreml (455)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Přijmout',
|
'accept' => 'Přijmout',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Revidovat',
|
'action_revise' => 'Revidovat',
|
||||||
'add' => 'Přidat',
|
'add' => 'Přidat',
|
||||||
'add_approval' => 'Poslat ke schválení',
|
'add_approval' => 'Poslat ke schválení',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Přidat dokument',
|
'add_document' => 'Přidat dokument',
|
||||||
'add_document_link' => 'Přidat odkaz',
|
'add_document_link' => 'Přidat odkaz',
|
||||||
'add_document_notify' => 'Přiřaďte oznámení',
|
'add_document_notify' => 'Přiřaďte oznámení',
|
||||||
|
@ -122,6 +126,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Přiřazení kontroloři',
|
'assign_reviewers' => 'Přiřazení kontroloři',
|
||||||
'assign_user_property_to' => 'Přiřazení uživatelských vlastností',
|
'assign_user_property_to' => 'Přiřazení uživatelských vlastností',
|
||||||
'assumed_released' => 'Pokládá se za zveřejněné',
|
'assumed_released' => 'Pokládá se za zveřejněné',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Definice atributů již existuje',
|
'attrdef_exists' => 'Definice atributů již existuje',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'Definice atributů je ještě užívána',
|
'attrdef_in_use' => 'Definice atributů je ještě užívána',
|
||||||
|
@ -216,6 +225,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => 'Zvolte definici atributů',
|
'choose_attrdef' => 'Zvolte definici atributů',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => '--Vyberte prosím--',
|
'choose_category' => '--Vyberte prosím--',
|
||||||
'choose_group' => '--Vyberte skupinu--',
|
'choose_group' => '--Vyberte skupinu--',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -388,8 +398,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Upravit dokument',
|
'edit_document_props' => 'Upravit dokument',
|
||||||
'edit_event' => 'Upravit akci',
|
'edit_event' => 'Upravit akci',
|
||||||
'edit_existing_access' => 'Upravit seznam řízení přístupu',
|
'edit_existing_access' => 'Upravit seznam řízení přístupu',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Upravit seznam upozornění',
|
'edit_existing_notify' => 'Upravit seznam upozornění',
|
||||||
'edit_folder_access' => 'Upravit přístup',
|
'edit_folder_access' => 'Upravit přístup',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Seznam upozornění',
|
'edit_folder_notify' => 'Seznam upozornění',
|
||||||
'edit_folder_props' => 'Upravit adresář',
|
'edit_folder_props' => 'Upravit adresář',
|
||||||
'edit_group' => 'Upravit skupinu',
|
'edit_group' => 'Upravit skupinu',
|
||||||
|
@ -403,6 +415,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Změnu nastavení e-mailu můžete kdykoliv provést pomocí funkce\'Můj účet\'',
|
'email_footer' => 'Změnu nastavení e-mailu můžete kdykoliv provést pomocí funkce\'Můj účet\'',
|
||||||
'email_header' => 'Toto je automatická zpráva ze serveru DMS.',
|
'email_header' => 'Toto je automatická zpráva ze serveru DMS.',
|
||||||
'email_not_given' => 'Zadejte prosím platnou emailovou adresu.',
|
'email_not_given' => 'Zadejte prosím platnou emailovou adresu.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Žádné dokumenty nebo složky',
|
'empty_folder_list' => 'Žádné dokumenty nebo složky',
|
||||||
'empty_notify_list' => 'Žádné položky',
|
'empty_notify_list' => 'Žádné položky',
|
||||||
'en_GB' => 'Angličtina (GB)',
|
'en_GB' => 'Angličtina (GB)',
|
||||||
|
@ -410,6 +423,7 @@ URL: [url]',
|
||||||
'error' => 'Error',
|
'error' => 'Error',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Není vybrán žádný dokument.',
|
'error_no_document_selected' => 'Není vybrán žádný dokument.',
|
||||||
'error_no_folder_selected' => 'Není vybrána žádná složka',
|
'error_no_folder_selected' => 'Není vybrána žádná složka',
|
||||||
|
@ -484,6 +498,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Fulltextové vyhledávání',
|
'fullsearch' => 'Fulltextové vyhledávání',
|
||||||
'fullsearch_hint' => 'Použijte fultext index',
|
'fullsearch_hint' => 'Použijte fultext index',
|
||||||
'fulltext_info' => 'Fulltext index info',
|
'fulltext_info' => 'Fulltext index info',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Atributy',
|
'global_attributedefinitions' => 'Atributy',
|
||||||
'global_default_keywords' => 'Globální klíčová slova',
|
'global_default_keywords' => 'Globální klíčová slova',
|
||||||
'global_document_categories' => 'Globální kategorie',
|
'global_document_categories' => 'Globální kategorie',
|
||||||
|
@ -636,6 +651,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'Název',
|
'name' => 'Název',
|
||||||
'needs_workflow_action' => 'Tento dokument vyžaduje Vaši pozornost. Prosím zkontrolujte záložku pracovního postupu.',
|
'needs_workflow_action' => 'Tento dokument vyžaduje Vaši pozornost. Prosím zkontrolujte záložku pracovního postupu.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => 'nikdy',
|
'never' => 'nikdy',
|
||||||
'new' => 'Nový',
|
'new' => 'Nový',
|
||||||
'new_attrdef' => 'Přidat definici atributu',
|
'new_attrdef' => 'Přidat definici atributu',
|
||||||
|
@ -696,6 +712,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Nejsou dostupná žádná klíčová slova.',
|
'no_default_keywords' => 'Nejsou dostupná žádná klíčová slova.',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'Žádné uzamčené dokumenty',
|
'no_docs_locked' => 'Žádné uzamčené dokumenty',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Momentálně neexistují žádné dokumenty, které vyžadují schválení.',
|
'no_docs_to_approve' => 'Momentálně neexistují žádné dokumenty, které vyžadují schválení.',
|
||||||
'no_docs_to_look_at' => 'Žádné dokumenty, které vyžadují pozornost.',
|
'no_docs_to_look_at' => 'Žádné dokumenty, které vyžadují pozornost.',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -862,6 +879,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Nové spuštění pracovního postupu',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Nové spuštění pracovního postupu',
|
||||||
'rewind_workflow_warning' => 'Pokud spustíte znovu pracovní postup, potom záznam o dosavadním průběhu bude trvale smazán',
|
'rewind_workflow_warning' => 'Pokud spustíte znovu pracovní postup, potom záznam o dosavadním průběhu bude trvale smazán',
|
||||||
'rm_attrdef' => 'Odstranit definici atributu',
|
'rm_attrdef' => 'Odstranit definici atributu',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Smazat kategorii',
|
'rm_default_keyword_category' => 'Smazat kategorii',
|
||||||
'rm_document' => 'Odstranit dokument',
|
'rm_document' => 'Odstranit dokument',
|
||||||
'rm_document_category' => 'Vymazat kategorii',
|
'rm_document_category' => 'Vymazat kategorii',
|
||||||
|
@ -919,6 +937,7 @@ URL: [url]',
|
||||||
'search_time' => 'Uplynulý čas: [time] sek',
|
'search_time' => 'Uplynulý čas: [time] sek',
|
||||||
'seconds' => 'sekundy',
|
'seconds' => 'sekundy',
|
||||||
'selection' => 'Výběr',
|
'selection' => 'Výběr',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Kliknutím vyberte kategorii',
|
'select_category' => 'Kliknutím vyberte kategorii',
|
||||||
'select_groups' => 'Kliknutím vyberte skupiny',
|
'select_groups' => 'Kliknutím vyberte skupiny',
|
||||||
'select_grp_approvers' => 'Kliknutím vyberte skupinu schvalovatele',
|
'select_grp_approvers' => 'Kliknutím vyberte skupinu schvalovatele',
|
||||||
|
@ -1008,6 +1027,8 @@ URL: [url]',
|
||||||
'settings_Edition' => '',
|
'settings_Edition' => '',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => '',
|
'settings_enableAdminRevApp' => '',
|
||||||
|
@ -1121,6 +1142,8 @@ URL: [url]',
|
||||||
'settings_maxExecutionTime_desc' => '',
|
'settings_maxExecutionTime_desc' => '',
|
||||||
'settings_maxRecursiveCount' => 'Max. počet rekurzívních počítání dokumentů/složek',
|
'settings_maxRecursiveCount' => 'Max. počet rekurzívních počítání dokumentů/složek',
|
||||||
'settings_maxRecursiveCount_desc' => 'Toto je max. počet dokumentů a složek, kterým bude kontrolováno přístupové právo při rekurzivním počítání objektů. Po jeho překročení bude počet složek a dokumentů odhadnut.',
|
'settings_maxRecursiveCount_desc' => 'Toto je max. počet dokumentů a složek, kterým bude kontrolováno přístupové právo při rekurzivním počítání objektů. Po jeho překročení bude počet složek a dokumentů odhadnut.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Configure more settings. Default login: admin/admin',
|
'settings_more_settings' => 'Configure more settings. Default login: admin/admin',
|
||||||
'settings_notfound' => '',
|
'settings_notfound' => '',
|
||||||
'settings_Notification' => 'Nastavení upozornění',
|
'settings_Notification' => 'Nastavení upozornění',
|
||||||
|
@ -1242,6 +1265,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Přidán nový uživatel',
|
'splash_add_user' => 'Přidán nový uživatel',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Schránka vymazána',
|
'splash_cleared_clipboard' => 'Schránka vymazána',
|
||||||
'splash_document_added' => 'Dokument přidán',
|
'splash_document_added' => 'Dokument přidán',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1295,6 +1319,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Neznámý',
|
'status_unknown' => 'Neznámý',
|
||||||
'storage_size' => 'Velikost úložiště',
|
'storage_size' => 'Velikost úložiště',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Poslat ke schválení',
|
'submit_approval' => 'Poslat ke schválení',
|
||||||
'submit_login' => 'Přihlásit se',
|
'submit_login' => 'Přihlásit se',
|
||||||
'submit_password' => 'Zadat nové heslo',
|
'submit_password' => 'Zadat nové heslo',
|
||||||
|
@ -1340,6 +1365,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Verze [version]: [status]',
|
'timeline_status_change' => 'Verze [version]: [status]',
|
||||||
'to' => 'Do',
|
'to' => 'Do',
|
||||||
'toggle_manager' => 'Přepnout správce',
|
'toggle_manager' => 'Přepnout správce',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'Datum ukončení nesmí být před datem zahájení',
|
'to_before_from' => 'Datum ukončení nesmí být před datem zahájení',
|
||||||
'transition_triggered_email' => 'Transformace pracovního postupu spuštěna',
|
'transition_triggered_email' => 'Transformace pracovního postupu spuštěna',
|
||||||
'transition_triggered_email_body' => 'Transformace pracovního postupu spuštěna
|
'transition_triggered_email_body' => 'Transformace pracovního postupu spuštěna
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (2241), dgrutsch (21)
|
// Translators: Admin (2279), dgrutsch (21)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '2-Faktor Authentifizierung',
|
||||||
|
'2_factor_auth_info' => 'Dieses System erfordert 2-Faktor-Authentifikation. Dazu brauchen den Google Authenticator auf Ihrem Mobiltelefon. Unten sehen Sie zwei QR-Codes. Der rechte Code beinhaltet Ihren aktuellen geheimen Schlüssel. Auf der linken Seite wird ein neuer Schlüssel angezeigt. Wenn Sie den neuen Schlüssel speichern, dann stellen Sie zuvor sicher, dass sie ihn mit dem Google Authenticator zuvor eingescant haben.',
|
||||||
|
'2_fact_auth_secret' => 'Schlüssel',
|
||||||
'accept' => 'Übernehmen',
|
'accept' => 'Übernehmen',
|
||||||
'access_control' => 'Zugriffskontrolle',
|
'access_control' => 'Zugriffskontrolle',
|
||||||
'access_control_is_off' => 'Erweiterte Zugriffskontrolle ist ausgeschaltet',
|
'access_control_is_off' => 'Erweiterte Zugriffskontrolle ist ausgeschaltet',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Erneut prüfen',
|
'action_revise' => 'Erneut prüfen',
|
||||||
'add' => 'Anlegen',
|
'add' => 'Anlegen',
|
||||||
'add_approval' => 'Freigabe hinzufügen',
|
'add_approval' => 'Freigabe hinzufügen',
|
||||||
|
'add_attrdefgroup' => 'Neue Attributgruppe anlegen',
|
||||||
'add_document' => 'Dokument anlegen',
|
'add_document' => 'Dokument anlegen',
|
||||||
'add_document_link' => 'Verweis hinzufügen',
|
'add_document_link' => 'Verweis hinzufügen',
|
||||||
'add_document_notify' => 'Beobachter zuweisen',
|
'add_document_notify' => 'Beobachter zuweisen',
|
||||||
|
@ -78,7 +82,7 @@ URL: [url]',
|
||||||
'admin_tools' => 'Administration',
|
'admin_tools' => 'Administration',
|
||||||
'all' => 'Alle',
|
'all' => 'Alle',
|
||||||
'all_categories' => 'Alle Kategorien',
|
'all_categories' => 'Alle Kategorien',
|
||||||
'all_documents' => 'alle Dokumente',
|
'all_documents' => 'Alle Dokumente',
|
||||||
'all_pages' => 'Alle',
|
'all_pages' => 'Alle',
|
||||||
'all_users' => 'Alle Benutzer',
|
'all_users' => 'Alle Benutzer',
|
||||||
'already_subscribed' => 'Bereits aboniert',
|
'already_subscribed' => 'Bereits aboniert',
|
||||||
|
@ -127,6 +131,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Prüfer zuweisen',
|
'assign_reviewers' => 'Prüfer zuweisen',
|
||||||
'assign_user_property_to' => 'Dokumente einem anderen Benutzer zuweisen',
|
'assign_user_property_to' => 'Dokumente einem anderen Benutzer zuweisen',
|
||||||
'assumed_released' => 'Angenommen, freigegeben',
|
'assumed_released' => 'Angenommen, freigegeben',
|
||||||
|
'attrdefgroup_management' => 'Attributgruppenverwaltung',
|
||||||
|
'attrdefgrp_show_detail' => 'Details',
|
||||||
|
'attrdefgrp_show_list' => 'Liste',
|
||||||
|
'attrdefgrp_show_search' => 'Suche',
|
||||||
|
'attrdefgrp_show_searchlist' => 'Suchergebnis',
|
||||||
'attrdef_exists' => 'Attributdefinition existiert bereits',
|
'attrdef_exists' => 'Attributdefinition existiert bereits',
|
||||||
'attrdef_info' => 'Information',
|
'attrdef_info' => 'Information',
|
||||||
'attrdef_in_use' => 'Definition des Attributs noch in Gebrauch',
|
'attrdef_in_use' => 'Definition des Attributs noch in Gebrauch',
|
||||||
|
@ -220,15 +229,16 @@ URL: [url]',
|
||||||
'checkin_document' => 'Einchecken',
|
'checkin_document' => 'Einchecken',
|
||||||
'checkout_document' => 'Auschecken',
|
'checkout_document' => 'Auschecken',
|
||||||
'checkout_is_disabled' => 'Auschecken von Dokumenten ist in der Konfiguration ausgeschaltet.',
|
'checkout_is_disabled' => 'Auschecken von Dokumenten ist in der Konfiguration ausgeschaltet.',
|
||||||
'choose_attrdef' => '--Attributdefinition wählen--',
|
'choose_attrdef' => 'Attributdefinition wählen',
|
||||||
'choose_category' => '--Kategorie wählen--',
|
'choose_attrdefgroup' => 'Attributgruppe wählen',
|
||||||
'choose_group' => '--Gruppe wählen--',
|
'choose_category' => 'Kategorie wählen',
|
||||||
'choose_role' => '--Role wählen--',
|
'choose_group' => 'Gruppe wählen',
|
||||||
|
'choose_role' => 'Role wählen',
|
||||||
'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' => 'Zielordner 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',
|
||||||
'choose_workflow_state' => 'Workflow-Status wählen',
|
'choose_workflow_state' => 'Workflow-Status wählen',
|
||||||
|
@ -297,7 +307,7 @@ URL: [url]',
|
||||||
'documents_only' => 'Nur Dokumente',
|
'documents_only' => 'Nur Dokumente',
|
||||||
'documents_to_approve' => 'Freigabe erforderlich',
|
'documents_to_approve' => 'Freigabe erforderlich',
|
||||||
'documents_to_process' => 'Dokumente, die bearbeitet werden müssen',
|
'documents_to_process' => 'Dokumente, die bearbeitet werden müssen',
|
||||||
'documents_to_receipt' => 'Dokumente deren Empfang bestätigt werden muss',
|
'documents_to_receipt' => 'Empfangsbestätigung erforderlich',
|
||||||
'documents_to_review' => 'Prüfung erforderlich',
|
'documents_to_review' => 'Prüfung erforderlich',
|
||||||
'documents_to_revise' => 'Erneute Prüfung erforderlich',
|
'documents_to_revise' => 'Erneute Prüfung erforderlich',
|
||||||
'documents_user_rejected' => 'Abgelehnte Dokumente',
|
'documents_user_rejected' => 'Abgelehnte Dokumente',
|
||||||
|
@ -393,8 +403,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Bearbeiten',
|
'edit_document_props' => 'Bearbeiten',
|
||||||
'edit_event' => 'Ereignis editieren',
|
'edit_event' => 'Ereignis editieren',
|
||||||
'edit_existing_access' => 'Bestehende Berechtigungen bearbeiten',
|
'edit_existing_access' => 'Bestehende Berechtigungen bearbeiten',
|
||||||
|
'edit_existing_attribute_groups' => 'Attributgruppen bearbeiten',
|
||||||
'edit_existing_notify' => 'Beobachter bearbeiten',
|
'edit_existing_notify' => 'Beobachter bearbeiten',
|
||||||
'edit_folder_access' => 'Zugriffsrechte bearbeiten',
|
'edit_folder_access' => 'Zugriffsrechte bearbeiten',
|
||||||
|
'edit_folder_attrdefgrp' => 'Attributgruppen bearbeiten',
|
||||||
'edit_folder_notify' => 'Beobachtung von Ordnern',
|
'edit_folder_notify' => 'Beobachtung von Ordnern',
|
||||||
'edit_folder_props' => 'Bearbeiten',
|
'edit_folder_props' => 'Bearbeiten',
|
||||||
'edit_group' => 'Gruppe bearbeiten',
|
'edit_group' => 'Gruppe bearbeiten',
|
||||||
|
@ -408,6 +420,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Sie können zu jeder Zeit Ihre E-Mail-Adresse über \'Mein Profil\' ändern.',
|
'email_footer' => 'Sie können zu jeder Zeit Ihre E-Mail-Adresse über \'Mein Profil\' ändern.',
|
||||||
'email_header' => 'Dies ist eine automatische Nachricht des DMS-Servers.',
|
'email_header' => 'Dies ist eine automatische Nachricht des DMS-Servers.',
|
||||||
'email_not_given' => 'Bitte geben Sie eine gültige E-Mail-Adresse ein.',
|
'email_not_given' => 'Bitte geben Sie eine gültige E-Mail-Adresse ein.',
|
||||||
|
'empty_attribute_group_list' => 'Keine Attributgruppen',
|
||||||
'empty_folder_list' => 'Keine Dokumente oder Ordner',
|
'empty_folder_list' => 'Keine Dokumente oder Ordner',
|
||||||
'empty_notify_list' => 'Keine Beobachter',
|
'empty_notify_list' => 'Keine Beobachter',
|
||||||
'en_GB' => 'Englisch (GB)',
|
'en_GB' => 'Englisch (GB)',
|
||||||
|
@ -415,6 +428,7 @@ URL: [url]',
|
||||||
'error' => 'Fehler',
|
'error' => 'Fehler',
|
||||||
'error_add_aro' => 'Fehler beim Hinzufügen des Zugriffsobjekt',
|
'error_add_aro' => 'Fehler beim Hinzufügen des Zugriffsobjekt',
|
||||||
'error_add_permission' => 'Fehler beim Hinzufügen der Berechtigung',
|
'error_add_permission' => 'Fehler beim Hinzufügen der Berechtigung',
|
||||||
|
'error_clearcache' => 'Fehler beim Löschen des Cache',
|
||||||
'error_importfs' => 'Fehler beim Importieren aus dem Dateisystem',
|
'error_importfs' => 'Fehler beim Importieren aus dem Dateisystem',
|
||||||
'error_no_document_selected' => 'Kein Dokument ausgewählt',
|
'error_no_document_selected' => 'Kein Dokument ausgewählt',
|
||||||
'error_no_folder_selected' => 'Kein Ordner ausgewählt',
|
'error_no_folder_selected' => 'Kein Ordner ausgewählt',
|
||||||
|
@ -489,6 +503,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Volltext',
|
'fullsearch' => 'Volltext',
|
||||||
'fullsearch_hint' => 'Volltextindex benutzen',
|
'fullsearch_hint' => 'Volltextindex benutzen',
|
||||||
'fulltext_info' => 'Volltext-Index Info',
|
'fulltext_info' => 'Volltext-Index Info',
|
||||||
|
'global_attributedefinitiongroups' => 'Attributgruppen',
|
||||||
'global_attributedefinitions' => 'Attribute',
|
'global_attributedefinitions' => 'Attribute',
|
||||||
'global_default_keywords' => 'Globale Stichwortlisten',
|
'global_default_keywords' => 'Globale Stichwortlisten',
|
||||||
'global_document_categories' => 'Kategorien',
|
'global_document_categories' => 'Kategorien',
|
||||||
|
@ -497,13 +512,13 @@ URL: [url]',
|
||||||
'global_workflow_states' => 'Workflow-Status',
|
'global_workflow_states' => 'Workflow-Status',
|
||||||
'group' => 'Gruppe',
|
'group' => 'Gruppe',
|
||||||
'groups' => 'Gruppen',
|
'groups' => 'Gruppen',
|
||||||
'group_approval_summary' => 'Freigabe-Gruppen',
|
'group_approval_summary' => 'Übersicht Gruppenfreigabe',
|
||||||
'group_exists' => 'Gruppe existiert bereits',
|
'group_exists' => 'Gruppe existiert bereits',
|
||||||
'group_info' => 'Gruppeninformation',
|
'group_info' => 'Gruppeninformation',
|
||||||
'group_management' => 'Gruppenverwaltung',
|
'group_management' => 'Gruppenverwaltung',
|
||||||
'group_members' => 'Gruppenmitglieder',
|
'group_members' => 'Gruppenmitglieder',
|
||||||
'group_receipt_summary' => 'Übersicht Gruppenbestätigungen',
|
'group_receipt_summary' => 'Übersicht Gruppenbestätigungen',
|
||||||
'group_review_summary' => 'Prüfergruppen',
|
'group_review_summary' => 'Übersicht Gruppenprüfungen',
|
||||||
'guest_login' => 'Als Gast anmelden',
|
'guest_login' => 'Als Gast anmelden',
|
||||||
'guest_login_disabled' => 'Anmeldung als Gast ist gesperrt.',
|
'guest_login_disabled' => 'Anmeldung als Gast ist gesperrt.',
|
||||||
'help' => 'Hilfe',
|
'help' => 'Hilfe',
|
||||||
|
@ -641,6 +656,7 @@ URL: [url]',
|
||||||
'my_transmittals' => 'Meine Dokumentenlisten',
|
'my_transmittals' => 'Meine Dokumentenlisten',
|
||||||
'name' => 'Name',
|
'name' => 'Name',
|
||||||
'needs_workflow_action' => 'Dieses Dokument erfordert eine Aktion. Bitte schauen Sie auf den Workflow-Reiter.',
|
'needs_workflow_action' => 'Dieses Dokument erfordert eine Aktion. Bitte schauen Sie auf den Workflow-Reiter.',
|
||||||
|
'network_drive' => 'Netzwerklaufwerk',
|
||||||
'never' => 'nie',
|
'never' => 'nie',
|
||||||
'new' => 'Neu',
|
'new' => 'Neu',
|
||||||
'new_attrdef' => 'Neue Attributdefinition',
|
'new_attrdef' => 'Neue Attributdefinition',
|
||||||
|
@ -700,6 +716,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Keine Vorlagen vorhanden',
|
'no_default_keywords' => 'Keine Vorlagen vorhanden',
|
||||||
'no_docs_checked_out' => 'Keine Dokumente ausgecheckt',
|
'no_docs_checked_out' => 'Keine Dokumente ausgecheckt',
|
||||||
'no_docs_locked' => 'Keine Dokumente gesperrt.',
|
'no_docs_locked' => 'Keine Dokumente gesperrt.',
|
||||||
|
'no_docs_rejected' => 'Keine Dokumente abgelehnt.',
|
||||||
'no_docs_to_approve' => 'Es gibt zur Zeit keine Dokumente, die eine Freigabe erfordern.',
|
'no_docs_to_approve' => 'Es gibt zur Zeit keine Dokumente, die eine Freigabe erfordern.',
|
||||||
'no_docs_to_look_at' => 'Keine Dokumente, nach denen geschaut werden müsste.',
|
'no_docs_to_look_at' => 'Keine Dokumente, nach denen geschaut werden müsste.',
|
||||||
'no_docs_to_receipt' => 'Keine Dokumentenempfangsbestätigung erforderlich',
|
'no_docs_to_receipt' => 'Keine Dokumentenempfangsbestätigung erforderlich',
|
||||||
|
@ -899,6 +916,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Workflow wurde zurückgestellt',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Workflow wurde zurückgestellt',
|
||||||
'rewind_workflow_warning' => 'Wenn Sie einen Workflow in den Anfangszustand zurückversetzen, dann werden alle bisherigen Aktionen und Kommentare unwiederbringlich gelöscht.',
|
'rewind_workflow_warning' => 'Wenn Sie einen Workflow in den Anfangszustand zurückversetzen, dann werden alle bisherigen Aktionen und Kommentare unwiederbringlich gelöscht.',
|
||||||
'rm_attrdef' => 'Attributdefinition löschen',
|
'rm_attrdef' => 'Attributdefinition löschen',
|
||||||
|
'rm_attrdefgroup' => 'Diese Attributgruppe löschen',
|
||||||
'rm_default_keyword_category' => 'Kategorie löschen',
|
'rm_default_keyword_category' => 'Kategorie löschen',
|
||||||
'rm_document' => 'Löschen',
|
'rm_document' => 'Löschen',
|
||||||
'rm_document_category' => 'Lösche Kategorie',
|
'rm_document_category' => 'Lösche Kategorie',
|
||||||
|
@ -956,6 +974,7 @@ URL: [url]',
|
||||||
'search_time' => 'Dauer: [time] sek.',
|
'search_time' => 'Dauer: [time] sek.',
|
||||||
'seconds' => 'Sekunden',
|
'seconds' => 'Sekunden',
|
||||||
'selection' => 'Auswahl',
|
'selection' => 'Auswahl',
|
||||||
|
'select_attrdefgrp_show' => 'Anzeigeort auswählen',
|
||||||
'select_category' => 'Klicken zur Auswahl einer Kategorie',
|
'select_category' => 'Klicken zur Auswahl einer Kategorie',
|
||||||
'select_groups' => 'Klicken zur Auswahl einer Gruppe',
|
'select_groups' => 'Klicken zur Auswahl einer Gruppe',
|
||||||
'select_grp_approvers' => 'Klicken zur Auswahl einer Freigabegruppe',
|
'select_grp_approvers' => 'Klicken zur Auswahl einer Freigabegruppe',
|
||||||
|
@ -1045,6 +1064,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Funktions-Einstellungen',
|
'settings_Edition' => 'Funktions-Einstellungen',
|
||||||
'settings_editOnlineFileTypes' => 'Dateitypen für Online-Editieren:',
|
'settings_editOnlineFileTypes' => 'Dateitypen für Online-Editieren:',
|
||||||
'settings_editOnlineFileTypes_desc' => 'Dateien mit den angegebenen Endungen können Online editiert werden (benutzen Sie ausschließlich Kleinbuchstaben).',
|
'settings_editOnlineFileTypes_desc' => 'Dateien mit den angegebenen Endungen können Online editiert werden (benutzen Sie ausschließlich Kleinbuchstaben).',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => 'Ermögliche Bestätigung des Dokumentenempfang',
|
'settings_enableAcknowledgeWorkflow' => 'Ermögliche Bestätigung des Dokumentenempfang',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => 'Anwählen, um den Workflow zur Kenntnisnahme von Dokumenten einzuschalten',
|
'settings_enableAcknowledgeWorkflow_desc' => 'Anwählen, um den Workflow zur Kenntnisnahme von Dokumenten einzuschalten',
|
||||||
'settings_enableAdminRevApp' => 'Admin darf freigeben/prüfen',
|
'settings_enableAdminRevApp' => 'Admin darf freigeben/prüfen',
|
||||||
|
@ -1153,11 +1174,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Verzeichnis für Volltextindex',
|
'settings_luceneDir' => 'Verzeichnis für Volltextindex',
|
||||||
'settings_luceneDir_desc' => 'Verzeichnis in dem der Lucene-Index abgelegt wird.',
|
'settings_luceneDir_desc' => 'Verzeichnis in dem der Lucene-Index abgelegt wird.',
|
||||||
'settings_maxDirID' => 'Max. Anzahl Unterverzeichnisse',
|
'settings_maxDirID' => 'Max. Anzahl Unterverzeichnisse',
|
||||||
'settings_maxDirID_desc' => 'Maximale Anzahl der Unterverzeichnisse in einem Verzeichnis. Voreingestellt ist 32700.',
|
'settings_maxDirID_desc' => 'Maximale Anzahl der Unterverzeichnisse in einem Verzeichnis. Ändern Sie diesen Wert nur, wenn Sie genau wissen was Sie tun! Voreingestellt ist 0.',
|
||||||
'settings_maxExecutionTime' => 'Max. Ausführungszeit (s)',
|
'settings_maxExecutionTime' => 'Max. Ausführungszeit (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Maximale Zeit in Sekunden bis ein Skript beendet wird.',
|
'settings_maxExecutionTime_desc' => 'Maximale Zeit in Sekunden bis ein Skript beendet wird.',
|
||||||
'settings_maxRecursiveCount' => 'Max. Anzahl Anzahl rekursiver Dokumente/Ordner.',
|
'settings_maxRecursiveCount' => 'Max. Anzahl Anzahl rekursiver Dokumente/Ordner.',
|
||||||
'settings_maxRecursiveCount_desc' => 'Dies ist die maximale Anzahl der Dokumente und Ordner die auf Zugriffsrechte geprüft werden, wenn rekursiv gezählt wird. Wenn diese Anzahl überschritten wird, wird die Anzahl der Dokumente und Unterordner in der Ordner Ansicht geschätzt.',
|
'settings_maxRecursiveCount_desc' => 'Dies ist die maximale Anzahl der Dokumente und Ordner die auf Zugriffsrechte geprüft werden, wenn rekursiv gezählt wird. Wenn diese Anzahl überschritten wird, wird die Anzahl der Dokumente und Unterordner in der Ordner Ansicht geschätzt.',
|
||||||
|
'settings_maxSizeForFullText' => 'Maximale Dateigröße für sofortige Indezierung',
|
||||||
|
'settings_maxSizeForFullText_desc' => 'Alle neue Version eines Dokuments, die kleiner als die die konfigurierte Dateigröße sind, werden sofort indiziert. In allen anderen Fällen werden nur die Metadaten erfasst.',
|
||||||
'settings_more_settings' => 'Weitere Einstellungen. Login mit admin/admin',
|
'settings_more_settings' => 'Weitere Einstellungen. Login mit admin/admin',
|
||||||
'settings_notfound' => 'Nicht gefunden',
|
'settings_notfound' => 'Nicht gefunden',
|
||||||
'settings_Notification' => 'Benachrichtigungen-Einstellungen',
|
'settings_Notification' => 'Benachrichtigungen-Einstellungen',
|
||||||
|
@ -1279,6 +1302,7 @@ URL: [url]',
|
||||||
'splash_add_role' => 'Neue Rolle hinzugefügt',
|
'splash_add_role' => 'Neue Rolle hinzugefügt',
|
||||||
'splash_add_to_transmittal' => 'Zur Dokumentenliste hinzugefügt',
|
'splash_add_to_transmittal' => 'Zur Dokumentenliste hinzugefügt',
|
||||||
'splash_add_user' => 'Neuen Benutzer hinzugefügt',
|
'splash_add_user' => 'Neuen Benutzer hinzugefügt',
|
||||||
|
'splash_clearcache' => 'Cache geleert',
|
||||||
'splash_cleared_clipboard' => 'Zwischenablage geleert',
|
'splash_cleared_clipboard' => 'Zwischenablage geleert',
|
||||||
'splash_document_added' => 'Dokument hinzugefügt',
|
'splash_document_added' => 'Dokument hinzugefügt',
|
||||||
'splash_document_checkedout' => 'Dokument ausgecheckt',
|
'splash_document_checkedout' => 'Dokument ausgecheckt',
|
||||||
|
@ -1332,6 +1356,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => 'Überprüfer von Liste entfernt',
|
'status_revisor_removed' => 'Überprüfer von Liste entfernt',
|
||||||
'status_unknown' => 'unbekannt',
|
'status_unknown' => 'unbekannt',
|
||||||
'storage_size' => 'Speicherverbrauch',
|
'storage_size' => 'Speicherverbrauch',
|
||||||
|
'submit_2_fact_auth' => 'Schlüssel speichern',
|
||||||
'submit_approval' => 'Freigabe hinzufügen',
|
'submit_approval' => 'Freigabe hinzufügen',
|
||||||
'submit_login' => 'Anmelden',
|
'submit_login' => 'Anmelden',
|
||||||
'submit_password' => 'Setze neues Passwort',
|
'submit_password' => 'Setze neues Passwort',
|
||||||
|
@ -1377,6 +1402,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Version [version]: [status]',
|
'timeline_status_change' => 'Version [version]: [status]',
|
||||||
'to' => 'bis',
|
'to' => 'bis',
|
||||||
'toggle_manager' => 'Managerstatus wechseln',
|
'toggle_manager' => 'Managerstatus wechseln',
|
||||||
|
'toggle_qrcode' => 'Zeige/verberge QR-Code',
|
||||||
'to_before_from' => 'Endedatum darf nicht vor dem Startdatum liegen',
|
'to_before_from' => 'Endedatum darf nicht vor dem Startdatum liegen',
|
||||||
'transition_triggered_email' => 'Workflow transition triggered',
|
'transition_triggered_email' => 'Workflow transition triggered',
|
||||||
'transition_triggered_email_body' => 'Workflow transition triggered
|
'transition_triggered_email_body' => 'Workflow transition triggered
|
||||||
|
@ -1452,7 +1478,7 @@ URL: [url]',
|
||||||
'use_default_keywords' => 'Stichwortvorlagen',
|
'use_default_keywords' => 'Stichwortvorlagen',
|
||||||
'version' => 'Version',
|
'version' => 'Version',
|
||||||
'versioning_file_creation' => 'Datei-Versionierung',
|
'versioning_file_creation' => 'Datei-Versionierung',
|
||||||
'versioning_file_creation_warning' => 'Sie erzeugen eine Datei die sämtliche Versions-Informationen eines DMS-Verzeichnisses enthält. Nach Erstellung wird jede Datei im Dokumentenverzeichnis gespeichert.',
|
'versioning_file_creation_warning' => 'Mit dieser Operation erzeugen Sie pro Dokument eine Datei, die sämtliche Versions-Informationen des Dokuments enthält. Nach Erstellung wird jede Datei im Dokumentenverzeichnis gespeichert. Die erzeugten Dateien sind für den regulären Betrieb nicht erforderlich. Sie können aber von Nutzen sein, wenn der Dokumentenbestand auf ein anderes System übertragen werden soll.',
|
||||||
'versioning_info' => 'Versionsinformationen',
|
'versioning_info' => 'Versionsinformationen',
|
||||||
'versiontolow' => 'Version zu niedrig',
|
'versiontolow' => 'Version zu niedrig',
|
||||||
'version_deleted_email' => 'Version gelöscht',
|
'version_deleted_email' => 'Version gelöscht',
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (1391), dgrutsch (7), netixw (14)
|
// Translators: Admin (1426), dgrutsch (7), netixw (14)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '2-factor authentication',
|
||||||
|
'2_factor_auth_info' => 'This system enforces 2 factor authentication. You will need the Google Authenticator on your mobile phone. Below you see two QR codes. The right one is your current secret. On the left you can set a new secret. If you set a new secret make sure to rescan it with Google Authenticator.',
|
||||||
|
'2_fact_auth_secret' => 'Secret',
|
||||||
'accept' => 'Accept',
|
'accept' => 'Accept',
|
||||||
'access_control' => 'Access control',
|
'access_control' => 'Access control',
|
||||||
'access_control_is_off' => 'Advanced access control is turned off',
|
'access_control_is_off' => 'Advanced access control is turned off',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Revise',
|
'action_revise' => 'Revise',
|
||||||
'add' => 'Add',
|
'add' => 'Add',
|
||||||
'add_approval' => 'Add approval',
|
'add_approval' => 'Add approval',
|
||||||
|
'add_attrdefgroup' => 'Add new attribute group',
|
||||||
'add_document' => 'Add document',
|
'add_document' => 'Add document',
|
||||||
'add_document_link' => 'Add link',
|
'add_document_link' => 'Add link',
|
||||||
'add_document_notify' => 'Assign notification',
|
'add_document_notify' => 'Assign notification',
|
||||||
|
@ -127,6 +131,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Assign Reviewers',
|
'assign_reviewers' => 'Assign Reviewers',
|
||||||
'assign_user_property_to' => 'Assign user\'s properties to',
|
'assign_user_property_to' => 'Assign user\'s properties to',
|
||||||
'assumed_released' => 'Assumed released',
|
'assumed_released' => 'Assumed released',
|
||||||
|
'attrdefgroup_management' => 'Attribute groups managament',
|
||||||
|
'attrdefgrp_show_detail' => 'Details',
|
||||||
|
'attrdefgrp_show_list' => 'List',
|
||||||
|
'attrdefgrp_show_search' => 'Search',
|
||||||
|
'attrdefgrp_show_searchlist' => 'Search result',
|
||||||
'attrdef_exists' => 'Attribute definition already exists',
|
'attrdef_exists' => 'Attribute definition already exists',
|
||||||
'attrdef_info' => 'Information',
|
'attrdef_info' => 'Information',
|
||||||
'attrdef_in_use' => 'Attribute definition still in use',
|
'attrdef_in_use' => 'Attribute definition still in use',
|
||||||
|
@ -221,6 +230,7 @@ URL: [url]',
|
||||||
'checkout_document' => 'Check out',
|
'checkout_document' => 'Check out',
|
||||||
'checkout_is_disabled' => 'Check out of documents is disabled in the configuration.',
|
'checkout_is_disabled' => 'Check out of documents is disabled in the configuration.',
|
||||||
'choose_attrdef' => 'Please choose attribute definition',
|
'choose_attrdef' => 'Please choose attribute definition',
|
||||||
|
'choose_attrdefgroup' => 'Choose attribute group',
|
||||||
'choose_category' => 'Please choose',
|
'choose_category' => 'Please choose',
|
||||||
'choose_group' => 'Choose group',
|
'choose_group' => 'Choose group',
|
||||||
'choose_role' => '--Choose role--',
|
'choose_role' => '--Choose role--',
|
||||||
|
@ -299,7 +309,7 @@ URL: [url]',
|
||||||
'documents_to_process' => 'Documents that need processing',
|
'documents_to_process' => 'Documents that need processing',
|
||||||
'documents_to_receipt' => 'Documents awaiting to confirm the receipt',
|
'documents_to_receipt' => 'Documents awaiting to confirm the receipt',
|
||||||
'documents_to_review' => 'Documents awaiting your review',
|
'documents_to_review' => 'Documents awaiting your review',
|
||||||
'documents_to_revise' => 'Documents to revise',
|
'documents_to_revise' => 'Documents awaiting your revision',
|
||||||
'documents_user_rejected' => 'Rejected documents',
|
'documents_user_rejected' => 'Rejected documents',
|
||||||
'documents_user_requiring_attention' => 'Documents owned by you that require attention',
|
'documents_user_requiring_attention' => 'Documents owned by you that require attention',
|
||||||
'document_already_checkedout' => 'This document is already checked out',
|
'document_already_checkedout' => 'This document is already checked out',
|
||||||
|
@ -393,8 +403,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Edit document',
|
'edit_document_props' => 'Edit document',
|
||||||
'edit_event' => 'Edit event',
|
'edit_event' => 'Edit event',
|
||||||
'edit_existing_access' => 'Edit Access List',
|
'edit_existing_access' => 'Edit Access List',
|
||||||
|
'edit_existing_attribute_groups' => 'Edit attribute groups',
|
||||||
'edit_existing_notify' => 'Edit notification list',
|
'edit_existing_notify' => 'Edit notification list',
|
||||||
'edit_folder_access' => 'Edit access',
|
'edit_folder_access' => 'Edit access',
|
||||||
|
'edit_folder_attrdefgrp' => 'Edit attribute groups',
|
||||||
'edit_folder_notify' => 'Folder Notification List',
|
'edit_folder_notify' => 'Folder Notification List',
|
||||||
'edit_folder_props' => 'Edit folder',
|
'edit_folder_props' => 'Edit folder',
|
||||||
'edit_group' => 'Edit group',
|
'edit_group' => 'Edit group',
|
||||||
|
@ -408,6 +420,7 @@ URL: [url]',
|
||||||
'email_footer' => 'You can always change your e-mail settings using \'My Account\' functions',
|
'email_footer' => 'You can always change your e-mail settings using \'My Account\' functions',
|
||||||
'email_header' => 'This is an automatic message from the DMS server.',
|
'email_header' => 'This is an automatic message from the DMS server.',
|
||||||
'email_not_given' => 'Please enter a valid email address.',
|
'email_not_given' => 'Please enter a valid email address.',
|
||||||
|
'empty_attribute_group_list' => 'No attribute groups',
|
||||||
'empty_folder_list' => 'No documents or folders',
|
'empty_folder_list' => 'No documents or folders',
|
||||||
'empty_notify_list' => 'No entries',
|
'empty_notify_list' => 'No entries',
|
||||||
'en_GB' => 'English (GB)',
|
'en_GB' => 'English (GB)',
|
||||||
|
@ -415,6 +428,7 @@ URL: [url]',
|
||||||
'error' => 'Error',
|
'error' => 'Error',
|
||||||
'error_add_aro' => 'Error while adding access request object',
|
'error_add_aro' => 'Error while adding access request object',
|
||||||
'error_add_permission' => 'Error while add permission',
|
'error_add_permission' => 'Error while add permission',
|
||||||
|
'error_clearcache' => 'Error while clearing cache',
|
||||||
'error_importfs' => 'Error while importing form file system',
|
'error_importfs' => 'Error while importing form file system',
|
||||||
'error_no_document_selected' => 'No document selected',
|
'error_no_document_selected' => 'No document selected',
|
||||||
'error_no_folder_selected' => 'No folder selected',
|
'error_no_folder_selected' => 'No folder selected',
|
||||||
|
@ -489,6 +503,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Full text search',
|
'fullsearch' => 'Full text search',
|
||||||
'fullsearch_hint' => 'Use fulltext index',
|
'fullsearch_hint' => 'Use fulltext index',
|
||||||
'fulltext_info' => 'Fulltext index info',
|
'fulltext_info' => 'Fulltext index info',
|
||||||
|
'global_attributedefinitiongroups' => 'Attribute groups',
|
||||||
'global_attributedefinitions' => 'Attributes',
|
'global_attributedefinitions' => 'Attributes',
|
||||||
'global_default_keywords' => 'Global keywords',
|
'global_default_keywords' => 'Global keywords',
|
||||||
'global_document_categories' => 'Categories',
|
'global_document_categories' => 'Categories',
|
||||||
|
@ -638,9 +653,10 @@ URL: [url]',
|
||||||
'move_folder' => 'Move Folder',
|
'move_folder' => 'Move Folder',
|
||||||
'my_account' => 'My Account',
|
'my_account' => 'My Account',
|
||||||
'my_documents' => 'My Documents',
|
'my_documents' => 'My Documents',
|
||||||
'my_transmittals' => 'My transmittals',
|
'my_transmittals' => 'My Transmittals',
|
||||||
'name' => 'Name',
|
'name' => 'Name',
|
||||||
'needs_workflow_action' => 'This document requires your attention. Please check the workflow tab.',
|
'needs_workflow_action' => 'This document requires your attention. Please check the workflow tab.',
|
||||||
|
'network_drive' => 'Network drive',
|
||||||
'never' => 'never',
|
'never' => 'never',
|
||||||
'new' => 'New',
|
'new' => 'New',
|
||||||
'new_attrdef' => 'Add attribute definition',
|
'new_attrdef' => 'Add attribute definition',
|
||||||
|
@ -701,6 +717,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'No keywords available',
|
'no_default_keywords' => 'No keywords available',
|
||||||
'no_docs_checked_out' => 'No documents checked out',
|
'no_docs_checked_out' => 'No documents checked out',
|
||||||
'no_docs_locked' => 'No documents locked.',
|
'no_docs_locked' => 'No documents locked.',
|
||||||
|
'no_docs_rejected' => 'No documents rejected.',
|
||||||
'no_docs_to_approve' => 'There are currently no documents that require approval.',
|
'no_docs_to_approve' => 'There are currently no documents that require approval.',
|
||||||
'no_docs_to_look_at' => 'No documents that need attention.',
|
'no_docs_to_look_at' => 'No documents that need attention.',
|
||||||
'no_docs_to_receipt' => 'No document receipts required',
|
'no_docs_to_receipt' => 'No document receipts required',
|
||||||
|
@ -900,6 +917,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Workflow was rewinded',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Workflow was rewinded',
|
||||||
'rewind_workflow_warning' => 'If you rewind a workflow to its initial state, then the whole workflow log for this document will be deleted and cannot be recovered.',
|
'rewind_workflow_warning' => 'If you rewind a workflow to its initial state, then the whole workflow log for this document will be deleted and cannot be recovered.',
|
||||||
'rm_attrdef' => 'Remove attribute definition',
|
'rm_attrdef' => 'Remove attribute definition',
|
||||||
|
'rm_attrdefgroup' => 'Remove this attribute group',
|
||||||
'rm_default_keyword_category' => 'Remove category',
|
'rm_default_keyword_category' => 'Remove category',
|
||||||
'rm_document' => 'Remove document',
|
'rm_document' => 'Remove document',
|
||||||
'rm_document_category' => 'Remove category',
|
'rm_document_category' => 'Remove category',
|
||||||
|
@ -957,6 +975,7 @@ URL: [url]',
|
||||||
'search_time' => 'Elapsed time: [time] sec.',
|
'search_time' => 'Elapsed time: [time] sec.',
|
||||||
'seconds' => 'seconds',
|
'seconds' => 'seconds',
|
||||||
'selection' => 'Selection',
|
'selection' => 'Selection',
|
||||||
|
'select_attrdefgrp_show' => 'Choose when to show',
|
||||||
'select_category' => 'Click to select category',
|
'select_category' => 'Click to select category',
|
||||||
'select_groups' => 'Click to select groups',
|
'select_groups' => 'Click to select groups',
|
||||||
'select_grp_approvers' => 'Click to select group approver',
|
'select_grp_approvers' => 'Click to select group approver',
|
||||||
|
@ -1046,6 +1065,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Edition settings',
|
'settings_Edition' => 'Edition settings',
|
||||||
'settings_editOnlineFileTypes' => 'Edit Online File Types:',
|
'settings_editOnlineFileTypes' => 'Edit Online File Types:',
|
||||||
'settings_editOnlineFileTypes_desc' => 'Files with one of the following endings can be edited online (USE ONLY LOWER CASE CHARACTERS)',
|
'settings_editOnlineFileTypes_desc' => 'Files with one of the following endings can be edited online (USE ONLY LOWER CASE CHARACTERS)',
|
||||||
|
'settings_enable2FactorAuthentication' => 'Enable 2-factor authentication',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => 'Enable/disable 2 factor authentication. The users will need the Google Authenticator on its mobile phone.',
|
||||||
'settings_enableAcknowledgeWorkflow' => 'Enable acknowledge of document reception',
|
'settings_enableAcknowledgeWorkflow' => 'Enable acknowledge of document reception',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => 'Enable, to turn on the workflow to acknowledge document reception.',
|
'settings_enableAcknowledgeWorkflow_desc' => 'Enable, to turn on the workflow to acknowledge document reception.',
|
||||||
'settings_enableAdminRevApp' => 'Allow review/approval for admins',
|
'settings_enableAdminRevApp' => 'Allow review/approval for admins',
|
||||||
|
@ -1154,11 +1175,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Directory for full text index',
|
'settings_luceneDir' => 'Directory for full text index',
|
||||||
'settings_luceneDir_desc' => 'Path to Lucene index',
|
'settings_luceneDir_desc' => 'Path to Lucene index',
|
||||||
'settings_maxDirID' => 'Max Directory ID',
|
'settings_maxDirID' => 'Max Directory ID',
|
||||||
'settings_maxDirID_desc' => 'Maximum number of sub-directories per parent directory. Default: 32700.',
|
'settings_maxDirID_desc' => 'Maximum number of sub-directories per parent directory. Do not change this value unless you know what you do! Default: 0.',
|
||||||
'settings_maxExecutionTime' => 'Max Execution Time (s)',
|
'settings_maxExecutionTime' => 'Max Execution Time (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'This sets the maximum time in seconds a script is allowed to run before it is terminated by the parse',
|
'settings_maxExecutionTime_desc' => 'This sets the maximum time in seconds a script is allowed to run before it is terminated by the parse',
|
||||||
'settings_maxRecursiveCount' => 'Max. number of recursive document/folder count',
|
'settings_maxRecursiveCount' => 'Max. number of recursive document/folder count',
|
||||||
'settings_maxRecursiveCount_desc' => 'This is the maximum number of documents or folders that will be checked for access rights, when recursively counting objects. If this number is exceeded, the number of documents and folders in the folder view will be estimated.',
|
'settings_maxRecursiveCount_desc' => 'This is the maximum number of documents or folders that will be checked for access rights, when recursively counting objects. If this number is exceeded, the number of documents and folders in the folder view will be estimated.',
|
||||||
|
'settings_maxSizeForFullText' => 'Maximum filesize for instant indexing',
|
||||||
|
'settings_maxSizeForFullText_desc' => 'All new document version smaller than the configured size will be fully indexed right after uploading. In all other cases only the metadata will be indexed.',
|
||||||
'settings_more_settings' => 'Configure more settings. Default login: admin/admin',
|
'settings_more_settings' => 'Configure more settings. Default login: admin/admin',
|
||||||
'settings_notfound' => 'Not found',
|
'settings_notfound' => 'Not found',
|
||||||
'settings_Notification' => 'Notification settings',
|
'settings_Notification' => 'Notification settings',
|
||||||
|
@ -1280,6 +1303,7 @@ URL: [url]',
|
||||||
'splash_add_role' => 'Added new role',
|
'splash_add_role' => 'Added new role',
|
||||||
'splash_add_to_transmittal' => 'Add to transmittal',
|
'splash_add_to_transmittal' => 'Add to transmittal',
|
||||||
'splash_add_user' => 'New user added',
|
'splash_add_user' => 'New user added',
|
||||||
|
'splash_clearcache' => 'Cache cleared',
|
||||||
'splash_cleared_clipboard' => 'Clipboard cleared',
|
'splash_cleared_clipboard' => 'Clipboard cleared',
|
||||||
'splash_document_added' => 'Document added',
|
'splash_document_added' => 'Document added',
|
||||||
'splash_document_checkedout' => 'Document checked out',
|
'splash_document_checkedout' => 'Document checked out',
|
||||||
|
@ -1333,6 +1357,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => 'Revisor removed from list',
|
'status_revisor_removed' => 'Revisor removed from list',
|
||||||
'status_unknown' => 'Unknown',
|
'status_unknown' => 'Unknown',
|
||||||
'storage_size' => 'Storage size',
|
'storage_size' => 'Storage size',
|
||||||
|
'submit_2_fact_auth' => 'Save secret',
|
||||||
'submit_approval' => 'Submit approval',
|
'submit_approval' => 'Submit approval',
|
||||||
'submit_login' => 'Sign in',
|
'submit_login' => 'Sign in',
|
||||||
'submit_password' => 'Set new password',
|
'submit_password' => 'Set new password',
|
||||||
|
@ -1378,6 +1403,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Version [version]: [status]',
|
'timeline_status_change' => 'Version [version]: [status]',
|
||||||
'to' => 'To',
|
'to' => 'To',
|
||||||
'toggle_manager' => 'Toggle manager',
|
'toggle_manager' => 'Toggle manager',
|
||||||
|
'toggle_qrcode' => 'Show/hide QR code',
|
||||||
'to_before_from' => 'End date may not be before start date',
|
'to_before_from' => 'End date may not be before start date',
|
||||||
'transition_triggered_email' => 'Workflow transition triggered',
|
'transition_triggered_email' => 'Workflow transition triggered',
|
||||||
'transition_triggered_email_body' => 'Workflow transition triggered
|
'transition_triggered_email_body' => 'Workflow transition triggered
|
||||||
|
@ -1453,7 +1479,7 @@ URL: [url]',
|
||||||
'use_default_keywords' => 'Use predefined keywords',
|
'use_default_keywords' => 'Use predefined keywords',
|
||||||
'version' => 'Version',
|
'version' => 'Version',
|
||||||
'versioning_file_creation' => 'Versioning file creation',
|
'versioning_file_creation' => 'Versioning file creation',
|
||||||
'versioning_file_creation_warning' => 'With this operation you can create a file containing the versioning information of an entire DMS folder. After the creation every file will be saved inside the document folder.',
|
'versioning_file_creation_warning' => 'With this operation you can create a file for each document containing the versioning information of that document. After the creation every file will be saved inside the document folder. Those files are not needed for the regular operation of the dms, but could be of value if the complete repository shall be transferred to an other system.',
|
||||||
'versioning_info' => 'Versioning info',
|
'versioning_info' => 'Versioning info',
|
||||||
'versiontolow' => 'Version to low',
|
'versiontolow' => 'Version to low',
|
||||||
'version_deleted_email' => 'Version deleted',
|
'version_deleted_email' => 'Version deleted',
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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: acabello (20), Admin (993), angel (123), francisco (2), jaimem (14)
|
// Translators: acabello (20), Admin (995), angel (123), francisco (2), jaimem (14)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Aceptar',
|
'accept' => 'Aceptar',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Revisar',
|
'action_revise' => 'Revisar',
|
||||||
'add' => 'Añadir',
|
'add' => 'Añadir',
|
||||||
'add_approval' => 'Enviar aprobación',
|
'add_approval' => 'Enviar aprobación',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Añadir documento',
|
'add_document' => 'Añadir documento',
|
||||||
'add_document_link' => 'Añadir vínculo',
|
'add_document_link' => 'Añadir vínculo',
|
||||||
'add_document_notify' => 'Asignar notificación',
|
'add_document_notify' => 'Asignar notificación',
|
||||||
|
@ -122,6 +126,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Asignar revisores',
|
'assign_reviewers' => 'Asignar revisores',
|
||||||
'assign_user_property_to' => 'Asignar propiedades de usuario a',
|
'assign_user_property_to' => 'Asignar propiedades de usuario a',
|
||||||
'assumed_released' => 'Supuestamente publicado',
|
'assumed_released' => 'Supuestamente publicado',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Definición de atributos ya existe',
|
'attrdef_exists' => 'Definición de atributos ya existe',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'Definición de atributo en uso',
|
'attrdef_in_use' => 'Definición de atributo en uso',
|
||||||
|
@ -216,6 +225,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => 'Por favor, seleccione definición de atributo',
|
'choose_attrdef' => 'Por favor, seleccione definición de atributo',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Seleccione categoría',
|
'choose_category' => 'Seleccione categoría',
|
||||||
'choose_group' => 'Seleccione grupo',
|
'choose_group' => 'Seleccione grupo',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -388,8 +398,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Editar propiedades de documento',
|
'edit_document_props' => 'Editar propiedades de documento',
|
||||||
'edit_event' => 'Editar evento',
|
'edit_event' => 'Editar evento',
|
||||||
'edit_existing_access' => 'Editar lista de acceso',
|
'edit_existing_access' => 'Editar lista de acceso',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Editar lista de notificación',
|
'edit_existing_notify' => 'Editar lista de notificación',
|
||||||
'edit_folder_access' => 'Editar acceso',
|
'edit_folder_access' => 'Editar acceso',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Lista de notificación',
|
'edit_folder_notify' => 'Lista de notificación',
|
||||||
'edit_folder_props' => 'Editar carpeta',
|
'edit_folder_props' => 'Editar carpeta',
|
||||||
'edit_group' => 'Editar grupo...',
|
'edit_group' => 'Editar grupo...',
|
||||||
|
@ -403,6 +415,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Siempre se puede cambiar la configuración de correo electrónico utilizando las funciones de «Mi cuenta»',
|
'email_footer' => 'Siempre se puede cambiar la configuración de correo electrónico utilizando las funciones de «Mi cuenta»',
|
||||||
'email_header' => 'Este es un mensaje automático del servidor de DMS.',
|
'email_header' => 'Este es un mensaje automático del servidor de DMS.',
|
||||||
'email_not_given' => 'Por favor, introduzca una dirección de correo válida.',
|
'email_not_given' => 'Por favor, introduzca una dirección de correo válida.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Sin documentos o carpetas',
|
'empty_folder_list' => 'Sin documentos o carpetas',
|
||||||
'empty_notify_list' => 'Sin entradas',
|
'empty_notify_list' => 'Sin entradas',
|
||||||
'en_GB' => 'Ingless (GB)',
|
'en_GB' => 'Ingless (GB)',
|
||||||
|
@ -410,6 +423,7 @@ URL: [url]',
|
||||||
'error' => 'Error',
|
'error' => 'Error',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Ningún documento seleccionado',
|
'error_no_document_selected' => 'Ningún documento seleccionado',
|
||||||
'error_no_folder_selected' => 'Ninguna carpeta seleccionada',
|
'error_no_folder_selected' => 'Ninguna carpeta seleccionada',
|
||||||
|
@ -484,6 +498,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Búsqueda en texto completo',
|
'fullsearch' => 'Búsqueda en texto completo',
|
||||||
'fullsearch_hint' => 'Utilizar índice de texto completo',
|
'fullsearch_hint' => 'Utilizar índice de texto completo',
|
||||||
'fulltext_info' => 'Información de índice de texto completo',
|
'fulltext_info' => 'Información de índice de texto completo',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Definición de atributos',
|
'global_attributedefinitions' => 'Definición de atributos',
|
||||||
'global_default_keywords' => 'Palabras clave globales',
|
'global_default_keywords' => 'Palabras clave globales',
|
||||||
'global_document_categories' => 'Categorías',
|
'global_document_categories' => 'Categorías',
|
||||||
|
@ -513,7 +528,7 @@ URL: [url]',
|
||||||
'identical_version' => 'La nueva versión es idéntica a la actual.',
|
'identical_version' => 'La nueva versión es idéntica a la actual.',
|
||||||
'import' => '',
|
'import' => '',
|
||||||
'importfs' => '',
|
'importfs' => '',
|
||||||
'import_fs' => '',
|
'import_fs' => 'Importar desde sistema de aechivos',
|
||||||
'import_fs_warning' => '',
|
'import_fs_warning' => '',
|
||||||
'include_content' => '',
|
'include_content' => '',
|
||||||
'include_documents' => 'Incluir documentos',
|
'include_documents' => 'Incluir documentos',
|
||||||
|
@ -636,6 +651,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'Nombre',
|
'name' => 'Nombre',
|
||||||
'needs_workflow_action' => 'Este documento requiere su atención. Por favor chequee la pestaña de flujo de trabajo.',
|
'needs_workflow_action' => 'Este documento requiere su atención. Por favor chequee la pestaña de flujo de trabajo.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => 'nunca',
|
'never' => 'nunca',
|
||||||
'new' => 'Nuevo',
|
'new' => 'Nuevo',
|
||||||
'new_attrdef' => 'Nueva definición de atributo',
|
'new_attrdef' => 'Nueva definición de atributo',
|
||||||
|
@ -696,6 +712,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'No hay palabras clave disponibles',
|
'no_default_keywords' => 'No hay palabras clave disponibles',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'No hay documentos bloqueados.',
|
'no_docs_locked' => 'No hay documentos bloqueados.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Actualmente no hay documentos que necesiten aprobación.',
|
'no_docs_to_approve' => 'Actualmente no hay documentos que necesiten aprobación.',
|
||||||
'no_docs_to_look_at' => 'No hay documentos que necesiten atención.',
|
'no_docs_to_look_at' => 'No hay documentos que necesiten atención.',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -868,6 +885,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - El flujo de trabajo fue retrocedido',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - El flujo de trabajo fue retrocedido',
|
||||||
'rewind_workflow_warning' => 'Si su flujo de trabajo fue retrocedido a su estado inicial, todo el log del flujo de trabajo de este documento será borrado y no se podrá recuperar.',
|
'rewind_workflow_warning' => 'Si su flujo de trabajo fue retrocedido a su estado inicial, todo el log del flujo de trabajo de este documento será borrado y no se podrá recuperar.',
|
||||||
'rm_attrdef' => 'Eliminar definición de atributo',
|
'rm_attrdef' => 'Eliminar definición de atributo',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Eliminar categoría',
|
'rm_default_keyword_category' => 'Eliminar categoría',
|
||||||
'rm_document' => 'Eliminar documento',
|
'rm_document' => 'Eliminar documento',
|
||||||
'rm_document_category' => 'Eliminar categoría',
|
'rm_document_category' => 'Eliminar categoría',
|
||||||
|
@ -925,6 +943,7 @@ URL: [url]',
|
||||||
'search_time' => 'Tiempo transcurrido: [time] seg.',
|
'search_time' => 'Tiempo transcurrido: [time] seg.',
|
||||||
'seconds' => 'segundos',
|
'seconds' => 'segundos',
|
||||||
'selection' => 'Selección',
|
'selection' => 'Selección',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Haga Click para seleccionar categoría',
|
'select_category' => 'Haga Click para seleccionar categoría',
|
||||||
'select_groups' => 'Haga Click para seleccionar grupos',
|
'select_groups' => 'Haga Click para seleccionar grupos',
|
||||||
'select_grp_approvers' => 'Haga Click para seleccionar grupo de aprobadores',
|
'select_grp_approvers' => 'Haga Click para seleccionar grupo de aprobadores',
|
||||||
|
@ -1014,6 +1033,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Configuración de edición',
|
'settings_Edition' => 'Configuración de edición',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => 'Habilitar Administrador Rev Apr',
|
'settings_enableAdminRevApp' => 'Habilitar Administrador Rev Apr',
|
||||||
|
@ -1122,11 +1143,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Carpeta del índice de texto completo',
|
'settings_luceneDir' => 'Carpeta del índice de texto completo',
|
||||||
'settings_luceneDir_desc' => 'Ruta hacia el índice Lucene',
|
'settings_luceneDir_desc' => 'Ruta hacia el índice Lucene',
|
||||||
'settings_maxDirID' => 'ID máximo de carpeta',
|
'settings_maxDirID' => 'ID máximo de carpeta',
|
||||||
'settings_maxDirID_desc' => 'Número máximo de subcarpetas por carpeta principal. Por defecto: 32700.',
|
'settings_maxDirID_desc' => 'Número máximo de subcarpetas por carpeta principal. Por defecto: 0.',
|
||||||
'settings_maxExecutionTime' => 'Tiempo máximo de ejecución (s)',
|
'settings_maxExecutionTime' => 'Tiempo máximo de ejecución (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Esto configura el tiempo máximo en segundos que un script puede estar ejectutándose antes de que el analizador lo pare',
|
'settings_maxExecutionTime_desc' => 'Esto configura el tiempo máximo en segundos que un script puede estar ejectutándose antes de que el analizador lo pare',
|
||||||
'settings_maxRecursiveCount' => 'Número máximo del contador de carpetas/documentos recursivos',
|
'settings_maxRecursiveCount' => 'Número máximo del contador de carpetas/documentos recursivos',
|
||||||
'settings_maxRecursiveCount_desc' => 'Este es el número máximo de documentos o carpetas que pueden ser revisados con derechos de acceso, contando objetos recursivos. Si este número es excedido , el número de carpetas y documentos en la vista de carpeta será estimado.',
|
'settings_maxRecursiveCount_desc' => 'Este es el número máximo de documentos o carpetas que pueden ser revisados con derechos de acceso, contando objetos recursivos. Si este número es excedido , el número de carpetas y documentos en la vista de carpeta será estimado.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Configure más parámetros. Acceso por defecto: admin/admin',
|
'settings_more_settings' => 'Configure más parámetros. Acceso por defecto: admin/admin',
|
||||||
'settings_notfound' => 'No encontrado',
|
'settings_notfound' => 'No encontrado',
|
||||||
'settings_Notification' => 'Parámetros de notificación',
|
'settings_Notification' => 'Parámetros de notificación',
|
||||||
|
@ -1248,6 +1271,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Nuevo usuario agregado',
|
'splash_add_user' => 'Nuevo usuario agregado',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Portapapeles limpiado',
|
'splash_cleared_clipboard' => 'Portapapeles limpiado',
|
||||||
'splash_document_added' => 'Documento añadido',
|
'splash_document_added' => 'Documento añadido',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1301,6 +1325,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Desconocido',
|
'status_unknown' => 'Desconocido',
|
||||||
'storage_size' => 'Tamaño de almacenamiento',
|
'storage_size' => 'Tamaño de almacenamiento',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Enviar aprobación',
|
'submit_approval' => 'Enviar aprobación',
|
||||||
'submit_login' => 'Conectar',
|
'submit_login' => 'Conectar',
|
||||||
'submit_password' => 'Fijar nueva contraseña',
|
'submit_password' => 'Fijar nueva contraseña',
|
||||||
|
@ -1346,6 +1371,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Versión [version]: [estado]',
|
'timeline_status_change' => 'Versión [version]: [estado]',
|
||||||
'to' => 'Hasta',
|
'to' => 'Hasta',
|
||||||
'toggle_manager' => 'Intercambiar mánager',
|
'toggle_manager' => 'Intercambiar mánager',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'La fecha de finalización no debe ser anterior a la de inicio',
|
'to_before_from' => 'La fecha de finalización no debe ser anterior a la de inicio',
|
||||||
'transition_triggered_email' => 'Workflow transition triggered',
|
'transition_triggered_email' => 'Workflow transition triggered',
|
||||||
'transition_triggered_email_body' => 'Workflow transition triggered
|
'transition_triggered_email_body' => 'Workflow transition triggered
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (1032), jeromerobert (50), lonnnew (9)
|
// Translators: Admin (1046), jeromerobert (50), lonnnew (9)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Accepter',
|
'accept' => 'Accepter',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Réviser',
|
'action_revise' => 'Réviser',
|
||||||
'add' => 'Ajouter',
|
'add' => 'Ajouter',
|
||||||
'add_approval' => 'Soumettre approbation',
|
'add_approval' => 'Soumettre approbation',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Ajouter un document',
|
'add_document' => 'Ajouter un document',
|
||||||
'add_document_link' => 'Ajouter un lien',
|
'add_document_link' => 'Ajouter un lien',
|
||||||
'add_document_notify' => 'Assigner une notification',
|
'add_document_notify' => 'Assigner une notification',
|
||||||
|
@ -122,6 +126,11 @@ URL : [url]',
|
||||||
'assign_reviewers' => 'Correcteurs désignés',
|
'assign_reviewers' => 'Correcteurs désignés',
|
||||||
'assign_user_property_to' => 'Assigner les propriétés de l\'utilisateur à',
|
'assign_user_property_to' => 'Assigner les propriétés de l\'utilisateur à',
|
||||||
'assumed_released' => 'Supposé publié',
|
'assumed_released' => 'Supposé publié',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'La définition d\'attribut existe déjà',
|
'attrdef_exists' => 'La définition d\'attribut existe déjà',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'La définition d\'attribut est en cours d\'utilisation',
|
'attrdef_in_use' => 'La définition d\'attribut est en cours d\'utilisation',
|
||||||
|
@ -216,6 +225,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => 'Choisissez une définition d\'attribut',
|
'choose_attrdef' => 'Choisissez une définition d\'attribut',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'SVP choisir',
|
'choose_category' => 'SVP choisir',
|
||||||
'choose_group' => 'Choisir un groupe',
|
'choose_group' => 'Choisir un groupe',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -388,8 +398,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Modifier le document',
|
'edit_document_props' => 'Modifier le document',
|
||||||
'edit_event' => 'Modifier l\'événement',
|
'edit_event' => 'Modifier l\'événement',
|
||||||
'edit_existing_access' => 'Modifier la liste des droits d\'accès',
|
'edit_existing_access' => 'Modifier la liste des droits d\'accès',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Modifier les notifications',
|
'edit_existing_notify' => 'Modifier les notifications',
|
||||||
'edit_folder_access' => 'Modifier les droits d\'accès',
|
'edit_folder_access' => 'Modifier les droits d\'accès',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Liste de notification de dossiers',
|
'edit_folder_notify' => 'Liste de notification de dossiers',
|
||||||
'edit_folder_props' => 'Modifier le dossier',
|
'edit_folder_props' => 'Modifier le dossier',
|
||||||
'edit_group' => 'Modifier un groupe',
|
'edit_group' => 'Modifier un groupe',
|
||||||
|
@ -403,6 +415,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Vous pouvez modifier les paramètres de messagerie via \'Mon compte\'.',
|
'email_footer' => 'Vous pouvez modifier les paramètres de messagerie 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' => 'SVP Entrer une adresse email valide.',
|
'email_not_given' => 'SVP Entrer une adresse email valide.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Pas de documents ou de dossier',
|
'empty_folder_list' => 'Pas de documents ou de dossier',
|
||||||
'empty_notify_list' => 'Aucune entrée',
|
'empty_notify_list' => 'Aucune entrée',
|
||||||
'en_GB' => 'Anglais (RU)',
|
'en_GB' => 'Anglais (RU)',
|
||||||
|
@ -410,6 +423,7 @@ URL: [url]',
|
||||||
'error' => 'Erreur',
|
'error' => 'Erreur',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'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é',
|
||||||
|
@ -418,7 +432,7 @@ URL: [url]',
|
||||||
'error_toogle_permission' => '',
|
'error_toogle_permission' => '',
|
||||||
'es_ES' => 'Espagnol',
|
'es_ES' => 'Espagnol',
|
||||||
'event_details' => 'Détails de l\'événement',
|
'event_details' => 'Détails de l\'événement',
|
||||||
'exclude_items' => '',
|
'exclude_items' => 'Exclure des élements',
|
||||||
'expired' => 'Expiré',
|
'expired' => 'Expiré',
|
||||||
'expires' => 'Expiration',
|
'expires' => 'Expiration',
|
||||||
'expiry_changed_email' => 'Date d\'expiration modifiée',
|
'expiry_changed_email' => 'Date d\'expiration modifiée',
|
||||||
|
@ -484,6 +498,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Recherche dans le contenu',
|
'fullsearch' => 'Recherche dans le contenu',
|
||||||
'fullsearch_hint' => 'Utiliser la recherche plein texte',
|
'fullsearch_hint' => 'Utiliser la recherche plein texte',
|
||||||
'fulltext_info' => 'Information sur l\'index plein texte',
|
'fulltext_info' => 'Information sur l\'index plein texte',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Définitions d\'attributs',
|
'global_attributedefinitions' => 'Définitions d\'attributs',
|
||||||
'global_default_keywords' => 'Mots-clés globaux',
|
'global_default_keywords' => 'Mots-clés globaux',
|
||||||
'global_document_categories' => 'Catégories',
|
'global_document_categories' => 'Catégories',
|
||||||
|
@ -513,7 +528,7 @@ URL: [url]',
|
||||||
'identical_version' => 'Nouvelle version identique à l\'actuelle.',
|
'identical_version' => 'Nouvelle version identique à l\'actuelle.',
|
||||||
'import' => '',
|
'import' => '',
|
||||||
'importfs' => '',
|
'importfs' => '',
|
||||||
'import_fs' => '',
|
'import_fs' => 'Importer depuis le système de fichiers',
|
||||||
'import_fs_warning' => '',
|
'import_fs_warning' => '',
|
||||||
'include_content' => '',
|
'include_content' => '',
|
||||||
'include_documents' => 'Inclure les documents',
|
'include_documents' => 'Inclure les documents',
|
||||||
|
@ -606,8 +621,8 @@ URL: [url]',
|
||||||
'manager_of_group' => 'Vous êtes le gestionnaire de ce groupe',
|
'manager_of_group' => 'Vous êtes le gestionnaire de ce groupe',
|
||||||
'mandatory_approvergroups' => 'Obligatoire : groupes de valideurs',
|
'mandatory_approvergroups' => 'Obligatoire : groupes de valideurs',
|
||||||
'mandatory_approvergroup_no_access' => 'Groupe requis d\'approbateurs \'[group]\' ne dispose pas des droits suffisants',
|
'mandatory_approvergroup_no_access' => 'Groupe requis d\'approbateurs \'[group]\' ne dispose pas des droits suffisants',
|
||||||
'mandatory_approvers' => '',
|
'mandatory_approvers' => 'Approbateurs désignés',
|
||||||
'mandatory_approver_no_access' => '',
|
'mandatory_approver_no_access' => 'L\'approbateur désigné \'[user]\' ne dispose pas des droits d\'accès suffisants.',
|
||||||
'mandatory_reviewergroups' => 'Obligatoire : groupe des relecteurs',
|
'mandatory_reviewergroups' => 'Obligatoire : groupe des relecteurs',
|
||||||
'mandatory_reviewergroup_no_access' => 'Groupe d\'examinateurs \'[group]\' ne dispose pas des droits suffisants',
|
'mandatory_reviewergroup_no_access' => 'Groupe d\'examinateurs \'[group]\' ne dispose pas des droits suffisants',
|
||||||
'mandatory_reviewers' => 'Examinateurs',
|
'mandatory_reviewers' => 'Examinateurs',
|
||||||
|
@ -636,6 +651,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'Nom',
|
'name' => 'Nom',
|
||||||
'needs_workflow_action' => 'Ce document requiert votre attention. Consultez l\'onglet workflow.',
|
'needs_workflow_action' => 'Ce document requiert votre attention. Consultez l\'onglet workflow.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => 'Jamais',
|
'never' => 'Jamais',
|
||||||
'new' => 'Nouveau',
|
'new' => 'Nouveau',
|
||||||
'new_attrdef' => 'Ajouter une définition d\'attribut',
|
'new_attrdef' => 'Ajouter une définition d\'attribut',
|
||||||
|
@ -695,6 +711,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Aucun mot-clé disponible',
|
'no_default_keywords' => 'Aucun mot-clé disponible',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'Aucun document verrouillé',
|
'no_docs_locked' => 'Aucun document verrouillé',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Aucun document ne nécessite actuellement une approbation',
|
'no_docs_to_approve' => 'Aucun document ne nécessite actuellement une approbation',
|
||||||
'no_docs_to_look_at' => 'Aucun document à surveiller',
|
'no_docs_to_look_at' => 'Aucun document à surveiller',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -851,6 +868,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Le workflow a été réinitialisé',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Le workflow a été réinitialisé',
|
||||||
'rewind_workflow_warning' => 'Si vous remonter à l\'état initial du workflow, le log de workflow de ce document sera supprimé et impossible à récupérer.',
|
'rewind_workflow_warning' => 'Si vous remonter à l\'état initial du workflow, le log de workflow de ce document sera supprimé et impossible à récupérer.',
|
||||||
'rm_attrdef' => 'Retirer définition d\'attribut',
|
'rm_attrdef' => 'Retirer définition d\'attribut',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Supprimer la catégorie',
|
'rm_default_keyword_category' => 'Supprimer la catégorie',
|
||||||
'rm_document' => 'Supprimer le document',
|
'rm_document' => 'Supprimer le document',
|
||||||
'rm_document_category' => 'Supprimer la catégorie',
|
'rm_document_category' => 'Supprimer la catégorie',
|
||||||
|
@ -901,6 +919,7 @@ URL: [url]',
|
||||||
'search_time' => 'Temps écoulé: [time] sec.',
|
'search_time' => 'Temps écoulé: [time] sec.',
|
||||||
'seconds' => 'secondes',
|
'seconds' => 'secondes',
|
||||||
'selection' => 'Sélection',
|
'selection' => 'Sélection',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Cliquer pour choisir une catégorie',
|
'select_category' => 'Cliquer pour choisir une catégorie',
|
||||||
'select_groups' => 'Cliquer pour choisir un groupe',
|
'select_groups' => 'Cliquer pour choisir un groupe',
|
||||||
'select_grp_approvers' => 'Cliquer pour choisir un groupe d\'approbateur',
|
'select_grp_approvers' => 'Cliquer pour choisir un groupe d\'approbateur',
|
||||||
|
@ -990,6 +1009,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Paramètres d’édition',
|
'settings_Edition' => 'Paramètres d’édition',
|
||||||
'settings_editOnlineFileTypes' => 'Editer le type de fichier',
|
'settings_editOnlineFileTypes' => 'Editer le type de fichier',
|
||||||
'settings_editOnlineFileTypes_desc' => 'Editer la description du type de fichier',
|
'settings_editOnlineFileTypes_desc' => 'Editer la description du type de fichier',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => 'Activer Admin Rev App',
|
'settings_enableAdminRevApp' => 'Activer Admin Rev App',
|
||||||
|
@ -1098,11 +1119,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Répertoire index Lucene',
|
'settings_luceneDir' => 'Répertoire index Lucene',
|
||||||
'settings_luceneDir_desc' => 'Chemin vers index Lucene',
|
'settings_luceneDir_desc' => 'Chemin vers index Lucene',
|
||||||
'settings_maxDirID' => 'Max ID répertoire',
|
'settings_maxDirID' => 'Max ID répertoire',
|
||||||
'settings_maxDirID_desc' => 'Nombre maximum de sous-répertoires par le répertoire parent. Par défaut: 32700.',
|
'settings_maxDirID_desc' => 'Nombre maximum de sous-répertoires par le répertoire parent. Par défaut: 0.',
|
||||||
'settings_maxExecutionTime' => 'Temps d\'exécution max (s)',
|
'settings_maxExecutionTime' => 'Temps d\'exécution max (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Ceci définit la durée maximale en secondes q\'un script est autorisé à exécuter avant de se terminer par l\'analyse syntaxique',
|
'settings_maxExecutionTime_desc' => 'Ceci définit la durée maximale en secondes q\'un script est autorisé à exécuter avant de se terminer par l\'analyse syntaxique',
|
||||||
'settings_maxRecursiveCount' => 'Nombre maximal de document/dossier récursif',
|
'settings_maxRecursiveCount' => 'Nombre maximal de document/dossier récursif',
|
||||||
'settings_maxRecursiveCount_desc' => 'Nombre maximum de documents et répertoires dont l\'accès sera vérifié, lors d\'un décompte récursif. Si ce nombre est dépassé, le nombre de documents et répertoires affichés sera approximé.',
|
'settings_maxRecursiveCount_desc' => 'Nombre maximum de documents et répertoires dont l\'accès sera vérifié, lors d\'un décompte récursif. Si ce nombre est dépassé, le nombre de documents et répertoires affichés sera approximé.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Configurer d\'autres paramètres. Connexion par défaut: admin/admin',
|
'settings_more_settings' => 'Configurer d\'autres paramètres. Connexion par défaut: admin/admin',
|
||||||
'settings_notfound' => 'Introuvable',
|
'settings_notfound' => 'Introuvable',
|
||||||
'settings_Notification' => 'Notifications',
|
'settings_Notification' => 'Notifications',
|
||||||
|
@ -1224,6 +1247,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Nouvel utilisateur ajouté',
|
'splash_add_user' => 'Nouvel utilisateur ajouté',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'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' => '',
|
||||||
|
@ -1277,6 +1301,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Inconnu',
|
'status_unknown' => 'Inconnu',
|
||||||
'storage_size' => 'Taille occupée',
|
'storage_size' => 'Taille occupée',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Soumettre approbation',
|
'submit_approval' => 'Soumettre approbation',
|
||||||
'submit_login' => 'Connexion',
|
'submit_login' => 'Connexion',
|
||||||
'submit_password' => 'Entrez nouveau mot de passe',
|
'submit_password' => 'Entrez nouveau mot de passe',
|
||||||
|
@ -1312,16 +1337,17 @@ URL: [url]',
|
||||||
'timeline_full_add_version' => '',
|
'timeline_full_add_version' => '',
|
||||||
'timeline_full_status_change' => '',
|
'timeline_full_status_change' => '',
|
||||||
'timeline_selected_item' => '',
|
'timeline_selected_item' => '',
|
||||||
'timeline_skip_add_file' => '',
|
'timeline_skip_add_file' => 'avec attachements',
|
||||||
'timeline_skip_status_change_-1' => '',
|
'timeline_skip_status_change_-1' => 'rejetés',
|
||||||
'timeline_skip_status_change_-3' => '',
|
'timeline_skip_status_change_-3' => 'expirés',
|
||||||
'timeline_skip_status_change_0' => '',
|
'timeline_skip_status_change_0' => 'en attente de revue',
|
||||||
'timeline_skip_status_change_1' => '',
|
'timeline_skip_status_change_1' => 'en attente d\'approbation',
|
||||||
'timeline_skip_status_change_2' => '',
|
'timeline_skip_status_change_2' => 'en mode release',
|
||||||
'timeline_skip_status_change_3' => '',
|
'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',
|
||||||
'toggle_manager' => 'Basculer \'Responsable\'',
|
'toggle_manager' => 'Basculer \'Responsable\'',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => '',
|
'to_before_from' => '',
|
||||||
'transition_triggered_email' => 'Transition de workflow activé',
|
'transition_triggered_email' => 'Transition de workflow activé',
|
||||||
'transition_triggered_email_body' => '',
|
'transition_triggered_email_body' => '',
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (1187), marbanas (16)
|
// Translators: Admin (1188), marbanas (16)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Prihvati',
|
'accept' => 'Prihvati',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ Internet poveznica: [url]',
|
||||||
'action_revise' => 'Izmijeni',
|
'action_revise' => 'Izmijeni',
|
||||||
'add' => 'Dodaj',
|
'add' => 'Dodaj',
|
||||||
'add_approval' => 'Dodaj odobrenje',
|
'add_approval' => 'Dodaj odobrenje',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Dodaj dokument',
|
'add_document' => 'Dodaj dokument',
|
||||||
'add_document_link' => 'Dodaj poveznicu',
|
'add_document_link' => 'Dodaj poveznicu',
|
||||||
'add_document_notify' => 'Dodijeli obavještavanje',
|
'add_document_notify' => 'Dodijeli obavještavanje',
|
||||||
|
@ -127,6 +131,11 @@ Internet poveznica: [url]',
|
||||||
'assign_reviewers' => 'Dodijeli recezente',
|
'assign_reviewers' => 'Dodijeli recezente',
|
||||||
'assign_user_property_to' => 'Dodijeli svojstva korisnika za',
|
'assign_user_property_to' => 'Dodijeli svojstva korisnika za',
|
||||||
'assumed_released' => 'Podrazumijevano obrađeno',
|
'assumed_released' => 'Podrazumijevano obrađeno',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Definicija atributa već postoji',
|
'attrdef_exists' => 'Definicija atributa već postoji',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'Definicija atributa se već koristi',
|
'attrdef_in_use' => 'Definicija atributa se već koristi',
|
||||||
|
@ -221,6 +230,7 @@ Internet poveznica: [url]',
|
||||||
'checkout_document' => 'Odjava',
|
'checkout_document' => 'Odjava',
|
||||||
'checkout_is_disabled' => 'Odjava dokumenata je onemogućena u konfiguraciji.',
|
'checkout_is_disabled' => 'Odjava dokumenata je onemogućena u konfiguraciji.',
|
||||||
'choose_attrdef' => 'Molim odaberite definiciju atributa',
|
'choose_attrdef' => 'Molim odaberite definiciju atributa',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Molim odaberite',
|
'choose_category' => 'Molim odaberite',
|
||||||
'choose_group' => 'Odaberite grupu',
|
'choose_group' => 'Odaberite grupu',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -393,8 +403,10 @@ Internet poveznica: [url]',
|
||||||
'edit_document_props' => 'Uredi dokument',
|
'edit_document_props' => 'Uredi dokument',
|
||||||
'edit_event' => 'Uredi događaj',
|
'edit_event' => 'Uredi događaj',
|
||||||
'edit_existing_access' => 'Uredi popis pristupa',
|
'edit_existing_access' => 'Uredi popis pristupa',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Uredi popis za primanje obavijesti',
|
'edit_existing_notify' => 'Uredi popis za primanje obavijesti',
|
||||||
'edit_folder_access' => 'Uredi pristup',
|
'edit_folder_access' => 'Uredi pristup',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Popis za obavijesti o mapi',
|
'edit_folder_notify' => 'Popis za obavijesti o mapi',
|
||||||
'edit_folder_props' => 'Uredi mapu',
|
'edit_folder_props' => 'Uredi mapu',
|
||||||
'edit_group' => 'Uredi mapu',
|
'edit_group' => 'Uredi mapu',
|
||||||
|
@ -408,6 +420,7 @@ Internet poveznica: [url]',
|
||||||
'email_footer' => 'Koristeći funckcije \'Moj račun\' možete promijeniti postavke email obavještavanja.',
|
'email_footer' => 'Koristeći funckcije \'Moj račun\' možete promijeniti postavke email obavještavanja.',
|
||||||
'email_header' => 'Ovo je automatski generirana poruka iz DMS sustava',
|
'email_header' => 'Ovo je automatski generirana poruka iz DMS sustava',
|
||||||
'email_not_given' => 'Molimo unesite valjanu email adresu.',
|
'email_not_given' => 'Molimo unesite valjanu email adresu.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Nema dokumenata ili mapa',
|
'empty_folder_list' => 'Nema dokumenata ili mapa',
|
||||||
'empty_notify_list' => 'Nema zapisa',
|
'empty_notify_list' => 'Nema zapisa',
|
||||||
'en_GB' => 'Engleski (GB)',
|
'en_GB' => 'Engleski (GB)',
|
||||||
|
@ -415,6 +428,7 @@ Internet poveznica: [url]',
|
||||||
'error' => 'Greška',
|
'error' => 'Greška',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Nije odabran dokument',
|
'error_no_document_selected' => 'Nije odabran dokument',
|
||||||
'error_no_folder_selected' => 'Nije odabrana mapa',
|
'error_no_folder_selected' => 'Nije odabrana mapa',
|
||||||
|
@ -489,6 +503,7 @@ Internet poveznica: [url]',
|
||||||
'fullsearch' => 'Pretraživanje cijelog teksta',
|
'fullsearch' => 'Pretraživanje cijelog teksta',
|
||||||
'fullsearch_hint' => 'Koristi indeks cijelog teksta',
|
'fullsearch_hint' => 'Koristi indeks cijelog teksta',
|
||||||
'fulltext_info' => 'Informacije cijelog teksta',
|
'fulltext_info' => 'Informacije cijelog teksta',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Atributi',
|
'global_attributedefinitions' => 'Atributi',
|
||||||
'global_default_keywords' => 'Globalne ključne riječi',
|
'global_default_keywords' => 'Globalne ključne riječi',
|
||||||
'global_document_categories' => 'Kategorije',
|
'global_document_categories' => 'Kategorije',
|
||||||
|
@ -641,6 +656,7 @@ Internet poveznica: [url]',
|
||||||
'my_transmittals' => 'Moja proslijeđivanja',
|
'my_transmittals' => 'Moja proslijeđivanja',
|
||||||
'name' => 'Naziv',
|
'name' => 'Naziv',
|
||||||
'needs_workflow_action' => 'Ovaj dokument zahtjeva vašu pažnju. Molimo provjerite karticu toka rada.',
|
'needs_workflow_action' => 'Ovaj dokument zahtjeva vašu pažnju. Molimo provjerite karticu toka rada.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => 'nikada',
|
'never' => 'nikada',
|
||||||
'new' => 'Novo',
|
'new' => 'Novo',
|
||||||
'new_attrdef' => 'Dodaj definiciju atributa',
|
'new_attrdef' => 'Dodaj definiciju atributa',
|
||||||
|
@ -700,6 +716,7 @@ Internet poveznica: [url]',
|
||||||
'no_default_keywords' => 'Nema dostupnih ključnih riječi',
|
'no_default_keywords' => 'Nema dostupnih ključnih riječi',
|
||||||
'no_docs_checked_out' => 'Niti jedan dokument nije odjavljen',
|
'no_docs_checked_out' => 'Niti jedan dokument nije odjavljen',
|
||||||
'no_docs_locked' => 'Nema zaključanih dokumenata.',
|
'no_docs_locked' => 'Nema zaključanih dokumenata.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Trenutno nema dokumenata koji zahtjevaju odobrenje.',
|
'no_docs_to_approve' => 'Trenutno nema dokumenata koji zahtjevaju odobrenje.',
|
||||||
'no_docs_to_look_at' => 'Nema dokumenata na koje treba obratiti pozornost.',
|
'no_docs_to_look_at' => 'Nema dokumenata na koje treba obratiti pozornost.',
|
||||||
'no_docs_to_receipt' => 'Nema potvrda o primitku dokumenta',
|
'no_docs_to_receipt' => 'Nema potvrda o primitku dokumenta',
|
||||||
|
@ -889,6 +906,7 @@ Internet poveznica: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Tok rada je vraćen na početak',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Tok rada je vraćen na početak',
|
||||||
'rewind_workflow_warning' => 'Ako vratite tok radan u njegovo početno, prijašnji zapisi o tijeku rada za ovaj dokument bit će izbrisani i ne mogu se vratiti.',
|
'rewind_workflow_warning' => 'Ako vratite tok radan u njegovo početno, prijašnji zapisi o tijeku rada za ovaj dokument bit će izbrisani i ne mogu se vratiti.',
|
||||||
'rm_attrdef' => 'Uklonite definiciju atributa',
|
'rm_attrdef' => 'Uklonite definiciju atributa',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Uklonite kategoriju',
|
'rm_default_keyword_category' => 'Uklonite kategoriju',
|
||||||
'rm_document' => 'Ukloni dokument',
|
'rm_document' => 'Ukloni dokument',
|
||||||
'rm_document_category' => 'Uklonite kategoriju',
|
'rm_document_category' => 'Uklonite kategoriju',
|
||||||
|
@ -946,6 +964,7 @@ Internet poveznica: [url]',
|
||||||
'search_time' => 'Proteklo vrijeme: [time] sek.',
|
'search_time' => 'Proteklo vrijeme: [time] sek.',
|
||||||
'seconds' => 'sekunde',
|
'seconds' => 'sekunde',
|
||||||
'selection' => 'Odabir',
|
'selection' => 'Odabir',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Kliknite za odabir kategorije',
|
'select_category' => 'Kliknite za odabir kategorije',
|
||||||
'select_groups' => 'Kliknite za odabir grupa',
|
'select_groups' => 'Kliknite za odabir grupa',
|
||||||
'select_grp_approvers' => 'Kliknite za odabir validatora grupe',
|
'select_grp_approvers' => 'Kliknite za odabir validatora grupe',
|
||||||
|
@ -1035,6 +1054,8 @@ Internet poveznica: [url]',
|
||||||
'settings_Edition' => 'Postavke izdanja',
|
'settings_Edition' => 'Postavke izdanja',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => 'Omogućavanje potvrđivanja prijema dokumenta',
|
'settings_enableAcknowledgeWorkflow' => 'Omogućavanje potvrđivanja prijema dokumenta',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => 'Omogućite kako bi omogućili tok rada za potvrđivajne prijema dokumenta.',
|
'settings_enableAcknowledgeWorkflow_desc' => 'Omogućite kako bi omogućili tok rada za potvrđivajne prijema dokumenta.',
|
||||||
'settings_enableAdminRevApp' => 'Dopusti pregled/ovjeru za administratore',
|
'settings_enableAdminRevApp' => 'Dopusti pregled/ovjeru za administratore',
|
||||||
|
@ -1143,11 +1164,13 @@ Internet poveznica: [url]',
|
||||||
'settings_luceneDir' => 'Mapa za indeksiranje cijelog teksta',
|
'settings_luceneDir' => 'Mapa za indeksiranje cijelog teksta',
|
||||||
'settings_luceneDir_desc' => 'Putanja to Lucene indeksa',
|
'settings_luceneDir_desc' => 'Putanja to Lucene indeksa',
|
||||||
'settings_maxDirID' => 'Max Directory ID',
|
'settings_maxDirID' => 'Max Directory ID',
|
||||||
'settings_maxDirID_desc' => 'Maksimalni broj podmapa po nadređenoj mapi. Zadano: 32700.',
|
'settings_maxDirID_desc' => 'Maksimalni broj podmapa po nadređenoj mapi. Zadano: 0.',
|
||||||
'settings_maxExecutionTime' => 'Max. vrijeme izvršenja (s)',
|
'settings_maxExecutionTime' => 'Max. vrijeme izvršenja (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Ovo postavlja maksimalno vrijeme u sekundama u kojem je skripti dopušteno da se pokrene prije nego se prekine rasčlanjivanjem',
|
'settings_maxExecutionTime_desc' => 'Ovo postavlja maksimalno vrijeme u sekundama u kojem je skripti dopušteno da se pokrene prije nego se prekine rasčlanjivanjem',
|
||||||
'settings_maxRecursiveCount' => 'Max. broj rekurzivnog dokumenta/mape',
|
'settings_maxRecursiveCount' => 'Max. broj rekurzivnog dokumenta/mape',
|
||||||
'settings_maxRecursiveCount_desc' => 'To je maksimalni broj dokumenata ili mapa koji će biti označen pristupnim pravima, pri rekurzivnom brojanju objekata. Ako se taj broj premaši, broj dokumenata i mapa u pregledu mape će biti procjenjen.',
|
'settings_maxRecursiveCount_desc' => 'To je maksimalni broj dokumenata ili mapa koji će biti označen pristupnim pravima, pri rekurzivnom brojanju objekata. Ako se taj broj premaši, broj dokumenata i mapa u pregledu mape će biti procjenjen.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Konfiguriraj više postavki. Zadana prijava: admin/admin',
|
'settings_more_settings' => 'Konfiguriraj više postavki. Zadana prijava: admin/admin',
|
||||||
'settings_notfound' => 'Nije pronađeno',
|
'settings_notfound' => 'Nije pronađeno',
|
||||||
'settings_Notification' => 'Postavke bilježenja',
|
'settings_Notification' => 'Postavke bilježenja',
|
||||||
|
@ -1269,6 +1292,7 @@ Internet poveznica: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Dodan novi korisnik',
|
'splash_add_user' => 'Dodan novi korisnik',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Očišćen međuspremnik',
|
'splash_cleared_clipboard' => 'Očišćen međuspremnik',
|
||||||
'splash_document_added' => 'Dokument dodan',
|
'splash_document_added' => 'Dokument dodan',
|
||||||
'splash_document_checkedout' => 'Dokument odjavljen',
|
'splash_document_checkedout' => 'Dokument odjavljen',
|
||||||
|
@ -1322,6 +1346,7 @@ Internet poveznica: [url]',
|
||||||
'status_revisor_removed' => 'Revizor uklonjen s liste',
|
'status_revisor_removed' => 'Revizor uklonjen s liste',
|
||||||
'status_unknown' => 'Nepoznato',
|
'status_unknown' => 'Nepoznato',
|
||||||
'storage_size' => 'Veličina pohrane',
|
'storage_size' => 'Veličina pohrane',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Pošaljite odobrenje',
|
'submit_approval' => 'Pošaljite odobrenje',
|
||||||
'submit_login' => 'PRIJAVI SE',
|
'submit_login' => 'PRIJAVI SE',
|
||||||
'submit_password' => 'Postavite novu lozinku',
|
'submit_password' => 'Postavite novu lozinku',
|
||||||
|
@ -1367,6 +1392,7 @@ Internet poveznica: [url]',
|
||||||
'timeline_status_change' => 'Verzija [version]: [status]',
|
'timeline_status_change' => 'Verzija [version]: [status]',
|
||||||
'to' => 'Do',
|
'to' => 'Do',
|
||||||
'toggle_manager' => 'Zamjeni upravitelja',
|
'toggle_manager' => 'Zamjeni upravitelja',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'Datum završetka ne može biti prije datuma početka',
|
'to_before_from' => 'Datum završetka ne može biti prije datuma početka',
|
||||||
'transition_triggered_email' => 'Zatražena promjena toka rada',
|
'transition_triggered_email' => 'Zatražena promjena toka rada',
|
||||||
'transition_triggered_email_body' => 'Zatražena promjena toka rada
|
'transition_triggered_email_body' => 'Zatražena promjena toka rada
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (587), ribaz (1023)
|
// Translators: Admin (588), ribaz (1023)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Elfogad',
|
'accept' => 'Elfogad',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Felülvizsgálat',
|
'action_revise' => 'Felülvizsgálat',
|
||||||
'add' => 'Hozzáad',
|
'add' => 'Hozzáad',
|
||||||
'add_approval' => 'Jóváhagyás küldése',
|
'add_approval' => 'Jóváhagyás küldése',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Dokumentum hozzáadása',
|
'add_document' => 'Dokumentum hozzáadása',
|
||||||
'add_document_link' => 'Hivatkozás hozzáadása',
|
'add_document_link' => 'Hivatkozás hozzáadása',
|
||||||
'add_document_notify' => 'Hozzárendelés értesítés',
|
'add_document_notify' => 'Hozzárendelés értesítés',
|
||||||
|
@ -122,6 +126,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Felülvizsgálók hozzárendelése',
|
'assign_reviewers' => 'Felülvizsgálók hozzárendelése',
|
||||||
'assign_user_property_to' => 'Felhasználói tulajdonságok hozzárendelése',
|
'assign_user_property_to' => 'Felhasználói tulajdonságok hozzárendelése',
|
||||||
'assumed_released' => 'Feltételesen kiadott',
|
'assumed_released' => 'Feltételesen kiadott',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Jellemző meghatározás már létezik',
|
'attrdef_exists' => 'Jellemző meghatározás már létezik',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'Jellemző meghatározás még használatban van',
|
'attrdef_in_use' => 'Jellemző meghatározás még használatban van',
|
||||||
|
@ -216,6 +225,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => 'Kérem válasszon jellemző meghatározást',
|
'choose_attrdef' => 'Kérem válasszon jellemző meghatározást',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Kérjük válasszon',
|
'choose_category' => 'Kérjük válasszon',
|
||||||
'choose_group' => 'Válasszon csoportot',
|
'choose_group' => 'Válasszon csoportot',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -388,8 +398,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Dokumentum szerkesztése',
|
'edit_document_props' => 'Dokumentum szerkesztése',
|
||||||
'edit_event' => 'Esemény szerkesztése',
|
'edit_event' => 'Esemény szerkesztése',
|
||||||
'edit_existing_access' => 'Hozzáférési lista szerkesztése',
|
'edit_existing_access' => 'Hozzáférési lista szerkesztése',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Értesítési lista szerkesztése',
|
'edit_existing_notify' => 'Értesítési lista szerkesztése',
|
||||||
'edit_folder_access' => 'Hozzáférés szerkesztése',
|
'edit_folder_access' => 'Hozzáférés szerkesztése',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Mappa értesítési lista',
|
'edit_folder_notify' => 'Mappa értesítési lista',
|
||||||
'edit_folder_props' => 'Mappa szerkesztése',
|
'edit_folder_props' => 'Mappa szerkesztése',
|
||||||
'edit_group' => 'Csoport szerkesztése',
|
'edit_group' => 'Csoport szerkesztése',
|
||||||
|
@ -403,6 +415,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Bármikor módosíthatja email beállításait a \'My Account\' funkcióval',
|
'email_footer' => 'Bármikor módosíthatja email beállításait a \'My Account\' funkcióval',
|
||||||
'email_header' => 'Ez egy automatikus üzenet a DMS kiszolgálótól.',
|
'email_header' => 'Ez egy automatikus üzenet a DMS kiszolgálótól.',
|
||||||
'email_not_given' => 'Kérem adjon meg egy érvényes email címet.',
|
'email_not_given' => 'Kérem adjon meg egy érvényes email címet.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Mappa vagy dokumentum nem található',
|
'empty_folder_list' => 'Mappa vagy dokumentum nem található',
|
||||||
'empty_notify_list' => 'Nincsenek bejegyzések',
|
'empty_notify_list' => 'Nincsenek bejegyzések',
|
||||||
'en_GB' => 'Angol (GB)',
|
'en_GB' => 'Angol (GB)',
|
||||||
|
@ -410,6 +423,7 @@ URL: [url]',
|
||||||
'error' => 'Hiba',
|
'error' => 'Hiba',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Nincs kijelölt dokumentum',
|
'error_no_document_selected' => 'Nincs kijelölt dokumentum',
|
||||||
'error_no_folder_selected' => 'Nincs kijelölt mappa',
|
'error_no_folder_selected' => 'Nincs kijelölt mappa',
|
||||||
|
@ -484,6 +498,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Keresés a teljes szövegben',
|
'fullsearch' => 'Keresés a teljes szövegben',
|
||||||
'fullsearch_hint' => 'Használja a teljes szöveg indexet',
|
'fullsearch_hint' => 'Használja a teljes szöveg indexet',
|
||||||
'fulltext_info' => 'Teljes szöveg index információ',
|
'fulltext_info' => 'Teljes szöveg index információ',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Jellemzők',
|
'global_attributedefinitions' => 'Jellemzők',
|
||||||
'global_default_keywords' => 'Globális kulcsszavak',
|
'global_default_keywords' => 'Globális kulcsszavak',
|
||||||
'global_document_categories' => 'Kategóriák',
|
'global_document_categories' => 'Kategóriák',
|
||||||
|
@ -636,6 +651,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'Név',
|
'name' => 'Név',
|
||||||
'needs_workflow_action' => 'Ez a dokumentum az Ön beavatkozására vár. Ellenőrizze a munkafolyamat fület.',
|
'needs_workflow_action' => 'Ez a dokumentum az Ön beavatkozására vár. Ellenőrizze a munkafolyamat fület.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => 'soha',
|
'never' => 'soha',
|
||||||
'new' => 'Új',
|
'new' => 'Új',
|
||||||
'new_attrdef' => 'Jellemző meghatározás hozzáadása',
|
'new_attrdef' => 'Jellemző meghatározás hozzáadása',
|
||||||
|
@ -696,6 +712,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Nincsenek elérhető kulcsszavak',
|
'no_default_keywords' => 'Nincsenek elérhető kulcsszavak',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'Nincsenek zárolt dokumentumok.',
|
'no_docs_locked' => 'Nincsenek zárolt dokumentumok.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Nincsenek jóváhagyandó dokumentumok.',
|
'no_docs_to_approve' => 'Nincsenek jóváhagyandó dokumentumok.',
|
||||||
'no_docs_to_look_at' => 'Nincs karbantartást igénylő dokumentum.',
|
'no_docs_to_look_at' => 'Nincs karbantartást igénylő dokumentum.',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -868,6 +885,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Munkafolyamat visszajátszva',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Munkafolyamat visszajátszva',
|
||||||
'rewind_workflow_warning' => 'Ha visszajátssza a munkafolyamatot a kezdeti állapotába, akkor a teljes munkafolyamat napló törlésre kerül és többé nem lehet helyreállítani.',
|
'rewind_workflow_warning' => 'Ha visszajátssza a munkafolyamatot a kezdeti állapotába, akkor a teljes munkafolyamat napló törlésre kerül és többé nem lehet helyreállítani.',
|
||||||
'rm_attrdef' => 'Jellemző meghatározás eltávolítása',
|
'rm_attrdef' => 'Jellemző meghatározás eltávolítása',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Kategória eltávolítása',
|
'rm_default_keyword_category' => 'Kategória eltávolítása',
|
||||||
'rm_document' => 'Dokumentum eltávolítása',
|
'rm_document' => 'Dokumentum eltávolítása',
|
||||||
'rm_document_category' => 'Kategória eltávolítása',
|
'rm_document_category' => 'Kategória eltávolítása',
|
||||||
|
@ -924,6 +942,7 @@ URL: [url]',
|
||||||
'search_time' => 'Felhasznßlt id: [time] mßsodperc.',
|
'search_time' => 'Felhasznßlt id: [time] mßsodperc.',
|
||||||
'seconds' => 'másodperc',
|
'seconds' => 'másodperc',
|
||||||
'selection' => 'Selection',
|
'selection' => 'Selection',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Kattintson a kategória kiválasztásához',
|
'select_category' => 'Kattintson a kategória kiválasztásához',
|
||||||
'select_groups' => 'Kattintson a csoportok kijelöléséhez',
|
'select_groups' => 'Kattintson a csoportok kijelöléséhez',
|
||||||
'select_grp_approvers' => 'Kattintson a csoport jóváhagyó kijelöléséhez',
|
'select_grp_approvers' => 'Kattintson a csoport jóváhagyó kijelöléséhez',
|
||||||
|
@ -1013,6 +1032,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Kiadás beállítások',
|
'settings_Edition' => 'Kiadás beállítások',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => 'Engedélyezi a felülvizsgálatot/jóváhagyást az adminisztrátorok számára',
|
'settings_enableAdminRevApp' => 'Engedélyezi a felülvizsgálatot/jóváhagyást az adminisztrátorok számára',
|
||||||
|
@ -1121,11 +1142,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Teljes szöveg index könyvtára',
|
'settings_luceneDir' => 'Teljes szöveg index könyvtára',
|
||||||
'settings_luceneDir_desc' => 'Lucene index elérési útvonal',
|
'settings_luceneDir_desc' => 'Lucene index elérési útvonal',
|
||||||
'settings_maxDirID' => 'Legnagyobb könyvtár azonosító',
|
'settings_maxDirID' => 'Legnagyobb könyvtár azonosító',
|
||||||
'settings_maxDirID_desc' => 'Szülő könyvtárban lévő alkönyvtárak maximális mennyisége, Alapérték: 32700.',
|
'settings_maxDirID_desc' => 'Szülő könyvtárban lévő alkönyvtárak maximális mennyisége, Alapérték: 0.',
|
||||||
'settings_maxExecutionTime' => 'Maximális végrehajtási idő (s)',
|
'settings_maxExecutionTime' => 'Maximális végrehajtási idő (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Beállítja a szkript maximális engedélyezett futási idejét másodpercben mielőtt megszakítja az értelmező',
|
'settings_maxExecutionTime_desc' => 'Beállítja a szkript maximális engedélyezett futási idejét másodpercben mielőtt megszakítja az értelmező',
|
||||||
'settings_maxRecursiveCount' => 'Rekurzív dokumentum/mappa számláló legnagyobb értéke',
|
'settings_maxRecursiveCount' => 'Rekurzív dokumentum/mappa számláló legnagyobb értéke',
|
||||||
'settings_maxRecursiveCount_desc' => 'A dokumentumok és mappák maximális mennyisége amelyeken ellenőrizni fogják a hozzáférési jogokat, ha rekurzívan számláló tárgyakat. Ha ezt az értéket túllépik, a dokumentumok számát és mappák a Mappa nézetben is becsülhetők.',
|
'settings_maxRecursiveCount_desc' => 'A dokumentumok és mappák maximális mennyisége amelyeken ellenőrizni fogják a hozzáférési jogokat, ha rekurzívan számláló tárgyakat. Ha ezt az értéket túllépik, a dokumentumok számát és mappák a Mappa nézetben is becsülhetők.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'További beállítások konfigurálása. Alapértelmezett bejelentkezés: admin/admin',
|
'settings_more_settings' => 'További beállítások konfigurálása. Alapértelmezett bejelentkezés: admin/admin',
|
||||||
'settings_notfound' => 'Nem található',
|
'settings_notfound' => 'Nem található',
|
||||||
'settings_Notification' => 'Értesítés beállításai',
|
'settings_Notification' => 'Értesítés beállításai',
|
||||||
|
@ -1247,6 +1270,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Új felhasználó hozzáadva',
|
'splash_add_user' => 'Új felhasználó hozzáadva',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Vágólap törölve',
|
'splash_cleared_clipboard' => 'Vágólap törölve',
|
||||||
'splash_document_added' => '',
|
'splash_document_added' => '',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1300,6 +1324,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Ismeretlen',
|
'status_unknown' => 'Ismeretlen',
|
||||||
'storage_size' => 'Tároló mérete',
|
'storage_size' => 'Tároló mérete',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Jóváhagyás küldése',
|
'submit_approval' => 'Jóváhagyás küldése',
|
||||||
'submit_login' => 'Bejelentkezés',
|
'submit_login' => 'Bejelentkezés',
|
||||||
'submit_password' => 'Új jelszó megadása',
|
'submit_password' => 'Új jelszó megadása',
|
||||||
|
@ -1345,6 +1370,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => '[version]: [status] Verzio',
|
'timeline_status_change' => '[version]: [status] Verzio',
|
||||||
'to' => 'ig',
|
'to' => 'ig',
|
||||||
'toggle_manager' => 'Kulcs kezelő',
|
'toggle_manager' => 'Kulcs kezelő',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'A lejárati dátum nem előzheti meg a kezdési dátumot',
|
'to_before_from' => 'A lejárati dátum nem előzheti meg a kezdési dátumot',
|
||||||
'transition_triggered_email' => 'Munkamenet átmenet kiváltva',
|
'transition_triggered_email' => 'Munkamenet átmenet kiváltva',
|
||||||
'transition_triggered_email_body' => 'Munkafolyamat átmenet kiváltva
|
'transition_triggered_email_body' => 'Munkafolyamat átmenet kiváltva
|
||||||
|
|
|
@ -19,12 +19,15 @@
|
||||||
// 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 (1527), s.pnt (26)
|
// Translators: Admin (1530), rickr (144), s.pnt (26)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => 'Autorizzazione a due fattori',
|
||||||
|
'2_factor_auth_info' => 'Questo sistema usa autenticazione a due fattori. Sarà necessario il “Google Authenticator” sul tuo telephono cellulare. Qui potete vedere due codici QR. Quello di destra è il tuo segreto. è sulla sinistra chè un nuovo segreto. Se si imposta un nuovo segreto per assicurarsi si deve scansione con “Google Authenticator” di nouvo.',
|
||||||
|
'2_fact_auth_secret' => 'Segreto',
|
||||||
'accept' => 'Accetta',
|
'accept' => 'Accetta',
|
||||||
'access_control' => '',
|
'access_control' => 'Il controllo degli accessi',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => 'Controlo avanzate è spento',
|
||||||
'access_denied' => 'Accesso negato',
|
'access_denied' => 'Accesso negato',
|
||||||
'access_inheritance' => 'Permessi ereditari',
|
'access_inheritance' => 'Permessi ereditari',
|
||||||
'access_mode' => 'Permessi',
|
'access_mode' => 'Permessi',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Revisiona',
|
'action_revise' => 'Revisiona',
|
||||||
'add' => 'Aggiungi',
|
'add' => 'Aggiungi',
|
||||||
'add_approval' => 'Invio approvazione',
|
'add_approval' => 'Invio approvazione',
|
||||||
|
'add_attrdefgroup' => 'Aggiungi nuovo gruppo attributo',
|
||||||
'add_document' => 'Aggiungi documento',
|
'add_document' => 'Aggiungi documento',
|
||||||
'add_document_link' => 'Aggiungi collegamento',
|
'add_document_link' => 'Aggiungi collegamento',
|
||||||
'add_document_notify' => 'Notifica a',
|
'add_document_notify' => 'Notifica a',
|
||||||
|
@ -64,7 +68,7 @@ URL: [url]',
|
||||||
'add_receipt' => 'invio ricevuta',
|
'add_receipt' => 'invio ricevuta',
|
||||||
'add_review' => 'Invio revisione',
|
'add_review' => 'Invio revisione',
|
||||||
'add_revision' => 'Aggiungi approvazione',
|
'add_revision' => 'Aggiungi approvazione',
|
||||||
'add_role' => '',
|
'add_role' => 'Aggiungi nuova responsabilità',
|
||||||
'add_subfolder' => 'Aggiungi sottocartella',
|
'add_subfolder' => 'Aggiungi sottocartella',
|
||||||
'add_to_clipboard' => 'Aggiungi agli appunti',
|
'add_to_clipboard' => 'Aggiungi agli appunti',
|
||||||
'add_to_transmittal' => 'Aggiungi alla trasmissione',
|
'add_to_transmittal' => 'Aggiungi alla trasmissione',
|
||||||
|
@ -127,15 +131,20 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Assegna Revisori',
|
'assign_reviewers' => 'Assegna Revisori',
|
||||||
'assign_user_property_to' => 'Assegna le proprietà dell\'utente a',
|
'assign_user_property_to' => 'Assegna le proprietà dell\'utente a',
|
||||||
'assumed_released' => 'Rilascio acquisito',
|
'assumed_released' => 'Rilascio acquisito',
|
||||||
|
'attrdefgroup_management' => 'Gestire gruppi di attributi',
|
||||||
|
'attrdefgrp_show_detail' => 'Dettagli',
|
||||||
|
'attrdefgrp_show_list' => 'Lista',
|
||||||
|
'attrdefgrp_show_search' => 'Trova',
|
||||||
|
'attrdefgrp_show_searchlist' => 'risultati trovati',
|
||||||
'attrdef_exists' => 'Definizione di Attributo già esistente',
|
'attrdef_exists' => 'Definizione di Attributo già esistente',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => 'Informazione',
|
||||||
'attrdef_in_use' => 'Definizione di Attributo ancora in uso',
|
'attrdef_in_use' => 'Definizione di Attributo ancora in uso',
|
||||||
'attrdef_management' => 'Gestione Attributi',
|
'attrdef_management' => 'Gestione Attributi',
|
||||||
'attrdef_maxvalues' => 'Numero di valori Max.',
|
'attrdef_maxvalues' => 'Numero di valori Max.',
|
||||||
'attrdef_minvalues' => 'Numero di valori Min.',
|
'attrdef_minvalues' => 'Numero di valori Min.',
|
||||||
'attrdef_min_greater_max' => 'Il numero minimo di valori è maggiore del massimo',
|
'attrdef_min_greater_max' => 'Il numero minimo di valori è maggiore del massimo',
|
||||||
'attrdef_multiple' => 'Permetti valori multipli',
|
'attrdef_multiple' => 'Permetti valori multipli',
|
||||||
'attrdef_multiple_needs_valueset' => '',
|
'attrdef_multiple_needs_valueset' => 'Attributo definizione con i molteplici valori esigenze un valore impostato.',
|
||||||
'attrdef_must_be_multiple' => 'Gli Attributi devono avere più di un valore, ma non sono permessi valori multipli',
|
'attrdef_must_be_multiple' => 'Gli Attributi devono avere più di un valore, ma non sono permessi valori multipli',
|
||||||
'attrdef_name' => 'Nome',
|
'attrdef_name' => 'Nome',
|
||||||
'attrdef_noname' => 'Nella definizione dell\'Attributo manca il nome',
|
'attrdef_noname' => 'Nella definizione dell\'Attributo manca il nome',
|
||||||
|
@ -163,7 +172,7 @@ URL: [url]',
|
||||||
'attribute_value' => 'Valore dell\'Attributo',
|
'attribute_value' => 'Valore dell\'Attributo',
|
||||||
'attr_malformed_email' => 'Il valore di \'[value]\' dell,
|
'attr_malformed_email' => 'Il valore di \'[value]\' dell,
|
||||||
=> attributo \'[attrname]\' non é un URL valido.',
|
=> attributo \'[attrname]\' non é un URL valido.',
|
||||||
'attr_malformed_url' => '',
|
'attr_malformed_url' => 'Il valore dell\'attributo \'[valore]\' di attributo \'[attrname]\' non è un URL valido.',
|
||||||
'attr_max_values' => 'Il numero massimo dei valori richiesti per l\'Attributo [attrname] è superato.',
|
'attr_max_values' => 'Il numero massimo dei valori richiesti per l\'Attributo [attrname] è superato.',
|
||||||
'attr_min_values' => 'Il numero minimo di valori richiesti per l\'Attributo [attrname] non è raggiunto.',
|
'attr_min_values' => 'Il numero minimo di valori richiesti per l\'Attributo [attrname] non è raggiunto.',
|
||||||
'attr_no_regex_match' => 'Il valore dell\'Attributo non è conforme ad un\'espressione regolare.',
|
'attr_no_regex_match' => 'Il valore dell\'Attributo non è conforme ad un\'espressione regolare.',
|
||||||
|
@ -192,11 +201,11 @@ URL: [url]',
|
||||||
'cannot_retrieve_review_snapshot' => 'Impossibile recuperare lo stato di revisione per questa versione del documento',
|
'cannot_retrieve_review_snapshot' => 'Impossibile recuperare lo stato di revisione per questa versione del documento',
|
||||||
'cannot_rm_root' => 'Impossibile cancellare la cartella principale (root)',
|
'cannot_rm_root' => 'Impossibile cancellare la cartella principale (root)',
|
||||||
'categories' => 'Categorie',
|
'categories' => 'Categorie',
|
||||||
'categories_loading' => '',
|
'categories_loading' => 'Si prega di aspettare, fino a quando viene caricato elenco delle categorie ...',
|
||||||
'category' => 'Categoria',
|
'category' => 'Categoria',
|
||||||
'category_exists' => 'Categoria esistente.',
|
'category_exists' => 'Categoria esistente.',
|
||||||
'category_filter' => 'Solo categorie',
|
'category_filter' => 'Solo categorie',
|
||||||
'category_info' => '',
|
'category_info' => 'Informazione',
|
||||||
'category_in_use' => 'Questa categoria è attualmente in uso in alcuni documenti.',
|
'category_in_use' => 'Questa categoria è attualmente in uso in alcuni documenti.',
|
||||||
'category_noname' => 'Non è stato attribuito un nome alla categoria.',
|
'category_noname' => 'Non è stato attribuito un nome alla categoria.',
|
||||||
'ca_ES' => 'Catalano',
|
'ca_ES' => 'Catalano',
|
||||||
|
@ -222,9 +231,10 @@ URL: [url]',
|
||||||
'checkout_document' => 'Approvato',
|
'checkout_document' => 'Approvato',
|
||||||
'checkout_is_disabled' => 'Approvazione dei documenti disabilitata',
|
'checkout_is_disabled' => 'Approvazione dei documenti disabilitata',
|
||||||
'choose_attrdef' => 'Seleziona l\'Attributo',
|
'choose_attrdef' => 'Seleziona l\'Attributo',
|
||||||
|
'choose_attrdefgroup' => 'Scegli gruppo di attributi',
|
||||||
'choose_category' => 'Seleziona',
|
'choose_category' => 'Seleziona',
|
||||||
'choose_group' => 'Seleziona il gruppo',
|
'choose_group' => 'Seleziona il gruppo',
|
||||||
'choose_role' => '',
|
'choose_role' => '--Scegli ruolo--',
|
||||||
'choose_target_category' => 'Seleziona la categoria',
|
'choose_target_category' => 'Seleziona la categoria',
|
||||||
'choose_target_document' => 'Seleziona il documento',
|
'choose_target_document' => 'Seleziona il documento',
|
||||||
'choose_target_file' => 'Scegli il file',
|
'choose_target_file' => 'Scegli il file',
|
||||||
|
@ -233,19 +243,19 @@ URL: [url]',
|
||||||
'choose_workflow' => 'Seleziona il flusso di lavoro',
|
'choose_workflow' => 'Seleziona il flusso di lavoro',
|
||||||
'choose_workflow_action' => 'Seleziona l\'azione del flusso di lavoro',
|
'choose_workflow_action' => 'Seleziona l\'azione del flusso di lavoro',
|
||||||
'choose_workflow_state' => 'Seleziona lo stato del flusso di lavoro',
|
'choose_workflow_state' => 'Seleziona lo stato del flusso di lavoro',
|
||||||
'class_name' => '',
|
'class_name' => 'Nome della classe',
|
||||||
'clear_cache' => 'Pulisci cache',
|
'clear_cache' => 'Pulisci cache',
|
||||||
'clear_clipboard' => 'Cancella appunti',
|
'clear_clipboard' => 'Cancella appunti',
|
||||||
'clear_password' => '',
|
'clear_password' => 'Cancella la password',
|
||||||
'clipboard' => 'Appunti',
|
'clipboard' => 'Appunti',
|
||||||
'close' => 'Chiudi',
|
'close' => 'Chiudi',
|
||||||
'comment' => 'Commento',
|
'comment' => 'Commento',
|
||||||
'comment_changed_email' => '',
|
'comment_changed_email' => '',
|
||||||
'comment_for_current_version' => 'Commento per la versione',
|
'comment_for_current_version' => 'Commento per la versione',
|
||||||
'confirm_clear_cache' => '',
|
'confirm_clear_cache' => 'Vuoi davvero cancellare la cache? Questo eliminerà tutte le immagini di anteprima precalcolate.',
|
||||||
'confirm_create_fulltext_index' => 'Sì, desidero ricreare l\'indice fulltext!',
|
'confirm_create_fulltext_index' => 'Sì, desidero ricreare l\'indice fulltext!',
|
||||||
'confirm_move_document' => '',
|
'confirm_move_document' => 'Conferma lo spostamento del documento.',
|
||||||
'confirm_move_folder' => '',
|
'confirm_move_folder' => 'Si prega di confermare lo spostamento della cartella.',
|
||||||
'confirm_pwd' => 'Conferma la password',
|
'confirm_pwd' => 'Conferma la password',
|
||||||
'confirm_rm_backup' => 'Vuoi davvero rimuovere il file "[arkname]"? Attenzione: questa operazione non può essere annullata.',
|
'confirm_rm_backup' => 'Vuoi davvero rimuovere il file "[arkname]"? Attenzione: questa operazione non può essere annullata.',
|
||||||
'confirm_rm_document' => 'Vuoi veramente eliminare il documento "[documentname]"? Attenzione: questa operazione non può essere annullata.',
|
'confirm_rm_document' => 'Vuoi veramente eliminare il documento "[documentname]"? Attenzione: questa operazione non può essere annullata.',
|
||||||
|
@ -256,7 +266,7 @@ URL: [url]',
|
||||||
'confirm_rm_folder_files' => 'Vuoi davvero rimuovere tutti i file dalla cartella "[foldername]" e dalle sue sottocartelle? Attenzione: questa operazione non può essere annullata.',
|
'confirm_rm_folder_files' => 'Vuoi davvero rimuovere tutti i file dalla cartella "[foldername]" e dalle sue sottocartelle? Attenzione: questa operazione non può essere annullata.',
|
||||||
'confirm_rm_group' => 'Vuoi davvero rimuovere il gruppo "[groupname]"? Attenzione: questa operazione non può essere annullata.',
|
'confirm_rm_group' => 'Vuoi davvero rimuovere il gruppo "[groupname]"? Attenzione: questa operazione non può essere annullata.',
|
||||||
'confirm_rm_log' => 'Vuoi davvero rimuovere il file di log "[logname]"?<br>Attenzione: questa operazione non può essere annullata.',
|
'confirm_rm_log' => 'Vuoi davvero rimuovere il file di log "[logname]"?<br>Attenzione: questa operazione non può essere annullata.',
|
||||||
'confirm_rm_transmittal' => '',
|
'confirm_rm_transmittal' => 'Si prega di confermare l\'eliminazione della trasmissione.',
|
||||||
'confirm_rm_transmittalitem' => 'Conferma rimozione',
|
'confirm_rm_transmittalitem' => 'Conferma rimozione',
|
||||||
'confirm_rm_user' => 'Vuoi davvero rimuovere l\'utente "[username]"? Attenzione: questa operazione non può essere annullata.',
|
'confirm_rm_user' => 'Vuoi davvero rimuovere l\'utente "[username]"? Attenzione: questa operazione non può essere annullata.',
|
||||||
'confirm_rm_version' => 'Vuoi veramente eliminare la versione [version] del documento "[documentname]"? Attenzione: questa operazione non può essere annullata.',
|
'confirm_rm_version' => 'Vuoi veramente eliminare la versione [version] del documento "[documentname]"? Attenzione: questa operazione non può essere annullata.',
|
||||||
|
@ -278,7 +288,7 @@ URL: [url]',
|
||||||
'databasesearch' => 'Ricerca nel Database',
|
'databasesearch' => 'Ricerca nel Database',
|
||||||
'date' => 'Data',
|
'date' => 'Data',
|
||||||
'days' => 'Giorni',
|
'days' => 'Giorni',
|
||||||
'debug' => '',
|
'debug' => 'Localizzare e rimuovere errori da (Debug)',
|
||||||
'december' => 'Dicembre',
|
'december' => 'Dicembre',
|
||||||
'default_access' => 'Permesso di default',
|
'default_access' => 'Permesso di default',
|
||||||
'default_keywords' => 'Parole-chiave disponibili',
|
'default_keywords' => 'Parole-chiave disponibili',
|
||||||
|
@ -293,15 +303,15 @@ URL: [url]',
|
||||||
'documents' => 'Documenti',
|
'documents' => 'Documenti',
|
||||||
'documents_checked_out_by_you' => 'Documenti approvati da te',
|
'documents_checked_out_by_you' => 'Documenti approvati da te',
|
||||||
'documents_in_process' => 'Documenti in lavorazione',
|
'documents_in_process' => 'Documenti in lavorazione',
|
||||||
'documents_locked' => '',
|
'documents_locked' => 'Documenti bloccati',
|
||||||
'documents_locked_by_you' => 'Documenti bloccati da te',
|
'documents_locked_by_you' => 'Documenti bloccati da te',
|
||||||
'documents_only' => 'Solo documenti',
|
'documents_only' => 'Solo documenti',
|
||||||
'documents_to_approve' => 'Documenti in attesa della tua approvazione',
|
'documents_to_approve' => 'Documenti in attesa della tua approvazione',
|
||||||
'documents_to_process' => '',
|
'documents_to_process' => 'I documenti che necessitano di trattamento',
|
||||||
'documents_to_receipt' => 'Documenti in attesa di conferma ricezione',
|
'documents_to_receipt' => 'Documenti in attesa di conferma ricezione',
|
||||||
'documents_to_review' => 'Documenti in attesa della tua revisione',
|
'documents_to_review' => 'Documenti in attesa della tua revisione',
|
||||||
'documents_to_revise' => 'Documenti da revisionare.',
|
'documents_to_revise' => 'Documenti da revisionare.',
|
||||||
'documents_user_rejected' => '',
|
'documents_user_rejected' => 'Documenti rifiutati',
|
||||||
'documents_user_requiring_attention' => 'Tuoi documenti in attesa di revisione o approvazione',
|
'documents_user_requiring_attention' => 'Tuoi documenti in attesa di revisione o approvazione',
|
||||||
'document_already_checkedout' => 'Questo documento è già approvato',
|
'document_already_checkedout' => 'Questo documento è già approvato',
|
||||||
'document_already_locked' => 'Questo documento è già bloccato',
|
'document_already_locked' => 'Questo documento è già bloccato',
|
||||||
|
@ -314,7 +324,7 @@ Cartella: [folder_path]
|
||||||
Utente: [username]
|
Utente: [username]
|
||||||
URL: [url]',
|
URL: [url]',
|
||||||
'document_comment_changed_email_subject' => '[sitename]: [name] - Commento modificato',
|
'document_comment_changed_email_subject' => '[sitename]: [name] - Commento modificato',
|
||||||
'document_count' => '',
|
'document_count' => 'Numero di documenti',
|
||||||
'document_deleted' => 'Documento cancellato',
|
'document_deleted' => 'Documento cancellato',
|
||||||
'document_deleted_email' => 'Documento cancellato',
|
'document_deleted_email' => 'Documento cancellato',
|
||||||
'document_deleted_email_body' => 'Cancellazione documento
|
'document_deleted_email_body' => 'Cancellazione documento
|
||||||
|
@ -375,9 +385,9 @@ URL: [url]',
|
||||||
'draft_pending_approval' => 'Bozza - in approvazione',
|
'draft_pending_approval' => 'Bozza - in approvazione',
|
||||||
'draft_pending_review' => 'Bozza - in revisione',
|
'draft_pending_review' => 'Bozza - in revisione',
|
||||||
'drag_icon_here' => 'Trascina qui l\'icona della cartella o del documento',
|
'drag_icon_here' => 'Trascina qui l\'icona della cartella o del documento',
|
||||||
'dropfolderdir_missing' => '',
|
'dropfolderdir_missing' => 'La vostra cartella di personale non esiste sul server! Si prega di chiedere all\'amministratore di creare per te.',
|
||||||
'dropfolder_file' => 'Scegli file dal server',
|
'dropfolder_file' => 'Scegli file dal server',
|
||||||
'dropfolder_folder' => '',
|
'dropfolder_folder' => 'Cartella per il cartella di ricezione',
|
||||||
'dropupload' => 'Caricamento Rapido',
|
'dropupload' => 'Caricamento Rapido',
|
||||||
'drop_files_here' => 'Trascina qui il file',
|
'drop_files_here' => 'Trascina qui il file',
|
||||||
'dump_creation' => 'Creazione del DB dump',
|
'dump_creation' => 'Creazione del DB dump',
|
||||||
|
@ -394,34 +404,38 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Modifica le proprietà del documento',
|
'edit_document_props' => 'Modifica le proprietà del documento',
|
||||||
'edit_event' => 'Modifica l\'evento',
|
'edit_event' => 'Modifica l\'evento',
|
||||||
'edit_existing_access' => 'Modifica i permessi',
|
'edit_existing_access' => 'Modifica i permessi',
|
||||||
|
'edit_existing_attribute_groups' => 'Modifica gruppi degli attributi',
|
||||||
'edit_existing_notify' => 'Gestione lista di notifica',
|
'edit_existing_notify' => 'Gestione lista di notifica',
|
||||||
'edit_folder_access' => 'Modifica permessi',
|
'edit_folder_access' => 'Modifica permessi',
|
||||||
|
'edit_folder_attrdefgrp' => 'Modifica i attributi degli gruppi',
|
||||||
'edit_folder_notify' => 'Modifica la lista di notifica per la cartella',
|
'edit_folder_notify' => 'Modifica la lista di notifica per la cartella',
|
||||||
'edit_folder_props' => 'Modifica proprietà cartella',
|
'edit_folder_props' => 'Modifica proprietà cartella',
|
||||||
'edit_group' => 'Modifica il gruppo',
|
'edit_group' => 'Modifica il gruppo',
|
||||||
'edit_online' => '',
|
'edit_online' => 'Modifica online',
|
||||||
'edit_transmittal_props' => 'Modifica proprietà trasmissione',
|
'edit_transmittal_props' => 'Modifica proprietà trasmissione',
|
||||||
'edit_user' => 'Modifica l\'utente',
|
'edit_user' => 'Modifica l\'utente',
|
||||||
'edit_user_details' => 'Modifica i dettagli utente',
|
'edit_user_details' => 'Modifica i dettagli utente',
|
||||||
'edit_version' => '',
|
'edit_version' => 'Versione editato',
|
||||||
'email' => 'Email',
|
'email' => 'Email',
|
||||||
'email_error_title' => 'Nessuna email immessa',
|
'email_error_title' => 'Nessuna email immessa',
|
||||||
'email_footer' => 'Puoi cambiare l\'impostazione della tua email utilizzando le funzioni del menu \'Account personale\'',
|
'email_footer' => 'Puoi cambiare l\'impostazione della tua email utilizzando le funzioni del menu \'Account personale\'',
|
||||||
'email_header' => 'Questo è un messaggio automatico inviato dal server DMS',
|
'email_header' => 'Questo è un messaggio automatico inviato dal server DMS',
|
||||||
'email_not_given' => 'Inserisci un indirizzo email valido.',
|
'email_not_given' => 'Inserisci un indirizzo email valido.',
|
||||||
|
'empty_attribute_group_list' => 'Nessun gruppo di attributi',
|
||||||
'empty_folder_list' => 'Cartella vuota',
|
'empty_folder_list' => 'Cartella vuota',
|
||||||
'empty_notify_list' => 'Nessun record',
|
'empty_notify_list' => 'Nessun record',
|
||||||
'en_GB' => 'Inglese (GB)',
|
'en_GB' => 'Inglese (GB)',
|
||||||
'equal_transition_states' => 'Lo stato iniziale e quello finale sono identici',
|
'equal_transition_states' => 'Lo stato iniziale e quello finale sono identici',
|
||||||
'error' => 'Errore',
|
'error' => 'Errore',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => 'Errore durante l\'accesso aggiungendo richiesta oggetto',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => 'Errore durante l\'aggiunta di permesso',
|
||||||
'error_importfs' => '',
|
'error_clearcache' => 'Errore durante svuotare la cache',
|
||||||
|
'error_importfs' => 'Errore durante l\'importazione dal file system',
|
||||||
'error_no_document_selected' => 'Nessun documento selezionato',
|
'error_no_document_selected' => 'Nessun documento selezionato',
|
||||||
'error_no_folder_selected' => 'Nessuna cartella selezionata',
|
'error_no_folder_selected' => 'Nessuna cartella selezionata',
|
||||||
'error_occured' => 'Ooops... Si è verificato un errore',
|
'error_occured' => 'Ooops... Si è verificato un errore',
|
||||||
'error_remove_permission' => '',
|
'error_remove_permission' => 'Errore durante la rimozione delle autorizzazioni',
|
||||||
'error_toogle_permission' => '',
|
'error_toogle_permission' => 'Errore durante la modifica permessi',
|
||||||
'es_ES' => 'Spagnolo',
|
'es_ES' => 'Spagnolo',
|
||||||
'event_details' => 'Dettagli evento',
|
'event_details' => 'Dettagli evento',
|
||||||
'exclude_items' => 'Escludi Elementi',
|
'exclude_items' => 'Escludi Elementi',
|
||||||
|
@ -490,6 +504,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Ricerca Fulltext',
|
'fullsearch' => 'Ricerca Fulltext',
|
||||||
'fullsearch_hint' => 'Usa l\'indice fulltext',
|
'fullsearch_hint' => 'Usa l\'indice fulltext',
|
||||||
'fulltext_info' => 'Info indice Fulltext',
|
'fulltext_info' => 'Info indice Fulltext',
|
||||||
|
'global_attributedefinitiongroups' => 'Attributo gruppi',
|
||||||
'global_attributedefinitions' => 'Definizione attributi',
|
'global_attributedefinitions' => 'Definizione attributi',
|
||||||
'global_default_keywords' => 'Parole-chiave globali',
|
'global_default_keywords' => 'Parole-chiave globali',
|
||||||
'global_document_categories' => 'Categorie',
|
'global_document_categories' => 'Categorie',
|
||||||
|
@ -500,16 +515,16 @@ URL: [url]',
|
||||||
'groups' => 'Gruppi',
|
'groups' => 'Gruppi',
|
||||||
'group_approval_summary' => 'Dettaglio approvazioni di gruppo',
|
'group_approval_summary' => 'Dettaglio approvazioni di gruppo',
|
||||||
'group_exists' => 'Il gruppo è già esistente',
|
'group_exists' => 'Il gruppo è già esistente',
|
||||||
'group_info' => '',
|
'group_info' => 'Informazion del gruppo',
|
||||||
'group_management' => 'Amministrazione gruppi',
|
'group_management' => 'Amministrazione gruppi',
|
||||||
'group_members' => 'Membri del gruppo',
|
'group_members' => 'Membri del gruppo',
|
||||||
'group_receipt_summary' => '',
|
'group_receipt_summary' => 'Panoramica delle conferme ricevute gruppo.',
|
||||||
'group_review_summary' => 'Dettaglio revisioni di gruppo',
|
'group_review_summary' => 'Dettaglio revisioni di gruppo',
|
||||||
'guest_login' => 'Login come Ospite',
|
'guest_login' => 'Login come Ospite',
|
||||||
'guest_login_disabled' => 'Il login come Ospite è disabilitato.',
|
'guest_login_disabled' => 'Il login come Ospite è disabilitato.',
|
||||||
'help' => 'Aiuto',
|
'help' => 'Aiuto',
|
||||||
'home_folder' => 'Cartella Utente',
|
'home_folder' => 'Cartella Utente',
|
||||||
'hook_name' => '',
|
'hook_name' => 'Nome del gangio',
|
||||||
'hourly' => 'Ogni ora',
|
'hourly' => 'Ogni ora',
|
||||||
'hours' => 'ore',
|
'hours' => 'ore',
|
||||||
'hr_HR' => 'Croato',
|
'hr_HR' => 'Croato',
|
||||||
|
@ -517,17 +532,17 @@ URL: [url]',
|
||||||
'hu_HU' => 'Ungherese',
|
'hu_HU' => 'Ungherese',
|
||||||
'id' => 'ID',
|
'id' => 'ID',
|
||||||
'identical_version' => 'La nuova versione è identica a quella attuale.',
|
'identical_version' => 'La nuova versione è identica a quella attuale.',
|
||||||
'import' => '',
|
'import' => 'Importa',
|
||||||
'importfs' => '',
|
'importfs' => 'Importa da File System / disco',
|
||||||
'import_fs' => '',
|
'import_fs' => 'Importa dalla cartella di sistema',
|
||||||
'import_fs_warning' => '',
|
'import_fs_warning' => 'Questo funziona solo per le cartelle nella cartella per lasciare. L\'operazione importa in modo ricorsivo tutte le cartelle e file. I file saranno rilasciati immediatamente.',
|
||||||
'include_content' => 'Includi contenuto',
|
'include_content' => 'Includi contenuto',
|
||||||
'include_documents' => 'Includi documenti',
|
'include_documents' => 'Includi documenti',
|
||||||
'include_subdirectories' => 'Includi sottocartelle',
|
'include_subdirectories' => 'Includi sottocartelle',
|
||||||
'index_converters' => 'Indice di conversione documenti',
|
'index_converters' => 'Indice di conversione documenti',
|
||||||
'index_folder' => 'Indicizza cartella',
|
'index_folder' => 'Indicizza cartella',
|
||||||
'individuals' => 'Singoli',
|
'individuals' => 'Singoli',
|
||||||
'indivіduals_in_groups' => '',
|
'indivіduals_in_groups' => 'I membri de la gruppo',
|
||||||
'inherited' => 'ereditato',
|
'inherited' => 'ereditato',
|
||||||
'inherits_access_copy_msg' => 'Copia la lista degli accessi ereditati',
|
'inherits_access_copy_msg' => 'Copia la lista degli accessi ereditati',
|
||||||
'inherits_access_empty_msg' => 'Reimposta una lista di permessi vuota',
|
'inherits_access_empty_msg' => 'Reimposta una lista di permessi vuota',
|
||||||
|
@ -540,9 +555,9 @@ URL: [url]',
|
||||||
'invalid_create_date_end' => 'Fine data non valida per la creazione di un intervallo temporale',
|
'invalid_create_date_end' => 'Fine data non valida per la creazione di un intervallo temporale',
|
||||||
'invalid_create_date_start' => 'Inizio data non valida per la creazione di un intervallo temporale',
|
'invalid_create_date_start' => 'Inizio data non valida per la creazione di un intervallo temporale',
|
||||||
'invalid_doc_id' => 'ID del documento non valido',
|
'invalid_doc_id' => 'ID del documento non valido',
|
||||||
'invalid_dropfolder_folder' => '',
|
'invalid_dropfolder_folder' => 'cartella non valido nella cartella goccia',
|
||||||
'invalid_expiration_date_end' => '',
|
'invalid_expiration_date_end' => 'Data di fine non è valida per l\'intervallo di data di scadenza.',
|
||||||
'invalid_expiration_date_start' => '',
|
'invalid_expiration_date_start' => 'Data di inizio non valida per l\'intervallo di date di scadenza.',
|
||||||
'invalid_file_id' => 'ID del file non valido',
|
'invalid_file_id' => 'ID del file non valido',
|
||||||
'invalid_folder_id' => 'ID della cartella non valido',
|
'invalid_folder_id' => 'ID della cartella non valido',
|
||||||
'invalid_group_id' => 'ID del gruppo non valido',
|
'invalid_group_id' => 'ID del gruppo non valido',
|
||||||
|
@ -593,7 +608,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_hooks' => '',
|
'list_hooks' => 'Lista ganci',
|
||||||
'local_file' => 'File locale',
|
'local_file' => 'File locale',
|
||||||
'locked_by' => 'Bloccato da',
|
'locked_by' => 'Bloccato da',
|
||||||
'lock_document' => 'Blocca',
|
'lock_document' => 'Blocca',
|
||||||
|
@ -625,9 +640,9 @@ URL: [url]',
|
||||||
'minutes' => 'minuti',
|
'minutes' => 'minuti',
|
||||||
'misc' => 'Varie',
|
'misc' => 'Varie',
|
||||||
'missing_checksum' => 'Checksum mancante',
|
'missing_checksum' => 'Checksum mancante',
|
||||||
'missing_file' => '',
|
'missing_file' => 'File mancante',
|
||||||
'missing_filesize' => 'Dimensione mancante',
|
'missing_filesize' => 'Dimensione mancante',
|
||||||
'missing_request_object' => '',
|
'missing_request_object' => 'Manca oggetto di richiesta',
|
||||||
'missing_transition_user_group' => 'Utente/Gruppo per la transizione mancanti',
|
'missing_transition_user_group' => 'Utente/Gruppo per la transizione mancanti',
|
||||||
'monday' => 'Lunedì',
|
'monday' => 'Lunedì',
|
||||||
'monday_abbr' => 'Lun',
|
'monday_abbr' => 'Lun',
|
||||||
|
@ -642,6 +657,7 @@ URL: [url]',
|
||||||
'my_transmittals' => 'Mie trasmissioni',
|
'my_transmittals' => 'Mie trasmissioni',
|
||||||
'name' => 'Nome',
|
'name' => 'Nome',
|
||||||
'needs_workflow_action' => 'Il documento richiede attenzione. Prego controllare il flusso di lavoro.',
|
'needs_workflow_action' => 'Il documento richiede attenzione. Prego controllare il flusso di lavoro.',
|
||||||
|
'network_drive' => 'Network drive',
|
||||||
'never' => 'Mai',
|
'never' => 'Mai',
|
||||||
'new' => 'Nuovo',
|
'new' => 'Nuovo',
|
||||||
'new_attrdef' => 'Nuovo attributo',
|
'new_attrdef' => 'Nuovo attributo',
|
||||||
|
@ -702,6 +718,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Nessuna parola-chiave disponibile',
|
'no_default_keywords' => 'Nessuna parola-chiave disponibile',
|
||||||
'no_docs_checked_out' => 'Nessun documento approvato',
|
'no_docs_checked_out' => 'Nessun documento approvato',
|
||||||
'no_docs_locked' => 'Nessun documento bloccato.',
|
'no_docs_locked' => 'Nessun documento bloccato.',
|
||||||
|
'no_docs_rejected' => 'Nessun documento rifiutato',
|
||||||
'no_docs_to_approve' => 'Non ci sono documenti che richiedano approvazione.',
|
'no_docs_to_approve' => 'Non ci sono documenti che richiedano approvazione.',
|
||||||
'no_docs_to_look_at' => 'Non ci sono documenti che richiedano attenzione.',
|
'no_docs_to_look_at' => 'Non ci sono documenti che richiedano attenzione.',
|
||||||
'no_docs_to_receipt' => 'Nessuna cartella richiesta.',
|
'no_docs_to_receipt' => 'Nessuna cartella richiesta.',
|
||||||
|
@ -713,14 +730,14 @@ URL: [url]',
|
||||||
'no_group_members' => 'Questo gruppo non ha membri',
|
'no_group_members' => 'Questo gruppo non ha membri',
|
||||||
'no_linked_files' => 'Nessun file collegato',
|
'no_linked_files' => 'Nessun file collegato',
|
||||||
'no_previous_versions' => 'Nessun\'altra versione trovata',
|
'no_previous_versions' => 'Nessun\'altra versione trovata',
|
||||||
'no_receipt_needed' => '',
|
'no_receipt_needed' => 'Rete disco',
|
||||||
'no_review_needed' => 'Nessuna revisione in sospeso.',
|
'no_review_needed' => 'Nessuna revisione in sospeso.',
|
||||||
'no_revision_needed' => '',
|
'no_revision_needed' => 'Nessuna revisione in corso.',
|
||||||
'no_revision_planed' => 'Nessuna revisione pianificata.',
|
'no_revision_planed' => 'Nessuna revisione pianificata.',
|
||||||
'no_update_cause_locked' => 'Non è quindi possible aggiornare il documento. Prego contattare l\'utente che l\'ha bloccato.',
|
'no_update_cause_locked' => 'Non è quindi possible aggiornare il documento. Prego contattare l\'utente che l\'ha bloccato.',
|
||||||
'no_user_image' => 'Nessuna immagine trovata',
|
'no_user_image' => 'Nessuna immagine trovata',
|
||||||
'no_version_check' => 'Il controllo per una nuova versione di SeedDMS è fallito! Questo può essere causato da allow_url_fopen settato a 0 nella tua configurazione php.',
|
'no_version_check' => 'Il controllo per una nuova versione di SeedDMS è fallito! Questo può essere causato da allow_url_fopen settato a 0 nella tua configurazione php.',
|
||||||
'no_version_modification' => '',
|
'no_version_modification' => 'Nessuna modifica versione',
|
||||||
'no_workflow_available' => 'Nessun flusso di lavoro disponibile',
|
'no_workflow_available' => 'Nessun flusso di lavoro disponibile',
|
||||||
'objectcheck' => 'Controllo cartelle o documenti',
|
'objectcheck' => 'Controllo cartelle o documenti',
|
||||||
'obsolete' => 'Obsoleto',
|
'obsolete' => 'Obsoleto',
|
||||||
|
@ -765,16 +782,16 @@ Dovessero esserci ancora problemi al login, prego contatta l\'Amministratore di
|
||||||
'password_strength' => 'Sicurezza password',
|
'password_strength' => 'Sicurezza password',
|
||||||
'password_strength_insuffient' => 'Efficacia della password insufficiente',
|
'password_strength_insuffient' => 'Efficacia della password insufficiente',
|
||||||
'password_wrong' => 'Password errata',
|
'password_wrong' => 'Password errata',
|
||||||
'pending_approvals' => '',
|
'pending_approvals' => 'Approvazioni in sospeso',
|
||||||
'pending_reviews' => '',
|
'pending_reviews' => 'In attesa di recensioni',
|
||||||
'pending_workflows' => '',
|
'pending_workflows' => 'I flussi di lavoro in sospeso',
|
||||||
'personal_default_keywords' => 'Parole-chiave personali',
|
'personal_default_keywords' => 'Parole-chiave personali',
|
||||||
'pl_PL' => 'Polacco',
|
'pl_PL' => 'Polacco',
|
||||||
'possible_substitutes' => 'Sostituti',
|
'possible_substitutes' => 'Sostituti',
|
||||||
'preview' => '',
|
'preview' => 'Anteprima',
|
||||||
'preview_converters' => 'Anteprima convesione documento',
|
'preview_converters' => 'Anteprima convesione documento',
|
||||||
'preview_markdown' => '',
|
'preview_markdown' => 'Riduione ribasso',
|
||||||
'preview_plain' => '',
|
'preview_plain' => 'Testo',
|
||||||
'previous_state' => 'Stato precedente',
|
'previous_state' => 'Stato precedente',
|
||||||
'previous_versions' => 'Versioni precedenti',
|
'previous_versions' => 'Versioni precedenti',
|
||||||
'pt_BR' => 'Portoghese (BR)',
|
'pt_BR' => 'Portoghese (BR)',
|
||||||
|
@ -783,9 +800,14 @@ Dovessero esserci ancora problemi al login, prego contatta l\'Amministratore di
|
||||||
'quota_is_disabled' => 'Il supporto per le quote è attualmente disattivato nelle impostazioni. L\'impostazione di una quota-utente non avrà alcun effetto finché tale funzionalità non verrà nuovamente attivata.',
|
'quota_is_disabled' => 'Il supporto per le quote è attualmente disattivato nelle impostazioni. L\'impostazione di una quota-utente non avrà alcun effetto finché tale funzionalità non verrà nuovamente attivata.',
|
||||||
'quota_warning' => 'Il vostro utilizzo massimo di spazio è stato superato di [bytes]. Si prega di rimuovere documenti o versioni obsolete.',
|
'quota_warning' => 'Il vostro utilizzo massimo di spazio è stato superato di [bytes]. Si prega di rimuovere documenti o versioni obsolete.',
|
||||||
'receipt_log' => 'Ricezione Log',
|
'receipt_log' => 'Ricezione Log',
|
||||||
'receipt_request_email_body' => '',
|
'receipt_request_email_body' => 'Richiesta di ricezione
|
||||||
'receipt_request_email_subject' => '',
|
Document: [name]
|
||||||
'receipt_status' => '',
|
Version: [version]
|
||||||
|
Parent folder: [folder_path]
|
||||||
|
User: [username]
|
||||||
|
URL: [url]',
|
||||||
|
'receipt_request_email_subject' => '[sitename]: [name] - Richiesta di ricezione',
|
||||||
|
'receipt_status' => 'Status',
|
||||||
'receipt_summary' => 'Sommario ricezione',
|
'receipt_summary' => 'Sommario ricezione',
|
||||||
'recipients' => 'Cartelle',
|
'recipients' => 'Cartelle',
|
||||||
'refresh' => 'Ricarica',
|
'refresh' => 'Ricarica',
|
||||||
|
@ -822,7 +844,7 @@ Utente: [username]
|
||||||
URL: [url]',
|
URL: [url]',
|
||||||
'request_workflow_action_email_subject' => 'Richiesta di azione in un flusso di lavoro',
|
'request_workflow_action_email_subject' => 'Richiesta di azione in un flusso di lavoro',
|
||||||
'reset_checkout' => 'Check Out terminato',
|
'reset_checkout' => 'Check Out terminato',
|
||||||
'restrict_access' => '',
|
'restrict_access' => 'Nessun accesso al',
|
||||||
'results_page' => 'Pagina dei risultati',
|
'results_page' => 'Pagina dei risultati',
|
||||||
'return_from_subworkflow' => 'Ritorno dal sotto-flusso di lavoro',
|
'return_from_subworkflow' => 'Ritorno dal sotto-flusso di lavoro',
|
||||||
'return_from_subworkflow_email_body' => 'Ritorno dal sotto-flusso di lavoro
|
'return_from_subworkflow_email_body' => 'Ritorno dal sotto-flusso di lavoro
|
||||||
|
@ -874,9 +896,14 @@ URL: [url]',
|
||||||
'revise_document_on' => 'Prossima revisione del documento il [date]',
|
'revise_document_on' => 'Prossima revisione del documento il [date]',
|
||||||
'revision_date' => 'data revisione',
|
'revision_date' => 'data revisione',
|
||||||
'revision_log' => 'Log revisione',
|
'revision_log' => 'Log revisione',
|
||||||
'revision_request_email_body' => '',
|
'revision_request_email_body' => 'Richiesta di ricezione
|
||||||
'revision_request_email_subject' => '',
|
Document: [name]
|
||||||
'revision_status' => '',
|
Version: [version]
|
||||||
|
Parent folder: [folder_path]
|
||||||
|
User: [username]
|
||||||
|
URL: [url]',
|
||||||
|
'revision_request_email_subject' => '[sitename]: [name] - Richiesta di revisione',
|
||||||
|
'revision_status' => 'Status',
|
||||||
'revisors' => 'Revisori',
|
'revisors' => 'Revisori',
|
||||||
'revisor_already_assigned' => 'Utente già assegnato al ruolo di revisore',
|
'revisor_already_assigned' => 'Utente già assegnato al ruolo di revisore',
|
||||||
'revisor_already_removed' => 'Revisore già rimosso dal processo di revisione o ha già revisionato documento.',
|
'revisor_already_removed' => 'Revisore già rimosso dal processo di revisione o ha già revisionato documento.',
|
||||||
|
@ -891,6 +918,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Il flusso di lavoro è stato invertito',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Il flusso di lavoro è stato invertito',
|
||||||
'rewind_workflow_warning' => 'Se si inverte un flusso di lavoro al suo stato iniziale ogni traccia del flusso di lavoro originale per questo documento sarà cancellata permanentemente.',
|
'rewind_workflow_warning' => 'Se si inverte un flusso di lavoro al suo stato iniziale ogni traccia del flusso di lavoro originale per questo documento sarà cancellata permanentemente.',
|
||||||
'rm_attrdef' => 'Rimuovi attributo',
|
'rm_attrdef' => 'Rimuovi attributo',
|
||||||
|
'rm_attrdefgroup' => 'Rimuovere questo gruppo di attributi',
|
||||||
'rm_default_keyword_category' => 'Rimuovi categoria',
|
'rm_default_keyword_category' => 'Rimuovi categoria',
|
||||||
'rm_document' => 'Rimuovi documento',
|
'rm_document' => 'Rimuovi documento',
|
||||||
'rm_document_category' => 'Rimuovi categoria',
|
'rm_document_category' => 'Rimuovi categoria',
|
||||||
|
@ -898,7 +926,7 @@ URL: [url]',
|
||||||
'rm_folder' => 'Rimuovi cartella',
|
'rm_folder' => 'Rimuovi cartella',
|
||||||
'rm_from_clipboard' => 'Rimuovi dalla clipboard',
|
'rm_from_clipboard' => 'Rimuovi dalla clipboard',
|
||||||
'rm_group' => 'Rimuovi questo gruppo',
|
'rm_group' => 'Rimuovi questo gruppo',
|
||||||
'rm_role' => '',
|
'rm_role' => 'Eliminare questo ruolo',
|
||||||
'rm_transmittal' => 'Rimuovi trasmissione',
|
'rm_transmittal' => 'Rimuovi trasmissione',
|
||||||
'rm_transmittalitem' => 'Rimuovi oggetto',
|
'rm_transmittalitem' => 'Rimuovi oggetto',
|
||||||
'rm_user' => 'Rimuovi questo utente',
|
'rm_user' => 'Rimuovi questo utente',
|
||||||
|
@ -910,10 +938,10 @@ URL: [url]',
|
||||||
'role' => 'Ruolo',
|
'role' => 'Ruolo',
|
||||||
'role_admin' => 'Amministratore',
|
'role_admin' => 'Amministratore',
|
||||||
'role_guest' => 'Ospite',
|
'role_guest' => 'Ospite',
|
||||||
'role_info' => '',
|
'role_info' => 'Informazioni',
|
||||||
'role_management' => '',
|
'role_management' => 'Gestione dei ruoli',
|
||||||
'role_name' => '',
|
'role_name' => 'Nome',
|
||||||
'role_type' => '',
|
'role_type' => 'Tipo di roulo',
|
||||||
'role_user' => 'Utente',
|
'role_user' => 'Utente',
|
||||||
'ro_RO' => 'Rumeno',
|
'ro_RO' => 'Rumeno',
|
||||||
'run_subworkflow' => 'Inizia un sotto-flusso di lavoro',
|
'run_subworkflow' => 'Inizia un sotto-flusso di lavoro',
|
||||||
|
@ -948,13 +976,14 @@ URL: [url]',
|
||||||
'search_time' => 'Tempo trascorso: [time] secondi.',
|
'search_time' => 'Tempo trascorso: [time] secondi.',
|
||||||
'seconds' => 'secondi',
|
'seconds' => 'secondi',
|
||||||
'selection' => 'Selezione',
|
'selection' => 'Selezione',
|
||||||
|
'select_attrdefgrp_show' => 'Scegli quando mostrare',
|
||||||
'select_category' => 'Clicca per selezionare la categoria',
|
'select_category' => 'Clicca per selezionare la categoria',
|
||||||
'select_groups' => 'Clicca per selezionare i gruppi',
|
'select_groups' => 'Clicca per selezionare i gruppi',
|
||||||
'select_grp_approvers' => 'Seleziona gruppo approvatore',
|
'select_grp_approvers' => 'Seleziona gruppo approvatore',
|
||||||
'select_grp_ind_approvers' => '',
|
'select_grp_ind_approvers' => 'Fare clic per scegliere il gruppo',
|
||||||
'select_grp_ind_notification' => '',
|
'select_grp_ind_notification' => 'Fare clic per scegliere il gruppo',
|
||||||
'select_grp_ind_recipients' => '',
|
'select_grp_ind_recipients' => 'Fare clic per scegliere il gruppo',
|
||||||
'select_grp_ind_reviewers' => '',
|
'select_grp_ind_reviewers' => 'Fare clic per scegliere il gruppo',
|
||||||
'select_grp_notification' => 'Seleziona Gruppo',
|
'select_grp_notification' => 'Seleziona Gruppo',
|
||||||
'select_grp_recipients' => 'Seleziona gruppo cartelle',
|
'select_grp_recipients' => 'Seleziona gruppo cartelle',
|
||||||
'select_grp_reviewers' => 'Seleziona gruppo revisore',
|
'select_grp_reviewers' => 'Seleziona gruppo revisore',
|
||||||
|
@ -967,7 +996,7 @@ URL: [url]',
|
||||||
'select_one' => 'Seleziona uno',
|
'select_one' => 'Seleziona uno',
|
||||||
'select_users' => 'Clicca per selezionare gli utenti',
|
'select_users' => 'Clicca per selezionare gli utenti',
|
||||||
'select_workflow' => 'Seleziona il flusso di lavoro',
|
'select_workflow' => 'Seleziona il flusso di lavoro',
|
||||||
'send_test_mail' => '',
|
'send_test_mail' => 'Invia messagio di prova',
|
||||||
'september' => 'Settembre',
|
'september' => 'Settembre',
|
||||||
'sequence' => 'Posizione',
|
'sequence' => 'Posizione',
|
||||||
'seq_after' => 'Dopo "[prevname]"',
|
'seq_after' => 'Dopo "[prevname]"',
|
||||||
|
@ -980,14 +1009,14 @@ URL: [url]',
|
||||||
'settings_adminIP' => 'IP Amministratore',
|
'settings_adminIP' => 'IP Amministratore',
|
||||||
'settings_adminIP_desc' => 'Se attivato l\'Amministratore si può collegare solo da un IP specifico; lasciare vuoto per evitare il controllo. NOTA: funziona solo con autenticazione locale (no LDAP)',
|
'settings_adminIP_desc' => 'Se attivato l\'Amministratore si può collegare solo da un IP specifico; lasciare vuoto per evitare il controllo. NOTA: funziona solo con autenticazione locale (no LDAP)',
|
||||||
'settings_Advanced' => 'Avanzate',
|
'settings_Advanced' => 'Avanzate',
|
||||||
'settings_advancedAcl' => '',
|
'settings_advancedAcl' => 'Avanzate controlo accesso',
|
||||||
'settings_advancedAcl_desc' => '',
|
'settings_advancedAcl_desc' => 'Avanzatoa controlo di accesso consente di attivare / diattivare alcuni moduli di software. Non può essere utilizzato per i diritti di accesso su documenti e cartelle.',
|
||||||
'settings_apache_mod_rewrite' => 'Apache - Mod Rewrite',
|
'settings_apache_mod_rewrite' => 'Apache - Mod Rewrite',
|
||||||
'settings_Authentication' => 'Impostazioni di Autenticazione',
|
'settings_Authentication' => 'Impostazioni di Autenticazione',
|
||||||
'settings_autoLoginUser' => '',
|
'settings_autoLoginUser' => 'Login automatico',
|
||||||
'settings_autoLoginUser_desc' => '',
|
'settings_autoLoginUser_desc' => 'Utilizzare questo ID utente per l\'accesso se l\'utente non è già connesso. Questo tipo di accesso non creerà una sessione.',
|
||||||
'settings_backupDir' => '',
|
'settings_backupDir' => 'Directory di backup',
|
||||||
'settings_backupDir_desc' => '',
|
'settings_backupDir_desc' => 'Directory in cui lo strumento di backup salva i backup. Se questa directory non è impostato o non è possibile accedervi, quindi i backup vengono salvati nella directory dei contenuti.',
|
||||||
'settings_cacheDir' => 'Cartella di cache',
|
'settings_cacheDir' => 'Cartella di cache',
|
||||||
'settings_cacheDir_desc' => 'Cartella in cui vengono conservate le immagini di anteprima, si consiglia di scegliere una cartella sul web-server che non sia direttamente accessibile.',
|
'settings_cacheDir_desc' => 'Cartella in cui vengono conservate le immagini di anteprima, si consiglia di scegliere una cartella sul web-server che non sia direttamente accessibile.',
|
||||||
'settings_Calendar' => 'Impostazioni calendario',
|
'settings_Calendar' => 'Impostazioni calendario',
|
||||||
|
@ -1024,9 +1053,9 @@ URL: [url]',
|
||||||
'settings_dbUser_desc' => 'Utente per accedere al database da utilizzarsi durante il processo di installazione. Non modificare questo campo se non assolutamente necessario, per esempio nel caso di trasferimento del database su un nuovo Host.',
|
'settings_dbUser_desc' => 'Utente per accedere al database da utilizzarsi durante il processo di installazione. Non modificare questo campo se non assolutamente necessario, per esempio nel caso di trasferimento del database su un nuovo Host.',
|
||||||
'settings_dbVersion' => 'Schema del database obsoleto',
|
'settings_dbVersion' => 'Schema del database obsoleto',
|
||||||
'settings_defaultSearchMethod' => 'Metodo di ricerca predefinito',
|
'settings_defaultSearchMethod' => 'Metodo di ricerca predefinito',
|
||||||
'settings_defaultSearchMethod_desc' => '',
|
'settings_defaultSearchMethod_desc' => 'Metodo di ricerca predefinito, quando la ricerca viene avviata dal modulo di ricerca nel menu principale.',
|
||||||
'settings_defaultSearchMethod_valdatabase' => 'database',
|
'settings_defaultSearchMethod_valdatabase' => 'database',
|
||||||
'settings_defaultSearchMethod_valfulltext' => '',
|
'settings_defaultSearchMethod_valfulltext' => 'Testo intero',
|
||||||
'settings_delete_install_folder' => 'Per poter usare SeedDMS, devi cancellare il file ENABLE_INSTALL_TOOL nella cartella di configurazione.',
|
'settings_delete_install_folder' => 'Per poter usare SeedDMS, devi cancellare il file ENABLE_INSTALL_TOOL nella cartella di configurazione.',
|
||||||
'settings_disableSelfEdit' => 'Disabilita Auto-Modifica',
|
'settings_disableSelfEdit' => 'Disabilita Auto-Modifica',
|
||||||
'settings_disableSelfEdit_desc' => 'Se selezionato l\'utente non può modificare il proprio profilo',
|
'settings_disableSelfEdit_desc' => 'Se selezionato l\'utente non può modificare il proprio profilo',
|
||||||
|
@ -1036,7 +1065,9 @@ URL: [url]',
|
||||||
'settings_dropFolderDir_desc' => 'Questa cartella viene utilizzata per rilasciare (drop) files sul server per importarli direttamente anziché caricarli attraverso il browser. La cartella deve contenere una sottocartella per ciascun utente autorizzato ad importare files in questo modo.',
|
'settings_dropFolderDir_desc' => 'Questa cartella viene utilizzata per rilasciare (drop) files sul server per importarli direttamente anziché caricarli attraverso il browser. La cartella deve contenere una sottocartella per ciascun utente autorizzato ad importare files in questo modo.',
|
||||||
'settings_Edition' => 'Impostazioni di edizione',
|
'settings_Edition' => 'Impostazioni di edizione',
|
||||||
'settings_editOnlineFileTypes' => 'Tipi di files modificabili Online',
|
'settings_editOnlineFileTypes' => 'Tipi di files modificabili Online',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => 'I file con uno dei seguenti terminali possono essere modificati on-line (usare solo caratteri minuscoli)',
|
||||||
|
'settings_enable2FactorAuthentication' => 'Permettere autenticazione a due fattori',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => 'Abilitare / disabilitare autenticazione a due fattori. Gli utenti avranno bisogno di "Google Authenticator" sul tuo telefono cellulare.',
|
||||||
'settings_enableAcknowledgeWorkflow' => 'Abilitare per notifiche',
|
'settings_enableAcknowledgeWorkflow' => 'Abilitare per notifiche',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => 'Abilitare per attivare sul workflow le ricevute di notifica.',
|
'settings_enableAcknowledgeWorkflow_desc' => 'Abilitare per attivare sul workflow le ricevute di notifica.',
|
||||||
'settings_enableAdminRevApp' => 'Permetti la revisione/approvazione da parte degli amministratori',
|
'settings_enableAdminRevApp' => 'Permetti la revisione/approvazione da parte degli amministratori',
|
||||||
|
@ -1058,7 +1089,7 @@ URL: [url]',
|
||||||
'settings_enableFullSearch' => 'Abilita ricerca fulltext',
|
'settings_enableFullSearch' => 'Abilita ricerca fulltext',
|
||||||
'settings_enableFullSearch_desc' => 'Abilita/disabilita la ricerca fulltext',
|
'settings_enableFullSearch_desc' => 'Abilita/disabilita la ricerca fulltext',
|
||||||
'settings_enableGuestAutoLogin' => 'Activer la connexion automatique pour le compte invité',
|
'settings_enableGuestAutoLogin' => 'Activer la connexion automatique pour le compte invité',
|
||||||
'settings_enableGuestAutoLogin_desc' => '',
|
'settings_enableGuestAutoLogin_desc' => 'Se il login ospite e il login automatico è abilitato, il login ospite sarà usato automaticamente.',
|
||||||
'settings_enableGuestLogin' => 'Permetti login come ospite',
|
'settings_enableGuestLogin' => 'Permetti login come ospite',
|
||||||
'settings_enableGuestLogin_desc' => 'Per impedire il login come ospite, selezionare questa opzione. Nota bene: il login come ospite dovrebbe essere permesso soltanto in un ambiente fidato.',
|
'settings_enableGuestLogin_desc' => 'Per impedire il login come ospite, selezionare questa opzione. Nota bene: il login come ospite dovrebbe essere permesso soltanto in un ambiente fidato.',
|
||||||
'settings_enableHelp' => 'Abilita Aiuto',
|
'settings_enableHelp' => 'Abilita Aiuto',
|
||||||
|
@ -1067,8 +1098,8 @@ URL: [url]',
|
||||||
'settings_enableLanguageSelector_desc' => 'Mostra/nasconde il selettore di lingua successivamente al login.',
|
'settings_enableLanguageSelector_desc' => 'Mostra/nasconde il selettore di lingua successivamente al login.',
|
||||||
'settings_enableLargeFileUpload' => 'Abilita caricamento grandi files',
|
'settings_enableLargeFileUpload' => 'Abilita caricamento grandi files',
|
||||||
'settings_enableLargeFileUpload_desc' => 'Se selezionato, il caricamento (upload) dei files può essere effettuato anche attraverso un\'applet Java chiamata Jumploader evitando il limite di dimensioni file imposto dal browser; Jumploader permette anche il caricamento di diversi files contemporaneamente.',
|
'settings_enableLargeFileUpload_desc' => 'Se selezionato, il caricamento (upload) dei files può essere effettuato anche attraverso un\'applet Java chiamata Jumploader evitando il limite di dimensioni file imposto dal browser; Jumploader permette anche il caricamento di diversi files contemporaneamente.',
|
||||||
'settings_enableMenuTasks' => '',
|
'settings_enableMenuTasks' => 'Abilita compito delle attività nel menù',
|
||||||
'settings_enableMenuTasks_desc' => '',
|
'settings_enableMenuTasks_desc' => 'Abilita / Disabilita la voce di menu che contiene tutte le attività degli utenti. Questo conterrà i documenti che devono essere rivisti, approvati, etc.',
|
||||||
'settings_enableNotificationAppRev' => 'Abilita/disabilita notifica a revisore/approvatore',
|
'settings_enableNotificationAppRev' => 'Abilita/disabilita notifica a revisore/approvatore',
|
||||||
'settings_enableNotificationAppRev_desc' => 'Spuntare per inviare una notifica al revisore/approvatore nel momento in cui viene aggiunta una nuova versione del documento.',
|
'settings_enableNotificationAppRev_desc' => 'Spuntare per inviare una notifica al revisore/approvatore nel momento in cui viene aggiunta una nuova versione del documento.',
|
||||||
'settings_enableNotificationWorkflow' => 'Invia notifiche ai partecipanti al flusso di lavoro',
|
'settings_enableNotificationWorkflow' => 'Invia notifiche ai partecipanti al flusso di lavoro',
|
||||||
|
@ -1145,11 +1176,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Cartella di indicizzazione fulltext',
|
'settings_luceneDir' => 'Cartella di indicizzazione fulltext',
|
||||||
'settings_luceneDir_desc' => 'Cartella di memorizzazione dell\'indice utilizzato da Lucene',
|
'settings_luceneDir_desc' => 'Cartella di memorizzazione dell\'indice utilizzato da Lucene',
|
||||||
'settings_maxDirID' => 'Max numero di ID-Cartella',
|
'settings_maxDirID' => 'Max numero di ID-Cartella',
|
||||||
'settings_maxDirID_desc' => 'Numero massimo di sottocartelle contenibili in una cartella. Default: 32700.',
|
'settings_maxDirID_desc' => 'Numero massimo di sottocartelle contenibili in una cartella. Default: 0.',
|
||||||
'settings_maxExecutionTime' => 'Tempo Max di esecuzione (s)',
|
'settings_maxExecutionTime' => 'Tempo Max di esecuzione (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Imposta il tempo limite per l\'esecuzione di uno script prima che il parser lo termini.',
|
'settings_maxExecutionTime_desc' => 'Imposta il tempo limite per l\'esecuzione di uno script prima che il parser lo termini.',
|
||||||
'settings_maxRecursiveCount' => 'Conteggio ricursivo Max di files e cartelle',
|
'settings_maxRecursiveCount' => 'Conteggio ricursivo Max di files e cartelle',
|
||||||
'settings_maxRecursiveCount_desc' => 'Numero massimo di documenti e cartelle considerati dal conteggio ricursivo per il controllo dei diritti d\'accesso. Se tale valore dovesse essere superato, il risultato del conteggio sarà stimato.',
|
'settings_maxRecursiveCount_desc' => 'Numero massimo di documenti e cartelle considerati dal conteggio ricursivo per il controllo dei diritti d\'accesso. Se tale valore dovesse essere superato, il risultato del conteggio sarà stimato.',
|
||||||
|
'settings_maxSizeForFullText' => 'La lungeza massima del file per l\'indicizzazione istantanea',
|
||||||
|
'settings_maxSizeForFullText_desc' => 'Tutte le nuove versioni dei documenti più in basso della dimensione configurata saranno completamente indicizzati dopo il caricamento. In tutti gli altri casi sarà indicizzato solo i metadati.',
|
||||||
'settings_more_settings' => 'Ulteriori configurazioni. Login di default: admin/admin',
|
'settings_more_settings' => 'Ulteriori configurazioni. Login di default: admin/admin',
|
||||||
'settings_notfound' => 'Non trovato',
|
'settings_notfound' => 'Non trovato',
|
||||||
'settings_Notification' => 'Impostazioni di notifica',
|
'settings_Notification' => 'Impostazioni di notifica',
|
||||||
|
@ -1186,8 +1219,8 @@ URL: [url]',
|
||||||
'settings_printDisclaimer_desc' => 'Se abilitato il messaggio circa i termini e le condizioni d\'uso verrà mostrato nel pié di pagina.',
|
'settings_printDisclaimer_desc' => 'Se abilitato il messaggio circa i termini e le condizioni d\'uso verrà mostrato nel pié di pagina.',
|
||||||
'settings_quota' => 'Quota utente',
|
'settings_quota' => 'Quota utente',
|
||||||
'settings_quota_desc' => 'La quantità Max di spazio su disco che può essere occupata da ciascun utente. Impostare il valore 0 offre spazio illimitato.',
|
'settings_quota_desc' => 'La quantità Max di spazio su disco che può essere occupata da ciascun utente. Impostare il valore 0 offre spazio illimitato.',
|
||||||
'settings_removeFromDropFolder' => '',
|
'settings_removeFromDropFolder' => 'Rimuovere file dalla cartella di ricezione dopo il successo di posto',
|
||||||
'settings_removeFromDropFolder_desc' => '',
|
'settings_removeFromDropFolder_desc' => 'Attivare questa, se un file è preso dalla cartella di ricezione, si è cancellata dopo il caricamento di successo.',
|
||||||
'settings_restricted' => 'Accesso limitato',
|
'settings_restricted' => 'Accesso limitato',
|
||||||
'settings_restricted_desc' => 'Permette agli utenti di entrare nel sistema soltanto se hanno un record nel database locale (ignora l\'autenticazione positiva attraverso LDAP)',
|
'settings_restricted_desc' => 'Permette agli utenti di entrare nel sistema soltanto se hanno un record nel database locale (ignora l\'autenticazione positiva attraverso LDAP)',
|
||||||
'settings_rootDir' => 'Cartella principale',
|
'settings_rootDir' => 'Cartella principale',
|
||||||
|
@ -1268,9 +1301,10 @@ URL: [url]',
|
||||||
'splash_add_attribute' => 'Attributo aggiunto',
|
'splash_add_attribute' => 'Attributo aggiunto',
|
||||||
'splash_add_group' => 'Gruppo aggiunto',
|
'splash_add_group' => 'Gruppo aggiunto',
|
||||||
'splash_add_group_member' => 'Membro aggiunto al gruppo',
|
'splash_add_group_member' => 'Membro aggiunto al gruppo',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => 'Aggiunto nuovo ruolo',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => 'Aggiungere alla trasmissione',
|
||||||
'splash_add_user' => 'Utente aggiunto',
|
'splash_add_user' => 'Utente aggiunto',
|
||||||
|
'splash_clearcache' => 'Cache cancellata',
|
||||||
'splash_cleared_clipboard' => 'Appunti cancellati',
|
'splash_cleared_clipboard' => 'Appunti cancellati',
|
||||||
'splash_document_added' => 'Documento aggiunto',
|
'splash_document_added' => 'Documento aggiunto',
|
||||||
'splash_document_checkedout' => 'Documento approvato',
|
'splash_document_checkedout' => 'Documento approvato',
|
||||||
|
@ -1279,24 +1313,24 @@ URL: [url]',
|
||||||
'splash_document_unlocked' => 'Documento sbloccato',
|
'splash_document_unlocked' => 'Documento sbloccato',
|
||||||
'splash_edit_attribute' => 'Attributo modificato',
|
'splash_edit_attribute' => 'Attributo modificato',
|
||||||
'splash_edit_group' => 'Gruppo modificato',
|
'splash_edit_group' => 'Gruppo modificato',
|
||||||
'splash_edit_role' => '',
|
'splash_edit_role' => 'Ruolo memorizzata',
|
||||||
'splash_edit_user' => 'Utente modificato',
|
'splash_edit_user' => 'Utente modificato',
|
||||||
'splash_error_add_to_transmittal' => '',
|
'splash_error_add_to_transmittal' => 'Errore durante l\'aggiunta di documento per la trasmissione',
|
||||||
'splash_folder_edited' => 'Cartella modificata',
|
'splash_folder_edited' => 'Cartella modificata',
|
||||||
'splash_importfs' => '',
|
'splash_importfs' => 'Importati [Documenti] documenti e cartelle [cartelle]',
|
||||||
'splash_invalid_folder_id' => 'ID cartella non valido',
|
'splash_invalid_folder_id' => 'ID cartella non valido',
|
||||||
'splash_invalid_searchterm' => 'Termine di ricerca non valido',
|
'splash_invalid_searchterm' => 'Termine di ricerca non valido',
|
||||||
'splash_moved_clipboard' => 'Appunti trasferiti nella cartella corrente',
|
'splash_moved_clipboard' => 'Appunti trasferiti nella cartella corrente',
|
||||||
'splash_move_document' => '',
|
'splash_move_document' => 'Documento spostato',
|
||||||
'splash_move_folder' => '',
|
'splash_move_folder' => 'Cartella spostato',
|
||||||
'splash_removed_from_clipboard' => 'Rimosso dagli appunti',
|
'splash_removed_from_clipboard' => 'Rimosso dagli appunti',
|
||||||
'splash_rm_attribute' => 'Attributo rimosso',
|
'splash_rm_attribute' => 'Attributo rimosso',
|
||||||
'splash_rm_document' => 'Documento rimosso',
|
'splash_rm_document' => 'Documento rimosso',
|
||||||
'splash_rm_folder' => 'Cartella eliminata',
|
'splash_rm_folder' => 'Cartella eliminata',
|
||||||
'splash_rm_group' => 'Gruppo eliminato',
|
'splash_rm_group' => 'Gruppo eliminato',
|
||||||
'splash_rm_group_member' => 'Membro del gruppo eliminato',
|
'splash_rm_group_member' => 'Membro del gruppo eliminato',
|
||||||
'splash_rm_role' => '',
|
'splash_rm_role' => 'Ruolo cancellato',
|
||||||
'splash_rm_transmittal' => '',
|
'splash_rm_transmittal' => 'Trasmissione cancellato',
|
||||||
'splash_rm_user' => 'Utente eliminato',
|
'splash_rm_user' => 'Utente eliminato',
|
||||||
'splash_settings_saved' => 'Impostazioni salvate',
|
'splash_settings_saved' => 'Impostazioni salvate',
|
||||||
'splash_substituted_user' => 'Utente sostituito',
|
'splash_substituted_user' => 'Utente sostituito',
|
||||||
|
@ -1324,20 +1358,21 @@ URL: [url]',
|
||||||
'status_revisor_removed' => 'Revisore rimosso dalla lista',
|
'status_revisor_removed' => 'Revisore rimosso dalla lista',
|
||||||
'status_unknown' => 'Sconosciuto',
|
'status_unknown' => 'Sconosciuto',
|
||||||
'storage_size' => 'Spazio di archiviazione',
|
'storage_size' => 'Spazio di archiviazione',
|
||||||
|
'submit_2_fact_auth' => 'Salva segreto',
|
||||||
'submit_approval' => 'Invio approvazione',
|
'submit_approval' => 'Invio approvazione',
|
||||||
'submit_login' => 'Accedi',
|
'submit_login' => 'Accedi',
|
||||||
'submit_password' => 'Impostazione nuova password',
|
'submit_password' => 'Impostazione nuova password',
|
||||||
'submit_password_forgotten' => 'Inizio processo di recupero',
|
'submit_password_forgotten' => 'Inizio processo di recupero',
|
||||||
'submit_receipt' => 'Invio ricevuta',
|
'submit_receipt' => 'Invio ricevuta',
|
||||||
'submit_review' => 'Invio revisione',
|
'submit_review' => 'Invio revisione',
|
||||||
'submit_revision' => '',
|
'submit_revision' => 'Aggiungere Revisione',
|
||||||
'submit_userinfo' => 'Invio info utente',
|
'submit_userinfo' => 'Invio info utente',
|
||||||
'substitute_to_user' => 'Cambia in \'[username]\'',
|
'substitute_to_user' => 'Cambia in \'[username]\'',
|
||||||
'substitute_user' => 'Impersona utente',
|
'substitute_user' => 'Impersona utente',
|
||||||
'success_add_aro' => '',
|
'success_add_aro' => 'Aggiunto richiesta di accesso oggetto',
|
||||||
'success_add_permission' => '',
|
'success_add_permission' => 'Il permesso aggiungato',
|
||||||
'success_remove_permission' => '',
|
'success_remove_permission' => 'Il permesso rimosso',
|
||||||
'success_toogle_permission' => '',
|
'success_toogle_permission' => 'Il permesso è cambiato',
|
||||||
'sunday' => 'Domenica',
|
'sunday' => 'Domenica',
|
||||||
'sunday_abbr' => 'Dom',
|
'sunday_abbr' => 'Dom',
|
||||||
'sv_SE' => 'Svedese',
|
'sv_SE' => 'Svedese',
|
||||||
|
@ -1346,7 +1381,7 @@ URL: [url]',
|
||||||
'takeOverGrpReviewer' => 'Riprendi il gruppo dei revisori dall\'ultima versione.',
|
'takeOverGrpReviewer' => 'Riprendi il gruppo dei revisori dall\'ultima versione.',
|
||||||
'takeOverIndApprover' => 'Riprendi l\'approvatore dall\'ultima versione.',
|
'takeOverIndApprover' => 'Riprendi l\'approvatore dall\'ultima versione.',
|
||||||
'takeOverIndReviewer' => 'Riprendi il revisore dall\'ultima versione.',
|
'takeOverIndReviewer' => 'Riprendi il revisore dall\'ultima versione.',
|
||||||
'tasks' => '',
|
'tasks' => 'Compiti',
|
||||||
'testmail_body' => 'Questo messaggio di posta elettronica è solo un test per verificare la configurazione del repository',
|
'testmail_body' => 'Questo messaggio di posta elettronica è solo un test per verificare la configurazione del repository',
|
||||||
'testmail_subject' => 'Messaggio di test',
|
'testmail_subject' => 'Messaggio di test',
|
||||||
'theme' => 'Tema',
|
'theme' => 'Tema',
|
||||||
|
@ -1354,11 +1389,11 @@ URL: [url]',
|
||||||
'thursday_abbr' => 'Gio',
|
'thursday_abbr' => 'Gio',
|
||||||
'timeline' => 'Linea del Tempo',
|
'timeline' => 'Linea del Tempo',
|
||||||
'timeline_add_file' => 'Nuovo allegato',
|
'timeline_add_file' => 'Nuovo allegato',
|
||||||
'timeline_add_version' => '',
|
'timeline_add_version' => 'Nuova versione [version]',
|
||||||
'timeline_full_add_file' => '',
|
'timeline_full_add_file' => '[document]<br />Nuovo attacco',
|
||||||
'timeline_full_add_version' => '',
|
'timeline_full_add_version' => '[document]<br />Nuovo versione [version]',
|
||||||
'timeline_full_status_change' => '',
|
'timeline_full_status_change' => '[document]<br />Versione [version]: [status]',
|
||||||
'timeline_selected_item' => '',
|
'timeline_selected_item' => 'Documento selezionato',
|
||||||
'timeline_skip_add_file' => 'allegato aggiunto',
|
'timeline_skip_add_file' => 'allegato aggiunto',
|
||||||
'timeline_skip_status_change_-1' => 'respinto',
|
'timeline_skip_status_change_-1' => 'respinto',
|
||||||
'timeline_skip_status_change_-3' => 'scaduto',
|
'timeline_skip_status_change_-3' => 'scaduto',
|
||||||
|
@ -1366,9 +1401,10 @@ URL: [url]',
|
||||||
'timeline_skip_status_change_1' => 'in attesa di approvazione',
|
'timeline_skip_status_change_1' => 'in attesa di approvazione',
|
||||||
'timeline_skip_status_change_2' => 'rilasciato',
|
'timeline_skip_status_change_2' => 'rilasciato',
|
||||||
'timeline_skip_status_change_3' => 'nel workflow',
|
'timeline_skip_status_change_3' => 'nel workflow',
|
||||||
'timeline_status_change' => 'Versione - Stato',
|
'timeline_status_change' => 'Versione [version]: Stato',
|
||||||
'to' => 'A',
|
'to' => 'A',
|
||||||
'toggle_manager' => 'Gestore',
|
'toggle_manager' => 'Gestore',
|
||||||
|
'toggle_qrcode' => 'Mostri / nascondi codice QR',
|
||||||
'to_before_from' => 'La data di fine non può essere antecedente a quella di inizio',
|
'to_before_from' => 'La data di fine non può essere antecedente a quella di inizio',
|
||||||
'transition_triggered_email' => 'Inizio transizione del flusso di lavoro',
|
'transition_triggered_email' => 'Inizio transizione del flusso di lavoro',
|
||||||
'transition_triggered_email_body' => 'Transizione del flusso di lavoro iniziata
|
'transition_triggered_email_body' => 'Transizione del flusso di lavoro iniziata
|
||||||
|
@ -1393,7 +1429,7 @@ URL: [url]',
|
||||||
'tr_TR' => 'Turco',
|
'tr_TR' => 'Turco',
|
||||||
'tuesday' => 'Martedì',
|
'tuesday' => 'Martedì',
|
||||||
'tuesday_abbr' => 'Mar',
|
'tuesday_abbr' => 'Mar',
|
||||||
'type_of_hook' => '',
|
'type_of_hook' => 'Tipo',
|
||||||
'type_to_search' => 'Digitare per cercare',
|
'type_to_search' => 'Digitare per cercare',
|
||||||
'uk_UA' => 'Ucraino',
|
'uk_UA' => 'Ucraino',
|
||||||
'under_folder' => 'Nella cartella',
|
'under_folder' => 'Nella cartella',
|
||||||
|
@ -1474,7 +1510,7 @@ URL: [url]',
|
||||||
'workflow_management' => 'Gestione flusso di lavoro',
|
'workflow_management' => 'Gestione flusso di lavoro',
|
||||||
'workflow_name' => 'Nome',
|
'workflow_name' => 'Nome',
|
||||||
'workflow_no_states' => 'Prima di aggiungere un flusso di lavoro occorre definirne prima gli stati.',
|
'workflow_no_states' => 'Prima di aggiungere un flusso di lavoro occorre definirne prima gli stati.',
|
||||||
'workflow_state' => '',
|
'workflow_state' => 'Stato del flusso di lavoro',
|
||||||
'workflow_states_management' => 'Gestione stati del flusso di lavoro',
|
'workflow_states_management' => 'Gestione stati del flusso di lavoro',
|
||||||
'workflow_state_docstatus' => 'Stato del documento',
|
'workflow_state_docstatus' => 'Stato del documento',
|
||||||
'workflow_state_in_use' => 'Questo stato è attualmente usato da alcuni flussi di lavoro',
|
'workflow_state_in_use' => 'Questo stato è attualmente usato da alcuni flussi di lavoro',
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (939), daivoc (418)
|
// Translators: Admin (940), daivoc (418)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => '동의',
|
'accept' => '동의',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => '수정',
|
'action_revise' => '수정',
|
||||||
'add' => '추가',
|
'add' => '추가',
|
||||||
'add_approval' => '승인 추가',
|
'add_approval' => '승인 추가',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => '문서 추가',
|
'add_document' => '문서 추가',
|
||||||
'add_document_link' => '링크 추가',
|
'add_document_link' => '링크 추가',
|
||||||
'add_document_notify' => '알림 추가',
|
'add_document_notify' => '알림 추가',
|
||||||
|
@ -127,6 +131,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => '검토자 지정',
|
'assign_reviewers' => '검토자 지정',
|
||||||
'assign_user_property_to' => '사용자 속성에 할당',
|
'assign_user_property_to' => '사용자 속성에 할당',
|
||||||
'assumed_released' => '가정한 출시',
|
'assumed_released' => '가정한 출시',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => '이미 존재하는 속성',
|
'attrdef_exists' => '이미 존재하는 속성',
|
||||||
'attrdef_info' => '속성정보',
|
'attrdef_info' => '속성정보',
|
||||||
'attrdef_in_use' => '사용중인 속성 정의',
|
'attrdef_in_use' => '사용중인 속성 정의',
|
||||||
|
@ -223,6 +232,7 @@ URL: [url]',
|
||||||
'checkout_document' => '체크아웃',
|
'checkout_document' => '체크아웃',
|
||||||
'checkout_is_disabled' => '체크아웃된 문서는 설정에서 비활성화됩니다.',
|
'checkout_is_disabled' => '체크아웃된 문서는 설정에서 비활성화됩니다.',
|
||||||
'choose_attrdef' => '속성의 정의를 선택하세요',
|
'choose_attrdef' => '속성의 정의를 선택하세요',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => '선택하세요',
|
'choose_category' => '선택하세요',
|
||||||
'choose_group' => '그룹을 선택',
|
'choose_group' => '그룹을 선택',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -393,8 +403,10 @@ URL: [url]',
|
||||||
'edit_document_props' => '문서 편집',
|
'edit_document_props' => '문서 편집',
|
||||||
'edit_event' => '편집 이벤트',
|
'edit_event' => '편집 이벤트',
|
||||||
'edit_existing_access' => '편집 액세스 목록',
|
'edit_existing_access' => '편집 액세스 목록',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => '편집 알림 리스트',
|
'edit_existing_notify' => '편집 알림 리스트',
|
||||||
'edit_folder_access' => '액세스 편집',
|
'edit_folder_access' => '액세스 편집',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => '폴더 알림 목록',
|
'edit_folder_notify' => '폴더 알림 목록',
|
||||||
'edit_folder_props' => '폴더 편집',
|
'edit_folder_props' => '폴더 편집',
|
||||||
'edit_group' => '편집 그룹',
|
'edit_group' => '편집 그룹',
|
||||||
|
@ -408,6 +420,7 @@ URL: [url]',
|
||||||
'email_footer' => '내 계정\'을 사용하여 전자 메일 설정을 변경 할 수 있습니다',
|
'email_footer' => '내 계정\'을 사용하여 전자 메일 설정을 변경 할 수 있습니다',
|
||||||
'email_header' => 'DMS 서버에서 자동 생성된 메시지 입니다.',
|
'email_header' => 'DMS 서버에서 자동 생성된 메시지 입니다.',
|
||||||
'email_not_given' => '유효한 이메일 주소를 입력하십시오.',
|
'email_not_given' => '유효한 이메일 주소를 입력하십시오.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => '문서 또는 폴더 입력',
|
'empty_folder_list' => '문서 또는 폴더 입력',
|
||||||
'empty_notify_list' => '항목을 입력하세요',
|
'empty_notify_list' => '항목을 입력하세요',
|
||||||
'en_GB' => '영어 (GB)',
|
'en_GB' => '영어 (GB)',
|
||||||
|
@ -415,6 +428,7 @@ URL: [url]',
|
||||||
'error' => '오류',
|
'error' => '오류',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => '선택되지 문서는',
|
'error_no_document_selected' => '선택되지 문서는',
|
||||||
'error_no_folder_selected' => '어떤 폴더를 선택하지',
|
'error_no_folder_selected' => '어떤 폴더를 선택하지',
|
||||||
|
@ -489,6 +503,7 @@ URL: [url]',
|
||||||
'fullsearch' => '전체 텍스트 검색',
|
'fullsearch' => '전체 텍스트 검색',
|
||||||
'fullsearch_hint' => '전체 텍스트 색인 사용',
|
'fullsearch_hint' => '전체 텍스트 색인 사용',
|
||||||
'fulltext_info' => '전체 텍스트 색인 정보',
|
'fulltext_info' => '전체 텍스트 색인 정보',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => '속성',
|
'global_attributedefinitions' => '속성',
|
||||||
'global_default_keywords' => '글로벌 키워드',
|
'global_default_keywords' => '글로벌 키워드',
|
||||||
'global_document_categories' => '카테고리',
|
'global_document_categories' => '카테고리',
|
||||||
|
@ -641,6 +656,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '내 송부',
|
'my_transmittals' => '내 송부',
|
||||||
'name' => '이름',
|
'name' => '이름',
|
||||||
'needs_workflow_action' => '이 문서는 당신의주의가 필요합니다. 워크플로우 탭을 확인하시기 바랍니다.',
|
'needs_workflow_action' => '이 문서는 당신의주의가 필요합니다. 워크플로우 탭을 확인하시기 바랍니다.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => '불가',
|
'never' => '불가',
|
||||||
'new' => '새',
|
'new' => '새',
|
||||||
'new_attrdef' => '속성 정의 추가',
|
'new_attrdef' => '속성 정의 추가',
|
||||||
|
@ -701,6 +717,7 @@ URL : [url]',
|
||||||
'no_default_keywords' => '사용 가능한 키워드가 존재하지 않습니다.',
|
'no_default_keywords' => '사용 가능한 키워드가 존재하지 않습니다.',
|
||||||
'no_docs_checked_out' => '체크아웃 문서가 없습니다.',
|
'no_docs_checked_out' => '체크아웃 문서가 없습니다.',
|
||||||
'no_docs_locked' => '잠긴 문서가 없습니다.',
|
'no_docs_locked' => '잠긴 문서가 없습니다.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => '승인이 필요한 문서가 현재 없습니다.',
|
'no_docs_to_approve' => '승인이 필요한 문서가 현재 없습니다.',
|
||||||
'no_docs_to_look_at' => '.주의가 필요한 문서가 현재 없습니다',
|
'no_docs_to_look_at' => '.주의가 필요한 문서가 현재 없습니다',
|
||||||
'no_docs_to_receipt' => '문서 접수가 필요하지 않습니다',
|
'no_docs_to_receipt' => '문서 접수가 필요하지 않습니다',
|
||||||
|
@ -882,6 +899,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename] : [name] - 워크플로우 되돌림',
|
'rewind_workflow_email_subject' => '[sitename] : [name] - 워크플로우 되돌림',
|
||||||
'rewind_workflow_warning' => '당신이 초기 상태로 워크플로를 뒤로 경우, 이 문서의 전체 워크플로우 로그가 삭제되며 복구 할 수 없습니다.',
|
'rewind_workflow_warning' => '당신이 초기 상태로 워크플로를 뒤로 경우, 이 문서의 전체 워크플로우 로그가 삭제되며 복구 할 수 없습니다.',
|
||||||
'rm_attrdef' => '속성 정의 제거',
|
'rm_attrdef' => '속성 정의 제거',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => '범주 제거',
|
'rm_default_keyword_category' => '범주 제거',
|
||||||
'rm_document' => '문서 제거',
|
'rm_document' => '문서 제거',
|
||||||
'rm_document_category' => '카테고리 제거',
|
'rm_document_category' => '카테고리 제거',
|
||||||
|
@ -939,6 +957,7 @@ URL : [url]',
|
||||||
'search_time' => '경과 시간 : [time] 초',
|
'search_time' => '경과 시간 : [time] 초',
|
||||||
'seconds' => '초',
|
'seconds' => '초',
|
||||||
'selection' => '선택',
|
'selection' => '선택',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => '범주를 선택합니다',
|
'select_category' => '범주를 선택합니다',
|
||||||
'select_groups' => '그룹을 선택합니다',
|
'select_groups' => '그룹을 선택합니다',
|
||||||
'select_grp_approvers' => '그룹 승인을 선택합니다',
|
'select_grp_approvers' => '그룹 승인을 선택합니다',
|
||||||
|
@ -1028,6 +1047,8 @@ URL : [url]',
|
||||||
'settings_Edition' => '판(Edition) 설정',
|
'settings_Edition' => '판(Edition) 설정',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '문서 수신의 응답 활성화',
|
'settings_enableAcknowledgeWorkflow' => '문서 수신의 응답 활성화',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '문서의 수신 확인을 위해 워크플로어를 선택하고 활성화 합니다.',
|
'settings_enableAcknowledgeWorkflow_desc' => '문서의 수신 확인을 위해 워크플로어를 선택하고 활성화 합니다.',
|
||||||
'settings_enableAdminRevApp' => '관리자에 대한 검토 / 승인 허용',
|
'settings_enableAdminRevApp' => '관리자에 대한 검토 / 승인 허용',
|
||||||
|
@ -1136,11 +1157,13 @@ URL : [url]',
|
||||||
'settings_luceneDir' => '전체 텍스트 인덱스에 대한 디렉토리',
|
'settings_luceneDir' => '전체 텍스트 인덱스에 대한 디렉토리',
|
||||||
'settings_luceneDir_desc' => 'Lucene 색인 경로',
|
'settings_luceneDir_desc' => 'Lucene 색인 경로',
|
||||||
'settings_maxDirID' => '최대 디렉토리 ID',
|
'settings_maxDirID' => '최대 디렉토리 ID',
|
||||||
'settings_maxDirID_desc' => '상위 디렉토리 당 서브 디렉토리의 최대 수 기본값 : 32700',
|
'settings_maxDirID_desc' => '',
|
||||||
'settings_maxExecutionTime' => '최대 실행 시간 (들)',
|
'settings_maxExecutionTime' => '최대 실행 시간 (들)',
|
||||||
'settings_maxExecutionTime_desc' => '종료되기 전 스크립트의 구문 분석 할 수있는 최대 시간을 초 단위로 설정',
|
'settings_maxExecutionTime_desc' => '종료되기 전 스크립트의 구문 분석 할 수있는 최대 시간을 초 단위로 설정',
|
||||||
'settings_maxRecursiveCount' => '최대 재귀 문서 / 폴더의 수',
|
'settings_maxRecursiveCount' => '최대 재귀 문서 / 폴더의 수',
|
||||||
'settings_maxRecursiveCount_desc' => '이것은 재귀적으로 개체를 셀 때 사용 권한이 확인됩니다 문서 및 폴더의 최대 수입니다. 이 수를 초과하면 폴더보기에서 문서 나 폴더의 수가 추정됩니다.',
|
'settings_maxRecursiveCount_desc' => '이것은 재귀적으로 개체를 셀 때 사용 권한이 확인됩니다 문서 및 폴더의 최대 수입니다. 이 수를 초과하면 폴더보기에서 문서 나 폴더의 수가 추정됩니다.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => '기타 설정을 구성합니다. 기본 로그인 : admin/admin',
|
'settings_more_settings' => '기타 설정을 구성합니다. 기본 로그인 : admin/admin',
|
||||||
'settings_notfound' => '찾을 수 없음',
|
'settings_notfound' => '찾을 수 없음',
|
||||||
'settings_Notification' => '알림 설정',
|
'settings_Notification' => '알림 설정',
|
||||||
|
@ -1262,6 +1285,7 @@ URL : [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => '새 사용자 추가',
|
'splash_add_user' => '새 사용자 추가',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => '클립 보드 비우기',
|
'splash_cleared_clipboard' => '클립 보드 비우기',
|
||||||
'splash_document_added' => '문서를 추가',
|
'splash_document_added' => '문서를 추가',
|
||||||
'splash_document_checkedout' => '문서 체크아웃',
|
'splash_document_checkedout' => '문서 체크아웃',
|
||||||
|
@ -1315,6 +1339,7 @@ URL : [url]',
|
||||||
'status_revisor_removed' => '감사자 목록에서 제거',
|
'status_revisor_removed' => '감사자 목록에서 제거',
|
||||||
'status_unknown' => '알 수없는',
|
'status_unknown' => '알 수없는',
|
||||||
'storage_size' => '저장 크기',
|
'storage_size' => '저장 크기',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => '승인 제출',
|
'submit_approval' => '승인 제출',
|
||||||
'submit_login' => '로그인',
|
'submit_login' => '로그인',
|
||||||
'submit_password' => '새 비밀번호를 설정',
|
'submit_password' => '새 비밀번호를 설정',
|
||||||
|
@ -1360,6 +1385,7 @@ URL : [url]',
|
||||||
'timeline_status_change' => '버전 [version]: [status]',
|
'timeline_status_change' => '버전 [version]: [status]',
|
||||||
'to' => '마감일',
|
'to' => '마감일',
|
||||||
'toggle_manager' => '전환 매니저',
|
'toggle_manager' => '전환 매니저',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => '종료일은 시작일 전이 될수 없습니다',
|
'to_before_from' => '종료일은 시작일 전이 될수 없습니다',
|
||||||
'transition_triggered_email' => '워크플로우 전환 트리거',
|
'transition_triggered_email' => '워크플로우 전환 트리거',
|
||||||
'transition_triggered_email_body' => '워크플로우 전환 트리거
|
'transition_triggered_email_body' => '워크플로우 전환 트리거
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (718), gijsbertush (329), pepijn (45), reinoutdijkstra@hotmail.com (270)
|
// Translators: Admin (719), gijsbertush (329), pepijn (45), reinoutdijkstra@hotmail.com (270)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Accept',
|
'accept' => 'Accept',
|
||||||
'access_control' => 'Toegangscontrole',
|
'access_control' => 'Toegangscontrole',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Herzie',
|
'action_revise' => 'Herzie',
|
||||||
'add' => 'Toevoegen',
|
'add' => 'Toevoegen',
|
||||||
'add_approval' => 'Verzend [Goedkeuring]',
|
'add_approval' => 'Verzend [Goedkeuring]',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Document toevoegen',
|
'add_document' => 'Document toevoegen',
|
||||||
'add_document_link' => 'Link toevoegen',
|
'add_document_link' => 'Link toevoegen',
|
||||||
'add_document_notify' => 'Notificatie toekennen',
|
'add_document_notify' => 'Notificatie toekennen',
|
||||||
|
@ -120,6 +124,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Aangewezen [Controleurs]',
|
'assign_reviewers' => 'Aangewezen [Controleurs]',
|
||||||
'assign_user_property_to' => 'Wijs gebruikers machtigingen toe aan',
|
'assign_user_property_to' => 'Wijs gebruikers machtigingen toe aan',
|
||||||
'assumed_released' => 'aangenomen status: Gepubliceerd',
|
'assumed_released' => 'aangenomen status: Gepubliceerd',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Kenmerk definitie bestaat al',
|
'attrdef_exists' => 'Kenmerk definitie bestaat al',
|
||||||
'attrdef_info' => 'Kenmerk info',
|
'attrdef_info' => 'Kenmerk info',
|
||||||
'attrdef_in_use' => 'Kenmerk definitie nog in gebruikt',
|
'attrdef_in_use' => 'Kenmerk definitie nog in gebruikt',
|
||||||
|
@ -214,6 +223,7 @@ URL: [url]',
|
||||||
'checkout_document' => 'Checkout-document',
|
'checkout_document' => 'Checkout-document',
|
||||||
'checkout_is_disabled' => 'Checkout is niet mogelijk',
|
'checkout_is_disabled' => 'Checkout is niet mogelijk',
|
||||||
'choose_attrdef' => 'Selecteer een kenmerk definitie',
|
'choose_attrdef' => 'Selecteer een kenmerk definitie',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Selecteer a.u.b.',
|
'choose_category' => 'Selecteer a.u.b.',
|
||||||
'choose_group' => 'Selecteer Groep',
|
'choose_group' => 'Selecteer Groep',
|
||||||
'choose_role' => 'Selecteer een rol',
|
'choose_role' => 'Selecteer een rol',
|
||||||
|
@ -386,8 +396,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Wijzig document',
|
'edit_document_props' => 'Wijzig document',
|
||||||
'edit_event' => 'Activiteit wijzigen',
|
'edit_event' => 'Activiteit wijzigen',
|
||||||
'edit_existing_access' => 'Wijzig toegangslijst',
|
'edit_existing_access' => 'Wijzig toegangslijst',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Wijzig Notificatie lijst',
|
'edit_existing_notify' => 'Wijzig Notificatie lijst',
|
||||||
'edit_folder_access' => 'Wijzig toegang',
|
'edit_folder_access' => 'Wijzig toegang',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Map Notificatie Lijst',
|
'edit_folder_notify' => 'Map Notificatie Lijst',
|
||||||
'edit_folder_props' => 'Wijzig Map eigenschappen',
|
'edit_folder_props' => 'Wijzig Map eigenschappen',
|
||||||
'edit_group' => 'Wijzig Groep',
|
'edit_group' => 'Wijzig Groep',
|
||||||
|
@ -401,6 +413,7 @@ URL: [url]',
|
||||||
'email_footer' => 'U kunt altijd uw e-mail instellingen wijzigen via de \'Mijn Account\' opties',
|
'email_footer' => 'U kunt altijd uw e-mail instellingen wijzigen via de \'Mijn Account\' opties',
|
||||||
'email_header' => 'Dit is een automatisch gegenereerd bericht van de DMS server.',
|
'email_header' => 'Dit is een automatisch gegenereerd bericht van de DMS server.',
|
||||||
'email_not_given' => 'Voer aub een geldig email adres in.',
|
'email_not_given' => 'Voer aub een geldig email adres in.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Geen documenten of mappen',
|
'empty_folder_list' => 'Geen documenten of mappen',
|
||||||
'empty_notify_list' => 'Geen gegevens',
|
'empty_notify_list' => 'Geen gegevens',
|
||||||
'en_GB' => 'Engels (GB)',
|
'en_GB' => 'Engels (GB)',
|
||||||
|
@ -408,6 +421,7 @@ URL: [url]',
|
||||||
'error' => 'Fout',
|
'error' => 'Fout',
|
||||||
'error_add_aro' => 'Verzoek om toegang toegevoegd',
|
'error_add_aro' => 'Verzoek om toegang toegevoegd',
|
||||||
'error_add_permission' => 'Voeg permissie toe',
|
'error_add_permission' => 'Voeg permissie toe',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Geen document geselecteerd',
|
'error_no_document_selected' => 'Geen document geselecteerd',
|
||||||
'error_no_folder_selected' => 'Geen map geselecteerd',
|
'error_no_folder_selected' => 'Geen map geselecteerd',
|
||||||
|
@ -482,6 +496,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Zoek in volledige tekst',
|
'fullsearch' => 'Zoek in volledige tekst',
|
||||||
'fullsearch_hint' => 'Volledige tekst index',
|
'fullsearch_hint' => 'Volledige tekst index',
|
||||||
'fulltext_info' => 'Volledige tekst index info',
|
'fulltext_info' => 'Volledige tekst index info',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Kenmerk definities',
|
'global_attributedefinitions' => 'Kenmerk definities',
|
||||||
'global_default_keywords' => 'Algemene sleutelwoorden',
|
'global_default_keywords' => 'Algemene sleutelwoorden',
|
||||||
'global_document_categories' => 'Categorieen',
|
'global_document_categories' => 'Categorieen',
|
||||||
|
@ -634,6 +649,7 @@ URL: [url]',
|
||||||
'my_transmittals' => 'Mijn zendingen',
|
'my_transmittals' => 'Mijn zendingen',
|
||||||
'name' => 'Naam',
|
'name' => 'Naam',
|
||||||
'needs_workflow_action' => 'Dit document vereist uw aandacht. Bekijk deze onder het tabblad workflows.',
|
'needs_workflow_action' => 'Dit document vereist uw aandacht. Bekijk deze onder het tabblad workflows.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => 'Nooit',
|
'never' => 'Nooit',
|
||||||
'new' => 'Nieuw',
|
'new' => 'Nieuw',
|
||||||
'new_attrdef' => 'Voeg kenmerk definitie toe',
|
'new_attrdef' => 'Voeg kenmerk definitie toe',
|
||||||
|
@ -693,6 +709,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Geen Sleutelwoorden beschikbaar',
|
'no_default_keywords' => 'Geen Sleutelwoorden beschikbaar',
|
||||||
'no_docs_checked_out' => 'Geen documenten in gebruik genomen',
|
'no_docs_checked_out' => 'Geen documenten in gebruik genomen',
|
||||||
'no_docs_locked' => 'Geen documenten in gebruik.',
|
'no_docs_locked' => 'Geen documenten in gebruik.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Er zijn momenteel geen documenten die goedkeuring behoeven.',
|
'no_docs_to_approve' => 'Er zijn momenteel geen documenten die goedkeuring behoeven.',
|
||||||
'no_docs_to_look_at' => 'Geen documenten die aandacht behoeven.',
|
'no_docs_to_look_at' => 'Geen documenten die aandacht behoeven.',
|
||||||
'no_docs_to_receipt' => 'Geen documenten te ontvangen',
|
'no_docs_to_receipt' => 'Geen documenten te ontvangen',
|
||||||
|
@ -891,6 +908,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Workflow is teruggezet',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Workflow is teruggezet',
|
||||||
'rewind_workflow_warning' => 'Als u de workflow terugzet naar oorspronkelijke staat, dan wordt de workflow historie voor dit document verwijderd en onherstelbaar.',
|
'rewind_workflow_warning' => 'Als u de workflow terugzet naar oorspronkelijke staat, dan wordt de workflow historie voor dit document verwijderd en onherstelbaar.',
|
||||||
'rm_attrdef' => 'Verwijder kenmerk definitie',
|
'rm_attrdef' => 'Verwijder kenmerk definitie',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Verwijder Categorie',
|
'rm_default_keyword_category' => 'Verwijder Categorie',
|
||||||
'rm_document' => 'Verwijder Document',
|
'rm_document' => 'Verwijder Document',
|
||||||
'rm_document_category' => 'Verwijder categorie',
|
'rm_document_category' => 'Verwijder categorie',
|
||||||
|
@ -948,6 +966,7 @@ URL: [url]',
|
||||||
'search_time' => 'Verstreken tijd: [time] sec.',
|
'search_time' => 'Verstreken tijd: [time] sec.',
|
||||||
'seconds' => 'seconden',
|
'seconds' => 'seconden',
|
||||||
'selection' => 'Selectie',
|
'selection' => 'Selectie',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'klik om categorie te selecteren',
|
'select_category' => 'klik om categorie te selecteren',
|
||||||
'select_groups' => 'Klik om groep te selecteren',
|
'select_groups' => 'Klik om groep te selecteren',
|
||||||
'select_grp_approvers' => 'Klik om beoordelaars te selecteren',
|
'select_grp_approvers' => 'Klik om beoordelaars te selecteren',
|
||||||
|
@ -1041,6 +1060,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Uitgave instellingen',
|
'settings_Edition' => 'Uitgave instellingen',
|
||||||
'settings_editOnlineFileTypes' => 'Instellingen Filetypes',
|
'settings_editOnlineFileTypes' => 'Instellingen Filetypes',
|
||||||
'settings_editOnlineFileTypes_desc' => 'Online zoekmethoden bewerken',
|
'settings_editOnlineFileTypes_desc' => 'Online zoekmethoden bewerken',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => 'Aanzetten Workflow-stappen',
|
'settings_enableAcknowledgeWorkflow' => 'Aanzetten Workflow-stappen',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => 'Aanzetten workflow-stappen',
|
'settings_enableAcknowledgeWorkflow_desc' => 'Aanzetten workflow-stappen',
|
||||||
'settings_enableAdminRevApp' => 'Inschakelen Beheer Contr/Beoord',
|
'settings_enableAdminRevApp' => 'Inschakelen Beheer Contr/Beoord',
|
||||||
|
@ -1149,11 +1170,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Map voor volledigetekst index',
|
'settings_luceneDir' => 'Map voor volledigetekst index',
|
||||||
'settings_luceneDir_desc' => 'Pad naar Lucene index',
|
'settings_luceneDir_desc' => 'Pad naar Lucene index',
|
||||||
'settings_maxDirID' => 'Max Map ID',
|
'settings_maxDirID' => 'Max Map ID',
|
||||||
'settings_maxDirID_desc' => 'Maximaal toegestane aantal submappen per bovenliggende map. Standaard: 32700.',
|
'settings_maxDirID_desc' => 'Maximaal toegestane aantal submappen per bovenliggende map. Standaard: 0.',
|
||||||
'settings_maxExecutionTime' => 'Max Uitvoertijd (s)',
|
'settings_maxExecutionTime' => 'Max Uitvoertijd (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Dit bepaald de maximale tijd in seconden waarin een script mag worden uitgevoerd, voordat het afgebroken wordt',
|
'settings_maxExecutionTime_desc' => 'Dit bepaald de maximale tijd in seconden waarin een script mag worden uitgevoerd, voordat het afgebroken wordt',
|
||||||
'settings_maxRecursiveCount' => 'Max. nummers of recursieve document/map telling',
|
'settings_maxRecursiveCount' => 'Max. nummers of recursieve document/map telling',
|
||||||
'settings_maxRecursiveCount_desc' => 'Dit is het maximum aantal documenten of mappen dat zal worden gecontroleerd voor toegangsrechten bij recursieve objecten telling. Als dit aantal is overschreden, zal het aantal documenten en mappen in de het map overzicht worden geschat.',
|
'settings_maxRecursiveCount_desc' => 'Dit is het maximum aantal documenten of mappen dat zal worden gecontroleerd voor toegangsrechten bij recursieve objecten telling. Als dit aantal is overschreden, zal het aantal documenten en mappen in de het map overzicht worden geschat.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Meer instellingen. Standaard login: admin/admin',
|
'settings_more_settings' => 'Meer instellingen. Standaard login: admin/admin',
|
||||||
'settings_notfound' => 'Niet gevonden',
|
'settings_notfound' => 'Niet gevonden',
|
||||||
'settings_Notification' => 'Notificatie instellingen',
|
'settings_Notification' => 'Notificatie instellingen',
|
||||||
|
@ -1275,6 +1298,7 @@ URL: [url]',
|
||||||
'splash_add_role' => 'Nieuwe rol toegevoegd',
|
'splash_add_role' => 'Nieuwe rol toegevoegd',
|
||||||
'splash_add_to_transmittal' => 'Toevoegen aan verzending',
|
'splash_add_to_transmittal' => 'Toevoegen aan verzending',
|
||||||
'splash_add_user' => 'Nieuwe gebruiker toegevoegd',
|
'splash_add_user' => 'Nieuwe gebruiker toegevoegd',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Klembord leeg gemaakt',
|
'splash_cleared_clipboard' => 'Klembord leeg gemaakt',
|
||||||
'splash_document_added' => 'Nieuw document toegevoegd',
|
'splash_document_added' => 'Nieuw document toegevoegd',
|
||||||
'splash_document_checkedout' => 'Document in gebruik genomen',
|
'splash_document_checkedout' => 'Document in gebruik genomen',
|
||||||
|
@ -1328,6 +1352,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => 'Verwijderd',
|
'status_revisor_removed' => 'Verwijderd',
|
||||||
'status_unknown' => 'Onbekend',
|
'status_unknown' => 'Onbekend',
|
||||||
'storage_size' => 'Omvang opslag',
|
'storage_size' => 'Omvang opslag',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Verzend [Goedkeuring]',
|
'submit_approval' => 'Verzend [Goedkeuring]',
|
||||||
'submit_login' => 'Log in',
|
'submit_login' => 'Log in',
|
||||||
'submit_password' => 'Nieuw wachtwoord instellen',
|
'submit_password' => 'Nieuw wachtwoord instellen',
|
||||||
|
@ -1373,6 +1398,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Versie [version]: [status]',
|
'timeline_status_change' => 'Versie [version]: [status]',
|
||||||
'to' => 'aan',
|
'to' => 'aan',
|
||||||
'toggle_manager' => 'Wijzig Beheerder',
|
'toggle_manager' => 'Wijzig Beheerder',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'De einddatum mag niet voor de startdatum liggen',
|
'to_before_from' => 'De einddatum mag niet voor de startdatum liggen',
|
||||||
'transition_triggered_email' => 'Workflow-overgang geactiveerd',
|
'transition_triggered_email' => 'Workflow-overgang geactiveerd',
|
||||||
'transition_triggered_email_body' => 'Workflow Overgang
|
'transition_triggered_email_body' => 'Workflow Overgang
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (737), netixw (84), romi (93), uGn (112)
|
// Translators: Admin (739), netixw (84), romi (93), uGn (112)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Akceptuj',
|
'accept' => 'Akceptuj',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Korekta',
|
'action_revise' => 'Korekta',
|
||||||
'add' => 'Dodaj',
|
'add' => 'Dodaj',
|
||||||
'add_approval' => 'Zaakceptuj',
|
'add_approval' => 'Zaakceptuj',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Dodaj dokument',
|
'add_document' => 'Dodaj dokument',
|
||||||
'add_document_link' => 'Dodaj link',
|
'add_document_link' => 'Dodaj link',
|
||||||
'add_document_notify' => 'Przypisz powiadomienia',
|
'add_document_notify' => 'Przypisz powiadomienia',
|
||||||
|
@ -115,6 +119,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Przypisz recenzentów',
|
'assign_reviewers' => 'Przypisz recenzentów',
|
||||||
'assign_user_property_to' => 'Przypisz właściwości użytkownika do',
|
'assign_user_property_to' => 'Przypisz właściwości użytkownika do',
|
||||||
'assumed_released' => 'Assumed released',
|
'assumed_released' => 'Assumed released',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Definicja atrybutu już istnieje',
|
'attrdef_exists' => 'Definicja atrybutu już istnieje',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'Definicja atrybutu nadal jest w użyciu',
|
'attrdef_in_use' => 'Definicja atrybutu nadal jest w użyciu',
|
||||||
|
@ -209,6 +218,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => 'Proszę wybrać definicję atrybutu',
|
'choose_attrdef' => 'Proszę wybrać definicję atrybutu',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Proszę wybrać',
|
'choose_category' => 'Proszę wybrać',
|
||||||
'choose_group' => 'Wybierz grupę',
|
'choose_group' => 'Wybierz grupę',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -381,8 +391,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Edytuj dokument',
|
'edit_document_props' => 'Edytuj dokument',
|
||||||
'edit_event' => 'Edytuj zdarzenie',
|
'edit_event' => 'Edytuj zdarzenie',
|
||||||
'edit_existing_access' => 'Edytuj listę dostępu',
|
'edit_existing_access' => 'Edytuj listę dostępu',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Edytuj listę powiadomień',
|
'edit_existing_notify' => 'Edytuj listę powiadomień',
|
||||||
'edit_folder_access' => 'Edytuj dostęp',
|
'edit_folder_access' => 'Edytuj dostęp',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Lista powiadomień dla folderu',
|
'edit_folder_notify' => 'Lista powiadomień dla folderu',
|
||||||
'edit_folder_props' => 'Edytuj folder',
|
'edit_folder_props' => 'Edytuj folder',
|
||||||
'edit_group' => 'Edytuj grupę',
|
'edit_group' => 'Edytuj grupę',
|
||||||
|
@ -396,6 +408,7 @@ URL: [url]',
|
||||||
'email_footer' => 'W każdej chwili możesz zmienić swój email używając zakładki \'Moje konto\'.',
|
'email_footer' => 'W każdej chwili możesz zmienić swój email używając zakładki \'Moje konto\'.',
|
||||||
'email_header' => 'To jest automatyczne powiadomienie serwera DMS.',
|
'email_header' => 'To jest automatyczne powiadomienie serwera DMS.',
|
||||||
'email_not_given' => 'Proszę podać poprawny adres email.',
|
'email_not_given' => 'Proszę podać poprawny adres email.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Nie ma dokumentów lub folderów',
|
'empty_folder_list' => 'Nie ma dokumentów lub folderów',
|
||||||
'empty_notify_list' => 'Brak elementów',
|
'empty_notify_list' => 'Brak elementów',
|
||||||
'en_GB' => 'Angielski (GB)',
|
'en_GB' => 'Angielski (GB)',
|
||||||
|
@ -403,6 +416,7 @@ URL: [url]',
|
||||||
'error' => 'Błąd',
|
'error' => 'Błąd',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Brak wybranych dokumentów',
|
'error_no_document_selected' => 'Brak wybranych dokumentów',
|
||||||
'error_no_folder_selected' => 'Brak wybranych katalogów',
|
'error_no_folder_selected' => 'Brak wybranych katalogów',
|
||||||
|
@ -477,6 +491,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Przeszukiwanie treści dokumentów',
|
'fullsearch' => 'Przeszukiwanie treści dokumentów',
|
||||||
'fullsearch_hint' => 'Przeszukuj treść dokumentów',
|
'fullsearch_hint' => 'Przeszukuj treść dokumentów',
|
||||||
'fulltext_info' => 'Informacje o indeksie pełnotekstowym',
|
'fulltext_info' => 'Informacje o indeksie pełnotekstowym',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Definicje atrybutów',
|
'global_attributedefinitions' => 'Definicje atrybutów',
|
||||||
'global_default_keywords' => 'Globalne słowa kluczowe',
|
'global_default_keywords' => 'Globalne słowa kluczowe',
|
||||||
'global_document_categories' => 'Kategorie',
|
'global_document_categories' => 'Kategorie',
|
||||||
|
@ -506,7 +521,7 @@ URL: [url]',
|
||||||
'identical_version' => 'Nowa wersja jest identyczna z obecną',
|
'identical_version' => 'Nowa wersja jest identyczna z obecną',
|
||||||
'import' => '',
|
'import' => '',
|
||||||
'importfs' => '',
|
'importfs' => '',
|
||||||
'import_fs' => '',
|
'import_fs' => 'Import z systemu plików',
|
||||||
'import_fs_warning' => '',
|
'import_fs_warning' => '',
|
||||||
'include_content' => '',
|
'include_content' => '',
|
||||||
'include_documents' => 'Uwzględnij dokumenty',
|
'include_documents' => 'Uwzględnij dokumenty',
|
||||||
|
@ -629,6 +644,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'Nazwa',
|
'name' => 'Nazwa',
|
||||||
'needs_workflow_action' => 'Dokument wymaga uwagi. Proszę sprawdzić kartę workflow.',
|
'needs_workflow_action' => 'Dokument wymaga uwagi. Proszę sprawdzić kartę workflow.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => '',
|
'never' => '',
|
||||||
'new' => 'Nowy',
|
'new' => 'Nowy',
|
||||||
'new_attrdef' => 'Dodaj definicję atrybutu',
|
'new_attrdef' => 'Dodaj definicję atrybutu',
|
||||||
|
@ -689,6 +705,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Nie ma słów kluczowych',
|
'no_default_keywords' => 'Nie ma słów kluczowych',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'Brak zablokowanych dokumentów.',
|
'no_docs_locked' => 'Brak zablokowanych dokumentów.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Aktualnie nie ma dokumentów wymagających akceptacji.',
|
'no_docs_to_approve' => 'Aktualnie nie ma dokumentów wymagających akceptacji.',
|
||||||
'no_docs_to_look_at' => 'Brak dokumentów wymagających uwagi.',
|
'no_docs_to_look_at' => 'Brak dokumentów wymagających uwagi.',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -847,6 +864,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Przewinięto proces',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Przewinięto proces',
|
||||||
'rewind_workflow_warning' => 'Jeżeli przewiniesz proces do stanu początkowego, to cały log dla tego dokumentu zostanie usunięty bezpowrotnie.',
|
'rewind_workflow_warning' => 'Jeżeli przewiniesz proces do stanu początkowego, to cały log dla tego dokumentu zostanie usunięty bezpowrotnie.',
|
||||||
'rm_attrdef' => 'Usuń definicję atrybutu',
|
'rm_attrdef' => 'Usuń definicję atrybutu',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Usuń kategorię',
|
'rm_default_keyword_category' => 'Usuń kategorię',
|
||||||
'rm_document' => 'Usuń dokument',
|
'rm_document' => 'Usuń dokument',
|
||||||
'rm_document_category' => 'Usuń kategorię',
|
'rm_document_category' => 'Usuń kategorię',
|
||||||
|
@ -904,6 +922,7 @@ URL: [url]',
|
||||||
'search_time' => 'Upływający czas: [time] sec.',
|
'search_time' => 'Upływający czas: [time] sec.',
|
||||||
'seconds' => 'sekund',
|
'seconds' => 'sekund',
|
||||||
'selection' => 'Wybierz',
|
'selection' => 'Wybierz',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Kliknij by wybrać kategorię',
|
'select_category' => 'Kliknij by wybrać kategorię',
|
||||||
'select_groups' => 'Kliknij by wybrać grupy',
|
'select_groups' => 'Kliknij by wybrać grupy',
|
||||||
'select_grp_approvers' => 'Kliknij by wybrać grupę zatwierdzającą',
|
'select_grp_approvers' => 'Kliknij by wybrać grupę zatwierdzającą',
|
||||||
|
@ -993,6 +1012,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Ustawienia edycji',
|
'settings_Edition' => 'Ustawienia edycji',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => 'Dołącz Administratora do recenzji/rewizji',
|
'settings_enableAdminRevApp' => 'Dołącz Administratora do recenzji/rewizji',
|
||||||
|
@ -1101,11 +1122,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Katalog dla indeksu pełnotekstowego',
|
'settings_luceneDir' => 'Katalog dla indeksu pełnotekstowego',
|
||||||
'settings_luceneDir_desc' => 'Ścieżka do indeksu Lucene',
|
'settings_luceneDir_desc' => 'Ścieżka do indeksu Lucene',
|
||||||
'settings_maxDirID' => 'Maksymalny ID katalogu',
|
'settings_maxDirID' => 'Maksymalny ID katalogu',
|
||||||
'settings_maxDirID_desc' => 'Maksymalna liczba podkatalogów dla katalogu nadrzędnego. Domyślnie: 32700.',
|
'settings_maxDirID_desc' => 'Maksymalna liczba podkatalogów dla katalogu nadrzędnego. Domyślnie: 0.',
|
||||||
'settings_maxExecutionTime' => 'Maksymalny czas wykonywania (s)',
|
'settings_maxExecutionTime' => 'Maksymalny czas wykonywania (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Ustawia maksymalny czas, liczony w sekundach, jaki ma na wykonanie skrypt zanim zostanie zakończony.',
|
'settings_maxExecutionTime_desc' => 'Ustawia maksymalny czas, liczony w sekundach, jaki ma na wykonanie skrypt zanim zostanie zakończony.',
|
||||||
'settings_maxRecursiveCount' => 'Max. liczba rekurencji dokumentów/folderów',
|
'settings_maxRecursiveCount' => 'Max. liczba rekurencji dokumentów/folderów',
|
||||||
'settings_maxRecursiveCount_desc' => 'Jest to maksymalna liczba dokumentów i folderów, które będą sprawdzane pod kątem praw dostępu, gdy włączone jest rekurencyjnie liczenie obiektów. Jeżeli liczba ta zostanie przekroczona to ilości dokumentów i folderów w widoku zostaną oszacowane.',
|
'settings_maxRecursiveCount_desc' => 'Jest to maksymalna liczba dokumentów i folderów, które będą sprawdzane pod kątem praw dostępu, gdy włączone jest rekurencyjnie liczenie obiektów. Jeżeli liczba ta zostanie przekroczona to ilości dokumentów i folderów w widoku zostaną oszacowane.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Wykonaj dalszą konfigurację. Domyślny login/hasło: admin/admin',
|
'settings_more_settings' => 'Wykonaj dalszą konfigurację. Domyślny login/hasło: admin/admin',
|
||||||
'settings_notfound' => 'Nie znaleziono',
|
'settings_notfound' => 'Nie znaleziono',
|
||||||
'settings_Notification' => 'Ustawienia powiadomień',
|
'settings_Notification' => 'Ustawienia powiadomień',
|
||||||
|
@ -1227,6 +1250,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Dodano nowego użytkownika',
|
'splash_add_user' => 'Dodano nowego użytkownika',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Wyczyszczono schowek',
|
'splash_cleared_clipboard' => 'Wyczyszczono schowek',
|
||||||
'splash_document_added' => '',
|
'splash_document_added' => '',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1280,6 +1304,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Nieznany',
|
'status_unknown' => 'Nieznany',
|
||||||
'storage_size' => 'Zajętość dysku',
|
'storage_size' => 'Zajętość dysku',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Zaakceptuj',
|
'submit_approval' => 'Zaakceptuj',
|
||||||
'submit_login' => 'Zaloguj się',
|
'submit_login' => 'Zaloguj się',
|
||||||
'submit_password' => 'Ustaw nowe hasło',
|
'submit_password' => 'Ustaw nowe hasło',
|
||||||
|
@ -1325,6 +1350,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Wersja [wersja]: [status]',
|
'timeline_status_change' => 'Wersja [wersja]: [status]',
|
||||||
'to' => 'Do',
|
'to' => 'Do',
|
||||||
'toggle_manager' => 'Przełączanie zarządcy',
|
'toggle_manager' => 'Przełączanie zarządcy',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => '',
|
'to_before_from' => '',
|
||||||
'transition_triggered_email' => 'Uruchomiono proces przepływu',
|
'transition_triggered_email' => 'Uruchomiono proces przepływu',
|
||||||
'transition_triggered_email_body' => 'Uruchomiono proces przepływu
|
'transition_triggered_email_body' => 'Uruchomiono proces przepływu
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (907), flaviove (627), lfcristofoli (352)
|
// Translators: Admin (910), flaviove (627), lfcristofoli (352)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Aceitar',
|
'accept' => 'Aceitar',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Revisão',
|
'action_revise' => 'Revisão',
|
||||||
'add' => 'Add',
|
'add' => 'Add',
|
||||||
'add_approval' => '',
|
'add_approval' => '',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Novo documento',
|
'add_document' => 'Novo documento',
|
||||||
'add_document_link' => 'Adicionar link',
|
'add_document_link' => 'Adicionar link',
|
||||||
'add_document_notify' => 'Definir Notificações',
|
'add_document_notify' => 'Definir Notificações',
|
||||||
|
@ -122,6 +126,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Assign Reviewers',
|
'assign_reviewers' => 'Assign Reviewers',
|
||||||
'assign_user_property_to' => 'Assign user\'s properties to',
|
'assign_user_property_to' => 'Assign user\'s properties to',
|
||||||
'assumed_released' => 'Assumed released',
|
'assumed_released' => 'Assumed released',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Definição de atributo já existe',
|
'attrdef_exists' => 'Definição de atributo já existe',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'Definição de atributo ainda em uso',
|
'attrdef_in_use' => 'Definição de atributo ainda em uso',
|
||||||
|
@ -216,6 +225,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => 'Por favor escolha a definição de atributo',
|
'choose_attrdef' => 'Por favor escolha a definição de atributo',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => '--Por favor escolha--',
|
'choose_category' => '--Por favor escolha--',
|
||||||
'choose_group' => '--Escolher grupo--',
|
'choose_group' => '--Escolher grupo--',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -228,7 +238,7 @@ URL: [url]',
|
||||||
'choose_workflow_action' => 'Escolha a ação de fluxo de trabalho',
|
'choose_workflow_action' => 'Escolha a ação de fluxo de trabalho',
|
||||||
'choose_workflow_state' => 'Escolha um estado de fluxo de trabalho',
|
'choose_workflow_state' => 'Escolha um estado de fluxo de trabalho',
|
||||||
'class_name' => '',
|
'class_name' => '',
|
||||||
'clear_cache' => '',
|
'clear_cache' => 'Limpar o Cache',
|
||||||
'clear_clipboard' => 'Limpar área de transferência',
|
'clear_clipboard' => 'Limpar área de transferência',
|
||||||
'clear_password' => '',
|
'clear_password' => '',
|
||||||
'clipboard' => 'Área de transferência',
|
'clipboard' => 'Área de transferência',
|
||||||
|
@ -387,8 +397,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Editar documento',
|
'edit_document_props' => 'Editar documento',
|
||||||
'edit_event' => 'Edit event',
|
'edit_event' => 'Edit event',
|
||||||
'edit_existing_access' => 'Editar lista de acesso.',
|
'edit_existing_access' => 'Editar lista de acesso.',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Editar lista de notificação',
|
'edit_existing_notify' => 'Editar lista de notificação',
|
||||||
'edit_folder_access' => 'Editar permissões da pasta',
|
'edit_folder_access' => 'Editar permissões da pasta',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Lista de notificação',
|
'edit_folder_notify' => 'Lista de notificação',
|
||||||
'edit_folder_props' => 'Editar pasta',
|
'edit_folder_props' => 'Editar pasta',
|
||||||
'edit_group' => 'Editar grupo',
|
'edit_group' => 'Editar grupo',
|
||||||
|
@ -402,6 +414,7 @@ URL: [url]',
|
||||||
'email_footer' => 'You can always change your e-mail settings using \'My Account\' functions',
|
'email_footer' => 'You can always change your e-mail settings using \'My Account\' functions',
|
||||||
'email_header' => 'This is an automatic menager from the DMS server.',
|
'email_header' => 'This is an automatic menager from the DMS server.',
|
||||||
'email_not_given' => 'Por favor insira um endereço de e-mail válido.',
|
'email_not_given' => 'Por favor insira um endereço de e-mail válido.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Nenhum documento ou pasta',
|
'empty_folder_list' => 'Nenhum documento ou pasta',
|
||||||
'empty_notify_list' => 'Sem entradas',
|
'empty_notify_list' => 'Sem entradas',
|
||||||
'en_GB' => 'Inglês (GB)',
|
'en_GB' => 'Inglês (GB)',
|
||||||
|
@ -409,6 +422,7 @@ URL: [url]',
|
||||||
'error' => 'Erro',
|
'error' => 'Erro',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Nenhum documento selecionado',
|
'error_no_document_selected' => 'Nenhum documento selecionado',
|
||||||
'error_no_folder_selected' => 'Nenhuma pasta selecionada',
|
'error_no_folder_selected' => 'Nenhuma pasta selecionada',
|
||||||
|
@ -483,6 +497,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Pesquisa de texto completo',
|
'fullsearch' => 'Pesquisa de texto completo',
|
||||||
'fullsearch_hint' => 'Use índice de texto completo',
|
'fullsearch_hint' => 'Use índice de texto completo',
|
||||||
'fulltext_info' => 'Informações índice Texto completo',
|
'fulltext_info' => 'Informações índice Texto completo',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Atributos',
|
'global_attributedefinitions' => 'Atributos',
|
||||||
'global_default_keywords' => 'palavras-chave globais',
|
'global_default_keywords' => 'palavras-chave globais',
|
||||||
'global_document_categories' => 'Categorias',
|
'global_document_categories' => 'Categorias',
|
||||||
|
@ -512,7 +527,7 @@ URL: [url]',
|
||||||
'identical_version' => 'Nova versão é idêntica à versão atual.',
|
'identical_version' => 'Nova versão é idêntica à versão atual.',
|
||||||
'import' => '',
|
'import' => '',
|
||||||
'importfs' => '',
|
'importfs' => '',
|
||||||
'import_fs' => '',
|
'import_fs' => 'Importar do sistema de arquivos',
|
||||||
'import_fs_warning' => '',
|
'import_fs_warning' => '',
|
||||||
'include_content' => '',
|
'include_content' => '',
|
||||||
'include_documents' => 'Include documents',
|
'include_documents' => 'Include documents',
|
||||||
|
@ -635,6 +650,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'Nome',
|
'name' => 'Nome',
|
||||||
'needs_workflow_action' => 'Este documento requer sua atenção. Por favor, verifique a guia de fluxo de trabalho.',
|
'needs_workflow_action' => 'Este documento requer sua atenção. Por favor, verifique a guia de fluxo de trabalho.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => '',
|
'never' => '',
|
||||||
'new' => 'Novo',
|
'new' => 'Novo',
|
||||||
'new_attrdef' => 'Adicionar definição de atributo',
|
'new_attrdef' => 'Adicionar definição de atributo',
|
||||||
|
@ -694,6 +710,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'não há palavras-chave disponíveis',
|
'no_default_keywords' => 'não há palavras-chave disponíveis',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'Nenhum documento bloqueado.',
|
'no_docs_locked' => 'Nenhum documento bloqueado.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'There are currently no documents that require approval.',
|
'no_docs_to_approve' => 'There are currently no documents that require approval.',
|
||||||
'no_docs_to_look_at' => 'Não há documentos que precisam de atenção.',
|
'no_docs_to_look_at' => 'Não há documentos que precisam de atenção.',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -865,6 +882,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Fluxo de processo foi revisto',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Fluxo de processo foi revisto',
|
||||||
'rewind_workflow_warning' => 'Se você voltar um fluxo de trabalho ao seu estado inicial, então o log todo o fluxo de trabalho para este documento será eliminado e não poderá ser recuperado.',
|
'rewind_workflow_warning' => 'Se você voltar um fluxo de trabalho ao seu estado inicial, então o log todo o fluxo de trabalho para este documento será eliminado e não poderá ser recuperado.',
|
||||||
'rm_attrdef' => 'Remover definição de atributo',
|
'rm_attrdef' => 'Remover definição de atributo',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Apague esta categoria',
|
'rm_default_keyword_category' => 'Apague esta categoria',
|
||||||
'rm_document' => 'Remove documento',
|
'rm_document' => 'Remove documento',
|
||||||
'rm_document_category' => 'Remover categoria',
|
'rm_document_category' => 'Remover categoria',
|
||||||
|
@ -922,6 +940,7 @@ URL: [url]',
|
||||||
'search_time' => 'Tempo decorrido: [time] sec.',
|
'search_time' => 'Tempo decorrido: [time] sec.',
|
||||||
'seconds' => 'segundos',
|
'seconds' => 'segundos',
|
||||||
'selection' => 'Selection',
|
'selection' => 'Selection',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Clique para selecionar a categoria',
|
'select_category' => 'Clique para selecionar a categoria',
|
||||||
'select_groups' => 'Clique para selecionar os grupos',
|
'select_groups' => 'Clique para selecionar os grupos',
|
||||||
'select_grp_approvers' => 'Clique para selecionar o grupo aprovador',
|
'select_grp_approvers' => 'Clique para selecionar o grupo aprovador',
|
||||||
|
@ -1011,6 +1030,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Configurações Edição',
|
'settings_Edition' => 'Configurações Edição',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => 'Permitir revisão/aprovação para administradores',
|
'settings_enableAdminRevApp' => 'Permitir revisão/aprovação para administradores',
|
||||||
|
@ -1119,11 +1140,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Diretório para o índice de texto completo',
|
'settings_luceneDir' => 'Diretório para o índice de texto completo',
|
||||||
'settings_luceneDir_desc' => 'Caminho para o índice Lucene',
|
'settings_luceneDir_desc' => 'Caminho para o índice Lucene',
|
||||||
'settings_maxDirID' => 'Max Diretório ID',
|
'settings_maxDirID' => 'Max Diretório ID',
|
||||||
'settings_maxDirID_desc' => 'O número máximo de sub-diretórios por diretório mãe. Padrão: 32700.',
|
'settings_maxDirID_desc' => 'O número máximo de sub-diretórios por diretório mãe. Padrão: 0.',
|
||||||
'settings_maxExecutionTime' => 'Max Tempo de Execução (s)',
|
'settings_maxExecutionTime' => 'Max Tempo de Execução (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Isso define o tempo máximo em segundos que é permitido executar antes de ser finalizado pelo parse',
|
'settings_maxExecutionTime_desc' => 'Isso define o tempo máximo em segundos que é permitido executar antes de ser finalizado pelo parse',
|
||||||
'settings_maxRecursiveCount' => 'Max. número de contagem de documentos/pasta recursiva',
|
'settings_maxRecursiveCount' => 'Max. número de contagem de documentos/pasta recursiva',
|
||||||
'settings_maxRecursiveCount_desc' => 'Este é o número máximo de documentos ou pastas que serão verificados por direitos de acesso, quando recursivamente contar objetos. Se esse número for ultrapassado, será estimado o número de documentos e pastas na visualização da pasta.',
|
'settings_maxRecursiveCount_desc' => 'Este é o número máximo de documentos ou pastas que serão verificados por direitos de acesso, quando recursivamente contar objetos. Se esse número for ultrapassado, será estimado o número de documentos e pastas na visualização da pasta.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Configurar outras configurações. Login padrão: admin/admin',
|
'settings_more_settings' => 'Configurar outras configurações. Login padrão: admin/admin',
|
||||||
'settings_notfound' => 'Não encontrado',
|
'settings_notfound' => 'Não encontrado',
|
||||||
'settings_Notification' => 'Configurações de notificação',
|
'settings_Notification' => 'Configurações de notificação',
|
||||||
|
@ -1245,6 +1268,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Novo usuário adicionado',
|
'splash_add_user' => 'Novo usuário adicionado',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Área de transferência limpada',
|
'splash_cleared_clipboard' => 'Área de transferência limpada',
|
||||||
'splash_document_added' => 'Documento inserido',
|
'splash_document_added' => 'Documento inserido',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1298,6 +1322,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Unknown',
|
'status_unknown' => 'Unknown',
|
||||||
'storage_size' => 'Tamanho de armazenamento',
|
'storage_size' => 'Tamanho de armazenamento',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => '',
|
'submit_approval' => '',
|
||||||
'submit_login' => 'Entrar',
|
'submit_login' => 'Entrar',
|
||||||
'submit_password' => 'Definir uma nova senha',
|
'submit_password' => 'Definir uma nova senha',
|
||||||
|
@ -1343,6 +1368,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Versão [versão]: [estado]',
|
'timeline_status_change' => 'Versão [versão]: [estado]',
|
||||||
'to' => 'To',
|
'to' => 'To',
|
||||||
'toggle_manager' => 'Toggle manager',
|
'toggle_manager' => 'Toggle manager',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'A data de término não pode ser anterior a data de início',
|
'to_before_from' => 'A data de término não pode ser anterior a data de início',
|
||||||
'transition_triggered_email' => 'Transição de fluxo de trabalho desencadeado',
|
'transition_triggered_email' => 'Transição de fluxo de trabalho desencadeado',
|
||||||
'transition_triggered_email_body' => 'Transição do fluxo de trabalho triggered
|
'transition_triggered_email_body' => 'Transição do fluxo de trabalho triggered
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (1043), balan (87)
|
// Translators: Admin (1044), balan (87)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Accept',
|
'accept' => 'Accept',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Revizui',
|
'action_revise' => 'Revizui',
|
||||||
'add' => 'Adauga',
|
'add' => 'Adauga',
|
||||||
'add_approval' => 'Trimite aprobare',
|
'add_approval' => 'Trimite aprobare',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Adaugă document',
|
'add_document' => 'Adaugă document',
|
||||||
'add_document_link' => 'Adauga link',
|
'add_document_link' => 'Adauga link',
|
||||||
'add_document_notify' => 'Alocati notificare',
|
'add_document_notify' => 'Alocati notificare',
|
||||||
|
@ -127,6 +131,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Atribuire revizuitori(reviwers)',
|
'assign_reviewers' => 'Atribuire revizuitori(reviwers)',
|
||||||
'assign_user_property_to' => 'Atribuire proprietati utilizator la',
|
'assign_user_property_to' => 'Atribuire proprietati utilizator la',
|
||||||
'assumed_released' => 'Assumed released',
|
'assumed_released' => 'Assumed released',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Definitie atribut exista deja',
|
'attrdef_exists' => 'Definitie atribut exista deja',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'Definitie atribut inca in utilizare',
|
'attrdef_in_use' => 'Definitie atribut inca in utilizare',
|
||||||
|
@ -221,6 +230,7 @@ URL: [url]',
|
||||||
'checkout_document' => 'Verifica',
|
'checkout_document' => 'Verifica',
|
||||||
'checkout_is_disabled' => 'Verificarea documentelor este dezactivata in configurari.',
|
'checkout_is_disabled' => 'Verificarea documentelor este dezactivata in configurari.',
|
||||||
'choose_attrdef' => 'Vă rugăm să alegeți definiția atributului',
|
'choose_attrdef' => 'Vă rugăm să alegeți definiția atributului',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Vă rugăm să alegeți',
|
'choose_category' => 'Vă rugăm să alegeți',
|
||||||
'choose_group' => 'Alege grup',
|
'choose_group' => 'Alege grup',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -393,8 +403,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Editează document',
|
'edit_document_props' => 'Editează document',
|
||||||
'edit_event' => 'Editează eveniment',
|
'edit_event' => 'Editează eveniment',
|
||||||
'edit_existing_access' => 'Editează Lista acces',
|
'edit_existing_access' => 'Editează Lista acces',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Editează lista de notificări',
|
'edit_existing_notify' => 'Editează lista de notificări',
|
||||||
'edit_folder_access' => 'Editează acces',
|
'edit_folder_access' => 'Editează acces',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Listă de notificare pentru folder',
|
'edit_folder_notify' => 'Listă de notificare pentru folder',
|
||||||
'edit_folder_props' => 'Editează folder',
|
'edit_folder_props' => 'Editează folder',
|
||||||
'edit_group' => 'Editează grup',
|
'edit_group' => 'Editează grup',
|
||||||
|
@ -408,6 +420,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Puteți schimba oricând setările de e-mail folosind functionalitatile din \'Contul meu\'',
|
'email_footer' => 'Puteți schimba oricând setările de e-mail folosind functionalitatile din \'Contul meu\'',
|
||||||
'email_header' => 'Acesta este un mesaj automat de la serverul DMS.',
|
'email_header' => 'Acesta este un mesaj automat de la serverul DMS.',
|
||||||
'email_not_given' => 'Vă rugăm să introduceți o adresă de email validă.',
|
'email_not_given' => 'Vă rugăm să introduceți o adresă de email validă.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Nu există documente sau foldere',
|
'empty_folder_list' => 'Nu există documente sau foldere',
|
||||||
'empty_notify_list' => 'Nu există înregistrări',
|
'empty_notify_list' => 'Nu există înregistrări',
|
||||||
'en_GB' => 'Engleza (GB)',
|
'en_GB' => 'Engleza (GB)',
|
||||||
|
@ -415,6 +428,7 @@ URL: [url]',
|
||||||
'error' => 'Eroare',
|
'error' => 'Eroare',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Nici un document selectat',
|
'error_no_document_selected' => 'Nici un document selectat',
|
||||||
'error_no_folder_selected' => 'Nici un folder selectat',
|
'error_no_folder_selected' => 'Nici un folder selectat',
|
||||||
|
@ -489,6 +503,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Căutare text complet',
|
'fullsearch' => 'Căutare text complet',
|
||||||
'fullsearch_hint' => 'Foloseste indexarea intregului text',
|
'fullsearch_hint' => 'Foloseste indexarea intregului text',
|
||||||
'fulltext_info' => 'Info indexarea intregului text',
|
'fulltext_info' => 'Info indexarea intregului text',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Atribute',
|
'global_attributedefinitions' => 'Atribute',
|
||||||
'global_default_keywords' => 'Cuvinte cheie globale',
|
'global_default_keywords' => 'Cuvinte cheie globale',
|
||||||
'global_document_categories' => 'Categorii',
|
'global_document_categories' => 'Categorii',
|
||||||
|
@ -641,6 +656,7 @@ URL: [url]',
|
||||||
'my_transmittals' => 'Trimiterile mele',
|
'my_transmittals' => 'Trimiterile mele',
|
||||||
'name' => 'Nume',
|
'name' => 'Nume',
|
||||||
'needs_workflow_action' => 'Acest document necesită atenția dumneavoastră. Vă rugăm să verificați tab-ul workflow.',
|
'needs_workflow_action' => 'Acest document necesită atenția dumneavoastră. Vă rugăm să verificați tab-ul workflow.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => 'niciodată',
|
'never' => 'niciodată',
|
||||||
'new' => 'Nou',
|
'new' => 'Nou',
|
||||||
'new_attrdef' => 'Adaugă definitie atribut',
|
'new_attrdef' => 'Adaugă definitie atribut',
|
||||||
|
@ -701,6 +717,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Nu există cuvinte cheie disponibile',
|
'no_default_keywords' => 'Nu există cuvinte cheie disponibile',
|
||||||
'no_docs_checked_out' => 'Nu exista documente verificate',
|
'no_docs_checked_out' => 'Nu exista documente verificate',
|
||||||
'no_docs_locked' => 'Nici un document blocat.',
|
'no_docs_locked' => 'Nici un document blocat.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Momentan nu există documente care necesită aprobarea.',
|
'no_docs_to_approve' => 'Momentan nu există documente care necesită aprobarea.',
|
||||||
'no_docs_to_look_at' => 'Nici un document care necesită atenție.',
|
'no_docs_to_look_at' => 'Nici un document care necesită atenție.',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -890,6 +907,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Workflow derulat',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Workflow derulat',
|
||||||
'rewind_workflow_warning' => 'Dacă derulati înapoi un workflow la starea inițială, atunci tot log-ul workflow-ului pentru acest document vor fi șters și nu va mai putea fi recuperat.',
|
'rewind_workflow_warning' => 'Dacă derulati înapoi un workflow la starea inițială, atunci tot log-ul workflow-ului pentru acest document vor fi șters și nu va mai putea fi recuperat.',
|
||||||
'rm_attrdef' => 'Eliminați definiție atribut',
|
'rm_attrdef' => 'Eliminați definiție atribut',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Eliminați categorie',
|
'rm_default_keyword_category' => 'Eliminați categorie',
|
||||||
'rm_document' => 'Eliminați document',
|
'rm_document' => 'Eliminați document',
|
||||||
'rm_document_category' => 'Eliminați categorie',
|
'rm_document_category' => 'Eliminați categorie',
|
||||||
|
@ -947,6 +965,7 @@ URL: [url]',
|
||||||
'search_time' => 'Timp scurs: [time] sec.',
|
'search_time' => 'Timp scurs: [time] sec.',
|
||||||
'seconds' => 'secunde',
|
'seconds' => 'secunde',
|
||||||
'selection' => 'Selecție',
|
'selection' => 'Selecție',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Click pentru a selecta categoria',
|
'select_category' => 'Click pentru a selecta categoria',
|
||||||
'select_groups' => 'Click pentru a selecta grupuri',
|
'select_groups' => 'Click pentru a selecta grupuri',
|
||||||
'select_grp_approvers' => 'Click pentru a selecta grupul de aprobatori',
|
'select_grp_approvers' => 'Click pentru a selecta grupul de aprobatori',
|
||||||
|
@ -1036,6 +1055,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Setările Editiei',
|
'settings_Edition' => 'Setările Editiei',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => 'Permite revizuirea/aprobarea pentru admini',
|
'settings_enableAdminRevApp' => 'Permite revizuirea/aprobarea pentru admini',
|
||||||
|
@ -1144,11 +1165,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Directorul pentru indexul de text integral(full text index)',
|
'settings_luceneDir' => 'Directorul pentru indexul de text integral(full text index)',
|
||||||
'settings_luceneDir_desc' => 'Calea catre indexul Lucene',
|
'settings_luceneDir_desc' => 'Calea catre indexul Lucene',
|
||||||
'settings_maxDirID' => 'ID director Maxim',
|
'settings_maxDirID' => 'ID director Maxim',
|
||||||
'settings_maxDirID_desc' => 'Numărul maxim de sub-directoare pe director părinte. Implicit: 32700.',
|
'settings_maxDirID_desc' => 'Numărul maxim de sub-directoare pe director părinte. Implicit: 0.',
|
||||||
'settings_maxExecutionTime' => 'Timp Maxim de executie (s)',
|
'settings_maxExecutionTime' => 'Timp Maxim de executie (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Acesta stabilește timpul maxim în secunde în care un script este permis să ruleze înainte de a fi oprit',
|
'settings_maxExecutionTime_desc' => 'Acesta stabilește timpul maxim în secunde în care un script este permis să ruleze înainte de a fi oprit',
|
||||||
'settings_maxRecursiveCount' => 'Numarul Maxim recursiv de numarare documente/foldere',
|
'settings_maxRecursiveCount' => 'Numarul Maxim recursiv de numarare documente/foldere',
|
||||||
'settings_maxRecursiveCount_desc' => 'Acesta este numărul maxim de documente sau foldere care vor fi verificate pentru drepturile de acces, atunci când se numără recursiv obiectele. Dacă acest număr este depășit, numărul de documente și foldere în vizualizarea directorului va fi estimat.',
|
'settings_maxRecursiveCount_desc' => 'Acesta este numărul maxim de documente sau foldere care vor fi verificate pentru drepturile de acces, atunci când se numără recursiv obiectele. Dacă acest număr este depășit, numărul de documente și foldere în vizualizarea directorului va fi estimat.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Configurare mai multe setări. Autentificare implicită: admin/admin',
|
'settings_more_settings' => 'Configurare mai multe setări. Autentificare implicită: admin/admin',
|
||||||
'settings_notfound' => 'Nu a fost găsit',
|
'settings_notfound' => 'Nu a fost găsit',
|
||||||
'settings_Notification' => 'Setările de notificare',
|
'settings_Notification' => 'Setările de notificare',
|
||||||
|
@ -1270,6 +1293,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Utilizator nou adăugat',
|
'splash_add_user' => 'Utilizator nou adăugat',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Clipboard golit',
|
'splash_cleared_clipboard' => 'Clipboard golit',
|
||||||
'splash_document_added' => 'Document adăugat',
|
'splash_document_added' => 'Document adăugat',
|
||||||
'splash_document_checkedout' => 'Document verificat',
|
'splash_document_checkedout' => 'Document verificat',
|
||||||
|
@ -1323,6 +1347,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => 'Revizuitor eliminat din lista',
|
'status_revisor_removed' => 'Revizuitor eliminat din lista',
|
||||||
'status_unknown' => 'Necunoscut',
|
'status_unknown' => 'Necunoscut',
|
||||||
'storage_size' => 'Dimensiunea de stocare',
|
'storage_size' => 'Dimensiunea de stocare',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Trimite aprobare',
|
'submit_approval' => 'Trimite aprobare',
|
||||||
'submit_login' => 'Sign in',
|
'submit_login' => 'Sign in',
|
||||||
'submit_password' => 'Setare parolă nouă',
|
'submit_password' => 'Setare parolă nouă',
|
||||||
|
@ -1368,6 +1393,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Versiune [versiune]: [stare]',
|
'timeline_status_change' => 'Versiune [versiune]: [stare]',
|
||||||
'to' => 'La',
|
'to' => 'La',
|
||||||
'toggle_manager' => 'Comută Manager',
|
'toggle_manager' => 'Comută Manager',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'Data de încheiere nu poate fi înainte de data de începere',
|
'to_before_from' => 'Data de încheiere nu poate fi înainte de data de începere',
|
||||||
'transition_triggered_email' => 'Tranziție Workflow declanșată',
|
'transition_triggered_email' => 'Tranziție Workflow declanșată',
|
||||||
'transition_triggered_email_body' => 'Tranziție Workflow declanșată
|
'transition_triggered_email_body' => 'Tranziție Workflow declanșată
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (1543)
|
// Translators: Admin (1544)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Принять',
|
'accept' => 'Принять',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Ревизировать',
|
'action_revise' => 'Ревизировать',
|
||||||
'add' => 'Добавить',
|
'add' => 'Добавить',
|
||||||
'add_approval' => 'Утвердить',
|
'add_approval' => 'Утвердить',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Добавить документ',
|
'add_document' => 'Добавить документ',
|
||||||
'add_document_link' => 'Добавить ссылку',
|
'add_document_link' => 'Добавить ссылку',
|
||||||
'add_document_notify' => 'Добавить Уведомления',
|
'add_document_notify' => 'Добавить Уведомления',
|
||||||
|
@ -127,6 +131,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Назначить рецензентов',
|
'assign_reviewers' => 'Назначить рецензентов',
|
||||||
'assign_user_property_to' => 'Назначить свойства пользователя',
|
'assign_user_property_to' => 'Назначить свойства пользователя',
|
||||||
'assumed_released' => 'Утверждён',
|
'assumed_released' => 'Утверждён',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Определение атрибута уже существует',
|
'attrdef_exists' => 'Определение атрибута уже существует',
|
||||||
'attrdef_info' => 'Информация',
|
'attrdef_info' => 'Информация',
|
||||||
'attrdef_in_use' => 'Определение этого атрибута используется',
|
'attrdef_in_use' => 'Определение этого атрибута используется',
|
||||||
|
@ -221,6 +230,7 @@ URL: [url]',
|
||||||
'checkout_document' => 'Загрузка',
|
'checkout_document' => 'Загрузка',
|
||||||
'checkout_is_disabled' => 'Загрузка отключена.',
|
'checkout_is_disabled' => 'Загрузка отключена.',
|
||||||
'choose_attrdef' => 'Выберите атрибут',
|
'choose_attrdef' => 'Выберите атрибут',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Выберите категорию',
|
'choose_category' => 'Выберите категорию',
|
||||||
'choose_group' => 'Выберите группу',
|
'choose_group' => 'Выберите группу',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -393,8 +403,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Изменить документ',
|
'edit_document_props' => 'Изменить документ',
|
||||||
'edit_event' => 'Изменить событие',
|
'edit_event' => 'Изменить событие',
|
||||||
'edit_existing_access' => 'Изменить доступ',
|
'edit_existing_access' => 'Изменить доступ',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Изменить уведомления',
|
'edit_existing_notify' => 'Изменить уведомления',
|
||||||
'edit_folder_access' => 'Изменить доступ',
|
'edit_folder_access' => 'Изменить доступ',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Список уведомления каталога',
|
'edit_folder_notify' => 'Список уведомления каталога',
|
||||||
'edit_folder_props' => 'Изменить каталог',
|
'edit_folder_props' => 'Изменить каталог',
|
||||||
'edit_group' => 'Изменить группу',
|
'edit_group' => 'Изменить группу',
|
||||||
|
@ -408,6 +420,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Вы можете изменить e-mail используя меню «Моя учётка».',
|
'email_footer' => 'Вы можете изменить e-mail используя меню «Моя учётка».',
|
||||||
'email_header' => 'Это автоматическое уведомление сервера документооборота.',
|
'email_header' => 'Это автоматическое уведомление сервера документооборота.',
|
||||||
'email_not_given' => 'Введите настоящий адрес e-mail.',
|
'email_not_given' => 'Введите настоящий адрес e-mail.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Нет документов или каталогов',
|
'empty_folder_list' => 'Нет документов или каталогов',
|
||||||
'empty_notify_list' => 'Нет записей',
|
'empty_notify_list' => 'Нет записей',
|
||||||
'en_GB' => 'English (GB)',
|
'en_GB' => 'English (GB)',
|
||||||
|
@ -415,6 +428,7 @@ URL: [url]',
|
||||||
'error' => 'Ошибка',
|
'error' => 'Ошибка',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Нет выбранных документов',
|
'error_no_document_selected' => 'Нет выбранных документов',
|
||||||
'error_no_folder_selected' => 'Нет выбранных каталогов',
|
'error_no_folder_selected' => 'Нет выбранных каталогов',
|
||||||
|
@ -489,6 +503,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Полнотекстовый поиск',
|
'fullsearch' => 'Полнотекстовый поиск',
|
||||||
'fullsearch_hint' => 'Использовать полнотекстовый индекс',
|
'fullsearch_hint' => 'Использовать полнотекстовый индекс',
|
||||||
'fulltext_info' => 'Информация о полнотекстовом индексе',
|
'fulltext_info' => 'Информация о полнотекстовом индексе',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Атрибуты',
|
'global_attributedefinitions' => 'Атрибуты',
|
||||||
'global_default_keywords' => 'Глобальные метки',
|
'global_default_keywords' => 'Глобальные метки',
|
||||||
'global_document_categories' => 'Категории',
|
'global_document_categories' => 'Категории',
|
||||||
|
@ -641,6 +656,7 @@ URL: [url]',
|
||||||
'my_transmittals' => 'Мои пересылки',
|
'my_transmittals' => 'Мои пересылки',
|
||||||
'name' => 'Имя',
|
'name' => 'Имя',
|
||||||
'needs_workflow_action' => 'Этот документ требует вашего внимания. См. вкладку «Процесс».',
|
'needs_workflow_action' => 'Этот документ требует вашего внимания. См. вкладку «Процесс».',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => 'никогда',
|
'never' => 'никогда',
|
||||||
'new' => 'Новый',
|
'new' => 'Новый',
|
||||||
'new_attrdef' => 'Добавить определение атрибута',
|
'new_attrdef' => 'Добавить определение атрибута',
|
||||||
|
@ -700,6 +716,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Нет меток',
|
'no_default_keywords' => 'Нет меток',
|
||||||
'no_docs_checked_out' => 'Нет документов на рассмотрении',
|
'no_docs_checked_out' => 'Нет документов на рассмотрении',
|
||||||
'no_docs_locked' => 'Нет заблокированных документов',
|
'no_docs_locked' => 'Нет заблокированных документов',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Нет документов, нуждающихся в утверждении',
|
'no_docs_to_approve' => 'Нет документов, нуждающихся в утверждении',
|
||||||
'no_docs_to_look_at' => 'Нет документов, нуждающихся во внимании',
|
'no_docs_to_look_at' => 'Нет документов, нуждающихся во внимании',
|
||||||
'no_docs_to_receipt' => 'Нет документов, нуждающихся в подтверждении',
|
'no_docs_to_receipt' => 'Нет документов, нуждающихся в подтверждении',
|
||||||
|
@ -897,6 +914,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: процесс начат с начала для «[name]»',
|
'rewind_workflow_email_subject' => '[sitename]: процесс начат с начала для «[name]»',
|
||||||
'rewind_workflow_warning' => 'Если вы начнёте процесс с начала, то весь журнал процесса для этого документа будет очищен и его невозможно будет восстановить.',
|
'rewind_workflow_warning' => 'Если вы начнёте процесс с начала, то весь журнал процесса для этого документа будет очищен и его невозможно будет восстановить.',
|
||||||
'rm_attrdef' => 'Удалить определение атрибута',
|
'rm_attrdef' => 'Удалить определение атрибута',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Удалить метку',
|
'rm_default_keyword_category' => 'Удалить метку',
|
||||||
'rm_document' => 'Удалить документ',
|
'rm_document' => 'Удалить документ',
|
||||||
'rm_document_category' => 'Удалить категорию',
|
'rm_document_category' => 'Удалить категорию',
|
||||||
|
@ -954,6 +972,7 @@ URL: [url]',
|
||||||
'search_time' => 'Прошло: [time] с',
|
'search_time' => 'Прошло: [time] с',
|
||||||
'seconds' => 'секунды',
|
'seconds' => 'секунды',
|
||||||
'selection' => 'Выбор',
|
'selection' => 'Выбор',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Выберите категорию',
|
'select_category' => 'Выберите категорию',
|
||||||
'select_groups' => 'Выберите группы',
|
'select_groups' => 'Выберите группы',
|
||||||
'select_grp_approvers' => 'Выберите утверждающую группу',
|
'select_grp_approvers' => 'Выберите утверждающую группу',
|
||||||
|
@ -1043,6 +1062,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Настройки версий',
|
'settings_Edition' => 'Настройки версий',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => 'Включить подтверждение получения документа',
|
'settings_enableAcknowledgeWorkflow' => 'Включить подтверждение получения документа',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => 'Включить для активации функции подтверждения получения документа',
|
'settings_enableAcknowledgeWorkflow_desc' => 'Включить для активации функции подтверждения получения документа',
|
||||||
'settings_enableAdminRevApp' => 'Администратор как<br/>рецензирующий и утверждающий',
|
'settings_enableAdminRevApp' => 'Администратор как<br/>рецензирующий и утверждающий',
|
||||||
|
@ -1151,11 +1172,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Каталог полнотекстового индекса Lucene',
|
'settings_luceneDir' => 'Каталог полнотекстового индекса Lucene',
|
||||||
'settings_luceneDir_desc' => 'Путь, куда Lucene будет записывать свой индекс.',
|
'settings_luceneDir_desc' => 'Путь, куда Lucene будет записывать свой индекс.',
|
||||||
'settings_maxDirID' => 'Максимальный ID каталога',
|
'settings_maxDirID' => 'Максимальный ID каталога',
|
||||||
'settings_maxDirID_desc' => 'Максимум каталогов в родительском каталоге. По умолчанию 32700.',
|
'settings_maxDirID_desc' => 'Максимум каталогов в родительском каталоге. По умолчанию 0.',
|
||||||
'settings_maxExecutionTime' => 'Максимальное время выполнения, с',
|
'settings_maxExecutionTime' => 'Максимальное время выполнения, с',
|
||||||
'settings_maxExecutionTime_desc' => 'Устанавливает максимальное время выполнения скрипта, перед тем как он будет завершён.',
|
'settings_maxExecutionTime_desc' => 'Устанавливает максимальное время выполнения скрипта, перед тем как он будет завершён.',
|
||||||
'settings_maxRecursiveCount' => 'Ограничение рекурсивного подсчёта<br/>документов и каталогов',
|
'settings_maxRecursiveCount' => 'Ограничение рекурсивного подсчёта<br/>документов и каталогов',
|
||||||
'settings_maxRecursiveCount_desc' => 'Максимальное количество документов или каталогов, которые будут проверены на права доступа при рекурсивном подсчёте объектов. При превышении этого количества, будет оценено количество документов и каталогов в виде каталога.',
|
'settings_maxRecursiveCount_desc' => 'Максимальное количество документов или каталогов, которые будут проверены на права доступа при рекурсивном подсчёте объектов. При превышении этого количества, будет оценено количество документов и каталогов в виде каталога.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Прочие настройки. Логин по умолчанию: admin/admin',
|
'settings_more_settings' => 'Прочие настройки. Логин по умолчанию: admin/admin',
|
||||||
'settings_notfound' => 'Не найден',
|
'settings_notfound' => 'Не найден',
|
||||||
'settings_Notification' => 'Настройки извещения',
|
'settings_Notification' => 'Настройки извещения',
|
||||||
|
@ -1277,6 +1300,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Добавлен новый пользователь',
|
'splash_add_user' => 'Добавлен новый пользователь',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Буфер обмена очищен',
|
'splash_cleared_clipboard' => 'Буфер обмена очищен',
|
||||||
'splash_document_added' => 'Добавлен документ',
|
'splash_document_added' => 'Добавлен документ',
|
||||||
'splash_document_checkedout' => 'Документ отправлен на обработку',
|
'splash_document_checkedout' => 'Документ отправлен на обработку',
|
||||||
|
@ -1330,6 +1354,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => 'Ревизор удален из списка',
|
'status_revisor_removed' => 'Ревизор удален из списка',
|
||||||
'status_unknown' => 'Неизвестный',
|
'status_unknown' => 'Неизвестный',
|
||||||
'storage_size' => 'Размер хранилища',
|
'storage_size' => 'Размер хранилища',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Утвердить',
|
'submit_approval' => 'Утвердить',
|
||||||
'submit_login' => 'Войти',
|
'submit_login' => 'Войти',
|
||||||
'submit_password' => 'Установить новый пароль',
|
'submit_password' => 'Установить новый пароль',
|
||||||
|
@ -1375,6 +1400,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Версия [version]: [status]',
|
'timeline_status_change' => 'Версия [version]: [status]',
|
||||||
'to' => 'До',
|
'to' => 'До',
|
||||||
'toggle_manager' => 'Изменить как менеджера',
|
'toggle_manager' => 'Изменить как менеджера',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'Конечная дата не может быть меньше начальной даты',
|
'to_before_from' => 'Конечная дата не может быть меньше начальной даты',
|
||||||
'transition_triggered_email' => 'Изменено состояние процесса',
|
'transition_triggered_email' => 'Изменено состояние процесса',
|
||||||
'transition_triggered_email_body' => 'Изменено состояние процесса
|
'transition_triggered_email_body' => 'Изменено состояние процесса
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (499), destinqo (19)
|
// Translators: Admin (512), destinqo (19)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Prijať',
|
'accept' => 'Prijať',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Revidovať',
|
'action_revise' => 'Revidovať',
|
||||||
'add' => 'Pridať',
|
'add' => 'Pridať',
|
||||||
'add_approval' => 'Poslať schválenie',
|
'add_approval' => 'Poslať schválenie',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Pridať dokument',
|
'add_document' => 'Pridať dokument',
|
||||||
'add_document_link' => 'Pridať odkaz',
|
'add_document_link' => 'Pridať odkaz',
|
||||||
'add_document_notify' => 'Pridať notifikáciu',
|
'add_document_notify' => 'Pridať notifikáciu',
|
||||||
|
@ -110,6 +114,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Určiť recenzentov',
|
'assign_reviewers' => 'Určiť recenzentov',
|
||||||
'assign_user_property_to' => 'Assign user\'s properties to',
|
'assign_user_property_to' => 'Assign user\'s properties to',
|
||||||
'assumed_released' => 'Pokladá sa za zverejnené',
|
'assumed_released' => 'Pokladá sa za zverejnené',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => '',
|
'attrdef_exists' => '',
|
||||||
'attrdef_info' => 'Informácia',
|
'attrdef_info' => 'Informácia',
|
||||||
'attrdef_in_use' => '',
|
'attrdef_in_use' => '',
|
||||||
|
@ -198,19 +207,20 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => '',
|
'choose_attrdef' => '',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => '--Vyberte prosím--',
|
'choose_category' => '--Vyberte prosím--',
|
||||||
'choose_group' => '--Vyberte skupinu--',
|
'choose_group' => '--Vyberte skupinu--',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
'choose_target_category' => '',
|
'choose_target_category' => '',
|
||||||
'choose_target_document' => 'Vyberte dokument',
|
'choose_target_document' => 'Vyberte dokument',
|
||||||
'choose_target_file' => '',
|
'choose_target_file' => 'Vyberte súbor',
|
||||||
'choose_target_folder' => 'Vyberte cieľovú zložku',
|
'choose_target_folder' => 'Vyberte cieľovú zložku',
|
||||||
'choose_user' => '--Vyberte používateľa--',
|
'choose_user' => '--Vyberte používateľa--',
|
||||||
'choose_workflow' => '',
|
'choose_workflow' => '',
|
||||||
'choose_workflow_action' => '',
|
'choose_workflow_action' => '',
|
||||||
'choose_workflow_state' => '',
|
'choose_workflow_state' => '',
|
||||||
'class_name' => '',
|
'class_name' => '',
|
||||||
'clear_cache' => '',
|
'clear_cache' => 'Vyčistiť pamäť cache',
|
||||||
'clear_clipboard' => '',
|
'clear_clipboard' => '',
|
||||||
'clear_password' => '',
|
'clear_password' => '',
|
||||||
'clipboard' => 'Schránka',
|
'clipboard' => 'Schránka',
|
||||||
|
@ -340,8 +350,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Upraviť dokument',
|
'edit_document_props' => 'Upraviť dokument',
|
||||||
'edit_event' => 'Upraviť udalosť',
|
'edit_event' => 'Upraviť udalosť',
|
||||||
'edit_existing_access' => 'Upraviť zoznam riadenia prístupu',
|
'edit_existing_access' => 'Upraviť zoznam riadenia prístupu',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Upraviť zoznam upozornení',
|
'edit_existing_notify' => 'Upraviť zoznam upozornení',
|
||||||
'edit_folder_access' => 'Upraviť prístup',
|
'edit_folder_access' => 'Upraviť prístup',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Zoznam upozornení',
|
'edit_folder_notify' => 'Zoznam upozornení',
|
||||||
'edit_folder_props' => 'Uprav priečinok',
|
'edit_folder_props' => 'Uprav priečinok',
|
||||||
'edit_group' => 'Upraviť skupinu',
|
'edit_group' => 'Upraviť skupinu',
|
||||||
|
@ -355,6 +367,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Nastavenia e-mailu si kedykoľvek môžete zmeniť cez \'Môj účet\'',
|
'email_footer' => 'Nastavenia e-mailu si kedykoľvek môžete zmeniť cez \'Môj účet\'',
|
||||||
'email_header' => 'Toto je automatická správa od DMS servera.',
|
'email_header' => 'Toto je automatická správa od DMS servera.',
|
||||||
'email_not_given' => '',
|
'email_not_given' => '',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Žiadne dokumenty alebo priečinky',
|
'empty_folder_list' => 'Žiadne dokumenty alebo priečinky',
|
||||||
'empty_notify_list' => 'Žiadne položky',
|
'empty_notify_list' => 'Žiadne položky',
|
||||||
'en_GB' => 'Angličtina (UK)',
|
'en_GB' => 'Angličtina (UK)',
|
||||||
|
@ -362,6 +375,7 @@ URL: [url]',
|
||||||
'error' => 'Chyba',
|
'error' => 'Chyba',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => '',
|
'error_no_document_selected' => '',
|
||||||
'error_no_folder_selected' => '',
|
'error_no_folder_selected' => '',
|
||||||
|
@ -383,7 +397,7 @@ URL: [url]',
|
||||||
'files' => 'Súbory',
|
'files' => 'Súbory',
|
||||||
'files_deletion' => 'Odstránenie súboru',
|
'files_deletion' => 'Odstránenie súboru',
|
||||||
'files_deletion_warning' => 'Touto akciou môžete odstrániť celú DMS zložku. Verziovacie informácie zostanú viditeľné.',
|
'files_deletion_warning' => 'Touto akciou môžete odstrániť celú DMS zložku. Verziovacie informácie zostanú viditeľné.',
|
||||||
'files_loading' => '',
|
'files_loading' => 'Prosím počkajte, kým sa načíta zoznam súborov ...',
|
||||||
'file_size' => 'Veľkosť súboru',
|
'file_size' => 'Veľkosť súboru',
|
||||||
'filter_for_documents' => '',
|
'filter_for_documents' => '',
|
||||||
'filter_for_folders' => '',
|
'filter_for_folders' => '',
|
||||||
|
@ -412,6 +426,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Fulltext index vyhľadávanie',
|
'fullsearch' => 'Fulltext index vyhľadávanie',
|
||||||
'fullsearch_hint' => 'Použiť fulltext index',
|
'fullsearch_hint' => 'Použiť fulltext index',
|
||||||
'fulltext_info' => 'Informácie o fulltext indexe',
|
'fulltext_info' => 'Informácie o fulltext indexe',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Atribúty',
|
'global_attributedefinitions' => 'Atribúty',
|
||||||
'global_default_keywords' => 'Globálne kľúčové slová',
|
'global_default_keywords' => 'Globálne kľúčové slová',
|
||||||
'global_document_categories' => 'Kategórie',
|
'global_document_categories' => 'Kategórie',
|
||||||
|
@ -504,7 +519,7 @@ URL: [url]',
|
||||||
'keep' => '',
|
'keep' => '',
|
||||||
'keep_doc_status' => '',
|
'keep_doc_status' => '',
|
||||||
'keywords' => 'Kľúčové slová',
|
'keywords' => 'Kľúčové slová',
|
||||||
'keywords_loading' => '',
|
'keywords_loading' => 'Prosím počkajte, kým sa načíta zoznam kľúčových slov ...',
|
||||||
'keyword_exists' => 'Kľúčové slovo už existuje',
|
'keyword_exists' => 'Kľúčové slovo už existuje',
|
||||||
'ko_KR' => 'Kórejčina',
|
'ko_KR' => 'Kórejčina',
|
||||||
'language' => 'Jazyk',
|
'language' => 'Jazyk',
|
||||||
|
@ -564,6 +579,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'Meno',
|
'name' => 'Meno',
|
||||||
'needs_workflow_action' => '',
|
'needs_workflow_action' => '',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => '',
|
'never' => '',
|
||||||
'new' => 'Nove',
|
'new' => 'Nove',
|
||||||
'new_attrdef' => '',
|
'new_attrdef' => '',
|
||||||
|
@ -600,6 +616,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Nie sú dostupné žiadne kľúčové slová.',
|
'no_default_keywords' => 'Nie sú dostupné žiadne kľúčové slová.',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => '',
|
'no_docs_locked' => '',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Momentálne neexistujú žiadne dokumenty, ktoré vyžadujú schválenie.',
|
'no_docs_to_approve' => 'Momentálne neexistujú žiadne dokumenty, ktoré vyžadujú schválenie.',
|
||||||
'no_docs_to_look_at' => '',
|
'no_docs_to_look_at' => '',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -729,6 +746,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '',
|
'rewind_workflow_email_subject' => '',
|
||||||
'rewind_workflow_warning' => '',
|
'rewind_workflow_warning' => '',
|
||||||
'rm_attrdef' => '',
|
'rm_attrdef' => '',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Zmazať kategóriu',
|
'rm_default_keyword_category' => 'Zmazať kategóriu',
|
||||||
'rm_document' => 'Odstrániť dokument',
|
'rm_document' => 'Odstrániť dokument',
|
||||||
'rm_document_category' => '',
|
'rm_document_category' => '',
|
||||||
|
@ -779,6 +797,7 @@ URL: [url]',
|
||||||
'search_time' => 'Uplynulý čas: [time] sek',
|
'search_time' => 'Uplynulý čas: [time] sek',
|
||||||
'seconds' => '',
|
'seconds' => '',
|
||||||
'selection' => 'Výber',
|
'selection' => 'Výber',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Vyber kategóriu',
|
'select_category' => 'Vyber kategóriu',
|
||||||
'select_groups' => '',
|
'select_groups' => '',
|
||||||
'select_grp_approvers' => '',
|
'select_grp_approvers' => '',
|
||||||
|
@ -810,7 +829,7 @@ URL: [url]',
|
||||||
'settings_activate_php_extension' => '',
|
'settings_activate_php_extension' => '',
|
||||||
'settings_adminIP' => '',
|
'settings_adminIP' => '',
|
||||||
'settings_adminIP_desc' => '',
|
'settings_adminIP_desc' => '',
|
||||||
'settings_Advanced' => '',
|
'settings_Advanced' => 'Rozšírené',
|
||||||
'settings_advancedAcl' => '',
|
'settings_advancedAcl' => '',
|
||||||
'settings_advancedAcl_desc' => '',
|
'settings_advancedAcl_desc' => '',
|
||||||
'settings_apache_mod_rewrite' => '',
|
'settings_apache_mod_rewrite' => '',
|
||||||
|
@ -868,6 +887,8 @@ URL: [url]',
|
||||||
'settings_Edition' => '',
|
'settings_Edition' => '',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => '',
|
'settings_enableAdminRevApp' => '',
|
||||||
|
@ -882,8 +903,8 @@ URL: [url]',
|
||||||
'settings_enableDropUpload_desc' => '',
|
'settings_enableDropUpload_desc' => '',
|
||||||
'settings_enableDuplicateDocNames' => '',
|
'settings_enableDuplicateDocNames' => '',
|
||||||
'settings_enableDuplicateDocNames_desc' => '',
|
'settings_enableDuplicateDocNames_desc' => '',
|
||||||
'settings_enableEmail' => '',
|
'settings_enableEmail' => 'Povoliť e-mail',
|
||||||
'settings_enableEmail_desc' => '',
|
'settings_enableEmail_desc' => 'Povoliť/zakázať automatické emailové upozornenie',
|
||||||
'settings_enableFolderTree' => '',
|
'settings_enableFolderTree' => '',
|
||||||
'settings_enableFolderTree_desc' => '',
|
'settings_enableFolderTree_desc' => '',
|
||||||
'settings_enableFullSearch' => '',
|
'settings_enableFullSearch' => '',
|
||||||
|
@ -961,7 +982,7 @@ URL: [url]',
|
||||||
'settings_install_welcome_text' => '',
|
'settings_install_welcome_text' => '',
|
||||||
'settings_install_welcome_title' => '',
|
'settings_install_welcome_title' => '',
|
||||||
'settings_install_zendframework' => '',
|
'settings_install_zendframework' => '',
|
||||||
'settings_language' => '',
|
'settings_language' => 'Predvolený jazyk',
|
||||||
'settings_language_desc' => '',
|
'settings_language_desc' => '',
|
||||||
'settings_libraryFolder' => '',
|
'settings_libraryFolder' => '',
|
||||||
'settings_libraryFolder_desc' => '',
|
'settings_libraryFolder_desc' => '',
|
||||||
|
@ -981,6 +1002,8 @@ URL: [url]',
|
||||||
'settings_maxExecutionTime_desc' => '',
|
'settings_maxExecutionTime_desc' => '',
|
||||||
'settings_maxRecursiveCount' => '',
|
'settings_maxRecursiveCount' => '',
|
||||||
'settings_maxRecursiveCount_desc' => '',
|
'settings_maxRecursiveCount_desc' => '',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => '',
|
'settings_more_settings' => '',
|
||||||
'settings_notfound' => '',
|
'settings_notfound' => '',
|
||||||
'settings_Notification' => '',
|
'settings_Notification' => '',
|
||||||
|
@ -1029,11 +1052,11 @@ URL: [url]',
|
||||||
'settings_Server' => '',
|
'settings_Server' => '',
|
||||||
'settings_showMissingTranslations' => '',
|
'settings_showMissingTranslations' => '',
|
||||||
'settings_showMissingTranslations_desc' => '',
|
'settings_showMissingTranslations_desc' => '',
|
||||||
'settings_Site' => '',
|
'settings_Site' => 'Stránka',
|
||||||
'settings_siteDefaultPage' => '',
|
'settings_siteDefaultPage' => '',
|
||||||
'settings_siteDefaultPage_desc' => '',
|
'settings_siteDefaultPage_desc' => '',
|
||||||
'settings_siteName' => '',
|
'settings_siteName' => 'Názov stránky',
|
||||||
'settings_siteName_desc' => '',
|
'settings_siteName_desc' => 'Názov stránky používaný v nadpisoch. Predvolený: SeedDMS',
|
||||||
'settings_SMTP' => '',
|
'settings_SMTP' => '',
|
||||||
'settings_smtpPassword' => '',
|
'settings_smtpPassword' => '',
|
||||||
'settings_smtpPassword_desc' => '',
|
'settings_smtpPassword_desc' => '',
|
||||||
|
@ -1102,6 +1125,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => '',
|
'splash_add_user' => '',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => '',
|
'splash_cleared_clipboard' => '',
|
||||||
'splash_document_added' => '',
|
'splash_document_added' => '',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1155,6 +1179,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Neznámy',
|
'status_unknown' => 'Neznámy',
|
||||||
'storage_size' => 'Objem dát',
|
'storage_size' => 'Objem dát',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Poslať schválenie',
|
'submit_approval' => 'Poslať schválenie',
|
||||||
'submit_login' => 'Prihlásiť sa',
|
'submit_login' => 'Prihlásiť sa',
|
||||||
'submit_password' => '',
|
'submit_password' => '',
|
||||||
|
@ -1200,6 +1225,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Verzia [version]: [status]',
|
'timeline_status_change' => 'Verzia [version]: [status]',
|
||||||
'to' => 'Do',
|
'to' => 'Do',
|
||||||
'toggle_manager' => 'Prepnúť stav manager',
|
'toggle_manager' => 'Prepnúť stav manager',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => '',
|
'to_before_from' => '',
|
||||||
'transition_triggered_email' => '',
|
'transition_triggered_email' => '',
|
||||||
'transition_triggered_email_body' => '',
|
'transition_triggered_email_body' => '',
|
||||||
|
@ -1261,7 +1287,7 @@ URL: [url]',
|
||||||
'user_login' => 'ID používateľa',
|
'user_login' => 'ID používateľa',
|
||||||
'user_management' => 'Používatelia',
|
'user_management' => 'Používatelia',
|
||||||
'user_name' => 'Plné meno',
|
'user_name' => 'Plné meno',
|
||||||
'use_comment_of_document' => '',
|
'use_comment_of_document' => 'Použite komentár dokumentu',
|
||||||
'use_default_categories' => '',
|
'use_default_categories' => '',
|
||||||
'use_default_keywords' => 'Použiť preddefinované kľúčové slová',
|
'use_default_keywords' => 'Použiť preddefinované kľúčové slová',
|
||||||
'version' => 'Verzia',
|
'version' => 'Verzia',
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (1129), tmichelfelder (106)
|
// Translators: Admin (1130), tmichelfelder (106)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Godkänn',
|
'accept' => 'Godkänn',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Revidera',
|
'action_revise' => 'Revidera',
|
||||||
'add' => 'Lägg till',
|
'add' => 'Lägg till',
|
||||||
'add_approval' => 'Skicka godkännande',
|
'add_approval' => 'Skicka godkännande',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Lägg till dokument',
|
'add_document' => 'Lägg till dokument',
|
||||||
'add_document_link' => 'Lägg till länkat dokument',
|
'add_document_link' => 'Lägg till länkat dokument',
|
||||||
'add_document_notify' => '',
|
'add_document_notify' => '',
|
||||||
|
@ -115,6 +119,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Ge uppdrag till personer/grupper att granska dokumentet',
|
'assign_reviewers' => 'Ge uppdrag till personer/grupper att granska dokumentet',
|
||||||
'assign_user_property_to' => 'Sätt användarens egenskaper till',
|
'assign_user_property_to' => 'Sätt användarens egenskaper till',
|
||||||
'assumed_released' => 'Antas klart för användning',
|
'assumed_released' => 'Antas klart för användning',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Attributdefinitionen finns redan',
|
'attrdef_exists' => 'Attributdefinitionen finns redan',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'Attributdefinitionen används',
|
'attrdef_in_use' => 'Attributdefinitionen används',
|
||||||
|
@ -209,6 +218,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => 'Välj attributdefinition',
|
'choose_attrdef' => 'Välj attributdefinition',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Välj',
|
'choose_category' => 'Välj',
|
||||||
'choose_group' => 'Välj grupp',
|
'choose_group' => 'Välj grupp',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -381,8 +391,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Ändra',
|
'edit_document_props' => 'Ändra',
|
||||||
'edit_event' => 'Ändra händelse',
|
'edit_event' => 'Ändra händelse',
|
||||||
'edit_existing_access' => 'Ändra lista med behörigheter',
|
'edit_existing_access' => 'Ändra lista med behörigheter',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Ändra lista med meddelanden',
|
'edit_existing_notify' => 'Ändra lista med meddelanden',
|
||||||
'edit_folder_access' => 'Ändra behörighet',
|
'edit_folder_access' => 'Ändra behörighet',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Katalog-meddelandelista',
|
'edit_folder_notify' => 'Katalog-meddelandelista',
|
||||||
'edit_folder_props' => 'Ändra katalog',
|
'edit_folder_props' => 'Ändra katalog',
|
||||||
'edit_group' => 'Ändra grupp',
|
'edit_group' => 'Ändra grupp',
|
||||||
|
@ -396,6 +408,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Du kan alltid ändra dina e-postinställningar genom att gå till \'Min Sida\'',
|
'email_footer' => 'Du kan alltid ändra dina e-postinställningar genom att gå till \'Min Sida\'',
|
||||||
'email_header' => 'Detta meddelande skapades automatiskt från dokumentservern.',
|
'email_header' => 'Detta meddelande skapades automatiskt från dokumentservern.',
|
||||||
'email_not_given' => 'Skriv in en giltig e-postadress.',
|
'email_not_given' => 'Skriv in en giltig e-postadress.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Inga dokument eller mappar',
|
'empty_folder_list' => 'Inga dokument eller mappar',
|
||||||
'empty_notify_list' => 'Inga meddelanden',
|
'empty_notify_list' => 'Inga meddelanden',
|
||||||
'en_GB' => 'engelska (GB)',
|
'en_GB' => 'engelska (GB)',
|
||||||
|
@ -403,6 +416,7 @@ URL: [url]',
|
||||||
'error' => 'Fel',
|
'error' => 'Fel',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Inget dokument har valts',
|
'error_no_document_selected' => 'Inget dokument har valts',
|
||||||
'error_no_folder_selected' => 'Ingen katalog har valts',
|
'error_no_folder_selected' => 'Ingen katalog har valts',
|
||||||
|
@ -477,6 +491,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Fulltext-sökning',
|
'fullsearch' => 'Fulltext-sökning',
|
||||||
'fullsearch_hint' => 'Använd fulltext-index',
|
'fullsearch_hint' => 'Använd fulltext-index',
|
||||||
'fulltext_info' => 'Fulltext-indexinfo',
|
'fulltext_info' => 'Fulltext-indexinfo',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Attributdefinitioner',
|
'global_attributedefinitions' => 'Attributdefinitioner',
|
||||||
'global_default_keywords' => 'Globala nyckelord',
|
'global_default_keywords' => 'Globala nyckelord',
|
||||||
'global_document_categories' => 'Kategorier',
|
'global_document_categories' => 'Kategorier',
|
||||||
|
@ -629,6 +644,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'Namn',
|
'name' => 'Namn',
|
||||||
'needs_workflow_action' => 'Detta dokument behöver din uppmärksamhet. Kolla arbetsflödet.',
|
'needs_workflow_action' => 'Detta dokument behöver din uppmärksamhet. Kolla arbetsflödet.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => '',
|
'never' => '',
|
||||||
'new' => 'Ny',
|
'new' => 'Ny',
|
||||||
'new_attrdef' => 'Lägg till attributdefinition',
|
'new_attrdef' => 'Lägg till attributdefinition',
|
||||||
|
@ -689,6 +705,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Inga nyckelord tillgängliga',
|
'no_default_keywords' => 'Inga nyckelord tillgängliga',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'Inga dokument är låsta.',
|
'no_docs_locked' => 'Inga dokument är låsta.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Det finns inga dokument som du behöver godkänna.',
|
'no_docs_to_approve' => 'Det finns inga dokument som du behöver godkänna.',
|
||||||
'no_docs_to_look_at' => 'Det finns inga dokument som behöver godkännas eller granskas.',
|
'no_docs_to_look_at' => 'Det finns inga dokument som behöver godkännas eller granskas.',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -853,6 +870,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Återställ arbetsflödet',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - Återställ arbetsflödet',
|
||||||
'rewind_workflow_warning' => 'Om du återställer ett arbetsflöde till sin ursprungliga status, kommer hela loggboken för dokumentets arbetsflöde att raderas och kan då inte återställas.',
|
'rewind_workflow_warning' => 'Om du återställer ett arbetsflöde till sin ursprungliga status, kommer hela loggboken för dokumentets arbetsflöde att raderas och kan då inte återställas.',
|
||||||
'rm_attrdef' => 'Ta bort attributdefinition',
|
'rm_attrdef' => 'Ta bort attributdefinition',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Ta bort kategori',
|
'rm_default_keyword_category' => 'Ta bort kategori',
|
||||||
'rm_document' => 'Ta bort',
|
'rm_document' => 'Ta bort',
|
||||||
'rm_document_category' => 'Ta bort kategori',
|
'rm_document_category' => 'Ta bort kategori',
|
||||||
|
@ -910,6 +928,7 @@ URL: [url]',
|
||||||
'search_time' => 'Förfluten tid: [time] sek',
|
'search_time' => 'Förfluten tid: [time] sek',
|
||||||
'seconds' => 'sekunder',
|
'seconds' => 'sekunder',
|
||||||
'selection' => 'Urval',
|
'selection' => 'Urval',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Klicka för att välja en kategori',
|
'select_category' => 'Klicka för att välja en kategori',
|
||||||
'select_groups' => 'Välj grupper',
|
'select_groups' => 'Välj grupper',
|
||||||
'select_grp_approvers' => 'Välj en grupp som ska godkänna',
|
'select_grp_approvers' => 'Välj en grupp som ska godkänna',
|
||||||
|
@ -999,6 +1018,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Redigeringsinställningar',
|
'settings_Edition' => 'Redigeringsinställningar',
|
||||||
'settings_editOnlineFileTypes' => 'Redigera online-filtyper',
|
'settings_editOnlineFileTypes' => 'Redigera online-filtyper',
|
||||||
'settings_editOnlineFileTypes_desc' => 'Filer med en av följande filtyper kan redigeras online OBS! ANVÄND BARA SMÅ BOKSTÄVER)',
|
'settings_editOnlineFileTypes_desc' => 'Filer med en av följande filtyper kan redigeras online OBS! ANVÄND BARA SMÅ BOKSTÄVER)',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => 'Visa Admin i listan granska/godkänna',
|
'settings_enableAdminRevApp' => 'Visa Admin i listan granska/godkänna',
|
||||||
|
@ -1107,11 +1128,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Mapp för fulltext-index',
|
'settings_luceneDir' => 'Mapp för fulltext-index',
|
||||||
'settings_luceneDir_desc' => 'Sökväg till Lucene-index',
|
'settings_luceneDir_desc' => 'Sökväg till Lucene-index',
|
||||||
'settings_maxDirID' => 'Max. mapp-ID',
|
'settings_maxDirID' => 'Max. mapp-ID',
|
||||||
'settings_maxDirID_desc' => 'Högsta antal undermappar per överordnade mapp. Standard: 32700.',
|
'settings_maxDirID_desc' => 'Högsta antal undermappar per överordnade mapp. Standard: 0.',
|
||||||
'settings_maxExecutionTime' => 'Max. exekveringstid (s)',
|
'settings_maxExecutionTime' => 'Max. exekveringstid (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Detta sätter hösta tillåtna tiden i sekunder som ett skript får på sig att utföras innan det avslutas.',
|
'settings_maxExecutionTime_desc' => 'Detta sätter hösta tillåtna tiden i sekunder som ett skript får på sig att utföras innan det avslutas.',
|
||||||
'settings_maxRecursiveCount' => 'Max antal rekursiva dokument/katalog',
|
'settings_maxRecursiveCount' => 'Max antal rekursiva dokument/katalog',
|
||||||
'settings_maxRecursiveCount_desc' => 'Detta är maximum antal av dokument eller katalog som kommer att testas om att det har korrekt rättigheter, när objekt räknas rekursiv. Om detta nummer överskrids, kommer antalet av dokument och katalog i katalogvyn bara bli uppskattat.',
|
'settings_maxRecursiveCount_desc' => 'Detta är maximum antal av dokument eller katalog som kommer att testas om att det har korrekt rättigheter, när objekt räknas rekursiv. Om detta nummer överskrids, kommer antalet av dokument och katalog i katalogvyn bara bli uppskattat.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Konfigurera flera inställningar. Standard-inloggning: admin/admin',
|
'settings_more_settings' => 'Konfigurera flera inställningar. Standard-inloggning: admin/admin',
|
||||||
'settings_notfound' => 'Hittades inte',
|
'settings_notfound' => 'Hittades inte',
|
||||||
'settings_Notification' => 'Meddelandeinställningar',
|
'settings_Notification' => 'Meddelandeinställningar',
|
||||||
|
@ -1233,6 +1256,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Ny användare tillagt',
|
'splash_add_user' => 'Ny användare tillagt',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Urklipp rensat',
|
'splash_cleared_clipboard' => 'Urklipp rensat',
|
||||||
'splash_document_added' => '',
|
'splash_document_added' => '',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1286,6 +1310,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Okänd',
|
'status_unknown' => 'Okänd',
|
||||||
'storage_size' => 'Platsstorlek',
|
'storage_size' => 'Platsstorlek',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Skicka godkännande',
|
'submit_approval' => 'Skicka godkännande',
|
||||||
'submit_login' => 'Logga in',
|
'submit_login' => 'Logga in',
|
||||||
'submit_password' => 'Sätt nytt lösenord',
|
'submit_password' => 'Sätt nytt lösenord',
|
||||||
|
@ -1331,6 +1356,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Version [version]: [status]',
|
'timeline_status_change' => 'Version [version]: [status]',
|
||||||
'to' => 'till',
|
'to' => 'till',
|
||||||
'toggle_manager' => 'Byt manager',
|
'toggle_manager' => 'Byt manager',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'Slutdatum får inte vara innan startdatum',
|
'to_before_from' => 'Slutdatum får inte vara innan startdatum',
|
||||||
'transition_triggered_email' => 'Arbetsflödesövergång utlöstes',
|
'transition_triggered_email' => 'Arbetsflödesövergång utlöstes',
|
||||||
'transition_triggered_email_body' => 'Arbetsflödesövergång utlöstes
|
'transition_triggered_email_body' => 'Arbetsflödesövergång utlöstes
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (1038), aydin (83)
|
// Translators: Admin (1040), aydin (83)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Kabul',
|
'accept' => 'Kabul',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -50,6 +53,7 @@ URL: [url]',
|
||||||
'action_revise' => 'Revize et',
|
'action_revise' => 'Revize et',
|
||||||
'add' => 'Ekle',
|
'add' => 'Ekle',
|
||||||
'add_approval' => 'Onay ver',
|
'add_approval' => 'Onay ver',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Doküman ekle',
|
'add_document' => 'Doküman ekle',
|
||||||
'add_document_link' => 'Link ekle',
|
'add_document_link' => 'Link ekle',
|
||||||
'add_document_notify' => 'Hatırlatma ekte',
|
'add_document_notify' => 'Hatırlatma ekte',
|
||||||
|
@ -121,6 +125,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Kontrol Eden Tanımla',
|
'assign_reviewers' => 'Kontrol Eden Tanımla',
|
||||||
'assign_user_property_to' => 'Kullanıcının özelliklerini ata',
|
'assign_user_property_to' => 'Kullanıcının özelliklerini ata',
|
||||||
'assumed_released' => 'Yayınlandı kabul edilmekte',
|
'assumed_released' => 'Yayınlandı kabul edilmekte',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Nitelik tanımı zaten mevcut',
|
'attrdef_exists' => 'Nitelik tanımı zaten mevcut',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => 'Nitelik tanımı halen kullanımda',
|
'attrdef_in_use' => 'Nitelik tanımı halen kullanımda',
|
||||||
|
@ -141,7 +150,7 @@ URL: [url]',
|
||||||
'attrdef_type_email' => '',
|
'attrdef_type_email' => '',
|
||||||
'attrdef_type_float' => '',
|
'attrdef_type_float' => '',
|
||||||
'attrdef_type_int' => 'TamSayı',
|
'attrdef_type_int' => 'TamSayı',
|
||||||
'attrdef_type_string' => '',
|
'attrdef_type_string' => 'Dizi',
|
||||||
'attrdef_type_url' => '',
|
'attrdef_type_url' => '',
|
||||||
'attrdef_valueset' => 'Değer',
|
'attrdef_valueset' => 'Değer',
|
||||||
'attributes' => 'Nitelik',
|
'attributes' => 'Nitelik',
|
||||||
|
@ -215,6 +224,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => 'Lütfen nitelik tanımını seçiniz',
|
'choose_attrdef' => 'Lütfen nitelik tanımını seçiniz',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Lütfen seçiniz',
|
'choose_category' => 'Lütfen seçiniz',
|
||||||
'choose_group' => 'Grup seçiniz',
|
'choose_group' => 'Grup seçiniz',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -387,8 +397,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Dokümanı düzenle',
|
'edit_document_props' => 'Dokümanı düzenle',
|
||||||
'edit_event' => 'Etkinliği düzenle',
|
'edit_event' => 'Etkinliği düzenle',
|
||||||
'edit_existing_access' => 'Erişim Listesini Düzenle',
|
'edit_existing_access' => 'Erişim Listesini Düzenle',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Bildirim listesini düzenle',
|
'edit_existing_notify' => 'Bildirim listesini düzenle',
|
||||||
'edit_folder_access' => 'Erişimi düzenle',
|
'edit_folder_access' => 'Erişimi düzenle',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Klasör Bildirim Listesi',
|
'edit_folder_notify' => 'Klasör Bildirim Listesi',
|
||||||
'edit_folder_props' => 'Klasörü düzenle',
|
'edit_folder_props' => 'Klasörü düzenle',
|
||||||
'edit_group' => 'Grubu düzenle',
|
'edit_group' => 'Grubu düzenle',
|
||||||
|
@ -402,6 +414,7 @@ URL: [url]',
|
||||||
'email_footer' => '\'My Account\' özelliklerini kullanarak her zaman e-posta ayarlarınızı değiştirebilirsiniz',
|
'email_footer' => '\'My Account\' özelliklerini kullanarak her zaman e-posta ayarlarınızı değiştirebilirsiniz',
|
||||||
'email_header' => 'Bu DYS sunucusu tarafından gönderilen otomatik bir mesajdır.',
|
'email_header' => 'Bu DYS sunucusu tarafından gönderilen otomatik bir mesajdır.',
|
||||||
'email_not_given' => 'Lütfen geçerli bir e-posta adresi giriniz.',
|
'email_not_given' => 'Lütfen geçerli bir e-posta adresi giriniz.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Hiç klasör veya doküman yok',
|
'empty_folder_list' => 'Hiç klasör veya doküman yok',
|
||||||
'empty_notify_list' => 'Giriş yok',
|
'empty_notify_list' => 'Giriş yok',
|
||||||
'en_GB' => 'İngilizce',
|
'en_GB' => 'İngilizce',
|
||||||
|
@ -409,6 +422,7 @@ URL: [url]',
|
||||||
'error' => 'Hata',
|
'error' => 'Hata',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Hiçbir doküman seçilmedi',
|
'error_no_document_selected' => 'Hiçbir doküman seçilmedi',
|
||||||
'error_no_folder_selected' => 'Hiçbir klasör seçilmedi',
|
'error_no_folder_selected' => 'Hiçbir klasör seçilmedi',
|
||||||
|
@ -483,6 +497,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Tam metinde ara',
|
'fullsearch' => 'Tam metinde ara',
|
||||||
'fullsearch_hint' => 'Tam metin indeks kullan',
|
'fullsearch_hint' => 'Tam metin indeks kullan',
|
||||||
'fulltext_info' => 'Tam metin indeks bilgi',
|
'fulltext_info' => 'Tam metin indeks bilgi',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Nitelikler',
|
'global_attributedefinitions' => 'Nitelikler',
|
||||||
'global_default_keywords' => 'Global anahtar kelimeler',
|
'global_default_keywords' => 'Global anahtar kelimeler',
|
||||||
'global_document_categories' => 'Kategoriler',
|
'global_document_categories' => 'Kategoriler',
|
||||||
|
@ -635,6 +650,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => 'İsim',
|
'name' => 'İsim',
|
||||||
'needs_workflow_action' => 'Bu doküman dikkatinizi gerektiriyor. Lütfen iş akış sekmesini kontrol ediniz.',
|
'needs_workflow_action' => 'Bu doküman dikkatinizi gerektiriyor. Lütfen iş akış sekmesini kontrol ediniz.',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => 'asla',
|
'never' => 'asla',
|
||||||
'new' => 'Yeni',
|
'new' => 'Yeni',
|
||||||
'new_attrdef' => 'Nitelik tanımı ekle',
|
'new_attrdef' => 'Nitelik tanımı ekle',
|
||||||
|
@ -695,6 +711,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Anahtar kelime yok',
|
'no_default_keywords' => 'Anahtar kelime yok',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => 'Kilitli doküman yok.',
|
'no_docs_locked' => 'Kilitli doküman yok.',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Şu anda onay bekleyen doküman yok.',
|
'no_docs_to_approve' => 'Şu anda onay bekleyen doküman yok.',
|
||||||
'no_docs_to_look_at' => 'Dikkat edilmesi gereken bir doküman yok.',
|
'no_docs_to_look_at' => 'Dikkat edilmesi gereken bir doküman yok.',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -869,6 +886,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: [name] - İş akışı geri alındı',
|
'rewind_workflow_email_subject' => '[sitename]: [name] - İş akışı geri alındı',
|
||||||
'rewind_workflow_warning' => 'İş akışını başlangıç durumuna geri alırsanız tüm iş akış kayıtları geri dönüşümü olmadan silinecektir.',
|
'rewind_workflow_warning' => 'İş akışını başlangıç durumuna geri alırsanız tüm iş akış kayıtları geri dönüşümü olmadan silinecektir.',
|
||||||
'rm_attrdef' => 'Nitelik tanımını sil',
|
'rm_attrdef' => 'Nitelik tanımını sil',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Kategoriyi sil',
|
'rm_default_keyword_category' => 'Kategoriyi sil',
|
||||||
'rm_document' => 'Dokümanı sil',
|
'rm_document' => 'Dokümanı sil',
|
||||||
'rm_document_category' => 'Kategoriyi sil',
|
'rm_document_category' => 'Kategoriyi sil',
|
||||||
|
@ -926,6 +944,7 @@ URL: [url]',
|
||||||
'search_time' => 'Arama süresi: [time] sn.',
|
'search_time' => 'Arama süresi: [time] sn.',
|
||||||
'seconds' => 'saniye',
|
'seconds' => 'saniye',
|
||||||
'selection' => 'Seçim',
|
'selection' => 'Seçim',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Kategori seçmek için tıklayın',
|
'select_category' => 'Kategori seçmek için tıklayın',
|
||||||
'select_groups' => 'Grup seçmek için tıklayın',
|
'select_groups' => 'Grup seçmek için tıklayın',
|
||||||
'select_grp_approvers' => 'Grup onaylayıcı seçmek için tıklayın',
|
'select_grp_approvers' => 'Grup onaylayıcı seçmek için tıklayın',
|
||||||
|
@ -1015,6 +1034,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Düzenleme ayarları',
|
'settings_Edition' => 'Düzenleme ayarları',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => 'Yöneticilere kontrol/onay izni ver',
|
'settings_enableAdminRevApp' => 'Yöneticilere kontrol/onay izni ver',
|
||||||
|
@ -1123,11 +1144,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Tam metin dizini',
|
'settings_luceneDir' => 'Tam metin dizini',
|
||||||
'settings_luceneDir_desc' => 'Lucene indeks dizini yolu',
|
'settings_luceneDir_desc' => 'Lucene indeks dizini yolu',
|
||||||
'settings_maxDirID' => 'Maks Dizin ID',
|
'settings_maxDirID' => 'Maks Dizin ID',
|
||||||
'settings_maxDirID_desc' => 'Klasör altında oluşturulabilecek maksimum alt klasör sayısı Varsayılan: 32700.',
|
'settings_maxDirID_desc' => 'Klasör altında oluşturulabilecek maksimum alt klasör sayısı Varsayılan: 0.',
|
||||||
'settings_maxExecutionTime' => 'Maksimum çalışma zamanı (s)',
|
'settings_maxExecutionTime' => 'Maksimum çalışma zamanı (s)',
|
||||||
'settings_maxExecutionTime_desc' => 'Durdurulmadan önce bir betikin en fazla kaç saniye çalışabileceğini ayarlar',
|
'settings_maxExecutionTime_desc' => 'Durdurulmadan önce bir betikin en fazla kaç saniye çalışabileceğini ayarlar',
|
||||||
'settings_maxRecursiveCount' => 'Maks. özyinelemeli doküman/klasör sayısı',
|
'settings_maxRecursiveCount' => 'Maks. özyinelemeli doküman/klasör sayısı',
|
||||||
'settings_maxRecursiveCount_desc' => 'Nesneleri özyinelemeli olarak erişim hakkı kontrolü için sayarken bu değer en fazla sayılacak doküman ve klasör sayısını belirler. Bu sayı aşıldığında klasörün içindeki dosya ve diğer klasörlerin sayısı tahmin yolu ile belirlenecektir.',
|
'settings_maxRecursiveCount_desc' => 'Nesneleri özyinelemeli olarak erişim hakkı kontrolü için sayarken bu değer en fazla sayılacak doküman ve klasör sayısını belirler. Bu sayı aşıldığında klasörün içindeki dosya ve diğer klasörlerin sayısı tahmin yolu ile belirlenecektir.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Daha fazla ayar yapın. Varsayılan kullanıcı adı/parola: admin/admin',
|
'settings_more_settings' => 'Daha fazla ayar yapın. Varsayılan kullanıcı adı/parola: admin/admin',
|
||||||
'settings_notfound' => 'Bulunamadı',
|
'settings_notfound' => 'Bulunamadı',
|
||||||
'settings_Notification' => 'Bildirim ayarları',
|
'settings_Notification' => 'Bildirim ayarları',
|
||||||
|
@ -1249,6 +1272,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Yeni kullanıcı eklendi',
|
'splash_add_user' => 'Yeni kullanıcı eklendi',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Pano temizlendi',
|
'splash_cleared_clipboard' => 'Pano temizlendi',
|
||||||
'splash_document_added' => 'Doküman eklendi',
|
'splash_document_added' => 'Doküman eklendi',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1302,6 +1326,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => 'Bilinmeyen',
|
'status_unknown' => 'Bilinmeyen',
|
||||||
'storage_size' => 'Depo boyutu',
|
'storage_size' => 'Depo boyutu',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Onay ver',
|
'submit_approval' => 'Onay ver',
|
||||||
'submit_login' => 'Giriş',
|
'submit_login' => 'Giriş',
|
||||||
'submit_password' => 'Yeni parola ayarla',
|
'submit_password' => 'Yeni parola ayarla',
|
||||||
|
@ -1347,6 +1372,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Versiyon [version]: [status]',
|
'timeline_status_change' => 'Versiyon [version]: [status]',
|
||||||
'to' => 'Kime',
|
'to' => 'Kime',
|
||||||
'toggle_manager' => 'Değişim yönetimi',
|
'toggle_manager' => 'Değişim yönetimi',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'Bitiş tarihi başlama tarihinden önce olamaz',
|
'to_before_from' => 'Bitiş tarihi başlama tarihinden önce olamaz',
|
||||||
'transition_triggered_email' => 'İş Akış Geçişi Tetiklendi',
|
'transition_triggered_email' => 'İş Akış Geçişi Tetiklendi',
|
||||||
'transition_triggered_email_body' => 'İş Akış Geçişi Tetiklendi
|
'transition_triggered_email_body' => 'İş Akış Geçişi Tetiklendi
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (1324)
|
// Translators: Admin (1325)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => 'Прийняти',
|
'accept' => 'Прийняти',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => 'На ревізію',
|
'action_revise' => 'На ревізію',
|
||||||
'add' => 'Додати',
|
'add' => 'Додати',
|
||||||
'add_approval' => 'Затвердити',
|
'add_approval' => 'Затвердити',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => 'Додати документ',
|
'add_document' => 'Додати документ',
|
||||||
'add_document_link' => 'Додати посилання',
|
'add_document_link' => 'Додати посилання',
|
||||||
'add_document_notify' => 'Призначити сповіщення',
|
'add_document_notify' => 'Призначити сповіщення',
|
||||||
|
@ -127,6 +131,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => 'Призначити рецензентів',
|
'assign_reviewers' => 'Призначити рецензентів',
|
||||||
'assign_user_property_to' => 'Призначити властивості користувача',
|
'assign_user_property_to' => 'Призначити властивості користувача',
|
||||||
'assumed_released' => 'Затверджено',
|
'assumed_released' => 'Затверджено',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => 'Визначення атрибуту вже існує',
|
'attrdef_exists' => 'Визначення атрибуту вже існує',
|
||||||
'attrdef_info' => 'Інформація',
|
'attrdef_info' => 'Інформація',
|
||||||
'attrdef_in_use' => 'Визначення цього атрибуту вже використовується',
|
'attrdef_in_use' => 'Визначення цього атрибуту вже використовується',
|
||||||
|
@ -221,6 +230,7 @@ URL: [url]',
|
||||||
'checkout_document' => 'Завантаження',
|
'checkout_document' => 'Завантаження',
|
||||||
'checkout_is_disabled' => 'Завантаження відключене',
|
'checkout_is_disabled' => 'Завантаження відключене',
|
||||||
'choose_attrdef' => 'Оберіть атрибут',
|
'choose_attrdef' => 'Оберіть атрибут',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => 'Оберіть категорію',
|
'choose_category' => 'Оберіть категорію',
|
||||||
'choose_group' => 'Оберіть групу',
|
'choose_group' => 'Оберіть групу',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -393,8 +403,10 @@ URL: [url]',
|
||||||
'edit_document_props' => 'Змінити документ',
|
'edit_document_props' => 'Змінити документ',
|
||||||
'edit_event' => 'Змінити подію',
|
'edit_event' => 'Змінити подію',
|
||||||
'edit_existing_access' => 'Змінити доступ',
|
'edit_existing_access' => 'Змінити доступ',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => 'Змінити сповіщення',
|
'edit_existing_notify' => 'Змінити сповіщення',
|
||||||
'edit_folder_access' => 'Змінити доступ',
|
'edit_folder_access' => 'Змінити доступ',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => 'Список сповіщення каталогу',
|
'edit_folder_notify' => 'Список сповіщення каталогу',
|
||||||
'edit_folder_props' => 'Змінити каталог',
|
'edit_folder_props' => 'Змінити каталог',
|
||||||
'edit_group' => 'Змінити групу',
|
'edit_group' => 'Змінити групу',
|
||||||
|
@ -408,6 +420,7 @@ URL: [url]',
|
||||||
'email_footer' => 'Ви можете змінити e-mail використовуючи меню «Мій обліковий запис».',
|
'email_footer' => 'Ви можете змінити e-mail використовуючи меню «Мій обліковий запис».',
|
||||||
'email_header' => 'Це автоматичне сповіщення сервера документообігу',
|
'email_header' => 'Це автоматичне сповіщення сервера документообігу',
|
||||||
'email_not_given' => 'Введіть справжній e-mail.',
|
'email_not_given' => 'Введіть справжній e-mail.',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => 'Немає документів або каталогів',
|
'empty_folder_list' => 'Немає документів або каталогів',
|
||||||
'empty_notify_list' => 'Немає записів',
|
'empty_notify_list' => 'Немає записів',
|
||||||
'en_GB' => 'English (GB)',
|
'en_GB' => 'English (GB)',
|
||||||
|
@ -415,6 +428,7 @@ URL: [url]',
|
||||||
'error' => 'Помилка',
|
'error' => 'Помилка',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => 'Немає вибраних документів',
|
'error_no_document_selected' => 'Немає вибраних документів',
|
||||||
'error_no_folder_selected' => 'Немає вибраних каталогів',
|
'error_no_folder_selected' => 'Немає вибраних каталогів',
|
||||||
|
@ -489,6 +503,7 @@ URL: [url]',
|
||||||
'fullsearch' => 'Повнотекстовий пошук',
|
'fullsearch' => 'Повнотекстовий пошук',
|
||||||
'fullsearch_hint' => 'Використовувати повнотекстовий індекс',
|
'fullsearch_hint' => 'Використовувати повнотекстовий індекс',
|
||||||
'fulltext_info' => 'Інформація про повнотекстовий індекс',
|
'fulltext_info' => 'Інформація про повнотекстовий індекс',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => 'Атрибути',
|
'global_attributedefinitions' => 'Атрибути',
|
||||||
'global_default_keywords' => 'Глобальні ключові слова',
|
'global_default_keywords' => 'Глобальні ключові слова',
|
||||||
'global_document_categories' => 'Категорії',
|
'global_document_categories' => 'Категорії',
|
||||||
|
@ -641,6 +656,7 @@ URL: [url]',
|
||||||
'my_transmittals' => 'Мої перенесення',
|
'my_transmittals' => 'Мої перенесення',
|
||||||
'name' => 'Назва',
|
'name' => 'Назва',
|
||||||
'needs_workflow_action' => 'Цей документ потребує вашої уваги. Див. вкладку «Процес».',
|
'needs_workflow_action' => 'Цей документ потребує вашої уваги. Див. вкладку «Процес».',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => 'ніколи',
|
'never' => 'ніколи',
|
||||||
'new' => 'Новий',
|
'new' => 'Новий',
|
||||||
'new_attrdef' => 'Додати визначення атрибуту',
|
'new_attrdef' => 'Додати визначення атрибуту',
|
||||||
|
@ -700,6 +716,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => 'Немає ключових слів',
|
'no_default_keywords' => 'Немає ключових слів',
|
||||||
'no_docs_checked_out' => 'Немає документів на опрацюванні',
|
'no_docs_checked_out' => 'Немає документів на опрацюванні',
|
||||||
'no_docs_locked' => 'Немає заблокованих документів',
|
'no_docs_locked' => 'Немає заблокованих документів',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => 'Немає документів, які потребують затвердження',
|
'no_docs_to_approve' => 'Немає документів, які потребують затвердження',
|
||||||
'no_docs_to_look_at' => 'Немає документів, які потребують уваги',
|
'no_docs_to_look_at' => 'Немає документів, які потребують уваги',
|
||||||
'no_docs_to_receipt' => 'Немає документів, які потребують підтвердження',
|
'no_docs_to_receipt' => 'Немає документів, які потребують підтвердження',
|
||||||
|
@ -890,6 +907,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '[sitename]: процес перезапущено для «[name]»',
|
'rewind_workflow_email_subject' => '[sitename]: процес перезапущено для «[name]»',
|
||||||
'rewind_workflow_warning' => 'Якщо ви почнете процес спочатку, то весь журнал процесу для цього процесу буде очищено і його неможливо буде відновити.',
|
'rewind_workflow_warning' => 'Якщо ви почнете процес спочатку, то весь журнал процесу для цього процесу буде очищено і його неможливо буде відновити.',
|
||||||
'rm_attrdef' => 'Видалити визначення атрибуту',
|
'rm_attrdef' => 'Видалити визначення атрибуту',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => 'Видалити категорію',
|
'rm_default_keyword_category' => 'Видалити категорію',
|
||||||
'rm_document' => 'Видалити документ',
|
'rm_document' => 'Видалити документ',
|
||||||
'rm_document_category' => 'Видалити категорію',
|
'rm_document_category' => 'Видалити категорію',
|
||||||
|
@ -947,6 +965,7 @@ URL: [url]',
|
||||||
'search_time' => 'Пройшло: [time] с',
|
'search_time' => 'Пройшло: [time] с',
|
||||||
'seconds' => 'секунди',
|
'seconds' => 'секунди',
|
||||||
'selection' => 'Вибір',
|
'selection' => 'Вибір',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => 'Оберіть категорію',
|
'select_category' => 'Оберіть категорію',
|
||||||
'select_groups' => 'Оберіть групи',
|
'select_groups' => 'Оберіть групи',
|
||||||
'select_grp_approvers' => 'Оберіть групу затверджувачів',
|
'select_grp_approvers' => 'Оберіть групу затверджувачів',
|
||||||
|
@ -1036,6 +1055,8 @@ URL: [url]',
|
||||||
'settings_Edition' => 'Налаштування версій',
|
'settings_Edition' => 'Налаштування версій',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => 'Увімкнути підтвердження отримання документу',
|
'settings_enableAcknowledgeWorkflow' => 'Увімкнути підтвердження отримання документу',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => 'Включіть для активації функції підтвердження отримання документу',
|
'settings_enableAcknowledgeWorkflow_desc' => 'Включіть для активації функції підтвердження отримання документу',
|
||||||
'settings_enableAdminRevApp' => 'Адміністратор може бути<br/>рецензент і затверджувач',
|
'settings_enableAdminRevApp' => 'Адміністратор може бути<br/>рецензент і затверджувач',
|
||||||
|
@ -1144,11 +1165,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => 'Каталог повнотекстового індексу Lucene',
|
'settings_luceneDir' => 'Каталог повнотекстового індексу Lucene',
|
||||||
'settings_luceneDir_desc' => 'Шлях, куди Lucene буде записувати свій індекс.',
|
'settings_luceneDir_desc' => 'Шлях, куди Lucene буде записувати свій індекс.',
|
||||||
'settings_maxDirID' => 'Максимальний ID каталогу',
|
'settings_maxDirID' => 'Максимальний ID каталогу',
|
||||||
'settings_maxDirID_desc' => 'Максимум каталогів у батьківському каталозі. По замовчуванню 32700.',
|
'settings_maxDirID_desc' => 'Максимум каталогів у батьківському каталозі. По замовчуванню 0.',
|
||||||
'settings_maxExecutionTime' => 'Максимальний час виконання, с',
|
'settings_maxExecutionTime' => 'Максимальний час виконання, с',
|
||||||
'settings_maxExecutionTime_desc' => 'Встановлює максимальний час виконання скрипта, перед тим як він буде завершений.',
|
'settings_maxExecutionTime_desc' => 'Встановлює максимальний час виконання скрипта, перед тим як він буде завершений.',
|
||||||
'settings_maxRecursiveCount' => 'Обмеження рекурсивного підрахунку<br/>документів і каталогів',
|
'settings_maxRecursiveCount' => 'Обмеження рекурсивного підрахунку<br/>документів і каталогів',
|
||||||
'settings_maxRecursiveCount_desc' => 'Максимальна кількість документів і каталогів, які будуть перевірені на права доступу при рекурсивному підрахунку об\'єктів. При перевищенні цієї кількості, буде оцінено кількість документів і каталогів у вигляді каталогу.',
|
'settings_maxRecursiveCount_desc' => 'Максимальна кількість документів і каталогів, які будуть перевірені на права доступу при рекурсивному підрахунку об\'єктів. При перевищенні цієї кількості, буде оцінено кількість документів і каталогів у вигляді каталогу.',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => 'Інші налаштування. Логін по замовчуванню: admin/admin',
|
'settings_more_settings' => 'Інші налаштування. Логін по замовчуванню: admin/admin',
|
||||||
'settings_notfound' => 'Не знайдено',
|
'settings_notfound' => 'Не знайдено',
|
||||||
'settings_Notification' => 'Налаштування сповіщення',
|
'settings_Notification' => 'Налаштування сповіщення',
|
||||||
|
@ -1270,6 +1293,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => 'Додано нового користувача',
|
'splash_add_user' => 'Додано нового користувача',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => 'Буфер обміну очищено',
|
'splash_cleared_clipboard' => 'Буфер обміну очищено',
|
||||||
'splash_document_added' => 'Додано документ',
|
'splash_document_added' => 'Додано документ',
|
||||||
'splash_document_checkedout' => 'Документ відправлено на опрацювання',
|
'splash_document_checkedout' => 'Документ відправлено на опрацювання',
|
||||||
|
@ -1323,6 +1347,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => 'Ревізора видалено зі списку',
|
'status_revisor_removed' => 'Ревізора видалено зі списку',
|
||||||
'status_unknown' => 'Невідомий',
|
'status_unknown' => 'Невідомий',
|
||||||
'storage_size' => 'Розмір сховища',
|
'storage_size' => 'Розмір сховища',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => 'Затвердити',
|
'submit_approval' => 'Затвердити',
|
||||||
'submit_login' => 'Увійти',
|
'submit_login' => 'Увійти',
|
||||||
'submit_password' => 'Встановити новий пароль',
|
'submit_password' => 'Встановити новий пароль',
|
||||||
|
@ -1368,6 +1393,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => 'Версія [version]: [status]',
|
'timeline_status_change' => 'Версія [version]: [status]',
|
||||||
'to' => 'До',
|
'to' => 'До',
|
||||||
'toggle_manager' => 'Змінити ознаку менеджера',
|
'toggle_manager' => 'Змінити ознаку менеджера',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => 'Кінцева дата не може бути меншою початкової дати',
|
'to_before_from' => 'Кінцева дата не може бути меншою початкової дати',
|
||||||
'transition_triggered_email' => 'Змінено стан процесу',
|
'transition_triggered_email' => 'Змінено стан процесу',
|
||||||
'transition_triggered_email_body' => 'Змінено стан процесу
|
'transition_triggered_email_body' => 'Змінено стан процесу
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (635), fengjohn (5)
|
// Translators: Admin (644), fengjohn (5)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => '接受',
|
'accept' => '接受',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => '',
|
'action_revise' => '',
|
||||||
'add' => '添加',
|
'add' => '添加',
|
||||||
'add_approval' => '提交审核',
|
'add_approval' => '提交审核',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => '添加文档',
|
'add_document' => '添加文档',
|
||||||
'add_document_link' => '添加链接',
|
'add_document_link' => '添加链接',
|
||||||
'add_document_notify' => '派发通知',
|
'add_document_notify' => '派发通知',
|
||||||
|
@ -110,6 +114,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => '指派校对人',
|
'assign_reviewers' => '指派校对人',
|
||||||
'assign_user_property_to' => '分配用户属性给',
|
'assign_user_property_to' => '分配用户属性给',
|
||||||
'assumed_released' => '假定发布',
|
'assumed_released' => '假定发布',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => '',
|
'attrdef_exists' => '',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => '属性定义仍在使用中',
|
'attrdef_in_use' => '属性定义仍在使用中',
|
||||||
|
@ -198,6 +207,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => '请选择属性',
|
'choose_attrdef' => '请选择属性',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => '请选择',
|
'choose_category' => '请选择',
|
||||||
'choose_group' => '选择组别',
|
'choose_group' => '选择组别',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -248,7 +258,7 @@ URL: [url]',
|
||||||
认你的操作',
|
认你的操作',
|
||||||
'creation_date' => '创建日期',
|
'creation_date' => '创建日期',
|
||||||
'cs_CZ' => '捷克语',
|
'cs_CZ' => '捷克语',
|
||||||
'current_password' => '',
|
'current_password' => '当前密码',
|
||||||
'current_quota' => '',
|
'current_quota' => '',
|
||||||
'current_state' => '',
|
'current_state' => '',
|
||||||
'current_version' => '当前版本',
|
'current_version' => '当前版本',
|
||||||
|
@ -325,7 +335,7 @@ URL: [url]',
|
||||||
'drag_icon_here' => '拖动图标到这里',
|
'drag_icon_here' => '拖动图标到这里',
|
||||||
'dropfolderdir_missing' => '',
|
'dropfolderdir_missing' => '',
|
||||||
'dropfolder_file' => '所选文件夹的文件',
|
'dropfolder_file' => '所选文件夹的文件',
|
||||||
'dropfolder_folder' => '',
|
'dropfolder_folder' => '从下拉菜单中选择文件夹',
|
||||||
'dropupload' => '快速上传',
|
'dropupload' => '快速上传',
|
||||||
'drop_files_here' => '拖入这里',
|
'drop_files_here' => '拖入这里',
|
||||||
'dump_creation' => '转储数据',
|
'dump_creation' => '转储数据',
|
||||||
|
@ -342,8 +352,10 @@ URL: [url]',
|
||||||
'edit_document_props' => '编辑文档',
|
'edit_document_props' => '编辑文档',
|
||||||
'edit_event' => '编辑事件',
|
'edit_event' => '编辑事件',
|
||||||
'edit_existing_access' => '编辑访问列表',
|
'edit_existing_access' => '编辑访问列表',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => '编辑通知列表',
|
'edit_existing_notify' => '编辑通知列表',
|
||||||
'edit_folder_access' => '编辑访问权限',
|
'edit_folder_access' => '编辑访问权限',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => '文件夹通知列表',
|
'edit_folder_notify' => '文件夹通知列表',
|
||||||
'edit_folder_props' => '编辑文件夹',
|
'edit_folder_props' => '编辑文件夹',
|
||||||
'edit_group' => '编辑组别',
|
'edit_group' => '编辑组别',
|
||||||
|
@ -357,6 +369,7 @@ URL: [url]',
|
||||||
'email_footer' => '您可以用‘我的账户’选项来改变您的e-mail设置',
|
'email_footer' => '您可以用‘我的账户’选项来改变您的e-mail设置',
|
||||||
'email_header' => '这是来自于DMS(文档管理系统)的自动发送消息',
|
'email_header' => '这是来自于DMS(文档管理系统)的自动发送消息',
|
||||||
'email_not_given' => '',
|
'email_not_given' => '',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => '没有文件或子目录',
|
'empty_folder_list' => '没有文件或子目录',
|
||||||
'empty_notify_list' => '没有条目',
|
'empty_notify_list' => '没有条目',
|
||||||
'en_GB' => '英语',
|
'en_GB' => '英语',
|
||||||
|
@ -364,6 +377,7 @@ URL: [url]',
|
||||||
'error' => '错误',
|
'error' => '错误',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => '请选择文档',
|
'error_no_document_selected' => '请选择文档',
|
||||||
'error_no_folder_selected' => '请选择文件夹',
|
'error_no_folder_selected' => '请选择文件夹',
|
||||||
|
@ -414,6 +428,7 @@ URL: [url]',
|
||||||
'fullsearch' => '全文搜索',
|
'fullsearch' => '全文搜索',
|
||||||
'fullsearch_hint' => '使用全文索引',
|
'fullsearch_hint' => '使用全文索引',
|
||||||
'fulltext_info' => '全文索引信息',
|
'fulltext_info' => '全文索引信息',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => '属性',
|
'global_attributedefinitions' => '属性',
|
||||||
'global_default_keywords' => '全局关键字',
|
'global_default_keywords' => '全局关键字',
|
||||||
'global_document_categories' => '分类',
|
'global_document_categories' => '分类',
|
||||||
|
@ -441,9 +456,9 @@ URL: [url]',
|
||||||
'hu_HU' => '匈牙利语',
|
'hu_HU' => '匈牙利语',
|
||||||
'id' => '序号',
|
'id' => '序号',
|
||||||
'identical_version' => '',
|
'identical_version' => '',
|
||||||
'import' => '',
|
'import' => '导入',
|
||||||
'importfs' => '',
|
'importfs' => '',
|
||||||
'import_fs' => '',
|
'import_fs' => '从文件系统导入',
|
||||||
'import_fs_warning' => '',
|
'import_fs_warning' => '',
|
||||||
'include_content' => '',
|
'include_content' => '',
|
||||||
'include_documents' => '包含文档',
|
'include_documents' => '包含文档',
|
||||||
|
@ -512,7 +527,7 @@ URL: [url]',
|
||||||
'language' => '语言',
|
'language' => '语言',
|
||||||
'lastaccess' => '最后登录',
|
'lastaccess' => '最后登录',
|
||||||
'last_update' => '上次更新',
|
'last_update' => '上次更新',
|
||||||
'legend' => '',
|
'legend' => '图例',
|
||||||
'librarydoc' => '',
|
'librarydoc' => '',
|
||||||
'linked_documents' => '相关文档',
|
'linked_documents' => '相关文档',
|
||||||
'linked_files' => '附件',
|
'linked_files' => '附件',
|
||||||
|
@ -566,6 +581,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => '名称',
|
'name' => '名称',
|
||||||
'needs_workflow_action' => '',
|
'needs_workflow_action' => '',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => '',
|
'never' => '',
|
||||||
'new' => 'New',
|
'new' => 'New',
|
||||||
'new_attrdef' => '添加属性',
|
'new_attrdef' => '添加属性',
|
||||||
|
@ -579,7 +595,7 @@ URL: [url]',
|
||||||
'new_file_email_body' => '',
|
'new_file_email_body' => '',
|
||||||
'new_file_email_subject' => '',
|
'new_file_email_subject' => '',
|
||||||
'new_folder' => '新建文件夹',
|
'new_folder' => '新建文件夹',
|
||||||
'new_password' => '',
|
'new_password' => '新密码',
|
||||||
'new_subfolder_email' => '创建新文件夹',
|
'new_subfolder_email' => '创建新文件夹',
|
||||||
'new_subfolder_email_body' => '',
|
'new_subfolder_email_body' => '',
|
||||||
'new_subfolder_email_subject' => '',
|
'new_subfolder_email_subject' => '',
|
||||||
|
@ -602,6 +618,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => '无关键字',
|
'no_default_keywords' => '无关键字',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => '无锁定的文档',
|
'no_docs_locked' => '无锁定的文档',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => '当前没有需要审核的文档',
|
'no_docs_to_approve' => '当前没有需要审核的文档',
|
||||||
'no_docs_to_look_at' => '没有需要关注的文档',
|
'no_docs_to_look_at' => '没有需要关注的文档',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -686,7 +703,7 @@ URL: [url]',
|
||||||
'removed_revispr' => '',
|
'removed_revispr' => '',
|
||||||
'removed_workflow_email_body' => '',
|
'removed_workflow_email_body' => '',
|
||||||
'removed_workflow_email_subject' => '',
|
'removed_workflow_email_subject' => '',
|
||||||
'remove_marked_files' => '',
|
'remove_marked_files' => '删除选中的文件',
|
||||||
'repaired' => '',
|
'repaired' => '',
|
||||||
'repairing_objects' => '',
|
'repairing_objects' => '',
|
||||||
'request_workflow_action_email_body' => '',
|
'request_workflow_action_email_body' => '',
|
||||||
|
@ -731,6 +748,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '',
|
'rewind_workflow_email_subject' => '',
|
||||||
'rewind_workflow_warning' => '',
|
'rewind_workflow_warning' => '',
|
||||||
'rm_attrdef' => '去掉属性定义',
|
'rm_attrdef' => '去掉属性定义',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => '删除类别',
|
'rm_default_keyword_category' => '删除类别',
|
||||||
'rm_document' => '删除文档',
|
'rm_document' => '删除文档',
|
||||||
'rm_document_category' => '删除分类',
|
'rm_document_category' => '删除分类',
|
||||||
|
@ -781,6 +799,7 @@ URL: [url]',
|
||||||
'search_time' => '耗时:[time]秒',
|
'search_time' => '耗时:[time]秒',
|
||||||
'seconds' => '',
|
'seconds' => '',
|
||||||
'selection' => '选择',
|
'selection' => '选择',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => '选中分类',
|
'select_category' => '选中分类',
|
||||||
'select_groups' => '点击选择组',
|
'select_groups' => '点击选择组',
|
||||||
'select_grp_approvers' => '',
|
'select_grp_approvers' => '',
|
||||||
|
@ -870,6 +889,8 @@ URL: [url]',
|
||||||
'settings_Edition' => '编辑设置',
|
'settings_Edition' => '编辑设置',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => '',
|
'settings_enableAdminRevApp' => '',
|
||||||
|
@ -978,11 +999,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => '',
|
'settings_luceneDir' => '',
|
||||||
'settings_luceneDir_desc' => '',
|
'settings_luceneDir_desc' => '',
|
||||||
'settings_maxDirID' => '最大目录编号',
|
'settings_maxDirID' => '最大目录编号',
|
||||||
'settings_maxDirID_desc' => '每个父目录的子目录的最大数目。默认值:32700。',
|
'settings_maxDirID_desc' => '每个父目录的子目录的最大数目。默认值:0。',
|
||||||
'settings_maxExecutionTime' => '最大执行时间(秒)',
|
'settings_maxExecutionTime' => '最大执行时间(秒)',
|
||||||
'settings_maxExecutionTime_desc' => '此设置最长时间,以秒为脚本允许运行之前它是由解析终止',
|
'settings_maxExecutionTime_desc' => '此设置最长时间,以秒为脚本允许运行之前它是由解析终止',
|
||||||
'settings_maxRecursiveCount' => '',
|
'settings_maxRecursiveCount' => '',
|
||||||
'settings_maxRecursiveCount_desc' => '',
|
'settings_maxRecursiveCount_desc' => '',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => '',
|
'settings_more_settings' => '',
|
||||||
'settings_notfound' => '',
|
'settings_notfound' => '',
|
||||||
'settings_Notification' => '通知设置',
|
'settings_Notification' => '通知设置',
|
||||||
|
@ -1104,6 +1127,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => '',
|
'splash_add_user' => '',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => '',
|
'splash_cleared_clipboard' => '',
|
||||||
'splash_document_added' => '',
|
'splash_document_added' => '',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1136,7 +1160,7 @@ URL: [url]',
|
||||||
'splash_switched_back_user' => '',
|
'splash_switched_back_user' => '',
|
||||||
'splash_toogle_group_manager' => '',
|
'splash_toogle_group_manager' => '',
|
||||||
'state_and_next_state' => '',
|
'state_and_next_state' => '',
|
||||||
'statistic' => '',
|
'statistic' => '统计',
|
||||||
'status' => '状态',
|
'status' => '状态',
|
||||||
'status_approval_rejected' => '拟拒绝',
|
'status_approval_rejected' => '拟拒绝',
|
||||||
'status_approved' => '批准',
|
'status_approved' => '批准',
|
||||||
|
@ -1157,6 +1181,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => '未知',
|
'status_unknown' => '未知',
|
||||||
'storage_size' => '存储大小',
|
'storage_size' => '存储大小',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => '提交审核',
|
'submit_approval' => '提交审核',
|
||||||
'submit_login' => '登录',
|
'submit_login' => '登录',
|
||||||
'submit_password' => '',
|
'submit_password' => '',
|
||||||
|
@ -1202,6 +1227,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => '版本 [版本]: [状态]',
|
'timeline_status_change' => '版本 [版本]: [状态]',
|
||||||
'to' => '到',
|
'to' => '到',
|
||||||
'toggle_manager' => '角色切换',
|
'toggle_manager' => '角色切换',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => '',
|
'to_before_from' => '',
|
||||||
'transition_triggered_email' => '',
|
'transition_triggered_email' => '',
|
||||||
'transition_triggered_email_body' => '',
|
'transition_triggered_email_body' => '',
|
||||||
|
|
|
@ -19,9 +19,12 @@
|
||||||
// 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 (2369)
|
// Translators: Admin (2371)
|
||||||
|
|
||||||
$text = array(
|
$text = array(
|
||||||
|
'2_factor_auth' => '',
|
||||||
|
'2_factor_auth_info' => '',
|
||||||
|
'2_fact_auth_secret' => '',
|
||||||
'accept' => '接受',
|
'accept' => '接受',
|
||||||
'access_control' => '',
|
'access_control' => '',
|
||||||
'access_control_is_off' => '',
|
'access_control_is_off' => '',
|
||||||
|
@ -51,6 +54,7 @@ URL: [url]',
|
||||||
'action_revise' => '',
|
'action_revise' => '',
|
||||||
'add' => '添加',
|
'add' => '添加',
|
||||||
'add_approval' => '提交審核',
|
'add_approval' => '提交審核',
|
||||||
|
'add_attrdefgroup' => '',
|
||||||
'add_document' => '添加文檔',
|
'add_document' => '添加文檔',
|
||||||
'add_document_link' => '添加連結',
|
'add_document_link' => '添加連結',
|
||||||
'add_document_notify' => '',
|
'add_document_notify' => '',
|
||||||
|
@ -110,6 +114,11 @@ URL: [url]',
|
||||||
'assign_reviewers' => '指派校對人',
|
'assign_reviewers' => '指派校對人',
|
||||||
'assign_user_property_to' => '分配使用者屬性給',
|
'assign_user_property_to' => '分配使用者屬性給',
|
||||||
'assumed_released' => '假定發佈',
|
'assumed_released' => '假定發佈',
|
||||||
|
'attrdefgroup_management' => '',
|
||||||
|
'attrdefgrp_show_detail' => '',
|
||||||
|
'attrdefgrp_show_list' => '',
|
||||||
|
'attrdefgrp_show_search' => '',
|
||||||
|
'attrdefgrp_show_searchlist' => '',
|
||||||
'attrdef_exists' => '',
|
'attrdef_exists' => '',
|
||||||
'attrdef_info' => '',
|
'attrdef_info' => '',
|
||||||
'attrdef_in_use' => '',
|
'attrdef_in_use' => '',
|
||||||
|
@ -198,6 +207,7 @@ URL: [url]',
|
||||||
'checkout_document' => '',
|
'checkout_document' => '',
|
||||||
'checkout_is_disabled' => '',
|
'checkout_is_disabled' => '',
|
||||||
'choose_attrdef' => '請選擇屬性',
|
'choose_attrdef' => '請選擇屬性',
|
||||||
|
'choose_attrdefgroup' => '',
|
||||||
'choose_category' => '請選擇',
|
'choose_category' => '請選擇',
|
||||||
'choose_group' => '選擇組別',
|
'choose_group' => '選擇組別',
|
||||||
'choose_role' => '',
|
'choose_role' => '',
|
||||||
|
@ -340,8 +350,10 @@ URL: [url]',
|
||||||
'edit_document_props' => '編輯文檔',
|
'edit_document_props' => '編輯文檔',
|
||||||
'edit_event' => '編輯事件',
|
'edit_event' => '編輯事件',
|
||||||
'edit_existing_access' => '編輯訪問列表',
|
'edit_existing_access' => '編輯訪問列表',
|
||||||
|
'edit_existing_attribute_groups' => '',
|
||||||
'edit_existing_notify' => '編輯通知列表',
|
'edit_existing_notify' => '編輯通知列表',
|
||||||
'edit_folder_access' => '編輯存取權限',
|
'edit_folder_access' => '編輯存取權限',
|
||||||
|
'edit_folder_attrdefgrp' => '',
|
||||||
'edit_folder_notify' => '資料夾通知列表',
|
'edit_folder_notify' => '資料夾通知列表',
|
||||||
'edit_folder_props' => '編輯資料夾',
|
'edit_folder_props' => '編輯資料夾',
|
||||||
'edit_group' => '編輯組別',
|
'edit_group' => '編輯組別',
|
||||||
|
@ -355,6 +367,7 @@ URL: [url]',
|
||||||
'email_footer' => '您可以用‘我的帳戶’選項來改變您的e-mail設置',
|
'email_footer' => '您可以用‘我的帳戶’選項來改變您的e-mail設置',
|
||||||
'email_header' => '這是來自于DMS(文檔管理系統)的自動發送消息',
|
'email_header' => '這是來自于DMS(文檔管理系統)的自動發送消息',
|
||||||
'email_not_given' => '',
|
'email_not_given' => '',
|
||||||
|
'empty_attribute_group_list' => '',
|
||||||
'empty_folder_list' => '沒有檔或子目錄',
|
'empty_folder_list' => '沒有檔或子目錄',
|
||||||
'empty_notify_list' => '沒有條目',
|
'empty_notify_list' => '沒有條目',
|
||||||
'en_GB' => '英語',
|
'en_GB' => '英語',
|
||||||
|
@ -362,6 +375,7 @@ URL: [url]',
|
||||||
'error' => '錯誤',
|
'error' => '錯誤',
|
||||||
'error_add_aro' => '',
|
'error_add_aro' => '',
|
||||||
'error_add_permission' => '',
|
'error_add_permission' => '',
|
||||||
|
'error_clearcache' => '',
|
||||||
'error_importfs' => '',
|
'error_importfs' => '',
|
||||||
'error_no_document_selected' => '請選擇文檔',
|
'error_no_document_selected' => '請選擇文檔',
|
||||||
'error_no_folder_selected' => '請選擇資料夾',
|
'error_no_folder_selected' => '請選擇資料夾',
|
||||||
|
@ -412,6 +426,7 @@ URL: [url]',
|
||||||
'fullsearch' => '全文檢索搜尋',
|
'fullsearch' => '全文檢索搜尋',
|
||||||
'fullsearch_hint' => '使用全文索引',
|
'fullsearch_hint' => '使用全文索引',
|
||||||
'fulltext_info' => '全文索引資訊',
|
'fulltext_info' => '全文索引資訊',
|
||||||
|
'global_attributedefinitiongroups' => '',
|
||||||
'global_attributedefinitions' => '屬性',
|
'global_attributedefinitions' => '屬性',
|
||||||
'global_default_keywords' => '全域關鍵字',
|
'global_default_keywords' => '全域關鍵字',
|
||||||
'global_document_categories' => '分類',
|
'global_document_categories' => '分類',
|
||||||
|
@ -564,6 +579,7 @@ URL: [url]',
|
||||||
'my_transmittals' => '',
|
'my_transmittals' => '',
|
||||||
'name' => '名稱',
|
'name' => '名稱',
|
||||||
'needs_workflow_action' => '',
|
'needs_workflow_action' => '',
|
||||||
|
'network_drive' => '',
|
||||||
'never' => '',
|
'never' => '',
|
||||||
'new' => 'New',
|
'new' => 'New',
|
||||||
'new_attrdef' => '添加屬性',
|
'new_attrdef' => '添加屬性',
|
||||||
|
@ -600,6 +616,7 @@ URL: [url]',
|
||||||
'no_default_keywords' => '無關鍵字',
|
'no_default_keywords' => '無關鍵字',
|
||||||
'no_docs_checked_out' => '',
|
'no_docs_checked_out' => '',
|
||||||
'no_docs_locked' => '無鎖定的文檔',
|
'no_docs_locked' => '無鎖定的文檔',
|
||||||
|
'no_docs_rejected' => '',
|
||||||
'no_docs_to_approve' => '當前沒有需要審核的文檔',
|
'no_docs_to_approve' => '當前沒有需要審核的文檔',
|
||||||
'no_docs_to_look_at' => '沒有需要關注的文檔',
|
'no_docs_to_look_at' => '沒有需要關注的文檔',
|
||||||
'no_docs_to_receipt' => '',
|
'no_docs_to_receipt' => '',
|
||||||
|
@ -729,6 +746,7 @@ URL: [url]',
|
||||||
'rewind_workflow_email_subject' => '',
|
'rewind_workflow_email_subject' => '',
|
||||||
'rewind_workflow_warning' => '',
|
'rewind_workflow_warning' => '',
|
||||||
'rm_attrdef' => '',
|
'rm_attrdef' => '',
|
||||||
|
'rm_attrdefgroup' => '',
|
||||||
'rm_default_keyword_category' => '刪除類別',
|
'rm_default_keyword_category' => '刪除類別',
|
||||||
'rm_document' => '刪除文檔',
|
'rm_document' => '刪除文檔',
|
||||||
'rm_document_category' => '刪除分類',
|
'rm_document_category' => '刪除分類',
|
||||||
|
@ -779,6 +797,7 @@ URL: [url]',
|
||||||
'search_time' => '耗時:[time]秒',
|
'search_time' => '耗時:[time]秒',
|
||||||
'seconds' => '',
|
'seconds' => '',
|
||||||
'selection' => '選擇',
|
'selection' => '選擇',
|
||||||
|
'select_attrdefgrp_show' => '',
|
||||||
'select_category' => '選中分類',
|
'select_category' => '選中分類',
|
||||||
'select_groups' => '點擊選擇組',
|
'select_groups' => '點擊選擇組',
|
||||||
'select_grp_approvers' => '請點選審核人員群組',
|
'select_grp_approvers' => '請點選審核人員群組',
|
||||||
|
@ -868,6 +887,8 @@ URL: [url]',
|
||||||
'settings_Edition' => '',
|
'settings_Edition' => '',
|
||||||
'settings_editOnlineFileTypes' => '',
|
'settings_editOnlineFileTypes' => '',
|
||||||
'settings_editOnlineFileTypes_desc' => '',
|
'settings_editOnlineFileTypes_desc' => '',
|
||||||
|
'settings_enable2FactorAuthentication' => '',
|
||||||
|
'settings_enable2FactorAuthentication_desc' => '',
|
||||||
'settings_enableAcknowledgeWorkflow' => '',
|
'settings_enableAcknowledgeWorkflow' => '',
|
||||||
'settings_enableAcknowledgeWorkflow_desc' => '',
|
'settings_enableAcknowledgeWorkflow_desc' => '',
|
||||||
'settings_enableAdminRevApp' => '',
|
'settings_enableAdminRevApp' => '',
|
||||||
|
@ -976,11 +997,13 @@ URL: [url]',
|
||||||
'settings_luceneDir' => '',
|
'settings_luceneDir' => '',
|
||||||
'settings_luceneDir_desc' => '',
|
'settings_luceneDir_desc' => '',
|
||||||
'settings_maxDirID' => '最大目錄編號',
|
'settings_maxDirID' => '最大目錄編號',
|
||||||
'settings_maxDirID_desc' => '每個父目錄的子目錄的最大數目。預設值:32700。',
|
'settings_maxDirID_desc' => '每個父目錄的子目錄的最大數目。預設值:0。',
|
||||||
'settings_maxExecutionTime' => '最大執行時間(秒)',
|
'settings_maxExecutionTime' => '最大執行時間(秒)',
|
||||||
'settings_maxExecutionTime_desc' => '此設置最長時間,以秒為腳本允許運行之前它是由解析終止',
|
'settings_maxExecutionTime_desc' => '此設置最長時間,以秒為腳本允許運行之前它是由解析終止',
|
||||||
'settings_maxRecursiveCount' => '',
|
'settings_maxRecursiveCount' => '',
|
||||||
'settings_maxRecursiveCount_desc' => '',
|
'settings_maxRecursiveCount_desc' => '',
|
||||||
|
'settings_maxSizeForFullText' => '',
|
||||||
|
'settings_maxSizeForFullText_desc' => '',
|
||||||
'settings_more_settings' => '',
|
'settings_more_settings' => '',
|
||||||
'settings_notfound' => '',
|
'settings_notfound' => '',
|
||||||
'settings_Notification' => '通知設置',
|
'settings_Notification' => '通知設置',
|
||||||
|
@ -1102,6 +1125,7 @@ URL: [url]',
|
||||||
'splash_add_role' => '',
|
'splash_add_role' => '',
|
||||||
'splash_add_to_transmittal' => '',
|
'splash_add_to_transmittal' => '',
|
||||||
'splash_add_user' => '',
|
'splash_add_user' => '',
|
||||||
|
'splash_clearcache' => '',
|
||||||
'splash_cleared_clipboard' => '',
|
'splash_cleared_clipboard' => '',
|
||||||
'splash_document_added' => '',
|
'splash_document_added' => '',
|
||||||
'splash_document_checkedout' => '',
|
'splash_document_checkedout' => '',
|
||||||
|
@ -1155,6 +1179,7 @@ URL: [url]',
|
||||||
'status_revisor_removed' => '',
|
'status_revisor_removed' => '',
|
||||||
'status_unknown' => '未知',
|
'status_unknown' => '未知',
|
||||||
'storage_size' => '存儲大小',
|
'storage_size' => '存儲大小',
|
||||||
|
'submit_2_fact_auth' => '',
|
||||||
'submit_approval' => '提交審核',
|
'submit_approval' => '提交審核',
|
||||||
'submit_login' => '登錄',
|
'submit_login' => '登錄',
|
||||||
'submit_password' => '',
|
'submit_password' => '',
|
||||||
|
@ -1184,7 +1209,7 @@ URL: [url]',
|
||||||
'thursday' => 'Thursday',
|
'thursday' => 'Thursday',
|
||||||
'thursday_abbr' => '',
|
'thursday_abbr' => '',
|
||||||
'timeline' => '時間軸',
|
'timeline' => '時間軸',
|
||||||
'timeline_add_file' => '',
|
'timeline_add_file' => '新附件',
|
||||||
'timeline_add_version' => '',
|
'timeline_add_version' => '',
|
||||||
'timeline_full_add_file' => '',
|
'timeline_full_add_file' => '',
|
||||||
'timeline_full_add_version' => '',
|
'timeline_full_add_version' => '',
|
||||||
|
@ -1200,6 +1225,7 @@ URL: [url]',
|
||||||
'timeline_status_change' => '版本 [版本號]:[狀態]',
|
'timeline_status_change' => '版本 [版本號]:[狀態]',
|
||||||
'to' => '到',
|
'to' => '到',
|
||||||
'toggle_manager' => '角色切換',
|
'toggle_manager' => '角色切換',
|
||||||
|
'toggle_qrcode' => '',
|
||||||
'to_before_from' => '',
|
'to_before_from' => '',
|
||||||
'transition_triggered_email' => '',
|
'transition_triggered_email' => '',
|
||||||
'transition_triggered_email_body' => '',
|
'transition_triggered_email_body' => '',
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// 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
|
||||||
|
// Copyright (C) 2010-2106 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
@ -295,6 +296,7 @@ for ($file_num=0;$file_num<count($_FILES["userfile"]["tmp_name"]);$file_num++){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$filesize = SeedDMS_Core_File::fileSize($userfiletmp);
|
||||||
$res = $folder->addDocument($name, $comment, $expires, $user, $keywords,
|
$res = $folder->addDocument($name, $comment, $expires, $user, $keywords,
|
||||||
$cats, $userfiletmp, basename($userfilename),
|
$cats, $userfiletmp, basename($userfilename),
|
||||||
$fileType, $userfiletype, $sequence,
|
$fileType, $userfiletype, $sequence,
|
||||||
|
@ -316,7 +318,7 @@ for ($file_num=0;$file_num<count($_FILES["userfile"]["tmp_name"]);$file_num++){
|
||||||
$index = $indexconf['Indexer']::open($settings->_luceneDir);
|
$index = $indexconf['Indexer']::open($settings->_luceneDir);
|
||||||
if($index) {
|
if($index) {
|
||||||
$indexconf['Indexer']::init($settings->_stopWordsFile);
|
$indexconf['Indexer']::init($settings->_stopWordsFile);
|
||||||
$index->addDocument(new $indexconf['IndexedDocument']($dms, $document, isset($settings->_converters['fulltext']) ? $settings->_converters['fulltext'] : null, true));
|
$index->addDocument(new $indexconf['IndexedDocument']($dms, $document, isset($settings->_converters['fulltext']) ? $settings->_converters['fulltext'] : null, !($filesize < $settings->_maxSizeForFullText)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// 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
|
||||||
|
// Copyright (C) 2010-2106 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// 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
|
||||||
|
// Copyright (C) 2010-2106 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2106 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2106 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// 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
|
||||||
// Copyright (C) 2011 Uwe Steinmann
|
// Copyright (C) 2010-2106 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// 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
|
||||||
|
// Copyright (C) 2010-2106 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
// 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) 2009-2013 Uwe Steinmann
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,8 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2012 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
@ -37,6 +37,7 @@ if (isset($_COOKIE["mydms_session"])) {
|
||||||
$dms_session = $_COOKIE["mydms_session"];
|
$dms_session = $_COOKIE["mydms_session"];
|
||||||
$session = new SeedDMS_Session($db);
|
$session = new SeedDMS_Session($db);
|
||||||
if(!$resArr = $session->load($dms_session)) {
|
if(!$resArr = $session->load($dms_session)) {
|
||||||
|
header('Content-Type: application/json');
|
||||||
echo json_encode(array('error'=>1));
|
echo json_encode(array('error'=>1));
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
@ -47,6 +48,7 @@ if (isset($_COOKIE["mydms_session"])) {
|
||||||
/* Load user data */
|
/* Load user data */
|
||||||
$user = $dms->getUser($resArr["userID"]);
|
$user = $dms->getUser($resArr["userID"]);
|
||||||
if (!is_object($user)) {
|
if (!is_object($user)) {
|
||||||
|
header('Content-Type: application/json');
|
||||||
echo json_encode(array('error'=>1));
|
echo json_encode(array('error'=>1));
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
@ -65,6 +67,11 @@ if (isset($_COOKIE["mydms_session"])) {
|
||||||
$user = null;
|
$user = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* make sure the browser doesn't cache the output of this page.
|
||||||
|
* Edge doesn't if not explicitly told to not do it, see bug #280
|
||||||
|
*/
|
||||||
|
header("Cache-Control: no-cache,no-store");
|
||||||
|
|
||||||
$command = $_REQUEST["command"];
|
$command = $_REQUEST["command"];
|
||||||
switch($command) {
|
switch($command) {
|
||||||
case 'checkpwstrength': /* {{{ */
|
case 'checkpwstrength': /* {{{ */
|
||||||
|
@ -77,17 +84,21 @@ switch($command) {
|
||||||
$score = $ps->get_score();
|
$score = $ps->get_score();
|
||||||
if($settings->_passwordStrength) {
|
if($settings->_passwordStrength) {
|
||||||
if($score >= $settings->_passwordStrength) {
|
if($score >= $settings->_passwordStrength) {
|
||||||
|
header('Content-Type: application/json');
|
||||||
echo json_encode(array('error'=>0, 'strength'=>$score, 'score'=>$score/$settings->_passwordStrength, 'ok'=>1));
|
echo json_encode(array('error'=>0, 'strength'=>$score, 'score'=>$score/$settings->_passwordStrength, 'ok'=>1));
|
||||||
} else {
|
} else {
|
||||||
|
header('Content-Type: application/json');
|
||||||
echo json_encode(array('error'=>0, 'strength'=>$score, 'score'=>$score/$settings->_passwordStrength, 'ok'=>0));
|
echo json_encode(array('error'=>0, 'strength'=>$score, 'score'=>$score/$settings->_passwordStrength, 'ok'=>0));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
header('Content-Type: application/json');
|
||||||
echo json_encode(array('error'=>0, 'strength'=>$score));
|
echo json_encode(array('error'=>0, 'strength'=>$score));
|
||||||
}
|
}
|
||||||
break; /* }}} */
|
break; /* }}} */
|
||||||
|
|
||||||
case 'sessioninfo': /* {{{ */
|
case 'sessioninfo': /* {{{ */
|
||||||
if($user) {
|
if($user) {
|
||||||
|
header('Content-Type: application/json');
|
||||||
echo json_encode($resArr);
|
echo json_encode($resArr);
|
||||||
}
|
}
|
||||||
break; /* }}} */
|
break; /* }}} */
|
||||||
|
@ -161,6 +172,7 @@ switch($command) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
header('Content-Type: application/json');
|
||||||
echo json_encode($tree);
|
echo json_encode($tree);
|
||||||
// echo json_encode(array(array('label'=>'test1', 'id'=>1, 'load_on_demand'=> true), array('label'=>'test2', 'id'=>2, 'load_on_demand'=> true)));
|
// echo json_encode(array(array('label'=>'test1', 'id'=>1, 'load_on_demand'=> true), array('label'=>'test2', 'id'=>2, 'load_on_demand'=> true)));
|
||||||
}
|
}
|
||||||
|
@ -223,6 +235,14 @@ switch($command) {
|
||||||
}
|
}
|
||||||
break; /* }}} */
|
break; /* }}} */
|
||||||
|
|
||||||
|
case 'clearclipboard': /* {{{ */
|
||||||
|
if($user) {
|
||||||
|
$session->clearClipboard();
|
||||||
|
header('Content-Type: application/json');
|
||||||
|
echo json_encode(array('success'=>true, 'message'=>getMLText('splash_cleared_clipboard')));
|
||||||
|
}
|
||||||
|
break; /* }}} */
|
||||||
|
|
||||||
case 'movefolder': /* {{{ */
|
case 'movefolder': /* {{{ */
|
||||||
if($user) {
|
if($user) {
|
||||||
if(!checkFormKey('movefolder', 'GET')) {
|
if(!checkFormKey('movefolder', 'GET')) {
|
||||||
|
@ -518,6 +538,7 @@ switch($command) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($folder->getAccessMode($user) < M_READWRITE) {
|
if ($folder->getAccessMode($user) < M_READWRITE) {
|
||||||
|
header('Content-Type: application/json');
|
||||||
echo json_encode(array('success'=>false, 'message'=>getMLText("access_denied")));
|
echo json_encode(array('success'=>false, 'message'=>getMLText("access_denied")));
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
@ -525,6 +546,7 @@ switch($command) {
|
||||||
if($settings->_quota > 0) {
|
if($settings->_quota > 0) {
|
||||||
$remain = checkQuota($user);
|
$remain = checkQuota($user);
|
||||||
if ($remain < 0) {
|
if ($remain < 0) {
|
||||||
|
header('Content-Type: application/json');
|
||||||
echo json_encode(array('success'=>false, 'message'=>getMLText("quota_exceeded", array('bytes'=>SeedDMS_Core_File::format_filesize(abs($remain))))));
|
echo json_encode(array('success'=>false, 'message'=>getMLText("quota_exceeded", array('bytes'=>SeedDMS_Core_File::format_filesize(abs($remain))))));
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// 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
|
||||||
// Copyright (C) 2011 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// 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) 2009-2012 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// 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-2011 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
// SeedDMS. Document Management System
|
// SeedDMS. Document Management System
|
||||||
// Copyright (C) 2016 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
@ -18,8 +18,10 @@
|
||||||
|
|
||||||
include("../inc/inc.Settings.php");
|
include("../inc/inc.Settings.php");
|
||||||
include("../inc/inc.LogInit.php");
|
include("../inc/inc.LogInit.php");
|
||||||
include("../inc/inc.DBInit.php");
|
|
||||||
include("../inc/inc.Language.php");
|
include("../inc/inc.Language.php");
|
||||||
|
include("../inc/inc.Init.php");
|
||||||
|
include("../inc/inc.Utils.php");
|
||||||
|
include("../inc/inc.DBInit.php");
|
||||||
include("../inc/inc.ClassUI.php");
|
include("../inc/inc.ClassUI.php");
|
||||||
include("../inc/inc.Authentication.php");
|
include("../inc/inc.Authentication.php");
|
||||||
|
|
||||||
|
@ -29,7 +31,13 @@ if(!checkFormKey('clearcache')) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$cmd = 'rm -rf '.$settings->_cacheDir.'/*';
|
$cmd = 'rm -rf '.$settings->_cacheDir.'/*';
|
||||||
system($cmd);
|
$ret = null;
|
||||||
|
system($cmd, $ret);
|
||||||
|
if($ret)
|
||||||
|
$session->setSplashMsg(array('type'=>'error', 'msg'=>getMLText('error_clearcache')));
|
||||||
|
else
|
||||||
|
$session->setSplashMsg(array('type'=>'success', 'msg'=>getMLText('splash_clearcache')));
|
||||||
|
|
||||||
add_log_line("");
|
add_log_line("");
|
||||||
|
|
||||||
header("Location:../out/out.AdminTools.php");
|
header("Location:../out/out.AdminTools.php");
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// 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) 2009-2013 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
@ -31,7 +32,7 @@ if (!$user->isAdmin()) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$v = new SeedDMS_Version;
|
$v = new SeedDMS_Version;
|
||||||
$dump_name = $settings->_contentDir.date('Y-m-d\TH:i:s')."_".$v->_number.".sql";
|
$dump_name = $settings->_contentDir.date('Y-m-d\TH-i-s')."_".$v->_number.".sql";
|
||||||
if(!$dms->createDump($dump_name))
|
if(!$dms->createDump($dump_name))
|
||||||
UI::exitError(getMLText("admin_tools"),getMLText("error_occured"));
|
UI::exitError(getMLText("admin_tools"),getMLText("error_occured"));
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// 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
|
||||||
// Copyright (C) 2011-2013 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// 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
|
||||||
// Copyright (C) 2011-2013 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// 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
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// 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
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// 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
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// 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) 2009-2012 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// 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
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// 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
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,10 +1,28 @@
|
||||||
<?php
|
<?php
|
||||||
|
// SeedDMS. Document Management System
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
|
//
|
||||||
|
// This program is free software; you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation; either version 2 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this program; if not, write to the Free Software
|
||||||
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
include("../inc/inc.Settings.php");
|
include("../inc/inc.Settings.php");
|
||||||
|
include("../inc/inc.LogInit.php");
|
||||||
|
include("../inc/inc.Language.php");
|
||||||
|
include("../inc/inc.Init.php");
|
||||||
include("../inc/inc.Utils.php");
|
include("../inc/inc.Utils.php");
|
||||||
include("../inc/inc.DBInit.php");
|
include("../inc/inc.DBInit.php");
|
||||||
include("../inc/inc.Language.php");
|
|
||||||
include("../inc/inc.ClassUI.php");
|
include("../inc/inc.ClassUI.php");
|
||||||
include("../inc/inc.ClassAccessOperation.php");
|
|
||||||
include("../inc/inc.Authentication.php");
|
include("../inc/inc.Authentication.php");
|
||||||
|
|
||||||
if (!isset($_GET["targetid"]) || !is_numeric($_GET["targetid"]) || $_GET["targetid"]<1) {
|
if (!isset($_GET["targetid"]) || !is_numeric($_GET["targetid"]) || $_GET["targetid"]<1) {
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
183
op/op.Login.php
183
op/op.Login.php
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
@ -30,12 +31,12 @@ include("../inc/inc.ClassController.php");
|
||||||
|
|
||||||
include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc";
|
include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc";
|
||||||
|
|
||||||
function _printMessage($heading, $message) {
|
function _printMessage($heading, $message) { /* {{{ */
|
||||||
global $dms, $theme;
|
global $dms, $theme;
|
||||||
$view = UI::factory($theme, 'ErrorDlg', array('dms'=>$dms));
|
$view = UI::factory($theme, 'ErrorDlg', array('dms'=>$dms));
|
||||||
$view->exitError($heading, $message, true);
|
$view->exitError($heading, $message, true);
|
||||||
return;
|
return;
|
||||||
}
|
} /* }}} */
|
||||||
|
|
||||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||||
$controller = Controller::factory($tmp[1]);
|
$controller = Controller::factory($tmp[1]);
|
||||||
|
@ -62,6 +63,7 @@ if(isset($_POST['pwd'])) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* The password may only be empty if the guest user tries to log in */
|
||||||
if($settings->_enableGuestLogin && (int) $settings->_guestID) {
|
if($settings->_enableGuestLogin && (int) $settings->_guestID) {
|
||||||
$guestUser = $dms->getUser((int) $settings->_guestID);
|
$guestUser = $dms->getUser((int) $settings->_guestID);
|
||||||
if ((!isset($pwd) || strlen($pwd)==0) && ($login != $guestUser->getLogin())) {
|
if ((!isset($pwd) || strlen($pwd)==0) && ($login != $guestUser->getLogin())) {
|
||||||
|
@ -86,152 +88,46 @@ if(isset($GLOBALS['SEEDDMS_HOOKS']['authentication'])) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_bool($user)) {
|
/* Authenticate against LDAP server {{{ */
|
||||||
if (isset($settings->_ldapHost) && strlen($settings->_ldapHost)>0) {
|
if (!$user && isset($settings->_ldapHost) && strlen($settings->_ldapHost)>0) {
|
||||||
if (isset($settings->_ldapPort) && is_int($settings->_ldapPort)) {
|
require_once("../inc/inc.ClassLdapAuthentication.php");
|
||||||
$ds = ldap_connect($settings->_ldapHost, $settings->_ldapPort);
|
$authobj = new SeedDMS_LdapAuthentication($dms, $settings);
|
||||||
} else {
|
$user = $authobj->authenticate($login, $pwd);
|
||||||
$ds = ldap_connect($settings->_ldapHost);
|
} /* }}} */
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_bool($ds)) {
|
/* Authenticate against SeedDMS database {{{ */
|
||||||
/* Check if ldap base dn is set, and use ldap server if it is */
|
else {
|
||||||
if (isset($settings->_ldapBaseDN)) {
|
require_once("../inc/inc.ClassDbAuthentication.php");
|
||||||
$ldapSearchAttribut = "uid=";
|
$authobj = new SeedDMS_DbAuthentication($dms, $settings);
|
||||||
$tmpDN = "uid=".$login.",".$settings->_ldapBaseDN;
|
$user = $authobj->authenticate($login, $pwd);
|
||||||
}
|
} /* }}} */
|
||||||
|
|
||||||
/* Active directory has a different base dn */
|
if(!$user) {
|
||||||
if (isset($settings->_ldapType)) {
|
_printMessage(getMLText("login_error_title"), getMLText("login_error_text"));
|
||||||
if ($settings->_ldapType==1) {
|
exit;
|
||||||
$ldapSearchAttribut = "sAMAccountName=";
|
|
||||||
$tmpDN = $login.'@'.$settings->_ldapAccountDomainName;
|
|
||||||
// Add the following if authentication with an Active Dir doesn't work
|
|
||||||
// See https://sourceforge.net/p/seeddms/discussion/general/thread/19c70d8d/
|
|
||||||
// and http://stackoverflow.com/questions/6222641/how-to-php-ldap-search-to-get-user-ou-if-i-dont-know-the-ou-for-base-dn
|
|
||||||
ldap_set_option($ds, LDAP_OPT_REFERRALS, 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Ensure that the LDAP connection is set to use version 3 protocol.
|
|
||||||
// Required for most authentication methods, including SASL.
|
|
||||||
ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
|
|
||||||
|
|
||||||
// try an authenticated/anonymous bind first.
|
|
||||||
// If it succeeds, get the DN for the user and use it for an authentication
|
|
||||||
// with the users password.
|
|
||||||
$bind = false;
|
|
||||||
if (isset($settings->_ldapBindDN)) {
|
|
||||||
$bind = @ldap_bind($ds, $settings->_ldapBindDN, $settings->_ldapBindPw);
|
|
||||||
} else {
|
|
||||||
$bind = @ldap_bind($ds);
|
|
||||||
}
|
|
||||||
$dn = false;
|
|
||||||
/* If bind succeed, then get the dn of for the user */
|
|
||||||
if ($bind) {
|
|
||||||
if (isset($settings->_ldapFilter) && strlen($settings->_ldapFilter) > 0) {
|
|
||||||
$search = ldap_search($ds, $settings->_ldapBaseDN, "(&(".$ldapSearchAttribut.$login.")".$settings->_ldapFilter.")");
|
|
||||||
} else {
|
|
||||||
$search = ldap_search($ds, $settings->_ldapBaseDN, $ldapSearchAttribut.$login);
|
|
||||||
}
|
|
||||||
if (!is_bool($search)) {
|
|
||||||
$info = ldap_get_entries($ds, $search);
|
|
||||||
if (!is_bool($info) && $info["count"]>0) {
|
|
||||||
$dn = $info[0]['dn'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* If the previous bind failed, try it with the users creditionals
|
|
||||||
* by simply setting $dn to a default string
|
|
||||||
*/
|
|
||||||
if (is_bool($dn)) {
|
|
||||||
$dn = $tmpDN;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* No do the actual authentication of the user */
|
|
||||||
$bind = @ldap_bind($ds, $dn, $pwd);
|
|
||||||
if ($bind) {
|
|
||||||
// Successfully authenticated. Now check to see if the user exists within
|
|
||||||
// the database. If not, add them in if _restricted is not set,
|
|
||||||
// but do not add their password.
|
|
||||||
$user = $dms->getUserByLogin($login);
|
|
||||||
if (is_bool($user) && !$settings->_restricted) {
|
|
||||||
// Retrieve the user's LDAP information.
|
|
||||||
if (isset($settings->_ldapFilter) && strlen($settings->_ldapFilter) > 0) {
|
|
||||||
$search = ldap_search($ds, $settings->_ldapBaseDN, "(&(".$ldapSearchAttribut.$login.")".$settings->_ldapFilter.")");
|
|
||||||
} else {
|
|
||||||
$search = ldap_search($ds, $settings->_ldapBaseDN, $ldapSearchAttribut.$login);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!is_bool($search)) {
|
|
||||||
$info = ldap_get_entries($ds, $search);
|
|
||||||
if (!is_bool($info) && $info["count"]==1 && $info[0]["count"]>0) {
|
|
||||||
$user = $dms->addUser($login, null, $info[0]['cn'][0], $info[0]['mail'][0], $settings->_language, $settings->_theme, "");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!is_bool($user)) {
|
|
||||||
$userid = $user->getID();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ldap_close($ds);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_bool($user)) {
|
$userid = $user->getID();
|
||||||
//
|
if (($userid == $settings->_guestID) && (!$settings->_enableGuestLogin)) {
|
||||||
// LDAP Authentication did not succeed or is not configured. Try internal
|
_printMessage(getMLText("login_error_title"), getMLText("guest_login_disabled"));
|
||||||
// authentication system.
|
exit;
|
||||||
//
|
|
||||||
|
|
||||||
// Try to find user with given login.
|
|
||||||
$user = $dms->getUserByLogin($login);
|
|
||||||
if (!$user) {
|
|
||||||
_printMessage(getMLText("login_error_title"), getMLText("login_error_text"));
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
$userid = $user->getID();
|
|
||||||
|
|
||||||
if (($userid == $settings->_guestID) && (!$settings->_enableGuestLogin)) {
|
|
||||||
_printMessage(getMLText("login_error_title"), getMLText("guest_login_disabled"));
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if password matches (if not a guest user)
|
|
||||||
// Assume that the password has been sent via HTTP POST. It would be careless
|
|
||||||
// (and dangerous) for passwords to be sent via GET.
|
|
||||||
if (($userid != $settings->_guestID) && (md5($pwd) != $user->getPwd()) || ($userid == $settings->_guestID) && $user->getPwd() && (md5($pwd) != $user->getPwd())) {
|
|
||||||
_printMessage(getMLText("login_error_title"), getMLText("login_error_text"));
|
|
||||||
/* if counting of login failures is turned on, then increment its value */
|
|
||||||
if($settings->_loginFailure) {
|
|
||||||
$failures = $user->addLoginFailure();
|
|
||||||
if($failures >= $settings->_loginFailure)
|
|
||||||
$user->setDisabled(true);
|
|
||||||
}
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if account is disabled
|
|
||||||
if($user->isDisabled()) {
|
|
||||||
_printMessage(getMLText("login_disabled_title"), getMLText("login_disabled_text"));
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
// control admin IP address if required
|
|
||||||
// TODO: extend control to LDAP autentication
|
|
||||||
if ($user->isAdmin() && ($_SERVER['REMOTE_ADDR'] != $settings->_adminIP ) && ( $settings->_adminIP != "") ){
|
|
||||||
_printMessage(getMLText("login_error_title"), getMLText("invalid_user_id"));
|
|
||||||
exit;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Clear login failures if login was successful */
|
|
||||||
$user->clearLoginFailures();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Check if account is disabled
|
||||||
|
if($user->isDisabled()) {
|
||||||
|
_printMessage(getMLText("login_disabled_title"), getMLText("login_disabled_text"));
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
// control admin IP address if required
|
||||||
|
if ($user->isAdmin() && ($_SERVER['REMOTE_ADDR'] != $settings->_adminIP ) && ( $settings->_adminIP != "") ){
|
||||||
|
_printMessage(getMLText("login_error_title"), getMLText("invalid_user_id"));
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Clear login failures if login was successful */
|
||||||
|
$user->clearLoginFailures();
|
||||||
|
|
||||||
// Capture the user's language and theme settings.
|
// Capture the user's language and theme settings.
|
||||||
if (isset($_REQUEST["lang"]) && strlen($_REQUEST["lang"])>0 && is_numeric(array_search($_REQUEST["lang"],getLanguages())) ) {
|
if (isset($_REQUEST["lang"]) && strlen($_REQUEST["lang"])>0 && is_numeric(array_search($_REQUEST["lang"],getLanguages())) ) {
|
||||||
$lang = $_REQUEST["lang"];
|
$lang = $_REQUEST["lang"];
|
||||||
|
@ -326,7 +222,4 @@ else {
|
||||||
header("Location: ".$settings->_httpRoot.(isset($settings->_siteDefaultPage) && strlen($settings->_siteDefaultPage)>0 ? $settings->_siteDefaultPage : "out/out.ViewFolder.php?folderid=".($user->getHomeFolder() ? $user->getHomeFolder() : $settings->_rootFolderID)));
|
header("Location: ".$settings->_httpRoot.(isset($settings->_siteDefaultPage) && strlen($settings->_siteDefaultPage)>0 ? $settings->_siteDefaultPage : "out/out.ViewFolder.php?folderid=".($user->getHomeFolder() ? $user->getHomeFolder() : $settings->_rootFolderID)));
|
||||||
}
|
}
|
||||||
|
|
||||||
//_printMessage(getMLText("login_ok"),
|
|
||||||
// "<p><a href='".$settings->_httpRoot.(isset($settings->_siteDefaultPage) && strlen($settings->_siteDefaultPage)>0 ? $settings->_siteDefaultPage : "out/out.ViewFolder.php")."'>".getMLText("continue")."</a></p>");
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// 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 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// 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) 2009-2013 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
@ -20,10 +20,10 @@
|
||||||
|
|
||||||
include("../inc/inc.Settings.php");
|
include("../inc/inc.Settings.php");
|
||||||
include("../inc/inc.LogInit.php");
|
include("../inc/inc.LogInit.php");
|
||||||
|
include("../inc/inc.Utils.php");
|
||||||
include("../inc/inc.Language.php");
|
include("../inc/inc.Language.php");
|
||||||
include("../inc/inc.Init.php");
|
include("../inc/inc.Init.php");
|
||||||
include("../inc/inc.Extension.php");
|
include("../inc/inc.Extension.php");
|
||||||
include("../inc/inc.Utils.php");
|
|
||||||
include("../inc/inc.DBInit.php");
|
include("../inc/inc.DBInit.php");
|
||||||
include("../inc/inc.ClassUI.php");
|
include("../inc/inc.ClassUI.php");
|
||||||
include("../inc/inc.Authentication.php");
|
include("../inc/inc.Authentication.php");
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// 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-2011 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
// 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
|
||||||
// Copyright (C) 2011-2013 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// 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
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
// 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-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// 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) 2009-2013 Uwe Steinmann
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
// MyDMS. Document Management System
|
// MyDMS. Document Management System
|
||||||
// Copyright (C) 2010 Matteo Lucarelli
|
// Copyright (C) 2010 Matteo Lucarelli
|
||||||
|
// Copyright (C) 2010-2016 Uwe Steinmann
|
||||||
//
|
//
|
||||||
// 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
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user