mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
48cf4b2ff3
|
@ -125,6 +125,12 @@
|
|||
- fix lots of javascript errors when removing, rewinding a workflow and
|
||||
running, returning from a subworkflow
|
||||
- show splash messages after triggering a workflow transition
|
||||
- reindex document version also if time of last indexing is equal to creation
|
||||
time of document version
|
||||
- allow mimetypes (not just file extensions) in config variable viewOnlineFileTypes
|
||||
- added Slim-Framework for a simple router
|
||||
- move most of the login code into a controller, added more hooks in login process
|
||||
- failed login is reported in log file
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
Changes in version 5.1.9
|
||||
|
|
|
@ -234,12 +234,21 @@ class SeedDMS_Core_DatabaseAccess {
|
|||
* Destructor of SeedDMS_Core_DatabaseAccess
|
||||
*/
|
||||
function __destruct() { /* {{{ */
|
||||
if($this->_logfp) {
|
||||
if($this->_logfile && $this->_logfp) {
|
||||
fwrite($this->_logfp, microtime()." END --------------------------------------------\n");
|
||||
fclose($this->_logfp);
|
||||
}
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Set the file pointer to a log file
|
||||
*
|
||||
* Once it is set, all queries will be logged into this file
|
||||
*/
|
||||
function setLogFp($fp) { /* {{{ */
|
||||
$this->_logfp = $fp;
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Connect to database
|
||||
*
|
||||
|
|
|
@ -1650,6 +1650,7 @@ remove deprecated methods SeedDMS_Core_Document::convert(), SeedDMS_Core_Documen
|
|||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||
<notes>
|
||||
fix php warning if workflow state doesn' have next transition
|
||||
add method SeedDMS_Core_DatabaseAccess::setLogFp()
|
||||
</notes>
|
||||
</release>
|
||||
<release>
|
||||
|
|
|
@ -21,14 +21,215 @@
|
|||
* @version Release: @package_version@
|
||||
*/
|
||||
class SeedDMS_Controller_Login extends SeedDMS_Controller_Common {
|
||||
/**
|
||||
* @var array $user set if user could be logged in
|
||||
* @access protected
|
||||
*/
|
||||
static protected $user;
|
||||
|
||||
public function run() {
|
||||
public function getUser() { /* {{{ */
|
||||
return self::$user;
|
||||
} /* }}} */
|
||||
|
||||
public function run() { /* {{{ */
|
||||
$dms = $this->params['dms'];
|
||||
$user = $this->params['user'];
|
||||
$settings = $this->params['settings'];
|
||||
$session = $this->params['session'];
|
||||
$sesstheme = $this->params['sesstheme'];
|
||||
$lang = $this->params['lang'];
|
||||
$login = $this->params['login'];
|
||||
$pwd = $this->params['pwd'];
|
||||
|
||||
if($this->callHook('postLogin')) {
|
||||
self::$user = null;
|
||||
|
||||
/* The preLogin hook may set self::$user which will prevent any further
|
||||
* authentication process.
|
||||
*/
|
||||
if($this->callHook('preLogin')) {
|
||||
}
|
||||
}
|
||||
|
||||
$user = self::$user;
|
||||
|
||||
/* The password may only be empty if the guest user tries to log in.
|
||||
* There is just one guest account with id $settings->_guestID which
|
||||
* is allowed to log in without a password. All other guest accounts
|
||||
* are treated like regular logins
|
||||
*/
|
||||
if(!$user && $settings->_enableGuestLogin && (int) $settings->_guestID) {
|
||||
$guestUser = $dms->getUser((int) $settings->_guestID);
|
||||
if(($login != $guestUser->getLogin())) {
|
||||
if ((!isset($pwd) || strlen($pwd)==0)) {
|
||||
$this->setErrorMsg("login_error_text");
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
$user = $guestUser;
|
||||
}
|
||||
}
|
||||
|
||||
/* Run any additional authentication method. The hook must return a
|
||||
* valid user, if the authentication succeeded. If it fails, it must
|
||||
* return false and if the hook doesn't care at all, if must return null.
|
||||
*/
|
||||
$user = $this->callHook('authenticate');
|
||||
if(false === $user) {
|
||||
if(empty($this->errormsg))
|
||||
$this->setErrorMsg("authentication_failed");
|
||||
return false;
|
||||
}
|
||||
|
||||
/* Deprecated: Run any additional authentication implemented in a hook */
|
||||
if(!$user && isset($GLOBALS['SEEDDMS_HOOKS']['authentication'])) {
|
||||
foreach($GLOBALS['SEEDDMS_HOOKS']['authentication'] as $authObj) {
|
||||
if(!$user && method_exists($authObj, 'authenticate')) {
|
||||
$user = $authObj->authenticate($dms, $settings, $login, $pwd);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Authenticate against LDAP server {{{ */
|
||||
if (!$user && isset($settings->_ldapHost) && strlen($settings->_ldapHost)>0) {
|
||||
require_once("../inc/inc.ClassLdapAuthentication.php");
|
||||
$authobj = new SeedDMS_LdapAuthentication($dms, $settings);
|
||||
$user = $authobj->authenticate($login, $pwd);
|
||||
} /* }}} */
|
||||
|
||||
/* Authenticate against SeedDMS database {{{ */
|
||||
if(!$user) {
|
||||
require_once("../inc/inc.ClassDbAuthentication.php");
|
||||
$authobj = new SeedDMS_DbAuthentication($dms, $settings);
|
||||
$user = $authobj->authenticate($login, $pwd);
|
||||
} /* }}} */
|
||||
|
||||
/* If the user is still not authenticated, then exit with an error */
|
||||
if(!$user) {
|
||||
$this->callHook('loginFailed');
|
||||
$this->setErrorMsg("login_error_text");
|
||||
return false;
|
||||
}
|
||||
|
||||
self::$user = $user;
|
||||
|
||||
/* Check for other restrictions which prevent the user from login, though
|
||||
* the authentication was successfull.
|
||||
*/
|
||||
$userid = $user->getID();
|
||||
if (($userid == $settings->_guestID) && (!$settings->_enableGuestLogin)) {
|
||||
$this->setErrorMsg("guest_login_disabled");
|
||||
return false;
|
||||
}
|
||||
|
||||
// Check if account is disabled
|
||||
if($user->isDisabled()) {
|
||||
$this->setErrorMsg("login_disabled_text");
|
||||
return false;
|
||||
}
|
||||
|
||||
// control admin IP address if required
|
||||
if ($user->isAdmin() && ($_SERVER['REMOTE_ADDR'] != $settings->_adminIP ) && ( $settings->_adminIP != "") ){
|
||||
$this->setErrorMsg("invalid_user_id");
|
||||
return false;
|
||||
}
|
||||
|
||||
if($settings->_enable2FactorAuthentication) {
|
||||
if($user->getSecret()) {
|
||||
$tfa = new \RobThree\Auth\TwoFactorAuth('SeedDMS');
|
||||
if($tfa->verifyCode($user->getSecret(), $_POST['twofactauth']) !== true) {
|
||||
$this->setErrorMsg("login_error_text");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Run any additional checks which may prevent login */
|
||||
if(false === $this->callHook('restrictLogin', $user)) {
|
||||
if(empty($this->errormsg))
|
||||
$this->setErrorMsg("login_restrictions_apply");
|
||||
return false;
|
||||
}
|
||||
|
||||
if(!$user && isset($GLOBALS['SEEDDMS_HOOKS']['authentication'])) {
|
||||
foreach($GLOBALS['SEEDDMS_HOOKS']['authentication'] as $authObj) {
|
||||
if(!$user && method_exists($authObj, 'authenticate')) {
|
||||
$user = $authObj->authenticate($dms, $settings, $login, $pwd);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Clear login failures if login was successful */
|
||||
$user->clearLoginFailures();
|
||||
|
||||
// Capture the user's language and theme settings.
|
||||
if (isset($_REQUEST["lang"]) && strlen($_REQUEST["lang"])>0 && is_numeric(array_search($_REQUEST["lang"],getLanguages())) ) {
|
||||
$lang = $_REQUEST["lang"];
|
||||
$user->setLanguage($lang);
|
||||
}
|
||||
else {
|
||||
$lang = $user->getLanguage();
|
||||
if (strlen($lang)==0) {
|
||||
$lang = $settings->_language;
|
||||
$user->setLanguage($lang);
|
||||
}
|
||||
}
|
||||
if ($sesstheme) {
|
||||
$user->setTheme($sesstheme);
|
||||
}
|
||||
else {
|
||||
$sesstheme = $user->getTheme();
|
||||
if (strlen($sesstheme)==0) {
|
||||
$sesstheme = $settings->_theme;
|
||||
// $user->setTheme($sesstheme);
|
||||
}
|
||||
}
|
||||
|
||||
// Delete all sessions that are more than 1 week or the configured
|
||||
// cookie lifetime old. Probably not the most
|
||||
// reliable place to put this check -- move to inc.Authentication.php?
|
||||
if($settings->_cookieLifetime)
|
||||
$lifetime = intval($settings->_cookieLifetime);
|
||||
else
|
||||
$lifetime = 7*86400;
|
||||
if(!$session->deleteByTime($lifetime)) {
|
||||
$this->setErrorMsg("error_occured");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (isset($_COOKIE["mydms_session"])) {
|
||||
/* This part will never be reached unless the session cookie is kept,
|
||||
* but op.Logout.php deletes it. Keeping a session could be a good idea
|
||||
* for retaining the clipboard data, but the user id in the session should
|
||||
* be set to 0 which is not possible due to foreign key constraints.
|
||||
* So for now op.Logout.php will delete the cookie as always
|
||||
*/
|
||||
/* Load session */
|
||||
$dms_session = $_COOKIE["mydms_session"];
|
||||
if(!$resArr = $session->load($dms_session)) {
|
||||
/* Turn off http only cookies if jumploader is enabled */
|
||||
setcookie("mydms_session", $dms_session, time()-3600, $settings->_httpRoot, null, null, !$settings->_enableLargeFileUpload); //delete cookie
|
||||
header("Location: " . $settings->_httpRoot . "out/out.Login.php?referuri=".$refer);
|
||||
exit;
|
||||
} else {
|
||||
$session->updateAccess($dms_session);
|
||||
$session->setUser($userid);
|
||||
}
|
||||
} else {
|
||||
// Create new session in database
|
||||
if(!$id = $session->create(array('userid'=>$userid, 'theme'=>$sesstheme, 'lang'=>$lang))) {
|
||||
$this->setErrorMsg("error_occured");
|
||||
return false;
|
||||
}
|
||||
|
||||
// Set the session cookie.
|
||||
if($settings->_cookieLifetime)
|
||||
$lifetime = time() + intval($settings->_cookieLifetime);
|
||||
else
|
||||
$lifetime = 0;
|
||||
setcookie("mydms_session", $id, $lifetime, $settings->_httpRoot, null, null, !$settings->_enableLargeFileUpload);
|
||||
}
|
||||
|
||||
if($this->callHook('postLogin', $user)) {
|
||||
}
|
||||
|
||||
return true;
|
||||
} /* }}} */
|
||||
}
|
||||
|
|
|
@ -43,6 +43,7 @@ class SeedDMS_ExtExample extends SeedDMS_ExtBase {
|
|||
* $GLOBALS['SEEDDMS_HOOKS'] : all hooks added so far
|
||||
*/
|
||||
function init() { /* {{{ */
|
||||
$GLOBALS['SEEDDMS_HOOKS']['initDMS'][] = new SeedDMS_ExtExample_InitDMS;
|
||||
$GLOBALS['SEEDDMS_HOOKS']['view']['addDocument'][] = new SeedDMS_ExtExample_AddDocument;
|
||||
$GLOBALS['SEEDDMS_HOOKS']['view']['viewFolder'][] = new SeedDMS_ExtExample_ViewFolder;
|
||||
$GLOBALS['SEEDDMS_SCHEDULER']['tasks']['example']['example'] = new SeedDMS_ExtExample_Task;
|
||||
|
@ -52,6 +53,65 @@ class SeedDMS_ExtExample extends SeedDMS_ExtBase {
|
|||
} /* }}} */
|
||||
}
|
||||
|
||||
class SeedDMS_ExtExample_HomeController { /* {{{ */
|
||||
|
||||
protected $dms;
|
||||
|
||||
protected $settings;
|
||||
|
||||
public function __construct($dms, $settings) {
|
||||
$this->dms = $dms;
|
||||
$this->settings = $settings;
|
||||
}
|
||||
|
||||
public function home($request, $response, $args) {
|
||||
$response->getBody()->write('Output of route /ext/example/home'.get_class($this->dms));
|
||||
return $response;
|
||||
}
|
||||
|
||||
public function echos($request, $response, $args) {
|
||||
$response->getBody()->write('Output of route /ext/example/echo');
|
||||
return $response;
|
||||
}
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Class containing methods for hooks when the dms is initialized
|
||||
*
|
||||
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||
* @package SeedDMS
|
||||
* @subpackage example
|
||||
*/
|
||||
class SeedDMS_ExtExample_InitDMS { /* {{{ */
|
||||
|
||||
/**
|
||||
* Hook after initializing the application
|
||||
*
|
||||
* This method sets the callback 'onAttributeValidate' in SeedDMS_Core
|
||||
*/
|
||||
public function addRoute($arr) { /* {{{ */
|
||||
$dms = $arr['dms'];
|
||||
$settings = $arr['settings'];
|
||||
$app = $arr['app'];
|
||||
|
||||
$container = $app->getContainer();
|
||||
$container['HomeController'] = function($c) use ($dms, $settings) {
|
||||
// $view = $c->get("view"); // retrieve the 'view' from the container
|
||||
return new SeedDMS_ExtExample_HomeController($dms, $settings);
|
||||
};
|
||||
|
||||
$app->get('/ext/example/home', 'HomeController:home');
|
||||
|
||||
$app->get('/ext/example/echos',
|
||||
function ($request, $response) use ($app) {
|
||||
echo "Output of route /ext/example/echo";
|
||||
}
|
||||
);
|
||||
return null;
|
||||
} /* }}} */
|
||||
|
||||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Class containing methods for hooks when a document is added
|
||||
*
|
||||
|
|
|
@ -30,7 +30,6 @@ $isajax = isset($_GET['action']) && ($_GET['action'] != 'show');
|
|||
|
||||
if (!isset($_COOKIE["mydms_session"])) {
|
||||
if($settings->_enableGuestLogin && $settings->_enableGuestAutoLogin) {
|
||||
require_once("../inc/inc.ClassSession.php");
|
||||
$session = new SeedDMS_Session($db);
|
||||
if(!$dms_session = $session->create(array('userid'=>$settings->_guestID, 'theme'=>$settings->_theme, 'lang'=>$settings->_language))) {
|
||||
if(!$isajax)
|
||||
|
@ -39,7 +38,6 @@ if (!isset($_COOKIE["mydms_session"])) {
|
|||
}
|
||||
$resArr = $session->load($dms_session);
|
||||
} elseif($settings->_autoLoginUser) {
|
||||
require_once("../inc/inc.ClassSession.php");
|
||||
if(!($user = $dms->getUser($settings->_autoLoginUser))/* || !$user->isGuest()*/) {
|
||||
if(!$isajax)
|
||||
header("Location: " . $settings->_httpRoot . "out/out.Login.php?referuri=".$refer);
|
||||
|
|
|
@ -35,6 +35,12 @@ class SeedDMS_Controller_Common {
|
|||
*/
|
||||
protected $errormsg;
|
||||
|
||||
/**
|
||||
* @var mixed $lasthookresult result of last hook
|
||||
* @access protected
|
||||
*/
|
||||
protected $lasthookresult;
|
||||
|
||||
function __construct($params) {
|
||||
$this->params = $params;
|
||||
$this->error = 0;
|
||||
|
@ -132,22 +138,59 @@ class SeedDMS_Controller_Common {
|
|||
} /* }}} */
|
||||
|
||||
/**
|
||||
* Call a controller hook
|
||||
* Call all hooks registered for a controller
|
||||
*
|
||||
* If a hook returns false, then no other hook will be called, because the
|
||||
* Executes all hooks registered for the current controller.
|
||||
* A hook is just a php function which is passed the current controller and
|
||||
* additional paramaters passed to this method.
|
||||
*
|
||||
* If a hook returns false, then no other hook will be called, because this
|
||||
* method returns right away. If hook returns null, then this is treated like
|
||||
* it was never called and the default action is executed. Any other value
|
||||
* returned by the hook will be returned by this method.
|
||||
* it was never called and the next hook is called. Any other value
|
||||
* returned by a hook will be temporarily saved (possibly overwriting a value
|
||||
* from a previously called hook) and the next hook is called.
|
||||
* The temporarily saved return value is eventually returned by this method
|
||||
* when all hooks are called and no following hook failed.
|
||||
* The temporarily saved return value is also saved in a protected class
|
||||
* variable $lasthookresult which is initialized to null. This could be used
|
||||
* by following hooks to check if preceding hook did already succeed.
|
||||
*
|
||||
* Consider that a failing hook (returns false) will imediately quit this
|
||||
* function an return false, even if a formerly called hook has succeeded.
|
||||
* Also consider, that a second succeeding hook will overwrite the return value
|
||||
* of a previously called hook.
|
||||
* Third, keep in mind that there is no predefined order of hooks.
|
||||
*
|
||||
* Example 1: Assuming the hook 'loginRestrictions' in the 'Login' controller
|
||||
* is implemented by two extensions.
|
||||
* One extension restricts login to a certain time of the day and a second one
|
||||
* checks the strength of the password. If the password strength is to low, it
|
||||
* will prevent login. If the hook in the first extension allows login (returns true)
|
||||
* and the second doesn't (returns false), then this method will return false.
|
||||
* If the hook in the second extension doesn't care and therefore returns null, then
|
||||
* this method will return true.
|
||||
*
|
||||
* Example 2: Assuming the hook 'authenticate' in the 'Login' controller
|
||||
* is implemented by two extensions. This hook must return false if authentication
|
||||
* fails, null if the hook does not care, or a
|
||||
* valid user in case of a successful authentication.
|
||||
* If the first extension is able to authenticate the user, the hook in the second
|
||||
* extension will still be called and could fail. So the return value of this
|
||||
* method is false. The second hook could actually succeed as well and return a
|
||||
* different user than the first hook which will eventually be returned by this
|
||||
* method. The last hook will always win. If you need to know if a previously
|
||||
* called hook succeeded, you can check the class variable $lasthookresult in the
|
||||
* hook.
|
||||
*
|
||||
* @param $hook string name of hook
|
||||
* @return mixed false if one of the hooks fails,
|
||||
* true if all hooks succedded,
|
||||
* true/value if all hooks succedded,
|
||||
* null if no hook was called
|
||||
*/
|
||||
function callHook($hook) { /* {{{ */
|
||||
$tmp = explode('_', get_class($this));
|
||||
if(isset($GLOBALS['SEEDDMS_HOOKS']['controller'][lcfirst($tmp[2])])) {
|
||||
$r = null;
|
||||
$this->lasthookresult = null;
|
||||
foreach($GLOBALS['SEEDDMS_HOOKS']['controller'][lcfirst($tmp[2])] as $hookObj) {
|
||||
if (method_exists($hookObj, $hook)) {
|
||||
switch(func_num_args()) {
|
||||
|
@ -165,11 +208,11 @@ class SeedDMS_Controller_Common {
|
|||
return $result;
|
||||
}
|
||||
if($result !== null) {
|
||||
$r = $result;
|
||||
$this->lasthookresult = $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
return $r;
|
||||
return $this->lasthookresult;
|
||||
}
|
||||
return null;
|
||||
} /* }}} */
|
||||
|
|
|
@ -348,9 +348,9 @@ function add_log_line($msg="", $priority=null) { /* {{{ */
|
|||
else
|
||||
$ip = $_SERVER['REMOTE_ADDR'];
|
||||
if($user)
|
||||
$logger->log($user->getLogin()." (".$ip.") ".basename($_SERVER["REQUEST_URI"], ".php").$msg, $priority);
|
||||
$logger->log($user->getLogin()." (".$ip.") ".basename($_SERVER["REQUEST_URI"], ".php").($msg ? ' '.$msg : ''), $priority);
|
||||
else
|
||||
$logger->log("-- (".$ip.") ".basename($_SERVER["REQUEST_URI"], ".php").$msg, $priority);
|
||||
$logger->log("-- (".$ip.") ".basename($_SERVER["REQUEST_URI"], ".php").($msg ? ' '.$msg : ''), $priority);
|
||||
} /* }}} */
|
||||
|
||||
function _add_log_line($msg="") { /* {{{ */
|
||||
|
|
111
index.php
111
index.php
|
@ -1,33 +1,78 @@
|
|||
<?php
|
||||
// SeedDMS (Formerly MyDMS) Document Management System
|
||||
// Copyright (C) 2002-2005 Markus Westphal
|
||||
// Copyright (C) 2006-2008 Malcolm Cowe
|
||||
//
|
||||
// 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");
|
||||
|
||||
header("Location: ". (isset($settings->_siteDefaultPage) && strlen($settings->_siteDefaultPage)>0 ? $settings->_siteDefaultPage : "out/out.ViewFolder.php"));
|
||||
?>
|
||||
<html>
|
||||
<head>
|
||||
<title>SeedDMS</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<?php
|
||||
// SeedDMS (Formerly MyDMS) Document Management System
|
||||
// Copyright (C) 2002-2005 Markus Westphal
|
||||
// Copyright (C) 2006-2008 Malcolm Cowe
|
||||
//
|
||||
// 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");
|
||||
|
||||
if(true) {
|
||||
include("inc/inc.LogInit.php");
|
||||
include("inc/inc.Utils.php");
|
||||
include("inc/inc.Language.php");
|
||||
include("inc/inc.Init.php");
|
||||
include("inc/inc.Extension.php");
|
||||
include("inc/inc.DBInit.php");
|
||||
include("inc/inc.Authentication.php");
|
||||
|
||||
require "vendor/autoload.php";
|
||||
|
||||
$c = new \Slim\Container(); //Create Your container
|
||||
$c['notFoundHandler'] = function ($c) use ($settings, $dms, $user, $theme) {
|
||||
return function ($request, $response) use ($c, $settings, $dms, $user, $theme) {
|
||||
$uri = $request->getUri();
|
||||
if($uri->getBasePath())
|
||||
$file = $uri->getPath();
|
||||
else
|
||||
$file = substr($uri->getPath(), 1);
|
||||
if(file_exists($file)) {
|
||||
$_SERVER['SCRIPT_FILENAME'] = basename($file);
|
||||
include($file);
|
||||
exit;
|
||||
}
|
||||
// print_r($request->getUri());
|
||||
// exit;
|
||||
return $c['response']
|
||||
->withStatus(302)
|
||||
->withHeader('Location', isset($settings->_siteDefaultPage) && strlen($settings->_siteDefaultPage)>0 ? $settings->_httpRoot.$settings->_siteDefaultPage : $settings->_httpRoot."out/out.ViewFolder.php");
|
||||
};
|
||||
};
|
||||
$app = new \Slim\App($c);
|
||||
|
||||
if(isset($GLOBALS['SEEDDMS_HOOKS']['initDMS'])) {
|
||||
foreach($GLOBALS['SEEDDMS_HOOKS']['initDMS'] as $hookObj) {
|
||||
if (method_exists($hookObj, 'addRoute')) {
|
||||
$hookObj->addRoute(array('dms'=>$dms, 'app'=>$app, 'settings'=>$settings));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$app->run();
|
||||
} else {
|
||||
|
||||
header("Location: ". (isset($settings->_siteDefaultPage) && strlen($settings->_siteDefaultPage)>0 ? $settings->_siteDefaultPage : "out/out.ViewFolder.php"));
|
||||
?>
|
||||
<html>
|
||||
<head>
|
||||
<title>SeedDMS</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<?php } ?>
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1305)
|
||||
// Translators: Admin (1307)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -186,6 +186,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => '',
|
||||
'august' => 'أغسطس',
|
||||
'authentication' => '',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'ﺎﻠﻤﻨﺸﺋ',
|
||||
'automatic_status_update' => 'تغير الحالة تلقائيا',
|
||||
'back' => 'العودة للخلف',
|
||||
|
@ -477,8 +478,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => 'ﺡﺪﺛ ﺦﻃﺃ ﺎﺜﻧﺍﺀ ﺡﺬﻓ ﺎﻠﻤﺠﻟﺩ',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'الإسبانية',
|
||||
|
@ -714,9 +719,10 @@ URL: [url]',
|
|||
'login_error_title' => 'خطأ في الدخول',
|
||||
'login_not_given' => 'لم يتم ادخال اسم المستخدم',
|
||||
'login_ok' => 'دخول صحيح',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'خروج',
|
||||
'log_management' => 'ادارة ملفات السجلات',
|
||||
'lo_LA' => '',
|
||||
'lo_LA' => 'ﺎﻠﻤﻛﺎﻧ',
|
||||
'manager' => 'مدير',
|
||||
'manager_of_group' => '',
|
||||
'mandatory_approvergroups' => '',
|
||||
|
@ -1537,6 +1543,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1549,6 +1558,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => '',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => '',
|
||||
'statistic' => '',
|
||||
'status' => 'الحالة',
|
||||
|
@ -1762,7 +1772,7 @@ URL: [url]',
|
|||
'workflow_summary' => 'ملخص مسار العمل',
|
||||
'workflow_transition_without_user_group' => '',
|
||||
'workflow_user_summary' => 'ملخص المستخدم',
|
||||
'x_more_objects' => '',
|
||||
'x_more_objects' => 'ﺎﻟﺮﻘﻣ',
|
||||
'year_view' => 'عرض السنة',
|
||||
'yes' => 'نعم',
|
||||
'zh_CN' => 'الصينية (CN)',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (850)
|
||||
// Translators: Admin (858)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -169,6 +169,7 @@ $text = array(
|
|||
'at_least_n_users_of_group' => '',
|
||||
'august' => 'Август',
|
||||
'authentication' => '',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Автор',
|
||||
'automatic_status_update' => 'Автоматично изменение на статуса',
|
||||
'back' => 'Назад',
|
||||
|
@ -206,13 +207,13 @@ $text = array(
|
|||
'change_revisors' => '',
|
||||
'change_status' => 'Промени статусът',
|
||||
'charts' => 'Графики',
|
||||
'chart_docsaccumulated_title' => '',
|
||||
'chart_docspercategory_title' => '',
|
||||
'chart_docsaccumulated_title' => 'Брой документи',
|
||||
'chart_docspercategory_title' => 'Документи според категория',
|
||||
'chart_docspermimetype_title' => '',
|
||||
'chart_docspermonth_title' => '',
|
||||
'chart_docsperstatus_title' => '',
|
||||
'chart_docsperuser_title' => '',
|
||||
'chart_selection' => '',
|
||||
'chart_docspermonth_title' => 'Нови документи за месец',
|
||||
'chart_docsperstatus_title' => 'Документи според статус',
|
||||
'chart_docsperuser_title' => 'Документи на юзър',
|
||||
'chart_selection' => 'Изберете диаграма',
|
||||
'chart_sizeperuser_title' => '',
|
||||
'checkedout_file_has_different_version' => '',
|
||||
'checkedout_file_has_disappeared' => '',
|
||||
|
@ -430,8 +431,12 @@ $text = array(
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Испански',
|
||||
|
@ -643,9 +648,10 @@ $text = array(
|
|||
'login_error_title' => 'Грешка при влизане',
|
||||
'login_not_given' => 'Не е указан потребител',
|
||||
'login_ok' => 'Входът успешен',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Изход',
|
||||
'log_management' => 'Управление на логове',
|
||||
'lo_LA' => '',
|
||||
'lo_LA' => 'Лаос',
|
||||
'manager' => 'Началник',
|
||||
'manager_of_group' => '',
|
||||
'mandatory_approvergroups' => '',
|
||||
|
@ -1155,7 +1161,7 @@ $text = array(
|
|||
'settings_expandFolderTree_val0' => 'започвайки от сгънато дърво',
|
||||
'settings_expandFolderTree_val1' => 'започвайки от сгънато дърво с разгънато перво ниво',
|
||||
'settings_expandFolderTree_val2' => 'започвайки от напълно разгънато дърво',
|
||||
'settings_Extensions' => '',
|
||||
'settings_Extensions' => 'Разширения',
|
||||
'settings_extraPath' => 'Extra PHP include Path',
|
||||
'settings_extraPath_desc' => 'Път към доп. софт. Това е директорията съдържаща напр. the adodb directory or additional pear packages',
|
||||
'settings_firstDayOfWeek' => 'Първи ден на седмицата',
|
||||
|
@ -1400,6 +1406,9 @@ $text = array(
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1412,6 +1421,7 @@ $text = array(
|
|||
'splash_toogle_group_manager' => '',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => '',
|
||||
'statistic' => '',
|
||||
'status' => 'Статус',
|
||||
|
|
|
@ -174,6 +174,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => '',
|
||||
'august' => 'Agost',
|
||||
'authentication' => '',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Autor',
|
||||
'automatic_status_update' => 'Canvi automátic d\'estat',
|
||||
'back' => 'Endarrere',
|
||||
|
@ -435,8 +436,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Castellà',
|
||||
|
@ -648,6 +653,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Error d\'accés',
|
||||
'login_not_given' => 'Nom d\'usuari no facilitat.',
|
||||
'login_ok' => 'Accés amb èxit',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Desconnectar',
|
||||
'log_management' => 'Gestió de fitxers de registre',
|
||||
'lo_LA' => 'Laosià',
|
||||
|
@ -1405,6 +1411,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1417,6 +1426,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => '',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => '',
|
||||
'statistic' => 'Estadístiques',
|
||||
'status' => 'Estat',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1521), kreml (455)
|
||||
// Translators: Admin (1521), kreml (567)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => 'dvoufaktorové ověření',
|
||||
|
@ -59,7 +59,7 @@ URL: [url]',
|
|||
'add_document_link' => 'Přidat odkaz',
|
||||
'add_document_notify' => 'Přiřaďte oznámení',
|
||||
'add_doc_reviewer_approver_warning' => 'Pozn.: Dokumenty se automaticky označí jako vydané, když není přidělen žádný recenzent nebo schvalovatel.',
|
||||
'add_doc_workflow_warning' => 'Pozn. Není-li zadán pracovní postup, jsou dokumenty automaticky označeny jako uvolněné.',
|
||||
'add_doc_workflow_warning' => 'Pozn. Dokumenty jsou automaticky označeny jako vydané, pokud není přiřazeno žádné workflow.',
|
||||
'add_event' => 'Přidat akci',
|
||||
'add_group' => 'Přidat novou skupinu',
|
||||
'add_member' => 'Přidat člena',
|
||||
|
@ -76,9 +76,9 @@ URL: [url]',
|
|||
'add_transmittal' => 'Přidat přenos',
|
||||
'add_user' => 'Přidat nového uživatele',
|
||||
'add_user_to_group' => 'Přidat uživatele do skupiny',
|
||||
'add_workflow' => 'Přidat nový pracovní postup',
|
||||
'add_workflow_action' => 'Přidat novou akci pracovního postupu',
|
||||
'add_workflow_state' => 'Přidat nový stav pracovního postupu',
|
||||
'add_workflow' => 'Přidat nové workflow',
|
||||
'add_workflow_action' => 'Přidat novou akci workflow',
|
||||
'add_workflow_state' => 'Přidat nový stav workflow',
|
||||
'admin' => 'Správce',
|
||||
'admin_tools' => 'Nástroje správce',
|
||||
'all' => 'Vše',
|
||||
|
@ -198,6 +198,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Alespoň [number_of_users] uživatelů z [group]',
|
||||
'august' => 'Srpen',
|
||||
'authentication' => 'Autentizace',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Autor',
|
||||
'automatic_status_update' => 'Automatická změna stavu',
|
||||
'back' => 'Přejít zpět',
|
||||
|
@ -260,16 +261,16 @@ URL: [url]',
|
|||
'choose_target_file' => 'Zvolte soubor',
|
||||
'choose_target_folder' => 'Vyberte cílovou složku',
|
||||
'choose_user' => 'Vyberte uživatele',
|
||||
'choose_workflow' => 'Zvolte pracovní postup',
|
||||
'choose_workflow_action' => 'Zvolte akci pracovního postupu',
|
||||
'choose_workflow_state' => 'Zvolte stav pracovního postupu',
|
||||
'choose_workflow' => 'Vyberte workflow',
|
||||
'choose_workflow_action' => 'Vyberte akci workflow',
|
||||
'choose_workflow_state' => 'Vyberte stav workflow',
|
||||
'class_name' => 'Název třídy',
|
||||
'clear_cache' => 'Vymazat vyrovnávací paměť',
|
||||
'clear_clipboard' => 'Vyčistit schránku',
|
||||
'clear_password' => 'Vymazat heslo',
|
||||
'clipboard' => 'Schránka',
|
||||
'close' => 'Zavřít',
|
||||
'command' => '',
|
||||
'command' => 'příkaz',
|
||||
'comment' => 'Komentář',
|
||||
'comment_changed_email' => '',
|
||||
'comment_for_current_version' => 'Komentář k aktuální verzi',
|
||||
|
@ -342,7 +343,7 @@ URL: [url]',
|
|||
'documents_to_receipt' => 'Dokumenty čekající na potvrzení příjmu',
|
||||
'documents_to_review' => 'Dokumenty čekající na recenzi uživatele',
|
||||
'documents_to_revise' => 'Dokumenty čekající na revizi',
|
||||
'documents_to_trigger_workflow' => 'Dokumenty v pracovním postupu',
|
||||
'documents_to_trigger_workflow' => 'Dokumenty ve workflow',
|
||||
'documents_user_draft' => 'Návrhy',
|
||||
'documents_user_expiration' => 'Dokumenty s vypršenou platností',
|
||||
'documents_user_needs_correction' => 'Dokumenty, které je třeba opravit',
|
||||
|
@ -381,7 +382,7 @@ Nadřazená složka: [folder_path]
|
|||
Uživatel: [username]',
|
||||
'document_deleted_email_subject' => '[sitename]: [name] - Dokument smazán',
|
||||
'document_duplicate_name' => 'Duplicitní název dokumentu',
|
||||
'document_has_no_workflow' => 'Dokument nemá pracovní postup',
|
||||
'document_has_no_workflow' => 'Dokument nemá workflow',
|
||||
'document_infos' => 'Informace o dokumentu',
|
||||
'document_is_checked_out' => 'Dokument je aktuálně zkontrolován. Pokud nahrajete novou verzi, nemůžete již kontrolovanou verzi zkontrolovat.',
|
||||
'document_is_not_locked' => 'Tento dokument není zamčený',
|
||||
|
@ -508,8 +509,12 @@ Odkaz je platný do [valid].
|
|||
'error_remove_document' => 'Při mazání dokumentu došlo k chybě',
|
||||
'error_remove_folder' => 'Při mazání složky došlo k chybě',
|
||||
'error_remove_permission' => 'Chyba při odebrání oprávnění',
|
||||
'error_rm_workflow' => 'Chyba při odstraňování workflow',
|
||||
'error_rm_workflow_action' => 'Chyba pří odstraňování akce workflow',
|
||||
'error_rm_workflow_state' => 'Chyba pří odstraňování stavu workflow',
|
||||
'error_toogle_permission' => 'Chyba při změně oprávnění',
|
||||
'error_transfer_document' => 'Chyba při přenosu dokumentu',
|
||||
'error_trigger_workflow' => 'Chyba při spouštění přechodu workflow',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => 'Chyba při vytváření dokumentu. Dokument má recenzenta, ale nemá schvalovatele.',
|
||||
'es_ES' => 'Španělština',
|
||||
|
@ -609,16 +614,16 @@ URL: [url]',
|
|||
'fr_FR' => 'Francouzština',
|
||||
'fullsearch' => 'Fulltextové vyhledávání',
|
||||
'fullsearch_hint' => 'Použijte fultext index',
|
||||
'fulltextsearch_disabled' => '',
|
||||
'fulltextsearch_disabled' => 'fulltextové vyhledávání zakázáno',
|
||||
'fulltext_converters' => 'Index konverze dokumentu',
|
||||
'fulltext_info' => 'Fulltext index info',
|
||||
'global_attributedefinitiongroups' => 'Skupiny atributů',
|
||||
'global_attributedefinitions' => 'Atributy',
|
||||
'global_default_keywords' => 'Globální klíčová slova',
|
||||
'global_document_categories' => 'Globální kategorie',
|
||||
'global_workflows' => 'Pracovní postupy',
|
||||
'global_workflow_actions' => 'Akce pracovního postupu',
|
||||
'global_workflow_states' => 'Stavy pracovního postupu',
|
||||
'global_workflows' => 'Workflows',
|
||||
'global_workflow_actions' => 'Akce workflow',
|
||||
'global_workflow_states' => 'Stavy workflow',
|
||||
'group' => 'Skupina',
|
||||
'groups' => 'Skupiny',
|
||||
'group_approval_summary' => 'Souhrn schválení skupiny',
|
||||
|
@ -690,7 +695,7 @@ URL: [url]',
|
|||
'invalid_version' => 'Neplatná verze dokumentu',
|
||||
'in_folder' => 'Ve složce',
|
||||
'in_revision' => 'V revizi',
|
||||
'in_workflow' => 'Zpracováváno',
|
||||
'in_workflow' => 'Ve workflow',
|
||||
'is_disabled' => 'Zakázat účet',
|
||||
'is_hidden' => 'Utajit v seznamu uživatelů',
|
||||
'it_IT' => 'Italština',
|
||||
|
@ -752,6 +757,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Chyba při přihlašování',
|
||||
'login_not_given' => 'Nebylo zadané uživatelské jméno',
|
||||
'login_ok' => 'Přihlášení proběhlo úspěšně',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Odhlášení',
|
||||
'log_management' => 'Správa LOG souborů',
|
||||
'lo_LA' => 'Laosština',
|
||||
|
@ -792,7 +798,7 @@ URL: [url]',
|
|||
'my_transmittals' => 'Moje přenosy',
|
||||
'name' => 'Název',
|
||||
'needs_correction' => 'Vyžaduje opravu',
|
||||
'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. Zkontrolujte prosím kartu workflow.',
|
||||
'network_drive' => 'Síťové úložiště',
|
||||
'never' => 'nikdy',
|
||||
'new' => 'Nový',
|
||||
|
@ -875,7 +881,7 @@ URL: [url]',
|
|||
'no_user_image' => 'nebyl nalezen žádný obrázek',
|
||||
'no_version_check' => 'Chyba při kontrole nové verze SeedDMS. Může to být způsobeno nastavením allow_url_fopen na 0 ve vaší php konfiguraci.',
|
||||
'no_version_modification' => 'Žádná změna verze',
|
||||
'no_workflow_available' => 'Neí dostupný žádný pracovní postup',
|
||||
'no_workflow_available' => 'Není k dispozici žádné workflow',
|
||||
'objectcheck' => 'Kontrola adresáře/dokumentu',
|
||||
'object_check_critical' => 'Kritické chyby',
|
||||
'object_check_warning' => 'Varování',
|
||||
|
@ -923,7 +929,7 @@ Pokud budete mít problém s přihlášením i po změně hesla, kontaktujte Adm
|
|||
'pending_receipt' => 'Probíhá potvrzování přijetí',
|
||||
'pending_reviews' => 'Probíhá recenze',
|
||||
'pending_revision' => 'Probíhá revize',
|
||||
'pending_workflows' => 'Probíhá pracovní postup',
|
||||
'pending_workflows' => 'Čekající workflows',
|
||||
'personal_default_keywords' => 'Osobní klíčová slova',
|
||||
'pl_PL' => 'Polština',
|
||||
'possible_substitutes' => 'zástupci',
|
||||
|
@ -986,39 +992,40 @@ URL: [url]',
|
|||
'removed_recipient' => 'byl odstraněn ze seznamu příjemců.',
|
||||
'removed_reviewer' => 'byl odstraněn ze seznamu recenzentů.',
|
||||
'removed_revisor' => 'byl odstraněn ze seznamu kontrolorů.',
|
||||
'removed_workflow_email_body' => 'Odstraněn pracovní postup z verze dokumentu: [name]
|
||||
'removed_workflow_email_body' => 'Odstraněno workflow z verze dokumentu
|
||||
Dokument: [name]
|
||||
Verze: [version]
|
||||
Praconí postup: [workflow]
|
||||
Workflow: [workflow]
|
||||
Nadřazená složka: [folder_path]
|
||||
Uživatel: [username]
|
||||
URL: [url]',
|
||||
'removed_workflow_email_subject' => '[sitename]: [name] - Odstraněn pracovní postup z verze dokumentu',
|
||||
'removed_workflow_email_subject' => '[sitename]: [name] - Odstraněno workflow z verze dokumentu',
|
||||
'removeFolderFromDropFolder' => 'Odstranit složku po nahrání',
|
||||
'remove_marked_files' => 'Odstranit označené soubory',
|
||||
'repaired' => 'opraveno',
|
||||
'repairing_objects' => 'Opravuji dokumenty a složky.',
|
||||
'request_workflow_action_email_body' => 'Pracovní postup dosáhl stavu, který vyžaduje vaši akci.
|
||||
'request_workflow_action_email_body' => 'Workflow dosáhlo stavu, který vyžaduje vaši akci.
|
||||
Dokument: [name]
|
||||
Verze: [verze]
|
||||
Pracovní postup: [workflow]
|
||||
Workflow: [workflow]
|
||||
Současný stav: [current_state]
|
||||
Nadřazený adresář: [path_folder]
|
||||
Nadřazená složka: [path_folder]
|
||||
Uživatel: [username]
|
||||
URL: [url]',
|
||||
'request_workflow_action_email_subject' => '[sitename]: [name] - Pracovní postup dosáhl stavu, který vyžaduje vaši akci.',
|
||||
'request_workflow_action_email_subject' => '[sitename]: [name] - Je vyžádána akce workflow',
|
||||
'reset_checkout' => 'Finalizovat zpracování',
|
||||
'restrict_access' => 'Není přístup k',
|
||||
'results_page' => 'Stránka s výsledky',
|
||||
'return_from_subworkflow' => 'Návrat z podřízeného pracovního postupu',
|
||||
'return_from_subworkflow_email_body' => 'Návrat z podřízeného pracovního postupu
|
||||
'return_from_subworkflow' => 'Návrat z podřízeného workflow',
|
||||
'return_from_subworkflow_email_body' => 'Návrat z podřízeného workflow
|
||||
Dokument: [name]
|
||||
Verze: [version]
|
||||
Pracovní postup: [workflow]
|
||||
Podřízený pracovní postup: [subworkflow]
|
||||
Workflow: [workflow]
|
||||
Podřízené workflow: [subworkflow]
|
||||
Nadřazená složka: [folder_path]
|
||||
Uživatel: [username]
|
||||
URL: [url]',
|
||||
'return_from_subworkflow_email_subject' => '[sitename]: [name] - Návrat z podřízeného pracovního postupu',
|
||||
'return_from_subworkflow_email_subject' => '[sitename]: [name] - Návrat z podřízeného workflow',
|
||||
'reverse_links' => 'Dokumenty, které mají vazbu na aktuální dokument',
|
||||
'reviewers' => 'Recenzenti',
|
||||
'reviewer_already_assigned' => 'je už pověřen jako recenzent',
|
||||
|
@ -1082,16 +1089,16 @@ URL: [url]',
|
|||
'revisors' => 'Revizoři',
|
||||
'revisor_already_assigned' => 'Uživatel je již přiřazen jako revizor.',
|
||||
'revisor_already_removed' => 'Revizor byl již z revizního procesu odstraněn nebo již dokument revidoval.',
|
||||
'rewind_workflow' => 'Nové spuštění pracovního postupu',
|
||||
'rewind_workflow_email_body' => 'Pracovní postup byl spuštěn znovu
|
||||
'rewind_workflow' => 'Zpět ve workflow',
|
||||
'rewind_workflow_email_body' => 'Workflow vráceno zpět
|
||||
Dokument: [name]
|
||||
Verze: [version]
|
||||
Pracovní postup: [workflow]
|
||||
Workflow: [workflow]
|
||||
Nadřazená složka: [folder_path]
|
||||
Uživatel: [username]
|
||||
URL: [url]',
|
||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Nové spuštění pracovního postupu',
|
||||
'rewind_workflow_warning' => 'Pokud spustíte znovu pracovní postup, pak záznam o dosavadním průběhu bude trvale smazán',
|
||||
'rewind_workflow_email_subject' => '[sitename]: [name] - Workflow vráceno zpět',
|
||||
'rewind_workflow_warning' => 'Pokud spustíte znovu workflow, pak záznam o dosavadním průběhu bude trvale smazán',
|
||||
'rm_attrdef' => 'Odstranit definici atributu',
|
||||
'rm_attrdefgroup' => 'Odstranit tuto skupinu atributů',
|
||||
'rm_attr_value' => 'Odstranit hodnotu',
|
||||
|
@ -1109,10 +1116,10 @@ URL: [url]',
|
|||
'rm_user' => 'Odstranit tohoto uživatele',
|
||||
'rm_user_from_processes' => 'Odstranit uživatele z procesu',
|
||||
'rm_version' => 'Odstranit verzi',
|
||||
'rm_workflow' => 'Odstranit pracovní postup',
|
||||
'rm_workflow_action' => 'Odstranit akci pracovního postupu',
|
||||
'rm_workflow_state' => 'Odstranit stav pracovního postupu',
|
||||
'rm_workflow_warning' => 'Chystáte se odstranit pracovní postup z dokumentu. To nelze vrátit zpět.',
|
||||
'rm_workflow' => 'Odstranit workflow',
|
||||
'rm_workflow_action' => 'Odstranit akci workflow',
|
||||
'rm_workflow_state' => 'Odstranit stav workflow',
|
||||
'rm_workflow_warning' => 'Chystáte se odstranit workflow z dokumentu. To nelze vrátit zpět.',
|
||||
'role' => 'Role',
|
||||
'role_admin' => 'Administrátor',
|
||||
'role_guest' => 'Host',
|
||||
|
@ -1122,7 +1129,7 @@ URL: [url]',
|
|||
'role_type' => 'Typ',
|
||||
'role_user' => 'Uživatel',
|
||||
'ro_RO' => 'Rumunština',
|
||||
'run_subworkflow' => 'Spustit vedlejší pracovní postup',
|
||||
'run_subworkflow' => 'Spustit dílčí workflow',
|
||||
'run_subworkflow_email_body' => 'Vedlejší pracovní postup spuštěn
|
||||
Dokument: [name]
|
||||
Verze: [version]
|
||||
|
@ -1131,7 +1138,7 @@ Vedlejší pracovní postup: [subworkflow]
|
|||
Nadřazená složka: [folder_path]
|
||||
Uživatel: [username]
|
||||
URL: [url]',
|
||||
'run_subworkflow_email_subject' => '[sitename]: [name] - Vedlejší pracovní postup spuštěn',
|
||||
'run_subworkflow_email_subject' => '[sitename]: [name] - Dílčí workflow spuštěno',
|
||||
'ru_RU' => 'Ruština',
|
||||
'saturday' => 'Sobota',
|
||||
'saturday_abbr' => 'So',
|
||||
|
@ -1183,7 +1190,7 @@ URL: [url]',
|
|||
'select_user' => 'Vybrat uživatele',
|
||||
'select_users' => 'Kliknutím vybrat uživatele',
|
||||
'select_value' => 'Vybrat hodnotu',
|
||||
'select_workflow' => 'Vybrat pracovní postup',
|
||||
'select_workflow' => 'Vybrat workflow',
|
||||
'send_email' => 'Odeslat e-mail',
|
||||
'send_login_data' => 'Odeslat přihlašovací údaje',
|
||||
'send_login_data_body' => 'Přihlašovací údaje
|
||||
|
@ -1212,7 +1219,7 @@ Jméno: [username]
|
|||
'settings_advancedAcl' => 'Pokročilá kontrola přístupu',
|
||||
'settings_advancedAcl_desc' => 'Pokročilá kontrola přístupu umožní zapnout / vypnout některé moduly softwaru. Nemůže být použita pro přístupová práva k dokumentům a složkám.',
|
||||
'settings_allowReviewerOnly' => 'Nastavit pouze recenzenta',
|
||||
'settings_allowReviewerOnly_desc' => 'Aktivujte, pokud má být nastaven pouze recenzent, ale žádný schvalovatel v tradičním režimu pracovního postupu.',
|
||||
'settings_allowReviewerOnly_desc' => 'Aktivujte, pokud má být nastaven pouze recenzent, ale žádný schvalovatel v tradičním režimu workflow.',
|
||||
'settings_apache_mod_rewrite' => 'Apache - Module Rewrite',
|
||||
'settings_Authentication' => 'Nastavení autentizace',
|
||||
'settings_autoLoginUser' => 'Automatické přihlášení',
|
||||
|
@ -1285,7 +1292,7 @@ Jméno: [username]
|
|||
'settings_enableAdminReceipt' => 'Povolit přijetí dokumentů pro administrátory',
|
||||
'settings_enableAdminReceipt_desc' => 'Povolte to, pokud chcete, aby správci byli uvedeni jako příjemci dokumentů.',
|
||||
'settings_enableAdminRevApp' => 'Povolit kontrolu / schválení administrátorů',
|
||||
'settings_enableAdminRevApp_desc' => 'Povolte, pokud chcete, aby správci byli uvedeni jako recenzenti / schvalující osoby a pro přechody pracovních postupů.',
|
||||
'settings_enableAdminRevApp_desc' => 'Povolte, pokud chcete, aby správci byli uvedeni jako recenzenti/schvalující a pro přechody workflow.',
|
||||
'settings_enableCalendar' => 'Povolit kalendář',
|
||||
'settings_enableCalendar_desc' => 'Povolení / zakázání kalendáře',
|
||||
'settings_enableClipboard' => 'Povolit schránku',
|
||||
|
@ -1322,28 +1329,28 @@ Jméno: [username]
|
|||
'settings_enableMultiUpload_desc' => 'Při vytváření nového dokumentu lze nahrát více souborů. Každý vytvoří nový dokument.',
|
||||
'settings_enableNotificationAppRev' => 'Povolit oznámení posuzovateli / schvalovateli',
|
||||
'settings_enableNotificationAppRev_desc' => 'Označit pro oznamování posuzovateli / schvalovateli, pokud je přidána nová verze dokumentu.',
|
||||
'settings_enableNotificationWorkflow' => 'Odeslání upozornění uživatelům v příštím cyklu pracovního postupu',
|
||||
'settings_enableNotificationWorkflow_desc' => 'Je-li tato volba povolena, uživatelé a skupiny, které je třeba provést v příštím cyklu pracovního postupu, budou upozorněny. Dokonce i když pro dokument nepřidali oznámení.',
|
||||
'settings_enableNotificationWorkflow' => 'Odeslání upozornění uživatelům v příštím přechodu workflow',
|
||||
'settings_enableNotificationWorkflow_desc' => 'Je-li tato volba povolena, budou uživatelé a skupiny, jichž je třeba v příštím přechodu workflow, upozorněny. Dokonce i když nemají pro dokument nastaveno oznámení.',
|
||||
'settings_enableOwnerNotification' => 'Povolit oznámení vlastníka standardně',
|
||||
'settings_enableOwnerNotification_desc' => 'Označit pro přidání oznámení pro vlastníka v případě, kdy dokument je přidán.',
|
||||
'settings_enableOwnerReceipt' => 'Povolit příjem dokumentů vlastníkem',
|
||||
'settings_enableOwnerReceipt_desc' => 'Povolte to, pokud chcete, aby byl majitel dokumentu uveden jako příjemce.',
|
||||
'settings_enableOwnerRevApp' => 'Povolit posouzení / schválení pro majitele',
|
||||
'settings_enableOwnerRevApp_desc' => 'Povolte to, pokud chcete, aby byl vlastník dokumentu uveden jako posuzovatel / schvalovatel a pro přechody pracovního postupu.',
|
||||
'settings_enableOwnerRevApp_desc' => 'Povolte, pokud chcete, aby byl vlastník dokumentu uveden jako posuzovatel/schvalovatel a pro přechody workflow.',
|
||||
'settings_enablePasswordForgotten' => 'Povolit zaslání zapomenutého hesla',
|
||||
'settings_enablePasswordForgotten_desc' => 'Chcete-li povolit uživateli nastavit nové heslo a poslat ho e-mailem, zaškrtněte tuto možnost.',
|
||||
'settings_enableReceiptWorkflow' => 'Povolit potvrzení příjmu dokumentů',
|
||||
'settings_enableReceiptWorkflow_desc' => 'Povolit zapnutí pracovního postupu pro potvrzení příjmu dokumentu.',
|
||||
'settings_enableReceiptWorkflow_desc' => 'Povolte, pro spuštění workflow při potvrzení příjmu dokumentu.',
|
||||
'settings_enableRecursiveCount' => 'Povolit rekurzivní počítání dokumentů / složek',
|
||||
'settings_enableRecursiveCount_desc' => 'Při zapnutí je počet dokumentů a složek v zobrazení složek určen počítáním všech objektů při rekurzivním zpracování složek a počítáním těch dokumentů a složek, ke kterým má uživatel přístup.',
|
||||
'settings_enableRevisionOnVoteReject' => 'Odmítnutí jedním revizorem',
|
||||
'settings_enableRevisionOnVoteReject_desc' => 'Pokud je nastaveno, tak dokument bude odmítnut, pokud jen jeden revizor odmítne dokument.',
|
||||
'settings_enableRevisionWorkflow' => 'Povolit revizi dokumentů',
|
||||
'settings_enableRevisionWorkflow_desc' => 'Povolit, aby bylo možné spustit pracovní postup pro revizi dokumentu po uplynutí daného časového období.',
|
||||
'settings_enableRevisionWorkflow_desc' => 'Povolit, aby bylo možné spustit workflow pro revidování dokumentu po uplynutí dané doby.',
|
||||
'settings_enableSelfReceipt' => 'Povolit příjem dokumentů pro přihlášeného uživatele',
|
||||
'settings_enableSelfReceipt_desc' => 'Povolte to, pokud chcete, aby byl aktuálně přihlášený uživatel uveden jako příjemce dokumentu.',
|
||||
'settings_enableSelfRevApp' => 'Povolit posouzení / schválení pro přihlášeného uživatele',
|
||||
'settings_enableSelfRevApp_desc' => 'Povolte, pokud chcete aktuálně přihlášeného uvést jako posuzovatele / schvalovatele a pro přechody pracovního postupu',
|
||||
'settings_enableSelfRevApp_desc' => 'Povolte, pokud chcete, aby byl aktuálně přihlášený uživatel uveden jako posuzovatel/schvalovatel a pro přechody workflow',
|
||||
'settings_enableSessionList' => 'Povolit seznam uživatelů online v nabídce',
|
||||
'settings_enableSessionList_desc' => 'Povolit seznam aktuálně přihlášených uživatelů v nabídce.',
|
||||
'settings_enableThemeSelector' => 'Volba tématu',
|
||||
|
@ -1351,7 +1358,7 @@ Jméno: [username]
|
|||
'settings_enableUpdateReceipt' => 'Povolit úpravu stávajícího příjmu dokumentů',
|
||||
'settings_enableUpdateReceipt_desc' => 'Povolte to, pokud uživatel, který provedl příjem, může změnit své rozhodnutí.',
|
||||
'settings_enableUpdateRevApp' => 'Povolit úpravu revize / schválení',
|
||||
'settings_enableUpdateRevApp_desc' => 'Povolte, pokud uživatel, který provedl revizi / schválení, může změnit rozhodnutí, dokud není aktuální krok pracovního postupu dokončen.',
|
||||
'settings_enableUpdateRevApp_desc' => 'Povolte, pokud uživatel, který revidoval/schválíl, může změnit rozhodnutí, pokud není aktuální krok workflow dokončen.',
|
||||
'settings_enableUserImage' => 'Povolit obrázek uživatele',
|
||||
'settings_enableUserImage_desc' => 'Povolit obrázky uživatelů',
|
||||
'settings_enableUsersView' => 'Povolit zobrazení uživatelů',
|
||||
|
@ -1526,7 +1533,7 @@ Jméno: [username]
|
|||
'settings_tasksInMenu_receipt' => 'Přijetí',
|
||||
'settings_tasksInMenu_review' => 'Recenze',
|
||||
'settings_tasksInMenu_revision' => 'Revize',
|
||||
'settings_tasksInMenu_workflow' => 'Pracovní postup',
|
||||
'settings_tasksInMenu_workflow' => 'Workflow',
|
||||
'settings_theme' => 'Výchozí téma',
|
||||
'settings_theme_desc' => 'Výchozí styl (název podsložky ve složce "styles")',
|
||||
'settings_titleDisplayHack' => 'Hack zobrazení dlouhých názvů',
|
||||
|
@ -1543,8 +1550,8 @@ Jméno: [username]
|
|||
'settings_viewOnlineFileTypes' => 'View Online File Types',
|
||||
'settings_viewOnlineFileTypes_desc' => 'Soubory s jedním z následujících koncovek lze prohlížet online (POUŽÍVEJTE POUZE MALÁ PÍSMENA)',
|
||||
'settings_webdav' => 'WebDAV',
|
||||
'settings_workflowMode' => 'Režim pracovního postupu',
|
||||
'settings_workflowMode_desc' => 'Pokročilý pracovní postup umožňuje zadat vaše vlastní pracovní postupy pro uvolňování verzí dokumentů.',
|
||||
'settings_workflowMode' => 'Režím workflow',
|
||||
'settings_workflowMode_desc' => 'Pokročilé workflow umožňuje definovat vlastní workflow pro uvolňování verzí dokumentů.',
|
||||
'settings_workflowMode_valadvanced' => 'pokročilý',
|
||||
'settings_workflowMode_valtraditional' => 'tradiční',
|
||||
'settings_workflowMode_valtraditional_only_approval' => 'tradiční (bez recenzí)',
|
||||
|
@ -1553,7 +1560,7 @@ Jméno: [username]
|
|||
'set_owner' => 'Nastavit vlastníka',
|
||||
'set_owner_error' => 'Chybné nastavení vlastníka',
|
||||
'set_password' => 'Nastavení hesla',
|
||||
'set_workflow' => 'Nastavení pracovního postupu',
|
||||
'set_workflow' => 'Nastavit workflow',
|
||||
'show_extension_changelog' => 'Zobrazit Changelog',
|
||||
'show_extension_version_list' => 'Zobrazit seznam verzí',
|
||||
'signed_in_as' => 'Přihlášen jako',
|
||||
|
@ -1615,6 +1622,9 @@ Jméno: [username]
|
|||
'splash_rm_transmittal' => 'Přenos odstraněn',
|
||||
'splash_rm_user' => 'Uživatel odstraněn',
|
||||
'splash_rm_user_processes' => 'Uživatel odstraněn ze všech procesů',
|
||||
'splash_rm_workflow' => 'Workflow odstraněno',
|
||||
'splash_rm_workflow_action' => 'Akce workflow odstraněna',
|
||||
'splash_rm_workflow_state' => 'Stav workflow odstraněn',
|
||||
'splash_saved_file' => 'Verze byla uložena',
|
||||
'splash_save_user_data' => 'Uživatelská data uložena',
|
||||
'splash_send_download_link' => 'Odkaz ke stažení byl odeslán emailem.',
|
||||
|
@ -1627,6 +1637,7 @@ Jméno: [username]
|
|||
'splash_toogle_group_manager' => 'Manažer skupiny přepnut',
|
||||
'splash_transfer_document' => 'Dokument přenesen',
|
||||
'splash_transfer_objects' => 'Objekt přenesen',
|
||||
'splash_trigger_workflow' => 'Spuštěn přechod workflow',
|
||||
'state_and_next_state' => 'Stav / Další stav',
|
||||
'statistic' => 'Statistika',
|
||||
'status' => 'Stav',
|
||||
|
@ -1704,7 +1715,7 @@ Jméno: [username]
|
|||
'timeline_skip_status_change_0' => 'čeká na přezkum',
|
||||
'timeline_skip_status_change_1' => 'čeká na schválení',
|
||||
'timeline_skip_status_change_2' => 'uvolněno',
|
||||
'timeline_skip_status_change_3' => 'v pracovním postupu',
|
||||
'timeline_skip_status_change_3' => 've workflow',
|
||||
'timeline_skip_status_change_4' => 'v revizi',
|
||||
'timeline_skip_status_change_5' => 'návrh',
|
||||
'timeline_status_change' => 'Verze [version]: [status]',
|
||||
|
@ -1718,8 +1729,8 @@ Jméno: [username]
|
|||
'transfer_objects' => 'Přenos objektů',
|
||||
'transfer_objects_to_user' => 'Nový vlastník',
|
||||
'transfer_to_user' => 'Přenos k uživateli',
|
||||
'transition_triggered_email' => 'Transformace pracovního postupu spuštěna',
|
||||
'transition_triggered_email_body' => 'Transformace pracovního postupu spuštěna
|
||||
'transition_triggered_email' => 'Spuštěn přechod workflow',
|
||||
'transition_triggered_email_body' => 'Spuštěn přechod workflow
|
||||
Dokument: [jméno]
|
||||
Verze: [verze]
|
||||
Komentář: [comment]
|
||||
|
@ -1729,7 +1740,7 @@ Současný stav: [current_state]
|
|||
Nadřazená složky: [folder_path]
|
||||
Uživatel: [username]
|
||||
URL: [url]',
|
||||
'transition_triggered_email_subject' => '[sitename]: [name] - Transformace pracovního postupu spuštěna',
|
||||
'transition_triggered_email_subject' => '[sitename]: [name] - Spuštěn přechod workflow',
|
||||
'transmittal' => 'Přenos',
|
||||
'transmittalitem_removed' => 'Položka přenosu byla odstraněna',
|
||||
'transmittalitem_updated' => 'Dokument byl aktualizován na nejnovější verzi',
|
||||
|
@ -1737,7 +1748,7 @@ URL: [url]',
|
|||
'transmittal_name' => 'Název',
|
||||
'transmittal_size' => 'Velikost',
|
||||
'tree_loading' => 'Čekejte, nahrává se strom dokumentů...',
|
||||
'trigger_workflow' => 'Pracovní postup',
|
||||
'trigger_workflow' => 'Workflow',
|
||||
'tr_TR' => 'Turečtina',
|
||||
'tuesday' => 'Úterý',
|
||||
'tuesday_abbr' => 'Út',
|
||||
|
@ -1814,30 +1825,30 @@ URL: [url]',
|
|||
'wednesday_abbr' => 'St',
|
||||
'weeks' => 'týdny',
|
||||
'week_view' => 'Zobrazení týdne',
|
||||
'workflow' => 'Pracovní postup',
|
||||
'workflows_involded' => '',
|
||||
'workflow_actions_management' => 'Správa akcí pracovního postupu',
|
||||
'workflow_action_in_use' => 'Tato akce je v současnosti používana pracovním postupem.',
|
||||
'workflow' => 'Workflow',
|
||||
'workflows_involded' => 'Zahrnutý do workflow',
|
||||
'workflow_actions_management' => 'Správa akcí workflow',
|
||||
'workflow_action_in_use' => 'Tato akce je použíta ve workflow.',
|
||||
'workflow_action_name' => 'Název',
|
||||
'workflow_editor' => 'Editor pracovního postupu',
|
||||
'workflow_editor' => 'Editor workflow',
|
||||
'workflow_group_summary' => 'Přehled skupiny',
|
||||
'workflow_has_cycle' => 'Pracovní postup má cyklus',
|
||||
'workflow_has_cycle' => 'Workflow je zacykleno',
|
||||
'workflow_initstate' => 'Počáteční stav',
|
||||
'workflow_in_use' => 'Tento pracovní postup je momentálně používán dokumentem.',
|
||||
'workflow_in_use' => 'Toto workflow je v současné době používáno v dokumentech.',
|
||||
'workflow_layoutdata_saved' => 'Data rozvržení pracovního postupu uložena',
|
||||
'workflow_management' => 'Správa pracovního postupu',
|
||||
'workflow_name' => 'Název pracovního postupu',
|
||||
'workflow_no_doc_rejected_state' => 'Dokument nebude odmítnut ve stavu pracovního postupu!',
|
||||
'workflow_no_doc_released_state' => 'Dokument nebude vydán ve stavu pracovního postupu!',
|
||||
'workflow_no_initial_state' => 'Žádný z přechodů nezačne počátečním stavem pracovního postupu!',
|
||||
'workflow_no_states' => 'Před přidáním pracovního postupu musíte definovat stavy pracovního postupu.',
|
||||
'workflow_management' => 'Správa workflow',
|
||||
'workflow_name' => 'Název',
|
||||
'workflow_no_doc_rejected_state' => 'Dokument nebude odmítnut ve stavu workflow!',
|
||||
'workflow_no_doc_released_state' => 'Dokument nebude uvolněn ve stavu workflow!',
|
||||
'workflow_no_initial_state' => 'Žádná změna stavu nazačína počátečním stavem workflow!',
|
||||
'workflow_no_states' => 'Před přidámím worflow musíte definovat stavy workflow',
|
||||
'workflow_save_layout' => 'Uložit rozvržení',
|
||||
'workflow_state' => 'Stav pracovního postupu',
|
||||
'workflow_states_management' => 'Správa stavů pracovních postupů',
|
||||
'workflow_state' => 'stav workflow',
|
||||
'workflow_states_management' => 'Správa stavů workflow',
|
||||
'workflow_state_docstatus' => 'Stav dokumentu',
|
||||
'workflow_state_in_use' => 'Tento stav je momentálně užíván pracovním postupem.',
|
||||
'workflow_state_in_use' => 'Tento stav je použit ve workflow.',
|
||||
'workflow_state_name' => 'Název stavu pracovního postupu',
|
||||
'workflow_summary' => 'Přehled pracovního postupu',
|
||||
'workflow_summary' => 'Souhrn workflow',
|
||||
'workflow_transition_without_user_group' => 'Alespoň jedna z transformací pracovního postupu nemá uživatele ani skupinu!',
|
||||
'workflow_user_summary' => 'Přehled uživatelů',
|
||||
'x_more_objects' => 'Načíst další dokumenty ([number])',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (2633), dgrutsch (22)
|
||||
// Translators: Admin (2642), dgrutsch (22)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '2-Faktor Authentifizierung',
|
||||
|
@ -198,6 +198,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Mindestens [number_of_users] Benutzer der Gruppe [group]',
|
||||
'august' => 'August',
|
||||
'authentication' => 'Authentifizierung',
|
||||
'authentication_failed' => 'Anmeldung fehlgeschlagen',
|
||||
'author' => 'Autor',
|
||||
'automatic_status_update' => 'Automatischer Statuswechsel',
|
||||
'back' => 'Zurück',
|
||||
|
@ -507,8 +508,12 @@ Der Link ist bis zum [valid] gültig.
|
|||
'error_remove_document' => 'Fehler beim Löschen des Dokuments',
|
||||
'error_remove_folder' => 'Fehler beim Löschen des Ordners',
|
||||
'error_remove_permission' => 'Fehler beim Entfernen der Berechtigung',
|
||||
'error_rm_workflow' => 'Fehler beim Löschen des Workflows',
|
||||
'error_rm_workflow_action' => 'Fehler beim Löschen der Workflow-Aktion',
|
||||
'error_rm_workflow_state' => 'Fehler beim Löschen des Workflows-Status',
|
||||
'error_toogle_permission' => 'Fehler beim Ändern der Berechtigung',
|
||||
'error_transfer_document' => 'Fehler beim Übertragen des Dokuments',
|
||||
'error_trigger_workflow' => 'Fehler beim Auslösen der Transitions des Workflows',
|
||||
'error_update_document' => 'Fehler beim Aktualisieren des Dokuments',
|
||||
'error_uploading_reviewer_only' => 'Fehler beim Anlegen des Dokuments. Das Dokument besitzt einen Prufer, aber keinen Freigeber.',
|
||||
'es_ES' => 'Spanisch',
|
||||
|
@ -751,6 +756,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Fehler bei der Anmeldung',
|
||||
'login_not_given' => 'Es wurde kein Benutzername eingegeben',
|
||||
'login_ok' => 'Anmeldung erfolgreich',
|
||||
'login_restrictions_apply' => 'Anmeldung wegen Beschränkungen fehlgeschlagen',
|
||||
'logout' => 'Abmelden',
|
||||
'log_management' => 'Management der Log-Dateien',
|
||||
'lo_LA' => 'Laotisch',
|
||||
|
@ -1626,6 +1632,9 @@ Name: [username]
|
|||
'splash_rm_transmittal' => 'Dokumentenliste gelöscht',
|
||||
'splash_rm_user' => 'Benutzer gelöscht',
|
||||
'splash_rm_user_processes' => 'Benutzer aus allen Prozessen gelöscht',
|
||||
'splash_rm_workflow' => 'Workflow gelöscht',
|
||||
'splash_rm_workflow_action' => 'Workflow-Aktion gelöscht',
|
||||
'splash_rm_workflow_state' => 'Workflow-Status gelöscht',
|
||||
'splash_saved_file' => 'Version gespeichert',
|
||||
'splash_save_user_data' => 'Benutzerdaten gespeichert',
|
||||
'splash_send_download_link' => 'Download-Link per E-Mail verschickt.',
|
||||
|
@ -1638,6 +1647,7 @@ Name: [username]
|
|||
'splash_toogle_group_manager' => 'Gruppenverwalter gewechselt',
|
||||
'splash_transfer_document' => 'Dokument übertragen',
|
||||
'splash_transfer_objects' => 'Objekte übertragen',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Status/Nächster Status',
|
||||
'statistic' => 'Statistik',
|
||||
'status' => 'Status',
|
||||
|
|
|
@ -169,6 +169,7 @@ $text = array(
|
|||
'at_least_n_users_of_group' => '',
|
||||
'august' => 'Αύγουστος',
|
||||
'authentication' => '',
|
||||
'authentication_failed' => '',
|
||||
'author' => '',
|
||||
'automatic_status_update' => '',
|
||||
'back' => 'Πίσω',
|
||||
|
@ -430,8 +431,12 @@ $text = array(
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Spanish/Ισπανικά',
|
||||
|
@ -643,6 +648,7 @@ $text = array(
|
|||
'login_error_title' => 'Λάθος σύνδεσης',
|
||||
'login_not_given' => '',
|
||||
'login_ok' => 'Επιτυχημένη σύνδεση',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Εποσύνδεση',
|
||||
'log_management' => 'Διαχείριση αρχείων καταγραφής',
|
||||
'lo_LA' => 'Τοποθεσία',
|
||||
|
@ -1411,6 +1417,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1423,6 +1432,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => '',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => '',
|
||||
'statistic' => '',
|
||||
'status' => 'κατάσταση',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1748), archonwang (3), dgrutsch (9), netixw (14)
|
||||
// Translators: Admin (1759), archonwang (3), dgrutsch (9), netixw (14)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '2-factor authentication',
|
||||
|
@ -198,6 +198,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'At least [number_of_users] users of [group]',
|
||||
'august' => 'August',
|
||||
'authentication' => 'Authentication',
|
||||
'authentication_failed' => 'Authentication failed',
|
||||
'author' => 'Author',
|
||||
'automatic_status_update' => 'Automatic status change',
|
||||
'back' => 'Go back',
|
||||
|
@ -508,8 +509,12 @@ The link is valid until [valid].
|
|||
'error_remove_document' => 'Error while deleting document',
|
||||
'error_remove_folder' => 'Error while deleting folder',
|
||||
'error_remove_permission' => 'Error while remove permission',
|
||||
'error_rm_workflow' => 'Error when removing workflow',
|
||||
'error_rm_workflow_action' => 'Error when removing workflow action',
|
||||
'error_rm_workflow_state' => 'Error when removing workflow state',
|
||||
'error_toogle_permission' => 'Error while changing permission',
|
||||
'error_transfer_document' => 'Error while transfering document',
|
||||
'error_trigger_workflow' => 'Error while triggering transition of workflow',
|
||||
'error_update_document' => 'Error while updating document',
|
||||
'error_uploading_reviewer_only' => 'Error when creating the document. The document has a reviewer, but no approver.',
|
||||
'es_ES' => 'Spanish',
|
||||
|
@ -752,6 +757,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Sign in error',
|
||||
'login_not_given' => 'No username has been supplied',
|
||||
'login_ok' => 'Sign in successful',
|
||||
'login_restrictions_apply' => 'Login failed due to restrictions',
|
||||
'logout' => 'Logout',
|
||||
'log_management' => 'Log files management',
|
||||
'lo_LA' => 'Laotian',
|
||||
|
@ -1208,7 +1214,7 @@ Name: [username]
|
|||
'seq_start' => 'First position',
|
||||
'sessions' => 'Users online',
|
||||
'setDateFromFile' => 'Take over date from imported file',
|
||||
'setDateFromFolder' => '',
|
||||
'setDateFromFolder' => 'Take over date from imported folder',
|
||||
'settings' => 'Settings',
|
||||
'settings_activate_module' => 'Activate module',
|
||||
'settings_activate_php_extension' => 'Activate PHP extension',
|
||||
|
@ -1621,6 +1627,9 @@ Name: [username]
|
|||
'splash_rm_transmittal' => 'Transmittal deleted',
|
||||
'splash_rm_user' => 'User removed',
|
||||
'splash_rm_user_processes' => 'User removed from all processes',
|
||||
'splash_rm_workflow' => 'Workflow removed',
|
||||
'splash_rm_workflow_action' => 'Workflow action removed',
|
||||
'splash_rm_workflow_state' => 'Workflow state removed',
|
||||
'splash_saved_file' => 'Version saved',
|
||||
'splash_save_user_data' => 'User data saved',
|
||||
'splash_send_download_link' => 'Download link sent by email.',
|
||||
|
@ -1633,6 +1642,7 @@ Name: [username]
|
|||
'splash_toogle_group_manager' => 'Group manager toogled',
|
||||
'splash_transfer_document' => 'Document transfered',
|
||||
'splash_transfer_objects' => 'Objects transfered',
|
||||
'splash_trigger_workflow' => 'Triggered transition of workflow',
|
||||
'state_and_next_state' => 'State/Next state',
|
||||
'statistic' => 'Statistic',
|
||||
'status' => 'Status',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: acabello (20), Admin (1094), angel (123), francisco (2), jaimem (14)
|
||||
// Translators: acabello (20), Admin (1097), angel (123), francisco (2), jaimem (14)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -193,6 +193,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Al menos [number_of_users] usuarios de [group]',
|
||||
'august' => 'Agosto',
|
||||
'authentication' => 'Autenticación',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Autor',
|
||||
'automatic_status_update' => 'Cambio automático de estado',
|
||||
'back' => 'Atrás',
|
||||
|
@ -484,8 +485,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => 'Error al eliminar la carpeta',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Castellano',
|
||||
|
@ -721,6 +726,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Error de acceso',
|
||||
'login_not_given' => 'Nombre de usuario no facilitado.',
|
||||
'login_ok' => 'Acceso con éxito',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Desconectar',
|
||||
'log_management' => 'Gestión de ficheros de registro',
|
||||
'lo_LA' => 'Laotian',
|
||||
|
@ -1256,7 +1262,7 @@ URL: [url]',
|
|||
'settings_enableMenuTasks' => 'Activar en el menú la lista de tareas',
|
||||
'settings_enableMenuTasks_desc' => 'Habilita/Deshabillita la parte del menú que contiene todas las tareas para el usuario. Contiene documentos que necesitan ser revisados, aprobados, etc.',
|
||||
'settings_enableMultiUpload' => 'Permitir subir múltiples archivos',
|
||||
'settings_enableMultiUpload_desc' => '',
|
||||
'settings_enableMultiUpload_desc' => 'Cuando se crea un documento, es posible subir varios archivos a la vez. Cada uno creará un nuevo documento.',
|
||||
'settings_enableNotificationAppRev' => 'Habilitar notificación a revisor/aprobador',
|
||||
'settings_enableNotificationAppRev_desc' => 'Habilitar para enviar notificación a revisor/aprobador cuando se añade una nueva versión de documento',
|
||||
'settings_enableNotificationWorkflow' => 'Enviar notificación a los usuarios en la siguiente transacción del flujo.',
|
||||
|
@ -1404,7 +1410,7 @@ URL: [url]',
|
|||
'settings_quota_desc' => 'El número máximo de bytes que el usuario puede ocupar en disco. Asignar 0 para no limitar el espacio de disco. Este valor puede ser sobreescrito por cada uso en su perfil.',
|
||||
'settings_removeFromDropFolder' => 'Elimina el archivo de la carpeta de subida despues de una subida exitosa',
|
||||
'settings_removeFromDropFolder_desc' => '',
|
||||
'settings_repositoryUrl' => '',
|
||||
'settings_repositoryUrl' => 'URL del repositorio',
|
||||
'settings_repositoryUrl_desc' => 'URL del repositorio de extensiones',
|
||||
'settings_restricted' => 'Acceso restringido',
|
||||
'settings_restricted_desc' => 'Solo permitir conectar a usuarios si tienen alguna entrada en la base de datos local (independientemente de la autenticación correcta con LDAP)',
|
||||
|
@ -1479,7 +1485,7 @@ URL: [url]',
|
|||
'settings_versiontolow' => 'Versión antigua',
|
||||
'settings_viewOnlineFileTypes' => 'Ver en lineas las extensiones de fichero',
|
||||
'settings_viewOnlineFileTypes_desc' => 'Archivos con una de las siguientes extensiones se pueden visualizar en linea (UTILICE SOLAMENTE CARACTERES EN MINÚSCULA)',
|
||||
'settings_webdav' => '',
|
||||
'settings_webdav' => 'WebDAV',
|
||||
'settings_workflowMode' => 'Workflow mode',
|
||||
'settings_workflowMode_desc' => 'El flujo de trabajo avanzado permite especificar su propia versión de flujo para las versiones de documento.',
|
||||
'settings_workflowMode_valadvanced' => 'avanzado',
|
||||
|
@ -1552,6 +1558,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Usuario eliminado',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1564,6 +1573,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => 'Administrador de grupo activado',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Estado/Estado siguiente',
|
||||
'statistic' => 'Estadística',
|
||||
'status' => 'Estado',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1087), jeromerobert (50), lonnnew (9), Oudiceval (697)
|
||||
// Translators: Admin (1089), jeromerobert (50), lonnnew (9), Oudiceval (715)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => 'Authentification forte',
|
||||
|
@ -70,7 +70,7 @@ URL: [url]',
|
|||
'add_revision' => 'Confirmer l’approbation',
|
||||
'add_role' => 'Ajouter un rôle',
|
||||
'add_subfolder' => 'Ajouter un sous-dossier',
|
||||
'add_task' => '',
|
||||
'add_task' => 'Ajouter une nouvelle tâche pour cette classe',
|
||||
'add_to_clipboard' => 'Ajouter au presse-papier',
|
||||
'add_to_transmittal' => 'Ajouter à la transmission',
|
||||
'add_transmittal' => 'Ajouter une transmission',
|
||||
|
@ -133,7 +133,7 @@ URL : [url]',
|
|||
'approver_already_assigned' => 'L’utilisateur est déjà affecté comme approbateur.',
|
||||
'approver_already_removed' => 'L’approbateur a déjà été retiré du processus d’approbation ou a déjà soumis l’approbation.',
|
||||
'april' => 'Avril',
|
||||
'archive' => '',
|
||||
'archive' => 'Archive',
|
||||
'archive_creation' => 'Créer une archive',
|
||||
'archive_creation_warning' => 'Avec cette fonction, vous pouvez créer une archive contenant les fichiers de tous les dossiers DMS. Après la création, l\'archive sera sauvegardée dans le dossier de données de votre serveur.<br> AVERTISSEMENT: Une archive créée ainsi sera inutilisable en tant que sauvegarde du serveur.',
|
||||
'ar_EG' => 'Arabe – Égypte',
|
||||
|
@ -198,6 +198,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Au moins [number_of_users] utilisateurs de [group]',
|
||||
'august' => 'Août',
|
||||
'authentication' => 'Authentification',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Auteur',
|
||||
'automatic_status_update' => 'Changement de statut automatique',
|
||||
'back' => 'Retour',
|
||||
|
@ -263,7 +264,7 @@ URL: [url]',
|
|||
'choose_workflow' => 'Choisir un workflow',
|
||||
'choose_workflow_action' => 'Choisir une action de workflow',
|
||||
'choose_workflow_state' => 'Choisir un état de workflow',
|
||||
'class_name' => '',
|
||||
'class_name' => 'Nom de classe',
|
||||
'clear_cache' => 'Effacer le cache',
|
||||
'clear_clipboard' => 'Vider le presse-papier',
|
||||
'clear_password' => 'Sans mot de passe',
|
||||
|
@ -314,7 +315,7 @@ URL: [url]',
|
|||
'databasesearch' => 'Recherche dans la base de données',
|
||||
'date' => 'Date',
|
||||
'days' => 'jours',
|
||||
'debug' => '',
|
||||
'debug' => 'Débogage',
|
||||
'december' => 'Décembre',
|
||||
'default_access' => 'Droits d\'accès par défaut',
|
||||
'default_keywords' => 'Mots-clés disponibles',
|
||||
|
@ -337,7 +338,7 @@ URL: [url]',
|
|||
'documents_locked_by_you' => 'Documents verrouillés',
|
||||
'documents_only' => 'Documents uniquement',
|
||||
'documents_to_approve' => 'Documents en attente d\'approbation',
|
||||
'documents_to_correct' => '',
|
||||
'documents_to_correct' => 'Documents à corriger',
|
||||
'documents_to_process' => 'Documents à traiter',
|
||||
'documents_to_receipt' => 'Documents en attente de confirmation de réception',
|
||||
'documents_to_review' => 'Documents en attente de vérification',
|
||||
|
@ -442,7 +443,7 @@ URL: [url]',
|
|||
Le lien est valide jusqu’au [valid].
|
||||
|
||||
[comment]',
|
||||
'download_link_email_subject' => '',
|
||||
'download_link_email_subject' => 'Lien de téléchargement',
|
||||
'do_object_repair' => 'Réparer tous les dossiers et documents.',
|
||||
'do_object_setchecksum' => 'Définir checksum',
|
||||
'do_object_setfilesize' => 'Définir la taille du fichier',
|
||||
|
@ -508,9 +509,13 @@ Le lien est valide jusqu’au [valid].
|
|||
'error_remove_document' => 'Erreur lors de la suppression du document',
|
||||
'error_remove_folder' => 'Erreur lors de la suppression du dossier',
|
||||
'error_remove_permission' => 'Erreur lors de la suppression de permission',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => 'Erreur lors de la modification de permission',
|
||||
'error_transfer_document' => 'Erreur lors du transfert du document',
|
||||
'error_update_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => 'Erreur lors de la mise à jour du document',
|
||||
'error_uploading_reviewer_only' => 'Erreur lors de la création du document. Le document a un examinateur, mais pas d’approbateur.',
|
||||
'es_ES' => 'Espagnol',
|
||||
'event_details' => 'Détails de l\'événement',
|
||||
|
@ -752,6 +757,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Erreur de connexion',
|
||||
'login_not_given' => 'Nom utilisateur non fourni',
|
||||
'login_ok' => 'Connexion établie',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Déconnexion',
|
||||
'log_management' => 'Gestion des fichiers journaux',
|
||||
'lo_LA' => 'Laotien',
|
||||
|
@ -1228,7 +1234,7 @@ Nom : [username]
|
|||
'settings_convertToPdf' => 'Convertir en PDF le document pour prévisualisation',
|
||||
'settings_convertToPdf_desc' => 'Si le document ne peut pas être lu nativement par le navigateur, une version convertie en PDF sera affichée.',
|
||||
'settings_cookieLifetime' => 'Durée de vie des Cookies',
|
||||
'settings_cookieLifetime_desc' => 'La durée de vie d\'un cooke en secondes. Si réglée à 0, le cookie sera supprimé à la fermeture du navigateur.',
|
||||
'settings_cookieLifetime_desc' => 'Durée de vie d’un cookie en secondes. Si cette valeur est définie à 0, le cookie sera supprimé à la fermeture du navigateur.',
|
||||
'settings_coreDir' => 'Répertoire Core SeedDMS',
|
||||
'settings_coreDir_desc' => 'Chemin vers SeedDMS_Core (optionnel)',
|
||||
'settings_createCheckOutDir' => 'Dossier de blocage',
|
||||
|
@ -1361,8 +1367,8 @@ Nom : [username]
|
|||
'settings_expandFolderTree_val1' => 'Démarrer avec le premier niveau déroulé',
|
||||
'settings_expandFolderTree_val2' => 'Démarrer avec l\'arborescence déroulée',
|
||||
'settings_Extensions' => 'Extensions',
|
||||
'settings_extraPath' => 'Chemin ADOdb',
|
||||
'settings_extraPath_desc' => 'Chemin vers adodb. Il s\'agit du répertoire contenant le répertoire adodb',
|
||||
'settings_extraPath' => 'Chemin d’inclusion supplémentaire PHP',
|
||||
'settings_extraPath_desc' => 'Chemin vers des logiciels supplémentaires. Il s’agit du répertoire contenant par exemple le répertoire ADOdb ou des paquets PEAR supplémentaires.',
|
||||
'settings_firstDayOfWeek' => 'Premier jour de la semaine',
|
||||
'settings_firstDayOfWeek_desc' => 'Premier jour de la semaine',
|
||||
'settings_footNote' => 'Note de bas de page',
|
||||
|
@ -1406,7 +1412,7 @@ Nom : [username]
|
|||
'settings_maxDirID' => 'Nombre max. de sous-dossiers',
|
||||
'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_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, pendant laquelle un script est autorisé à s’exécuter avant d’être interrompu.',
|
||||
'settings_maxItemsPerPage' => 'Nombre d’éléments max. sur une page',
|
||||
'settings_maxItemsPerPage_desc' => 'Limite le nombre de dossiers et de documents affichés sur la page du dossier de visualisation. D\'autres objets seront chargés lors du défilement jusqu\'à la fin de la page. Réglez sur 0 pour toujours afficher tous les objets.',
|
||||
'settings_maxRecursiveCount' => 'Nombre maximal de document/dossier récursif',
|
||||
|
@ -1427,7 +1433,7 @@ Nom : [username]
|
|||
'settings_passwordExpiration' => 'Expiration du mot de passe',
|
||||
'settings_passwordExpiration_desc' => 'Le nombre de jours après lequel un mot de passe expire et doit être remis à zéro. 0 désactive l\'expiration du mot de passe.',
|
||||
'settings_passwordHistory' => 'Historique mot de passe',
|
||||
'settings_passwordHistory_desc' => 'Le nombre de mots de passe q\'un utilisateur doit avoir utilisé avant d\'être réutilisé. 0 désactive l\'historique du mot de passe.',
|
||||
'settings_passwordHistory_desc' => 'Nombre de mots de passe qu’un utilisateur doit avoir utilisé avant d’être réutilisé. 0 désactive l’historique du mot de passe.',
|
||||
'settings_passwordStrength' => 'Min. résistance mot de passe',
|
||||
'settings_passwordStrengthAlgorithm' => 'Algorithme pour les mots de passe',
|
||||
'settings_passwordStrengthAlgorithm_desc' => 'L\'algorithme utilisé pour le calcul de robustesse du mot de passe. L\'algorithme \'simple\' vérifie juste pour au moins huit caractères, une lettre minuscule, une lettre majuscule, un chiffre et un caractère spécial. Si ces conditions sont remplies, le résultat retourné est de 100, sinon 0.',
|
||||
|
@ -1544,7 +1550,7 @@ Nom : [username]
|
|||
'set_owner_error' => 'Erreur lors de la définition du propriétaire',
|
||||
'set_password' => 'Définir mot de passe',
|
||||
'set_workflow' => 'Définir le Workflow',
|
||||
'show_extension_changelog' => '',
|
||||
'show_extension_changelog' => 'Afficher le journal des modifications',
|
||||
'show_extension_version_list' => 'Afficher la liste des versions',
|
||||
'signed_in_as' => 'Connecté en tant que',
|
||||
'sign_in' => 'Connexion',
|
||||
|
@ -1605,6 +1611,9 @@ Nom : [username]
|
|||
'splash_rm_transmittal' => 'Transmission supprimée',
|
||||
'splash_rm_user' => 'Utilisateur supprimé',
|
||||
'splash_rm_user_processes' => 'Utilisateur retiré de tous les processus',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => 'Version enregistrée',
|
||||
'splash_save_user_data' => 'Données utilisateur enregistrées',
|
||||
'splash_send_download_link' => 'Lien de téléchargement envoyé par e-mail',
|
||||
|
@ -1617,6 +1626,7 @@ Nom : [username]
|
|||
'splash_toogle_group_manager' => 'Responsable de groupe changé',
|
||||
'splash_transfer_document' => 'Document transféré',
|
||||
'splash_transfer_objects' => 'Objets transférés',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'État initial/suivant',
|
||||
'statistic' => 'Statistiques',
|
||||
'status' => 'Statut',
|
||||
|
@ -1666,12 +1676,12 @@ Nom : [username]
|
|||
'takeOverIndApprover' => 'Récupérer les approbateurs de la dernière version.',
|
||||
'takeOverIndReviewer' => 'Récupérer les examinateurs de la dernière version.',
|
||||
'tasks' => 'Tâches',
|
||||
'task_description' => '',
|
||||
'task_disabled' => '',
|
||||
'task_frequency' => '',
|
||||
'task_last_run' => '',
|
||||
'task_name' => '',
|
||||
'task_next_run' => '',
|
||||
'task_description' => 'Description',
|
||||
'task_disabled' => 'Désactivée',
|
||||
'task_frequency' => 'Fréquence',
|
||||
'task_last_run' => 'Dernière exécution',
|
||||
'task_name' => 'Nom',
|
||||
'task_next_run' => 'Prochaine exécution',
|
||||
'temp_jscode' => 'Code javascript temporaire',
|
||||
'testmail_body' => 'Ce message est un test pour vérifier la configuration mail de SeedDMS.',
|
||||
'testmail_subject' => 'E-mail test',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1217), marbanas (16)
|
||||
// Translators: Admin (1219), marbanas (16)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -198,6 +198,7 @@ Internet poveznica: [url]',
|
|||
'at_least_n_users_of_group' => 'Najmanje [number_of_users] korisnika iz [group]',
|
||||
'august' => 'Kolovoz',
|
||||
'authentication' => 'Ovjera',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Autor',
|
||||
'automatic_status_update' => 'Automatska promjena statusa',
|
||||
'back' => 'Natrag',
|
||||
|
@ -489,8 +490,12 @@ Internet poveznica: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Španjolski',
|
||||
|
@ -726,6 +731,7 @@ Internet poveznica: [url]',
|
|||
'login_error_title' => 'Greška kod prijave',
|
||||
'login_not_given' => 'Nije isporučeno korisničko ime',
|
||||
'login_ok' => 'Uspješna prijava',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Odjava',
|
||||
'log_management' => 'Upravljanje datotekama zapisa',
|
||||
'lo_LA' => 'Laocijanski',
|
||||
|
@ -904,7 +910,7 @@ Ako i dalje imate problema s prijavom, molimo kontaktirajte Vašeg administrator
|
|||
'personal_default_keywords' => 'Osobni popis ključnih riječi',
|
||||
'pl_PL' => 'Poljski',
|
||||
'possible_substitutes' => 'Zamjene',
|
||||
'preset_expires' => '',
|
||||
'preset_expires' => 'Ističe',
|
||||
'preview' => 'Predpregled',
|
||||
'preview_converters' => 'Pretpregled konverzije dokumenta',
|
||||
'preview_images' => '',
|
||||
|
@ -1573,6 +1579,9 @@ Internet poveznica: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Korisnik uklonjen',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1585,6 +1594,7 @@ Internet poveznica: [url]',
|
|||
'splash_toogle_group_manager' => 'Zamjenjen upravitelj grupe',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Status/Slijedeći status',
|
||||
'statistic' => 'Statistika',
|
||||
'status' => 'Status',
|
||||
|
|
|
@ -193,6 +193,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Legalább [number_of_users] felhasználó a [group] csoportban',
|
||||
'august' => 'Augusztus',
|
||||
'authentication' => 'Hitelesítés',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'szerző',
|
||||
'automatic_status_update' => 'Automatikus állapot változás',
|
||||
'back' => 'Vissza',
|
||||
|
@ -484,8 +485,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Spanyol',
|
||||
|
@ -721,6 +726,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Bejelentkezési hiba',
|
||||
'login_not_given' => 'Felhasználónév nincs megadva',
|
||||
'login_ok' => 'Sikeres bejelentkezés',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Kijelentkezés',
|
||||
'log_management' => 'Napló állományok kezelése',
|
||||
'lo_LA' => 'Laoszi',
|
||||
|
@ -1551,6 +1557,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Felhasználó eltávolítva',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1563,6 +1572,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => 'Csoport kezelő kiválasztva',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Állapot/Következő állapot',
|
||||
'statistic' => 'Statisztika',
|
||||
'status' => 'Állapot',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1619), rickr (144), s.pnt (26)
|
||||
// Translators: Admin (1620), rickr (144), s.pnt (26)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => 'Autorizzazione a due fattori',
|
||||
|
@ -199,6 +199,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Minimo [number_of_users] utenti del gruppo [group]',
|
||||
'august' => 'Agosto',
|
||||
'authentication' => 'Autenticazione',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Autore',
|
||||
'automatic_status_update' => 'Modifica automatica dello stato',
|
||||
'back' => 'Ritorna',
|
||||
|
@ -490,8 +491,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => 'Errore durante la rimozione delle autorizzazioni',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => 'Errore durante la modifica permessi',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Spagnolo',
|
||||
|
@ -727,6 +732,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Errore di login',
|
||||
'login_not_given' => 'Non è stato inserito il nome utente',
|
||||
'login_ok' => 'Login eseguito',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Logout',
|
||||
'log_management' => 'Amministrazione file di log',
|
||||
'lo_LA' => 'Laotiano',
|
||||
|
@ -1512,7 +1518,7 @@ URL: [url]',
|
|||
'settings_versiontolow' => 'Versione obsoleta',
|
||||
'settings_viewOnlineFileTypes' => 'Tipi di files visualizzabili',
|
||||
'settings_viewOnlineFileTypes_desc' => 'Solo i files che terminano nella maniera seguente verranno visualizzati (UTILIZZARE SOLO IL MINUSCOLO)',
|
||||
'settings_webdav' => '',
|
||||
'settings_webdav' => 'WebDAV',
|
||||
'settings_workflowMode' => 'Modalità flusso di lavoro',
|
||||
'settings_workflowMode_desc' => 'Il flusso di lavoro \'avanzato\' permette di rilasciare un proprio flusso di lavoro per le versioni dei documenti',
|
||||
'settings_workflowMode_valadvanced' => 'Avanzato',
|
||||
|
@ -1585,6 +1591,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => 'Trasmissione cancellato',
|
||||
'splash_rm_user' => 'Utente eliminato',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1597,6 +1606,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => 'Amministratore di gruppo invertito',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Stato/Prossimo stato',
|
||||
'statistic' => 'Statistiche',
|
||||
'status' => 'Stato',
|
||||
|
|
|
@ -200,6 +200,7 @@ URL: [url]',
|
|||
적어도 [number_of_users]의 사용자 [group]',
|
||||
'august' => '8월',
|
||||
'authentication' => '인증',
|
||||
'authentication_failed' => '',
|
||||
'author' => '저자',
|
||||
'automatic_status_update' => '자동 상태 변경',
|
||||
'back' => '뒤로 가기',
|
||||
|
@ -490,8 +491,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => '스페인어',
|
||||
|
@ -727,6 +732,7 @@ URL: [url]',
|
|||
'login_error_title' => '로그인 오류',
|
||||
'login_not_given' => '사용자명이 제공되지 않았습니다.',
|
||||
'login_ok' => '성공적인 로그인',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => '로그 아웃',
|
||||
'log_management' => '파일 관리 로그',
|
||||
'lo_LA' => '',
|
||||
|
@ -1567,6 +1573,9 @@ URL : [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '사용자 제거',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1579,6 +1588,7 @@ URL : [url]',
|
|||
'splash_toogle_group_manager' => '그룹 관리자 전환',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => '상태 / 다음 상태',
|
||||
'statistic' => '통계',
|
||||
'status' => '상태',
|
||||
|
|
|
@ -196,6 +196,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'ຈໍານວນຜູ້ໃຊ້ [number_of_users] ຜູ້ໃຊ້ [group]',
|
||||
'august' => 'ເດືອນສິງຫາ',
|
||||
'authentication' => 'ການກວດສອບຄວາມຖືກຕ້ອງ',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'ຜູ້ຂຽນ',
|
||||
'automatic_status_update' => 'ປ່ຽນສະຖານະໂດຍອັດຕະໂນມັດ',
|
||||
'back' => 'ກັບຄືນ',
|
||||
|
@ -494,8 +495,12 @@ URL: [url]',
|
|||
'error_remove_document' => 'ເກີດຂໍ້ຜິດພາດຂະນະລົບເອກະສານ',
|
||||
'error_remove_folder' => 'ເກີດຂໍ້ຜິດພາດຂະນະລົບໂຟລເດີ',
|
||||
'error_remove_permission' => 'ເກີດຂໍ້ຜິດພາດໃນຂະນະລົບສິດ',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => 'ເກິດຂໍ້ຜິດພາດໃນຂະນະປ່ຽນສິດ',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'ສະເປນ',
|
||||
|
@ -731,6 +736,7 @@ URL: [url]',
|
|||
'login_error_title' => 'ຂໍ້ຜິດພາດໃນການເຂົ້າລະບົບ',
|
||||
'login_not_given' => 'ບໍ່ໄດ້ລະບຸຊື່ຜູ້ໄຊ້',
|
||||
'login_ok' => 'ລົງຊື່ເຂົາໄຊ້ສຳເລັດ',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'ອອກຈາກລະບົບ',
|
||||
'log_management' => 'ການຈັດການຟາຍບັນທຶກ',
|
||||
'lo_LA' => '',
|
||||
|
@ -1600,6 +1606,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => 'ຍົກເລີກການລົບແລ້ວ',
|
||||
'splash_rm_user' => 'ລົບຜູ້ໄຊ້ແລ້ວ',
|
||||
'splash_rm_user_processes' => 'ຜູ້ໄຊ້ລົບອອກຈາກລະບົບທັງໝົດ',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => 'ບັນທຶກເວີຊັນແລ້ວ',
|
||||
'splash_save_user_data' => 'ບັນທຶກຂໍ້ມູນຜູ້ໄຊ້ແລ້ວ',
|
||||
'splash_send_download_link' => 'ດາວໂຫລດລິງທີ່ສົ່ງດ້ວຍອີເມວ',
|
||||
|
@ -1612,6 +1621,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => 'ການດູແລກຸ່ມ',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => 'ຖ່າຍໂອນວັດຖຸຮຽບຮ້ອຍແລ້ວ',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'ລັດ/ລັດຖັດໄປ',
|
||||
'statistic' => 'ສະຖິຕິ',
|
||||
'status' => 'ສະຖານະ',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (759), gijsbertush (610), pepijn (45), reinoutdijkstra@hotmail.com (270)
|
||||
// Translators: Admin (764), gijsbertush (620), pepijn (45), reinoutdijkstra@hotmail.com (270)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '2-factor-authenticatie',
|
||||
|
@ -70,7 +70,7 @@ URL: [url]',
|
|||
'add_revision' => 'Voeg goedkeuring toe',
|
||||
'add_role' => 'Voeg een rol toe',
|
||||
'add_subfolder' => 'Submap toevoegen',
|
||||
'add_task' => '',
|
||||
'add_task' => 'Voeg een taak toe',
|
||||
'add_to_clipboard' => 'Toevoegen aan klembord',
|
||||
'add_to_transmittal' => 'Toevoegen aan verzending',
|
||||
'add_transmittal' => 'Verzending toevoegen',
|
||||
|
@ -126,12 +126,12 @@ URL: [url]',
|
|||
'approver_already_assigned' => 'autoriseerder al aangewezen',
|
||||
'approver_already_removed' => 'autoriseerder reeds verwijderd',
|
||||
'april' => 'april',
|
||||
'archive' => '',
|
||||
'archive' => 'Archief',
|
||||
'archive_creation' => 'Archief aanmaken',
|
||||
'archive_creation_warning' => 'Met deze handeling maakt U een Archief aan van alle bestanden in het DMS. Na het aanmaken van het Archief, wordt deze opgeslagen in de data-map van uw server.<br>Waarschuwing: een leesbaar Archief kan niet worden gebruikt voor server back-up doeleinde.',
|
||||
'ar_EG' => 'Arabisch',
|
||||
'assign_approvers' => 'Aangewezen [Goedkeurders]',
|
||||
'assign_recipients' => '',
|
||||
'assign_recipients' => 'Wijs ontvangers aan',
|
||||
'assign_reviewers' => 'Aangewezen [Controleurs]',
|
||||
'assign_user_property_to' => 'Wijs gebruikers machtigingen toe aan',
|
||||
'assumed_released' => 'vermoedelijke status: Gepubliceerd',
|
||||
|
@ -191,6 +191,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Minimaal [number_of_users] gebruikers van [group]',
|
||||
'august' => 'augustus',
|
||||
'authentication' => 'Authentificatie',
|
||||
'authentication_failed' => 'Authenticatie mislukte',
|
||||
'author' => 'Auteur',
|
||||
'automatic_status_update' => 'Automatische Status wijziging',
|
||||
'back' => 'Terug',
|
||||
|
@ -266,13 +267,13 @@ URL: [url]',
|
|||
'comment' => 'Commentaar',
|
||||
'comment_changed_email' => 'Gewijzigde email',
|
||||
'comment_for_current_version' => 'Versie van het commentaar',
|
||||
'configure_extension' => '',
|
||||
'configure_extension' => 'Configureer extensie',
|
||||
'confirm_clear_cache' => 'Ja, ik wil de cache opschonen!',
|
||||
'confirm_create_fulltext_index' => 'Ja, Ik wil de volledigetekst index opnieuw maken!',
|
||||
'confirm_move_document' => 'Bevestig verplaatsing van document',
|
||||
'confirm_move_folder' => 'Bevestig de verplaatsing van de map',
|
||||
'confirm_pwd' => 'Bevestig wachtwoord',
|
||||
'confirm_rm_attr_value' => '',
|
||||
'confirm_rm_attr_value' => 'Bevestigen...',
|
||||
'confirm_rm_backup' => 'Weet U zeker dat U het bestand "[arkname]" wilt verwijderen?<br>Let op: deze handeling kan niet ongedaan worden gemaakt.',
|
||||
'confirm_rm_document' => 'Weet U zeker dat U het document \'[documentname]\' wilt verwijderen?<br>Pas op: deze handeling kan niet ongedaan worden gemaakt.',
|
||||
'confirm_rm_dump' => 'Weet U zeker dat U het bestand "[dumpname]" wilt verwijderen?<br>Let op: deze handeling kan niet ongedaan worden gemaakt.',
|
||||
|
@ -330,7 +331,7 @@ URL: [url]',
|
|||
'documents_locked_by_you' => 'Documenten door U geblokkeerd',
|
||||
'documents_only' => 'Alleen documenten',
|
||||
'documents_to_approve' => 'Documenten die wachten op uw goedkeuring',
|
||||
'documents_to_correct' => '',
|
||||
'documents_to_correct' => 'Te corrigeren documenten',
|
||||
'documents_to_process' => 'Te verwerken documenten',
|
||||
'documents_to_receipt' => 'documenten te ontvangen',
|
||||
'documents_to_review' => 'Documenten die wachten op uw controle',
|
||||
|
@ -413,7 +414,7 @@ URL: [url]',
|
|||
'does_not_expire' => 'Verloopt niet',
|
||||
'does_not_inherit_access_msg' => 'Erft toegang',
|
||||
'download' => 'Download',
|
||||
'download_extension' => '',
|
||||
'download_extension' => 'Download extensie als zip file',
|
||||
'download_links' => 'Download-links',
|
||||
'download_link_email_body' => 'Klik op de link hieronder, dan begint de download vanvversie [version] van het document
|
||||
\'[docname]\'.
|
||||
|
@ -460,7 +461,7 @@ De link is geldig tot [valid].
|
|||
'edit_folder_props' => 'Wijzig Map eigenschappen',
|
||||
'edit_group' => 'Wijzig Groep',
|
||||
'edit_online' => 'Online bewerken',
|
||||
'edit_task' => '',
|
||||
'edit_task' => 'Taak bewerken',
|
||||
'edit_transmittal_props' => 'Opmerkingen bij verzending',
|
||||
'edit_user' => 'Wijzig gebruiker',
|
||||
'edit_user_details' => 'Wijzig gebruiker Details',
|
||||
|
@ -473,7 +474,7 @@ De link is geldig tot [valid].
|
|||
'email_not_given' => 'Voer aub een geldig email adres in.',
|
||||
'empty_attribute_group_list' => 'Lege lijst van attributen',
|
||||
'empty_folder_list' => 'Geen documenten of mappen',
|
||||
'empty_list' => '',
|
||||
'empty_list' => 'Lijst is leeg',
|
||||
'empty_notify_list' => 'Geen gegevens',
|
||||
'en_GB' => 'Engels (GB)',
|
||||
'equal_transition_states' => 'Begin- en eind-status zijn hetzelfde',
|
||||
|
@ -489,8 +490,12 @@ De link is geldig tot [valid].
|
|||
'error_remove_document' => 'Fout bij het verwijderen van document',
|
||||
'error_remove_folder' => 'Fout bij het verwijderen van map',
|
||||
'error_remove_permission' => 'Verwijder permissie',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => 'Wijzig permissie',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Spaans',
|
||||
|
@ -726,6 +731,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Login fout',
|
||||
'login_not_given' => 'Er is geen Gebruikersnaam ingevoerd',
|
||||
'login_ok' => 'Login geslaagd',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Log uit',
|
||||
'log_management' => 'Logbestanden beheer',
|
||||
'lo_LA' => 'Laotiaans',
|
||||
|
@ -896,7 +902,7 @@ Mocht u de komende minuten geen email ontvangen, probeer het dan nogmaals en con
|
|||
'password_strength' => 'Sterkte wachtwoord',
|
||||
'password_strength_insuffient' => 'Onvoldoende sterk wachtwoord',
|
||||
'password_wrong' => 'Verkeerd wachtwoord',
|
||||
'pdf_converters' => '',
|
||||
'pdf_converters' => 'PDF converters',
|
||||
'pending_approvals' => 'Wachten op goedkeuring',
|
||||
'pending_receipt' => 'Wachten op ontvangs',
|
||||
'pending_reviews' => 'Wachten op beoordeling',
|
||||
|
@ -910,7 +916,7 @@ Mocht u de komende minuten geen email ontvangen, probeer het dan nogmaals en con
|
|||
'preview_converters' => 'Converters',
|
||||
'preview_images' => 'Voorbeelden',
|
||||
'preview_markdown' => 'Voorbeeld in Markdown',
|
||||
'preview_pdf' => '',
|
||||
'preview_pdf' => 'Beeld vd PDF',
|
||||
'preview_plain' => 'Voorbeeld in platte tekst',
|
||||
'previous_state' => 'Vorige staat',
|
||||
'previous_versions' => 'Vorige versies',
|
||||
|
@ -1524,7 +1530,7 @@ Name: [username]
|
|||
'settings_versiontolow' => 'Versie te laag',
|
||||
'settings_viewOnlineFileTypes' => 'De volgende bestandstypen online bekijken',
|
||||
'settings_viewOnlineFileTypes_desc' => 'Bestanden met een van de volgende extensies kunnen online bekeken worden (GEBRUIK ALLEEN KLEINE LETTERS)',
|
||||
'settings_webdav' => '',
|
||||
'settings_webdav' => 'Instellingen WebDav',
|
||||
'settings_workflowMode' => 'Workflow mode',
|
||||
'settings_workflowMode_desc' => 'De uitgebreide workflow maakt het mogelijk om uw eigen workflow op te geven voor documentversies.',
|
||||
'settings_workflowMode_valadvanced' => 'geavanceerd',
|
||||
|
@ -1536,7 +1542,7 @@ Name: [username]
|
|||
'set_owner_error' => 'Fout bij instellen eigenaar',
|
||||
'set_password' => 'Stel wachtwoord in',
|
||||
'set_workflow' => 'Stel workflow in',
|
||||
'show_extension_changelog' => '',
|
||||
'show_extension_changelog' => 'Toon wijzigingslog',
|
||||
'show_extension_version_list' => 'Toon lijst met versies',
|
||||
'signed_in_as' => 'Ingelogd als:',
|
||||
'sign_in' => 'Log in',
|
||||
|
@ -1597,6 +1603,9 @@ Name: [username]
|
|||
'splash_rm_transmittal' => 'Verzending verwijderd',
|
||||
'splash_rm_user' => 'Gebruiker verwijderd',
|
||||
'splash_rm_user_processes' => 'Gebruiker uit alle processen verwijderd',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => 'Bestand opgeslagen',
|
||||
'splash_save_user_data' => 'Gebruikersgegevens opgeslagen',
|
||||
'splash_send_download_link' => 'Download-link verzonden',
|
||||
|
@ -1609,6 +1618,7 @@ Name: [username]
|
|||
'splash_toogle_group_manager' => 'Group manager toogled',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => 'Objecten overgedragen',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'staat/ volgende staat',
|
||||
'statistic' => 'Statistieken',
|
||||
'status' => 'Status',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (820), netixw (84), romi (93), uGn (112)
|
||||
// Translators: Admin (826), netixw (84), romi (93), uGn (112)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -186,6 +186,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Przynajmniej [number_of_users] użytkowników grupy [group]',
|
||||
'august' => 'Sierpień',
|
||||
'authentication' => 'Autoryzacja',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Autor',
|
||||
'automatic_status_update' => 'Automatyczna zmiana statusu',
|
||||
'back' => 'Powrót',
|
||||
|
@ -477,13 +478,17 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Hiszpański',
|
||||
'event_details' => 'Szczegóły zdarzenia',
|
||||
'exclude_items' => '',
|
||||
'exclude_items' => 'Pozycje wykluczone',
|
||||
'expired' => 'Wygasłe',
|
||||
'expired_at_date' => '',
|
||||
'expired_documents' => '',
|
||||
|
@ -693,8 +698,8 @@ URL: [url]',
|
|||
'librarydoc' => '',
|
||||
'linked_documents' => 'Powiązane dokumenty',
|
||||
'linked_files' => 'Załączniki',
|
||||
'linked_to_current_version' => '',
|
||||
'linked_to_document' => '',
|
||||
'linked_to_current_version' => 'Link do obecnej wersji',
|
||||
'linked_to_document' => 'Połączony z dokumentem',
|
||||
'linked_to_this_version' => '',
|
||||
'link_alt_updatedocument' => 'Jeśli chcesz wczytać pliki większe niż bieżące maksimum, użyj alternatywnej <a href="%s">strony wczytywania</a>.',
|
||||
'link_to_version' => '',
|
||||
|
@ -714,6 +719,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Błąd logowania',
|
||||
'login_not_given' => 'Nie podano nazwy użytkownika',
|
||||
'login_ok' => 'Zalogowano',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Wyloguj',
|
||||
'log_management' => 'Zarządzanie plikami dziennika',
|
||||
'lo_LA' => 'Laotański',
|
||||
|
@ -1531,6 +1537,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Użytkownika usunięto',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1543,6 +1552,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => 'Przełączono grupę menadżerów',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Status/Następny status',
|
||||
'statistic' => 'Statystyka',
|
||||
'status' => 'Status',
|
||||
|
@ -1629,11 +1639,11 @@ URL: [url]',
|
|||
'toggle_qrcode' => '',
|
||||
'to_before_from' => '',
|
||||
'transfer_document' => 'Transfer dokumentu',
|
||||
'transfer_no_read_access' => '',
|
||||
'transfer_no_write_access' => '',
|
||||
'transfer_no_read_access' => 'Użytkownik nie ma prawa do odczytu w tym folderze',
|
||||
'transfer_no_write_access' => 'Użytkownik nie ma prawa do zapisu w tym folderze',
|
||||
'transfer_objects' => '',
|
||||
'transfer_objects_to_user' => '',
|
||||
'transfer_to_user' => '',
|
||||
'transfer_to_user' => 'Przekaż użytkownikowi',
|
||||
'transition_triggered_email' => 'Uruchomiono proces przepływu',
|
||||
'transition_triggered_email_body' => 'Uruchomiono proces przepływu
|
||||
Dokument: [name]
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1001), flaviove (627), lfcristofoli (352)
|
||||
// Translators: Admin (1006), flaviove (627), lfcristofoli (352)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -193,6 +193,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Pelo menos [nuber_of_users] usuários de [group]',
|
||||
'august' => 'August',
|
||||
'authentication' => 'Autenticação',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Autor',
|
||||
'automatic_status_update' => 'Mudança de status automático',
|
||||
'back' => 'Voltar',
|
||||
|
@ -268,7 +269,7 @@ URL: [url]',
|
|||
'comment' => 'Comentário',
|
||||
'comment_changed_email' => '',
|
||||
'comment_for_current_version' => 'Comentário para versão atual',
|
||||
'configure_extension' => '',
|
||||
'configure_extension' => 'Configurar extensão',
|
||||
'confirm_clear_cache' => 'Você realmente gostaria de limpar o cache? Isso removerá todas as imagens de pré-visualização.',
|
||||
'confirm_create_fulltext_index' => 'Sim, eu gostaria de recriar o índice de texto completo!',
|
||||
'confirm_move_document' => '',
|
||||
|
@ -414,7 +415,7 @@ URL: [url]',
|
|||
'does_not_expire' => 'não Expira',
|
||||
'does_not_inherit_access_msg' => 'Inherit access',
|
||||
'download' => 'Download',
|
||||
'download_extension' => '',
|
||||
'download_extension' => 'Baixar extensão como arquivo zip',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
|
@ -483,10 +484,14 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => 'Erro na exclusão da pasta',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'error_uploading_reviewer_only' => 'Erro ao criar o documento. O documento tem um revisor, mas não tem um aprovador',
|
||||
'es_ES' => 'Espanhol',
|
||||
'event_details' => 'Event details',
|
||||
'exclude_items' => 'Excluir ítens',
|
||||
|
@ -720,6 +725,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Erro de Login',
|
||||
'login_not_given' => 'No username has been supplied',
|
||||
'login_ok' => 'Logado com sucesso',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Sair',
|
||||
'log_management' => 'Gerenciamento de Logs',
|
||||
'lo_LA' => 'Laoiano',
|
||||
|
@ -889,7 +895,7 @@ Se você ainda tiver problemas para fazer o login, por favor, contate o administ
|
|||
'password_strength' => 'Força da senha',
|
||||
'password_strength_insuffient' => 'A força da senha é insuficiente',
|
||||
'password_wrong' => 'Senha errada',
|
||||
'pdf_converters' => '',
|
||||
'pdf_converters' => 'Conversores de PDF',
|
||||
'pending_approvals' => '',
|
||||
'pending_receipt' => '',
|
||||
'pending_reviews' => '',
|
||||
|
@ -1488,7 +1494,7 @@ URL: [url]',
|
|||
'set_owner_error' => 'Proprietário configuração de erro',
|
||||
'set_password' => 'Definir Senha',
|
||||
'set_workflow' => 'Definir fluxo de trabalho',
|
||||
'show_extension_changelog' => '',
|
||||
'show_extension_changelog' => 'Mostrar Changelog',
|
||||
'show_extension_version_list' => 'Exibir Lista de Versões',
|
||||
'signed_in_as' => 'Logado como',
|
||||
'sign_in' => 'Entrar',
|
||||
|
@ -1549,6 +1555,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Usuário removido',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1561,6 +1570,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => 'Gerente Grupo alternado',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Estado/Próximo estado',
|
||||
'statistic' => 'Estatística',
|
||||
'status' => 'Status',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1073), balan (87)
|
||||
// Translators: Admin (1081), balan (87)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -198,6 +198,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Cel puțin [number_of_users] utilizatori in [group]',
|
||||
'august' => 'August',
|
||||
'authentication' => 'Autentificare',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Autor',
|
||||
'automatic_status_update' => 'Schimbarea automata a statusului',
|
||||
'back' => 'Inapoi',
|
||||
|
@ -420,7 +421,7 @@ URL: [url]',
|
|||
'does_not_expire' => 'Nu expiră',
|
||||
'does_not_inherit_access_msg' => 'Acces moștenit',
|
||||
'download' => 'Descarca',
|
||||
'download_extension' => '',
|
||||
'download_extension' => 'Descarca extensia ca fisier zip',
|
||||
'download_links' => '',
|
||||
'download_link_email_body' => '',
|
||||
'download_link_email_subject' => '',
|
||||
|
@ -489,8 +490,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Spaniola',
|
||||
|
@ -520,12 +525,12 @@ URL: [url]',
|
|||
'export' => '',
|
||||
'extension_archive' => '',
|
||||
'extension_changelog' => '',
|
||||
'extension_loading' => '',
|
||||
'extension_loading' => 'Se incarca extensiile',
|
||||
'extension_manager' => 'Gestionați extensiile',
|
||||
'extension_mgr_installed' => '',
|
||||
'extension_mgr_no_upload' => '',
|
||||
'extension_mgr_repository' => '',
|
||||
'extension_version_list' => '',
|
||||
'extension_mgr_installed' => 'Instalata',
|
||||
'extension_mgr_no_upload' => 'Nu se poate incarca o extensie noua pentru ca directorul nu are drepturi de scriere',
|
||||
'extension_mgr_repository' => 'Disponibila',
|
||||
'extension_version_list' => 'Versiuni',
|
||||
'february' => 'Februarie',
|
||||
'file' => 'Fișier',
|
||||
'files' => 'Fișiere',
|
||||
|
@ -576,7 +581,7 @@ Utilizator: [username]
|
|||
URL: [url]',
|
||||
'folder_renamed_email_subject' => '[sitename]: [name] - Folder redenumit',
|
||||
'folder_title' => 'Folder \'[foldername]\'',
|
||||
'force_update' => '',
|
||||
'force_update' => 'Actualizeaza',
|
||||
'friday' => 'Vineri',
|
||||
'friday_abbr' => 'Vi',
|
||||
'from' => 'De la',
|
||||
|
@ -726,6 +731,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Eroare de logare',
|
||||
'login_not_given' => 'Nici un numele de utilizator nu au fost furnizat',
|
||||
'login_ok' => 'Login cu succes',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Logout',
|
||||
'log_management' => 'Log management de fișiere',
|
||||
'lo_LA' => '',
|
||||
|
@ -1514,7 +1520,7 @@ URL: [url]',
|
|||
'set_password' => 'Setare Parolă',
|
||||
'set_workflow' => 'Setare Workflow',
|
||||
'show_extension_changelog' => '',
|
||||
'show_extension_version_list' => '',
|
||||
'show_extension_version_list' => 'Arata o lista a versiunilor',
|
||||
'signed_in_as' => 'Autentificat ca',
|
||||
'sign_in' => 'Sign in',
|
||||
'sign_out' => 'Sign out',
|
||||
|
@ -1574,6 +1580,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Uilizator eliminat',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1586,6 +1595,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => 'Comută Managerul de grup',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Stare/Stare urmatoare',
|
||||
'statistic' => 'Statistic',
|
||||
'status' => 'Status',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1663)
|
||||
// Translators: Admin (1664)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => 'Двухфакторная аутентификация',
|
||||
|
@ -198,6 +198,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => '[number_of_users] польз. группы [group]',
|
||||
'august' => 'Август',
|
||||
'authentication' => 'Авторизация',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Автор',
|
||||
'automatic_status_update' => 'Автоматическое изменение статуса',
|
||||
'back' => 'Назад',
|
||||
|
@ -489,8 +490,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => 'Ошибка снятия разрешения',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => 'Ошибка смены разрешения',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Spanish',
|
||||
|
@ -726,9 +731,10 @@ URL: [url]',
|
|||
'login_error_title' => 'Ошибка входа',
|
||||
'login_not_given' => 'Не указан пользователь',
|
||||
'login_ok' => 'Вход успешен',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Выход',
|
||||
'log_management' => 'Управление журналами',
|
||||
'lo_LA' => '',
|
||||
'lo_LA' => 'Лаос',
|
||||
'manager' => 'Менеджер',
|
||||
'manager_of_group' => 'Вы являетесь менеджером данной группы',
|
||||
'mandatory_approvergroups' => 'Обязательные группы утверждающих',
|
||||
|
@ -1581,6 +1587,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Пользователь удалён',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1593,6 +1602,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => 'Изменён менеджер группы',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Статус / следующий статус',
|
||||
'statistic' => 'Статистика',
|
||||
'status' => 'Статус',
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -199,6 +199,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => 'Åtminstone [number_of_users] användare av [group]',
|
||||
'august' => 'Augusti',
|
||||
'authentication' => 'Autentisering',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Författare',
|
||||
'automatic_status_update' => 'Automatisk ändring av status',
|
||||
'back' => 'Tillbaka',
|
||||
|
@ -502,8 +503,12 @@ Länken är giltig t o m [valid].
|
|||
'error_remove_document' => 'Fel vid radering av dokument',
|
||||
'error_remove_folder' => 'Fel vid radering av katalog',
|
||||
'error_remove_permission' => 'Fel vid borttagen behörighet',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => 'Fel vid förändring av behörighet',
|
||||
'error_transfer_document' => 'Fel vid förflyttning av dokument',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Spanska',
|
||||
|
@ -739,6 +744,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Fel vid inloggningen',
|
||||
'login_not_given' => 'Användarnamn saknas',
|
||||
'login_ok' => 'Inloggningen lyckades',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Logga ut',
|
||||
'log_management' => 'Loggfilshantering',
|
||||
'lo_LA' => 'Laotisk',
|
||||
|
@ -1594,6 +1600,9 @@ Kommentar: [comment]',
|
|||
'splash_rm_transmittal' => 'Meddelande raderat',
|
||||
'splash_rm_user' => 'Användare har tagits bort',
|
||||
'splash_rm_user_processes' => 'Användare borttagen från alla processer',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => 'Version sparad',
|
||||
'splash_save_user_data' => 'Användarinställningar sparade',
|
||||
'splash_send_download_link' => 'Nedladdningslänk skickad via e-post.',
|
||||
|
@ -1606,6 +1615,7 @@ Kommentar: [comment]',
|
|||
'splash_toogle_group_manager' => 'Gruppmanager har ändrats',
|
||||
'splash_transfer_document' => 'Dokument överfört',
|
||||
'splash_transfer_objects' => 'Objekt överförda',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Status/Nästa status',
|
||||
'statistic' => 'Statistik',
|
||||
'status' => 'Status',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (1074), aydin (83)
|
||||
// Translators: Admin (1082), aydin (83)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '',
|
||||
|
@ -192,6 +192,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => '[group] için en az [number_of_users] kullanıcı',
|
||||
'august' => 'Ağustos',
|
||||
'authentication' => 'Kimlik doğrulama',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Yazan',
|
||||
'automatic_status_update' => 'Otomatik durumu değişimi',
|
||||
'back' => 'Geri dön',
|
||||
|
@ -292,7 +293,7 @@ URL: [url]',
|
|||
'confirm_update_transmittalitem' => '',
|
||||
'content' => 'İçerik',
|
||||
'continue' => 'Devam',
|
||||
'converter_new_cmd' => '',
|
||||
'converter_new_cmd' => 'Komut',
|
||||
'converter_new_mimetype' => '',
|
||||
'copied_to_checkout_as' => '',
|
||||
'create_download_link' => '',
|
||||
|
@ -483,8 +484,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'İspanyolca',
|
||||
|
@ -720,6 +725,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Hatalı giriş',
|
||||
'login_not_given' => 'Kullanıcı adı verilmedi',
|
||||
'login_ok' => 'Giriş başarılı',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Çıkış',
|
||||
'log_management' => 'Log yönetimi',
|
||||
'lo_LA' => 'Laotian',
|
||||
|
@ -1131,7 +1137,7 @@ URL: [url]',
|
|||
'send_login_data' => '',
|
||||
'send_login_data_body' => '',
|
||||
'send_login_data_subject' => '',
|
||||
'send_test_mail' => '',
|
||||
'send_test_mail' => 'Test maili gönder',
|
||||
'september' => 'Eylül',
|
||||
'sequence' => 'Sıralama',
|
||||
'seq_after' => 'Şundan sonra: "[prevname]"',
|
||||
|
@ -1153,7 +1159,7 @@ URL: [url]',
|
|||
'settings_allowReviewerOnly_desc' => '',
|
||||
'settings_apache_mod_rewrite' => 'Apache - Module Rewrite',
|
||||
'settings_Authentication' => 'Yetkilendirme ayarları',
|
||||
'settings_autoLoginUser' => '',
|
||||
'settings_autoLoginUser' => 'otomatik giriş',
|
||||
'settings_autoLoginUser_desc' => '',
|
||||
'settings_available_languages' => 'kullanılabilir diller',
|
||||
'settings_available_languages_desc' => '',
|
||||
|
@ -1433,7 +1439,7 @@ URL: [url]',
|
|||
'settings_smtpPort_desc' => 'SMTP Sunucu portu, varsayılan 25',
|
||||
'settings_smtpSendFrom' => 'Kimden',
|
||||
'settings_smtpSendFrom_desc' => 'Gönderilecek e-postalar kimden gidecek',
|
||||
'settings_smtpSendTestMail' => '',
|
||||
'settings_smtpSendTestMail' => 'Test maili gönder',
|
||||
'settings_smtpSendTestMail_desc' => '',
|
||||
'settings_smtpServer' => 'SMTP Sunucu adı/adresi',
|
||||
'settings_smtpServer_desc' => 'SMTP sunucu adı/adresi',
|
||||
|
@ -1553,6 +1559,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Kullanıcı silindi',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1565,6 +1574,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => 'Grup yöneticisi değişti',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Durum/Sonraki durum',
|
||||
'statistic' => 'İstatistik',
|
||||
'status' => 'Durum',
|
||||
|
@ -1651,11 +1661,11 @@ URL: [url]',
|
|||
'toggle_qrcode' => '',
|
||||
'to_before_from' => 'Bitiş tarihi başlama tarihinden önce olamaz',
|
||||
'transfer_document' => 'Dokumanı gönder',
|
||||
'transfer_no_read_access' => '',
|
||||
'transfer_no_read_access' => 'Kullanıcının klasörde okuma erişimi yok.',
|
||||
'transfer_no_write_access' => 'Kullanıcının klasör üzerinde yazma hakkı yok',
|
||||
'transfer_objects' => '',
|
||||
'transfer_objects_to_user' => '',
|
||||
'transfer_to_user' => '',
|
||||
'transfer_to_user' => 'Kullanıcıya transfer et',
|
||||
'transition_triggered_email' => 'İş Akış Geçişi Tetiklendi',
|
||||
'transition_triggered_email_body' => 'İş Akış Geçişi Tetiklendi
|
||||
Doküman: [name]
|
||||
|
|
|
@ -198,6 +198,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => '[number_of_users] користувачі групи [group]',
|
||||
'august' => 'Серпень',
|
||||
'authentication' => 'Авторизація',
|
||||
'authentication_failed' => '',
|
||||
'author' => 'Автор',
|
||||
'automatic_status_update' => 'Автоматична зміна статусу',
|
||||
'back' => 'Назад',
|
||||
|
@ -489,8 +490,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => 'Spanish',
|
||||
|
@ -726,6 +731,7 @@ URL: [url]',
|
|||
'login_error_title' => 'Помилка входу',
|
||||
'login_not_given' => 'Не вказано користувача',
|
||||
'login_ok' => 'Вхід успішний',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => 'Вихід',
|
||||
'log_management' => 'Керування журналами',
|
||||
'lo_LA' => 'Лаоська',
|
||||
|
@ -1574,6 +1580,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => 'Користувача видалено',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1586,6 +1595,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => 'Змінено менеджера групи',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => 'Статус / наступний статус',
|
||||
'statistic' => 'Статистика',
|
||||
'status' => 'Статус',
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
// Translators: Admin (749), archonwang (469), fengjohn (5), yang86 (1)
|
||||
// Translators: Admin (751), archonwang (469), fengjohn (5), yang86 (1)
|
||||
|
||||
$text = array(
|
||||
'2_factor_auth' => '双重认证',
|
||||
|
@ -190,6 +190,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => '',
|
||||
'august' => '八 月',
|
||||
'authentication' => '认证',
|
||||
'authentication_failed' => '',
|
||||
'author' => '作者',
|
||||
'automatic_status_update' => '自动状态变化',
|
||||
'back' => '返回',
|
||||
|
@ -489,8 +490,12 @@ URL: [url]',
|
|||
'error_remove_document' => '删除文档时出错',
|
||||
'error_remove_folder' => '删除文件夹时出错',
|
||||
'error_remove_permission' => '移除权限时报错',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '修改权限时报错',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => '西班牙语',
|
||||
|
@ -722,6 +727,7 @@ URL: [url]',
|
|||
'login_error_title' => '登录错误',
|
||||
'login_not_given' => '缺少用户名',
|
||||
'login_ok' => '登录成功',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => '登出',
|
||||
'log_management' => '日志管理',
|
||||
'lo_LA' => '老挝',
|
||||
|
@ -1399,8 +1405,8 @@ URL: [url]',
|
|||
'settings_previewWidthDropFolderList_desc' => '',
|
||||
'settings_previewWidthList' => '缩略图宽度(列表中)',
|
||||
'settings_previewWidthList_desc' => '列表中缩略图的宽度',
|
||||
'settings_previewWidthMenuList' => '',
|
||||
'settings_previewWidthMenuList_desc' => '',
|
||||
'settings_previewWidthMenuList' => '预览图像的宽度(菜单列表)',
|
||||
'settings_previewWidthMenuList_desc' => '预览图像的宽度显示为丢弃文件夹菜单中的项目',
|
||||
'settings_printDisclaimer' => '显示免责声明',
|
||||
'settings_printDisclaimer_desc' => '如果开启,这个免责声明信息将在每个页面的底部显示',
|
||||
'settings_quota' => '设置磁盘配额',
|
||||
|
@ -1555,6 +1561,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '用户信息已删除',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '版本已保存',
|
||||
'splash_save_user_data' => '用户数据已保存',
|
||||
'splash_send_download_link' => '下载链接已通过邮件发送。',
|
||||
|
@ -1567,6 +1576,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => '',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => '',
|
||||
'statistic' => '统计',
|
||||
'status' => '状态',
|
||||
|
|
|
@ -173,6 +173,7 @@ URL: [url]',
|
|||
'at_least_n_users_of_group' => '',
|
||||
'august' => '八 月',
|
||||
'authentication' => '',
|
||||
'authentication_failed' => '',
|
||||
'author' => '作者',
|
||||
'automatic_status_update' => '自動狀態變化',
|
||||
'back' => '返回',
|
||||
|
@ -434,8 +435,12 @@ URL: [url]',
|
|||
'error_remove_document' => '',
|
||||
'error_remove_folder' => '',
|
||||
'error_remove_permission' => '',
|
||||
'error_rm_workflow' => '',
|
||||
'error_rm_workflow_action' => '',
|
||||
'error_rm_workflow_state' => '',
|
||||
'error_toogle_permission' => '',
|
||||
'error_transfer_document' => '',
|
||||
'error_trigger_workflow' => '',
|
||||
'error_update_document' => '',
|
||||
'error_uploading_reviewer_only' => '',
|
||||
'es_ES' => '西班牙語',
|
||||
|
@ -647,6 +652,7 @@ URL: [url]',
|
|||
'login_error_title' => '登錄錯誤',
|
||||
'login_not_given' => '缺少用戶名',
|
||||
'login_ok' => '登錄成功',
|
||||
'login_restrictions_apply' => '',
|
||||
'logout' => '登出',
|
||||
'log_management' => '日誌管理',
|
||||
'lo_LA' => '',
|
||||
|
@ -1404,6 +1410,9 @@ URL: [url]',
|
|||
'splash_rm_transmittal' => '',
|
||||
'splash_rm_user' => '',
|
||||
'splash_rm_user_processes' => '',
|
||||
'splash_rm_workflow' => '',
|
||||
'splash_rm_workflow_action' => '',
|
||||
'splash_rm_workflow_state' => '',
|
||||
'splash_saved_file' => '',
|
||||
'splash_save_user_data' => '',
|
||||
'splash_send_download_link' => '',
|
||||
|
@ -1416,6 +1425,7 @@ URL: [url]',
|
|||
'splash_toogle_group_manager' => '',
|
||||
'splash_transfer_document' => '',
|
||||
'splash_transfer_objects' => '',
|
||||
'splash_trigger_workflow' => '',
|
||||
'state_and_next_state' => '',
|
||||
'statistic' => '',
|
||||
'status' => '狀態',
|
||||
|
|
|
@ -18,15 +18,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
if (!isset($_GET["documentid"]) || !is_numeric($_GET["documentid"]) || intval($_GET["documentid"])<1) {
|
||||
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
||||
|
|
172
op/op.Login.php
172
op/op.Login.php
|
@ -31,21 +31,20 @@ include("../inc/inc.ClassController.php");
|
|||
|
||||
include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc";
|
||||
|
||||
function _printMessage($heading, $message) { /* {{{ */
|
||||
function _printMessage($message) { /* {{{ */
|
||||
global $session, $dms, $theme;
|
||||
|
||||
header("Location:../out/out.Login.php?msg=".urlencode($message));
|
||||
exit;
|
||||
|
||||
UI::exitError($heading, $message, true);
|
||||
return;
|
||||
} /* }}} */
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$controller = Controller::factory($tmp[1], array('dms'=>$dms));
|
||||
|
||||
$sesstheme = '';
|
||||
if (isset($_REQUEST["sesstheme"]) && strlen($_REQUEST["sesstheme"])>0 && is_numeric(array_search($_REQUEST["sesstheme"],UI::getStyles())) ) {
|
||||
$theme = $_REQUEST["sesstheme"];
|
||||
$sesstheme = $_REQUEST["sesstheme"];
|
||||
}
|
||||
|
||||
if (isset($_REQUEST["login"])) {
|
||||
|
@ -54,7 +53,7 @@ if (isset($_REQUEST["login"])) {
|
|||
}
|
||||
|
||||
if (!isset($login) || strlen($login)==0) {
|
||||
_printMessage(getMLText("login_error_title"), getMLText("login_not_given")."\n");
|
||||
_printMessage(getMLText("login_not_given")."\n");
|
||||
exit;
|
||||
}
|
||||
|
||||
|
@ -66,158 +65,8 @@ if(isset($_POST['pwd'])) {
|
|||
}
|
||||
}
|
||||
|
||||
/* Initialy set $user to false. It will contain a valid user record
|
||||
* if the user is a guest user or authentication will succeed.
|
||||
*/
|
||||
$user = false;
|
||||
|
||||
/* The password may only be empty if the guest user tries to log in.
|
||||
* There is just one guest account with id $settings->_guestID which
|
||||
* is allowed to log in without a password. All other guest accounts
|
||||
* are treated like regular logins
|
||||
*/
|
||||
if($settings->_enableGuestLogin && (int) $settings->_guestID) {
|
||||
$guestUser = $dms->getUser((int) $settings->_guestID);
|
||||
if(($login != $guestUser->getLogin())) {
|
||||
if ((!isset($pwd) || strlen($pwd)==0)) {
|
||||
_printMessage(getMLText("login_error_title"), getMLText("login_error_text")."\n");
|
||||
exit;
|
||||
}
|
||||
} else {
|
||||
$user = $guestUser;
|
||||
}
|
||||
}
|
||||
|
||||
if(!$user && isset($GLOBALS['SEEDDMS_HOOKS']['authentication'])) {
|
||||
foreach($GLOBALS['SEEDDMS_HOOKS']['authentication'] as $authObj) {
|
||||
if(!$user && method_exists($authObj, 'authenticate')) {
|
||||
$user = $authObj->authenticate($dms, $settings, $login, $pwd);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Authenticate against LDAP server {{{ */
|
||||
if (!$user && isset($settings->_ldapHost) && strlen($settings->_ldapHost)>0) {
|
||||
require_once("../inc/inc.ClassLdapAuthentication.php");
|
||||
$authobj = new SeedDMS_LdapAuthentication($dms, $settings);
|
||||
$user = $authobj->authenticate($login, $pwd);
|
||||
} /* }}} */
|
||||
|
||||
/* Authenticate against SeedDMS database {{{ */
|
||||
if(!$user) {
|
||||
require_once("../inc/inc.ClassDbAuthentication.php");
|
||||
$authobj = new SeedDMS_DbAuthentication($dms, $settings);
|
||||
$user = $authobj->authenticate($login, $pwd);
|
||||
} /* }}} */
|
||||
|
||||
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 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;
|
||||
}
|
||||
|
||||
if($settings->_enable2FactorAuthentication) {
|
||||
if($user->getSecret()) {
|
||||
require "vendor/autoload.php";
|
||||
$tfa = new \RobThree\Auth\TwoFactorAuth('SeedDMS');
|
||||
if($tfa->verifyCode($user->getSecret(), $_POST['twofactauth']) !== true) {
|
||||
_printMessage(getMLText("login_error_title"), getMLText("login_error_text"));
|
||||
exit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Clear login failures if login was successful */
|
||||
$user->clearLoginFailures();
|
||||
|
||||
// Capture the user's language and theme settings.
|
||||
if (isset($_REQUEST["lang"]) && strlen($_REQUEST["lang"])>0 && is_numeric(array_search($_REQUEST["lang"],getLanguages())) ) {
|
||||
$lang = $_REQUEST["lang"];
|
||||
$user->setLanguage($lang);
|
||||
}
|
||||
else {
|
||||
$lang = $user->getLanguage();
|
||||
if (strlen($lang)==0) {
|
||||
$lang = $settings->_language;
|
||||
$user->setLanguage($lang);
|
||||
}
|
||||
}
|
||||
if (isset($_REQUEST["sesstheme"]) && strlen($_REQUEST["sesstheme"])>0 && is_numeric(array_search($_REQUEST["sesstheme"],UI::getStyles())) ) {
|
||||
$sesstheme = $_REQUEST["sesstheme"];
|
||||
$user->setTheme($sesstheme);
|
||||
}
|
||||
else {
|
||||
$sesstheme = $user->getTheme();
|
||||
if (strlen($sesstheme)==0) {
|
||||
$sesstheme = $settings->_theme;
|
||||
// $user->setTheme($sesstheme);
|
||||
}
|
||||
}
|
||||
|
||||
$session = new SeedDMS_Session($db);
|
||||
|
||||
// Delete all sessions that are more than 1 week or the configured
|
||||
// cookie lifetime old. Probably not the most
|
||||
// reliable place to put this check -- move to inc.Authentication.php?
|
||||
if($settings->_cookieLifetime)
|
||||
$lifetime = intval($settings->_cookieLifetime);
|
||||
else
|
||||
$lifetime = 7*86400;
|
||||
if(!$session->deleteByTime($lifetime)) {
|
||||
_printMessage(getMLText("login_error_title"), getMLText("error_occured").": ".$db->getErrorMsg());
|
||||
exit;
|
||||
}
|
||||
|
||||
if (isset($_COOKIE["mydms_session"])) {
|
||||
/* This part will never be reached unless the session cookie is kept,
|
||||
* but op.Logout.php deletes it. Keeping a session could be a good idea
|
||||
* for retaining the clipboard data, but the user id in the session should
|
||||
* be set to 0 which is not possible due to foreign key constraints.
|
||||
* So for now op.Logout.php will delete the cookie as always
|
||||
*/
|
||||
/* Load session */
|
||||
$dms_session = $_COOKIE["mydms_session"];
|
||||
if(!$resArr = $session->load($dms_session)) {
|
||||
/* Turn off http only cookies if jumploader is enabled */
|
||||
setcookie("mydms_session", $dms_session, time()-3600, $settings->_httpRoot, null, null, !$settings->_enableLargeFileUpload); //delete cookie
|
||||
header("Location: " . $settings->_httpRoot . "out/out.Login.php?referuri=".$refer);
|
||||
exit;
|
||||
} else {
|
||||
$session->updateAccess($dms_session);
|
||||
$session->setUser($userid);
|
||||
}
|
||||
} else {
|
||||
// Create new session in database
|
||||
if(!$id = $session->create(array('userid'=>$userid, 'theme'=>$sesstheme, 'lang'=>$lang))) {
|
||||
_printMessage(getMLText("login_error_title"), getMLText("error_occured").": ".$db->getErrorMsg());
|
||||
exit;
|
||||
}
|
||||
|
||||
// Set the session cookie.
|
||||
if($settings->_cookieLifetime)
|
||||
$lifetime = time() + intval($settings->_cookieLifetime);
|
||||
else
|
||||
$lifetime = 0;
|
||||
setcookie("mydms_session", $id, $lifetime, $settings->_httpRoot, null, null, !$settings->_enableLargeFileUpload);
|
||||
}
|
||||
|
||||
// TODO: by the PHP manual: The superglobals $_GET and $_REQUEST are already decoded.
|
||||
// Using urldecode() on an element in $_GET or $_REQUEST could have unexpected and dangerous results.
|
||||
|
||||
|
@ -230,9 +79,18 @@ else if (isset($_GET["referuri"]) && strlen($_GET["referuri"])>0) {
|
|||
|
||||
add_log_line();
|
||||
|
||||
$controller->setParam('user', $user);
|
||||
$controller->setParam('login', $login);
|
||||
$controller->setParam('pwd', $pwd);
|
||||
$controller->setParam('lang', $lang);
|
||||
$controller->setParam('sesstheme', $sesstheme);
|
||||
$controller->setParam('session', $session);
|
||||
$controller->run();
|
||||
if(!$controller->run()) {
|
||||
add_log_line("login failed", PEAR_LOG_ERR);
|
||||
_printMessage(getMLText($controller->getErrorMsg()), getMLText($controller->getErrorMsg())."\n");
|
||||
exit;
|
||||
}
|
||||
|
||||
$user = $controller->getUser();
|
||||
|
||||
if (isset($referuri) && strlen($referuri)>0) {
|
||||
// header("Location: http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'] . $referuri);
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,14 +17,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,16 +19,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,14 +17,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,16 +19,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
if (!isset($_GET["documentid"]) || !is_numeric($_GET["documentid"]) || intval($_GET["documentid"])<1) {
|
||||
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,15 +17,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,16 +17,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.ClassCalendar.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.ClassCalendar.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,14 +18,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$form = preg_replace('/[^A-Za-z0-9_]+/', '', $_GET["form"]);
|
||||
$selcats = preg_replace('/[^0-9,]+/', '', $_GET["cats"]);
|
||||
|
|
|
@ -18,10 +18,11 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
|
||||
include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc";
|
||||
|
||||
|
|
|
@ -17,15 +17,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,16 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
include("../inc/inc.Settings.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -20,15 +20,16 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
include("../inc/inc.Version.php");
|
||||
include("../inc/inc.Settings.php");
|
||||
include("../inc/inc.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Version.php");
|
||||
require_once("inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,16 +19,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$folderid = intval($_GET["folderid"]);
|
||||
$form = preg_replace('/[^A-Za-z0-9_]+/', '', $_GET["form"]);
|
||||
|
|
|
@ -19,16 +19,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,16 +19,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,14 +18,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
if(isset($_GET["form"]))
|
||||
$form = preg_replace('/[^A-Za-z0-9_]+/', '', $_GET["form"]);
|
||||
|
|
|
@ -19,16 +19,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,16 +19,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,16 +18,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,16 +17,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,15 +17,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Calendar.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Calendar.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,15 +18,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,15 +18,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -22,16 +22,17 @@
|
|||
// This file is needed because SeedDMS_View_Bootstrap::htmlEndPage() includes
|
||||
// a file out/out.ErrorDlg.php?action=webrootjs and out/out.ErrorDlg.php?action=footerjs
|
||||
|
||||
include("../inc/inc.Settings.php");
|
||||
include("../inc/inc.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -16,15 +16,16 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
include("../inc/inc.Version.php");
|
||||
include("../inc/inc.Settings.php");
|
||||
include("../inc/inc.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.Version.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,14 +18,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$form = preg_replace('/[^A-Za-z0-9_]+/', '', $_GET["form"]);
|
||||
$mode = intval($_GET["mode"]);
|
||||
|
|
|
@ -18,15 +18,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -30,14 +30,15 @@
|
|||
* @version Release: @package_version@
|
||||
*/
|
||||
|
||||
include("../inc/inc.Settings.php");
|
||||
include("../inc/inc.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$isajax = isset($_GET['action']) && ($_GET['action'] == 'info' || $_GET['action'] == 'form');
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
|
|
|
@ -17,14 +17,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,14 +17,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1]);
|
||||
|
|
|
@ -16,14 +16,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,16 +17,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
include("../inc/inc.Version.php");
|
||||
include("../inc/inc.Settings.php");
|
||||
include("../inc/inc.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Version.php");
|
||||
require_once("inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
include("../inc/inc.Version.php");
|
||||
include("../inc/inc.Settings.php");
|
||||
include("../inc/inc.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Version.php");
|
||||
require_once("inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
include("../inc/inc.Version.php");
|
||||
include("../inc/inc.Settings.php");
|
||||
include("../inc/inc.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.Version.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$allusers = $dms->getAllUsers();
|
||||
$userids = array($user->getID());
|
||||
|
|
|
@ -17,15 +17,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,13 +19,14 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
|
||||
include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc";
|
||||
|
||||
|
|
|
@ -17,14 +17,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,16 +18,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,15 +18,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,14 +19,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -19,15 +19,16 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
|
||||
include("../inc/inc.Version.php");
|
||||
include("../inc/inc.Settings.php");
|
||||
include("../inc/inc.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Version.php");
|
||||
require_once("inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,16 +18,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,16 +18,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,12 +18,13 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
|
||||
include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc";
|
||||
|
||||
|
|
|
@ -18,12 +18,13 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
|
||||
include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc";
|
||||
|
||||
|
|
|
@ -16,15 +16,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
/
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -18,16 +18,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,16 +17,17 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Utils.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.ClassAccessOperation.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Utils.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.ClassAccessOperation.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,14 +17,15 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
|
@ -17,15 +17,16 @@
|
|||
// 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.LogInit.php");
|
||||
include("../inc/inc.Language.php");
|
||||
include("../inc/inc.Init.php");
|
||||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassUI.php");
|
||||
include("../inc/inc.Calendar.php");
|
||||
include("../inc/inc.Authentication.php");
|
||||
if(!isset($settings))
|
||||
require_once("../inc/inc.Settings.php");
|
||||
require_once("inc/inc.LogInit.php");
|
||||
require_once("inc/inc.Language.php");
|
||||
require_once("inc/inc.Init.php");
|
||||
require_once("inc/inc.Extension.php");
|
||||
require_once("inc/inc.DBInit.php");
|
||||
require_once("inc/inc.ClassUI.php");
|
||||
require_once("inc/inc.Calendar.php");
|
||||
require_once("inc/inc.Authentication.php");
|
||||
|
||||
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user));
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user