diff --git a/inc/Crypt.class.php b/inc/Crypt.class.php index a97a397d..196c1968 100644 --- a/inc/Crypt.class.php +++ b/inc/Crypt.class.php @@ -38,15 +38,15 @@ class Crypt * Generar un hash de una clave utilizando un salt. * * @param string $pwd con la clave a 'hashear' - * @param bool $appendSalt Añidor el salt al hash + * @param bool $prefixSalt Añadir el salt al hash * @return string con el hash de la clave */ - public static function mkHashPassword($pwd, $appendSalt = true) + public static function mkHashPassword($pwd, $prefixSalt = true) { $salt = self::makeHashSalt(); $hash = crypt($pwd, $salt); - return ($appendSalt === true) ? $salt . $hash : $hash; + return ($prefixSalt === true) ? $salt . $hash : $hash; } /** @@ -100,25 +100,29 @@ class Crypt * Comprobar el hash de una clave. * * @param string $pwd con la clave a comprobar - * @param string $originalHash con el hash a comprobar + * @param string $checkedHash con el hash a comprobar * @param bool $isMPass si es la clave maestra * @return bool */ - public static function checkHashPass($pwd, $originalHash, $isMPass = false) + public static function checkHashPass($pwd, $checkedHash, $isMPass = false) { // Obtenemos el salt de la clave - $salt = substr($originalHash, 0, 72); + $salt = substr($checkedHash, 0, 72); // Obtenemos el hash SHA256 - $validHash = substr($originalHash, 72); + $validHash = substr($checkedHash, 72); // Re-hash de la clave a comprobar $testHash = crypt($pwd, $salt); // Comprobar si el hash está en formato anterior a 12002 - if ($isMPass && strlen($originalHash) === 128) { - ConfigDB::setValue('masterPwd', self::mkHashPassword($pwd)); - Log::writeNewLog(_('Aviso'), _('Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción.')); + if ($isMPass && strlen($checkedHash) === 128) { + $check = (hash("sha256", substr($checkedHash, 0, 64) . $pwd) == substr($checkedHash, 64, 64)); - return (hash("sha256", substr($originalHash, 0, 64) . $pwd) == substr($originalHash, 64, 64)); + if ($check) { + ConfigDB::setValue('masterPwd', self::mkHashPassword($pwd)); + Log::writeNewLog(_('Aviso'), _('Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción.')); + } + + return $check; } // Si los hashes son idénticos, la clave es válida diff --git a/inc/Request.class.php b/inc/Request.class.php index 3ebd1fe3..5a8c5b98 100644 --- a/inc/Request.class.php +++ b/inc/Request.class.php @@ -145,7 +145,7 @@ class Request */ public static function getRequestHeaders($header = '') { - if (!function_exists('apache_request_headers')) { + if (!function_exists('\apache_request_headers')) { function apache_request_headers() { foreach ($_SERVER as $key => $value) { diff --git a/inc/User.class.php b/inc/User.class.php index ade1190d..3bb1a3f3 100644 --- a/inc/User.class.php +++ b/inc/User.class.php @@ -42,16 +42,21 @@ class User extends UserBase */ public function updateUserMPass($masterPwd) { - $configMPass = ConfigDB::getValue('masterPwd'); + $configHashMPass = ConfigDB::getValue('masterPwd'); - if (!$configMPass) { + if ($configHashMPass === false) { return false; } - if (Crypt::checkHashPass($masterPwd, $configMPass, true)) { - $strUserMPwd = Crypt::mkCustomMPassEncrypt(self::getCypherPass(), $masterPwd); + if (is_null($configHashMPass)){ + $configHashMPass = Crypt::mkHashPassword($masterPwd); + ConfigDB::setValue('masterPwd', $configHashMPass); + } - if (!$strUserMPwd) { + if (Crypt::checkHashPass($masterPwd, $configHashMPass, true)) { + $cryptMPass = Crypt::mkCustomMPassEncrypt(self::getCypherPass(), $masterPwd); + + if (!$cryptMPass) { return false; } } else { @@ -64,8 +69,8 @@ class User extends UserBase . 'user_lastUpdateMPass = UNIX_TIMESTAMP() ' . 'WHERE user_id = :id LIMIT 1'; - $data['mPass'] = $strUserMPwd[0]; - $data['mIV'] = $strUserMPwd[1]; + $data['mPass'] = $cryptMPass[0]; + $data['mIV'] = $cryptMPass[1]; $data['id'] = $this->_userId; return DB::getQuery($query, __FUNCTION__, $data); @@ -106,7 +111,7 @@ class User extends UserBase return false; } - return ($showPass == true) ? $clearMasterPass : SessionUtil::saveSessionMPass($clearMasterPass); + return ($showPass === true) ? $clearMasterPass : SessionUtil::saveSessionMPass($clearMasterPass); } return false; diff --git a/inc/UserPass.class.php b/inc/UserPass.class.php index 03b18bb4..6876b39a 100644 --- a/inc/UserPass.class.php +++ b/inc/UserPass.class.php @@ -55,7 +55,7 @@ class UserPass $configHashMPass = ConfigDB::getValue('masterPwd'); - if ($configHashMPass === false) { + if ($configHashMPass === false || is_null($configHashMPass)) { return false; } diff --git a/inc/locales/de_DE/LC_MESSAGES/messages.mo b/inc/locales/de_DE/LC_MESSAGES/messages.mo index 73301741..3243ce87 100644 Binary files a/inc/locales/de_DE/LC_MESSAGES/messages.mo and b/inc/locales/de_DE/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/de_DE/LC_MESSAGES/messages.po b/inc/locales/de_DE/LC_MESSAGES/messages.po index 31928f5c..80eda354 100644 --- a/inc/locales/de_DE/LC_MESSAGES/messages.po +++ b/inc/locales/de_DE/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-05 02:33+0100\n" -"PO-Revision-Date: 2015-10-05 02:33+0100\n" +"POT-Creation-Date: 2015-10-09 00:50+0100\n" +"PO-Revision-Date: 2015-10-09 00:50+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: \n" "Language: de_DE\n" @@ -16,127 +16,127 @@ msgstr "" "X-Generator: Poedit 1.6.10\n" "X-Poedit-SearchPath-0: ../../../..\n" -#: ../../../../ajax/ajax_2fa.php:35 ../../../../ajax/ajax_accountSave.php:41 -#: ../../../../ajax/ajax_appMgmtSave.php:42 -#: ../../../../ajax/ajax_backup.php:39 ../../../../ajax/ajax_checkLdap.php:41 -#: ../../../../ajax/ajax_configSave.php:41 ../../../../ajax/ajax_files.php:41 -#: ../../../../ajax/ajax_getFiles.php:46 ../../../../ajax/ajax_import.php:49 -#: ../../../../ajax/ajax_migrate.php:45 ../../../../ajax/ajax_passReset.php:37 -#: ../../../../ajax/ajax_search.php:41 -#: ../../../../ajax/ajax_sendRequest.php:41 -#: ../../../../ajax/ajax_userPrefsSave.php:42 +#: ../../../../ajax/ajax_2fa.php:37 ../../../../ajax/ajax_accountSave.php:42 +#: ../../../../ajax/ajax_appMgmtSave.php:43 +#: ../../../../ajax/ajax_backup.php:41 ../../../../ajax/ajax_checkLdap.php:42 +#: ../../../../ajax/ajax_configSave.php:44 ../../../../ajax/ajax_files.php:42 +#: ../../../../ajax/ajax_getFiles.php:47 ../../../../ajax/ajax_import.php:50 +#: ../../../../ajax/ajax_migrate.php:46 ../../../../ajax/ajax_passReset.php:40 +#: ../../../../ajax/ajax_search.php:42 +#: ../../../../ajax/ajax_sendRequest.php:42 +#: ../../../../ajax/ajax_userPrefsSave.php:43 msgid "CONSULTA INVÁLIDA" msgstr "Ungültige Anfrage" -#: ../../../../ajax/ajax_2fa.php:55 +#: ../../../../ajax/ajax_2fa.php:57 msgid "Código correcto" msgstr "Verifizierte Code" -#: ../../../../ajax/ajax_2fa.php:58 ../../../../ajax/ajax_userPrefsSave.php:94 +#: ../../../../ajax/ajax_2fa.php:60 ../../../../ajax/ajax_userPrefsSave.php:97 msgid "Código incorrecto" msgstr "Falscher Code" -#: ../../../../ajax/ajax_accountSave.php:35 -#: ../../../../ajax/ajax_appMgmtSave.php:36 -#: ../../../../ajax/ajax_backup.php:33 ../../../../ajax/ajax_checkLdap.php:35 -#: ../../../../ajax/ajax_configSave.php:35 ../../../../ajax/ajax_import.php:35 -#: ../../../../ajax/ajax_migrate.php:35 -#: ../../../../ajax/ajax_sendRequest.php:35 -#: ../../../../ajax/ajax_userPrefsSave.php:36 -#: ../../../../ajax/ajax_viewpass.php:36 +#: ../../../../ajax/ajax_accountSave.php:36 +#: ../../../../ajax/ajax_appMgmtSave.php:37 +#: ../../../../ajax/ajax_backup.php:35 ../../../../ajax/ajax_checkLdap.php:36 +#: ../../../../ajax/ajax_configSave.php:38 ../../../../ajax/ajax_import.php:36 +#: ../../../../ajax/ajax_migrate.php:36 +#: ../../../../ajax/ajax_sendRequest.php:36 +#: ../../../../ajax/ajax_userPrefsSave.php:37 +#: ../../../../ajax/ajax_viewpass.php:37 msgid "La sesión no se ha iniciado o ha caducado" msgstr "Sitzung konnte nicht gestartet werden oder ist abgelaufen" -#: ../../../../ajax/ajax_accountSave.php:77 -#: ../../../../ajax/ajax_accountSave.php:92 +#: ../../../../ajax/ajax_accountSave.php:78 +#: ../../../../ajax/ajax_accountSave.php:93 msgid "Es necesario un nombre de cuenta" msgstr "Kontoname ist notwendig" -#: ../../../../ajax/ajax_accountSave.php:79 -#: ../../../../ajax/ajax_accountSave.php:90 -#: ../../../../ajax/ajax_appMgmtSave.php:328 +#: ../../../../ajax/ajax_accountSave.php:80 +#: ../../../../ajax/ajax_accountSave.php:91 +#: ../../../../ajax/ajax_appMgmtSave.php:329 msgid "Es necesario un nombre de cliente" msgstr "Kunde ist notwendig" -#: ../../../../ajax/ajax_accountSave.php:81 -#: ../../../../ajax/ajax_accountSave.php:94 +#: ../../../../ajax/ajax_accountSave.php:82 +#: ../../../../ajax/ajax_accountSave.php:95 msgid "Es necesario un usuario" msgstr "Benutzername ist notwendig" -#: ../../../../ajax/ajax_accountSave.php:83 -#: ../../../../ajax/ajax_accountSave.php:105 +#: ../../../../ajax/ajax_accountSave.php:84 +#: ../../../../ajax/ajax_accountSave.php:106 #, fuzzy msgid "Es necesaria una clave" msgstr "Passwort ist notwendig" -#: ../../../../ajax/ajax_accountSave.php:85 -#: ../../../../ajax/ajax_accountSave.php:96 +#: ../../../../ajax/ajax_accountSave.php:86 +#: ../../../../ajax/ajax_accountSave.php:97 msgid "Es necesario una categoría" msgstr "Eine Kategorie wird benötigt" -#: ../../../../ajax/ajax_accountSave.php:100 -#: ../../../../ajax/ajax_accountSave.php:109 +#: ../../../../ajax/ajax_accountSave.php:101 +#: ../../../../ajax/ajax_accountSave.php:110 msgid "Id inválido" msgstr "Ungültige ID" -#: ../../../../ajax/ajax_accountSave.php:112 -#: ../../../../ajax/ajax_accountSave.php:262 -#: ../../../../ajax/ajax_appMgmtSave.php:534 -#: ../../../../ajax/ajax_configSave.php:293 -#: ../../../../ajax/ajax_userPrefsSave.php:108 ../../../../api.php:53 +#: ../../../../ajax/ajax_accountSave.php:113 +#: ../../../../ajax/ajax_accountSave.php:263 +#: ../../../../ajax/ajax_appMgmtSave.php:535 +#: ../../../../ajax/ajax_configSave.php:324 +#: ../../../../ajax/ajax_userPrefsSave.php:111 ../../../../api.php:53 msgid "Acción Inválida" msgstr "Ungültige Aktion" -#: ../../../../ajax/ajax_accountSave.php:120 -#: ../../../../ajax/ajax_appMgmtSave.php:111 -#: ../../../../ajax/ajax_appMgmtSave.php:148 -#: ../../../../ajax/ajax_backup.php:62 +#: ../../../../ajax/ajax_accountSave.php:121 +#: ../../../../ajax/ajax_appMgmtSave.php:112 +#: ../../../../ajax/ajax_appMgmtSave.php:149 +#: ../../../../ajax/ajax_backup.php:68 msgid "Las claves no coinciden" msgstr "Passwörter stimmen nicht" -#: ../../../../ajax/ajax_accountSave.php:172 +#: ../../../../ajax/ajax_accountSave.php:173 msgid "Cuenta creada" msgstr "Konto hinzugefügt" -#: ../../../../ajax/ajax_accountSave.php:175 +#: ../../../../ajax/ajax_accountSave.php:176 msgid "Error al crear la cuenta" msgstr "Fehler beim Anlegen des Kontos" -#: ../../../../ajax/ajax_accountSave.php:210 +#: ../../../../ajax/ajax_accountSave.php:211 msgid "Sin cambios" msgstr "Keine Änderungen" -#: ../../../../ajax/ajax_accountSave.php:222 +#: ../../../../ajax/ajax_accountSave.php:223 msgid "Cuenta actualizada" msgstr "Konto aktualisiert" -#: ../../../../ajax/ajax_accountSave.php:225 +#: ../../../../ajax/ajax_accountSave.php:226 msgid "Error al modificar la cuenta" msgstr "Fehler beim Änderns des Kontos" -#: ../../../../ajax/ajax_accountSave.php:232 +#: ../../../../ajax/ajax_accountSave.php:233 msgid "Cuenta eliminada" msgstr "Konto gelöscht" -#: ../../../../ajax/ajax_accountSave.php:235 +#: ../../../../ajax/ajax_accountSave.php:236 msgid "Error al eliminar la cuenta" msgstr "Fehler beim Löschen eines Kontos" -#: ../../../../ajax/ajax_accountSave.php:245 -#: ../../../../ajax/ajax_appMgmtSave.php:152 -#: ../../../../ajax/ajax_passReset.php:74 +#: ../../../../ajax/ajax_accountSave.php:246 +#: ../../../../ajax/ajax_appMgmtSave.php:153 +#: ../../../../ajax/ajax_passReset.php:75 msgid "Clave actualizada" msgstr "Passwort aktualisiert" -#: ../../../../ajax/ajax_accountSave.php:248 +#: ../../../../ajax/ajax_accountSave.php:249 msgid "Error al actualizar la clave" msgstr "Fehler beim Ändern des Passworts" -#: ../../../../ajax/ajax_accountSave.php:255 +#: ../../../../ajax/ajax_accountSave.php:256 msgid "Cuenta restaurada" msgstr "Konto wiederhergestellt" -#: ../../../../ajax/ajax_accountSave.php:258 +#: ../../../../ajax/ajax_accountSave.php:259 msgid "Error al restaurar cuenta" msgstr "Fehler bei der Wiederherstellung der Rechnung" @@ -145,13 +145,13 @@ msgid "Ver Usuario" msgstr "Benutzer anzeigen" #: ../../../../ajax/ajax_appMgmtData.php:61 -#: ../../../../web/UsersMgmtC.class.php:136 +#: ../../../../web/UsersMgmtC.class.php:137 msgid "Editar Usuario" msgstr "Benutzer ändern" #: ../../../../ajax/ajax_appMgmtData.php:67 -#: ../../../../inc/UserBase.class.php:381 -#: ../../../../web/UsersMgmtC.class.php:121 +#: ../../../../inc/UserBase.class.php:383 +#: ../../../../web/UsersMgmtC.class.php:122 msgid "Nuevo Usuario" msgstr "Neuer Benutzer" @@ -160,13 +160,13 @@ msgid "Ver Grupo" msgstr "Gruppe anzeigen" #: ../../../../ajax/ajax_appMgmtData.php:80 -#: ../../../../web/UsersMgmtC.class.php:202 +#: ../../../../web/UsersMgmtC.class.php:203 msgid "Editar Grupo" msgstr "Gruppe ändern" #: ../../../../ajax/ajax_appMgmtData.php:86 #: ../../../../inc/Groups.class.php:152 ../../../../inc/Groups.class.php:253 -#: ../../../../web/UsersMgmtC.class.php:194 +#: ../../../../web/UsersMgmtC.class.php:195 msgid "Nuevo Grupo" msgstr "Neue Gruppe" @@ -175,13 +175,13 @@ msgid "Ver Perfil" msgstr "Profil anzeigen" #: ../../../../ajax/ajax_appMgmtData.php:99 -#: ../../../../web/UsersMgmtC.class.php:267 +#: ../../../../web/UsersMgmtC.class.php:268 msgid "Editar Perfil" msgstr "Profil ändern" #: ../../../../ajax/ajax_appMgmtData.php:105 #: ../../../../inc/ProfileBase.class.php:512 -#: ../../../../web/UsersMgmtC.class.php:252 +#: ../../../../web/UsersMgmtC.class.php:253 msgid "Nuevo Perfil" msgstr "Neues Profil" @@ -190,13 +190,13 @@ msgid "Ver Cliente" msgstr "Kunde anzeigen" #: ../../../../ajax/ajax_appMgmtData.php:118 -#: ../../../../web/AccountsMgmtC.class.php:152 +#: ../../../../web/AccountsMgmtC.class.php:153 msgid "Editar Cliente" msgstr "Kunde ändern" #: ../../../../ajax/ajax_appMgmtData.php:124 #: ../../../../inc/Customer.class.php:65 -#: ../../../../web/AccountsMgmtC.class.php:145 +#: ../../../../web/AccountsMgmtC.class.php:146 msgid "Nuevo Cliente" msgstr "Neuer Kunde" @@ -205,13 +205,13 @@ msgid "Ver Categoría" msgstr "Kategorie anzeigen" #: ../../../../ajax/ajax_appMgmtData.php:137 -#: ../../../../web/AccountsMgmtC.class.php:94 +#: ../../../../web/AccountsMgmtC.class.php:95 msgid "Editar Categoría" msgstr "Kategorie ändern" #: ../../../../ajax/ajax_appMgmtData.php:143 #: ../../../../inc/Category.class.php:83 -#: ../../../../web/AccountsMgmtC.class.php:86 +#: ../../../../web/AccountsMgmtC.class.php:87 #: ../../../../inc/themes/classic/account.inc:53 #: ../../../../inc/themes/material-blue/account.inc:61 msgid "Nueva Categoría" @@ -223,128 +223,129 @@ msgstr "Authentifizierung anzeigen" #: ../../../../ajax/ajax_appMgmtData.php:156 #: ../../../../inc/ApiTokens.class.php:189 -#: ../../../../web/UsersMgmtC.class.php:399 +#: ../../../../web/UsersMgmtC.class.php:400 msgid "Nueva Autorización" msgstr "Neue Authentifizierung" #: ../../../../ajax/ajax_appMgmtData.php:162 -#: ../../../../web/UsersMgmtC.class.php:414 +#: ../../../../web/UsersMgmtC.class.php:415 msgid "Editar Autorización" msgstr "Authentifizierung bearbeiten" #: ../../../../ajax/ajax_appMgmtData.php:168 -#: ../../../../web/AccountsMgmtC.class.php:273 +#: ../../../../web/AccountsMgmtC.class.php:274 msgid "Nuevo Campo" msgstr "Neues Feld" #: ../../../../ajax/ajax_appMgmtData.php:174 -#: ../../../../web/AccountsMgmtC.class.php:280 +#: ../../../../web/AccountsMgmtC.class.php:281 msgid "Editar Campo" msgstr "Feld bearbeiten" -#: ../../../../ajax/ajax_appMgmtSave.php:85 +#: ../../../../ajax/ajax_appMgmtSave.php:86 msgid "Es necesario un nombre de usuario" msgstr "Benutzername ist notwendig" -#: ../../../../ajax/ajax_appMgmtSave.php:87 +#: ../../../../ajax/ajax_appMgmtSave.php:88 msgid "Es necesario un login" msgstr "Login ist notwendig" -#: ../../../../ajax/ajax_appMgmtSave.php:89 +#: ../../../../ajax/ajax_appMgmtSave.php:90 msgid "Es necesario un perfil" msgstr "Profil ist notwendig" -#: ../../../../ajax/ajax_appMgmtSave.php:91 +#: ../../../../ajax/ajax_appMgmtSave.php:92 msgid "Es necesario un grupo" msgstr "Gruppe ist notwendig" -#: ../../../../ajax/ajax_appMgmtSave.php:93 +#: ../../../../ajax/ajax_appMgmtSave.php:94 msgid "Es necesario un email" msgstr "E-Mail ist notwendig" -#: ../../../../ajax/ajax_appMgmtSave.php:95 -#: ../../../../ajax/ajax_appMgmtSave.php:144 -#: ../../../../ajax/ajax_appMgmtSave.php:159 -#: ../../../../ajax/ajax_configSave.php:268 -#: ../../../../ajax/ajax_import.php:39 ../../../../ajax/ajax_migrate.php:39 -#: ../../../../ajax/ajax_userPrefsSave.php:83 +#: ../../../../ajax/ajax_appMgmtSave.php:96 +#: ../../../../ajax/ajax_appMgmtSave.php:145 +#: ../../../../ajax/ajax_appMgmtSave.php:160 +#: ../../../../ajax/ajax_backup.php:54 +#: ../../../../ajax/ajax_configSave.php:297 +#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40 +#: ../../../../ajax/ajax_userPrefsSave.php:86 msgid "Ey, esto es una DEMO!!" msgstr "Hey, dies ist eine DEMO!!" -#: ../../../../ajax/ajax_appMgmtSave.php:100 +#: ../../../../ajax/ajax_appMgmtSave.php:101 msgid "Login de usuario duplicado" msgstr "Dupbliziertes Benutzer-Anmeldung " -#: ../../../../ajax/ajax_appMgmtSave.php:103 +#: ../../../../ajax/ajax_appMgmtSave.php:104 msgid "Email de usuario duplicado" msgstr "Bereits verwendete Benutzer-E-Mail" -#: ../../../../ajax/ajax_appMgmtSave.php:109 -#: ../../../../ajax/ajax_appMgmtSave.php:146 +#: ../../../../ajax/ajax_appMgmtSave.php:110 +#: ../../../../ajax/ajax_appMgmtSave.php:147 msgid "La clave no puede estar en blanco" msgstr "Passwort darf nicht leer sein" -#: ../../../../ajax/ajax_appMgmtSave.php:122 +#: ../../../../ajax/ajax_appMgmtSave.php:123 msgid "Usuario creado" msgstr "Benutzer hinzugefügt" -#: ../../../../ajax/ajax_appMgmtSave.php:125 +#: ../../../../ajax/ajax_appMgmtSave.php:126 msgid "Error al crear el usuario" msgstr "Fehler beim Anlegen des Benutzers" -#: ../../../../ajax/ajax_appMgmtSave.php:135 -#: ../../../../inc/UserUtil.class.php:103 +#: ../../../../ajax/ajax_appMgmtSave.php:136 +#: ../../../../inc/UserMigrate.class.php:89 msgid "Usuario actualizado" msgstr "Benutzer aktualisiert" -#: ../../../../ajax/ajax_appMgmtSave.php:138 +#: ../../../../ajax/ajax_appMgmtSave.php:139 msgid "Error al actualizar el usuario" msgstr "Fehler beim Ändern des Benutzers" -#: ../../../../ajax/ajax_appMgmtSave.php:155 -#: ../../../../ajax/ajax_passReset.php:78 +#: ../../../../ajax/ajax_appMgmtSave.php:156 +#: ../../../../ajax/ajax_passReset.php:79 msgid "Error al modificar la clave" msgstr "Fehler beim Ändern des Passworts" -#: ../../../../ajax/ajax_appMgmtSave.php:161 +#: ../../../../ajax/ajax_appMgmtSave.php:162 msgid "No es posible eliminar, usuario en uso" msgstr "Benutzer kann nicht gelöscht werden, wird noch benutzt" -#: ../../../../ajax/ajax_appMgmtSave.php:165 +#: ../../../../ajax/ajax_appMgmtSave.php:166 msgid "Usuario eliminado" msgstr "Benutzer gelöscht" -#: ../../../../ajax/ajax_appMgmtSave.php:168 +#: ../../../../ajax/ajax_appMgmtSave.php:169 msgid "Error al eliminar el usuario" msgstr "Fehler beim Löschen eines Benutzers" -#: ../../../../ajax/ajax_appMgmtSave.php:183 +#: ../../../../ajax/ajax_appMgmtSave.php:184 msgid "Es necesario un nombre de grupo" msgstr "Gruppename ist notwendig" -#: ../../../../ajax/ajax_appMgmtSave.php:191 +#: ../../../../ajax/ajax_appMgmtSave.php:192 msgid "Nombre de grupo duplicado" msgstr "Duplizierter Gruppenname" -#: ../../../../ajax/ajax_appMgmtSave.php:203 +#: ../../../../ajax/ajax_appMgmtSave.php:204 msgid "Grupo creado" msgstr "Gruppe hinzugefügt" -#: ../../../../ajax/ajax_appMgmtSave.php:205 +#: ../../../../ajax/ajax_appMgmtSave.php:206 msgid "Error al crear el grupo" msgstr "Fehler beim Anlegen des Kunden" -#: ../../../../ajax/ajax_appMgmtSave.php:216 +#: ../../../../ajax/ajax_appMgmtSave.php:217 msgid "Grupo actualizado" msgstr "Gruppe aktualisiert" -#: ../../../../ajax/ajax_appMgmtSave.php:219 +#: ../../../../ajax/ajax_appMgmtSave.php:220 msgid "Error al actualizar el grupo" msgstr "Fehler beim Ändern der Gruppe" -#: ../../../../ajax/ajax_appMgmtSave.php:228 -#: ../../../../ajax/ajax_appMgmtSave.php:305 -#: ../../../../inc/CustomFieldsBase.class.php:83 +#: ../../../../ajax/ajax_appMgmtSave.php:229 +#: ../../../../ajax/ajax_appMgmtSave.php:306 +#: ../../../../inc/CustomFieldsBase.class.php:109 #: ../../../../inc/themes/classic/account.inc:112 #: ../../../../inc/themes/classic/groups.inc:24 #: ../../../../inc/themes/classic/profiles.inc:85 @@ -354,9 +355,9 @@ msgstr "Fehler beim Ändern der Gruppe" msgid "Usuarios" msgstr "Benutzer" -#: ../../../../ajax/ajax_appMgmtSave.php:232 +#: ../../../../ajax/ajax_appMgmtSave.php:233 #: ../../../../inc/Category.class.php:266 -#: ../../../../inc/CustomFieldsBase.class.php:80 +#: ../../../../inc/CustomFieldsBase.class.php:106 #: ../../../../inc/Customer.class.php:150 #: ../../../../inc/themes/classic/profiles.inc:15 #: ../../../../inc/themes/material-blue/config.inc:176 @@ -364,315 +365,356 @@ msgstr "Benutzer" msgid "Cuentas" msgstr "Konten" -#: ../../../../ajax/ajax_appMgmtSave.php:235 -#: ../../../../ajax/ajax_appMgmtSave.php:307 +#: ../../../../ajax/ajax_appMgmtSave.php:236 +#: ../../../../ajax/ajax_appMgmtSave.php:308 #: ../../../../inc/Category.class.php:119 #: ../../../../inc/Customer.class.php:150 msgid "No es posible eliminar" msgstr "Kann nicht gelöscht werden" -#: ../../../../ajax/ajax_appMgmtSave.php:235 +#: ../../../../ajax/ajax_appMgmtSave.php:236 msgid "Grupo en uso por:" msgstr "Gruppe in Benutzung durch:" -#: ../../../../ajax/ajax_appMgmtSave.php:240 +#: ../../../../ajax/ajax_appMgmtSave.php:241 msgid "Grupo eliminado" msgstr "Gruppe gelöscht" -#: ../../../../ajax/ajax_appMgmtSave.php:243 +#: ../../../../ajax/ajax_appMgmtSave.php:244 msgid "Error al eliminar el grupo" msgstr "Fehler beim Löschen einer Gruppe" -#: ../../../../ajax/ajax_appMgmtSave.php:282 +#: ../../../../ajax/ajax_appMgmtSave.php:283 msgid "Es necesario un nombre de perfil" msgstr "Profil ist notwendig" -#: ../../../../ajax/ajax_appMgmtSave.php:284 +#: ../../../../ajax/ajax_appMgmtSave.php:285 msgid "Nombre de perfil duplicado" msgstr "Duplizierter Profilname" -#: ../../../../ajax/ajax_appMgmtSave.php:289 +#: ../../../../ajax/ajax_appMgmtSave.php:290 msgid "Perfil creado" msgstr "Profil hinzugefügt" -#: ../../../../ajax/ajax_appMgmtSave.php:292 +#: ../../../../ajax/ajax_appMgmtSave.php:293 msgid "Error al crear el perfil" msgstr "Fehler beim Anlegen des Profils" -#: ../../../../ajax/ajax_appMgmtSave.php:295 +#: ../../../../ajax/ajax_appMgmtSave.php:296 msgid "Perfil actualizado" msgstr "Profil aktualisiert" -#: ../../../../ajax/ajax_appMgmtSave.php:298 +#: ../../../../ajax/ajax_appMgmtSave.php:299 msgid "Error al actualizar el perfil" msgstr "Fehler beim Ändern des Profils" -#: ../../../../ajax/ajax_appMgmtSave.php:307 +#: ../../../../ajax/ajax_appMgmtSave.php:308 msgid "Perfil en uso por:" msgstr "Profil wird benutzt durch: " -#: ../../../../ajax/ajax_appMgmtSave.php:310 +#: ../../../../ajax/ajax_appMgmtSave.php:311 msgid "Perfil eliminado" msgstr "Profil gelöscht" -#: ../../../../ajax/ajax_appMgmtSave.php:313 +#: ../../../../ajax/ajax_appMgmtSave.php:314 msgid "Error al eliminar el perfil" msgstr "Fehler beim Löschen eines Profils" -#: ../../../../ajax/ajax_appMgmtSave.php:348 +#: ../../../../ajax/ajax_appMgmtSave.php:349 msgid "Cliente creado" msgstr "Kunde hinzugefügt" -#: ../../../../ajax/ajax_appMgmtSave.php:363 +#: ../../../../ajax/ajax_appMgmtSave.php:364 msgid "Cliente actualizado" msgstr "Kunde aktualisiert" -#: ../../../../ajax/ajax_appMgmtSave.php:373 +#: ../../../../ajax/ajax_appMgmtSave.php:374 msgid "Cliente eliminado" msgstr "Kunde gelöscht" -#: ../../../../ajax/ajax_appMgmtSave.php:387 +#: ../../../../ajax/ajax_appMgmtSave.php:388 msgid "Es necesario un nombre de categoría" msgstr "Kategoriename ist notwendig" -#: ../../../../ajax/ajax_appMgmtSave.php:407 +#: ../../../../ajax/ajax_appMgmtSave.php:408 msgid "Categoría creada" msgstr "Kategorie hinzugefügt" -#: ../../../../ajax/ajax_appMgmtSave.php:422 +#: ../../../../ajax/ajax_appMgmtSave.php:423 msgid "Categoría actualizada" msgstr "Kategorie aktualisiert" -#: ../../../../ajax/ajax_appMgmtSave.php:433 +#: ../../../../ajax/ajax_appMgmtSave.php:434 msgid "Categoría eliminada" msgstr "Kategorie gelöscht" -#: ../../../../ajax/ajax_appMgmtSave.php:449 +#: ../../../../ajax/ajax_appMgmtSave.php:450 msgid "Usuario o acción no indicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:459 +#: ../../../../ajax/ajax_appMgmtSave.php:460 msgid "Autorización creada" msgstr "Authentifizierung hinzugefügt" -#: ../../../../ajax/ajax_appMgmtSave.php:467 +#: ../../../../ajax/ajax_appMgmtSave.php:468 msgid "Autorización actualizada" msgstr "Authentifizierung aktualisiert" -#: ../../../../ajax/ajax_appMgmtSave.php:477 +#: ../../../../ajax/ajax_appMgmtSave.php:478 msgid "Autorización eliminada" msgstr "Authentifizierung gelöscht" -#: ../../../../ajax/ajax_appMgmtSave.php:494 +#: ../../../../ajax/ajax_appMgmtSave.php:495 msgid "Nombre del campo no indicado" msgstr "Feldname nicht gesetzt" -#: ../../../../ajax/ajax_appMgmtSave.php:496 +#: ../../../../ajax/ajax_appMgmtSave.php:497 msgid "Tipo del campo no indicado" msgstr "Feldtyp nicht gesetzt" -#: ../../../../ajax/ajax_appMgmtSave.php:498 +#: ../../../../ajax/ajax_appMgmtSave.php:499 msgid "Módulo del campo no indicado" msgstr "Feldmodul nicht gesetzt" -#: ../../../../ajax/ajax_appMgmtSave.php:512 +#: ../../../../ajax/ajax_appMgmtSave.php:513 msgid "Campo creado" msgstr "Feld hinzugefügt" -#: ../../../../ajax/ajax_appMgmtSave.php:521 +#: ../../../../ajax/ajax_appMgmtSave.php:522 msgid "Campo actualizado" msgstr "Feld aktualisiert" -#: ../../../../ajax/ajax_appMgmtSave.php:531 +#: ../../../../ajax/ajax_appMgmtSave.php:532 msgid "Campo eliminado" msgstr "Feld gelöscht" -#: ../../../../ajax/ajax_backup.php:52 ../../../../ajax/ajax_backup.php:57 +#: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:63 #: ../../../../inc/themes/classic/backup.inc:54 msgid "Realizar Backup" msgstr "Backup erstellen" -#: ../../../../ajax/ajax_backup.php:52 ../../../../ajax/ajax_backup.php:54 +#: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:60 msgid "Error al realizar el backup" msgstr "Fehler beim Ausführen des Backups" -#: ../../../../ajax/ajax_backup.php:54 ../../../../ajax/ajax_backup.php:68 -#: ../../../../ajax/ajax_checkLdap.php:57 ../../../../inc/Import.class.php:128 -#: ../../../../inc/Migrate.class.php:93 +#: ../../../../ajax/ajax_backup.php:60 ../../../../ajax/ajax_backup.php:74 +#: ../../../../ajax/ajax_checkLdap.php:58 ../../../../inc/Import.class.php:128 +#: ../../../../inc/Migrate.class.php:92 msgid "Revise el registro de eventos para más detalles" msgstr "Bitte schauen Sie in das Protokol für weitere Details" -#: ../../../../ajax/ajax_backup.php:57 +#: ../../../../ajax/ajax_backup.php:63 msgid "Copia de la aplicación y base de datos realizada correctamente" msgstr "Sicherung der Applikation und der Datenbank erfolgreich durchgeführt" -#: ../../../../ajax/ajax_backup.php:59 +#: ../../../../ajax/ajax_backup.php:65 msgid "Proceso de backup finalizado" msgstr "Backup beendet" -#: ../../../../ajax/ajax_backup.php:66 ../../../../ajax/ajax_backup.php:71 +#: ../../../../ajax/ajax_backup.php:72 ../../../../ajax/ajax_backup.php:77 msgid "Realizar Exportación" msgstr "Export ausführen" -#: ../../../../ajax/ajax_backup.php:66 +#: ../../../../ajax/ajax_backup.php:72 msgid "Error al realizar la exportación de cuentas" msgstr "Fehler beim exportieren der Accounts" -#: ../../../../ajax/ajax_backup.php:68 +#: ../../../../ajax/ajax_backup.php:74 msgid "Error al realizar la exportación" msgstr "Fehler beim exportieren" -#: ../../../../ajax/ajax_backup.php:71 +#: ../../../../ajax/ajax_backup.php:77 msgid "Exportación de cuentas realizada correctamente" msgstr "Export erfolgreich abgeschlossen" -#: ../../../../ajax/ajax_backup.php:73 +#: ../../../../ajax/ajax_backup.php:79 msgid "Proceso de exportación finalizado" msgstr "Export fertig" -#: ../../../../ajax/ajax_checkLdap.php:51 ../../../../inc/Ldap.class.php:265 +#: ../../../../ajax/ajax_checkLdap.php:52 ../../../../inc/Ldap.class.php:259 msgid "Los parámetros de LDAP no están configurados" msgstr "LDAP-Parameter sind nicht gesetzt" -#: ../../../../ajax/ajax_checkLdap.php:57 +#: ../../../../ajax/ajax_checkLdap.php:58 msgid "Error de conexión a LDAP" msgstr "LDAP Verbindungsfehler" -#: ../../../../ajax/ajax_checkLdap.php:59 +#: ../../../../ajax/ajax_checkLdap.php:60 msgid "Conexión a LDAP correcta" msgstr "LDAP-Verbindung ist OK" -#: ../../../../ajax/ajax_checkLdap.php:59 +#: ../../../../ajax/ajax_checkLdap.php:60 msgid "Objetos encontrados" msgstr "Objekte gefunden" -#: ../../../../ajax/ajax_configSave.php:55 +#: ../../../../ajax/ajax_configSave.php:58 msgid "Modificar Configuración" msgstr "Konfiguration ändern" -#: ../../../../ajax/ajax_configSave.php:102 +#: ../../../../ajax/ajax_configSave.php:105 msgid "El tamaño máximo por archivo es de 16MB" msgstr "" -#: ../../../../ajax/ajax_configSave.php:115 +#: ../../../../ajax/ajax_configSave.php:118 msgid "Faltan parámetros de Proxy" msgstr "" #: ../../../../ajax/ajax_configSave.php:126 -#: ../../../../ajax/ajax_configSave.php:146 -#: ../../../../ajax/ajax_configSave.php:176 -#: ../../../../ajax/ajax_configSave.php:211 +#, fuzzy +msgid "Proxy habiltado" +msgstr "Benutzer gespert" + +#: ../../../../ajax/ajax_configSave.php:130 +#, fuzzy +msgid "Proxy deshabilitado" +msgstr "Benutzer gespert" + +#: ../../../../ajax/ajax_configSave.php:133 +#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../ajax/ajax_configSave.php:230 #, fuzzy msgid "Sección" msgstr "Aktion" -#: ../../../../ajax/ajax_configSave.php:126 -#: ../../../../web/ConfigC.class.php:106 +#: ../../../../ajax/ajax_configSave.php:133 +#: ../../../../web/ConfigC.class.php:108 #: ../../../../inc/themes/classic/profiles.inc:61 #: ../../../../inc/themes/material-blue/profiles.inc:72 msgid "General" msgstr "Allgemein" -#: ../../../../ajax/ajax_configSave.php:136 +#: ../../../../ajax/ajax_configSave.php:143 msgid "Faltan parámetros de Wiki" msgstr "Fehlender Wiki-Parameter" -#: ../../../../ajax/ajax_configSave.php:146 -#: ../../../../web/ConfigC.class.php:242 +#: ../../../../ajax/ajax_configSave.php:150 +#, fuzzy +msgid "Wiki habiltada" +msgstr "Inaktiv" + +#: ../../../../ajax/ajax_configSave.php:154 +#, fuzzy +msgid "Wiki deshabilitada" +msgstr "Inaktiv" + +#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../web/ConfigC.class.php:244 #: ../../../../inc/themes/classic/wiki.inc:4 #: ../../../../inc/themes/material-blue/wiki.inc:4 msgid "Wiki" msgstr "Wiki" -#: ../../../../ajax/ajax_configSave.php:161 +#: ../../../../ajax/ajax_configSave.php:172 msgid "Faltan parámetros de LDAP" msgstr "Fehlender LDAP-Parameter" -#: ../../../../ajax/ajax_configSave.php:176 -#: ../../../../web/ConfigC.class.php:274 +#: ../../../../ajax/ajax_configSave.php:184 +#, fuzzy +msgid "LDAP habiltado" +msgstr "inaktiv" + +#: ../../../../ajax/ajax_configSave.php:188 +#, fuzzy +msgid "LDAP deshabilitado" +msgstr "inaktiv" + +#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../web/ConfigC.class.php:276 #: ../../../../inc/themes/classic/ldap.inc:4 #: ../../../../inc/themes/material-blue/ldap.inc:4 msgid "LDAP" msgstr "LDAP" -#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../ajax/ajax_configSave.php:206 msgid "Faltan parámetros de Correo" msgstr "Fehlender Mail-Parameter" -#: ../../../../ajax/ajax_configSave.php:211 -#: ../../../../web/ConfigC.class.php:304 +#: ../../../../ajax/ajax_configSave.php:221 +#, fuzzy +msgid "Correo habiltado" +msgstr "E-Mail gesendet" + +#: ../../../../ajax/ajax_configSave.php:227 +#, fuzzy +msgid "Correo deshabilitado" +msgstr "Benutzer gespert" + +#: ../../../../ajax/ajax_configSave.php:230 +#: ../../../../web/ConfigC.class.php:306 #: ../../../../inc/themes/classic/mail.inc:4 #: ../../../../inc/themes/material-blue/mail.inc:4 msgid "Correo" msgstr "E-Mail" -#: ../../../../ajax/ajax_configSave.php:223 +#: ../../../../ajax/ajax_configSave.php:252 msgid "Configuración actualizada" msgstr "Konfiguration aktualisiert" -#: ../../../../ajax/ajax_configSave.php:232 -#: ../../../../ajax/ajax_configSave.php:278 -#: ../../../../ajax/ajax_viewpass.php:60 +#: ../../../../ajax/ajax_configSave.php:261 +#: ../../../../ajax/ajax_configSave.php:307 +#: ../../../../ajax/ajax_viewpass.php:61 #: ../../../../inc/Controller.class.php:169 msgid "Clave maestra actualizada" msgstr "Master-Passwort aktualisiert" -#: ../../../../ajax/ajax_configSave.php:232 -#: ../../../../ajax/ajax_viewpass.php:60 +#: ../../../../ajax/ajax_configSave.php:261 +#: ../../../../ajax/ajax_viewpass.php:61 #: ../../../../inc/Controller.class.php:169 msgid "Reinicie la sesión para cambiarla" msgstr "Neue Sitzung beginnen" -#: ../../../../ajax/ajax_configSave.php:234 +#: ../../../../ajax/ajax_configSave.php:263 msgid "Clave maestra no indicada" msgstr "Master-Passwort notwendig" -#: ../../../../ajax/ajax_configSave.php:236 +#: ../../../../ajax/ajax_configSave.php:265 msgid "Se ha de confirmar el cambio de clave" msgstr "Passwort muss bestätigt werden" -#: ../../../../ajax/ajax_configSave.php:240 +#: ../../../../ajax/ajax_configSave.php:269 msgid "Las claves son idénticas" msgstr "Passwörter sind identisch" -#: ../../../../ajax/ajax_configSave.php:242 +#: ../../../../ajax/ajax_configSave.php:271 msgid "Las claves maestras no coinciden" msgstr "Master-Passwort stimmt nicht" -#: ../../../../ajax/ajax_configSave.php:244 +#: ../../../../ajax/ajax_configSave.php:273 msgid "La clave maestra actual no coincide" msgstr "Aktuelles Master-Passwort stimmt nicht" -#: ../../../../ajax/ajax_configSave.php:253 +#: ../../../../ajax/ajax_configSave.php:282 msgid "Errores al actualizar las claves de las cuentas" msgstr "Fehler beim Ändern der Passwörter eines Kontos" -#: ../../../../ajax/ajax_configSave.php:259 +#: ../../../../ajax/ajax_configSave.php:288 msgid "Errores al actualizar las claves de las cuentas del histórico" msgstr "" -#: ../../../../ajax/ajax_configSave.php:263 +#: ../../../../ajax/ajax_configSave.php:292 #, fuzzy msgid "Errores al actualizar datos de campos personalizados" msgstr "Fehler beim Ändern der Passwörter eines Kontos" -#: ../../../../ajax/ajax_configSave.php:276 -#: ../../../../inc/Account.class.php:495 +#: ../../../../ajax/ajax_configSave.php:305 +#: ../../../../inc/Account.class.php:512 msgid "Actualizar Clave Maestra" msgstr "Master-Passwort ändern" -#: ../../../../ajax/ajax_configSave.php:280 +#: ../../../../ajax/ajax_configSave.php:309 msgid "Error al guardar el hash de la clave maestra" msgstr "Fehler beim Speichern des Hash für das Master-Passwort" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:317 msgid "Generar Clave Temporal" msgstr "temporäres Passwort erstellen" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:317 +#: ../../../../inc/CustomFieldsBase.class.php:87 #: ../../../../inc/themes/classic/account.inc:86 #: ../../../../inc/themes/classic/editpass.inc:25 -#: ../../../../inc/themes/classic/encryption.inc:146 +#: ../../../../inc/themes/classic/encryption.inc:143 #: ../../../../inc/themes/classic/install.inc:38 #: ../../../../inc/themes/classic/install.inc:39 #: ../../../../inc/themes/classic/login.inc:10 @@ -689,7 +731,7 @@ msgstr "temporäres Passwort erstellen" #: ../../../../inc/themes/material-blue/editpass.inc:26 #: ../../../../inc/themes/material-blue/editpass.inc:31 #: ../../../../inc/themes/material-blue/editpass.inc:41 -#: ../../../../inc/themes/material-blue/encryption.inc:164 +#: ../../../../inc/themes/material-blue/encryption.inc:161 #: ../../../../inc/themes/material-blue/install.inc:46 #: ../../../../inc/themes/material-blue/ldap.inc:105 #: ../../../../inc/themes/material-blue/login.inc:18 @@ -704,28 +746,33 @@ msgstr "temporäres Passwort erstellen" msgid "Clave" msgstr "Passwort" -#: ../../../../ajax/ajax_configSave.php:290 +#: ../../../../ajax/ajax_configSave.php:319 msgid "Clave Temporal Generada" msgstr "temporäres Passwort erstellt" -#: ../../../../ajax/ajax_doLogin.php:46 +#: ../../../../ajax/ajax_configSave.php:321 +#, fuzzy +msgid "Error al generar clave temporal" +msgstr "temporäres Passwort erstellen" + +#: ../../../../ajax/ajax_doLogin.php:49 msgid "Usuario/Clave no introducidos" msgstr "Keine Benutzername/Passwort eingegeben" -#: ../../../../ajax/ajax_doLogin.php:58 +#: ../../../../ajax/ajax_doLogin.php:61 msgid "Inicio sesión" msgstr "Anmelden" -#: ../../../../ajax/ajax_doLogin.php:63 +#: ../../../../ajax/ajax_doLogin.php:66 msgid "Servidor Login" msgstr "Anmeldeserver" -#: ../../../../ajax/ajax_doLogin.php:69 +#: ../../../../ajax/ajax_doLogin.php:72 msgid "Error al guardar los datos de LDAP" msgstr "Fehler beim Speichern der LDAP-Benutzerdaten" -#: ../../../../ajax/ajax_doLogin.php:72 ../../../../ajax/ajax_doLogin.php:80 -#: ../../../../ajax/ajax_doLogin.php:132 ../../../../ajax/ajax_doLogin.php:176 +#: ../../../../ajax/ajax_doLogin.php:75 ../../../../ajax/ajax_doLogin.php:83 +#: ../../../../ajax/ajax_doLogin.php:135 ../../../../ajax/ajax_doLogin.php:179 #: ../../../../inc/ApiTokens.class.php:140 #: ../../../../inc/ApiTokens.class.php:186 #: ../../../../inc/ApiTokens.class.php:217 @@ -734,30 +781,32 @@ msgstr "Fehler beim Speichern der LDAP-Benutzerdaten" #: ../../../../inc/ApiTokens.class.php:304 #: ../../../../inc/ApiTokens.class.php:328 ../../../../inc/Crypt.class.php:181 #: ../../../../inc/Crypt.class.php:192 -#: ../../../../inc/XmlImportBase.class.php:74 +#: ../../../../inc/XmlImportBase.class.php:79 msgid "Error interno" msgstr "Interner Fehler" -#: ../../../../ajax/ajax_doLogin.php:77 +#: ../../../../ajax/ajax_doLogin.php:80 msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Fehler beim Ändern des Benutzer-Passworts in der BD" -#: ../../../../ajax/ajax_doLogin.php:85 ../../../../ajax/ajax_doLogin.php:110 +#: ../../../../ajax/ajax_doLogin.php:88 ../../../../ajax/ajax_doLogin.php:113 msgid "Login incorrecto" msgstr "Fehlerhafte Anmeldung" -#: ../../../../ajax/ajax_doLogin.php:86 ../../../../ajax/ajax_doLogin.php:93 -#: ../../../../ajax/ajax_doLogin.php:100 ../../../../ajax/ajax_doLogin.php:111 -#: ../../../../ajax/ajax_doLogin.php:121 ../../../../ajax/ajax_doLogin.php:171 +#: ../../../../ajax/ajax_doLogin.php:89 ../../../../ajax/ajax_doLogin.php:96 +#: ../../../../ajax/ajax_doLogin.php:103 ../../../../ajax/ajax_doLogin.php:114 +#: ../../../../ajax/ajax_doLogin.php:124 ../../../../ajax/ajax_doLogin.php:174 #: ../../../../inc/ApiTokens.class.php:190 #: ../../../../inc/ApiTokens.class.php:308 ../../../../inc/Auth.class.php:108 -#: ../../../../inc/Init.class.php:457 ../../../../inc/UserBase.class.php:382 -#: ../../../../inc/UserBase.class.php:526 ../../../../res/test.php:64 -#: ../../../../web/SearchC.class.php:304 -#: ../../../../web/UsersMgmtC.class.php:392 +#: ../../../../inc/Init.class.php:457 ../../../../inc/Ldap.class.php:290 +#: ../../../../inc/Ldap.class.php:303 ../../../../inc/Ldap.class.php:311 +#: ../../../../inc/UserBase.class.php:384 +#: ../../../../inc/UserBase.class.php:528 ../../../../res/test.php:64 +#: ../../../../web/SearchC.class.php:303 +#: ../../../../web/UsersMgmtC.class.php:393 #: ../../../../inc/themes/classic/account.inc:73 #: ../../../../inc/themes/classic/editpass.inc:21 -#: ../../../../inc/themes/classic/eventlog.inc:25 +#: ../../../../inc/themes/classic/eventlog.inc:23 #: ../../../../inc/themes/classic/info.inc:39 #: ../../../../inc/themes/classic/install.inc:27 #: ../../../../inc/themes/classic/install.inc:28 @@ -771,7 +820,7 @@ msgstr "Fehlerhafte Anmeldung" #: ../../../../inc/themes/material-blue/account.inc:83 #: ../../../../inc/themes/material-blue/config.inc:381 #: ../../../../inc/themes/material-blue/editpass.inc:22 -#: ../../../../inc/themes/material-blue/eventlog.inc:24 +#: ../../../../inc/themes/material-blue/eventlog.inc:23 #: ../../../../inc/themes/material-blue/info.inc:39 #: ../../../../inc/themes/material-blue/login.inc:11 #: ../../../../inc/themes/material-blue/login.inc:34 @@ -779,53 +828,55 @@ msgstr "Fehlerhafte Anmeldung" #: ../../../../inc/themes/material-blue/mail.inc:67 #: ../../../../inc/themes/material-blue/passreset.inc:16 #: ../../../../inc/themes/material-blue/request.inc:20 -#: ../../../../inc/themes/material-blue/search.inc:55 +#: ../../../../inc/themes/material-blue/search.inc:91 #: ../../../../inc/themes/material-blue/tokens.inc:8 msgid "Usuario" msgstr "Benutzer" -#: ../../../../ajax/ajax_doLogin.php:89 ../../../../ajax/ajax_doLogin.php:103 -#: ../../../../ajax/ajax_doLogin.php:114 +#: ../../../../ajax/ajax_doLogin.php:92 ../../../../ajax/ajax_doLogin.php:106 +#: ../../../../ajax/ajax_doLogin.php:117 msgid "Usuario/Clave incorrectos" msgstr "Falscher/s Benutzername/Passwort" -#: ../../../../ajax/ajax_doLogin.php:92 ../../../../ajax/ajax_doLogin.php:96 +#: ../../../../ajax/ajax_doLogin.php:95 ../../../../ajax/ajax_doLogin.php:99 msgid "Cuenta expirada" msgstr "Konto abgelaufen" -#: ../../../../ajax/ajax_doLogin.php:99 +#: ../../../../ajax/ajax_doLogin.php:102 msgid "El usuario no tiene grupos asociados" msgstr "Der Benutzer hat keine zugewiesene Gruppe" -#: ../../../../ajax/ajax_doLogin.php:120 ../../../../ajax/ajax_doLogin.php:124 +#: ../../../../ajax/ajax_doLogin.php:123 ../../../../ajax/ajax_doLogin.php:127 msgid "Usuario deshabilitado" msgstr "Benutzer gespert" -#: ../../../../ajax/ajax_doLogin.php:129 +#: ../../../../ajax/ajax_doLogin.php:132 msgid "Error al obtener los datos del usuario de la BBDD" msgstr "Fehler beim Laden der Benutzerdaten aus der Datenbank" -#: ../../../../ajax/ajax_doLogin.php:139 +#: ../../../../ajax/ajax_doLogin.php:142 msgid "La clave maestra no ha sido guardada o es incorrecta" msgstr "Master-Passwort ist nicht sicher oder stimmt nicht" -#: ../../../../ajax/ajax_doLogin.php:146 ../../../../ajax/ajax_doLogin.php:149 +#: ../../../../ajax/ajax_doLogin.php:149 ../../../../ajax/ajax_doLogin.php:152 msgid "Clave maestra incorrecta" msgstr "Ungültiges Master-Passwort" -#: ../../../../ajax/ajax_doLogin.php:172 +#: ../../../../ajax/ajax_doLogin.php:175 #: ../../../../inc/ProfileBase.class.php:512 #: ../../../../inc/ProfileBase.class.php:550 #: ../../../../inc/ProfileBase.class.php:593 -#: ../../../../web/UsersMgmtC.class.php:89 +#: ../../../../web/UsersMgmtC.class.php:90 #: ../../../../inc/themes/classic/users.inc:37 #: ../../../../inc/themes/material-blue/users.inc:43 msgid "Perfil" msgstr "Profil" -#: ../../../../ajax/ajax_doLogin.php:173 ../../../../inc/Groups.class.php:158 +#: ../../../../ajax/ajax_doLogin.php:176 ../../../../inc/Groups.class.php:158 #: ../../../../inc/Groups.class.php:259 ../../../../inc/Groups.class.php:375 -#: ../../../../web/UsersMgmtC.class.php:90 +#: ../../../../inc/Ldap.class.php:213 ../../../../inc/Ldap.class.php:226 +#: ../../../../inc/Ldap.class.php:236 ../../../../inc/Ldap.class.php:385 +#: ../../../../web/UsersMgmtC.class.php:91 #: ../../../../inc/themes/classic/ldap.inc:116 #: ../../../../inc/themes/classic/users.inc:49 #: ../../../../inc/themes/material-blue/ldap.inc:139 @@ -834,192 +885,192 @@ msgstr "Profil" msgid "Grupo" msgstr "Gruppe" -#: ../../../../ajax/ajax_files.php:45 ../../../../ajax/ajax_getFiles.php:39 +#: ../../../../ajax/ajax_files.php:46 ../../../../ajax/ajax_getFiles.php:40 msgid "Gestión de archivos deshabilitada" msgstr "Dateiverwaltung gesperrt" -#: ../../../../ajax/ajax_files.php:59 ../../../../inc/Files.class.php:63 +#: ../../../../ajax/ajax_files.php:60 ../../../../inc/Files.class.php:63 msgid "Subir Archivo" msgstr "Datei hochladen" -#: ../../../../ajax/ajax_files.php:68 +#: ../../../../ajax/ajax_files.php:69 msgid "No hay extensiones permitidas" msgstr "Es gibt keine erlaubten Dateiendungen" -#: ../../../../ajax/ajax_files.php:79 ../../../../inc/FileImport.class.php:115 +#: ../../../../ajax/ajax_files.php:80 ../../../../inc/FileImport.class.php:115 msgid "Tipo de archivo no soportado" msgstr "Dateityp nicht erlaubt" -#: ../../../../ajax/ajax_files.php:85 +#: ../../../../ajax/ajax_files.php:86 msgid "Archivo inválido" msgstr "Ungültige Datei" -#: ../../../../ajax/ajax_files.php:101 ../../../../ajax/ajax_files.php:118 +#: ../../../../ajax/ajax_files.php:102 ../../../../ajax/ajax_files.php:119 #: ../../../../inc/FileImport.class.php:131 #: ../../../../inc/FileImport.class.php:149 #: ../../../../inc/FileImport.class.php:167 msgid "Error interno al leer el archivo" msgstr "Interner Fehler beim Lesen der Datei" -#: ../../../../ajax/ajax_files.php:108 +#: ../../../../ajax/ajax_files.php:109 msgid "El archivo es mayor de " msgstr "Datei ist größer als" -#: ../../../../ajax/ajax_files.php:125 +#: ../../../../ajax/ajax_files.php:126 msgid "Archivo guardado" msgstr "Datei gespeichert" -#: ../../../../ajax/ajax_files.php:130 +#: ../../../../ajax/ajax_files.php:131 msgid "No se pudo guardar el archivo" msgstr "Fehler beim Speichern der Datei" -#: ../../../../ajax/ajax_files.php:140 ../../../../ajax/ajax_files.php:199 +#: ../../../../ajax/ajax_files.php:141 ../../../../ajax/ajax_files.php:200 msgid "No es un ID de archivo válido" msgstr "Ungültige Datei-ID" -#: ../../../../ajax/ajax_files.php:148 +#: ../../../../ajax/ajax_files.php:149 msgid "El archivo no existe" msgstr "Datei existiert nicht" -#: ../../../../ajax/ajax_files.php:157 +#: ../../../../ajax/ajax_files.php:158 #: ../../../../inc/themes/classic/files.inc:19 #: ../../../../inc/themes/material-blue/files.inc:19 msgid "Descargar Archivo" msgstr "Datei herunterladen" -#: ../../../../ajax/ajax_files.php:158 ../../../../ajax/ajax_viewpass.php:69 +#: ../../../../ajax/ajax_files.php:159 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/Files.class.php:112 -#: ../../../../inc/themes/classic/eventlog.inc:16 -#: ../../../../inc/themes/material-blue/eventlog.inc:15 +#: ../../../../inc/themes/classic/eventlog.inc:14 +#: ../../../../inc/themes/material-blue/eventlog.inc:14 msgid "ID" msgstr "ID" -#: ../../../../ajax/ajax_files.php:159 ../../../../inc/Files.class.php:65 +#: ../../../../ajax/ajax_files.php:160 ../../../../inc/Files.class.php:65 #: ../../../../inc/Files.class.php:113 -#: ../../../../inc/themes/classic/import.inc:155 -#: ../../../../inc/themes/material-blue/import.inc:83 +#: ../../../../inc/themes/classic/import.inc:152 +#: ../../../../inc/themes/material-blue/import.inc:80 msgid "Archivo" msgstr "Datei" -#: ../../../../ajax/ajax_files.php:160 ../../../../inc/Files.class.php:66 +#: ../../../../ajax/ajax_files.php:161 ../../../../inc/Files.class.php:66 #: ../../../../inc/Files.class.php:114 -#: ../../../../web/AccountsMgmtC.class.php:266 +#: ../../../../web/AccountsMgmtC.class.php:267 #: ../../../../inc/themes/classic/customfields.inc:16 #: ../../../../inc/themes/material-blue/customfields.inc:19 msgid "Tipo" msgstr "Typ" -#: ../../../../ajax/ajax_files.php:161 ../../../../inc/Files.class.php:67 +#: ../../../../ajax/ajax_files.php:162 ../../../../inc/Files.class.php:67 #: ../../../../inc/Files.class.php:115 msgid "Tamaño" msgstr "Größe" -#: ../../../../ajax/ajax_files.php:203 +#: ../../../../ajax/ajax_files.php:204 msgid "Archivo eliminado" msgstr "Datei gelöscht" -#: ../../../../ajax/ajax_files.php:208 +#: ../../../../ajax/ajax_files.php:209 msgid "Error al eliminar el archivo" msgstr "Fehler beim Löschen einer Datei" #: ../../../../ajax/ajax_getContent.php:42 #: ../../../../inc/ApiRequest.class.php:55 -#: ../../../../inc/CustomFieldDef.class.php:38 -#: ../../../../inc/CustomFields.class.php:48 +#: ../../../../inc/CustomFieldDef.class.php:45 +#: ../../../../inc/CustomFields.class.php:54 msgid "Parámetros incorrectos" msgstr "Fehlerhafter Parameter" -#: ../../../../ajax/ajax_migrate.php:55 +#: ../../../../ajax/ajax_migrate.php:56 msgid "Confirmar la importación de cuentas" msgstr "Import der Konten bestätigen" -#: ../../../../ajax/ajax_migrate.php:57 +#: ../../../../ajax/ajax_migrate.php:58 msgid "Es necesario un usuario de conexión" msgstr "Benutzername der Verbindung ist notwendig" -#: ../../../../ajax/ajax_migrate.php:59 +#: ../../../../ajax/ajax_migrate.php:60 msgid "Es necesaria una clave de conexión" msgstr "Verbindungs-Passwort wird benötigt" -#: ../../../../ajax/ajax_migrate.php:61 +#: ../../../../ajax/ajax_migrate.php:62 msgid "Es necesario el nombre de la BBDD" msgstr "Datenbank ist notwendig" -#: ../../../../ajax/ajax_migrate.php:63 +#: ../../../../ajax/ajax_migrate.php:64 msgid "Es necesario un nombre de host" msgstr "Hostname ist notwendig" -#: ../../../../ajax/ajax_passReset.php:47 #: ../../../../ajax/ajax_passReset.php:50 +#: ../../../../ajax/ajax_passReset.php:53 msgid "Recuperación de Clave" msgstr "Wiederherstellung des Passworts" -#: ../../../../ajax/ajax_passReset.php:53 -#: ../../../../ajax/ajax_passReset.php:58 +#: ../../../../ajax/ajax_passReset.php:56 +#: ../../../../ajax/ajax_passReset.php:61 msgid "Solicitado para" msgstr "Anfrage für" -#: ../../../../ajax/ajax_passReset.php:55 -#: ../../../../ajax/ajax_sendRequest.php:75 +#: ../../../../ajax/ajax_passReset.php:58 +#: ../../../../ajax/ajax_sendRequest.php:76 msgid "Solicitud enviada" msgstr "Anfrage verschickt." -#: ../../../../ajax/ajax_passReset.php:55 +#: ../../../../ajax/ajax_passReset.php:58 msgid "En breve recibirá un correo para completar la solicitud." msgstr "Sie bekommen in Kürze eine E-Mail, um die Anfrage zu beenden" -#: ../../../../ajax/ajax_passReset.php:60 +#: ../../../../ajax/ajax_passReset.php:63 msgid "No se ha podido realizar la solicitud. Consulte con el administrador." msgstr "" "Anfrage konnte nicht ausgeführt werden. Bitte Administrator benachrichtigen." -#: ../../../../ajax/ajax_passReset.php:72 -#: ../../../../inc/UserBase.class.php:568 -#: ../../../../inc/UserUtil.class.php:662 +#: ../../../../ajax/ajax_passReset.php:73 +#: ../../../../inc/UserBase.class.php:570 +#: ../../../../inc/UserPass.class.php:127 msgid "Modificar Clave Usuario" msgstr "Benutzer-Passwort ändern" -#: ../../../../ajax/ajax_passReset.php:72 -#: ../../../../inc/UserBase.class.php:568 -#: ../../../../inc/UserBase.class.php:592 -#: ../../../../inc/UserUtil.class.php:662 -#: ../../../../web/UsersMgmtC.class.php:88 +#: ../../../../ajax/ajax_passReset.php:73 +#: ../../../../inc/UserBase.class.php:570 +#: ../../../../inc/UserBase.class.php:594 +#: ../../../../inc/UserPass.class.php:127 +#: ../../../../web/UsersMgmtC.class.php:89 #: ../../../../inc/themes/classic/users.inc:21 #: ../../../../inc/themes/material-blue/users.inc:24 msgid "Login" msgstr "Anmeldung" -#: ../../../../ajax/ajax_passReset.php:80 +#: ../../../../ajax/ajax_passReset.php:81 msgid "La clave es incorrecta o no coincide" msgstr "Das Passwort is falsch oder nicht gleich" -#: ../../../../ajax/ajax_sendRequest.php:48 +#: ../../../../ajax/ajax_sendRequest.php:49 msgid "Es necesaria una descripción" msgstr "Beschreibung ist notwendig" -#: ../../../../ajax/ajax_sendRequest.php:61 +#: ../../../../ajax/ajax_sendRequest.php:62 msgid "Solicitud de Modificación de Cuenta" msgstr "Kontoänderung initiiert" -#: ../../../../ajax/ajax_sendRequest.php:62 +#: ../../../../ajax/ajax_sendRequest.php:63 msgid "Solicitante" msgstr "Anfrager" -#: ../../../../ajax/ajax_sendRequest.php:63 -#: ../../../../ajax/ajax_viewpass.php:70 ../../../../inc/Account.class.php:165 -#: ../../../../inc/Account.class.php:219 ../../../../inc/Account.class.php:400 -#: ../../../../inc/Account.class.php:423 ../../../../inc/Account.class.php:665 +#: ../../../../ajax/ajax_sendRequest.php:64 +#: ../../../../ajax/ajax_viewpass.php:71 ../../../../inc/Account.class.php:181 +#: ../../../../inc/Account.class.php:236 ../../../../inc/Account.class.php:417 +#: ../../../../inc/Account.class.php:440 ../../../../inc/Account.class.php:682 #: ../../../../inc/Files.class.php:64 msgid "Cuenta" msgstr "Konto" -#: ../../../../ajax/ajax_sendRequest.php:64 -#: ../../../../inc/Account.class.php:164 ../../../../inc/Account.class.php:218 -#: ../../../../inc/Account.class.php:399 ../../../../inc/Account.class.php:422 -#: ../../../../inc/Account.class.php:664 ../../../../inc/Customer.class.php:65 +#: ../../../../ajax/ajax_sendRequest.php:65 +#: ../../../../inc/Account.class.php:180 ../../../../inc/Account.class.php:235 +#: ../../../../inc/Account.class.php:416 ../../../../inc/Account.class.php:439 +#: ../../../../inc/Account.class.php:681 ../../../../inc/Customer.class.php:65 #: ../../../../inc/Customer.class.php:115 #: ../../../../inc/Customer.class.php:163 -#: ../../../../web/SearchC.class.php:286 +#: ../../../../web/SearchC.class.php:285 #: ../../../../inc/themes/classic/account.inc:23 #: ../../../../inc/themes/classic/editpass.inc:12 #: ../../../../inc/themes/classic/request.inc:9 @@ -1027,59 +1078,59 @@ msgstr "Konto" #: ../../../../inc/themes/material-blue/account.inc:29 #: ../../../../inc/themes/material-blue/editpass.inc:13 #: ../../../../inc/themes/material-blue/request.inc:10 -#: ../../../../inc/themes/material-blue/search.inc:24 +#: ../../../../inc/themes/material-blue/search.inc:60 msgid "Cliente" msgstr "Kunde" -#: ../../../../ajax/ajax_sendRequest.php:65 -#: ../../../../web/AccountsMgmtC.class.php:79 -#: ../../../../web/AccountsMgmtC.class.php:138 -#: ../../../../web/UsersMgmtC.class.php:187 +#: ../../../../ajax/ajax_sendRequest.php:66 +#: ../../../../web/AccountsMgmtC.class.php:80 +#: ../../../../web/AccountsMgmtC.class.php:139 +#: ../../../../web/UsersMgmtC.class.php:188 #: ../../../../inc/themes/classic/categories.inc:16 #: ../../../../inc/themes/classic/customers.inc:16 -#: ../../../../inc/themes/classic/eventlog.inc:31 +#: ../../../../inc/themes/classic/eventlog.inc:29 #: ../../../../inc/themes/classic/groups.inc:16 #: ../../../../inc/themes/material-blue/categories.inc:20 #: ../../../../inc/themes/material-blue/customers.inc:20 -#: ../../../../inc/themes/material-blue/eventlog.inc:30 +#: ../../../../inc/themes/material-blue/eventlog.inc:29 #: ../../../../inc/themes/material-blue/groups.inc:20 msgid "Descripción" msgstr "Beschreibung" -#: ../../../../ajax/ajax_sendRequest.php:78 +#: ../../../../ajax/ajax_sendRequest.php:79 msgid "Error al enviar la solicitud" msgstr "Fehler beim Senden der Anfrage" -#: ../../../../ajax/ajax_userPrefsSave.php:70 -#: ../../../../ajax/ajax_userPrefsSave.php:103 +#: ../../../../ajax/ajax_userPrefsSave.php:73 +#: ../../../../ajax/ajax_userPrefsSave.php:106 msgid "Error al actualizar preferencias" msgstr "Fehler beim aktualisieren der Einstellungen" -#: ../../../../ajax/ajax_userPrefsSave.php:80 -#: ../../../../ajax/ajax_userPrefsSave.php:106 +#: ../../../../ajax/ajax_userPrefsSave.php:83 +#: ../../../../ajax/ajax_userPrefsSave.php:109 msgid "Preferencias actualizadas" msgstr "" -#: ../../../../ajax/ajax_viewpass.php:54 +#: ../../../../ajax/ajax_viewpass.php:55 msgid "La clave maestra no coincide" msgstr "Master-Passwort stimmt nicht" -#: ../../../../ajax/ajax_viewpass.php:58 +#: ../../../../ajax/ajax_viewpass.php:59 #: ../../../../inc/Controller.class.php:166 msgid "No tiene permisos para acceder a esta cuenta" msgstr "Sie haben keine Erlaubnis auf dieses Konto zuzugreifen" -#: ../../../../ajax/ajax_viewpass.php:68 ../../../../inc/Acl.class.php:133 +#: ../../../../ajax/ajax_viewpass.php:69 ../../../../inc/Acl.class.php:133 #: ../../../../inc/themes/classic/account.inc:382 #: ../../../../inc/themes/classic/profiles.inc:23 #: ../../../../inc/themes/classic/search.inc:109 -#: ../../../../inc/themes/material-blue/account.inc:422 +#: ../../../../inc/themes/material-blue/account.inc:424 #: ../../../../inc/themes/material-blue/profiles.inc:35 -#: ../../../../inc/themes/material-blue/search.inc:113 +#: ../../../../inc/themes/material-blue/search.inc:149 msgid "Ver Clave" msgstr "Passwort anzeigen" -#: ../../../../ajax/ajax_viewpass.php:79 ../../../../js/strings.js.php:73 +#: ../../../../ajax/ajax_viewpass.php:80 ../../../../js/strings.js.php:73 msgid "Clave de Cuenta" msgstr "Account Passwort" @@ -1094,11 +1145,19 @@ msgstr "" #: ../../../../inc/AccountSearch.class.php:28 ../../../../inc/Acl.class.php:29 #: ../../../../inc/Api.class.php:30 ../../../../inc/ApiRequest.class.php:28 #: ../../../../inc/ApiTokens.class.php:28 ../../../../inc/Auth.class.php:29 -#: ../../../../inc/Auth2FA.class.php:32 ../../../../inc/Backup.class.php:28 -#: ../../../../inc/Category.class.php:29 ../../../../inc/Common.class.php:28 -#: ../../../../inc/Config.class.php:28 ../../../../inc/Controller.class.php:31 -#: ../../../../inc/Crypt.class.php:28 ../../../../inc/CsvImport.class.php:28 +#: ../../../../inc/Auth2FA.class.php:33 ../../../../inc/Backup.class.php:28 +#: ../../../../inc/Base.php:26 ../../../../inc/Cache.class.php:28 +#: ../../../../inc/Category.class.php:29 ../../../../inc/Config.class.php:28 +#: ../../../../inc/ConfigDB.class.php:28 +#: ../../../../inc/ConfigInterface.class.php:28 +#: ../../../../inc/Controller.class.php:31 ../../../../inc/Crypt.class.php:28 +#: ../../../../inc/CryptMasterPass.class.php:28 +#: ../../../../inc/CryptPKI.class.php:28 +#: ../../../../inc/CsvImport.class.php:28 #: ../../../../inc/CsvImportBase.class.php:28 +#: ../../../../inc/CustomFieldDef.class.php:28 +#: ../../../../inc/CustomFields.class.php:28 +#: ../../../../inc/CustomFieldsBase.class.php:28 #: ../../../../inc/Customer.class.php:29 ../../../../inc/DB.class.php:28 #: ../../../../inc/DBConnectionFactory.class.php:30 #: ../../../../inc/FileImport.class.php:28 ../../../../inc/Files.class.php:29 @@ -1113,25 +1172,34 @@ msgstr "" #: ../../../../inc/Migrate.class.php:28 ../../../../inc/Minify.class.php:30 #: ../../../../inc/Profile.class.php:29 #: ../../../../inc/ProfileBase.class.php:28 -#: ../../../../inc/Request.class.php:110 ../../../../inc/Session.class.php:28 +#: ../../../../inc/Request.class.php:110 ../../../../inc/Response.class.php:28 +#: ../../../../inc/SPException.class.php:28 +#: ../../../../inc/Session.class.php:28 +#: ../../../../inc/SessionUtil.class.php:28 #: ../../../../inc/SyspassImport.class.php:28 -#: ../../../../inc/Themes.class.php:28 ../../../../inc/Upgrade.class.php:29 -#: ../../../../inc/User.class.php:28 ../../../../inc/UserLdap.class.php:28 +#: ../../../../inc/Template.class.php:27 ../../../../inc/Themes.class.php:28 +#: ../../../../inc/Upgrade.class.php:29 ../../../../inc/User.class.php:28 +#: ../../../../inc/UserAccounts.class.php:28 +#: ../../../../inc/UserBase.class.php:28 ../../../../inc/UserLdap.class.php:28 +#: ../../../../inc/UserMigrate.class.php:28 +#: ../../../../inc/UserPass.class.php:28 +#: ../../../../inc/UserPassRecover.class.php:28 #: ../../../../inc/UserPreferences.class.php:28 -#: ../../../../inc/UserUtil.class.php:28 ../../../../inc/Util.class.php:31 +#: ../../../../inc/UserUtil.class.php:28 ../../../../inc/Util.class.php:28 +#: ../../../../inc/XmlExport.class.php:28 #: ../../../../inc/XmlImport.class.php:28 #: ../../../../inc/XmlImportBase.class.php:28 -#: ../../../../web/AccountC.class.php:38 -#: ../../../../web/AccountsMgmtC.class.php:32 -#: ../../../../web/ConfigC.class.php:33 ../../../../web/EventlogC.class.php:28 -#: ../../../../web/SearchC.class.php:31 -#: ../../../../web/UsersMgmtC.class.php:39 -#: ../../../../web/UsersPrefsC.class.php:34 +#: ../../../../web/AccountC.class.php:41 +#: ../../../../web/AccountsMgmtC.class.php:33 +#: ../../../../web/ConfigC.class.php:35 ../../../../web/EventlogC.class.php:30 +#: ../../../../web/SearchC.class.php:33 +#: ../../../../web/UsersMgmtC.class.php:40 +#: ../../../../web/UsersPrefsC.class.php:35 msgid "No es posible acceder directamente a este archivo" msgstr "Auf diese Datei darf nicht direkt zugegriffen werden" -#: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:185 -#: ../../../../inc/Account.class.php:634 +#: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:201 +#: ../../../../inc/Account.class.php:651 msgid "Error al actualizar el historial" msgstr "Fehler beim Ändern der Historie" @@ -1139,121 +1207,121 @@ msgstr "Fehler beim Ändern der Historie" msgid "Actualizar Cuenta" msgstr "Konto ändern" -#: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:381 +#: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:398 msgid "Error al actualizar los grupos secundarios" msgstr "Fehler beim Ändern der Gruppe" -#: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:389 +#: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:406 msgid "Error al actualizar los usuarios de la cuenta" msgstr "Fehler beim Ändern der Benutzer eines Kontos" -#: ../../../../inc/Account.class.php:217 +#: ../../../../inc/Account.class.php:234 msgid "Restaurar Cuenta" msgstr "Wiederherstellen Konto" -#: ../../../../inc/Account.class.php:324 -#: ../../../../inc/AccountHistory.class.php:343 -#: ../../../../inc/AccountHistory.class.php:503 +#: ../../../../inc/Account.class.php:341 +#: ../../../../inc/AccountHistory.class.php:348 +#: ../../../../inc/AccountHistory.class.php:508 msgid "No se pudieron obtener los datos de la cuenta" msgstr "" -#: ../../../../inc/Account.class.php:398 ../../../../inc/Acl.class.php:129 -#: ../../../../web/AccountC.class.php:147 ../../../../web/MainC.class.php:183 +#: ../../../../inc/Account.class.php:415 ../../../../inc/Acl.class.php:129 +#: ../../../../web/AccountC.class.php:150 ../../../../web/MainC.class.php:183 msgid "Nueva Cuenta" msgstr "Neues Konto" -#: ../../../../inc/Account.class.php:416 +#: ../../../../inc/Account.class.php:433 msgid "ERROR: Error en la operación." msgstr "Fehler: Operation fehlgeschlagen" -#: ../../../../inc/Account.class.php:421 ../../../../inc/Acl.class.php:134 -#: ../../../../web/AccountC.class.php:353 +#: ../../../../inc/Account.class.php:438 ../../../../inc/Acl.class.php:134 +#: ../../../../web/AccountC.class.php:356 #: ../../../../inc/themes/classic/account.inc:369 #: ../../../../inc/themes/classic/search.inc:137 -#: ../../../../inc/themes/material-blue/account.inc:416 -#: ../../../../inc/themes/material-blue/search.inc:140 +#: ../../../../inc/themes/material-blue/account.inc:418 +#: ../../../../inc/themes/material-blue/search.inc:178 msgid "Eliminar Cuenta" msgstr "Konto löschen" -#: ../../../../inc/Account.class.php:434 +#: ../../../../inc/Account.class.php:451 msgid "Error al eliminar grupos asociados a la cuenta" msgstr "Fehler beim Löschen der Guppen eines Kontos" -#: ../../../../inc/Account.class.php:438 +#: ../../../../inc/Account.class.php:455 msgid "Error al eliminar usuarios asociados a la cuenta" msgstr "Fehler beim Löschen der Benutzer eines Kontos" -#: ../../../../inc/Account.class.php:442 +#: ../../../../inc/Account.class.php:459 msgid "Error al eliminar archivos asociados a la cuenta" msgstr "Fehler beim Löschen der Dateien eines Kontos" -#: ../../../../inc/Account.class.php:496 -#: ../../../../inc/AccountHistory.class.php:124 +#: ../../../../inc/Account.class.php:513 +#: ../../../../inc/AccountHistory.class.php:129 #: ../../../../inc/XmlImport.class.php:62 msgid "Inicio" msgstr "Start" -#: ../../../../inc/Account.class.php:501 -#: ../../../../inc/AccountHistory.class.php:130 +#: ../../../../inc/Account.class.php:518 +#: ../../../../inc/AccountHistory.class.php:135 msgid "Error en el módulo de encriptación" msgstr "Fehler im Verschlüsselungsmodul" -#: ../../../../inc/Account.class.php:509 -#: ../../../../inc/AccountHistory.class.php:138 +#: ../../../../inc/Account.class.php:526 +#: ../../../../inc/AccountHistory.class.php:143 msgid "Error al obtener las claves de las cuentas" msgstr "Fehler beim Laden der Konto-Passwörter" -#: ../../../../inc/Account.class.php:525 -#: ../../../../inc/AccountHistory.class.php:160 +#: ../../../../inc/Account.class.php:542 +#: ../../../../inc/AccountHistory.class.php:165 msgid "Clave de cuenta vacía" msgstr "Account Passwort leer" -#: ../../../../inc/Account.class.php:530 -#: ../../../../inc/AccountHistory.class.php:165 +#: ../../../../inc/Account.class.php:547 +#: ../../../../inc/AccountHistory.class.php:170 msgid "IV de encriptación incorrecto" msgstr "" -#: ../../../../inc/Account.class.php:539 -#: ../../../../inc/AccountHistory.class.php:174 +#: ../../../../inc/Account.class.php:556 +#: ../../../../inc/AccountHistory.class.php:179 msgid "No es posible desencriptar la clave de la cuenta" msgstr "" -#: ../../../../inc/Account.class.php:545 +#: ../../../../inc/Account.class.php:562 msgid "Fallo al actualizar la clave de la cuenta" msgstr "Fehler beim Ändern des Passworts eines Kontos " -#: ../../../../inc/Account.class.php:559 +#: ../../../../inc/Account.class.php:576 msgid "Cuentas actualizadas" msgstr "Accounts aktualisiert" -#: ../../../../inc/Account.class.php:564 -#: ../../../../inc/AccountHistory.class.php:199 -#: ../../../../inc/CustomFields.class.php:319 +#: ../../../../inc/Account.class.php:581 +#: ../../../../inc/AccountHistory.class.php:204 +#: ../../../../inc/CustomFields.class.php:325 msgid "Fin" msgstr "Ende" -#: ../../../../inc/Account.class.php:663 +#: ../../../../inc/Account.class.php:680 msgid "Modificar Clave" msgstr "Passwort ändern" -#: ../../../../inc/Account.class.php:698 +#: ../../../../inc/Account.class.php:715 msgid "No se pudieron obtener los datos de las cuentas" msgstr "" -#: ../../../../inc/AccountHistory.class.php:123 +#: ../../../../inc/AccountHistory.class.php:128 msgid "Actualizar Clave Maestra (H)" msgstr "Master-Passwort (H) ändern" -#: ../../../../inc/AccountHistory.class.php:155 +#: ../../../../inc/AccountHistory.class.php:160 msgid "La clave maestra del registro no coincide" msgstr "Master-Passwort stimmt nicht" -#: ../../../../inc/AccountHistory.class.php:180 +#: ../../../../inc/AccountHistory.class.php:185 msgid "Fallo al actualizar la clave del histórico" msgstr "Fehler beim Ändern des Master-Passworts" -#: ../../../../inc/AccountHistory.class.php:194 -#: ../../../../inc/CustomFields.class.php:315 +#: ../../../../inc/AccountHistory.class.php:199 +#: ../../../../inc/CustomFields.class.php:321 msgid "Registros actualizados" msgstr "" @@ -1269,13 +1337,13 @@ msgstr "" msgid "Ver Cuenta" msgstr "" -#: ../../../../inc/Acl.class.php:128 ../../../../web/AccountC.class.php:260 +#: ../../../../inc/Acl.class.php:128 ../../../../web/AccountC.class.php:263 #: ../../../../inc/themes/classic/search.inc:131 -#: ../../../../inc/themes/material-blue/search.inc:134 +#: ../../../../inc/themes/material-blue/search.inc:172 msgid "Copiar Cuenta" msgstr "Konto kopieren" -#: ../../../../inc/Acl.class.php:130 ../../../../web/AccountC.class.php:324 +#: ../../../../inc/Acl.class.php:130 ../../../../web/AccountC.class.php:327 msgid "Editar Cuenta" msgstr "Konto ändern" @@ -1334,8 +1402,8 @@ msgstr "" msgid "Gestión Perfiles" msgstr "" -#: ../../../../inc/Acl.class.php:146 ../../../../inc/Config.class.php:118 -#: ../../../../inc/Config.class.php:403 ../../../../web/MainC.class.php:201 +#: ../../../../inc/Acl.class.php:146 ../../../../inc/ConfigDB.class.php:91 +#: ../../../../inc/ConfigDB.class.php:119 ../../../../web/MainC.class.php:201 #: ../../../../inc/themes/classic/profiles.inc:57 #: ../../../../inc/themes/material-blue/profiles.inc:66 msgid "Configuración" @@ -1345,13 +1413,13 @@ msgstr "Konfiguration" msgid "Configuración General" msgstr "" -#: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:130 +#: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:132 #: ../../../../inc/themes/classic/profiles.inc:65 #: ../../../../inc/themes/material-blue/profiles.inc:77 msgid "Encriptación" msgstr "" -#: ../../../../inc/Acl.class.php:149 ../../../../web/ConfigC.class.php:175 +#: ../../../../inc/Acl.class.php:149 ../../../../web/ConfigC.class.php:177 #: ../../../../inc/themes/classic/backup.inc:4 #: ../../../../inc/themes/material-blue/backup.inc:4 msgid "Copia de Seguridad" @@ -1409,7 +1477,7 @@ msgid "Actualizar Autorización" msgstr "" #: ../../../../inc/ApiTokens.class.php:331 -#: ../../../../web/UsersMgmtC.class.php:421 +#: ../../../../web/UsersMgmtC.class.php:422 msgid "Eliminar Autorización" msgstr "" @@ -1448,12 +1516,12 @@ msgid "Error al realizar backup en modo compatibilidad" msgstr "Fehler während der Durchführung der Sicherung im Kompatibilitätsmodus" #: ../../../../inc/Backup.class.php:223 -#: ../../../../inc/XmlExport.class.php:465 +#: ../../../../inc/XmlExport.class.php:467 msgid "No es posible crear el directorio de backups" msgstr "Verzeichnis für Backups kann nicht angelegt werden" #: ../../../../inc/Backup.class.php:228 -#: ../../../../inc/XmlExport.class.php:470 +#: ../../../../inc/XmlExport.class.php:472 msgid "Compruebe los permisos del directorio de backups" msgstr "Bitte überprüfen Sie die Zugriffsrechte des Backup₋Verzeichnisses" @@ -1469,11 +1537,11 @@ msgstr "Fehler beim Anlegen der Kategorie" #: ../../../../inc/Category.class.php:83 #: ../../../../inc/Category.class.php:132 #: ../../../../inc/Category.class.php:182 -#: ../../../../web/SearchC.class.php:298 +#: ../../../../web/SearchC.class.php:297 #: ../../../../inc/themes/classic/account.inc:42 #: ../../../../inc/themes/classic/search.inc:53 #: ../../../../inc/themes/material-blue/account.inc:50 -#: ../../../../inc/themes/material-blue/search.inc:49 +#: ../../../../inc/themes/material-blue/search.inc:85 msgid "Categoría" msgstr "Kategorie" @@ -1486,7 +1554,7 @@ msgid "Error al eliminar la categoría" msgstr "Fehler beim Löschen einer Kategorie" #: ../../../../inc/Category.class.php:132 -#: ../../../../web/AccountsMgmtC.class.php:101 +#: ../../../../web/AccountsMgmtC.class.php:102 msgid "Eliminar Categoría" msgstr "Kategorie löschen" @@ -1498,23 +1566,24 @@ msgstr "Fehler beim Ändern der Kategorie" msgid "Modificar Categoría" msgstr "Kategorie ändern" -#: ../../../../inc/Config.class.php:118 ../../../../inc/Config.class.php:404 -msgid "Modificar configuración" -msgstr "Konfiguration ändern" - -#: ../../../../inc/Config.class.php:276 +#: ../../../../inc/Config.class.php:148 msgid "No es posible escribir el archivo de configuración" msgstr "Konfigurationsdatei kann nicht geschrieben werden" -#: ../../../../inc/Config.class.php:276 +#: ../../../../inc/Config.class.php:148 msgid "Compruebe los permisos del directorio \"config\"" msgstr "Bitte überprüfen Sie Zugriffsrechte auf das Verzeichnis \"config\"" -#: ../../../../inc/Config.class.php:405 +#: ../../../../inc/ConfigDB.class.php:91 +#: ../../../../inc/ConfigDB.class.php:120 +msgid "Modificar configuración" +msgstr "Konfiguration ändern" + +#: ../../../../inc/ConfigDB.class.php:121 msgid "Parámetro" msgstr "Parameter" -#: ../../../../inc/Config.class.php:406 +#: ../../../../inc/ConfigDB.class.php:122 msgid "Valor" msgstr "Wert" @@ -1537,7 +1606,7 @@ msgstr "Sie haben keine Erlaubnis auf diese Seite zuzugreifen" msgid "No tiene permisos para realizar esta operación" msgstr "Sie haben keine Erlaubnis für diese Aktion" -#: ../../../../inc/Crypt.class.php:119 ../../../../inc/Email.class.php:146 +#: ../../../../inc/Crypt.class.php:119 ../../../../inc/Email.class.php:148 msgid "Aviso" msgstr "Warnung" @@ -1554,13 +1623,13 @@ msgstr "Kryptographie-Modul konnte nicht geladen werden" msgid "Error al generar datos cifrados" msgstr "Fehler beim Erzeugen der verschlüsselten Daten" -#: ../../../../inc/CryptPKI.class.php:44 +#: ../../../../inc/CryptPKI.class.php:46 #, fuzzy msgid "No es posible generar las claves RSA" msgstr "Kunde kann nicht angelegt werden" -#: ../../../../inc/CryptPKI.class.php:110 -#: ../../../../inc/CryptPKI.class.php:141 +#: ../../../../inc/CryptPKI.class.php:112 +#: ../../../../inc/CryptPKI.class.php:143 #, fuzzy msgid "El archivo de clave no existe" msgstr "Datei existiert nicht" @@ -1578,10 +1647,10 @@ msgstr "" #: ../../../../inc/CsvImportBase.class.php:140 #: ../../../../inc/CsvImportBase.class.php:145 #: ../../../../inc/Import.class.php:118 ../../../../inc/Import.class.php:124 -#: ../../../../inc/Migrate.class.php:349 +#: ../../../../inc/Migrate.class.php:348 #: ../../../../inc/XmlImport.class.php:62 #: ../../../../inc/XmlImport.class.php:63 -#: ../../../../web/ConfigC.class.php:197 +#: ../../../../web/ConfigC.class.php:199 msgid "Importar Cuentas" msgstr "Importiere Konten" @@ -1599,40 +1668,72 @@ msgstr "" msgid "Cuenta importada: %s" msgstr "" -#: ../../../../inc/CustomFields.class.php:270 -#: ../../../../web/AccountsMgmtC.class.php:300 +#: ../../../../inc/CustomFields.class.php:276 +#: ../../../../web/AccountsMgmtC.class.php:301 #: ../../../../inc/themes/classic/profiles.inc:107 #: ../../../../inc/themes/material-blue/profiles.inc:124 msgid "Campos Personalizados" msgstr "" -#: ../../../../inc/CustomFields.class.php:279 +#: ../../../../inc/CustomFields.class.php:285 #, fuzzy msgid "Error al actualizar datos encriptados" msgstr "Fehler beim aktualisieren der Einstellungen" -#: ../../../../inc/CustomFields.class.php:283 +#: ../../../../inc/CustomFields.class.php:289 msgid "Actualizando datos encriptados" msgstr "" -#: ../../../../inc/CustomFields.class.php:310 +#: ../../../../inc/CustomFields.class.php:316 #, fuzzy msgid "Registros no actualizados" msgstr "Protokol gelöscht" -#: ../../../../inc/CustomFieldsBase.class.php:81 +#: ../../../../inc/CustomFieldsBase.class.php:86 +msgid "Texto" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:88 +#, fuzzy +msgid "Fecha" +msgstr "Datum hinzugefügt" + +#: ../../../../inc/CustomFieldsBase.class.php:89 +msgid "Número" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:90 +#: ../../../../inc/themes/classic/passreset.inc:22 +#: ../../../../inc/themes/classic/users.inc:61 +#: ../../../../inc/themes/material-blue/users.inc:71 +msgid "Email" +msgstr "E-Mail" + +#: ../../../../inc/CustomFieldsBase.class.php:91 +msgid "Teléfono" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:92 +msgid "Link" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:93 +msgid "Color" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:107 #: ../../../../inc/themes/classic/profiles.inc:98 #: ../../../../inc/themes/material-blue/profiles.inc:114 msgid "Categorías" msgstr "Kategorien" -#: ../../../../inc/CustomFieldsBase.class.php:82 +#: ../../../../inc/CustomFieldsBase.class.php:108 #: ../../../../inc/themes/classic/profiles.inc:103 #: ../../../../inc/themes/material-blue/profiles.inc:119 msgid "Clientes" msgstr "Kunden" -#: ../../../../inc/CustomFieldsBase.class.php:84 +#: ../../../../inc/CustomFieldsBase.class.php:110 #: ../../../../inc/themes/classic/account.inc:143 #: ../../../../inc/themes/classic/profiles.inc:89 #: ../../../../inc/themes/material-blue/account.inc:169 @@ -1665,7 +1766,7 @@ msgid "Error al eliminar el cliente" msgstr "Fehler beim Löschen eines Kunden" #: ../../../../inc/Customer.class.php:163 -#: ../../../../web/AccountsMgmtC.class.php:159 +#: ../../../../web/AccountsMgmtC.class.php:160 msgid "Eliminar Cliente" msgstr "Kunde löschen" @@ -1673,22 +1774,22 @@ msgstr "Kunde löschen" #: ../../../../inc/DBConnectionFactory.class.php:85 #: ../../../../inc/DBConnectionFactory.class.php:99 #: ../../../../inc/Installer.class.php:235 -#: ../../../../inc/Migrate.class.php:115 +#: ../../../../inc/Migrate.class.php:114 msgid "No es posible conectar con la BD" msgstr "Verbindung zum Datenbank-Server kann nicht hergestellt werden" #: ../../../../inc/DBConnectionFactory.class.php:83 #: ../../../../inc/DBConnectionFactory.class.php:85 #: ../../../../inc/Installer.class.php:236 -#: ../../../../inc/Migrate.class.php:116 +#: ../../../../inc/Migrate.class.php:115 msgid "Compruebe los datos de conexión" msgstr "Bitte überprüfen Sie Ihre Verbindungseinstellungen" -#: ../../../../inc/Email.class.php:59 ../../../../inc/UserUtil.class.php:565 +#: ../../../../inc/Email.class.php:59 ../../../../inc/UserUtil.class.php:182 msgid "N/D" msgstr "N/A" -#: ../../../../inc/Email.class.php:60 ../../../../web/UsersMgmtC.class.php:392 +#: ../../../../inc/Email.class.php:60 ../../../../web/UsersMgmtC.class.php:393 #: ../../../../inc/themes/classic/tokens.inc:20 #: ../../../../inc/themes/material-blue/tokens.inc:20 msgid "Acción" @@ -1754,7 +1855,7 @@ msgid "Error al actualizar los usuarios del grupo" msgstr "" #: ../../../../inc/Groups.class.php:369 -#: ../../../../web/UsersMgmtC.class.php:209 +#: ../../../../web/UsersMgmtC.class.php:210 msgid "Eliminar Grupo" msgstr "Gruppe löschen" @@ -1771,7 +1872,7 @@ msgid "Compruebe el formato del archivo" msgstr "Bitte überprüfen Sie das Format der Datei" #: ../../../../inc/Import.class.php:124 ../../../../inc/Import.class.php:127 -#: ../../../../inc/Migrate.class.php:92 +#: ../../../../inc/Migrate.class.php:91 msgid "Importación finalizada" msgstr "Import beendet" @@ -2016,31 +2117,31 @@ msgstr "LDAP-Verbindungsfehler (BIND)" msgid "Error al buscar objetos en DN base" msgstr "Fehler beim Suchen nach Objekten in der Base-DN" -#: ../../../../inc/Ldap.class.php:217 ../../../../inc/Ldap.class.php:222 -#: ../../../../inc/Ldap.class.php:229 ../../../../inc/Ldap.class.php:233 -#: ../../../../inc/Ldap.class.php:242 ../../../../inc/Ldap.class.php:246 +#: ../../../../inc/Ldap.class.php:212 ../../../../inc/Ldap.class.php:218 +#: ../../../../inc/Ldap.class.php:225 ../../../../inc/Ldap.class.php:230 +#: ../../../../inc/Ldap.class.php:235 ../../../../inc/Ldap.class.php:240 msgid "Error al buscar RDN de grupo" msgstr "Fehler beim Suchen nach Gruppen RDN" -#: ../../../../inc/Ldap.class.php:295 ../../../../inc/Ldap.class.php:300 -#: ../../../../inc/Ldap.class.php:314 ../../../../inc/Ldap.class.php:318 +#: ../../../../inc/Ldap.class.php:289 ../../../../inc/Ldap.class.php:295 +#: ../../../../inc/Ldap.class.php:310 ../../../../inc/Ldap.class.php:315 msgid "Error al buscar el DN del usuario" msgstr "Fehler beim Suchen nach Benutzer DN" -#: ../../../../inc/Ldap.class.php:307 ../../../../inc/Ldap.class.php:311 +#: ../../../../inc/Ldap.class.php:302 ../../../../inc/Ldap.class.php:307 msgid "Error al localizar el usuario en LDAP" msgstr "Fehler beim Suchen des Benutzers in LDAP" -#: ../../../../inc/Ldap.class.php:392 ../../../../inc/Ldap.class.php:397 -#: ../../../../inc/LdapADS.class.php:99 ../../../../inc/LdapADS.class.php:104 +#: ../../../../inc/Ldap.class.php:384 ../../../../inc/Ldap.class.php:390 +#: ../../../../inc/LdapADS.class.php:103 ../../../../inc/LdapADS.class.php:108 msgid "Error al buscar el grupo de usuarios" msgstr "Fehler beim Suchen nach Benutzergruppe" -#: ../../../../inc/Ldap.class.php:404 +#: ../../../../inc/Ldap.class.php:397 msgid "Usuario verificado en grupo" msgstr "" -#: ../../../../inc/LdapADS.class.php:108 ../../../../inc/LdapADS.class.php:113 +#: ../../../../inc/LdapADS.class.php:112 ../../../../inc/LdapADS.class.php:117 msgid "No se encontró el grupo con ese nombre" msgstr "Keine Gruppe mit dem Namen gefunden" @@ -2049,144 +2150,144 @@ msgid "Vaciar Eventos" msgstr "Protokol löschen" #: ../../../../inc/Log.class.php:88 -#: ../../../../inc/themes/classic/eventlog.inc:100 -#: ../../../../inc/themes/material-blue/eventlog.inc:100 +#: ../../../../inc/themes/classic/eventlog.inc:98 +#: ../../../../inc/themes/material-blue/eventlog.inc:99 msgid "Vaciar registro de eventos" msgstr "Protokol löschen" -#: ../../../../inc/Migrate.class.php:52 +#: ../../../../inc/Migrate.class.php:51 msgid "Faltan parámetros" msgstr "Fehlender Parameter" -#: ../../../../inc/Migrate.class.php:149 +#: ../../../../inc/Migrate.class.php:148 msgid "La versión no es compatible" msgstr "Inkompatible Version" -#: ../../../../inc/Migrate.class.php:150 +#: ../../../../inc/Migrate.class.php:149 msgid "Actualice a la última versión de phpPMS" msgstr "Bitte aktualisieren Sie auf die letzte Version von phpPMS." -#: ../../../../inc/Migrate.class.php:168 +#: ../../../../inc/Migrate.class.php:167 msgid "Error al obtener la configuración" msgstr "Fehler beim Laden der Konfiguration" -#: ../../../../inc/Migrate.class.php:211 ../../../../inc/Migrate.class.php:224 +#: ../../../../inc/Migrate.class.php:210 ../../../../inc/Migrate.class.php:223 msgid "Error al vaciar tabla" msgstr "Fehler beim Leeren der Tabelle" -#: ../../../../inc/Migrate.class.php:229 +#: ../../../../inc/Migrate.class.php:228 msgid "Usuario actual no es administrador de la aplicación" msgstr "Angemeldeter Benutzer ist nicht Administrator" -#: ../../../../inc/Migrate.class.php:274 +#: ../../../../inc/Migrate.class.php:273 msgid "No es posible crear el cliente" msgstr "Kunde kann nicht angelegt werden" -#: ../../../../inc/Migrate.class.php:275 +#: ../../../../inc/Migrate.class.php:274 msgid "Contacte con el desarrollador" msgstr "Bitte kontaktieren Sie den Entwickler" -#: ../../../../inc/Migrate.class.php:279 +#: ../../../../inc/Migrate.class.php:278 msgid "Importar Clientes" msgstr "Importiere Kunden" -#: ../../../../inc/Migrate.class.php:281 ../../../../inc/Migrate.class.php:351 -#: ../../../../inc/Migrate.class.php:452 ../../../../inc/Migrate.class.php:525 -#: ../../../../inc/Migrate.class.php:633 ../../../../inc/Migrate.class.php:698 -#: ../../../../inc/Migrate.class.php:772 ../../../../inc/Migrate.class.php:862 -#: ../../../../inc/Migrate.class.php:933 +#: ../../../../inc/Migrate.class.php:280 ../../../../inc/Migrate.class.php:350 +#: ../../../../inc/Migrate.class.php:451 ../../../../inc/Migrate.class.php:524 +#: ../../../../inc/Migrate.class.php:632 ../../../../inc/Migrate.class.php:697 +#: ../../../../inc/Migrate.class.php:771 ../../../../inc/Migrate.class.php:861 +#: ../../../../inc/Migrate.class.php:932 msgid "Registros" msgstr "Datensätze" -#: ../../../../inc/Migrate.class.php:303 +#: ../../../../inc/Migrate.class.php:302 msgid "Error al obtener los clientes" msgstr "Fehler beim Laden des Kunden" -#: ../../../../inc/Migrate.class.php:345 +#: ../../../../inc/Migrate.class.php:344 msgid "Error al obtener cuentas" msgstr "Fehler beim Laden des Kontos" -#: ../../../../inc/Migrate.class.php:374 +#: ../../../../inc/Migrate.class.php:373 msgid "Cliente no encontrado" msgstr "Kunde nicht gefunden" -#: ../../../../inc/Migrate.class.php:417 +#: ../../../../inc/Migrate.class.php:416 msgid "Error al migrar cuenta" msgstr "Fehler beim Importieren des Kontos" -#: ../../../../inc/Migrate.class.php:446 +#: ../../../../inc/Migrate.class.php:445 msgid "Error al obtener los grupos de cuentas" msgstr "Fehler beim Laden der Gruppen eines Kontos" -#: ../../../../inc/Migrate.class.php:450 +#: ../../../../inc/Migrate.class.php:449 msgid "Importar Grupos de Cuentas" msgstr "Importiere Kontogruppen" -#: ../../../../inc/Migrate.class.php:472 +#: ../../../../inc/Migrate.class.php:471 msgid "Error al crear grupos de cuentas" msgstr "Fehler beim Anlegen der Gruppen eines Kontos" -#: ../../../../inc/Migrate.class.php:519 +#: ../../../../inc/Migrate.class.php:518 msgid "Error al obtener el historico de cuentas" msgstr "Fehler beim Laden der Konto-Historie" -#: ../../../../inc/Migrate.class.php:523 +#: ../../../../inc/Migrate.class.php:522 msgid "Importar Histórico de Cuentas" msgstr "Importiere Konten-Historie" -#: ../../../../inc/Migrate.class.php:592 +#: ../../../../inc/Migrate.class.php:591 msgid "Error al crear historico de cuentas" msgstr "Fehler beim Anlegen der Konto-Historie" -#: ../../../../inc/Migrate.class.php:627 +#: ../../../../inc/Migrate.class.php:626 msgid "Error al obtener los archivos de cuentas" msgstr "Fehler beim Laden der Konto-Dateien" -#: ../../../../inc/Migrate.class.php:631 +#: ../../../../inc/Migrate.class.php:630 msgid "Importar Archivos de Cuentas" msgstr "Importiere Konto-Dateien" -#: ../../../../inc/Migrate.class.php:663 +#: ../../../../inc/Migrate.class.php:662 msgid "Error al crear archivos de cuentas" msgstr "Fehler beim Anlegen der Kontodateien" -#: ../../../../inc/Migrate.class.php:692 +#: ../../../../inc/Migrate.class.php:691 msgid "Error al obtener las categorías de cuentas" msgstr "Fehler beim Holen der Konto-Kategorien" -#: ../../../../inc/Migrate.class.php:696 +#: ../../../../inc/Migrate.class.php:695 msgid "Importar Categorías de Cuentas" msgstr "Importiere Kontokategorien" -#: ../../../../inc/Migrate.class.php:718 +#: ../../../../inc/Migrate.class.php:717 msgid "Error al crear categorías de cuentas" msgstr "Fehler beim Holen der Konto-Kategorien" -#: ../../../../inc/Migrate.class.php:766 +#: ../../../../inc/Migrate.class.php:765 msgid "Error al obtener los usuarios" msgstr "Fehler beim Laden der Benutzer" -#: ../../../../inc/Migrate.class.php:770 +#: ../../../../inc/Migrate.class.php:769 msgid "Importar Usuarios" msgstr "Importiere Benutzer" -#: ../../../../inc/Migrate.class.php:827 +#: ../../../../inc/Migrate.class.php:826 msgid "Error al crear usuarios" msgstr "Fehler beim Anlegen der Benutzer" -#: ../../../../inc/Migrate.class.php:856 +#: ../../../../inc/Migrate.class.php:855 msgid "Error al obtener los grupos de usuarios" msgstr "Fehler beim Laden der Gruppen eines Benutzers" -#: ../../../../inc/Migrate.class.php:860 +#: ../../../../inc/Migrate.class.php:859 msgid "Importar Grupos de Usuarios" msgstr "Importiere Benutzergruppen" -#: ../../../../inc/Migrate.class.php:886 +#: ../../../../inc/Migrate.class.php:885 msgid "Error al crear los grupos de usuarios" msgstr "Fehler beim Hinzufügen Gruppen eines Benutzers" -#: ../../../../inc/Migrate.class.php:931 +#: ../../../../inc/Migrate.class.php:930 msgid "Importar Configuración" msgstr "Importiere Konfiguration" @@ -2212,7 +2313,7 @@ msgid "Datos de perfil incorrectos" msgstr "falsche Profildaten" #: ../../../../inc/ProfileBase.class.php:550 -#: ../../../../web/UsersMgmtC.class.php:274 +#: ../../../../web/UsersMgmtC.class.php:275 msgid "Eliminar Perfil" msgstr "Profil löschen" @@ -2238,17 +2339,17 @@ msgstr "" msgid "No hay cuentas para importar" msgstr "" -#: ../../../../inc/Template.class.php:89 +#: ../../../../inc/Template.class.php:91 #, fuzzy, php-format msgid "No es posible obtener la plantilla \"%s\" : %s" msgstr "Kunde kann nicht angelegt werden" -#: ../../../../inc/Template.class.php:128 +#: ../../../../inc/Template.class.php:130 #, fuzzy, php-format msgid "No es posible obtener la variable \"%s\"" msgstr "Kunde kann nicht angelegt werden" -#: ../../../../inc/Template.class.php:171 +#: ../../../../inc/Template.class.php:173 #, fuzzy, php-format msgid "No es posible destruir la variable \"%s\"" msgstr "Kunde kann nicht angelegt werden" @@ -2296,17 +2397,17 @@ msgstr "Konfiguration aktualisieren" msgid "Actualización de la Configuración realizada correctamente." msgstr "Configuration Aktualisierung erfolgreich durchgeführt." -#: ../../../../inc/UserBase.class.php:386 -#: ../../../../inc/UserBase.class.php:530 +#: ../../../../inc/UserBase.class.php:388 +#: ../../../../inc/UserBase.class.php:532 msgid "No se pudo realizar la petición de cambio de clave." msgstr "Die Passwortänderung Anfrage konnte nicht ausgeführt werden." -#: ../../../../inc/UserBase.class.php:525 +#: ../../../../inc/UserBase.class.php:527 msgid "Modificar Usuario" msgstr "Benutzer ändern" -#: ../../../../inc/UserBase.class.php:592 -#: ../../../../web/UsersMgmtC.class.php:150 +#: ../../../../inc/UserBase.class.php:594 +#: ../../../../web/UsersMgmtC.class.php:151 msgid "Eliminar Usuario" msgstr "Benutzer löschen" @@ -2326,41 +2427,41 @@ msgstr "Sie bekommen in Kürze eine Bestätigungs-Mail" msgid "Nuevo usuario de LDAP" msgstr "Neuer LDAP Benutzer" -#: ../../../../inc/UserUtil.class.php:703 +#: ../../../../inc/UserMigrate.class.php:113 msgid "Migrar Grupos" msgstr "Gurppen migrieren" -#: ../../../../inc/UserUtil.class.php:703 +#: ../../../../inc/UserMigrate.class.php:113 msgid "Error al migrar grupo del usuario" msgstr "" -#: ../../../../inc/Util.class.php:122 +#: ../../../../inc/Util.class.php:119 msgid "Versión de PHP requerida >= " msgstr "" -#: ../../../../inc/Util.class.php:123 +#: ../../../../inc/Util.class.php:120 msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" msgstr "" "Bitte aktualisieren Sie ihre PHP Installation, um sysPass sicher betreiben " "zu können." -#: ../../../../inc/Util.class.php:159 +#: ../../../../inc/Util.class.php:156 #: ../../../../inc/themes/classic/ldap.inc:212 #: ../../../../inc/themes/material-blue/ldap.inc:238 msgid "Módulo no disponible" msgstr "Modul verfügbar" -#: ../../../../inc/Util.class.php:160 +#: ../../../../inc/Util.class.php:157 msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Ohne dieses Modul wird die Anwendung nicht korrekt funktionieren." -#: ../../../../inc/XmlExport.class.php:125 +#: ../../../../inc/XmlExport.class.php:127 #, fuzzy msgid "Exportar XML" msgstr "XML importieren" -#: ../../../../inc/XmlExport.class.php:410 +#: ../../../../inc/XmlExport.class.php:412 msgid "Error al crear el archivo XML" msgstr "" @@ -2368,15 +2469,15 @@ msgstr "" msgid "Formato detectado" msgstr "" -#: ../../../../inc/XmlImportBase.class.php:75 +#: ../../../../inc/XmlImportBase.class.php:80 msgid "No es posible procesar el archivo XML" msgstr "XML-Datei kann nicht verarbeitet werden" -#: ../../../../inc/XmlImportBase.class.php:103 +#: ../../../../inc/XmlImportBase.class.php:108 msgid "Archivo XML no soportado" msgstr "XML-Datei wird nicht unterstützt" -#: ../../../../inc/XmlImportBase.class.php:104 +#: ../../../../inc/XmlImportBase.class.php:109 msgid "No es posible detectar la aplicación que exportó los datos" msgstr "" "Die Anwendung von der die Daten exportiert wurden, kann nicht festgestellt " @@ -2560,9 +2661,9 @@ msgstr "Ja" #: ../../../../inc/themes/classic/account.inc:136 #: ../../../../inc/themes/classic/account.inc:167 #: ../../../../inc/themes/classic/account.inc:449 -#: ../../../../inc/themes/classic/encryption.inc:61 -#: ../../../../inc/themes/classic/encryption.inc:80 -#: ../../../../inc/themes/classic/import.inc:70 +#: ../../../../inc/themes/classic/encryption.inc:58 +#: ../../../../inc/themes/classic/encryption.inc:77 +#: ../../../../inc/themes/classic/import.inc:67 #: ../../../../inc/themes/classic/install.inc:99 #: ../../../../inc/themes/classic/preferences.inc:82 #: ../../../../inc/themes/classic/security.inc:26 @@ -2587,28 +2688,28 @@ msgstr "Passwort in die Zwischenablage kopiert" msgid "Error al copiar al portapapeles" msgstr "Passwort in die Zwischenablage kopiert" -#: ../../../../web/AccountC.class.php:381 -#: ../../../../web/AccountC.class.php:412 +#: ../../../../web/AccountC.class.php:384 +#: ../../../../web/AccountC.class.php:415 #: ../../../../inc/themes/classic/search.inc:45 #: ../../../../inc/themes/classic/search.inc:104 -#: ../../../../inc/themes/material-blue/search.inc:41 -#: ../../../../inc/themes/material-blue/search.inc:108 +#: ../../../../inc/themes/material-blue/search.inc:77 +#: ../../../../inc/themes/material-blue/search.inc:144 msgid "Detalles de Cuenta" msgstr "Kontodetails" -#: ../../../../web/AccountC.class.php:469 +#: ../../../../web/AccountC.class.php:472 #: ../../../../inc/themes/classic/account.inc:396 -#: ../../../../inc/themes/material-blue/account.inc:433 +#: ../../../../inc/themes/material-blue/account.inc:435 msgid "Modificar Clave de Cuenta" msgstr "Konto-Passwort ändern" -#: ../../../../web/AccountsMgmtC.class.php:79 -#: ../../../../web/AccountsMgmtC.class.php:138 -#: ../../../../web/AccountsMgmtC.class.php:266 -#: ../../../../web/SearchC.class.php:292 -#: ../../../../web/UsersMgmtC.class.php:87 -#: ../../../../web/UsersMgmtC.class.php:187 -#: ../../../../web/UsersMgmtC.class.php:245 +#: ../../../../web/AccountsMgmtC.class.php:80 +#: ../../../../web/AccountsMgmtC.class.php:139 +#: ../../../../web/AccountsMgmtC.class.php:267 +#: ../../../../web/SearchC.class.php:291 +#: ../../../../web/UsersMgmtC.class.php:88 +#: ../../../../web/UsersMgmtC.class.php:188 +#: ../../../../web/UsersMgmtC.class.php:246 #: ../../../../inc/themes/classic/account.inc:11 #: ../../../../inc/themes/classic/categories.inc:8 #: ../../../../inc/themes/classic/customers.inc:8 @@ -2629,59 +2730,59 @@ msgstr "Konto-Passwort ändern" #: ../../../../inc/themes/material-blue/info.inc:25 #: ../../../../inc/themes/material-blue/profiles.inc:8 #: ../../../../inc/themes/material-blue/request.inc:6 -#: ../../../../inc/themes/material-blue/search.inc:39 +#: ../../../../inc/themes/material-blue/search.inc:75 #: ../../../../inc/themes/material-blue/users.inc:8 msgid "Nombre" msgstr "Name" -#: ../../../../web/AccountsMgmtC.class.php:115 +#: ../../../../web/AccountsMgmtC.class.php:116 msgid "Gestión de Categorías" msgstr "Kategorienverwaltung" -#: ../../../../web/AccountsMgmtC.class.php:172 +#: ../../../../web/AccountsMgmtC.class.php:173 msgid "Gestión de Clientes" msgstr "Kundenverwaltung" -#: ../../../../web/AccountsMgmtC.class.php:266 +#: ../../../../web/AccountsMgmtC.class.php:267 #: ../../../../inc/themes/classic/customfields.inc:27 #: ../../../../inc/themes/material-blue/customfields.inc:30 msgid "Módulo" msgstr "Module" -#: ../../../../web/AccountsMgmtC.class.php:287 +#: ../../../../web/AccountsMgmtC.class.php:288 msgid "Eliminar Campo" msgstr "Feld löschen" -#: ../../../../web/ConfigC.class.php:166 +#: ../../../../web/ConfigC.class.php:168 msgid "Último backup" msgstr "Letztes Backup" -#: ../../../../web/ConfigC.class.php:166 +#: ../../../../web/ConfigC.class.php:168 msgid "No se encontraron backups" msgstr "Es existieren keine Backups" -#: ../../../../web/ConfigC.class.php:173 +#: ../../../../web/ConfigC.class.php:175 msgid "Última exportación" msgstr "letzter Export" -#: ../../../../web/ConfigC.class.php:173 +#: ../../../../web/ConfigC.class.php:175 msgid "No se encontró archivo de exportación" msgstr "" -#: ../../../../web/ConfigC.class.php:218 +#: ../../../../web/ConfigC.class.php:220 msgid "Información" msgstr "Information" -#: ../../../../web/EventlogC.class.php:93 +#: ../../../../web/EventlogC.class.php:95 msgid "Registro de eventos vaciado" msgstr "Protokol gelöscht" -#: ../../../../web/EventlogC.class.php:95 +#: ../../../../web/EventlogC.class.php:97 msgid "Error al vaciar el registro de eventos" msgstr "Fehler beim Löschen des Protokols" #: ../../../../web/MainC.class.php:159 -#: ../../../../web/UsersMgmtC.class.php:100 +#: ../../../../web/UsersMgmtC.class.php:101 msgid "Admin Aplicación" msgstr "Anwendungs-Administrator" @@ -2690,17 +2791,17 @@ msgid "Buscar" msgstr "Suchen" #: ../../../../web/MainC.class.php:189 -#: ../../../../web/UsersMgmtC.class.php:163 -msgid "Gestión de Usuarios" -msgstr "Benutzerverwaltung" +#, fuzzy +msgid "Usuarios y Accesos" +msgstr "Benutzer für Zugriff" #: ../../../../web/MainC.class.php:195 -msgid "Gestión de Clientes y Categorías" -msgstr "Kunden- und Kategorienverwaltung" +msgid "Elementos y Personalización" +msgstr "" #: ../../../../web/MainC.class.php:207 -#: ../../../../inc/themes/classic/eventlog.inc:4 -#: ../../../../inc/themes/material-blue/eventlog.inc:3 +#: ../../../../inc/themes/classic/eventlog.inc:2 +#: ../../../../inc/themes/material-blue/eventlog.inc:2 msgid "Registro de Eventos" msgstr "Protokol" @@ -2763,65 +2864,65 @@ msgstr "" msgid "Mejoras de seguridad en XSS e inyección SQL" msgstr "" -#: ../../../../web/MainC.class.php:284 +#: ../../../../web/MainC.class.php:283 msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" msgstr "Die PHP-Version is verwundbar für 'NULL Byte attack (CVE-2006-7243)'" -#: ../../../../web/MainC.class.php:285 +#: ../../../../web/MainC.class.php:284 msgid "Actualice la versión de PHP para usar sysPass de forma segura" msgstr "" "Bitte aktualisieren Sie ihre PHP Installation, um sysPass sicher betreiben " "zu können." -#: ../../../../web/MainC.class.php:292 +#: ../../../../web/MainC.class.php:291 msgid "No se encuentra el generador de números aleatorios." msgstr "Zufallszahlengenerator konnte nicht gefunden werden" -#: ../../../../web/MainC.class.php:293 +#: ../../../../web/MainC.class.php:292 msgid "" "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" msgstr "" "Ohne diese Funktion könnte an Angreifer Ihren Zugang oder Ihr Passwort " "zurücksetzen." -#: ../../../../web/MainC.class.php:312 +#: ../../../../web/MainC.class.php:311 msgid "Instalación finalizada" msgstr "Installation beendet" -#: ../../../../web/MainC.class.php:313 +#: ../../../../web/MainC.class.php:312 msgid "Pulse aquí para acceder" msgstr "" "Klicken Sie hier für den Zugriff" -#: ../../../../web/MainC.class.php:410 +#: ../../../../web/MainC.class.php:409 msgid "Descargar nueva versión" msgstr "Neu Version herunterladen" -#: ../../../../web/MainC.class.php:421 +#: ../../../../web/MainC.class.php:420 msgid "Avisos de sysPass" msgstr "" -#: ../../../../web/SearchC.class.php:285 +#: ../../../../web/SearchC.class.php:284 msgid "Ordenar por Cliente" msgstr "Nach Kunde sortieren" -#: ../../../../web/SearchC.class.php:291 +#: ../../../../web/SearchC.class.php:290 msgid "Ordenar por Nombre" msgstr "Nach Name sortieren" -#: ../../../../web/SearchC.class.php:297 +#: ../../../../web/SearchC.class.php:296 msgid "Ordenar por Categoría" msgstr "Nach Kategorie sortieren" -#: ../../../../web/SearchC.class.php:303 +#: ../../../../web/SearchC.class.php:302 msgid "Ordenar por Usuario" msgstr "Nach Benutzername sortieren" -#: ../../../../web/SearchC.class.php:309 +#: ../../../../web/SearchC.class.php:308 msgid "Ordenar por URL / IP" msgstr "Nach URL/IP sortieren" -#: ../../../../web/SearchC.class.php:310 +#: ../../../../web/SearchC.class.php:309 #: ../../../../inc/themes/classic/account.inc:61 #: ../../../../inc/themes/classic/editpass.inc:16 #: ../../../../inc/themes/classic/request.inc:13 @@ -2829,74 +2930,78 @@ msgstr "Nach URL/IP sortieren" #: ../../../../inc/themes/material-blue/account.inc:69 #: ../../../../inc/themes/material-blue/editpass.inc:17 #: ../../../../inc/themes/material-blue/request.inc:15 -#: ../../../../inc/themes/material-blue/search.inc:62 +#: ../../../../inc/themes/material-blue/search.inc:98 msgid "URL / IP" msgstr "URL/IP" -#: ../../../../web/UsersMgmtC.class.php:91 +#: ../../../../web/UsersMgmtC.class.php:92 msgid "Propiedades" msgstr "Eigenschaften" -#: ../../../../web/UsersMgmtC.class.php:104 +#: ../../../../web/UsersMgmtC.class.php:105 msgid "Admin Cuentas" msgstr "Konto-Administrator" -#: ../../../../web/UsersMgmtC.class.php:108 +#: ../../../../web/UsersMgmtC.class.php:109 #: ../../../../inc/themes/classic/users.inc:28 #: ../../../../inc/themes/material-blue/users.inc:34 msgid "Usuario de LDAP" msgstr "LDAP-Benutzer" -#: ../../../../web/UsersMgmtC.class.php:112 +#: ../../../../web/UsersMgmtC.class.php:113 #: ../../../../inc/themes/classic/users.inc:113 #: ../../../../inc/themes/material-blue/users.inc:151 #: ../../../../inc/themes/material-blue/users.inc:154 msgid "Deshabilitado" msgstr "inaktiv" -#: ../../../../web/UsersMgmtC.class.php:129 +#: ../../../../web/UsersMgmtC.class.php:130 msgid "Ver Detalles de Usuario" msgstr "Benutzerdetails anzeigen" -#: ../../../../web/UsersMgmtC.class.php:143 +#: ../../../../web/UsersMgmtC.class.php:144 msgid "Cambiar Clave de Usuario" msgstr "Benutzerpasswort Ändern" -#: ../../../../web/UsersMgmtC.class.php:222 +#: ../../../../web/UsersMgmtC.class.php:164 +msgid "Gestión de Usuarios" +msgstr "Benutzerverwaltung" + +#: ../../../../web/UsersMgmtC.class.php:223 msgid "Gestión de Grupos" msgstr "Gruppenverwaltung" -#: ../../../../web/UsersMgmtC.class.php:260 +#: ../../../../web/UsersMgmtC.class.php:261 msgid "Ver Detalles de Perfil" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:287 +#: ../../../../web/UsersMgmtC.class.php:288 msgid "Gestión de Perfiles" msgstr "Profilverwaltung" -#: ../../../../web/UsersMgmtC.class.php:407 +#: ../../../../web/UsersMgmtC.class.php:408 msgid "Ver token de Autorización" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:434 +#: ../../../../web/UsersMgmtC.class.php:435 msgid "Gestión de Autorizaciones API" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:456 +#: ../../../../web/UsersMgmtC.class.php:457 msgid "Token de autorización visualizado" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:457 +#: ../../../../web/UsersMgmtC.class.php:458 msgid "Autorizaciones" msgstr "" -#: ../../../../web/UsersPrefsC.class.php:92 +#: ../../../../web/UsersPrefsC.class.php:93 #: ../../../../inc/themes/classic/mail.inc:63 #: ../../../../inc/themes/material-blue/mail.inc:86 msgid "Seguridad" msgstr "Sicherheit" -#: ../../../../web/UsersPrefsC.class.php:115 +#: ../../../../web/UsersPrefsC.class.php:117 #: ../../../../inc/themes/classic/sessionbar.inc:9 msgid "Preferencias" msgstr "Vorlieben" @@ -2950,7 +3055,7 @@ msgstr "Passwort (Wiederholung)" #: ../../../../inc/themes/classic/search.inc:82 #: ../../../../inc/themes/classic/users.inc:91 #: ../../../../inc/themes/material-blue/account.inc:119 -#: ../../../../inc/themes/material-blue/search.inc:82 +#: ../../../../inc/themes/material-blue/search.inc:118 #: ../../../../inc/themes/material-blue/users.inc:116 msgid "Notas" msgstr "Bemerkungen" @@ -2963,7 +3068,7 @@ msgstr "Bemerkungen zum Konto" #: ../../../../inc/themes/classic/account.inc:108 #: ../../../../inc/themes/material-blue/account.inc:133 -#: ../../../../inc/themes/material-blue/search.inc:75 +#: ../../../../inc/themes/material-blue/search.inc:111 msgid "Permisos" msgstr "Berechtigungen" @@ -3009,60 +3114,60 @@ msgid "por" msgstr "durch" #: ../../../../inc/themes/classic/account.inc:289 -#: ../../../../inc/themes/material-blue/account.inc:336 +#: ../../../../inc/themes/material-blue/account.inc:338 msgid "Visitas" msgstr "Besuche" #: ../../../../inc/themes/classic/account.inc:293 -#: ../../../../inc/themes/material-blue/account.inc:340 +#: ../../../../inc/themes/material-blue/account.inc:342 msgid "Fecha Alta" msgstr "Datum hinzugefügt" #: ../../../../inc/themes/classic/account.inc:297 -#: ../../../../inc/themes/material-blue/account.inc:344 +#: ../../../../inc/themes/material-blue/account.inc:346 msgid "Creador" msgstr "Erzeuger" #: ../../../../inc/themes/classic/account.inc:301 #: ../../../../inc/themes/material-blue/account.inc:203 -#: ../../../../inc/themes/material-blue/account.inc:348 +#: ../../../../inc/themes/material-blue/account.inc:350 msgid "Grupo Principal" msgstr "Hauptgruppe" #: ../../../../inc/themes/classic/account.inc:306 -#: ../../../../inc/themes/material-blue/account.inc:353 +#: ../../../../inc/themes/material-blue/account.inc:355 msgid "Usuarios Secundarios" msgstr "Unter-Benutzer" #: ../../../../inc/themes/classic/account.inc:325 -#: ../../../../inc/themes/material-blue/account.inc:372 +#: ../../../../inc/themes/material-blue/account.inc:374 msgid "Grupos Secundarios" msgstr "Untergruppe" #: ../../../../inc/themes/classic/account.inc:345 -#: ../../../../inc/themes/material-blue/account.inc:392 +#: ../../../../inc/themes/material-blue/account.inc:394 msgid "Fecha Edición" msgstr "Änderungsdatum" #: ../../../../inc/themes/classic/account.inc:349 -#: ../../../../inc/themes/material-blue/account.inc:396 +#: ../../../../inc/themes/material-blue/account.inc:398 msgid "Editor" msgstr "Editor" #: ../../../../inc/themes/classic/account.inc:376 -#: ../../../../inc/themes/material-blue/account.inc:459 +#: ../../../../inc/themes/material-blue/account.inc:461 msgid "Restaurar cuenta desde este punto" msgstr "Wiederherstellen Konto von diesem Punkt" #: ../../../../inc/themes/classic/account.inc:388 #: ../../../../inc/themes/classic/search.inc:113 -#: ../../../../inc/themes/material-blue/account.inc:426 -#: ../../../../inc/themes/material-blue/search.inc:117 +#: ../../../../inc/themes/material-blue/account.inc:428 +#: ../../../../inc/themes/material-blue/search.inc:154 msgid "Copiar Clave en Portapapeles" msgstr "Passwort in die Zwischenablage kopieren" #: ../../../../inc/themes/classic/account.inc:403 -#: ../../../../inc/themes/material-blue/account.inc:439 +#: ../../../../inc/themes/material-blue/account.inc:441 msgid "Ver Actual" msgstr "Ansehen" @@ -3076,15 +3181,15 @@ msgstr "Zurück" #: ../../../../inc/themes/classic/account.inc:415 #: ../../../../inc/themes/classic/search.inc:125 -#: ../../../../inc/themes/material-blue/account.inc:449 -#: ../../../../inc/themes/material-blue/search.inc:128 +#: ../../../../inc/themes/material-blue/account.inc:451 +#: ../../../../inc/themes/material-blue/search.inc:166 msgid "Modificar Cuenta" msgstr "Konto ändern" #: ../../../../inc/themes/classic/account.inc:420 #: ../../../../inc/themes/classic/search.inc:146 -#: ../../../../inc/themes/material-blue/account.inc:453 -#: ../../../../inc/themes/material-blue/search.inc:148 +#: ../../../../inc/themes/material-blue/account.inc:455 +#: ../../../../inc/themes/material-blue/search.inc:187 msgid "Solicitar Modificación" msgstr "Änderung initiiert" @@ -3094,7 +3199,7 @@ msgstr "Änderung initiiert" #: ../../../../inc/themes/classic/customers.inc:62 #: ../../../../inc/themes/classic/customfields.inc:63 #: ../../../../inc/themes/classic/editpass.inc:50 -#: ../../../../inc/themes/classic/encryption.inc:102 +#: ../../../../inc/themes/classic/encryption.inc:99 #: ../../../../inc/themes/classic/groups.inc:77 #: ../../../../inc/themes/classic/ldap.inc:229 #: ../../../../inc/themes/classic/mail.inc:107 @@ -3105,7 +3210,7 @@ msgstr "Änderung initiiert" #: ../../../../inc/themes/classic/users.inc:189 #: ../../../../inc/themes/classic/userspass.inc:35 #: ../../../../inc/themes/classic/wiki.inc:110 -#: ../../../../inc/themes/material-blue/account.inc:465 +#: ../../../../inc/themes/material-blue/account.inc:467 #: ../../../../inc/themes/material-blue/categories.inc:72 #: ../../../../inc/themes/material-blue/config.inc:425 #: ../../../../inc/themes/material-blue/customers.inc:73 @@ -3114,7 +3219,7 @@ msgstr "Änderung initiiert" #: ../../../../inc/themes/material-blue/groups.inc:88 #: ../../../../inc/themes/material-blue/ldap.inc:257 #: ../../../../inc/themes/material-blue/mail.inc:145 -#: ../../../../inc/themes/material-blue/preferences.inc:101 +#: ../../../../inc/themes/material-blue/preferences.inc:117 #: ../../../../inc/themes/material-blue/profiles.inc:177 #: ../../../../inc/themes/material-blue/security.inc:61 #: ../../../../inc/themes/material-blue/tokens.inc:63 @@ -3125,12 +3230,12 @@ msgid "Guardar" msgstr "Speichern" #: ../../../../inc/themes/classic/account.inc:437 -#: ../../../../inc/themes/material-blue/account.inc:475 +#: ../../../../inc/themes/material-blue/account.inc:477 msgid "Seleccionar grupos secundarios" msgstr "Untergruppe auswählen" #: ../../../../inc/themes/classic/account.inc:441 -#: ../../../../inc/themes/material-blue/account.inc:478 +#: ../../../../inc/themes/material-blue/account.inc:480 msgid "Seleccionar usuarios" msgstr "Benutzer auswählen" @@ -3157,17 +3262,17 @@ msgstr "Es existieren keine Backups zum Herunterladen" #: ../../../../inc/themes/classic/backup.inc:49 #: ../../../../inc/themes/classic/backup.inc:113 #: ../../../../inc/themes/classic/backup.inc:117 -#: ../../../../inc/themes/classic/encryption.inc:93 -#: ../../../../inc/themes/classic/encryption.inc:97 -#: ../../../../inc/themes/classic/encryption.inc:162 -#: ../../../../inc/themes/classic/encryption.inc:166 -#: ../../../../inc/themes/classic/import.inc:15 -#: ../../../../inc/themes/classic/import.inc:37 -#: ../../../../inc/themes/classic/import.inc:51 -#: ../../../../inc/themes/classic/import.inc:97 -#: ../../../../inc/themes/classic/import.inc:118 -#: ../../../../inc/themes/classic/import.inc:170 -#: ../../../../inc/themes/classic/import.inc:174 +#: ../../../../inc/themes/classic/encryption.inc:90 +#: ../../../../inc/themes/classic/encryption.inc:94 +#: ../../../../inc/themes/classic/encryption.inc:159 +#: ../../../../inc/themes/classic/encryption.inc:163 +#: ../../../../inc/themes/classic/import.inc:12 +#: ../../../../inc/themes/classic/import.inc:34 +#: ../../../../inc/themes/classic/import.inc:48 +#: ../../../../inc/themes/classic/import.inc:94 +#: ../../../../inc/themes/classic/import.inc:115 +#: ../../../../inc/themes/classic/import.inc:167 +#: ../../../../inc/themes/classic/import.inc:171 #: ../../../../inc/themes/classic/js-common.inc:13 #: ../../../../inc/themes/classic/ldap.inc:13 #: ../../../../inc/themes/classic/ldap.inc:33 @@ -3186,12 +3291,12 @@ msgstr "Es existieren keine Backups zum Herunterladen" #: ../../../../inc/themes/material-blue/backup.inc:51 #: ../../../../inc/themes/material-blue/backup.inc:129 #: ../../../../inc/themes/material-blue/backup.inc:133 -#: ../../../../inc/themes/material-blue/encryption.inc:107 -#: ../../../../inc/themes/material-blue/encryption.inc:111 -#: ../../../../inc/themes/material-blue/encryption.inc:181 -#: ../../../../inc/themes/material-blue/encryption.inc:185 -#: ../../../../inc/themes/material-blue/import.inc:99 -#: ../../../../inc/themes/material-blue/import.inc:103 +#: ../../../../inc/themes/material-blue/encryption.inc:104 +#: ../../../../inc/themes/material-blue/encryption.inc:108 +#: ../../../../inc/themes/material-blue/encryption.inc:178 +#: ../../../../inc/themes/material-blue/encryption.inc:182 +#: ../../../../inc/themes/material-blue/import.inc:96 +#: ../../../../inc/themes/material-blue/import.inc:100 #: ../../../../inc/themes/material-blue/js-common.inc:11 msgid "Ayuda" msgstr "Hilfe" @@ -3517,13 +3622,13 @@ msgstr "" msgid "Obligatorio" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:8 +#: ../../../../inc/themes/classic/encryption.inc:5 #: ../../../../inc/themes/classic/install.inc:46 #: ../../../../inc/themes/classic/install.inc:50 #: ../../../../inc/themes/classic/install.inc:51 #: ../../../../inc/themes/classic/login.inc:15 #: ../../../../inc/themes/classic/login.inc:27 -#: ../../../../inc/themes/material-blue/encryption.inc:8 +#: ../../../../inc/themes/material-blue/encryption.inc:5 #: ../../../../inc/themes/material-blue/install.inc:51 #: ../../../../inc/themes/material-blue/install.inc:58 #: ../../../../inc/themes/material-blue/login.inc:26 @@ -3531,170 +3636,174 @@ msgstr "" msgid "Clave Maestra" msgstr "Master-Passwort" -#: ../../../../inc/themes/classic/encryption.inc:16 -#: ../../../../inc/themes/classic/encryption.inc:116 -#: ../../../../inc/themes/material-blue/encryption.inc:16 -#: ../../../../inc/themes/material-blue/encryption.inc:131 +#: ../../../../inc/themes/classic/encryption.inc:13 +#: ../../../../inc/themes/classic/encryption.inc:113 +#: ../../../../inc/themes/material-blue/encryption.inc:13 +#: ../../../../inc/themes/material-blue/encryption.inc:128 msgid "Último cambio" msgstr "Letzte Änderung" -#: ../../../../inc/themes/classic/encryption.inc:25 -#: ../../../../inc/themes/material-blue/encryption.inc:25 -#: ../../../../inc/themes/material-blue/encryption.inc:31 +#: ../../../../inc/themes/classic/encryption.inc:22 +#: ../../../../inc/themes/material-blue/encryption.inc:22 +#: ../../../../inc/themes/material-blue/encryption.inc:28 msgid "Clave Maestra actual" msgstr "Aktuelles Master-Passwort" -#: ../../../../inc/themes/classic/encryption.inc:34 -#: ../../../../inc/themes/material-blue/encryption.inc:37 -#: ../../../../inc/themes/material-blue/encryption.inc:43 +#: ../../../../inc/themes/classic/encryption.inc:31 +#: ../../../../inc/themes/material-blue/encryption.inc:34 +#: ../../../../inc/themes/material-blue/encryption.inc:40 msgid "Nueva Clave Maestra" msgstr "Neues Master-Passwort" -#: ../../../../inc/themes/classic/encryption.inc:43 -#: ../../../../inc/themes/material-blue/encryption.inc:49 -#: ../../../../inc/themes/material-blue/encryption.inc:55 +#: ../../../../inc/themes/classic/encryption.inc:40 +#: ../../../../inc/themes/material-blue/encryption.inc:46 +#: ../../../../inc/themes/material-blue/encryption.inc:52 msgid "Nueva Clave Maestra (repetir)" msgstr "Neues Master-Passwort (Wiederholung)" -#: ../../../../inc/themes/classic/encryption.inc:51 -#: ../../../../inc/themes/material-blue/encryption.inc:61 +#: ../../../../inc/themes/classic/encryption.inc:48 +#: ../../../../inc/themes/material-blue/encryption.inc:58 msgid "No modificar cuentas" msgstr "Konten nicht verändern" -#: ../../../../inc/themes/classic/encryption.inc:56 -#: ../../../../inc/themes/material-blue/encryption.inc:66 +#: ../../../../inc/themes/classic/encryption.inc:53 +#: ../../../../inc/themes/material-blue/encryption.inc:63 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "Setze Master-Passwort ohne die Konten neu zu verschlüsseln" -#: ../../../../inc/themes/classic/encryption.inc:67 -#: ../../../../inc/themes/material-blue/encryption.inc:79 +#: ../../../../inc/themes/classic/encryption.inc:64 +#: ../../../../inc/themes/material-blue/encryption.inc:76 msgid "Confirmar cambio" msgstr "Änderung bestätigen" +#: ../../../../inc/themes/classic/encryption.inc:67 #: ../../../../inc/themes/classic/encryption.inc:70 #: ../../../../inc/themes/classic/encryption.inc:73 -#: ../../../../inc/themes/classic/encryption.inc:76 -#: ../../../../inc/themes/classic/import.inc:67 +#: ../../../../inc/themes/classic/import.inc:64 #: ../../../../inc/themes/classic/security.inc:43 msgid "Atención" msgstr "Warnung" -#: ../../../../inc/themes/classic/encryption.inc:71 -#: ../../../../inc/themes/material-blue/encryption.inc:83 +#: ../../../../inc/themes/classic/encryption.inc:68 +#: ../../../../inc/themes/material-blue/encryption.inc:80 msgid "Guarde la nueva clave en un lugar seguro." msgstr "Sie sollten das neue Passwort an einem sicheren Ort aufbewahren" -#: ../../../../inc/themes/classic/encryption.inc:74 -#: ../../../../inc/themes/material-blue/encryption.inc:86 +#: ../../../../inc/themes/classic/encryption.inc:71 +#: ../../../../inc/themes/material-blue/encryption.inc:83 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "Alle Passwörter der Konten werden neu verschlüsselt." -#: ../../../../inc/themes/classic/encryption.inc:77 -#: ../../../../inc/themes/material-blue/encryption.inc:89 +#: ../../../../inc/themes/classic/encryption.inc:74 +#: ../../../../inc/themes/material-blue/encryption.inc:86 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "All Benutzer müssen das neue Master-Passwort eingeben." -#: ../../../../inc/themes/classic/encryption.inc:98 -#: ../../../../inc/themes/material-blue/encryption.inc:112 +#: ../../../../inc/themes/classic/encryption.inc:95 +#: ../../../../inc/themes/material-blue/encryption.inc:109 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:100 -#: ../../../../inc/themes/material-blue/encryption.inc:114 +#: ../../../../inc/themes/classic/encryption.inc:97 +#: ../../../../inc/themes/material-blue/encryption.inc:111 msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " "que incluya números, letras y símbolos." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:108 -#: ../../../../inc/themes/material-blue/encryption.inc:124 +#: ../../../../inc/themes/classic/encryption.inc:105 +#: ../../../../inc/themes/material-blue/encryption.inc:121 msgid "Clave Temporal" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:119 -#: ../../../../inc/themes/classic/encryption.inc:130 -#: ../../../../inc/themes/material-blue/encryption.inc:134 -#: ../../../../inc/themes/material-blue/encryption.inc:145 +#: ../../../../inc/themes/classic/encryption.inc:116 +#: ../../../../inc/themes/classic/encryption.inc:127 +#: ../../../../inc/themes/material-blue/encryption.inc:131 +#: ../../../../inc/themes/material-blue/encryption.inc:142 msgid "No generada" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:124 -#: ../../../../inc/themes/material-blue/encryption.inc:139 +#: ../../../../inc/themes/classic/encryption.inc:121 +#: ../../../../inc/themes/material-blue/encryption.inc:136 msgid "Válido hasta" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:136 -#: ../../../../inc/themes/material-blue/encryption.inc:151 -#: ../../../../inc/themes/material-blue/encryption.inc:157 +#: ../../../../inc/themes/classic/encryption.inc:133 +#: ../../../../inc/themes/material-blue/encryption.inc:148 +#: ../../../../inc/themes/material-blue/encryption.inc:154 msgid "Validez (s)" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:139 +#: ../../../../inc/themes/classic/encryption.inc:136 msgid "Validez" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:167 -#: ../../../../inc/themes/material-blue/encryption.inc:186 +#: ../../../../inc/themes/classic/encryption.inc:164 +#: ../../../../inc/themes/material-blue/encryption.inc:183 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " "la clave maestra original." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:169 -#: ../../../../inc/themes/material-blue/encryption.inc:190 +#: ../../../../inc/themes/classic/encryption.inc:166 +#: ../../../../inc/themes/material-blue/encryption.inc:187 msgid "Generar" msgstr "" -#: ../../../../inc/themes/classic/eventlog.inc:8 +#: ../../../../inc/themes/classic/eventlog.inc:6 #: ../../../../inc/themes/classic/search.inc:3 -#: ../../../../inc/themes/material-blue/eventlog.inc:7 +#: ../../../../inc/themes/material-blue/eventlog.inc:6 #: ../../../../inc/themes/material-blue/search.inc:3 msgid "No se encontraron registros" msgstr "Keine Datensätze gefunden" -#: ../../../../inc/themes/classic/eventlog.inc:19 -#: ../../../../inc/themes/material-blue/eventlog.inc:18 +#: ../../../../inc/themes/classic/eventlog.inc:17 +#: ../../../../inc/themes/material-blue/eventlog.inc:17 msgid "Fecha / Hora" msgstr "Datum/Zeit" -#: ../../../../inc/themes/classic/eventlog.inc:22 -#: ../../../../inc/themes/material-blue/eventlog.inc:21 +#: ../../../../inc/themes/classic/eventlog.inc:20 +#: ../../../../inc/themes/material-blue/eventlog.inc:20 msgid "Evento" msgstr "Ereignis" -#: ../../../../inc/themes/classic/eventlog.inc:28 -#: ../../../../inc/themes/material-blue/eventlog.inc:27 +#: ../../../../inc/themes/classic/eventlog.inc:26 +#: ../../../../inc/themes/material-blue/eventlog.inc:26 msgid "IP" msgstr "IP" -#: ../../../../inc/themes/classic/eventlog.inc:86 +#: ../../../../inc/themes/classic/eventlog.inc:84 #: ../../../../inc/themes/classic/search.inc:169 -#: ../../../../inc/themes/material-blue/eventlog.inc:85 -#: ../../../../inc/themes/material-blue/search.inc:171 +#: ../../../../inc/themes/material-blue/eventlog.inc:84 +#: ../../../../inc/themes/material-blue/search.inc:20 +#: ../../../../inc/themes/material-blue/search.inc:209 msgid "Primera página" msgstr "Erste Seite" -#: ../../../../inc/themes/classic/eventlog.inc:88 +#: ../../../../inc/themes/classic/eventlog.inc:86 #: ../../../../inc/themes/classic/search.inc:171 -#: ../../../../inc/themes/material-blue/eventlog.inc:87 -#: ../../../../inc/themes/material-blue/search.inc:173 +#: ../../../../inc/themes/material-blue/eventlog.inc:86 +#: ../../../../inc/themes/material-blue/search.inc:22 +#: ../../../../inc/themes/material-blue/search.inc:211 msgid "Página anterior" msgstr "Vorherige Seite" -#: ../../../../inc/themes/classic/eventlog.inc:93 +#: ../../../../inc/themes/classic/eventlog.inc:91 #: ../../../../inc/themes/classic/search.inc:176 -#: ../../../../inc/themes/material-blue/eventlog.inc:92 -#: ../../../../inc/themes/material-blue/search.inc:178 +#: ../../../../inc/themes/material-blue/eventlog.inc:91 +#: ../../../../inc/themes/material-blue/search.inc:27 +#: ../../../../inc/themes/material-blue/search.inc:216 msgid "Página siguiente" msgstr "Nächste Seite" -#: ../../../../inc/themes/classic/eventlog.inc:95 +#: ../../../../inc/themes/classic/eventlog.inc:93 #: ../../../../inc/themes/classic/search.inc:178 -#: ../../../../inc/themes/material-blue/eventlog.inc:94 -#: ../../../../inc/themes/material-blue/search.inc:180 +#: ../../../../inc/themes/material-blue/eventlog.inc:93 +#: ../../../../inc/themes/material-blue/search.inc:29 +#: ../../../../inc/themes/material-blue/search.inc:218 msgid "Última página" msgstr "Letzte Seite" @@ -3744,154 +3853,154 @@ msgstr "Gruppenname" msgid "Descripción del grupo" msgstr "Beschreibung der Gruppe" -#: ../../../../inc/themes/classic/import.inc:7 -#: ../../../../inc/themes/material-blue/import.inc:121 +#: ../../../../inc/themes/classic/import.inc:4 +#: ../../../../inc/themes/material-blue/import.inc:118 msgid "Importar phpPMS" msgstr "phpPMS Import" -#: ../../../../inc/themes/classic/import.inc:14 +#: ../../../../inc/themes/classic/import.inc:11 #: ../../../../inc/themes/classic/install.inc:63 #: ../../../../inc/themes/classic/install.inc:64 -#: ../../../../inc/themes/material-blue/import.inc:128 -#: ../../../../inc/themes/material-blue/import.inc:140 +#: ../../../../inc/themes/material-blue/import.inc:125 +#: ../../../../inc/themes/material-blue/import.inc:137 msgid "Usuario BBDD" msgstr "Datenbankbenutzer" -#: ../../../../inc/themes/classic/import.inc:18 -#: ../../../../inc/themes/material-blue/import.inc:132 +#: ../../../../inc/themes/classic/import.inc:15 +#: ../../../../inc/themes/material-blue/import.inc:129 msgid "Indicar el usuario de conexión a la base de datos de phpPMS." msgstr "" -#: ../../../../inc/themes/classic/import.inc:28 +#: ../../../../inc/themes/classic/import.inc:25 #: ../../../../inc/themes/classic/install.inc:71 #: ../../../../inc/themes/classic/install.inc:73 -#: ../../../../inc/themes/material-blue/import.inc:146 -#: ../../../../inc/themes/material-blue/import.inc:152 +#: ../../../../inc/themes/material-blue/import.inc:143 +#: ../../../../inc/themes/material-blue/import.inc:149 msgid "Clave BBDD" msgstr "Datenbank-Passwort" -#: ../../../../inc/themes/classic/import.inc:36 +#: ../../../../inc/themes/classic/import.inc:33 #: ../../../../inc/themes/classic/install.inc:78 #: ../../../../inc/themes/classic/install.inc:79 -#: ../../../../inc/themes/material-blue/import.inc:158 -#: ../../../../inc/themes/material-blue/import.inc:170 +#: ../../../../inc/themes/material-blue/import.inc:155 +#: ../../../../inc/themes/material-blue/import.inc:167 msgid "Nombre BBDD" msgstr "Datenbankname" -#: ../../../../inc/themes/classic/import.inc:40 -#: ../../../../inc/themes/material-blue/import.inc:162 +#: ../../../../inc/themes/classic/import.inc:37 +#: ../../../../inc/themes/material-blue/import.inc:159 msgid "Indicar el nombre de la base de datos de phpPMS." msgstr "" -#: ../../../../inc/themes/classic/import.inc:50 +#: ../../../../inc/themes/classic/import.inc:47 #: ../../../../inc/themes/classic/install.inc:87 #: ../../../../inc/themes/classic/install.inc:88 -#: ../../../../inc/themes/material-blue/import.inc:176 -#: ../../../../inc/themes/material-blue/import.inc:188 +#: ../../../../inc/themes/material-blue/import.inc:173 +#: ../../../../inc/themes/material-blue/import.inc:185 msgid "Servidor BBDD" msgstr "Datenbank-Server" -#: ../../../../inc/themes/classic/import.inc:54 -#: ../../../../inc/themes/material-blue/import.inc:180 +#: ../../../../inc/themes/classic/import.inc:51 +#: ../../../../inc/themes/material-blue/import.inc:177 msgid "Indicar el servidor de la base de datos de phpPMS." msgstr "" -#: ../../../../inc/themes/classic/import.inc:64 -#: ../../../../inc/themes/material-blue/import.inc:194 +#: ../../../../inc/themes/classic/import.inc:61 +#: ../../../../inc/themes/material-blue/import.inc:191 msgid "Confirmar" msgstr "Bestätigen" -#: ../../../../inc/themes/classic/import.inc:68 -#: ../../../../inc/themes/material-blue/import.inc:198 +#: ../../../../inc/themes/classic/import.inc:65 +#: ../../../../inc/themes/material-blue/import.inc:195 msgid "Los datos actuales serán borrados (excepto el usuario actual)" msgstr "Daten werden gelöscht (mit Ausnahme des aktuellen Benutzers)" -#: ../../../../inc/themes/classic/import.inc:83 +#: ../../../../inc/themes/classic/import.inc:80 msgid "Iniciar" msgstr "Start" -#: ../../../../inc/themes/classic/import.inc:89 -#: ../../../../inc/themes/material-blue/import.inc:7 +#: ../../../../inc/themes/classic/import.inc:86 +#: ../../../../inc/themes/material-blue/import.inc:4 msgid "Importar CSV/XML" msgstr "CSV/XML Import" -#: ../../../../inc/themes/classic/import.inc:96 -#: ../../../../inc/themes/material-blue/import.inc:14 +#: ../../../../inc/themes/classic/import.inc:93 +#: ../../../../inc/themes/material-blue/import.inc:11 msgid "Usuario por Defecto" msgstr "" -#: ../../../../inc/themes/classic/import.inc:100 -#: ../../../../inc/themes/material-blue/import.inc:18 +#: ../../../../inc/themes/classic/import.inc:97 +#: ../../../../inc/themes/material-blue/import.inc:15 msgid "Define el usuario por defecto para las cuentas importadas." msgstr "" -#: ../../../../inc/themes/classic/import.inc:117 +#: ../../../../inc/themes/classic/import.inc:114 #: ../../../../inc/themes/classic/ldap.inc:144 -#: ../../../../inc/themes/material-blue/import.inc:36 +#: ../../../../inc/themes/material-blue/import.inc:33 #: ../../../../inc/themes/material-blue/ldap.inc:170 msgid "Grupo por Defecto" msgstr "Standard-Gruppe" -#: ../../../../inc/themes/classic/import.inc:121 -#: ../../../../inc/themes/material-blue/import.inc:40 +#: ../../../../inc/themes/classic/import.inc:118 +#: ../../../../inc/themes/material-blue/import.inc:37 msgid "Define el grupo por defecto para las cuentas importadas." msgstr "" -#: ../../../../inc/themes/classic/import.inc:138 -#: ../../../../inc/themes/material-blue/import.inc:58 -#: ../../../../inc/themes/material-blue/import.inc:64 +#: ../../../../inc/themes/classic/import.inc:135 +#: ../../../../inc/themes/material-blue/import.inc:55 +#: ../../../../inc/themes/material-blue/import.inc:61 msgid "Clave de Importación" msgstr "" -#: ../../../../inc/themes/classic/import.inc:146 -#: ../../../../inc/themes/material-blue/import.inc:70 -#: ../../../../inc/themes/material-blue/import.inc:76 +#: ../../../../inc/themes/classic/import.inc:143 +#: ../../../../inc/themes/material-blue/import.inc:67 +#: ../../../../inc/themes/material-blue/import.inc:73 msgid "Delimitador CSV" msgstr "" -#: ../../../../inc/themes/classic/import.inc:162 -#: ../../../../inc/themes/material-blue/import.inc:90 +#: ../../../../inc/themes/classic/import.inc:159 +#: ../../../../inc/themes/material-blue/import.inc:87 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Dateien hier fallen lassen oder zum selektieren anklicken" -#: ../../../../inc/themes/classic/import.inc:175 +#: ../../../../inc/themes/classic/import.inc:172 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "arhcivos XML y CSV." msgstr "" -#: ../../../../inc/themes/classic/import.inc:177 -#: ../../../../inc/themes/material-blue/import.inc:106 +#: ../../../../inc/themes/classic/import.inc:174 +#: ../../../../inc/themes/material-blue/import.inc:103 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "" -#: ../../../../inc/themes/classic/import.inc:179 -#: ../../../../inc/themes/material-blue/import.inc:108 +#: ../../../../inc/themes/classic/import.inc:176 +#: ../../../../inc/themes/material-blue/import.inc:105 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "" -#: ../../../../inc/themes/classic/import.inc:181 -#: ../../../../inc/themes/material-blue/import.inc:110 +#: ../../../../inc/themes/classic/import.inc:178 +#: ../../../../inc/themes/material-blue/import.inc:107 msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " "KeePass o KeePassX y la categoría igual al nombre de los grupos." msgstr "" -#: ../../../../inc/themes/classic/import.inc:183 -#: ../../../../inc/themes/material-blue/import.inc:112 +#: ../../../../inc/themes/classic/import.inc:180 +#: ../../../../inc/themes/material-blue/import.inc:109 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "" -#: ../../../../inc/themes/classic/import.inc:185 -#: ../../../../inc/themes/material-blue/import.inc:114 +#: ../../../../inc/themes/classic/import.inc:182 +#: ../../../../inc/themes/material-blue/import.inc:111 msgid "nombre_de_cuenta;cliente;categoría;url;usuario;clave;notas" msgstr "konto_name;kunde;kategorie;url;benutzer;passwort;bemerkungen" -#: ../../../../inc/themes/classic/import.inc:187 -#: ../../../../inc/themes/material-blue/import.inc:116 +#: ../../../../inc/themes/classic/import.inc:184 +#: ../../../../inc/themes/material-blue/import.inc:113 msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " "automáticamente." @@ -4149,7 +4258,7 @@ msgstr "Erlaube Anfragen per E-Mail" #: ../../../../inc/themes/classic/mgmttabs.inc:70 #: ../../../../inc/themes/classic/search.inc:120 -#: ../../../../inc/themes/material-blue/search.inc:123 +#: ../../../../inc/themes/material-blue/search.inc:160 msgid "Más Acciones" msgstr "Weitere Aktionen" @@ -4167,12 +4276,6 @@ msgstr "Benutzer-Anmeldung" msgid "Email del Usuario" msgstr "Benutzer-E-Mail" -#: ../../../../inc/themes/classic/passreset.inc:22 -#: ../../../../inc/themes/classic/users.inc:61 -#: ../../../../inc/themes/material-blue/users.inc:71 -msgid "Email" -msgstr "E-Mail" - #: ../../../../inc/themes/classic/passreset.inc:27 msgid "Nueva Clave" msgstr "Neues Passwort" @@ -4395,7 +4498,7 @@ msgid "Descripción de la petición" msgstr "Beschreibung der Anfrage" #: ../../../../inc/themes/classic/request.inc:33 -#: ../../../../inc/themes/material-blue/account.inc:443 +#: ../../../../inc/themes/material-blue/account.inc:445 #: ../../../../inc/themes/material-blue/editpass.inc:55 #: ../../../../inc/themes/material-blue/mgmttabs.inc:13 #: ../../../../inc/themes/material-blue/request.inc:42 @@ -4408,32 +4511,34 @@ msgid "Enviar" msgstr "Senden" #: ../../../../inc/themes/classic/search.inc:33 -#: ../../../../inc/themes/material-blue/search.inc:29 +#: ../../../../inc/themes/material-blue/search.inc:65 msgid "Buscar en Wiki" msgstr "Im Wiki suchen" #: ../../../../inc/themes/classic/search.inc:69 -#: ../../../../inc/themes/material-blue/search.inc:65 +#: ../../../../inc/themes/material-blue/search.inc:101 msgid "Abrir enlace a" msgstr "Öffne Verweis nach" #: ../../../../inc/themes/classic/search.inc:87 -#: ../../../../inc/themes/material-blue/search.inc:89 +#: ../../../../inc/themes/material-blue/search.inc:125 msgid "Archivos adjuntos" msgstr "Anhänge" #: ../../../../inc/themes/classic/search.inc:94 -#: ../../../../inc/themes/material-blue/search.inc:98 +#: ../../../../inc/themes/material-blue/search.inc:134 msgid "Enlace a Wiki" msgstr "Verweis zum Wiki" #: ../../../../inc/themes/classic/search.inc:159 -#: ../../../../inc/themes/material-blue/search.inc:161 +#: ../../../../inc/themes/material-blue/search.inc:10 +#: ../../../../inc/themes/material-blue/search.inc:199 msgid "Filtro ON" msgstr "Filter Eingeschaltet" #: ../../../../inc/themes/classic/search.inc:163 -#: ../../../../inc/themes/material-blue/search.inc:165 +#: ../../../../inc/themes/material-blue/search.inc:14 +#: ../../../../inc/themes/material-blue/search.inc:203 msgid "Global ON" msgstr "Global eingeschaltet" @@ -4506,7 +4611,6 @@ msgid "" msgstr "" #: ../../../../inc/themes/classic/security.inc:29 -#: ../../../../inc/themes/material-blue/preferences.inc:86 #: ../../../../inc/themes/material-blue/security.inc:27 msgid "Activar" msgstr "Aktivieren" @@ -4728,8 +4832,8 @@ msgstr "Passwort (wiederholen)" #: ../../../../inc/themes/material-blue/backup.inc:58 #: ../../../../inc/themes/material-blue/backup.inc:144 -#: ../../../../inc/themes/material-blue/encryption.inc:118 -#: ../../../../inc/themes/material-blue/import.inc:217 +#: ../../../../inc/themes/material-blue/encryption.inc:115 +#: ../../../../inc/themes/material-blue/import.inc:214 msgid "Realizar" msgstr "Ausführen" @@ -4786,7 +4890,7 @@ msgstr "" msgid "Preferencias de usuario" msgstr "Benutzereinstellungen" -#: ../../../../inc/themes/material-blue/import.inc:104 +#: ../../../../inc/themes/material-blue/import.inc:101 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "archivos XML y CSV." @@ -4830,6 +4934,14 @@ msgid "" "cuentas sin permisos." msgstr "" +#: ../../../../inc/themes/material-blue/preferences.inc:91 +msgid "Barra de navegación superior" +msgstr "" + +#: ../../../../inc/themes/material-blue/preferences.inc:95 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "" + #: ../../../../inc/themes/material-blue/profiles.inc:25 msgid "Crear nueva cuenta" msgstr "Neuen Account erstellen" @@ -4861,3 +4973,6 @@ msgstr "Backup erstellen und exportieren" #: ../../../../inc/themes/material-blue/security.inc:4 msgid "Autentificación" msgstr "Authentifizierung" + +#~ msgid "Gestión de Clientes y Categorías" +#~ msgstr "Kunden- und Kategorienverwaltung" diff --git a/inc/locales/en_US/LC_MESSAGES/messages.mo b/inc/locales/en_US/LC_MESSAGES/messages.mo index 6291a885..5c4979d3 100644 Binary files a/inc/locales/en_US/LC_MESSAGES/messages.mo and b/inc/locales/en_US/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/en_US/LC_MESSAGES/messages.po b/inc/locales/en_US/LC_MESSAGES/messages.po index 150f449a..bf15e558 100644 --- a/inc/locales/en_US/LC_MESSAGES/messages.po +++ b/inc/locales/en_US/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-09 00:26+0100\n" -"PO-Revision-Date: 2015-10-09 00:28+0100\n" +"POT-Creation-Date: 2015-10-09 01:00+0100\n" +"PO-Revision-Date: 2015-10-09 01:00+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: nuxsmin@syspass.org\n" "Language: en_US\n" @@ -4994,18 +4994,3 @@ msgstr "Make a backup and export" #: ../../../../inc/themes/material-blue/security.inc:4 msgid "Autentificación" msgstr "Authentication" - -#~ msgid "Gestión de Clientes y Categorías" -#~ msgstr "Customer and Categories management" - -#~ msgid "Reset" -#~ msgstr "Restablecer" - -#~ msgid "Error en clave RSA" -#~ msgstr "Error on RSA key" - -#~ msgid "Nueva Clave (Verificar)" -#~ msgstr "New Password (Verify)" - -#~ msgid "Clave (Verificar)" -#~ msgstr "Password (Verify)" diff --git a/inc/locales/fr_FR/LC_MESSAGES/messages.mo b/inc/locales/fr_FR/LC_MESSAGES/messages.mo index f90deafd..2a930303 100644 Binary files a/inc/locales/fr_FR/LC_MESSAGES/messages.mo and b/inc/locales/fr_FR/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/fr_FR/LC_MESSAGES/messages.po b/inc/locales/fr_FR/LC_MESSAGES/messages.po index 0e42e536..01d07861 100644 --- a/inc/locales/fr_FR/LC_MESSAGES/messages.po +++ b/inc/locales/fr_FR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-05 02:33+0100\n" -"PO-Revision-Date: 2015-10-05 02:34+0100\n" +"POT-Creation-Date: 2015-10-09 00:50+0100\n" +"PO-Revision-Date: 2015-10-09 00:51+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: \n" "Language: fr_FR\n" @@ -16,127 +16,127 @@ msgstr "" "X-Generator: Poedit 1.6.10\n" "X-Poedit-SearchPath-0: ../../../..\n" -#: ../../../../ajax/ajax_2fa.php:35 ../../../../ajax/ajax_accountSave.php:41 -#: ../../../../ajax/ajax_appMgmtSave.php:42 -#: ../../../../ajax/ajax_backup.php:39 ../../../../ajax/ajax_checkLdap.php:41 -#: ../../../../ajax/ajax_configSave.php:41 ../../../../ajax/ajax_files.php:41 -#: ../../../../ajax/ajax_getFiles.php:46 ../../../../ajax/ajax_import.php:49 -#: ../../../../ajax/ajax_migrate.php:45 ../../../../ajax/ajax_passReset.php:37 -#: ../../../../ajax/ajax_search.php:41 -#: ../../../../ajax/ajax_sendRequest.php:41 -#: ../../../../ajax/ajax_userPrefsSave.php:42 +#: ../../../../ajax/ajax_2fa.php:37 ../../../../ajax/ajax_accountSave.php:42 +#: ../../../../ajax/ajax_appMgmtSave.php:43 +#: ../../../../ajax/ajax_backup.php:41 ../../../../ajax/ajax_checkLdap.php:42 +#: ../../../../ajax/ajax_configSave.php:44 ../../../../ajax/ajax_files.php:42 +#: ../../../../ajax/ajax_getFiles.php:47 ../../../../ajax/ajax_import.php:50 +#: ../../../../ajax/ajax_migrate.php:46 ../../../../ajax/ajax_passReset.php:40 +#: ../../../../ajax/ajax_search.php:42 +#: ../../../../ajax/ajax_sendRequest.php:42 +#: ../../../../ajax/ajax_userPrefsSave.php:43 msgid "CONSULTA INVÁLIDA" msgstr "REQUETE INVALIDE" -#: ../../../../ajax/ajax_2fa.php:55 +#: ../../../../ajax/ajax_2fa.php:57 msgid "Código correcto" msgstr "Code vérifié" -#: ../../../../ajax/ajax_2fa.php:58 ../../../../ajax/ajax_userPrefsSave.php:94 +#: ../../../../ajax/ajax_2fa.php:60 ../../../../ajax/ajax_userPrefsSave.php:97 msgid "Código incorrecto" msgstr "Code Invalide" -#: ../../../../ajax/ajax_accountSave.php:35 -#: ../../../../ajax/ajax_appMgmtSave.php:36 -#: ../../../../ajax/ajax_backup.php:33 ../../../../ajax/ajax_checkLdap.php:35 -#: ../../../../ajax/ajax_configSave.php:35 ../../../../ajax/ajax_import.php:35 -#: ../../../../ajax/ajax_migrate.php:35 -#: ../../../../ajax/ajax_sendRequest.php:35 -#: ../../../../ajax/ajax_userPrefsSave.php:36 -#: ../../../../ajax/ajax_viewpass.php:36 +#: ../../../../ajax/ajax_accountSave.php:36 +#: ../../../../ajax/ajax_appMgmtSave.php:37 +#: ../../../../ajax/ajax_backup.php:35 ../../../../ajax/ajax_checkLdap.php:36 +#: ../../../../ajax/ajax_configSave.php:38 ../../../../ajax/ajax_import.php:36 +#: ../../../../ajax/ajax_migrate.php:36 +#: ../../../../ajax/ajax_sendRequest.php:36 +#: ../../../../ajax/ajax_userPrefsSave.php:37 +#: ../../../../ajax/ajax_viewpass.php:37 msgid "La sesión no se ha iniciado o ha caducado" msgstr "Session non démarrée ou expirée" -#: ../../../../ajax/ajax_accountSave.php:77 -#: ../../../../ajax/ajax_accountSave.php:92 +#: ../../../../ajax/ajax_accountSave.php:78 +#: ../../../../ajax/ajax_accountSave.php:93 msgid "Es necesario un nombre de cuenta" msgstr "Nom de compte requis" -#: ../../../../ajax/ajax_accountSave.php:79 -#: ../../../../ajax/ajax_accountSave.php:90 -#: ../../../../ajax/ajax_appMgmtSave.php:328 +#: ../../../../ajax/ajax_accountSave.php:80 +#: ../../../../ajax/ajax_accountSave.php:91 +#: ../../../../ajax/ajax_appMgmtSave.php:329 msgid "Es necesario un nombre de cliente" msgstr "Nom de client requis" -#: ../../../../ajax/ajax_accountSave.php:81 -#: ../../../../ajax/ajax_accountSave.php:94 +#: ../../../../ajax/ajax_accountSave.php:82 +#: ../../../../ajax/ajax_accountSave.php:95 msgid "Es necesario un usuario" msgstr "Nom d'utilisateur requis" -#: ../../../../ajax/ajax_accountSave.php:83 -#: ../../../../ajax/ajax_accountSave.php:105 +#: ../../../../ajax/ajax_accountSave.php:84 +#: ../../../../ajax/ajax_accountSave.php:106 #, fuzzy msgid "Es necesaria una clave" msgstr "Mot de passe requis" -#: ../../../../ajax/ajax_accountSave.php:85 -#: ../../../../ajax/ajax_accountSave.php:96 +#: ../../../../ajax/ajax_accountSave.php:86 +#: ../../../../ajax/ajax_accountSave.php:97 msgid "Es necesario una categoría" msgstr "Une catégorie est requise" -#: ../../../../ajax/ajax_accountSave.php:100 -#: ../../../../ajax/ajax_accountSave.php:109 +#: ../../../../ajax/ajax_accountSave.php:101 +#: ../../../../ajax/ajax_accountSave.php:110 msgid "Id inválido" msgstr "Id Invalide" -#: ../../../../ajax/ajax_accountSave.php:112 -#: ../../../../ajax/ajax_accountSave.php:262 -#: ../../../../ajax/ajax_appMgmtSave.php:534 -#: ../../../../ajax/ajax_configSave.php:293 -#: ../../../../ajax/ajax_userPrefsSave.php:108 ../../../../api.php:53 +#: ../../../../ajax/ajax_accountSave.php:113 +#: ../../../../ajax/ajax_accountSave.php:263 +#: ../../../../ajax/ajax_appMgmtSave.php:535 +#: ../../../../ajax/ajax_configSave.php:324 +#: ../../../../ajax/ajax_userPrefsSave.php:111 ../../../../api.php:53 msgid "Acción Inválida" msgstr "Action Invalide" -#: ../../../../ajax/ajax_accountSave.php:120 -#: ../../../../ajax/ajax_appMgmtSave.php:111 -#: ../../../../ajax/ajax_appMgmtSave.php:148 -#: ../../../../ajax/ajax_backup.php:62 +#: ../../../../ajax/ajax_accountSave.php:121 +#: ../../../../ajax/ajax_appMgmtSave.php:112 +#: ../../../../ajax/ajax_appMgmtSave.php:149 +#: ../../../../ajax/ajax_backup.php:68 msgid "Las claves no coinciden" msgstr "Les mots de passe ne correspondent pas" -#: ../../../../ajax/ajax_accountSave.php:172 +#: ../../../../ajax/ajax_accountSave.php:173 msgid "Cuenta creada" msgstr "Compte ajouté" -#: ../../../../ajax/ajax_accountSave.php:175 +#: ../../../../ajax/ajax_accountSave.php:176 msgid "Error al crear la cuenta" msgstr "Erreur pendant la création de compte" -#: ../../../../ajax/ajax_accountSave.php:210 +#: ../../../../ajax/ajax_accountSave.php:211 msgid "Sin cambios" msgstr "Aucun changement" -#: ../../../../ajax/ajax_accountSave.php:222 +#: ../../../../ajax/ajax_accountSave.php:223 msgid "Cuenta actualizada" msgstr "Compte actualisé" -#: ../../../../ajax/ajax_accountSave.php:225 +#: ../../../../ajax/ajax_accountSave.php:226 msgid "Error al modificar la cuenta" msgstr "Erreur pendant la modification du compte" -#: ../../../../ajax/ajax_accountSave.php:232 +#: ../../../../ajax/ajax_accountSave.php:233 msgid "Cuenta eliminada" msgstr "Compte supprimé" -#: ../../../../ajax/ajax_accountSave.php:235 +#: ../../../../ajax/ajax_accountSave.php:236 msgid "Error al eliminar la cuenta" msgstr "Erreur pendant la suppression du compte" -#: ../../../../ajax/ajax_accountSave.php:245 -#: ../../../../ajax/ajax_appMgmtSave.php:152 -#: ../../../../ajax/ajax_passReset.php:74 +#: ../../../../ajax/ajax_accountSave.php:246 +#: ../../../../ajax/ajax_appMgmtSave.php:153 +#: ../../../../ajax/ajax_passReset.php:75 msgid "Clave actualizada" msgstr "Mot de passe actualisé" -#: ../../../../ajax/ajax_accountSave.php:248 +#: ../../../../ajax/ajax_accountSave.php:249 msgid "Error al actualizar la clave" msgstr "Erreur pendant l'actualisation du mot de passe" -#: ../../../../ajax/ajax_accountSave.php:255 +#: ../../../../ajax/ajax_accountSave.php:256 msgid "Cuenta restaurada" msgstr "Compte restauré" -#: ../../../../ajax/ajax_accountSave.php:258 +#: ../../../../ajax/ajax_accountSave.php:259 msgid "Error al restaurar cuenta" msgstr "Erreur pendant la restauration du compte" @@ -145,13 +145,13 @@ msgid "Ver Usuario" msgstr "Détails Utilisateur" #: ../../../../ajax/ajax_appMgmtData.php:61 -#: ../../../../web/UsersMgmtC.class.php:136 +#: ../../../../web/UsersMgmtC.class.php:137 msgid "Editar Usuario" msgstr "Editer Utilisateur" #: ../../../../ajax/ajax_appMgmtData.php:67 -#: ../../../../inc/UserBase.class.php:381 -#: ../../../../web/UsersMgmtC.class.php:121 +#: ../../../../inc/UserBase.class.php:383 +#: ../../../../web/UsersMgmtC.class.php:122 msgid "Nuevo Usuario" msgstr "Nouvel Utilisateur" @@ -160,13 +160,13 @@ msgid "Ver Grupo" msgstr "Détail Groupe" #: ../../../../ajax/ajax_appMgmtData.php:80 -#: ../../../../web/UsersMgmtC.class.php:202 +#: ../../../../web/UsersMgmtC.class.php:203 msgid "Editar Grupo" msgstr "Editer Groupe" #: ../../../../ajax/ajax_appMgmtData.php:86 #: ../../../../inc/Groups.class.php:152 ../../../../inc/Groups.class.php:253 -#: ../../../../web/UsersMgmtC.class.php:194 +#: ../../../../web/UsersMgmtC.class.php:195 msgid "Nuevo Grupo" msgstr "Nouveau Groupe" @@ -175,13 +175,13 @@ msgid "Ver Perfil" msgstr "Détail Profil" #: ../../../../ajax/ajax_appMgmtData.php:99 -#: ../../../../web/UsersMgmtC.class.php:267 +#: ../../../../web/UsersMgmtC.class.php:268 msgid "Editar Perfil" msgstr "Editer Profil" #: ../../../../ajax/ajax_appMgmtData.php:105 #: ../../../../inc/ProfileBase.class.php:512 -#: ../../../../web/UsersMgmtC.class.php:252 +#: ../../../../web/UsersMgmtC.class.php:253 msgid "Nuevo Perfil" msgstr "Nouveau Profil" @@ -190,13 +190,13 @@ msgid "Ver Cliente" msgstr "Détails Client" #: ../../../../ajax/ajax_appMgmtData.php:118 -#: ../../../../web/AccountsMgmtC.class.php:152 +#: ../../../../web/AccountsMgmtC.class.php:153 msgid "Editar Cliente" msgstr "Editer Client" #: ../../../../ajax/ajax_appMgmtData.php:124 #: ../../../../inc/Customer.class.php:65 -#: ../../../../web/AccountsMgmtC.class.php:145 +#: ../../../../web/AccountsMgmtC.class.php:146 msgid "Nuevo Cliente" msgstr "Nouveau Client" @@ -205,13 +205,13 @@ msgid "Ver Categoría" msgstr "Détails Catégorie" #: ../../../../ajax/ajax_appMgmtData.php:137 -#: ../../../../web/AccountsMgmtC.class.php:94 +#: ../../../../web/AccountsMgmtC.class.php:95 msgid "Editar Categoría" msgstr "Editer Catégorie" #: ../../../../ajax/ajax_appMgmtData.php:143 #: ../../../../inc/Category.class.php:83 -#: ../../../../web/AccountsMgmtC.class.php:86 +#: ../../../../web/AccountsMgmtC.class.php:87 #: ../../../../inc/themes/classic/account.inc:53 #: ../../../../inc/themes/material-blue/account.inc:61 msgid "Nueva Categoría" @@ -223,128 +223,129 @@ msgstr "Voir les autorisations" #: ../../../../ajax/ajax_appMgmtData.php:156 #: ../../../../inc/ApiTokens.class.php:189 -#: ../../../../web/UsersMgmtC.class.php:399 +#: ../../../../web/UsersMgmtC.class.php:400 msgid "Nueva Autorización" msgstr "Nouvelle autorisation" #: ../../../../ajax/ajax_appMgmtData.php:162 -#: ../../../../web/UsersMgmtC.class.php:414 +#: ../../../../web/UsersMgmtC.class.php:415 msgid "Editar Autorización" msgstr "Editer l'autorisation" #: ../../../../ajax/ajax_appMgmtData.php:168 -#: ../../../../web/AccountsMgmtC.class.php:273 +#: ../../../../web/AccountsMgmtC.class.php:274 msgid "Nuevo Campo" msgstr "Nouveau Champ" #: ../../../../ajax/ajax_appMgmtData.php:174 -#: ../../../../web/AccountsMgmtC.class.php:280 +#: ../../../../web/AccountsMgmtC.class.php:281 msgid "Editar Campo" msgstr "Editer Champ" -#: ../../../../ajax/ajax_appMgmtSave.php:85 +#: ../../../../ajax/ajax_appMgmtSave.php:86 msgid "Es necesario un nombre de usuario" msgstr "Nom d'utilisateur requis" -#: ../../../../ajax/ajax_appMgmtSave.php:87 +#: ../../../../ajax/ajax_appMgmtSave.php:88 msgid "Es necesario un login" msgstr "Login requis" -#: ../../../../ajax/ajax_appMgmtSave.php:89 +#: ../../../../ajax/ajax_appMgmtSave.php:90 msgid "Es necesario un perfil" msgstr "Profil requis" -#: ../../../../ajax/ajax_appMgmtSave.php:91 +#: ../../../../ajax/ajax_appMgmtSave.php:92 msgid "Es necesario un grupo" msgstr "Groupe requis" -#: ../../../../ajax/ajax_appMgmtSave.php:93 +#: ../../../../ajax/ajax_appMgmtSave.php:94 msgid "Es necesario un email" msgstr "Courriel requis" -#: ../../../../ajax/ajax_appMgmtSave.php:95 -#: ../../../../ajax/ajax_appMgmtSave.php:144 -#: ../../../../ajax/ajax_appMgmtSave.php:159 -#: ../../../../ajax/ajax_configSave.php:268 -#: ../../../../ajax/ajax_import.php:39 ../../../../ajax/ajax_migrate.php:39 -#: ../../../../ajax/ajax_userPrefsSave.php:83 +#: ../../../../ajax/ajax_appMgmtSave.php:96 +#: ../../../../ajax/ajax_appMgmtSave.php:145 +#: ../../../../ajax/ajax_appMgmtSave.php:160 +#: ../../../../ajax/ajax_backup.php:54 +#: ../../../../ajax/ajax_configSave.php:297 +#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40 +#: ../../../../ajax/ajax_userPrefsSave.php:86 msgid "Ey, esto es una DEMO!!" msgstr "Hey, ceci est une DEMO" -#: ../../../../ajax/ajax_appMgmtSave.php:100 +#: ../../../../ajax/ajax_appMgmtSave.php:101 msgid "Login de usuario duplicado" msgstr "Login utilisateur dupliqué" -#: ../../../../ajax/ajax_appMgmtSave.php:103 +#: ../../../../ajax/ajax_appMgmtSave.php:104 msgid "Email de usuario duplicado" msgstr "Courriel de l'utilisateur dupliqué" -#: ../../../../ajax/ajax_appMgmtSave.php:109 -#: ../../../../ajax/ajax_appMgmtSave.php:146 +#: ../../../../ajax/ajax_appMgmtSave.php:110 +#: ../../../../ajax/ajax_appMgmtSave.php:147 msgid "La clave no puede estar en blanco" msgstr "Le mot de passe ne peut pas être blanc" -#: ../../../../ajax/ajax_appMgmtSave.php:122 +#: ../../../../ajax/ajax_appMgmtSave.php:123 msgid "Usuario creado" msgstr "Utilisateur ajouté" -#: ../../../../ajax/ajax_appMgmtSave.php:125 +#: ../../../../ajax/ajax_appMgmtSave.php:126 msgid "Error al crear el usuario" msgstr "Erreur pendant la création d'utilisateur" -#: ../../../../ajax/ajax_appMgmtSave.php:135 -#: ../../../../inc/UserUtil.class.php:103 +#: ../../../../ajax/ajax_appMgmtSave.php:136 +#: ../../../../inc/UserMigrate.class.php:89 msgid "Usuario actualizado" msgstr "Utilisateur actualisé" -#: ../../../../ajax/ajax_appMgmtSave.php:138 +#: ../../../../ajax/ajax_appMgmtSave.php:139 msgid "Error al actualizar el usuario" msgstr "Erreur pendant l'actualisation de l'utilisateur" -#: ../../../../ajax/ajax_appMgmtSave.php:155 -#: ../../../../ajax/ajax_passReset.php:78 +#: ../../../../ajax/ajax_appMgmtSave.php:156 +#: ../../../../ajax/ajax_passReset.php:79 msgid "Error al modificar la clave" msgstr "Erreur pendant la modification du mot de passe" -#: ../../../../ajax/ajax_appMgmtSave.php:161 +#: ../../../../ajax/ajax_appMgmtSave.php:162 msgid "No es posible eliminar, usuario en uso" msgstr "Impossible à supprimer, utilisateur en activité" -#: ../../../../ajax/ajax_appMgmtSave.php:165 +#: ../../../../ajax/ajax_appMgmtSave.php:166 msgid "Usuario eliminado" msgstr "Utilisateur supprimé" -#: ../../../../ajax/ajax_appMgmtSave.php:168 +#: ../../../../ajax/ajax_appMgmtSave.php:169 msgid "Error al eliminar el usuario" msgstr "Erreur pendant la suppression de l'utilisateur" -#: ../../../../ajax/ajax_appMgmtSave.php:183 +#: ../../../../ajax/ajax_appMgmtSave.php:184 msgid "Es necesario un nombre de grupo" msgstr "Nom de groupe requis" -#: ../../../../ajax/ajax_appMgmtSave.php:191 +#: ../../../../ajax/ajax_appMgmtSave.php:192 msgid "Nombre de grupo duplicado" msgstr "Nom de groupe dupliqué" -#: ../../../../ajax/ajax_appMgmtSave.php:203 +#: ../../../../ajax/ajax_appMgmtSave.php:204 msgid "Grupo creado" msgstr "Groupe ajouté" -#: ../../../../ajax/ajax_appMgmtSave.php:205 +#: ../../../../ajax/ajax_appMgmtSave.php:206 msgid "Error al crear el grupo" msgstr "Erreur pendant la création de groupe" -#: ../../../../ajax/ajax_appMgmtSave.php:216 +#: ../../../../ajax/ajax_appMgmtSave.php:217 msgid "Grupo actualizado" msgstr "Gropue actualisé" -#: ../../../../ajax/ajax_appMgmtSave.php:219 +#: ../../../../ajax/ajax_appMgmtSave.php:220 msgid "Error al actualizar el grupo" msgstr "Erreur pendant l'actualisation du groupe" -#: ../../../../ajax/ajax_appMgmtSave.php:228 -#: ../../../../ajax/ajax_appMgmtSave.php:305 -#: ../../../../inc/CustomFieldsBase.class.php:83 +#: ../../../../ajax/ajax_appMgmtSave.php:229 +#: ../../../../ajax/ajax_appMgmtSave.php:306 +#: ../../../../inc/CustomFieldsBase.class.php:109 #: ../../../../inc/themes/classic/account.inc:112 #: ../../../../inc/themes/classic/groups.inc:24 #: ../../../../inc/themes/classic/profiles.inc:85 @@ -354,9 +355,9 @@ msgstr "Erreur pendant l'actualisation du groupe" msgid "Usuarios" msgstr "Utilisateurs" -#: ../../../../ajax/ajax_appMgmtSave.php:232 +#: ../../../../ajax/ajax_appMgmtSave.php:233 #: ../../../../inc/Category.class.php:266 -#: ../../../../inc/CustomFieldsBase.class.php:80 +#: ../../../../inc/CustomFieldsBase.class.php:106 #: ../../../../inc/Customer.class.php:150 #: ../../../../inc/themes/classic/profiles.inc:15 #: ../../../../inc/themes/material-blue/config.inc:176 @@ -364,316 +365,357 @@ msgstr "Utilisateurs" msgid "Cuentas" msgstr "Comptes" -#: ../../../../ajax/ajax_appMgmtSave.php:235 -#: ../../../../ajax/ajax_appMgmtSave.php:307 +#: ../../../../ajax/ajax_appMgmtSave.php:236 +#: ../../../../ajax/ajax_appMgmtSave.php:308 #: ../../../../inc/Category.class.php:119 #: ../../../../inc/Customer.class.php:150 msgid "No es posible eliminar" msgstr "Impossible de supprimer" -#: ../../../../ajax/ajax_appMgmtSave.php:235 +#: ../../../../ajax/ajax_appMgmtSave.php:236 msgid "Grupo en uso por:" msgstr "Groupe utilisé par:" -#: ../../../../ajax/ajax_appMgmtSave.php:240 +#: ../../../../ajax/ajax_appMgmtSave.php:241 msgid "Grupo eliminado" msgstr "Groupe supprimé" -#: ../../../../ajax/ajax_appMgmtSave.php:243 +#: ../../../../ajax/ajax_appMgmtSave.php:244 msgid "Error al eliminar el grupo" msgstr "Erreur pendant la supression du groupe" -#: ../../../../ajax/ajax_appMgmtSave.php:282 +#: ../../../../ajax/ajax_appMgmtSave.php:283 msgid "Es necesario un nombre de perfil" msgstr "Nom de profil requis" -#: ../../../../ajax/ajax_appMgmtSave.php:284 +#: ../../../../ajax/ajax_appMgmtSave.php:285 msgid "Nombre de perfil duplicado" msgstr "Nom de profil dupliqué" -#: ../../../../ajax/ajax_appMgmtSave.php:289 +#: ../../../../ajax/ajax_appMgmtSave.php:290 msgid "Perfil creado" msgstr "Profil ajouté" -#: ../../../../ajax/ajax_appMgmtSave.php:292 +#: ../../../../ajax/ajax_appMgmtSave.php:293 msgid "Error al crear el perfil" msgstr "Erreur pendant la création de profil" -#: ../../../../ajax/ajax_appMgmtSave.php:295 +#: ../../../../ajax/ajax_appMgmtSave.php:296 msgid "Perfil actualizado" msgstr "Profil actualisé" -#: ../../../../ajax/ajax_appMgmtSave.php:298 +#: ../../../../ajax/ajax_appMgmtSave.php:299 msgid "Error al actualizar el perfil" msgstr "Erreur pendant l'actualisation du profil" -#: ../../../../ajax/ajax_appMgmtSave.php:307 +#: ../../../../ajax/ajax_appMgmtSave.php:308 msgid "Perfil en uso por:" msgstr "Profil utilisé par:" -#: ../../../../ajax/ajax_appMgmtSave.php:310 +#: ../../../../ajax/ajax_appMgmtSave.php:311 msgid "Perfil eliminado" msgstr "Profil supprimé" -#: ../../../../ajax/ajax_appMgmtSave.php:313 +#: ../../../../ajax/ajax_appMgmtSave.php:314 msgid "Error al eliminar el perfil" msgstr "Erreur pendant la suppression du profil" -#: ../../../../ajax/ajax_appMgmtSave.php:348 +#: ../../../../ajax/ajax_appMgmtSave.php:349 msgid "Cliente creado" msgstr "Client ajouté" -#: ../../../../ajax/ajax_appMgmtSave.php:363 +#: ../../../../ajax/ajax_appMgmtSave.php:364 msgid "Cliente actualizado" msgstr "Compte actualisé" -#: ../../../../ajax/ajax_appMgmtSave.php:373 +#: ../../../../ajax/ajax_appMgmtSave.php:374 msgid "Cliente eliminado" msgstr "Client supprimé" -#: ../../../../ajax/ajax_appMgmtSave.php:387 +#: ../../../../ajax/ajax_appMgmtSave.php:388 msgid "Es necesario un nombre de categoría" msgstr "Nom de catégorie requis" -#: ../../../../ajax/ajax_appMgmtSave.php:407 +#: ../../../../ajax/ajax_appMgmtSave.php:408 msgid "Categoría creada" msgstr "Catégorie ajoutée" -#: ../../../../ajax/ajax_appMgmtSave.php:422 +#: ../../../../ajax/ajax_appMgmtSave.php:423 msgid "Categoría actualizada" msgstr "Catégorie actualisée" -#: ../../../../ajax/ajax_appMgmtSave.php:433 +#: ../../../../ajax/ajax_appMgmtSave.php:434 msgid "Categoría eliminada" msgstr "Catégorie supprimé" -#: ../../../../ajax/ajax_appMgmtSave.php:449 +#: ../../../../ajax/ajax_appMgmtSave.php:450 msgid "Usuario o acción no indicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:459 +#: ../../../../ajax/ajax_appMgmtSave.php:460 msgid "Autorización creada" msgstr "Autorisation ajoutée" -#: ../../../../ajax/ajax_appMgmtSave.php:467 +#: ../../../../ajax/ajax_appMgmtSave.php:468 msgid "Autorización actualizada" msgstr "Autorisation mise à jour" -#: ../../../../ajax/ajax_appMgmtSave.php:477 +#: ../../../../ajax/ajax_appMgmtSave.php:478 msgid "Autorización eliminada" msgstr "Autorisation supprimée" -#: ../../../../ajax/ajax_appMgmtSave.php:494 +#: ../../../../ajax/ajax_appMgmtSave.php:495 msgid "Nombre del campo no indicado" msgstr "Nom de champ pas configurer" -#: ../../../../ajax/ajax_appMgmtSave.php:496 +#: ../../../../ajax/ajax_appMgmtSave.php:497 msgid "Tipo del campo no indicado" msgstr "Type de champ pas configurer" -#: ../../../../ajax/ajax_appMgmtSave.php:498 +#: ../../../../ajax/ajax_appMgmtSave.php:499 msgid "Módulo del campo no indicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:512 +#: ../../../../ajax/ajax_appMgmtSave.php:513 msgid "Campo creado" msgstr "Champ ajouté" -#: ../../../../ajax/ajax_appMgmtSave.php:521 +#: ../../../../ajax/ajax_appMgmtSave.php:522 msgid "Campo actualizado" msgstr "Champ mis à jour" -#: ../../../../ajax/ajax_appMgmtSave.php:531 +#: ../../../../ajax/ajax_appMgmtSave.php:532 msgid "Campo eliminado" msgstr "Champ supprimé" -#: ../../../../ajax/ajax_backup.php:52 ../../../../ajax/ajax_backup.php:57 +#: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:63 #: ../../../../inc/themes/classic/backup.inc:54 msgid "Realizar Backup" msgstr "Effectuer une sauvegarde" -#: ../../../../ajax/ajax_backup.php:52 ../../../../ajax/ajax_backup.php:54 +#: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:60 msgid "Error al realizar el backup" msgstr "Erreur pendant la sauvegarde" -#: ../../../../ajax/ajax_backup.php:54 ../../../../ajax/ajax_backup.php:68 -#: ../../../../ajax/ajax_checkLdap.php:57 ../../../../inc/Import.class.php:128 -#: ../../../../inc/Migrate.class.php:93 +#: ../../../../ajax/ajax_backup.php:60 ../../../../ajax/ajax_backup.php:74 +#: ../../../../ajax/ajax_checkLdap.php:58 ../../../../inc/Import.class.php:128 +#: ../../../../inc/Migrate.class.php:92 msgid "Revise el registro de eventos para más detalles" msgstr "Veuillez consulter le journal des évènements pour plus de détail" -#: ../../../../ajax/ajax_backup.php:57 +#: ../../../../ajax/ajax_backup.php:63 msgid "Copia de la aplicación y base de datos realizada correctamente" msgstr "" "Sauvegarde de l'application et de la base de données effectuée correctement" -#: ../../../../ajax/ajax_backup.php:59 +#: ../../../../ajax/ajax_backup.php:65 msgid "Proceso de backup finalizado" msgstr "Processus de sauvegarde terminé" -#: ../../../../ajax/ajax_backup.php:66 ../../../../ajax/ajax_backup.php:71 +#: ../../../../ajax/ajax_backup.php:72 ../../../../ajax/ajax_backup.php:77 msgid "Realizar Exportación" msgstr "Exporter" -#: ../../../../ajax/ajax_backup.php:66 +#: ../../../../ajax/ajax_backup.php:72 msgid "Error al realizar la exportación de cuentas" msgstr "Erreur pendant l'exportation de comptes" -#: ../../../../ajax/ajax_backup.php:68 +#: ../../../../ajax/ajax_backup.php:74 msgid "Error al realizar la exportación" msgstr "Problème durant l'export" -#: ../../../../ajax/ajax_backup.php:71 +#: ../../../../ajax/ajax_backup.php:77 msgid "Exportación de cuentas realizada correctamente" msgstr "Export réalisé avec succès" -#: ../../../../ajax/ajax_backup.php:73 +#: ../../../../ajax/ajax_backup.php:79 msgid "Proceso de exportación finalizado" msgstr "Processus d'export terminé" -#: ../../../../ajax/ajax_checkLdap.php:51 ../../../../inc/Ldap.class.php:265 +#: ../../../../ajax/ajax_checkLdap.php:52 ../../../../inc/Ldap.class.php:259 msgid "Los parámetros de LDAP no están configurados" msgstr "Les paramètres LDAP ne sont pas définis" -#: ../../../../ajax/ajax_checkLdap.php:57 +#: ../../../../ajax/ajax_checkLdap.php:58 msgid "Error de conexión a LDAP" msgstr "Erreur de connexion LDAP" -#: ../../../../ajax/ajax_checkLdap.php:59 +#: ../../../../ajax/ajax_checkLdap.php:60 msgid "Conexión a LDAP correcta" msgstr "Connexion LDAP OK" -#: ../../../../ajax/ajax_checkLdap.php:59 +#: ../../../../ajax/ajax_checkLdap.php:60 msgid "Objetos encontrados" msgstr "Objet trouvé" -#: ../../../../ajax/ajax_configSave.php:55 +#: ../../../../ajax/ajax_configSave.php:58 msgid "Modificar Configuración" msgstr "Modifier Configuration" -#: ../../../../ajax/ajax_configSave.php:102 +#: ../../../../ajax/ajax_configSave.php:105 msgid "El tamaño máximo por archivo es de 16MB" msgstr "La taille maximale par fichier est de 16 MB" -#: ../../../../ajax/ajax_configSave.php:115 +#: ../../../../ajax/ajax_configSave.php:118 msgid "Faltan parámetros de Proxy" msgstr "Paramètres Proxy manquant" #: ../../../../ajax/ajax_configSave.php:126 -#: ../../../../ajax/ajax_configSave.php:146 -#: ../../../../ajax/ajax_configSave.php:176 -#: ../../../../ajax/ajax_configSave.php:211 +#, fuzzy +msgid "Proxy habiltado" +msgstr "Utilisateur désactivé" + +#: ../../../../ajax/ajax_configSave.php:130 +#, fuzzy +msgid "Proxy deshabilitado" +msgstr "Utilisateur désactivé" + +#: ../../../../ajax/ajax_configSave.php:133 +#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../ajax/ajax_configSave.php:230 #, fuzzy msgid "Sección" msgstr "Action" -#: ../../../../ajax/ajax_configSave.php:126 -#: ../../../../web/ConfigC.class.php:106 +#: ../../../../ajax/ajax_configSave.php:133 +#: ../../../../web/ConfigC.class.php:108 #: ../../../../inc/themes/classic/profiles.inc:61 #: ../../../../inc/themes/material-blue/profiles.inc:72 msgid "General" msgstr "Générale" -#: ../../../../ajax/ajax_configSave.php:136 +#: ../../../../ajax/ajax_configSave.php:143 msgid "Faltan parámetros de Wiki" msgstr "Paramètres Wiki manquants" -#: ../../../../ajax/ajax_configSave.php:146 -#: ../../../../web/ConfigC.class.php:242 +#: ../../../../ajax/ajax_configSave.php:150 +#, fuzzy +msgid "Wiki habiltada" +msgstr "Désactivé" + +#: ../../../../ajax/ajax_configSave.php:154 +#, fuzzy +msgid "Wiki deshabilitada" +msgstr "Désactivé" + +#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../web/ConfigC.class.php:244 #: ../../../../inc/themes/classic/wiki.inc:4 #: ../../../../inc/themes/material-blue/wiki.inc:4 msgid "Wiki" msgstr "Wiki" -#: ../../../../ajax/ajax_configSave.php:161 +#: ../../../../ajax/ajax_configSave.php:172 msgid "Faltan parámetros de LDAP" msgstr "Paramètres LDAP manquants" -#: ../../../../ajax/ajax_configSave.php:176 -#: ../../../../web/ConfigC.class.php:274 +#: ../../../../ajax/ajax_configSave.php:184 +#, fuzzy +msgid "LDAP habiltado" +msgstr "Désactivé" + +#: ../../../../ajax/ajax_configSave.php:188 +#, fuzzy +msgid "LDAP deshabilitado" +msgstr "Désactivé" + +#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../web/ConfigC.class.php:276 #: ../../../../inc/themes/classic/ldap.inc:4 #: ../../../../inc/themes/material-blue/ldap.inc:4 msgid "LDAP" msgstr "LDAP" -#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../ajax/ajax_configSave.php:206 msgid "Faltan parámetros de Correo" msgstr "Paramètres de courriel manquants" -#: ../../../../ajax/ajax_configSave.php:211 -#: ../../../../web/ConfigC.class.php:304 +#: ../../../../ajax/ajax_configSave.php:221 +#, fuzzy +msgid "Correo habiltado" +msgstr "Courriel envoyé" + +#: ../../../../ajax/ajax_configSave.php:227 +#, fuzzy +msgid "Correo deshabilitado" +msgstr "Utilisateur désactivé" + +#: ../../../../ajax/ajax_configSave.php:230 +#: ../../../../web/ConfigC.class.php:306 #: ../../../../inc/themes/classic/mail.inc:4 #: ../../../../inc/themes/material-blue/mail.inc:4 msgid "Correo" msgstr "Courriel" -#: ../../../../ajax/ajax_configSave.php:223 +#: ../../../../ajax/ajax_configSave.php:252 msgid "Configuración actualizada" msgstr "Configuration actualisée" -#: ../../../../ajax/ajax_configSave.php:232 -#: ../../../../ajax/ajax_configSave.php:278 -#: ../../../../ajax/ajax_viewpass.php:60 +#: ../../../../ajax/ajax_configSave.php:261 +#: ../../../../ajax/ajax_configSave.php:307 +#: ../../../../ajax/ajax_viewpass.php:61 #: ../../../../inc/Controller.class.php:169 msgid "Clave maestra actualizada" msgstr "Mot de passe maître actualisé" -#: ../../../../ajax/ajax_configSave.php:232 -#: ../../../../ajax/ajax_viewpass.php:60 +#: ../../../../ajax/ajax_configSave.php:261 +#: ../../../../ajax/ajax_viewpass.php:61 #: ../../../../inc/Controller.class.php:169 msgid "Reinicie la sesión para cambiarla" msgstr "Redémarrez la session pour mettre à jour" -#: ../../../../ajax/ajax_configSave.php:234 +#: ../../../../ajax/ajax_configSave.php:263 msgid "Clave maestra no indicada" msgstr "Mot de passe maître requis" -#: ../../../../ajax/ajax_configSave.php:236 +#: ../../../../ajax/ajax_configSave.php:265 msgid "Se ha de confirmar el cambio de clave" msgstr "Le changement de mot de passe doit être confirmé" -#: ../../../../ajax/ajax_configSave.php:240 +#: ../../../../ajax/ajax_configSave.php:269 msgid "Las claves son idénticas" msgstr "Les mots de passe sont identiques" -#: ../../../../ajax/ajax_configSave.php:242 +#: ../../../../ajax/ajax_configSave.php:271 msgid "Las claves maestras no coinciden" msgstr "Les mots de passe maîtres ne correspondent pas" -#: ../../../../ajax/ajax_configSave.php:244 +#: ../../../../ajax/ajax_configSave.php:273 msgid "La clave maestra actual no coincide" msgstr "Le mot de passe maître actuel ne correspond pas" -#: ../../../../ajax/ajax_configSave.php:253 +#: ../../../../ajax/ajax_configSave.php:282 msgid "Errores al actualizar las claves de las cuentas" msgstr "Erreur pendant la modification des mots de passe des comptes" -#: ../../../../ajax/ajax_configSave.php:259 +#: ../../../../ajax/ajax_configSave.php:288 msgid "Errores al actualizar las claves de las cuentas del histórico" msgstr "Erreur lors de la mise à jour des mots de passe dans l'historique" -#: ../../../../ajax/ajax_configSave.php:263 +#: ../../../../ajax/ajax_configSave.php:292 #, fuzzy msgid "Errores al actualizar datos de campos personalizados" msgstr "Erreur pendant la modification des mots de passe des comptes" -#: ../../../../ajax/ajax_configSave.php:276 -#: ../../../../inc/Account.class.php:495 +#: ../../../../ajax/ajax_configSave.php:305 +#: ../../../../inc/Account.class.php:512 msgid "Actualizar Clave Maestra" msgstr "Mettre à jour le Mot de passe Maître" -#: ../../../../ajax/ajax_configSave.php:280 +#: ../../../../ajax/ajax_configSave.php:309 msgid "Error al guardar el hash de la clave maestra" msgstr "Erreur pendant la sauvegarde du hash du mot de passe maître" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:317 msgid "Generar Clave Temporal" msgstr "Générer un mot de passe temporaire" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:317 +#: ../../../../inc/CustomFieldsBase.class.php:87 #: ../../../../inc/themes/classic/account.inc:86 #: ../../../../inc/themes/classic/editpass.inc:25 -#: ../../../../inc/themes/classic/encryption.inc:146 +#: ../../../../inc/themes/classic/encryption.inc:143 #: ../../../../inc/themes/classic/install.inc:38 #: ../../../../inc/themes/classic/install.inc:39 #: ../../../../inc/themes/classic/login.inc:10 @@ -690,7 +732,7 @@ msgstr "Générer un mot de passe temporaire" #: ../../../../inc/themes/material-blue/editpass.inc:26 #: ../../../../inc/themes/material-blue/editpass.inc:31 #: ../../../../inc/themes/material-blue/editpass.inc:41 -#: ../../../../inc/themes/material-blue/encryption.inc:164 +#: ../../../../inc/themes/material-blue/encryption.inc:161 #: ../../../../inc/themes/material-blue/install.inc:46 #: ../../../../inc/themes/material-blue/ldap.inc:105 #: ../../../../inc/themes/material-blue/login.inc:18 @@ -705,28 +747,33 @@ msgstr "Générer un mot de passe temporaire" msgid "Clave" msgstr "Mot de passe" -#: ../../../../ajax/ajax_configSave.php:290 +#: ../../../../ajax/ajax_configSave.php:319 msgid "Clave Temporal Generada" msgstr "Mot de passe temporel generé" -#: ../../../../ajax/ajax_doLogin.php:46 +#: ../../../../ajax/ajax_configSave.php:321 +#, fuzzy +msgid "Error al generar clave temporal" +msgstr "Générer un mot de passe temporaire" + +#: ../../../../ajax/ajax_doLogin.php:49 msgid "Usuario/Clave no introducidos" msgstr "Utilisateur/Mot de passe non saisi" -#: ../../../../ajax/ajax_doLogin.php:58 +#: ../../../../ajax/ajax_doLogin.php:61 msgid "Inicio sesión" msgstr "Se connecter" -#: ../../../../ajax/ajax_doLogin.php:63 +#: ../../../../ajax/ajax_doLogin.php:66 msgid "Servidor Login" msgstr "Connexion au serveur" -#: ../../../../ajax/ajax_doLogin.php:69 +#: ../../../../ajax/ajax_doLogin.php:72 msgid "Error al guardar los datos de LDAP" msgstr "Erreur pendant la sauvegarde des données utilisateur LDAP" -#: ../../../../ajax/ajax_doLogin.php:72 ../../../../ajax/ajax_doLogin.php:80 -#: ../../../../ajax/ajax_doLogin.php:132 ../../../../ajax/ajax_doLogin.php:176 +#: ../../../../ajax/ajax_doLogin.php:75 ../../../../ajax/ajax_doLogin.php:83 +#: ../../../../ajax/ajax_doLogin.php:135 ../../../../ajax/ajax_doLogin.php:179 #: ../../../../inc/ApiTokens.class.php:140 #: ../../../../inc/ApiTokens.class.php:186 #: ../../../../inc/ApiTokens.class.php:217 @@ -735,32 +782,34 @@ msgstr "Erreur pendant la sauvegarde des données utilisateur LDAP" #: ../../../../inc/ApiTokens.class.php:304 #: ../../../../inc/ApiTokens.class.php:328 ../../../../inc/Crypt.class.php:181 #: ../../../../inc/Crypt.class.php:192 -#: ../../../../inc/XmlImportBase.class.php:74 +#: ../../../../inc/XmlImportBase.class.php:79 msgid "Error interno" msgstr "Erreur Interne" -#: ../../../../ajax/ajax_doLogin.php:77 +#: ../../../../ajax/ajax_doLogin.php:80 msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "" "Erreur pendant l'actualisation du mot de passe utilisateur dans la base de " "données" -#: ../../../../ajax/ajax_doLogin.php:85 ../../../../ajax/ajax_doLogin.php:110 +#: ../../../../ajax/ajax_doLogin.php:88 ../../../../ajax/ajax_doLogin.php:113 msgid "Login incorrecto" msgstr "Login incorrecte" -#: ../../../../ajax/ajax_doLogin.php:86 ../../../../ajax/ajax_doLogin.php:93 -#: ../../../../ajax/ajax_doLogin.php:100 ../../../../ajax/ajax_doLogin.php:111 -#: ../../../../ajax/ajax_doLogin.php:121 ../../../../ajax/ajax_doLogin.php:171 +#: ../../../../ajax/ajax_doLogin.php:89 ../../../../ajax/ajax_doLogin.php:96 +#: ../../../../ajax/ajax_doLogin.php:103 ../../../../ajax/ajax_doLogin.php:114 +#: ../../../../ajax/ajax_doLogin.php:124 ../../../../ajax/ajax_doLogin.php:174 #: ../../../../inc/ApiTokens.class.php:190 #: ../../../../inc/ApiTokens.class.php:308 ../../../../inc/Auth.class.php:108 -#: ../../../../inc/Init.class.php:457 ../../../../inc/UserBase.class.php:382 -#: ../../../../inc/UserBase.class.php:526 ../../../../res/test.php:64 -#: ../../../../web/SearchC.class.php:304 -#: ../../../../web/UsersMgmtC.class.php:392 +#: ../../../../inc/Init.class.php:457 ../../../../inc/Ldap.class.php:290 +#: ../../../../inc/Ldap.class.php:303 ../../../../inc/Ldap.class.php:311 +#: ../../../../inc/UserBase.class.php:384 +#: ../../../../inc/UserBase.class.php:528 ../../../../res/test.php:64 +#: ../../../../web/SearchC.class.php:303 +#: ../../../../web/UsersMgmtC.class.php:393 #: ../../../../inc/themes/classic/account.inc:73 #: ../../../../inc/themes/classic/editpass.inc:21 -#: ../../../../inc/themes/classic/eventlog.inc:25 +#: ../../../../inc/themes/classic/eventlog.inc:23 #: ../../../../inc/themes/classic/info.inc:39 #: ../../../../inc/themes/classic/install.inc:27 #: ../../../../inc/themes/classic/install.inc:28 @@ -774,7 +823,7 @@ msgstr "Login incorrecte" #: ../../../../inc/themes/material-blue/account.inc:83 #: ../../../../inc/themes/material-blue/config.inc:381 #: ../../../../inc/themes/material-blue/editpass.inc:22 -#: ../../../../inc/themes/material-blue/eventlog.inc:24 +#: ../../../../inc/themes/material-blue/eventlog.inc:23 #: ../../../../inc/themes/material-blue/info.inc:39 #: ../../../../inc/themes/material-blue/login.inc:11 #: ../../../../inc/themes/material-blue/login.inc:34 @@ -782,54 +831,56 @@ msgstr "Login incorrecte" #: ../../../../inc/themes/material-blue/mail.inc:67 #: ../../../../inc/themes/material-blue/passreset.inc:16 #: ../../../../inc/themes/material-blue/request.inc:20 -#: ../../../../inc/themes/material-blue/search.inc:55 +#: ../../../../inc/themes/material-blue/search.inc:91 #: ../../../../inc/themes/material-blue/tokens.inc:8 msgid "Usuario" msgstr "Utilisateur" -#: ../../../../ajax/ajax_doLogin.php:89 ../../../../ajax/ajax_doLogin.php:103 -#: ../../../../ajax/ajax_doLogin.php:114 +#: ../../../../ajax/ajax_doLogin.php:92 ../../../../ajax/ajax_doLogin.php:106 +#: ../../../../ajax/ajax_doLogin.php:117 msgid "Usuario/Clave incorrectos" msgstr "Utilisateur/Mot de passe incorrecte" -#: ../../../../ajax/ajax_doLogin.php:92 ../../../../ajax/ajax_doLogin.php:96 +#: ../../../../ajax/ajax_doLogin.php:95 ../../../../ajax/ajax_doLogin.php:99 msgid "Cuenta expirada" msgstr "Compte expiré" -#: ../../../../ajax/ajax_doLogin.php:99 +#: ../../../../ajax/ajax_doLogin.php:102 msgid "El usuario no tiene grupos asociados" msgstr "L'utilisateur n'a pas de groupe associé" -#: ../../../../ajax/ajax_doLogin.php:120 ../../../../ajax/ajax_doLogin.php:124 +#: ../../../../ajax/ajax_doLogin.php:123 ../../../../ajax/ajax_doLogin.php:127 msgid "Usuario deshabilitado" msgstr "Utilisateur désactivé" -#: ../../../../ajax/ajax_doLogin.php:129 +#: ../../../../ajax/ajax_doLogin.php:132 msgid "Error al obtener los datos del usuario de la BBDD" msgstr "" "Erreur pendant la récupération des données utilisateur à partir de la BDD" -#: ../../../../ajax/ajax_doLogin.php:139 +#: ../../../../ajax/ajax_doLogin.php:142 msgid "La clave maestra no ha sido guardada o es incorrecta" msgstr "Mot de passe maître non sauvegardé ou incorrecte" -#: ../../../../ajax/ajax_doLogin.php:146 ../../../../ajax/ajax_doLogin.php:149 +#: ../../../../ajax/ajax_doLogin.php:149 ../../../../ajax/ajax_doLogin.php:152 msgid "Clave maestra incorrecta" msgstr "Mot de passe maître invalide" -#: ../../../../ajax/ajax_doLogin.php:172 +#: ../../../../ajax/ajax_doLogin.php:175 #: ../../../../inc/ProfileBase.class.php:512 #: ../../../../inc/ProfileBase.class.php:550 #: ../../../../inc/ProfileBase.class.php:593 -#: ../../../../web/UsersMgmtC.class.php:89 +#: ../../../../web/UsersMgmtC.class.php:90 #: ../../../../inc/themes/classic/users.inc:37 #: ../../../../inc/themes/material-blue/users.inc:43 msgid "Perfil" msgstr "Profil" -#: ../../../../ajax/ajax_doLogin.php:173 ../../../../inc/Groups.class.php:158 +#: ../../../../ajax/ajax_doLogin.php:176 ../../../../inc/Groups.class.php:158 #: ../../../../inc/Groups.class.php:259 ../../../../inc/Groups.class.php:375 -#: ../../../../web/UsersMgmtC.class.php:90 +#: ../../../../inc/Ldap.class.php:213 ../../../../inc/Ldap.class.php:226 +#: ../../../../inc/Ldap.class.php:236 ../../../../inc/Ldap.class.php:385 +#: ../../../../web/UsersMgmtC.class.php:91 #: ../../../../inc/themes/classic/ldap.inc:116 #: ../../../../inc/themes/classic/users.inc:49 #: ../../../../inc/themes/material-blue/ldap.inc:139 @@ -838,191 +889,191 @@ msgstr "Profil" msgid "Grupo" msgstr "Groupe" -#: ../../../../ajax/ajax_files.php:45 ../../../../ajax/ajax_getFiles.php:39 +#: ../../../../ajax/ajax_files.php:46 ../../../../ajax/ajax_getFiles.php:40 msgid "Gestión de archivos deshabilitada" msgstr "Gestion des fichiers désactivé" -#: ../../../../ajax/ajax_files.php:59 ../../../../inc/Files.class.php:63 +#: ../../../../ajax/ajax_files.php:60 ../../../../inc/Files.class.php:63 msgid "Subir Archivo" msgstr "Charger Fichier" -#: ../../../../ajax/ajax_files.php:68 +#: ../../../../ajax/ajax_files.php:69 msgid "No hay extensiones permitidas" msgstr "Il n'y a pas d'extension permise" -#: ../../../../ajax/ajax_files.php:79 ../../../../inc/FileImport.class.php:115 +#: ../../../../ajax/ajax_files.php:80 ../../../../inc/FileImport.class.php:115 msgid "Tipo de archivo no soportado" msgstr "Types de fichiers non supportés" -#: ../../../../ajax/ajax_files.php:85 +#: ../../../../ajax/ajax_files.php:86 msgid "Archivo inválido" msgstr "Fichier invalide" -#: ../../../../ajax/ajax_files.php:101 ../../../../ajax/ajax_files.php:118 +#: ../../../../ajax/ajax_files.php:102 ../../../../ajax/ajax_files.php:119 #: ../../../../inc/FileImport.class.php:131 #: ../../../../inc/FileImport.class.php:149 #: ../../../../inc/FileImport.class.php:167 msgid "Error interno al leer el archivo" msgstr "Erreur interne à la lecture du fichier" -#: ../../../../ajax/ajax_files.php:108 +#: ../../../../ajax/ajax_files.php:109 msgid "El archivo es mayor de " msgstr "Fichier plus gros que" -#: ../../../../ajax/ajax_files.php:125 +#: ../../../../ajax/ajax_files.php:126 msgid "Archivo guardado" msgstr "Fichier sauvegardé" -#: ../../../../ajax/ajax_files.php:130 +#: ../../../../ajax/ajax_files.php:131 msgid "No se pudo guardar el archivo" msgstr "Erreur pendant la sauvegarde de fichier" -#: ../../../../ajax/ajax_files.php:140 ../../../../ajax/ajax_files.php:199 +#: ../../../../ajax/ajax_files.php:141 ../../../../ajax/ajax_files.php:200 msgid "No es un ID de archivo válido" msgstr "ID de fichier invalide" -#: ../../../../ajax/ajax_files.php:148 +#: ../../../../ajax/ajax_files.php:149 msgid "El archivo no existe" msgstr "Fichier inexistant" -#: ../../../../ajax/ajax_files.php:157 +#: ../../../../ajax/ajax_files.php:158 #: ../../../../inc/themes/classic/files.inc:19 #: ../../../../inc/themes/material-blue/files.inc:19 msgid "Descargar Archivo" msgstr "Télécharger Fichier" -#: ../../../../ajax/ajax_files.php:158 ../../../../ajax/ajax_viewpass.php:69 +#: ../../../../ajax/ajax_files.php:159 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/Files.class.php:112 -#: ../../../../inc/themes/classic/eventlog.inc:16 -#: ../../../../inc/themes/material-blue/eventlog.inc:15 +#: ../../../../inc/themes/classic/eventlog.inc:14 +#: ../../../../inc/themes/material-blue/eventlog.inc:14 msgid "ID" msgstr "ID" -#: ../../../../ajax/ajax_files.php:159 ../../../../inc/Files.class.php:65 +#: ../../../../ajax/ajax_files.php:160 ../../../../inc/Files.class.php:65 #: ../../../../inc/Files.class.php:113 -#: ../../../../inc/themes/classic/import.inc:155 -#: ../../../../inc/themes/material-blue/import.inc:83 +#: ../../../../inc/themes/classic/import.inc:152 +#: ../../../../inc/themes/material-blue/import.inc:80 msgid "Archivo" msgstr "Fichier" -#: ../../../../ajax/ajax_files.php:160 ../../../../inc/Files.class.php:66 +#: ../../../../ajax/ajax_files.php:161 ../../../../inc/Files.class.php:66 #: ../../../../inc/Files.class.php:114 -#: ../../../../web/AccountsMgmtC.class.php:266 +#: ../../../../web/AccountsMgmtC.class.php:267 #: ../../../../inc/themes/classic/customfields.inc:16 #: ../../../../inc/themes/material-blue/customfields.inc:19 msgid "Tipo" msgstr "Type" -#: ../../../../ajax/ajax_files.php:161 ../../../../inc/Files.class.php:67 +#: ../../../../ajax/ajax_files.php:162 ../../../../inc/Files.class.php:67 #: ../../../../inc/Files.class.php:115 msgid "Tamaño" msgstr "Taille" -#: ../../../../ajax/ajax_files.php:203 +#: ../../../../ajax/ajax_files.php:204 msgid "Archivo eliminado" msgstr "Fichier supprimé" -#: ../../../../ajax/ajax_files.php:208 +#: ../../../../ajax/ajax_files.php:209 msgid "Error al eliminar el archivo" msgstr "Erreur pendant la supression du fichier" #: ../../../../ajax/ajax_getContent.php:42 #: ../../../../inc/ApiRequest.class.php:55 -#: ../../../../inc/CustomFieldDef.class.php:38 -#: ../../../../inc/CustomFields.class.php:48 +#: ../../../../inc/CustomFieldDef.class.php:45 +#: ../../../../inc/CustomFields.class.php:54 msgid "Parámetros incorrectos" msgstr "Paramètres Incorrects" -#: ../../../../ajax/ajax_migrate.php:55 +#: ../../../../ajax/ajax_migrate.php:56 msgid "Confirmar la importación de cuentas" msgstr "Confirmer l'importation des comptes" -#: ../../../../ajax/ajax_migrate.php:57 +#: ../../../../ajax/ajax_migrate.php:58 msgid "Es necesario un usuario de conexión" msgstr "Nom d'utilisateur de connexion requis" -#: ../../../../ajax/ajax_migrate.php:59 +#: ../../../../ajax/ajax_migrate.php:60 msgid "Es necesaria una clave de conexión" msgstr "Mot de passe de connexion requis" -#: ../../../../ajax/ajax_migrate.php:61 +#: ../../../../ajax/ajax_migrate.php:62 msgid "Es necesario el nombre de la BBDD" msgstr "Nom de base de données requis" -#: ../../../../ajax/ajax_migrate.php:63 +#: ../../../../ajax/ajax_migrate.php:64 msgid "Es necesario un nombre de host" msgstr "Nom d'hôte requis" -#: ../../../../ajax/ajax_passReset.php:47 #: ../../../../ajax/ajax_passReset.php:50 +#: ../../../../ajax/ajax_passReset.php:53 msgid "Recuperación de Clave" msgstr "Recupération de Mot de passe" -#: ../../../../ajax/ajax_passReset.php:53 -#: ../../../../ajax/ajax_passReset.php:58 +#: ../../../../ajax/ajax_passReset.php:56 +#: ../../../../ajax/ajax_passReset.php:61 msgid "Solicitado para" msgstr "Requis pour" -#: ../../../../ajax/ajax_passReset.php:55 -#: ../../../../ajax/ajax_sendRequest.php:75 +#: ../../../../ajax/ajax_passReset.php:58 +#: ../../../../ajax/ajax_sendRequest.php:76 msgid "Solicitud enviada" msgstr "Requête envoyée" -#: ../../../../ajax/ajax_passReset.php:55 +#: ../../../../ajax/ajax_passReset.php:58 msgid "En breve recibirá un correo para completar la solicitud." msgstr "Vous recevrez un courriel de confirmation sous peu." -#: ../../../../ajax/ajax_passReset.php:60 +#: ../../../../ajax/ajax_passReset.php:63 msgid "No se ha podido realizar la solicitud. Consulte con el administrador." msgstr "La requête ne peut aboutir. Veuillez contacter l'administrateur" -#: ../../../../ajax/ajax_passReset.php:72 -#: ../../../../inc/UserBase.class.php:568 -#: ../../../../inc/UserUtil.class.php:662 +#: ../../../../ajax/ajax_passReset.php:73 +#: ../../../../inc/UserBase.class.php:570 +#: ../../../../inc/UserPass.class.php:127 msgid "Modificar Clave Usuario" msgstr "Modifier Mot de passe Utilisateur" -#: ../../../../ajax/ajax_passReset.php:72 -#: ../../../../inc/UserBase.class.php:568 -#: ../../../../inc/UserBase.class.php:592 -#: ../../../../inc/UserUtil.class.php:662 -#: ../../../../web/UsersMgmtC.class.php:88 +#: ../../../../ajax/ajax_passReset.php:73 +#: ../../../../inc/UserBase.class.php:570 +#: ../../../../inc/UserBase.class.php:594 +#: ../../../../inc/UserPass.class.php:127 +#: ../../../../web/UsersMgmtC.class.php:89 #: ../../../../inc/themes/classic/users.inc:21 #: ../../../../inc/themes/material-blue/users.inc:24 msgid "Login" msgstr "Login" -#: ../../../../ajax/ajax_passReset.php:80 +#: ../../../../ajax/ajax_passReset.php:81 msgid "La clave es incorrecta o no coincide" msgstr "Le mot de passe est incorrect ou ne correspond pas" -#: ../../../../ajax/ajax_sendRequest.php:48 +#: ../../../../ajax/ajax_sendRequest.php:49 msgid "Es necesaria una descripción" msgstr "Description requise" -#: ../../../../ajax/ajax_sendRequest.php:61 +#: ../../../../ajax/ajax_sendRequest.php:62 msgid "Solicitud de Modificación de Cuenta" msgstr "Demande de modification de Compte" -#: ../../../../ajax/ajax_sendRequest.php:62 +#: ../../../../ajax/ajax_sendRequest.php:63 msgid "Solicitante" msgstr "Demandeur" -#: ../../../../ajax/ajax_sendRequest.php:63 -#: ../../../../ajax/ajax_viewpass.php:70 ../../../../inc/Account.class.php:165 -#: ../../../../inc/Account.class.php:219 ../../../../inc/Account.class.php:400 -#: ../../../../inc/Account.class.php:423 ../../../../inc/Account.class.php:665 +#: ../../../../ajax/ajax_sendRequest.php:64 +#: ../../../../ajax/ajax_viewpass.php:71 ../../../../inc/Account.class.php:181 +#: ../../../../inc/Account.class.php:236 ../../../../inc/Account.class.php:417 +#: ../../../../inc/Account.class.php:440 ../../../../inc/Account.class.php:682 #: ../../../../inc/Files.class.php:64 msgid "Cuenta" msgstr "Compte" -#: ../../../../ajax/ajax_sendRequest.php:64 -#: ../../../../inc/Account.class.php:164 ../../../../inc/Account.class.php:218 -#: ../../../../inc/Account.class.php:399 ../../../../inc/Account.class.php:422 -#: ../../../../inc/Account.class.php:664 ../../../../inc/Customer.class.php:65 +#: ../../../../ajax/ajax_sendRequest.php:65 +#: ../../../../inc/Account.class.php:180 ../../../../inc/Account.class.php:235 +#: ../../../../inc/Account.class.php:416 ../../../../inc/Account.class.php:439 +#: ../../../../inc/Account.class.php:681 ../../../../inc/Customer.class.php:65 #: ../../../../inc/Customer.class.php:115 #: ../../../../inc/Customer.class.php:163 -#: ../../../../web/SearchC.class.php:286 +#: ../../../../web/SearchC.class.php:285 #: ../../../../inc/themes/classic/account.inc:23 #: ../../../../inc/themes/classic/editpass.inc:12 #: ../../../../inc/themes/classic/request.inc:9 @@ -1030,59 +1081,59 @@ msgstr "Compte" #: ../../../../inc/themes/material-blue/account.inc:29 #: ../../../../inc/themes/material-blue/editpass.inc:13 #: ../../../../inc/themes/material-blue/request.inc:10 -#: ../../../../inc/themes/material-blue/search.inc:24 +#: ../../../../inc/themes/material-blue/search.inc:60 msgid "Cliente" msgstr "Client" -#: ../../../../ajax/ajax_sendRequest.php:65 -#: ../../../../web/AccountsMgmtC.class.php:79 -#: ../../../../web/AccountsMgmtC.class.php:138 -#: ../../../../web/UsersMgmtC.class.php:187 +#: ../../../../ajax/ajax_sendRequest.php:66 +#: ../../../../web/AccountsMgmtC.class.php:80 +#: ../../../../web/AccountsMgmtC.class.php:139 +#: ../../../../web/UsersMgmtC.class.php:188 #: ../../../../inc/themes/classic/categories.inc:16 #: ../../../../inc/themes/classic/customers.inc:16 -#: ../../../../inc/themes/classic/eventlog.inc:31 +#: ../../../../inc/themes/classic/eventlog.inc:29 #: ../../../../inc/themes/classic/groups.inc:16 #: ../../../../inc/themes/material-blue/categories.inc:20 #: ../../../../inc/themes/material-blue/customers.inc:20 -#: ../../../../inc/themes/material-blue/eventlog.inc:30 +#: ../../../../inc/themes/material-blue/eventlog.inc:29 #: ../../../../inc/themes/material-blue/groups.inc:20 msgid "Descripción" msgstr "Description" -#: ../../../../ajax/ajax_sendRequest.php:78 +#: ../../../../ajax/ajax_sendRequest.php:79 msgid "Error al enviar la solicitud" msgstr "Erreur à l'envoie de la demande" -#: ../../../../ajax/ajax_userPrefsSave.php:70 -#: ../../../../ajax/ajax_userPrefsSave.php:103 +#: ../../../../ajax/ajax_userPrefsSave.php:73 +#: ../../../../ajax/ajax_userPrefsSave.php:106 msgid "Error al actualizar preferencias" msgstr "" -#: ../../../../ajax/ajax_userPrefsSave.php:80 -#: ../../../../ajax/ajax_userPrefsSave.php:106 +#: ../../../../ajax/ajax_userPrefsSave.php:83 +#: ../../../../ajax/ajax_userPrefsSave.php:109 msgid "Preferencias actualizadas" msgstr "Préférences mises à jour" -#: ../../../../ajax/ajax_viewpass.php:54 +#: ../../../../ajax/ajax_viewpass.php:55 msgid "La clave maestra no coincide" msgstr "Le mot de passe maître ne correspond pas" -#: ../../../../ajax/ajax_viewpass.php:58 +#: ../../../../ajax/ajax_viewpass.php:59 #: ../../../../inc/Controller.class.php:166 msgid "No tiene permisos para acceder a esta cuenta" msgstr "Vous n'avez pas les permissions pour accéder à ce compte" -#: ../../../../ajax/ajax_viewpass.php:68 ../../../../inc/Acl.class.php:133 +#: ../../../../ajax/ajax_viewpass.php:69 ../../../../inc/Acl.class.php:133 #: ../../../../inc/themes/classic/account.inc:382 #: ../../../../inc/themes/classic/profiles.inc:23 #: ../../../../inc/themes/classic/search.inc:109 -#: ../../../../inc/themes/material-blue/account.inc:422 +#: ../../../../inc/themes/material-blue/account.inc:424 #: ../../../../inc/themes/material-blue/profiles.inc:35 -#: ../../../../inc/themes/material-blue/search.inc:113 +#: ../../../../inc/themes/material-blue/search.inc:149 msgid "Ver Clave" msgstr "Voir Mot de passe" -#: ../../../../ajax/ajax_viewpass.php:79 ../../../../js/strings.js.php:73 +#: ../../../../ajax/ajax_viewpass.php:80 ../../../../js/strings.js.php:73 msgid "Clave de Cuenta" msgstr "Mot de passe du compte" @@ -1097,11 +1148,19 @@ msgstr "" #: ../../../../inc/AccountSearch.class.php:28 ../../../../inc/Acl.class.php:29 #: ../../../../inc/Api.class.php:30 ../../../../inc/ApiRequest.class.php:28 #: ../../../../inc/ApiTokens.class.php:28 ../../../../inc/Auth.class.php:29 -#: ../../../../inc/Auth2FA.class.php:32 ../../../../inc/Backup.class.php:28 -#: ../../../../inc/Category.class.php:29 ../../../../inc/Common.class.php:28 -#: ../../../../inc/Config.class.php:28 ../../../../inc/Controller.class.php:31 -#: ../../../../inc/Crypt.class.php:28 ../../../../inc/CsvImport.class.php:28 +#: ../../../../inc/Auth2FA.class.php:33 ../../../../inc/Backup.class.php:28 +#: ../../../../inc/Base.php:26 ../../../../inc/Cache.class.php:28 +#: ../../../../inc/Category.class.php:29 ../../../../inc/Config.class.php:28 +#: ../../../../inc/ConfigDB.class.php:28 +#: ../../../../inc/ConfigInterface.class.php:28 +#: ../../../../inc/Controller.class.php:31 ../../../../inc/Crypt.class.php:28 +#: ../../../../inc/CryptMasterPass.class.php:28 +#: ../../../../inc/CryptPKI.class.php:28 +#: ../../../../inc/CsvImport.class.php:28 #: ../../../../inc/CsvImportBase.class.php:28 +#: ../../../../inc/CustomFieldDef.class.php:28 +#: ../../../../inc/CustomFields.class.php:28 +#: ../../../../inc/CustomFieldsBase.class.php:28 #: ../../../../inc/Customer.class.php:29 ../../../../inc/DB.class.php:28 #: ../../../../inc/DBConnectionFactory.class.php:30 #: ../../../../inc/FileImport.class.php:28 ../../../../inc/Files.class.php:29 @@ -1116,25 +1175,34 @@ msgstr "" #: ../../../../inc/Migrate.class.php:28 ../../../../inc/Minify.class.php:30 #: ../../../../inc/Profile.class.php:29 #: ../../../../inc/ProfileBase.class.php:28 -#: ../../../../inc/Request.class.php:110 ../../../../inc/Session.class.php:28 +#: ../../../../inc/Request.class.php:110 ../../../../inc/Response.class.php:28 +#: ../../../../inc/SPException.class.php:28 +#: ../../../../inc/Session.class.php:28 +#: ../../../../inc/SessionUtil.class.php:28 #: ../../../../inc/SyspassImport.class.php:28 -#: ../../../../inc/Themes.class.php:28 ../../../../inc/Upgrade.class.php:29 -#: ../../../../inc/User.class.php:28 ../../../../inc/UserLdap.class.php:28 +#: ../../../../inc/Template.class.php:27 ../../../../inc/Themes.class.php:28 +#: ../../../../inc/Upgrade.class.php:29 ../../../../inc/User.class.php:28 +#: ../../../../inc/UserAccounts.class.php:28 +#: ../../../../inc/UserBase.class.php:28 ../../../../inc/UserLdap.class.php:28 +#: ../../../../inc/UserMigrate.class.php:28 +#: ../../../../inc/UserPass.class.php:28 +#: ../../../../inc/UserPassRecover.class.php:28 #: ../../../../inc/UserPreferences.class.php:28 -#: ../../../../inc/UserUtil.class.php:28 ../../../../inc/Util.class.php:31 +#: ../../../../inc/UserUtil.class.php:28 ../../../../inc/Util.class.php:28 +#: ../../../../inc/XmlExport.class.php:28 #: ../../../../inc/XmlImport.class.php:28 #: ../../../../inc/XmlImportBase.class.php:28 -#: ../../../../web/AccountC.class.php:38 -#: ../../../../web/AccountsMgmtC.class.php:32 -#: ../../../../web/ConfigC.class.php:33 ../../../../web/EventlogC.class.php:28 -#: ../../../../web/SearchC.class.php:31 -#: ../../../../web/UsersMgmtC.class.php:39 -#: ../../../../web/UsersPrefsC.class.php:34 +#: ../../../../web/AccountC.class.php:41 +#: ../../../../web/AccountsMgmtC.class.php:33 +#: ../../../../web/ConfigC.class.php:35 ../../../../web/EventlogC.class.php:30 +#: ../../../../web/SearchC.class.php:33 +#: ../../../../web/UsersMgmtC.class.php:40 +#: ../../../../web/UsersPrefsC.class.php:35 msgid "No es posible acceder directamente a este archivo" msgstr "Impossible d'accéder directement à ce fichier" -#: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:185 -#: ../../../../inc/Account.class.php:634 +#: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:201 +#: ../../../../inc/Account.class.php:651 msgid "Error al actualizar el historial" msgstr "Erreur pendant l'actualisation de l'historique" @@ -1142,121 +1210,121 @@ msgstr "Erreur pendant l'actualisation de l'historique" msgid "Actualizar Cuenta" msgstr "Actualiser Compte" -#: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:381 +#: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:398 msgid "Error al actualizar los grupos secundarios" msgstr "Erreur pendant l'actualisation des groupes secondaires" -#: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:389 +#: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:406 msgid "Error al actualizar los usuarios de la cuenta" msgstr "Erreur pendant la modification des comptes utilisateurs" -#: ../../../../inc/Account.class.php:217 +#: ../../../../inc/Account.class.php:234 msgid "Restaurar Cuenta" msgstr "Restaurer Compte" -#: ../../../../inc/Account.class.php:324 -#: ../../../../inc/AccountHistory.class.php:343 -#: ../../../../inc/AccountHistory.class.php:503 +#: ../../../../inc/Account.class.php:341 +#: ../../../../inc/AccountHistory.class.php:348 +#: ../../../../inc/AccountHistory.class.php:508 msgid "No se pudieron obtener los datos de la cuenta" msgstr "Erreur lors de la récupération des données du compte" -#: ../../../../inc/Account.class.php:398 ../../../../inc/Acl.class.php:129 -#: ../../../../web/AccountC.class.php:147 ../../../../web/MainC.class.php:183 +#: ../../../../inc/Account.class.php:415 ../../../../inc/Acl.class.php:129 +#: ../../../../web/AccountC.class.php:150 ../../../../web/MainC.class.php:183 msgid "Nueva Cuenta" msgstr "Nouveau Compte" -#: ../../../../inc/Account.class.php:416 +#: ../../../../inc/Account.class.php:433 msgid "ERROR: Error en la operación." msgstr "ERREUR: Echec de l'opération" -#: ../../../../inc/Account.class.php:421 ../../../../inc/Acl.class.php:134 -#: ../../../../web/AccountC.class.php:353 +#: ../../../../inc/Account.class.php:438 ../../../../inc/Acl.class.php:134 +#: ../../../../web/AccountC.class.php:356 #: ../../../../inc/themes/classic/account.inc:369 #: ../../../../inc/themes/classic/search.inc:137 -#: ../../../../inc/themes/material-blue/account.inc:416 -#: ../../../../inc/themes/material-blue/search.inc:140 +#: ../../../../inc/themes/material-blue/account.inc:418 +#: ../../../../inc/themes/material-blue/search.inc:178 msgid "Eliminar Cuenta" msgstr "Supprimer Compte" -#: ../../../../inc/Account.class.php:434 +#: ../../../../inc/Account.class.php:451 msgid "Error al eliminar grupos asociados a la cuenta" msgstr "Erreur pendant la suppression du groupe du compte" -#: ../../../../inc/Account.class.php:438 +#: ../../../../inc/Account.class.php:455 msgid "Error al eliminar usuarios asociados a la cuenta" msgstr "Erreur pendant la suppression des utilisateurs du compte" -#: ../../../../inc/Account.class.php:442 +#: ../../../../inc/Account.class.php:459 msgid "Error al eliminar archivos asociados a la cuenta" msgstr "Erreur pendant la supression des fichiers du compte" -#: ../../../../inc/Account.class.php:496 -#: ../../../../inc/AccountHistory.class.php:124 +#: ../../../../inc/Account.class.php:513 +#: ../../../../inc/AccountHistory.class.php:129 #: ../../../../inc/XmlImport.class.php:62 msgid "Inicio" msgstr "Début" -#: ../../../../inc/Account.class.php:501 -#: ../../../../inc/AccountHistory.class.php:130 +#: ../../../../inc/Account.class.php:518 +#: ../../../../inc/AccountHistory.class.php:135 msgid "Error en el módulo de encriptación" msgstr "Erreur dans le module d'encryption" -#: ../../../../inc/Account.class.php:509 -#: ../../../../inc/AccountHistory.class.php:138 +#: ../../../../inc/Account.class.php:526 +#: ../../../../inc/AccountHistory.class.php:143 msgid "Error al obtener las claves de las cuentas" msgstr "Erreur pendant la récupération des mot de passe des comptes" -#: ../../../../inc/Account.class.php:525 -#: ../../../../inc/AccountHistory.class.php:160 +#: ../../../../inc/Account.class.php:542 +#: ../../../../inc/AccountHistory.class.php:165 msgid "Clave de cuenta vacía" msgstr "Le mot du passe du compte est vide" -#: ../../../../inc/Account.class.php:530 -#: ../../../../inc/AccountHistory.class.php:165 +#: ../../../../inc/Account.class.php:547 +#: ../../../../inc/AccountHistory.class.php:170 msgid "IV de encriptación incorrecto" msgstr "" -#: ../../../../inc/Account.class.php:539 -#: ../../../../inc/AccountHistory.class.php:174 +#: ../../../../inc/Account.class.php:556 +#: ../../../../inc/AccountHistory.class.php:179 msgid "No es posible desencriptar la clave de la cuenta" msgstr "Impossible de décrypter le mot de passe du compte" -#: ../../../../inc/Account.class.php:545 +#: ../../../../inc/Account.class.php:562 msgid "Fallo al actualizar la clave de la cuenta" msgstr "Erreur à la mise à jour des mots de passe des comptes" -#: ../../../../inc/Account.class.php:559 +#: ../../../../inc/Account.class.php:576 msgid "Cuentas actualizadas" msgstr "Comptes à jour" -#: ../../../../inc/Account.class.php:564 -#: ../../../../inc/AccountHistory.class.php:199 -#: ../../../../inc/CustomFields.class.php:319 +#: ../../../../inc/Account.class.php:581 +#: ../../../../inc/AccountHistory.class.php:204 +#: ../../../../inc/CustomFields.class.php:325 msgid "Fin" msgstr "Fin" -#: ../../../../inc/Account.class.php:663 +#: ../../../../inc/Account.class.php:680 msgid "Modificar Clave" msgstr "Modifier Mot de passe" -#: ../../../../inc/Account.class.php:698 +#: ../../../../inc/Account.class.php:715 msgid "No se pudieron obtener los datos de las cuentas" msgstr "Il n'était pas possible de récupérer les données des comptes" -#: ../../../../inc/AccountHistory.class.php:123 +#: ../../../../inc/AccountHistory.class.php:128 msgid "Actualizar Clave Maestra (H)" msgstr "Mettre à jour le Mot de Passe Maître (H)" -#: ../../../../inc/AccountHistory.class.php:155 +#: ../../../../inc/AccountHistory.class.php:160 msgid "La clave maestra del registro no coincide" msgstr "Le mot de passe maître de l'enregistrement ne correspond pas" -#: ../../../../inc/AccountHistory.class.php:180 +#: ../../../../inc/AccountHistory.class.php:185 msgid "Fallo al actualizar la clave del histórico" msgstr "Erreur pendant la mise à jour du mot de passe maître de l'historique" -#: ../../../../inc/AccountHistory.class.php:194 -#: ../../../../inc/CustomFields.class.php:315 +#: ../../../../inc/AccountHistory.class.php:199 +#: ../../../../inc/CustomFields.class.php:321 msgid "Registros actualizados" msgstr "Enregistrements à jour" @@ -1272,13 +1340,13 @@ msgstr "Rechercher des comptes" msgid "Ver Cuenta" msgstr "Voir un compte" -#: ../../../../inc/Acl.class.php:128 ../../../../web/AccountC.class.php:260 +#: ../../../../inc/Acl.class.php:128 ../../../../web/AccountC.class.php:263 #: ../../../../inc/themes/classic/search.inc:131 -#: ../../../../inc/themes/material-blue/search.inc:134 +#: ../../../../inc/themes/material-blue/search.inc:172 msgid "Copiar Cuenta" msgstr "Copier Compte" -#: ../../../../inc/Acl.class.php:130 ../../../../web/AccountC.class.php:324 +#: ../../../../inc/Acl.class.php:130 ../../../../web/AccountC.class.php:327 msgid "Editar Cuenta" msgstr "Editer Compte" @@ -1337,8 +1405,8 @@ msgstr "Gérer les groupes" msgid "Gestión Perfiles" msgstr "Gérer les profiles" -#: ../../../../inc/Acl.class.php:146 ../../../../inc/Config.class.php:118 -#: ../../../../inc/Config.class.php:403 ../../../../web/MainC.class.php:201 +#: ../../../../inc/Acl.class.php:146 ../../../../inc/ConfigDB.class.php:91 +#: ../../../../inc/ConfigDB.class.php:119 ../../../../web/MainC.class.php:201 #: ../../../../inc/themes/classic/profiles.inc:57 #: ../../../../inc/themes/material-blue/profiles.inc:66 msgid "Configuración" @@ -1348,13 +1416,13 @@ msgstr "Configuration" msgid "Configuración General" msgstr "Configuration générale" -#: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:130 +#: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:132 #: ../../../../inc/themes/classic/profiles.inc:65 #: ../../../../inc/themes/material-blue/profiles.inc:77 msgid "Encriptación" msgstr "Chiffrement" -#: ../../../../inc/Acl.class.php:149 ../../../../web/ConfigC.class.php:175 +#: ../../../../inc/Acl.class.php:149 ../../../../web/ConfigC.class.php:177 #: ../../../../inc/themes/classic/backup.inc:4 #: ../../../../inc/themes/material-blue/backup.inc:4 msgid "Copia de Seguridad" @@ -1412,7 +1480,7 @@ msgid "Actualizar Autorización" msgstr "Mise à jour de l'autorisation" #: ../../../../inc/ApiTokens.class.php:331 -#: ../../../../web/UsersMgmtC.class.php:421 +#: ../../../../web/UsersMgmtC.class.php:422 msgid "Eliminar Autorización" msgstr "Supprimer l'autorisation" @@ -1452,12 +1520,12 @@ msgid "Error al realizar backup en modo compatibilidad" msgstr "Erreur pendant la sauvegarde en mode compatibilité" #: ../../../../inc/Backup.class.php:223 -#: ../../../../inc/XmlExport.class.php:465 +#: ../../../../inc/XmlExport.class.php:467 msgid "No es posible crear el directorio de backups" msgstr "Impossible de créer le dossier de sauvegarde" #: ../../../../inc/Backup.class.php:228 -#: ../../../../inc/XmlExport.class.php:470 +#: ../../../../inc/XmlExport.class.php:472 msgid "Compruebe los permisos del directorio de backups" msgstr "Vérifiez les permissions du dossier de sauvegarde" @@ -1473,11 +1541,11 @@ msgstr "Erreur pendant la création de la catégorie" #: ../../../../inc/Category.class.php:83 #: ../../../../inc/Category.class.php:132 #: ../../../../inc/Category.class.php:182 -#: ../../../../web/SearchC.class.php:298 +#: ../../../../web/SearchC.class.php:297 #: ../../../../inc/themes/classic/account.inc:42 #: ../../../../inc/themes/classic/search.inc:53 #: ../../../../inc/themes/material-blue/account.inc:50 -#: ../../../../inc/themes/material-blue/search.inc:49 +#: ../../../../inc/themes/material-blue/search.inc:85 msgid "Categoría" msgstr "Catégorie" @@ -1490,7 +1558,7 @@ msgid "Error al eliminar la categoría" msgstr "Erreur pendant la suppression de la catégorie" #: ../../../../inc/Category.class.php:132 -#: ../../../../web/AccountsMgmtC.class.php:101 +#: ../../../../web/AccountsMgmtC.class.php:102 msgid "Eliminar Categoría" msgstr "Supprimer Catégorie" @@ -1502,23 +1570,24 @@ msgstr "Erreur pendant l'actualisation de la categorie" msgid "Modificar Categoría" msgstr "Modifier Catégorie" -#: ../../../../inc/Config.class.php:118 ../../../../inc/Config.class.php:404 -msgid "Modificar configuración" -msgstr "Modifier configuration" - -#: ../../../../inc/Config.class.php:276 +#: ../../../../inc/Config.class.php:148 msgid "No es posible escribir el archivo de configuración" msgstr "Impossible d'écrire dans le fichier de configuration" -#: ../../../../inc/Config.class.php:276 +#: ../../../../inc/Config.class.php:148 msgid "Compruebe los permisos del directorio \"config\"" msgstr "Vérifiez les permissions du dossier \"config\"" -#: ../../../../inc/Config.class.php:405 +#: ../../../../inc/ConfigDB.class.php:91 +#: ../../../../inc/ConfigDB.class.php:120 +msgid "Modificar configuración" +msgstr "Modifier configuration" + +#: ../../../../inc/ConfigDB.class.php:121 msgid "Parámetro" msgstr "Paramètre" -#: ../../../../inc/Config.class.php:406 +#: ../../../../inc/ConfigDB.class.php:122 msgid "Valor" msgstr "Valeur" @@ -1541,7 +1610,7 @@ msgstr "Vous n'avez pas les permissions pour accéder à cette page" msgid "No tiene permisos para realizar esta operación" msgstr "Vous n'avez pas les permissions pour effectuer cette opération" -#: ../../../../inc/Crypt.class.php:119 ../../../../inc/Email.class.php:146 +#: ../../../../inc/Crypt.class.php:119 ../../../../inc/Email.class.php:148 msgid "Aviso" msgstr "Avertissement" @@ -1558,13 +1627,13 @@ msgstr "Le module d'encryption ne peut pas être chargé" msgid "Error al generar datos cifrados" msgstr "Erreur pendant la création des données d'encryption" -#: ../../../../inc/CryptPKI.class.php:44 +#: ../../../../inc/CryptPKI.class.php:46 #, fuzzy msgid "No es posible generar las claves RSA" msgstr "Impossible de créer le client" -#: ../../../../inc/CryptPKI.class.php:110 -#: ../../../../inc/CryptPKI.class.php:141 +#: ../../../../inc/CryptPKI.class.php:112 +#: ../../../../inc/CryptPKI.class.php:143 #, fuzzy msgid "El archivo de clave no existe" msgstr "Fichier inexistant" @@ -1582,10 +1651,10 @@ msgstr "" #: ../../../../inc/CsvImportBase.class.php:140 #: ../../../../inc/CsvImportBase.class.php:145 #: ../../../../inc/Import.class.php:118 ../../../../inc/Import.class.php:124 -#: ../../../../inc/Migrate.class.php:349 +#: ../../../../inc/Migrate.class.php:348 #: ../../../../inc/XmlImport.class.php:62 #: ../../../../inc/XmlImport.class.php:63 -#: ../../../../web/ConfigC.class.php:197 +#: ../../../../web/ConfigC.class.php:199 msgid "Importar Cuentas" msgstr "Importer Comptes" @@ -1603,40 +1672,74 @@ msgstr "" msgid "Cuenta importada: %s" msgstr "Compte %s importé" -#: ../../../../inc/CustomFields.class.php:270 -#: ../../../../web/AccountsMgmtC.class.php:300 +#: ../../../../inc/CustomFields.class.php:276 +#: ../../../../web/AccountsMgmtC.class.php:301 #: ../../../../inc/themes/classic/profiles.inc:107 #: ../../../../inc/themes/material-blue/profiles.inc:124 msgid "Campos Personalizados" msgstr "Champs personnalisés" -#: ../../../../inc/CustomFields.class.php:279 +#: ../../../../inc/CustomFields.class.php:285 #, fuzzy msgid "Error al actualizar datos encriptados" msgstr "Erreur pendant l'actualisation du mot de passe" -#: ../../../../inc/CustomFields.class.php:283 +#: ../../../../inc/CustomFields.class.php:289 msgid "Actualizando datos encriptados" msgstr "" -#: ../../../../inc/CustomFields.class.php:310 +#: ../../../../inc/CustomFields.class.php:316 #, fuzzy msgid "Registros no actualizados" msgstr "Enregistrements à jour" -#: ../../../../inc/CustomFieldsBase.class.php:81 +#: ../../../../inc/CustomFieldsBase.class.php:86 +#, fuzzy +msgid "Texto" +msgstr "Notice d'aide" + +#: ../../../../inc/CustomFieldsBase.class.php:88 +#, fuzzy +msgid "Fecha" +msgstr "Date Ajoutée" + +#: ../../../../inc/CustomFieldsBase.class.php:89 +#, fuzzy +msgid "Número" +msgstr "Inclure des nombres" + +#: ../../../../inc/CustomFieldsBase.class.php:90 +#: ../../../../inc/themes/classic/passreset.inc:22 +#: ../../../../inc/themes/classic/users.inc:61 +#: ../../../../inc/themes/material-blue/users.inc:71 +msgid "Email" +msgstr "Courriel" + +#: ../../../../inc/CustomFieldsBase.class.php:91 +msgid "Teléfono" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:92 +msgid "Link" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:93 +msgid "Color" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:107 #: ../../../../inc/themes/classic/profiles.inc:98 #: ../../../../inc/themes/material-blue/profiles.inc:114 msgid "Categorías" msgstr "Catégories" -#: ../../../../inc/CustomFieldsBase.class.php:82 +#: ../../../../inc/CustomFieldsBase.class.php:108 #: ../../../../inc/themes/classic/profiles.inc:103 #: ../../../../inc/themes/material-blue/profiles.inc:119 msgid "Clientes" msgstr "Clients" -#: ../../../../inc/CustomFieldsBase.class.php:84 +#: ../../../../inc/CustomFieldsBase.class.php:110 #: ../../../../inc/themes/classic/account.inc:143 #: ../../../../inc/themes/classic/profiles.inc:89 #: ../../../../inc/themes/material-blue/account.inc:169 @@ -1669,7 +1772,7 @@ msgid "Error al eliminar el cliente" msgstr "Erreur pendant la suppression du client" #: ../../../../inc/Customer.class.php:163 -#: ../../../../web/AccountsMgmtC.class.php:159 +#: ../../../../web/AccountsMgmtC.class.php:160 msgid "Eliminar Cliente" msgstr "Supprimer Client" @@ -1677,22 +1780,22 @@ msgstr "Supprimer Client" #: ../../../../inc/DBConnectionFactory.class.php:85 #: ../../../../inc/DBConnectionFactory.class.php:99 #: ../../../../inc/Installer.class.php:235 -#: ../../../../inc/Migrate.class.php:115 +#: ../../../../inc/Migrate.class.php:114 msgid "No es posible conectar con la BD" msgstr "Impossible de se connecter à la base de données" #: ../../../../inc/DBConnectionFactory.class.php:83 #: ../../../../inc/DBConnectionFactory.class.php:85 #: ../../../../inc/Installer.class.php:236 -#: ../../../../inc/Migrate.class.php:116 +#: ../../../../inc/Migrate.class.php:115 msgid "Compruebe los datos de conexión" msgstr "Veillez vérifier les parmètres de connexion" -#: ../../../../inc/Email.class.php:59 ../../../../inc/UserUtil.class.php:565 +#: ../../../../inc/Email.class.php:59 ../../../../inc/UserUtil.class.php:182 msgid "N/D" msgstr "N/A" -#: ../../../../inc/Email.class.php:60 ../../../../web/UsersMgmtC.class.php:392 +#: ../../../../inc/Email.class.php:60 ../../../../web/UsersMgmtC.class.php:393 #: ../../../../inc/themes/classic/tokens.inc:20 #: ../../../../inc/themes/material-blue/tokens.inc:20 msgid "Acción" @@ -1758,7 +1861,7 @@ msgid "Error al actualizar los usuarios del grupo" msgstr "Erreur pendant la mise à jour de" #: ../../../../inc/Groups.class.php:369 -#: ../../../../web/UsersMgmtC.class.php:209 +#: ../../../../web/UsersMgmtC.class.php:210 msgid "Eliminar Grupo" msgstr "Supprimer Groupe" @@ -1775,7 +1878,7 @@ msgid "Compruebe el formato del archivo" msgstr "Veuillez vérifiez le format de fichier" #: ../../../../inc/Import.class.php:124 ../../../../inc/Import.class.php:127 -#: ../../../../inc/Migrate.class.php:92 +#: ../../../../inc/Migrate.class.php:91 msgid "Importación finalizada" msgstr "Importation terminée" @@ -2027,31 +2130,31 @@ msgstr "Erreur de connexion (BIND)" msgid "Error al buscar objetos en DN base" msgstr "Erreur pendant la recherche d'objets dans la base DN" -#: ../../../../inc/Ldap.class.php:217 ../../../../inc/Ldap.class.php:222 -#: ../../../../inc/Ldap.class.php:229 ../../../../inc/Ldap.class.php:233 -#: ../../../../inc/Ldap.class.php:242 ../../../../inc/Ldap.class.php:246 +#: ../../../../inc/Ldap.class.php:212 ../../../../inc/Ldap.class.php:218 +#: ../../../../inc/Ldap.class.php:225 ../../../../inc/Ldap.class.php:230 +#: ../../../../inc/Ldap.class.php:235 ../../../../inc/Ldap.class.php:240 msgid "Error al buscar RDN de grupo" msgstr "Erreur pendant la recherche RDN du groupe" -#: ../../../../inc/Ldap.class.php:295 ../../../../inc/Ldap.class.php:300 -#: ../../../../inc/Ldap.class.php:314 ../../../../inc/Ldap.class.php:318 +#: ../../../../inc/Ldap.class.php:289 ../../../../inc/Ldap.class.php:295 +#: ../../../../inc/Ldap.class.php:310 ../../../../inc/Ldap.class.php:315 msgid "Error al buscar el DN del usuario" msgstr "Erreur pendant la recherche du DN de l'utilisateur" -#: ../../../../inc/Ldap.class.php:307 ../../../../inc/Ldap.class.php:311 +#: ../../../../inc/Ldap.class.php:302 ../../../../inc/Ldap.class.php:307 msgid "Error al localizar el usuario en LDAP" msgstr "Erreur pendant la recherche de l'utilisateur dans l'annuaire LDAP" -#: ../../../../inc/Ldap.class.php:392 ../../../../inc/Ldap.class.php:397 -#: ../../../../inc/LdapADS.class.php:99 ../../../../inc/LdapADS.class.php:104 +#: ../../../../inc/Ldap.class.php:384 ../../../../inc/Ldap.class.php:390 +#: ../../../../inc/LdapADS.class.php:103 ../../../../inc/LdapADS.class.php:108 msgid "Error al buscar el grupo de usuarios" msgstr "Erreur pendant la recherche de groupe d'utilisateurs" -#: ../../../../inc/Ldap.class.php:404 +#: ../../../../inc/Ldap.class.php:397 msgid "Usuario verificado en grupo" msgstr "" -#: ../../../../inc/LdapADS.class.php:108 ../../../../inc/LdapADS.class.php:113 +#: ../../../../inc/LdapADS.class.php:112 ../../../../inc/LdapADS.class.php:117 msgid "No se encontró el grupo con ese nombre" msgstr "Nom de groupe introuvable avec ce nom" @@ -2060,144 +2163,144 @@ msgid "Vaciar Eventos" msgstr "Nettoyer les évènements" #: ../../../../inc/Log.class.php:88 -#: ../../../../inc/themes/classic/eventlog.inc:100 -#: ../../../../inc/themes/material-blue/eventlog.inc:100 +#: ../../../../inc/themes/classic/eventlog.inc:98 +#: ../../../../inc/themes/material-blue/eventlog.inc:99 msgid "Vaciar registro de eventos" msgstr "Nettoyer le journal d'évènements" -#: ../../../../inc/Migrate.class.php:52 +#: ../../../../inc/Migrate.class.php:51 msgid "Faltan parámetros" msgstr "Paramètres manquants" -#: ../../../../inc/Migrate.class.php:149 +#: ../../../../inc/Migrate.class.php:148 msgid "La versión no es compatible" msgstr "Version incompatible" -#: ../../../../inc/Migrate.class.php:150 +#: ../../../../inc/Migrate.class.php:149 msgid "Actualice a la última versión de phpPMS" msgstr "Mettez à niveau la dernière version de phpPMS" -#: ../../../../inc/Migrate.class.php:168 +#: ../../../../inc/Migrate.class.php:167 msgid "Error al obtener la configuración" msgstr "Erreur pendant la récupération de la configuration" -#: ../../../../inc/Migrate.class.php:211 ../../../../inc/Migrate.class.php:224 +#: ../../../../inc/Migrate.class.php:210 ../../../../inc/Migrate.class.php:223 msgid "Error al vaciar tabla" msgstr "Erreur pendant le nettoyage de la table" -#: ../../../../inc/Migrate.class.php:229 +#: ../../../../inc/Migrate.class.php:228 msgid "Usuario actual no es administrador de la aplicación" msgstr "L'utilisateur actuel n'est administrateur de l'application" -#: ../../../../inc/Migrate.class.php:274 +#: ../../../../inc/Migrate.class.php:273 msgid "No es posible crear el cliente" msgstr "Impossible de créer le client" -#: ../../../../inc/Migrate.class.php:275 +#: ../../../../inc/Migrate.class.php:274 msgid "Contacte con el desarrollador" msgstr "Veuillez contacter le développeur" -#: ../../../../inc/Migrate.class.php:279 +#: ../../../../inc/Migrate.class.php:278 msgid "Importar Clientes" msgstr "Importer Clients" -#: ../../../../inc/Migrate.class.php:281 ../../../../inc/Migrate.class.php:351 -#: ../../../../inc/Migrate.class.php:452 ../../../../inc/Migrate.class.php:525 -#: ../../../../inc/Migrate.class.php:633 ../../../../inc/Migrate.class.php:698 -#: ../../../../inc/Migrate.class.php:772 ../../../../inc/Migrate.class.php:862 -#: ../../../../inc/Migrate.class.php:933 +#: ../../../../inc/Migrate.class.php:280 ../../../../inc/Migrate.class.php:350 +#: ../../../../inc/Migrate.class.php:451 ../../../../inc/Migrate.class.php:524 +#: ../../../../inc/Migrate.class.php:632 ../../../../inc/Migrate.class.php:697 +#: ../../../../inc/Migrate.class.php:771 ../../../../inc/Migrate.class.php:861 +#: ../../../../inc/Migrate.class.php:932 msgid "Registros" msgstr "Enregistrements" -#: ../../../../inc/Migrate.class.php:303 +#: ../../../../inc/Migrate.class.php:302 msgid "Error al obtener los clientes" msgstr "Erreur pendant la récupération des clients" -#: ../../../../inc/Migrate.class.php:345 +#: ../../../../inc/Migrate.class.php:344 msgid "Error al obtener cuentas" msgstr "Erreur pendant la récupération des comptes" -#: ../../../../inc/Migrate.class.php:374 +#: ../../../../inc/Migrate.class.php:373 msgid "Cliente no encontrado" msgstr "Client introuvable" -#: ../../../../inc/Migrate.class.php:417 +#: ../../../../inc/Migrate.class.php:416 msgid "Error al migrar cuenta" msgstr "Erreur pendant l'importation des comptes" -#: ../../../../inc/Migrate.class.php:446 +#: ../../../../inc/Migrate.class.php:445 msgid "Error al obtener los grupos de cuentas" msgstr "Erreur pendant la récupération des groupes de comptes" -#: ../../../../inc/Migrate.class.php:450 +#: ../../../../inc/Migrate.class.php:449 msgid "Importar Grupos de Cuentas" msgstr "Importer Groupes de Comptes" -#: ../../../../inc/Migrate.class.php:472 +#: ../../../../inc/Migrate.class.php:471 msgid "Error al crear grupos de cuentas" msgstr "Erreur pendant la création des groupes de comptes" -#: ../../../../inc/Migrate.class.php:519 +#: ../../../../inc/Migrate.class.php:518 msgid "Error al obtener el historico de cuentas" msgstr "Erreur pendant la récupération de l'historique des comptes" -#: ../../../../inc/Migrate.class.php:523 +#: ../../../../inc/Migrate.class.php:522 msgid "Importar Histórico de Cuentas" msgstr "Importer Historique des Comptes" -#: ../../../../inc/Migrate.class.php:592 +#: ../../../../inc/Migrate.class.php:591 msgid "Error al crear historico de cuentas" msgstr "Erreur pendant la création de l'historique des comptes" -#: ../../../../inc/Migrate.class.php:627 +#: ../../../../inc/Migrate.class.php:626 msgid "Error al obtener los archivos de cuentas" msgstr "Erreur pendant la récupération des fichiers des comptes" -#: ../../../../inc/Migrate.class.php:631 +#: ../../../../inc/Migrate.class.php:630 msgid "Importar Archivos de Cuentas" msgstr "Importer Fichiers de Comptes" -#: ../../../../inc/Migrate.class.php:663 +#: ../../../../inc/Migrate.class.php:662 msgid "Error al crear archivos de cuentas" msgstr "Erreur pendant la création des fichiers de comptes" -#: ../../../../inc/Migrate.class.php:692 +#: ../../../../inc/Migrate.class.php:691 msgid "Error al obtener las categorías de cuentas" msgstr "Erreur pendant la récupération des catégorie de comtpes" -#: ../../../../inc/Migrate.class.php:696 +#: ../../../../inc/Migrate.class.php:695 msgid "Importar Categorías de Cuentas" msgstr "Importer Catégories de Comptes" -#: ../../../../inc/Migrate.class.php:718 +#: ../../../../inc/Migrate.class.php:717 msgid "Error al crear categorías de cuentas" msgstr "Erreur pendant la récupération des catégories de comptes" -#: ../../../../inc/Migrate.class.php:766 +#: ../../../../inc/Migrate.class.php:765 msgid "Error al obtener los usuarios" msgstr "Erreur pendant la récupération des utilisateurs" -#: ../../../../inc/Migrate.class.php:770 +#: ../../../../inc/Migrate.class.php:769 msgid "Importar Usuarios" msgstr "Importer Utilisateurs" -#: ../../../../inc/Migrate.class.php:827 +#: ../../../../inc/Migrate.class.php:826 msgid "Error al crear usuarios" msgstr "Erreur pendant la création des utilisateurs" -#: ../../../../inc/Migrate.class.php:856 +#: ../../../../inc/Migrate.class.php:855 msgid "Error al obtener los grupos de usuarios" msgstr "Erreur pendant la récupération des groupes d'utilisateurs" -#: ../../../../inc/Migrate.class.php:860 +#: ../../../../inc/Migrate.class.php:859 msgid "Importar Grupos de Usuarios" msgstr "Importer Groupes d'Utilisateurs" -#: ../../../../inc/Migrate.class.php:886 +#: ../../../../inc/Migrate.class.php:885 msgid "Error al crear los grupos de usuarios" msgstr "Erreur pendant l'ajout des groupes d'utilisateurs" -#: ../../../../inc/Migrate.class.php:931 +#: ../../../../inc/Migrate.class.php:930 msgid "Importar Configuración" msgstr "Importer Configuration" @@ -2223,7 +2326,7 @@ msgid "Datos de perfil incorrectos" msgstr "" #: ../../../../inc/ProfileBase.class.php:550 -#: ../../../../web/UsersMgmtC.class.php:274 +#: ../../../../web/UsersMgmtC.class.php:275 msgid "Eliminar Perfil" msgstr "Supprimer Profil" @@ -2249,17 +2352,17 @@ msgstr "Il n'y a pas de clients à importer" msgid "No hay cuentas para importar" msgstr "Il n'y a pas de comptes à importer" -#: ../../../../inc/Template.class.php:89 +#: ../../../../inc/Template.class.php:91 #, fuzzy, php-format msgid "No es posible obtener la plantilla \"%s\" : %s" msgstr "Impossible de créer le client" -#: ../../../../inc/Template.class.php:128 +#: ../../../../inc/Template.class.php:130 #, fuzzy, php-format msgid "No es posible obtener la variable \"%s\"" msgstr "Impossible de créer le client" -#: ../../../../inc/Template.class.php:171 +#: ../../../../inc/Template.class.php:173 #, fuzzy, php-format msgid "No es posible destruir la variable \"%s\"" msgstr "Impossible de créer le client" @@ -2307,17 +2410,17 @@ msgstr "Mettre à jour la Configuration" msgid "Actualización de la Configuración realizada correctamente." msgstr "Mise à jour de la configuration effectuée correctement." -#: ../../../../inc/UserBase.class.php:386 -#: ../../../../inc/UserBase.class.php:530 +#: ../../../../inc/UserBase.class.php:388 +#: ../../../../inc/UserBase.class.php:532 msgid "No se pudo realizar la petición de cambio de clave." msgstr "Impossible d'effectuer la requête de changement de mot de passe." -#: ../../../../inc/UserBase.class.php:525 +#: ../../../../inc/UserBase.class.php:527 msgid "Modificar Usuario" msgstr "Modifier Utilisateur" -#: ../../../../inc/UserBase.class.php:592 -#: ../../../../web/UsersMgmtC.class.php:150 +#: ../../../../inc/UserBase.class.php:594 +#: ../../../../web/UsersMgmtC.class.php:151 msgid "Eliminar Usuario" msgstr "Supprimer Utilisateur" @@ -2337,41 +2440,41 @@ msgstr "Vous recevrez un courriel de confirmation sous peu." msgid "Nuevo usuario de LDAP" msgstr "Nouvel utilisateur LDAP" -#: ../../../../inc/UserUtil.class.php:703 +#: ../../../../inc/UserMigrate.class.php:113 msgid "Migrar Grupos" msgstr "" -#: ../../../../inc/UserUtil.class.php:703 +#: ../../../../inc/UserMigrate.class.php:113 msgid "Error al migrar grupo del usuario" msgstr "" -#: ../../../../inc/Util.class.php:122 +#: ../../../../inc/Util.class.php:119 msgid "Versión de PHP requerida >= " msgstr "Version PHP requise >=" -#: ../../../../inc/Util.class.php:123 +#: ../../../../inc/Util.class.php:120 msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" msgstr "" "Mettez à niveau votre version de PHP afin que l'application fonctionne " "correctement" -#: ../../../../inc/Util.class.php:159 +#: ../../../../inc/Util.class.php:156 #: ../../../../inc/themes/classic/ldap.inc:212 #: ../../../../inc/themes/material-blue/ldap.inc:238 msgid "Módulo no disponible" msgstr "Module indisponible" -#: ../../../../inc/Util.class.php:160 +#: ../../../../inc/Util.class.php:157 msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Sans ce module, l'application ne peut pas fonctionner correctement." -#: ../../../../inc/XmlExport.class.php:125 +#: ../../../../inc/XmlExport.class.php:127 #, fuzzy msgid "Exportar XML" msgstr "Importer dans un fichier XML" -#: ../../../../inc/XmlExport.class.php:410 +#: ../../../../inc/XmlExport.class.php:412 msgid "Error al crear el archivo XML" msgstr "Erreur pendant la création du fichier XML" @@ -2379,15 +2482,15 @@ msgstr "Erreur pendant la création du fichier XML" msgid "Formato detectado" msgstr "" -#: ../../../../inc/XmlImportBase.class.php:75 +#: ../../../../inc/XmlImportBase.class.php:80 msgid "No es posible procesar el archivo XML" msgstr "Impossible de traiter le fichier XML" -#: ../../../../inc/XmlImportBase.class.php:103 +#: ../../../../inc/XmlImportBase.class.php:108 msgid "Archivo XML no soportado" msgstr "Fichier XML non supportés" -#: ../../../../inc/XmlImportBase.class.php:104 +#: ../../../../inc/XmlImportBase.class.php:109 msgid "No es posible detectar la aplicación que exportó los datos" msgstr "" "Impossible de détecter l'application depuis laquelle les données ont été " @@ -2572,9 +2675,9 @@ msgstr "OUI" #: ../../../../inc/themes/classic/account.inc:136 #: ../../../../inc/themes/classic/account.inc:167 #: ../../../../inc/themes/classic/account.inc:449 -#: ../../../../inc/themes/classic/encryption.inc:61 -#: ../../../../inc/themes/classic/encryption.inc:80 -#: ../../../../inc/themes/classic/import.inc:70 +#: ../../../../inc/themes/classic/encryption.inc:58 +#: ../../../../inc/themes/classic/encryption.inc:77 +#: ../../../../inc/themes/classic/import.inc:67 #: ../../../../inc/themes/classic/install.inc:99 #: ../../../../inc/themes/classic/preferences.inc:82 #: ../../../../inc/themes/classic/security.inc:26 @@ -2599,28 +2702,28 @@ msgstr "Mot de passe copié dans le presse papier" msgid "Error al copiar al portapapeles" msgstr "Mot de passe copié dans le presse papier" -#: ../../../../web/AccountC.class.php:381 -#: ../../../../web/AccountC.class.php:412 +#: ../../../../web/AccountC.class.php:384 +#: ../../../../web/AccountC.class.php:415 #: ../../../../inc/themes/classic/search.inc:45 #: ../../../../inc/themes/classic/search.inc:104 -#: ../../../../inc/themes/material-blue/search.inc:41 -#: ../../../../inc/themes/material-blue/search.inc:108 +#: ../../../../inc/themes/material-blue/search.inc:77 +#: ../../../../inc/themes/material-blue/search.inc:144 msgid "Detalles de Cuenta" msgstr "Détails du Compte" -#: ../../../../web/AccountC.class.php:469 +#: ../../../../web/AccountC.class.php:472 #: ../../../../inc/themes/classic/account.inc:396 -#: ../../../../inc/themes/material-blue/account.inc:433 +#: ../../../../inc/themes/material-blue/account.inc:435 msgid "Modificar Clave de Cuenta" msgstr "Modifier Mot de passe de Compte" -#: ../../../../web/AccountsMgmtC.class.php:79 -#: ../../../../web/AccountsMgmtC.class.php:138 -#: ../../../../web/AccountsMgmtC.class.php:266 -#: ../../../../web/SearchC.class.php:292 -#: ../../../../web/UsersMgmtC.class.php:87 -#: ../../../../web/UsersMgmtC.class.php:187 -#: ../../../../web/UsersMgmtC.class.php:245 +#: ../../../../web/AccountsMgmtC.class.php:80 +#: ../../../../web/AccountsMgmtC.class.php:139 +#: ../../../../web/AccountsMgmtC.class.php:267 +#: ../../../../web/SearchC.class.php:291 +#: ../../../../web/UsersMgmtC.class.php:88 +#: ../../../../web/UsersMgmtC.class.php:188 +#: ../../../../web/UsersMgmtC.class.php:246 #: ../../../../inc/themes/classic/account.inc:11 #: ../../../../inc/themes/classic/categories.inc:8 #: ../../../../inc/themes/classic/customers.inc:8 @@ -2641,59 +2744,59 @@ msgstr "Modifier Mot de passe de Compte" #: ../../../../inc/themes/material-blue/info.inc:25 #: ../../../../inc/themes/material-blue/profiles.inc:8 #: ../../../../inc/themes/material-blue/request.inc:6 -#: ../../../../inc/themes/material-blue/search.inc:39 +#: ../../../../inc/themes/material-blue/search.inc:75 #: ../../../../inc/themes/material-blue/users.inc:8 msgid "Nombre" msgstr "Nom" -#: ../../../../web/AccountsMgmtC.class.php:115 +#: ../../../../web/AccountsMgmtC.class.php:116 msgid "Gestión de Categorías" msgstr "Gestion des catégories" -#: ../../../../web/AccountsMgmtC.class.php:172 +#: ../../../../web/AccountsMgmtC.class.php:173 msgid "Gestión de Clientes" msgstr "Gestion des Clients" -#: ../../../../web/AccountsMgmtC.class.php:266 +#: ../../../../web/AccountsMgmtC.class.php:267 #: ../../../../inc/themes/classic/customfields.inc:27 #: ../../../../inc/themes/material-blue/customfields.inc:30 msgid "Módulo" msgstr "Module" -#: ../../../../web/AccountsMgmtC.class.php:287 +#: ../../../../web/AccountsMgmtC.class.php:288 msgid "Eliminar Campo" msgstr "Supprimer champ" -#: ../../../../web/ConfigC.class.php:166 +#: ../../../../web/ConfigC.class.php:168 msgid "Último backup" msgstr "Dernière sauvegarde" -#: ../../../../web/ConfigC.class.php:166 +#: ../../../../web/ConfigC.class.php:168 msgid "No se encontraron backups" msgstr "Il n'y a pas de sauvegarde disponible" -#: ../../../../web/ConfigC.class.php:173 +#: ../../../../web/ConfigC.class.php:175 msgid "Última exportación" msgstr "Dernier export" -#: ../../../../web/ConfigC.class.php:173 +#: ../../../../web/ConfigC.class.php:175 msgid "No se encontró archivo de exportación" msgstr "Aucun fichier d'export trouvé" -#: ../../../../web/ConfigC.class.php:218 +#: ../../../../web/ConfigC.class.php:220 msgid "Información" msgstr "Information" -#: ../../../../web/EventlogC.class.php:93 +#: ../../../../web/EventlogC.class.php:95 msgid "Registro de eventos vaciado" msgstr "Journal d'évènements nettoyé" -#: ../../../../web/EventlogC.class.php:95 +#: ../../../../web/EventlogC.class.php:97 msgid "Error al vaciar el registro de eventos" msgstr "Erreur pendant le nettoyage du journal d'évènements" #: ../../../../web/MainC.class.php:159 -#: ../../../../web/UsersMgmtC.class.php:100 +#: ../../../../web/UsersMgmtC.class.php:101 msgid "Admin Aplicación" msgstr "Admin Application" @@ -2702,17 +2805,18 @@ msgid "Buscar" msgstr "Chercher" #: ../../../../web/MainC.class.php:189 -#: ../../../../web/UsersMgmtC.class.php:163 -msgid "Gestión de Usuarios" -msgstr "Gestion des Utilisateurs" +#, fuzzy +msgid "Usuarios y Accesos" +msgstr "Utilisateur d'accès" #: ../../../../web/MainC.class.php:195 -msgid "Gestión de Clientes y Categorías" -msgstr "Gestion des clients et catégories" +#, fuzzy +msgid "Elementos y Personalización" +msgstr "Champs personnalisés" #: ../../../../web/MainC.class.php:207 -#: ../../../../inc/themes/classic/eventlog.inc:4 -#: ../../../../inc/themes/material-blue/eventlog.inc:3 +#: ../../../../inc/themes/classic/eventlog.inc:2 +#: ../../../../inc/themes/material-blue/eventlog.inc:2 msgid "Registro de Eventos" msgstr "Journal d'évènements" @@ -2775,66 +2879,66 @@ msgstr "Un code optimisé et un chargement plus rapide" msgid "Mejoras de seguridad en XSS e inyección SQL" msgstr "" -#: ../../../../web/MainC.class.php:284 +#: ../../../../web/MainC.class.php:283 msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" msgstr "" "Cette version de PHP est vulnerable aux attaques NULL Byte (CVE-2006-7243)" -#: ../../../../web/MainC.class.php:285 +#: ../../../../web/MainC.class.php:284 msgid "Actualice la versión de PHP para usar sysPass de forma segura" msgstr "" "Mettez à jour votre version de PHP afin d'utiliser sysPass de manière " "sécurisée" -#: ../../../../web/MainC.class.php:292 +#: ../../../../web/MainC.class.php:291 msgid "No se encuentra el generador de números aleatorios." msgstr "Impossible de trouver le générateur de nombres aléatoires." -#: ../../../../web/MainC.class.php:293 +#: ../../../../web/MainC.class.php:292 msgid "" "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" msgstr "" "Sans cette fonction, un attaquant pourrait prendre votre compte sur un " "changement de mot de passe" -#: ../../../../web/MainC.class.php:312 +#: ../../../../web/MainC.class.php:311 msgid "Instalación finalizada" msgstr "Installation terminée" -#: ../../../../web/MainC.class.php:313 +#: ../../../../web/MainC.class.php:312 msgid "Pulse aquí para acceder" msgstr "" "Pressez ici pour vous connecter" -#: ../../../../web/MainC.class.php:410 +#: ../../../../web/MainC.class.php:409 msgid "Descargar nueva versión" msgstr "Télécharger nouvelle version" -#: ../../../../web/MainC.class.php:421 +#: ../../../../web/MainC.class.php:420 msgid "Avisos de sysPass" msgstr "" -#: ../../../../web/SearchC.class.php:285 +#: ../../../../web/SearchC.class.php:284 msgid "Ordenar por Cliente" msgstr "Trié par Client" -#: ../../../../web/SearchC.class.php:291 +#: ../../../../web/SearchC.class.php:290 msgid "Ordenar por Nombre" msgstr "Trié par Nom" -#: ../../../../web/SearchC.class.php:297 +#: ../../../../web/SearchC.class.php:296 msgid "Ordenar por Categoría" msgstr "Trié par Catégorie" -#: ../../../../web/SearchC.class.php:303 +#: ../../../../web/SearchC.class.php:302 msgid "Ordenar por Usuario" msgstr "Trié par Nom d'utilisateur" -#: ../../../../web/SearchC.class.php:309 +#: ../../../../web/SearchC.class.php:308 msgid "Ordenar por URL / IP" msgstr "Trié par URL / IP" -#: ../../../../web/SearchC.class.php:310 +#: ../../../../web/SearchC.class.php:309 #: ../../../../inc/themes/classic/account.inc:61 #: ../../../../inc/themes/classic/editpass.inc:16 #: ../../../../inc/themes/classic/request.inc:13 @@ -2842,74 +2946,78 @@ msgstr "Trié par URL / IP" #: ../../../../inc/themes/material-blue/account.inc:69 #: ../../../../inc/themes/material-blue/editpass.inc:17 #: ../../../../inc/themes/material-blue/request.inc:15 -#: ../../../../inc/themes/material-blue/search.inc:62 +#: ../../../../inc/themes/material-blue/search.inc:98 msgid "URL / IP" msgstr "URL / IP" -#: ../../../../web/UsersMgmtC.class.php:91 +#: ../../../../web/UsersMgmtC.class.php:92 msgid "Propiedades" msgstr "Propriétés" -#: ../../../../web/UsersMgmtC.class.php:104 +#: ../../../../web/UsersMgmtC.class.php:105 msgid "Admin Cuentas" msgstr "Admin Comptes" -#: ../../../../web/UsersMgmtC.class.php:108 +#: ../../../../web/UsersMgmtC.class.php:109 #: ../../../../inc/themes/classic/users.inc:28 #: ../../../../inc/themes/material-blue/users.inc:34 msgid "Usuario de LDAP" msgstr "Utilisateur LDAP" -#: ../../../../web/UsersMgmtC.class.php:112 +#: ../../../../web/UsersMgmtC.class.php:113 #: ../../../../inc/themes/classic/users.inc:113 #: ../../../../inc/themes/material-blue/users.inc:151 #: ../../../../inc/themes/material-blue/users.inc:154 msgid "Deshabilitado" msgstr "Désactivé" -#: ../../../../web/UsersMgmtC.class.php:129 +#: ../../../../web/UsersMgmtC.class.php:130 msgid "Ver Detalles de Usuario" msgstr "Voir détails du compte" -#: ../../../../web/UsersMgmtC.class.php:143 +#: ../../../../web/UsersMgmtC.class.php:144 msgid "Cambiar Clave de Usuario" msgstr "Changer mot de passe utilisateur" -#: ../../../../web/UsersMgmtC.class.php:222 +#: ../../../../web/UsersMgmtC.class.php:164 +msgid "Gestión de Usuarios" +msgstr "Gestion des Utilisateurs" + +#: ../../../../web/UsersMgmtC.class.php:223 msgid "Gestión de Grupos" msgstr "Gestion des Groupes" -#: ../../../../web/UsersMgmtC.class.php:260 +#: ../../../../web/UsersMgmtC.class.php:261 msgid "Ver Detalles de Perfil" msgstr "Voir les détails du profil" -#: ../../../../web/UsersMgmtC.class.php:287 +#: ../../../../web/UsersMgmtC.class.php:288 msgid "Gestión de Perfiles" msgstr "Gestion des Profils" -#: ../../../../web/UsersMgmtC.class.php:407 +#: ../../../../web/UsersMgmtC.class.php:408 msgid "Ver token de Autorización" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:434 +#: ../../../../web/UsersMgmtC.class.php:435 msgid "Gestión de Autorizaciones API" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:456 +#: ../../../../web/UsersMgmtC.class.php:457 msgid "Token de autorización visualizado" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:457 +#: ../../../../web/UsersMgmtC.class.php:458 msgid "Autorizaciones" msgstr "Autorisations" -#: ../../../../web/UsersPrefsC.class.php:92 +#: ../../../../web/UsersPrefsC.class.php:93 #: ../../../../inc/themes/classic/mail.inc:63 #: ../../../../inc/themes/material-blue/mail.inc:86 msgid "Seguridad" msgstr "Sécurité" -#: ../../../../web/UsersPrefsC.class.php:115 +#: ../../../../web/UsersPrefsC.class.php:117 #: ../../../../inc/themes/classic/sessionbar.inc:9 msgid "Preferencias" msgstr "Préférences" @@ -2963,7 +3071,7 @@ msgstr "Mot de passe (répéter)" #: ../../../../inc/themes/classic/search.inc:82 #: ../../../../inc/themes/classic/users.inc:91 #: ../../../../inc/themes/material-blue/account.inc:119 -#: ../../../../inc/themes/material-blue/search.inc:82 +#: ../../../../inc/themes/material-blue/search.inc:118 #: ../../../../inc/themes/material-blue/users.inc:116 msgid "Notas" msgstr "Notes" @@ -2976,7 +3084,7 @@ msgstr "Notes sur le compte" #: ../../../../inc/themes/classic/account.inc:108 #: ../../../../inc/themes/material-blue/account.inc:133 -#: ../../../../inc/themes/material-blue/search.inc:75 +#: ../../../../inc/themes/material-blue/search.inc:111 msgid "Permisos" msgstr "Permissions" @@ -3022,60 +3130,60 @@ msgid "por" msgstr "par" #: ../../../../inc/themes/classic/account.inc:289 -#: ../../../../inc/themes/material-blue/account.inc:336 +#: ../../../../inc/themes/material-blue/account.inc:338 msgid "Visitas" msgstr "Visites" #: ../../../../inc/themes/classic/account.inc:293 -#: ../../../../inc/themes/material-blue/account.inc:340 +#: ../../../../inc/themes/material-blue/account.inc:342 msgid "Fecha Alta" msgstr "Date Ajoutée" #: ../../../../inc/themes/classic/account.inc:297 -#: ../../../../inc/themes/material-blue/account.inc:344 +#: ../../../../inc/themes/material-blue/account.inc:346 msgid "Creador" msgstr "Créateur" #: ../../../../inc/themes/classic/account.inc:301 #: ../../../../inc/themes/material-blue/account.inc:203 -#: ../../../../inc/themes/material-blue/account.inc:348 +#: ../../../../inc/themes/material-blue/account.inc:350 msgid "Grupo Principal" msgstr "Groupe Principal" #: ../../../../inc/themes/classic/account.inc:306 -#: ../../../../inc/themes/material-blue/account.inc:353 +#: ../../../../inc/themes/material-blue/account.inc:355 msgid "Usuarios Secundarios" msgstr "Utilisateur Secondaires" #: ../../../../inc/themes/classic/account.inc:325 -#: ../../../../inc/themes/material-blue/account.inc:372 +#: ../../../../inc/themes/material-blue/account.inc:374 msgid "Grupos Secundarios" msgstr "Groupes Secondaires" #: ../../../../inc/themes/classic/account.inc:345 -#: ../../../../inc/themes/material-blue/account.inc:392 +#: ../../../../inc/themes/material-blue/account.inc:394 msgid "Fecha Edición" msgstr "Date Modifiée" #: ../../../../inc/themes/classic/account.inc:349 -#: ../../../../inc/themes/material-blue/account.inc:396 +#: ../../../../inc/themes/material-blue/account.inc:398 msgid "Editor" msgstr "Editeur" #: ../../../../inc/themes/classic/account.inc:376 -#: ../../../../inc/themes/material-blue/account.inc:459 +#: ../../../../inc/themes/material-blue/account.inc:461 msgid "Restaurar cuenta desde este punto" msgstr "Restaurer les comptes à partir de ce point" #: ../../../../inc/themes/classic/account.inc:388 #: ../../../../inc/themes/classic/search.inc:113 -#: ../../../../inc/themes/material-blue/account.inc:426 -#: ../../../../inc/themes/material-blue/search.inc:117 +#: ../../../../inc/themes/material-blue/account.inc:428 +#: ../../../../inc/themes/material-blue/search.inc:154 msgid "Copiar Clave en Portapapeles" msgstr "Copier le mot de passe dans le presse papier" #: ../../../../inc/themes/classic/account.inc:403 -#: ../../../../inc/themes/material-blue/account.inc:439 +#: ../../../../inc/themes/material-blue/account.inc:441 msgid "Ver Actual" msgstr "Voir Actuel" @@ -3089,15 +3197,15 @@ msgstr "Retour" #: ../../../../inc/themes/classic/account.inc:415 #: ../../../../inc/themes/classic/search.inc:125 -#: ../../../../inc/themes/material-blue/account.inc:449 -#: ../../../../inc/themes/material-blue/search.inc:128 +#: ../../../../inc/themes/material-blue/account.inc:451 +#: ../../../../inc/themes/material-blue/search.inc:166 msgid "Modificar Cuenta" msgstr "Modifier Compte" #: ../../../../inc/themes/classic/account.inc:420 #: ../../../../inc/themes/classic/search.inc:146 -#: ../../../../inc/themes/material-blue/account.inc:453 -#: ../../../../inc/themes/material-blue/search.inc:148 +#: ../../../../inc/themes/material-blue/account.inc:455 +#: ../../../../inc/themes/material-blue/search.inc:187 msgid "Solicitar Modificación" msgstr "Demande Modification" @@ -3107,7 +3215,7 @@ msgstr "Demande Modification" #: ../../../../inc/themes/classic/customers.inc:62 #: ../../../../inc/themes/classic/customfields.inc:63 #: ../../../../inc/themes/classic/editpass.inc:50 -#: ../../../../inc/themes/classic/encryption.inc:102 +#: ../../../../inc/themes/classic/encryption.inc:99 #: ../../../../inc/themes/classic/groups.inc:77 #: ../../../../inc/themes/classic/ldap.inc:229 #: ../../../../inc/themes/classic/mail.inc:107 @@ -3118,7 +3226,7 @@ msgstr "Demande Modification" #: ../../../../inc/themes/classic/users.inc:189 #: ../../../../inc/themes/classic/userspass.inc:35 #: ../../../../inc/themes/classic/wiki.inc:110 -#: ../../../../inc/themes/material-blue/account.inc:465 +#: ../../../../inc/themes/material-blue/account.inc:467 #: ../../../../inc/themes/material-blue/categories.inc:72 #: ../../../../inc/themes/material-blue/config.inc:425 #: ../../../../inc/themes/material-blue/customers.inc:73 @@ -3127,7 +3235,7 @@ msgstr "Demande Modification" #: ../../../../inc/themes/material-blue/groups.inc:88 #: ../../../../inc/themes/material-blue/ldap.inc:257 #: ../../../../inc/themes/material-blue/mail.inc:145 -#: ../../../../inc/themes/material-blue/preferences.inc:101 +#: ../../../../inc/themes/material-blue/preferences.inc:117 #: ../../../../inc/themes/material-blue/profiles.inc:177 #: ../../../../inc/themes/material-blue/security.inc:61 #: ../../../../inc/themes/material-blue/tokens.inc:63 @@ -3138,12 +3246,12 @@ msgid "Guardar" msgstr "Sauver" #: ../../../../inc/themes/classic/account.inc:437 -#: ../../../../inc/themes/material-blue/account.inc:475 +#: ../../../../inc/themes/material-blue/account.inc:477 msgid "Seleccionar grupos secundarios" msgstr "Sélectionner les groupes secondaires" #: ../../../../inc/themes/classic/account.inc:441 -#: ../../../../inc/themes/material-blue/account.inc:478 +#: ../../../../inc/themes/material-blue/account.inc:480 msgid "Seleccionar usuarios" msgstr "Sélectionner utilisateurs" @@ -3170,17 +3278,17 @@ msgstr "Il n'y a pas de sauvegarde à télécharger" #: ../../../../inc/themes/classic/backup.inc:49 #: ../../../../inc/themes/classic/backup.inc:113 #: ../../../../inc/themes/classic/backup.inc:117 -#: ../../../../inc/themes/classic/encryption.inc:93 -#: ../../../../inc/themes/classic/encryption.inc:97 -#: ../../../../inc/themes/classic/encryption.inc:162 -#: ../../../../inc/themes/classic/encryption.inc:166 -#: ../../../../inc/themes/classic/import.inc:15 -#: ../../../../inc/themes/classic/import.inc:37 -#: ../../../../inc/themes/classic/import.inc:51 -#: ../../../../inc/themes/classic/import.inc:97 -#: ../../../../inc/themes/classic/import.inc:118 -#: ../../../../inc/themes/classic/import.inc:170 -#: ../../../../inc/themes/classic/import.inc:174 +#: ../../../../inc/themes/classic/encryption.inc:90 +#: ../../../../inc/themes/classic/encryption.inc:94 +#: ../../../../inc/themes/classic/encryption.inc:159 +#: ../../../../inc/themes/classic/encryption.inc:163 +#: ../../../../inc/themes/classic/import.inc:12 +#: ../../../../inc/themes/classic/import.inc:34 +#: ../../../../inc/themes/classic/import.inc:48 +#: ../../../../inc/themes/classic/import.inc:94 +#: ../../../../inc/themes/classic/import.inc:115 +#: ../../../../inc/themes/classic/import.inc:167 +#: ../../../../inc/themes/classic/import.inc:171 #: ../../../../inc/themes/classic/js-common.inc:13 #: ../../../../inc/themes/classic/ldap.inc:13 #: ../../../../inc/themes/classic/ldap.inc:33 @@ -3199,12 +3307,12 @@ msgstr "Il n'y a pas de sauvegarde à télécharger" #: ../../../../inc/themes/material-blue/backup.inc:51 #: ../../../../inc/themes/material-blue/backup.inc:129 #: ../../../../inc/themes/material-blue/backup.inc:133 -#: ../../../../inc/themes/material-blue/encryption.inc:107 -#: ../../../../inc/themes/material-blue/encryption.inc:111 -#: ../../../../inc/themes/material-blue/encryption.inc:181 -#: ../../../../inc/themes/material-blue/encryption.inc:185 -#: ../../../../inc/themes/material-blue/import.inc:99 -#: ../../../../inc/themes/material-blue/import.inc:103 +#: ../../../../inc/themes/material-blue/encryption.inc:104 +#: ../../../../inc/themes/material-blue/encryption.inc:108 +#: ../../../../inc/themes/material-blue/encryption.inc:178 +#: ../../../../inc/themes/material-blue/encryption.inc:182 +#: ../../../../inc/themes/material-blue/import.inc:96 +#: ../../../../inc/themes/material-blue/import.inc:100 #: ../../../../inc/themes/material-blue/js-common.inc:11 msgid "Ayuda" msgstr "Aide" @@ -3542,13 +3650,13 @@ msgstr "Notice d'aide" msgid "Obligatorio" msgstr "Requis" -#: ../../../../inc/themes/classic/encryption.inc:8 +#: ../../../../inc/themes/classic/encryption.inc:5 #: ../../../../inc/themes/classic/install.inc:46 #: ../../../../inc/themes/classic/install.inc:50 #: ../../../../inc/themes/classic/install.inc:51 #: ../../../../inc/themes/classic/login.inc:15 #: ../../../../inc/themes/classic/login.inc:27 -#: ../../../../inc/themes/material-blue/encryption.inc:8 +#: ../../../../inc/themes/material-blue/encryption.inc:5 #: ../../../../inc/themes/material-blue/install.inc:51 #: ../../../../inc/themes/material-blue/install.inc:58 #: ../../../../inc/themes/material-blue/login.inc:26 @@ -3556,71 +3664,71 @@ msgstr "Requis" msgid "Clave Maestra" msgstr "Mot de passe Maître" -#: ../../../../inc/themes/classic/encryption.inc:16 -#: ../../../../inc/themes/classic/encryption.inc:116 -#: ../../../../inc/themes/material-blue/encryption.inc:16 -#: ../../../../inc/themes/material-blue/encryption.inc:131 +#: ../../../../inc/themes/classic/encryption.inc:13 +#: ../../../../inc/themes/classic/encryption.inc:113 +#: ../../../../inc/themes/material-blue/encryption.inc:13 +#: ../../../../inc/themes/material-blue/encryption.inc:128 msgid "Último cambio" msgstr "Dernier changement" -#: ../../../../inc/themes/classic/encryption.inc:25 -#: ../../../../inc/themes/material-blue/encryption.inc:25 -#: ../../../../inc/themes/material-blue/encryption.inc:31 +#: ../../../../inc/themes/classic/encryption.inc:22 +#: ../../../../inc/themes/material-blue/encryption.inc:22 +#: ../../../../inc/themes/material-blue/encryption.inc:28 msgid "Clave Maestra actual" msgstr "Mot de passe Maître actuel" -#: ../../../../inc/themes/classic/encryption.inc:34 -#: ../../../../inc/themes/material-blue/encryption.inc:37 -#: ../../../../inc/themes/material-blue/encryption.inc:43 +#: ../../../../inc/themes/classic/encryption.inc:31 +#: ../../../../inc/themes/material-blue/encryption.inc:34 +#: ../../../../inc/themes/material-blue/encryption.inc:40 msgid "Nueva Clave Maestra" msgstr "Nouveau Mot de passe Maître" -#: ../../../../inc/themes/classic/encryption.inc:43 -#: ../../../../inc/themes/material-blue/encryption.inc:49 -#: ../../../../inc/themes/material-blue/encryption.inc:55 +#: ../../../../inc/themes/classic/encryption.inc:40 +#: ../../../../inc/themes/material-blue/encryption.inc:46 +#: ../../../../inc/themes/material-blue/encryption.inc:52 msgid "Nueva Clave Maestra (repetir)" msgstr "Nouveau Mot de passe Maître (répéter)" -#: ../../../../inc/themes/classic/encryption.inc:51 -#: ../../../../inc/themes/material-blue/encryption.inc:61 +#: ../../../../inc/themes/classic/encryption.inc:48 +#: ../../../../inc/themes/material-blue/encryption.inc:58 msgid "No modificar cuentas" msgstr "Ne pas modifier les comptes" -#: ../../../../inc/themes/classic/encryption.inc:56 -#: ../../../../inc/themes/material-blue/encryption.inc:66 +#: ../../../../inc/themes/classic/encryption.inc:53 +#: ../../../../inc/themes/material-blue/encryption.inc:63 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "Définir un nouveau mot de passe maître sans ré-encrypter les comptes" -#: ../../../../inc/themes/classic/encryption.inc:67 -#: ../../../../inc/themes/material-blue/encryption.inc:79 +#: ../../../../inc/themes/classic/encryption.inc:64 +#: ../../../../inc/themes/material-blue/encryption.inc:76 msgid "Confirmar cambio" msgstr "Confirmer changement" +#: ../../../../inc/themes/classic/encryption.inc:67 #: ../../../../inc/themes/classic/encryption.inc:70 #: ../../../../inc/themes/classic/encryption.inc:73 -#: ../../../../inc/themes/classic/encryption.inc:76 -#: ../../../../inc/themes/classic/import.inc:67 +#: ../../../../inc/themes/classic/import.inc:64 #: ../../../../inc/themes/classic/security.inc:43 msgid "Atención" msgstr "Attention" -#: ../../../../inc/themes/classic/encryption.inc:71 -#: ../../../../inc/themes/material-blue/encryption.inc:83 +#: ../../../../inc/themes/classic/encryption.inc:68 +#: ../../../../inc/themes/material-blue/encryption.inc:80 msgid "Guarde la nueva clave en un lugar seguro." msgstr "Vous devriez sauvegarder le mot de passe dans un endroit sûre" -#: ../../../../inc/themes/classic/encryption.inc:74 -#: ../../../../inc/themes/material-blue/encryption.inc:86 +#: ../../../../inc/themes/classic/encryption.inc:71 +#: ../../../../inc/themes/material-blue/encryption.inc:83 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "Tous les mots de passe des comptes seront encryptés de nouveau." -#: ../../../../inc/themes/classic/encryption.inc:77 -#: ../../../../inc/themes/material-blue/encryption.inc:89 +#: ../../../../inc/themes/classic/encryption.inc:74 +#: ../../../../inc/themes/material-blue/encryption.inc:86 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "Les utilisateurs devront saisir un nouveau mot de passe maître." -#: ../../../../inc/themes/classic/encryption.inc:98 -#: ../../../../inc/themes/material-blue/encryption.inc:112 +#: ../../../../inc/themes/classic/encryption.inc:95 +#: ../../../../inc/themes/material-blue/encryption.inc:109 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." @@ -3628,8 +3736,8 @@ msgstr "" "Le mot de passe maître est utilisé pour crypter les mots de passe des " "comptes sysPass afin de les garder en sécurité." -#: ../../../../inc/themes/classic/encryption.inc:100 -#: ../../../../inc/themes/material-blue/encryption.inc:114 +#: ../../../../inc/themes/classic/encryption.inc:97 +#: ../../../../inc/themes/material-blue/encryption.inc:111 msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " "que incluya números, letras y símbolos." @@ -3639,93 +3747,97 @@ msgstr "" "même conseillé de changer les mots de passe de temps en temps ou " "périodiquement." -#: ../../../../inc/themes/classic/encryption.inc:108 -#: ../../../../inc/themes/material-blue/encryption.inc:124 +#: ../../../../inc/themes/classic/encryption.inc:105 +#: ../../../../inc/themes/material-blue/encryption.inc:121 msgid "Clave Temporal" msgstr "Mot de passe temporaire" -#: ../../../../inc/themes/classic/encryption.inc:119 -#: ../../../../inc/themes/classic/encryption.inc:130 -#: ../../../../inc/themes/material-blue/encryption.inc:134 -#: ../../../../inc/themes/material-blue/encryption.inc:145 +#: ../../../../inc/themes/classic/encryption.inc:116 +#: ../../../../inc/themes/classic/encryption.inc:127 +#: ../../../../inc/themes/material-blue/encryption.inc:131 +#: ../../../../inc/themes/material-blue/encryption.inc:142 msgid "No generada" msgstr "Pas généré" -#: ../../../../inc/themes/classic/encryption.inc:124 -#: ../../../../inc/themes/material-blue/encryption.inc:139 +#: ../../../../inc/themes/classic/encryption.inc:121 +#: ../../../../inc/themes/material-blue/encryption.inc:136 msgid "Válido hasta" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:136 -#: ../../../../inc/themes/material-blue/encryption.inc:151 -#: ../../../../inc/themes/material-blue/encryption.inc:157 +#: ../../../../inc/themes/classic/encryption.inc:133 +#: ../../../../inc/themes/material-blue/encryption.inc:148 +#: ../../../../inc/themes/material-blue/encryption.inc:154 msgid "Validez (s)" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:139 +#: ../../../../inc/themes/classic/encryption.inc:136 msgid "Validez" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:167 -#: ../../../../inc/themes/material-blue/encryption.inc:186 +#: ../../../../inc/themes/classic/encryption.inc:164 +#: ../../../../inc/themes/material-blue/encryption.inc:183 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " "la clave maestra original." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:169 -#: ../../../../inc/themes/material-blue/encryption.inc:190 +#: ../../../../inc/themes/classic/encryption.inc:166 +#: ../../../../inc/themes/material-blue/encryption.inc:187 msgid "Generar" msgstr "Générer" -#: ../../../../inc/themes/classic/eventlog.inc:8 +#: ../../../../inc/themes/classic/eventlog.inc:6 #: ../../../../inc/themes/classic/search.inc:3 -#: ../../../../inc/themes/material-blue/eventlog.inc:7 +#: ../../../../inc/themes/material-blue/eventlog.inc:6 #: ../../../../inc/themes/material-blue/search.inc:3 msgid "No se encontraron registros" msgstr "Aucun enregistrement trouvé" -#: ../../../../inc/themes/classic/eventlog.inc:19 -#: ../../../../inc/themes/material-blue/eventlog.inc:18 +#: ../../../../inc/themes/classic/eventlog.inc:17 +#: ../../../../inc/themes/material-blue/eventlog.inc:17 msgid "Fecha / Hora" msgstr "Date / Heure" -#: ../../../../inc/themes/classic/eventlog.inc:22 -#: ../../../../inc/themes/material-blue/eventlog.inc:21 +#: ../../../../inc/themes/classic/eventlog.inc:20 +#: ../../../../inc/themes/material-blue/eventlog.inc:20 msgid "Evento" msgstr "Evènement" -#: ../../../../inc/themes/classic/eventlog.inc:28 -#: ../../../../inc/themes/material-blue/eventlog.inc:27 +#: ../../../../inc/themes/classic/eventlog.inc:26 +#: ../../../../inc/themes/material-blue/eventlog.inc:26 msgid "IP" msgstr "IP" -#: ../../../../inc/themes/classic/eventlog.inc:86 +#: ../../../../inc/themes/classic/eventlog.inc:84 #: ../../../../inc/themes/classic/search.inc:169 -#: ../../../../inc/themes/material-blue/eventlog.inc:85 -#: ../../../../inc/themes/material-blue/search.inc:171 +#: ../../../../inc/themes/material-blue/eventlog.inc:84 +#: ../../../../inc/themes/material-blue/search.inc:20 +#: ../../../../inc/themes/material-blue/search.inc:209 msgid "Primera página" msgstr "Première page" -#: ../../../../inc/themes/classic/eventlog.inc:88 +#: ../../../../inc/themes/classic/eventlog.inc:86 #: ../../../../inc/themes/classic/search.inc:171 -#: ../../../../inc/themes/material-blue/eventlog.inc:87 -#: ../../../../inc/themes/material-blue/search.inc:173 +#: ../../../../inc/themes/material-blue/eventlog.inc:86 +#: ../../../../inc/themes/material-blue/search.inc:22 +#: ../../../../inc/themes/material-blue/search.inc:211 msgid "Página anterior" msgstr "Page précédante" -#: ../../../../inc/themes/classic/eventlog.inc:93 +#: ../../../../inc/themes/classic/eventlog.inc:91 #: ../../../../inc/themes/classic/search.inc:176 -#: ../../../../inc/themes/material-blue/eventlog.inc:92 -#: ../../../../inc/themes/material-blue/search.inc:178 +#: ../../../../inc/themes/material-blue/eventlog.inc:91 +#: ../../../../inc/themes/material-blue/search.inc:27 +#: ../../../../inc/themes/material-blue/search.inc:216 msgid "Página siguiente" msgstr "Page suivante" -#: ../../../../inc/themes/classic/eventlog.inc:95 +#: ../../../../inc/themes/classic/eventlog.inc:93 #: ../../../../inc/themes/classic/search.inc:178 -#: ../../../../inc/themes/material-blue/eventlog.inc:94 -#: ../../../../inc/themes/material-blue/search.inc:180 +#: ../../../../inc/themes/material-blue/eventlog.inc:93 +#: ../../../../inc/themes/material-blue/search.inc:29 +#: ../../../../inc/themes/material-blue/search.inc:218 msgid "Última página" msgstr "Dernière page" @@ -3775,155 +3887,155 @@ msgstr "Nom du groupe" msgid "Descripción del grupo" msgstr "Description du groupe" -#: ../../../../inc/themes/classic/import.inc:7 -#: ../../../../inc/themes/material-blue/import.inc:121 +#: ../../../../inc/themes/classic/import.inc:4 +#: ../../../../inc/themes/material-blue/import.inc:118 msgid "Importar phpPMS" msgstr "Importer phpPMS" -#: ../../../../inc/themes/classic/import.inc:14 +#: ../../../../inc/themes/classic/import.inc:11 #: ../../../../inc/themes/classic/install.inc:63 #: ../../../../inc/themes/classic/install.inc:64 -#: ../../../../inc/themes/material-blue/import.inc:128 -#: ../../../../inc/themes/material-blue/import.inc:140 +#: ../../../../inc/themes/material-blue/import.inc:125 +#: ../../../../inc/themes/material-blue/import.inc:137 msgid "Usuario BBDD" msgstr "Utilisateur BDD" -#: ../../../../inc/themes/classic/import.inc:18 -#: ../../../../inc/themes/material-blue/import.inc:132 +#: ../../../../inc/themes/classic/import.inc:15 +#: ../../../../inc/themes/material-blue/import.inc:129 msgid "Indicar el usuario de conexión a la base de datos de phpPMS." msgstr "" -#: ../../../../inc/themes/classic/import.inc:28 +#: ../../../../inc/themes/classic/import.inc:25 #: ../../../../inc/themes/classic/install.inc:71 #: ../../../../inc/themes/classic/install.inc:73 -#: ../../../../inc/themes/material-blue/import.inc:146 -#: ../../../../inc/themes/material-blue/import.inc:152 +#: ../../../../inc/themes/material-blue/import.inc:143 +#: ../../../../inc/themes/material-blue/import.inc:149 msgid "Clave BBDD" msgstr "Mot de passe BDD" -#: ../../../../inc/themes/classic/import.inc:36 +#: ../../../../inc/themes/classic/import.inc:33 #: ../../../../inc/themes/classic/install.inc:78 #: ../../../../inc/themes/classic/install.inc:79 -#: ../../../../inc/themes/material-blue/import.inc:158 -#: ../../../../inc/themes/material-blue/import.inc:170 +#: ../../../../inc/themes/material-blue/import.inc:155 +#: ../../../../inc/themes/material-blue/import.inc:167 msgid "Nombre BBDD" msgstr "Nom BDD" -#: ../../../../inc/themes/classic/import.inc:40 -#: ../../../../inc/themes/material-blue/import.inc:162 +#: ../../../../inc/themes/classic/import.inc:37 +#: ../../../../inc/themes/material-blue/import.inc:159 msgid "Indicar el nombre de la base de datos de phpPMS." msgstr "" -#: ../../../../inc/themes/classic/import.inc:50 +#: ../../../../inc/themes/classic/import.inc:47 #: ../../../../inc/themes/classic/install.inc:87 #: ../../../../inc/themes/classic/install.inc:88 -#: ../../../../inc/themes/material-blue/import.inc:176 -#: ../../../../inc/themes/material-blue/import.inc:188 +#: ../../../../inc/themes/material-blue/import.inc:173 +#: ../../../../inc/themes/material-blue/import.inc:185 msgid "Servidor BBDD" msgstr "Serveur BDD" -#: ../../../../inc/themes/classic/import.inc:54 -#: ../../../../inc/themes/material-blue/import.inc:180 +#: ../../../../inc/themes/classic/import.inc:51 +#: ../../../../inc/themes/material-blue/import.inc:177 msgid "Indicar el servidor de la base de datos de phpPMS." msgstr "" -#: ../../../../inc/themes/classic/import.inc:64 -#: ../../../../inc/themes/material-blue/import.inc:194 +#: ../../../../inc/themes/classic/import.inc:61 +#: ../../../../inc/themes/material-blue/import.inc:191 msgid "Confirmar" msgstr "Confirmer" -#: ../../../../inc/themes/classic/import.inc:68 -#: ../../../../inc/themes/material-blue/import.inc:198 +#: ../../../../inc/themes/classic/import.inc:65 +#: ../../../../inc/themes/material-blue/import.inc:195 msgid "Los datos actuales serán borrados (excepto el usuario actual)" msgstr "Les données actuelles seront supprimées(sauf l'utilisateur actuel)" -#: ../../../../inc/themes/classic/import.inc:83 +#: ../../../../inc/themes/classic/import.inc:80 msgid "Iniciar" msgstr "Démarrer" -#: ../../../../inc/themes/classic/import.inc:89 -#: ../../../../inc/themes/material-blue/import.inc:7 +#: ../../../../inc/themes/classic/import.inc:86 +#: ../../../../inc/themes/material-blue/import.inc:4 msgid "Importar CSV/XML" msgstr "Importer CSV/XML" -#: ../../../../inc/themes/classic/import.inc:96 -#: ../../../../inc/themes/material-blue/import.inc:14 +#: ../../../../inc/themes/classic/import.inc:93 +#: ../../../../inc/themes/material-blue/import.inc:11 msgid "Usuario por Defecto" msgstr "Utilisateur par défault" -#: ../../../../inc/themes/classic/import.inc:100 -#: ../../../../inc/themes/material-blue/import.inc:18 +#: ../../../../inc/themes/classic/import.inc:97 +#: ../../../../inc/themes/material-blue/import.inc:15 msgid "Define el usuario por defecto para las cuentas importadas." msgstr "Définit l'utilisateur par défaut pour les comptes importés." -#: ../../../../inc/themes/classic/import.inc:117 +#: ../../../../inc/themes/classic/import.inc:114 #: ../../../../inc/themes/classic/ldap.inc:144 -#: ../../../../inc/themes/material-blue/import.inc:36 +#: ../../../../inc/themes/material-blue/import.inc:33 #: ../../../../inc/themes/material-blue/ldap.inc:170 msgid "Grupo por Defecto" msgstr "Groupe par défaut" -#: ../../../../inc/themes/classic/import.inc:121 -#: ../../../../inc/themes/material-blue/import.inc:40 +#: ../../../../inc/themes/classic/import.inc:118 +#: ../../../../inc/themes/material-blue/import.inc:37 msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Définit le groupe par défaut pour les comptes importés." -#: ../../../../inc/themes/classic/import.inc:138 -#: ../../../../inc/themes/material-blue/import.inc:58 -#: ../../../../inc/themes/material-blue/import.inc:64 +#: ../../../../inc/themes/classic/import.inc:135 +#: ../../../../inc/themes/material-blue/import.inc:55 +#: ../../../../inc/themes/material-blue/import.inc:61 msgid "Clave de Importación" msgstr "Importer un mot de passe" -#: ../../../../inc/themes/classic/import.inc:146 -#: ../../../../inc/themes/material-blue/import.inc:70 -#: ../../../../inc/themes/material-blue/import.inc:76 +#: ../../../../inc/themes/classic/import.inc:143 +#: ../../../../inc/themes/material-blue/import.inc:67 +#: ../../../../inc/themes/material-blue/import.inc:73 msgid "Delimitador CSV" msgstr "" -#: ../../../../inc/themes/classic/import.inc:162 -#: ../../../../inc/themes/material-blue/import.inc:90 +#: ../../../../inc/themes/classic/import.inc:159 +#: ../../../../inc/themes/material-blue/import.inc:87 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Supprimer les fichier ici ou cliquez pour sélectionner" -#: ../../../../inc/themes/classic/import.inc:175 +#: ../../../../inc/themes/classic/import.inc:172 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "arhcivos XML y CSV." msgstr "" -#: ../../../../inc/themes/classic/import.inc:177 -#: ../../../../inc/themes/material-blue/import.inc:106 +#: ../../../../inc/themes/classic/import.inc:174 +#: ../../../../inc/themes/material-blue/import.inc:103 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "" -#: ../../../../inc/themes/classic/import.inc:179 -#: ../../../../inc/themes/material-blue/import.inc:108 +#: ../../../../inc/themes/classic/import.inc:176 +#: ../../../../inc/themes/material-blue/import.inc:105 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "" "Glisser-déposer les fichiers à la zone d'importation ou cliquez sur la flèche" -#: ../../../../inc/themes/classic/import.inc:181 -#: ../../../../inc/themes/material-blue/import.inc:110 +#: ../../../../inc/themes/classic/import.inc:178 +#: ../../../../inc/themes/material-blue/import.inc:107 msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " "KeePass o KeePassX y la categoría igual al nombre de los grupos." msgstr "" -#: ../../../../inc/themes/classic/import.inc:183 -#: ../../../../inc/themes/material-blue/import.inc:112 +#: ../../../../inc/themes/classic/import.inc:180 +#: ../../../../inc/themes/material-blue/import.inc:109 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "" -#: ../../../../inc/themes/classic/import.inc:185 -#: ../../../../inc/themes/material-blue/import.inc:114 +#: ../../../../inc/themes/classic/import.inc:182 +#: ../../../../inc/themes/material-blue/import.inc:111 msgid "nombre_de_cuenta;cliente;categoría;url;usuario;clave;notas" msgstr "nom_de_compte;client;categorie;url;utilisateur;mot_de_passe;notes" -#: ../../../../inc/themes/classic/import.inc:187 -#: ../../../../inc/themes/material-blue/import.inc:116 +#: ../../../../inc/themes/classic/import.inc:184 +#: ../../../../inc/themes/material-blue/import.inc:113 msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " "automáticamente." @@ -4186,7 +4298,7 @@ msgstr "Activer les demandes par courriel" #: ../../../../inc/themes/classic/mgmttabs.inc:70 #: ../../../../inc/themes/classic/search.inc:120 -#: ../../../../inc/themes/material-blue/search.inc:123 +#: ../../../../inc/themes/material-blue/search.inc:160 msgid "Más Acciones" msgstr "Plus d'Actions" @@ -4204,12 +4316,6 @@ msgstr "Login de l'utilisateur" msgid "Email del Usuario" msgstr "Courriel de l'utilisateur" -#: ../../../../inc/themes/classic/passreset.inc:22 -#: ../../../../inc/themes/classic/users.inc:61 -#: ../../../../inc/themes/material-blue/users.inc:71 -msgid "Email" -msgstr "Courriel" - #: ../../../../inc/themes/classic/passreset.inc:27 msgid "Nueva Clave" msgstr "Nouveau Mot de passe" @@ -4432,7 +4538,7 @@ msgid "Descripción de la petición" msgstr "Description de la demande" #: ../../../../inc/themes/classic/request.inc:33 -#: ../../../../inc/themes/material-blue/account.inc:443 +#: ../../../../inc/themes/material-blue/account.inc:445 #: ../../../../inc/themes/material-blue/editpass.inc:55 #: ../../../../inc/themes/material-blue/mgmttabs.inc:13 #: ../../../../inc/themes/material-blue/request.inc:42 @@ -4445,32 +4551,34 @@ msgid "Enviar" msgstr "Envoyer" #: ../../../../inc/themes/classic/search.inc:33 -#: ../../../../inc/themes/material-blue/search.inc:29 +#: ../../../../inc/themes/material-blue/search.inc:65 msgid "Buscar en Wiki" msgstr "Chercher dans Wiki" #: ../../../../inc/themes/classic/search.inc:69 -#: ../../../../inc/themes/material-blue/search.inc:65 +#: ../../../../inc/themes/material-blue/search.inc:101 msgid "Abrir enlace a" msgstr "Ouvrir le lien vers" #: ../../../../inc/themes/classic/search.inc:87 -#: ../../../../inc/themes/material-blue/search.inc:89 +#: ../../../../inc/themes/material-blue/search.inc:125 msgid "Archivos adjuntos" msgstr "Fichiers joints" #: ../../../../inc/themes/classic/search.inc:94 -#: ../../../../inc/themes/material-blue/search.inc:98 +#: ../../../../inc/themes/material-blue/search.inc:134 msgid "Enlace a Wiki" msgstr "Lien vers Wiki" #: ../../../../inc/themes/classic/search.inc:159 -#: ../../../../inc/themes/material-blue/search.inc:161 +#: ../../../../inc/themes/material-blue/search.inc:10 +#: ../../../../inc/themes/material-blue/search.inc:199 msgid "Filtro ON" msgstr "Filtre ON" #: ../../../../inc/themes/classic/search.inc:163 -#: ../../../../inc/themes/material-blue/search.inc:165 +#: ../../../../inc/themes/material-blue/search.inc:14 +#: ../../../../inc/themes/material-blue/search.inc:203 msgid "Global ON" msgstr "Global ON" @@ -4543,7 +4651,6 @@ msgid "" msgstr "" #: ../../../../inc/themes/classic/security.inc:29 -#: ../../../../inc/themes/material-blue/preferences.inc:86 #: ../../../../inc/themes/material-blue/security.inc:27 msgid "Activar" msgstr "Activer" @@ -4767,8 +4874,8 @@ msgstr "Mot de passe (à confirmer)" #: ../../../../inc/themes/material-blue/backup.inc:58 #: ../../../../inc/themes/material-blue/backup.inc:144 -#: ../../../../inc/themes/material-blue/encryption.inc:118 -#: ../../../../inc/themes/material-blue/import.inc:217 +#: ../../../../inc/themes/material-blue/encryption.inc:115 +#: ../../../../inc/themes/material-blue/import.inc:214 msgid "Realizar" msgstr "Effectuer" @@ -4825,7 +4932,7 @@ msgstr "" msgid "Preferencias de usuario" msgstr "Préférences de l'utilisateur" -#: ../../../../inc/themes/material-blue/import.inc:104 +#: ../../../../inc/themes/material-blue/import.inc:101 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "archivos XML y CSV." @@ -4869,6 +4976,14 @@ msgid "" "cuentas sin permisos." msgstr "" +#: ../../../../inc/themes/material-blue/preferences.inc:91 +msgid "Barra de navegación superior" +msgstr "" + +#: ../../../../inc/themes/material-blue/preferences.inc:95 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "" + #: ../../../../inc/themes/material-blue/profiles.inc:25 msgid "Crear nueva cuenta" msgstr "Créer un nouveau compte" diff --git a/inc/locales/hu_HU/LC_MESSAGES/messages.mo b/inc/locales/hu_HU/LC_MESSAGES/messages.mo index a60b99fe..b642be66 100644 Binary files a/inc/locales/hu_HU/LC_MESSAGES/messages.mo and b/inc/locales/hu_HU/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/hu_HU/LC_MESSAGES/messages.po b/inc/locales/hu_HU/LC_MESSAGES/messages.po index 93d8da54..f2b71ce3 100644 --- a/inc/locales/hu_HU/LC_MESSAGES/messages.po +++ b/inc/locales/hu_HU/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-05 02:34+0100\n" -"PO-Revision-Date: 2015-10-05 02:34+0100\n" +"POT-Creation-Date: 2015-10-09 00:51+0100\n" +"PO-Revision-Date: 2015-10-09 00:51+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: \n" "Language: hu_HU\n" @@ -23,152 +23,152 @@ msgstr "" "X-Poedit-SearchPath-0: ../../../..\n" # "INVALID QUERY" -#: ../../../../ajax/ajax_2fa.php:35 ../../../../ajax/ajax_accountSave.php:41 -#: ../../../../ajax/ajax_appMgmtSave.php:42 -#: ../../../../ajax/ajax_backup.php:39 ../../../../ajax/ajax_checkLdap.php:41 -#: ../../../../ajax/ajax_configSave.php:41 ../../../../ajax/ajax_files.php:41 -#: ../../../../ajax/ajax_getFiles.php:46 ../../../../ajax/ajax_import.php:49 -#: ../../../../ajax/ajax_migrate.php:45 ../../../../ajax/ajax_passReset.php:37 -#: ../../../../ajax/ajax_search.php:41 -#: ../../../../ajax/ajax_sendRequest.php:41 -#: ../../../../ajax/ajax_userPrefsSave.php:42 +#: ../../../../ajax/ajax_2fa.php:37 ../../../../ajax/ajax_accountSave.php:42 +#: ../../../../ajax/ajax_appMgmtSave.php:43 +#: ../../../../ajax/ajax_backup.php:41 ../../../../ajax/ajax_checkLdap.php:42 +#: ../../../../ajax/ajax_configSave.php:44 ../../../../ajax/ajax_files.php:42 +#: ../../../../ajax/ajax_getFiles.php:47 ../../../../ajax/ajax_import.php:50 +#: ../../../../ajax/ajax_migrate.php:46 ../../../../ajax/ajax_passReset.php:40 +#: ../../../../ajax/ajax_search.php:42 +#: ../../../../ajax/ajax_sendRequest.php:42 +#: ../../../../ajax/ajax_userPrefsSave.php:43 msgid "CONSULTA INVÁLIDA" msgstr "Érvénytelen lekérdezés" # "Incorrect login" -#: ../../../../ajax/ajax_2fa.php:55 +#: ../../../../ajax/ajax_2fa.php:57 #, fuzzy msgid "Código correcto" msgstr "Hibás felhasználónév vagy jelszó" # "Incorrect login" -#: ../../../../ajax/ajax_2fa.php:58 ../../../../ajax/ajax_userPrefsSave.php:94 +#: ../../../../ajax/ajax_2fa.php:60 ../../../../ajax/ajax_userPrefsSave.php:97 #, fuzzy msgid "Código incorrecto" msgstr "Hibás felhasználónév vagy jelszó" # "Session not started or timeout" -#: ../../../../ajax/ajax_accountSave.php:35 -#: ../../../../ajax/ajax_appMgmtSave.php:36 -#: ../../../../ajax/ajax_backup.php:33 ../../../../ajax/ajax_checkLdap.php:35 -#: ../../../../ajax/ajax_configSave.php:35 ../../../../ajax/ajax_import.php:35 -#: ../../../../ajax/ajax_migrate.php:35 -#: ../../../../ajax/ajax_sendRequest.php:35 -#: ../../../../ajax/ajax_userPrefsSave.php:36 -#: ../../../../ajax/ajax_viewpass.php:36 +#: ../../../../ajax/ajax_accountSave.php:36 +#: ../../../../ajax/ajax_appMgmtSave.php:37 +#: ../../../../ajax/ajax_backup.php:35 ../../../../ajax/ajax_checkLdap.php:36 +#: ../../../../ajax/ajax_configSave.php:38 ../../../../ajax/ajax_import.php:36 +#: ../../../../ajax/ajax_migrate.php:36 +#: ../../../../ajax/ajax_sendRequest.php:36 +#: ../../../../ajax/ajax_userPrefsSave.php:37 +#: ../../../../ajax/ajax_viewpass.php:37 msgid "La sesión no se ha iniciado o ha caducado" msgstr "A munkamenet nem indult el, vagy idõtúllépés miatt bezáródott" # "Account name needed" -#: ../../../../ajax/ajax_accountSave.php:77 -#: ../../../../ajax/ajax_accountSave.php:92 +#: ../../../../ajax/ajax_accountSave.php:78 +#: ../../../../ajax/ajax_accountSave.php:93 msgid "Es necesario un nombre de cuenta" msgstr "Fiók név szükséges" # "Customer name needed" -#: ../../../../ajax/ajax_accountSave.php:79 -#: ../../../../ajax/ajax_accountSave.php:90 -#: ../../../../ajax/ajax_appMgmtSave.php:328 +#: ../../../../ajax/ajax_accountSave.php:80 +#: ../../../../ajax/ajax_accountSave.php:91 +#: ../../../../ajax/ajax_appMgmtSave.php:329 msgid "Es necesario un nombre de cliente" msgstr "Ügyfél név szükséges" # "Username needed" -#: ../../../../ajax/ajax_accountSave.php:81 -#: ../../../../ajax/ajax_accountSave.php:94 +#: ../../../../ajax/ajax_accountSave.php:82 +#: ../../../../ajax/ajax_accountSave.php:95 msgid "Es necesario un usuario" msgstr "Felhasználónév szükséges" # "Password needed" -#: ../../../../ajax/ajax_accountSave.php:83 -#: ../../../../ajax/ajax_accountSave.php:105 +#: ../../../../ajax/ajax_accountSave.php:84 +#: ../../../../ajax/ajax_accountSave.php:106 #, fuzzy msgid "Es necesaria una clave" msgstr "Jelszó szükséges" # "Category name needed" -#: ../../../../ajax/ajax_accountSave.php:85 -#: ../../../../ajax/ajax_accountSave.php:96 +#: ../../../../ajax/ajax_accountSave.php:86 +#: ../../../../ajax/ajax_accountSave.php:97 #, fuzzy msgid "Es necesario una categoría" msgstr "Jelszó szükséges" # "Invalid Id" -#: ../../../../ajax/ajax_accountSave.php:100 -#: ../../../../ajax/ajax_accountSave.php:109 +#: ../../../../ajax/ajax_accountSave.php:101 +#: ../../../../ajax/ajax_accountSave.php:110 msgid "Id inválido" msgstr "Érvénytelen Id" # "Invalid Action" -#: ../../../../ajax/ajax_accountSave.php:112 -#: ../../../../ajax/ajax_accountSave.php:262 -#: ../../../../ajax/ajax_appMgmtSave.php:534 -#: ../../../../ajax/ajax_configSave.php:293 -#: ../../../../ajax/ajax_userPrefsSave.php:108 ../../../../api.php:53 +#: ../../../../ajax/ajax_accountSave.php:113 +#: ../../../../ajax/ajax_accountSave.php:263 +#: ../../../../ajax/ajax_appMgmtSave.php:535 +#: ../../../../ajax/ajax_configSave.php:324 +#: ../../../../ajax/ajax_userPrefsSave.php:111 ../../../../api.php:53 msgid "Acción Inválida" msgstr "Érvénytelen Akció" # "Passwords mismatch" -#: ../../../../ajax/ajax_accountSave.php:120 -#: ../../../../ajax/ajax_appMgmtSave.php:111 -#: ../../../../ajax/ajax_appMgmtSave.php:148 -#: ../../../../ajax/ajax_backup.php:62 +#: ../../../../ajax/ajax_accountSave.php:121 +#: ../../../../ajax/ajax_appMgmtSave.php:112 +#: ../../../../ajax/ajax_appMgmtSave.php:149 +#: ../../../../ajax/ajax_backup.php:68 msgid "Las claves no coinciden" msgstr "A jelszó nem egyezik" # "Account added" -#: ../../../../ajax/ajax_accountSave.php:172 +#: ../../../../ajax/ajax_accountSave.php:173 msgid "Cuenta creada" msgstr "Fiók hozzáadva" # "Error on account creation" -#: ../../../../ajax/ajax_accountSave.php:175 +#: ../../../../ajax/ajax_accountSave.php:176 msgid "Error al crear la cuenta" msgstr "Hiba a fiók létrehozása közben" # "No changes" -#: ../../../../ajax/ajax_accountSave.php:210 +#: ../../../../ajax/ajax_accountSave.php:211 msgid "Sin cambios" msgstr "Nincsenek változások" # "Account updated" -#: ../../../../ajax/ajax_accountSave.php:222 +#: ../../../../ajax/ajax_accountSave.php:223 msgid "Cuenta actualizada" msgstr "Fiók frissítve" # "Error on updating account" -#: ../../../../ajax/ajax_accountSave.php:225 +#: ../../../../ajax/ajax_accountSave.php:226 msgid "Error al modificar la cuenta" msgstr "Hiba a fiók frissítése közben" # "Account deleted" -#: ../../../../ajax/ajax_accountSave.php:232 +#: ../../../../ajax/ajax_accountSave.php:233 msgid "Cuenta eliminada" msgstr "Fiók törölve" # "Error on account deletion" -#: ../../../../ajax/ajax_accountSave.php:235 +#: ../../../../ajax/ajax_accountSave.php:236 msgid "Error al eliminar la cuenta" msgstr "Hiba a fiók törlése közben" # "Password updated" -#: ../../../../ajax/ajax_accountSave.php:245 -#: ../../../../ajax/ajax_appMgmtSave.php:152 -#: ../../../../ajax/ajax_passReset.php:74 +#: ../../../../ajax/ajax_accountSave.php:246 +#: ../../../../ajax/ajax_appMgmtSave.php:153 +#: ../../../../ajax/ajax_passReset.php:75 msgid "Clave actualizada" msgstr "Jelszó frissítve" # "Error on updating password" -#: ../../../../ajax/ajax_accountSave.php:248 +#: ../../../../ajax/ajax_accountSave.php:249 msgid "Error al actualizar la clave" msgstr "Hiba a jelszó frissítése közben" # "Account restored" -#: ../../../../ajax/ajax_accountSave.php:255 +#: ../../../../ajax/ajax_accountSave.php:256 msgid "Cuenta restaurada" msgstr "Fiók restaurált" # "Error on restoring account" -#: ../../../../ajax/ajax_accountSave.php:258 +#: ../../../../ajax/ajax_accountSave.php:259 msgid "Error al restaurar cuenta" msgstr "Hiba történt helyreállítása számla" @@ -180,14 +180,14 @@ msgstr "Felhasználó részletek" # "Edit User" #: ../../../../ajax/ajax_appMgmtData.php:61 -#: ../../../../web/UsersMgmtC.class.php:136 +#: ../../../../web/UsersMgmtC.class.php:137 msgid "Editar Usuario" msgstr "Felhasználó módosítás" # "New User" #: ../../../../ajax/ajax_appMgmtData.php:67 -#: ../../../../inc/UserBase.class.php:381 -#: ../../../../web/UsersMgmtC.class.php:121 +#: ../../../../inc/UserBase.class.php:383 +#: ../../../../web/UsersMgmtC.class.php:122 msgid "Nuevo Usuario" msgstr "Új felhasználó" @@ -199,14 +199,14 @@ msgstr "Nézet" # "Edit Group" #: ../../../../ajax/ajax_appMgmtData.php:80 -#: ../../../../web/UsersMgmtC.class.php:202 +#: ../../../../web/UsersMgmtC.class.php:203 msgid "Editar Grupo" msgstr "Csoport módosítás" # "New Group" #: ../../../../ajax/ajax_appMgmtData.php:86 #: ../../../../inc/Groups.class.php:152 ../../../../inc/Groups.class.php:253 -#: ../../../../web/UsersMgmtC.class.php:194 +#: ../../../../web/UsersMgmtC.class.php:195 msgid "Nuevo Grupo" msgstr "Új csoport" @@ -218,14 +218,14 @@ msgstr "Nézet" # "Edit Profile" #: ../../../../ajax/ajax_appMgmtData.php:99 -#: ../../../../web/UsersMgmtC.class.php:267 +#: ../../../../web/UsersMgmtC.class.php:268 msgid "Editar Perfil" msgstr "Profil módosítás" # "New Profile" #: ../../../../ajax/ajax_appMgmtData.php:105 #: ../../../../inc/ProfileBase.class.php:512 -#: ../../../../web/UsersMgmtC.class.php:252 +#: ../../../../web/UsersMgmtC.class.php:253 msgid "Nuevo Perfil" msgstr "Új profil" @@ -237,14 +237,14 @@ msgstr "Nézet" # "Edit Customer" #: ../../../../ajax/ajax_appMgmtData.php:118 -#: ../../../../web/AccountsMgmtC.class.php:152 +#: ../../../../web/AccountsMgmtC.class.php:153 msgid "Editar Cliente" msgstr "Ügyfél módosítás" # "New Customer" #: ../../../../ajax/ajax_appMgmtData.php:124 #: ../../../../inc/Customer.class.php:65 -#: ../../../../web/AccountsMgmtC.class.php:145 +#: ../../../../web/AccountsMgmtC.class.php:146 msgid "Nuevo Cliente" msgstr "Új ügyfél" @@ -256,14 +256,14 @@ msgstr "Nézet" # "Edit Category" #: ../../../../ajax/ajax_appMgmtData.php:137 -#: ../../../../web/AccountsMgmtC.class.php:94 +#: ../../../../web/AccountsMgmtC.class.php:95 msgid "Editar Categoría" msgstr "Kategória módosítás" # "New Category" #: ../../../../ajax/ajax_appMgmtData.php:143 #: ../../../../inc/Category.class.php:83 -#: ../../../../web/AccountsMgmtC.class.php:86 +#: ../../../../web/AccountsMgmtC.class.php:87 #: ../../../../inc/themes/classic/account.inc:53 #: ../../../../inc/themes/material-blue/account.inc:61 msgid "Nueva Categoría" @@ -278,159 +278,160 @@ msgstr "Nézet" # "Update" #: ../../../../ajax/ajax_appMgmtData.php:156 #: ../../../../inc/ApiTokens.class.php:189 -#: ../../../../web/UsersMgmtC.class.php:399 +#: ../../../../web/UsersMgmtC.class.php:400 #, fuzzy msgid "Nueva Autorización" msgstr "Új Kategória" # Start Update #: ../../../../ajax/ajax_appMgmtData.php:162 -#: ../../../../web/UsersMgmtC.class.php:414 +#: ../../../../web/UsersMgmtC.class.php:415 #, fuzzy msgid "Editar Autorización" msgstr "Módosítás" # "New Group" #: ../../../../ajax/ajax_appMgmtData.php:168 -#: ../../../../web/AccountsMgmtC.class.php:273 +#: ../../../../web/AccountsMgmtC.class.php:274 #, fuzzy msgid "Nuevo Campo" msgstr "Új felhasználó" # "Edit Password" #: ../../../../ajax/ajax_appMgmtData.php:174 -#: ../../../../web/AccountsMgmtC.class.php:280 +#: ../../../../web/AccountsMgmtC.class.php:281 #, fuzzy msgid "Editar Campo" msgstr "Módosítás" # "Username required" -#: ../../../../ajax/ajax_appMgmtSave.php:85 +#: ../../../../ajax/ajax_appMgmtSave.php:86 msgid "Es necesario un nombre de usuario" msgstr "Felhasználónév szükséges" # "Login required" -#: ../../../../ajax/ajax_appMgmtSave.php:87 +#: ../../../../ajax/ajax_appMgmtSave.php:88 msgid "Es necesario un login" msgstr "Bejelentkezés szükséges" # "Profile required" -#: ../../../../ajax/ajax_appMgmtSave.php:89 +#: ../../../../ajax/ajax_appMgmtSave.php:90 msgid "Es necesario un perfil" msgstr "Profil szükséges" # "Group required" -#: ../../../../ajax/ajax_appMgmtSave.php:91 +#: ../../../../ajax/ajax_appMgmtSave.php:92 msgid "Es necesario un grupo" msgstr "Csoport szükséges" # "Email required" -#: ../../../../ajax/ajax_appMgmtSave.php:93 +#: ../../../../ajax/ajax_appMgmtSave.php:94 msgid "Es necesario un email" msgstr "Email szükséges" # "Ey, this is a DEMO!!" -#: ../../../../ajax/ajax_appMgmtSave.php:95 -#: ../../../../ajax/ajax_appMgmtSave.php:144 -#: ../../../../ajax/ajax_appMgmtSave.php:159 -#: ../../../../ajax/ajax_configSave.php:268 -#: ../../../../ajax/ajax_import.php:39 ../../../../ajax/ajax_migrate.php:39 -#: ../../../../ajax/ajax_userPrefsSave.php:83 +#: ../../../../ajax/ajax_appMgmtSave.php:96 +#: ../../../../ajax/ajax_appMgmtSave.php:145 +#: ../../../../ajax/ajax_appMgmtSave.php:160 +#: ../../../../ajax/ajax_backup.php:54 +#: ../../../../ajax/ajax_configSave.php:297 +#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40 +#: ../../../../ajax/ajax_userPrefsSave.php:86 msgid "Ey, esto es una DEMO!!" msgstr "Aj, ez egy próbaverzió" # "Duplicated user login " -#: ../../../../ajax/ajax_appMgmtSave.php:100 +#: ../../../../ajax/ajax_appMgmtSave.php:101 msgid "Login de usuario duplicado" msgstr "Dupla felhasználó bejelentkezés" # "Duplicated user email" -#: ../../../../ajax/ajax_appMgmtSave.php:103 +#: ../../../../ajax/ajax_appMgmtSave.php:104 msgid "Email de usuario duplicado" msgstr "Kettõzött felhasználó Email" # "Password cannot be blank" -#: ../../../../ajax/ajax_appMgmtSave.php:109 -#: ../../../../ajax/ajax_appMgmtSave.php:146 +#: ../../../../ajax/ajax_appMgmtSave.php:110 +#: ../../../../ajax/ajax_appMgmtSave.php:147 msgid "La clave no puede estar en blanco" msgstr "A jelszó nem lehet üres" # "User added" -#: ../../../../ajax/ajax_appMgmtSave.php:122 +#: ../../../../ajax/ajax_appMgmtSave.php:123 msgid "Usuario creado" msgstr "Felhasználó hozzáadva" # "Error on creating user" -#: ../../../../ajax/ajax_appMgmtSave.php:125 +#: ../../../../ajax/ajax_appMgmtSave.php:126 msgid "Error al crear el usuario" msgstr "Hiba a felhasználó létrehozása közben" # "User updated" -#: ../../../../ajax/ajax_appMgmtSave.php:135 -#: ../../../../inc/UserUtil.class.php:103 +#: ../../../../ajax/ajax_appMgmtSave.php:136 +#: ../../../../inc/UserMigrate.class.php:89 msgid "Usuario actualizado" msgstr "Felhasználó frissítve" # "Error on user update" -#: ../../../../ajax/ajax_appMgmtSave.php:138 +#: ../../../../ajax/ajax_appMgmtSave.php:139 msgid "Error al actualizar el usuario" msgstr "Hiba a felhasználó frissítése közben" # "Error on updating password" -#: ../../../../ajax/ajax_appMgmtSave.php:155 -#: ../../../../ajax/ajax_passReset.php:78 +#: ../../../../ajax/ajax_appMgmtSave.php:156 +#: ../../../../ajax/ajax_passReset.php:79 msgid "Error al modificar la clave" msgstr "Hiba a jelszó frissítése közben" # "Unable to delete, user in use" -#: ../../../../ajax/ajax_appMgmtSave.php:161 +#: ../../../../ajax/ajax_appMgmtSave.php:162 msgid "No es posible eliminar, usuario en uso" msgstr "Nem lehet törölni, a felhaszánáló használatban van" # "User deleted" -#: ../../../../ajax/ajax_appMgmtSave.php:165 +#: ../../../../ajax/ajax_appMgmtSave.php:166 msgid "Usuario eliminado" msgstr "Felhasználó törölve" # "Error on user deletion" -#: ../../../../ajax/ajax_appMgmtSave.php:168 +#: ../../../../ajax/ajax_appMgmtSave.php:169 msgid "Error al eliminar el usuario" msgstr "Hiba a felhasználó törlése közben" # "Group name required" -#: ../../../../ajax/ajax_appMgmtSave.php:183 +#: ../../../../ajax/ajax_appMgmtSave.php:184 msgid "Es necesario un nombre de grupo" msgstr "Csoport név szükséges" # "Duplicated group name" -#: ../../../../ajax/ajax_appMgmtSave.php:191 +#: ../../../../ajax/ajax_appMgmtSave.php:192 msgid "Nombre de grupo duplicado" msgstr "Kettõzött csoport név" # "Group added" -#: ../../../../ajax/ajax_appMgmtSave.php:203 +#: ../../../../ajax/ajax_appMgmtSave.php:204 msgid "Grupo creado" msgstr "Csoport hozzáadva" # "Error on group creation" -#: ../../../../ajax/ajax_appMgmtSave.php:205 +#: ../../../../ajax/ajax_appMgmtSave.php:206 msgid "Error al crear el grupo" msgstr "Hiba a csoport létrehozása közben" # "Group updated" -#: ../../../../ajax/ajax_appMgmtSave.php:216 +#: ../../../../ajax/ajax_appMgmtSave.php:217 msgid "Grupo actualizado" msgstr "Csoport frissítve" # "Error on updating group" -#: ../../../../ajax/ajax_appMgmtSave.php:219 +#: ../../../../ajax/ajax_appMgmtSave.php:220 msgid "Error al actualizar el grupo" msgstr "Hiba a csoport frissítése közben" # "Users" -#: ../../../../ajax/ajax_appMgmtSave.php:228 -#: ../../../../ajax/ajax_appMgmtSave.php:305 -#: ../../../../inc/CustomFieldsBase.class.php:83 +#: ../../../../ajax/ajax_appMgmtSave.php:229 +#: ../../../../ajax/ajax_appMgmtSave.php:306 +#: ../../../../inc/CustomFieldsBase.class.php:109 #: ../../../../inc/themes/classic/account.inc:112 #: ../../../../inc/themes/classic/groups.inc:24 #: ../../../../inc/themes/classic/profiles.inc:85 @@ -441,9 +442,9 @@ msgid "Usuarios" msgstr "Felhasználók" # "Accounts" -#: ../../../../ajax/ajax_appMgmtSave.php:232 +#: ../../../../ajax/ajax_appMgmtSave.php:233 #: ../../../../inc/Category.class.php:266 -#: ../../../../inc/CustomFieldsBase.class.php:80 +#: ../../../../inc/CustomFieldsBase.class.php:106 #: ../../../../inc/Customer.class.php:150 #: ../../../../inc/themes/classic/profiles.inc:15 #: ../../../../inc/themes/material-blue/config.inc:176 @@ -452,402 +453,451 @@ msgid "Cuentas" msgstr "Fiókok" # "Unable to delete" -#: ../../../../ajax/ajax_appMgmtSave.php:235 -#: ../../../../ajax/ajax_appMgmtSave.php:307 +#: ../../../../ajax/ajax_appMgmtSave.php:236 +#: ../../../../ajax/ajax_appMgmtSave.php:308 #: ../../../../inc/Category.class.php:119 #: ../../../../inc/Customer.class.php:150 msgid "No es posible eliminar" msgstr "Nem lehet törölni" # "Group in use by:" -#: ../../../../ajax/ajax_appMgmtSave.php:235 +#: ../../../../ajax/ajax_appMgmtSave.php:236 msgid "Grupo en uso por:" msgstr "Csoportot használja a:" # "Group deleted" -#: ../../../../ajax/ajax_appMgmtSave.php:240 +#: ../../../../ajax/ajax_appMgmtSave.php:241 msgid "Grupo eliminado" msgstr "Csoport törölve" # "Error on group deletion" -#: ../../../../ajax/ajax_appMgmtSave.php:243 +#: ../../../../ajax/ajax_appMgmtSave.php:244 msgid "Error al eliminar el grupo" msgstr "Hiba a csoport törlése közben" # "Profile name needed" -#: ../../../../ajax/ajax_appMgmtSave.php:282 +#: ../../../../ajax/ajax_appMgmtSave.php:283 msgid "Es necesario un nombre de perfil" msgstr "Profil név szükséges" # "Duplicated profile name" -#: ../../../../ajax/ajax_appMgmtSave.php:284 +#: ../../../../ajax/ajax_appMgmtSave.php:285 msgid "Nombre de perfil duplicado" msgstr "Kettözõtt profil név" # "Profile added" -#: ../../../../ajax/ajax_appMgmtSave.php:289 +#: ../../../../ajax/ajax_appMgmtSave.php:290 msgid "Perfil creado" msgstr "Profil hozzáadva" # "Error on creating profile" -#: ../../../../ajax/ajax_appMgmtSave.php:292 +#: ../../../../ajax/ajax_appMgmtSave.php:293 msgid "Error al crear el perfil" msgstr "Hiba a profil létrehozása közben" # "Profile updated" -#: ../../../../ajax/ajax_appMgmtSave.php:295 +#: ../../../../ajax/ajax_appMgmtSave.php:296 msgid "Perfil actualizado" msgstr "Profil frissítve" # "Error on updating profile" -#: ../../../../ajax/ajax_appMgmtSave.php:298 +#: ../../../../ajax/ajax_appMgmtSave.php:299 msgid "Error al actualizar el perfil" msgstr "Hiba a profil frissítése közben" # "Profiles in use by:" -#: ../../../../ajax/ajax_appMgmtSave.php:307 +#: ../../../../ajax/ajax_appMgmtSave.php:308 msgid "Perfil en uso por:" msgstr "A profilt használja:" # "Profile deleted" -#: ../../../../ajax/ajax_appMgmtSave.php:310 +#: ../../../../ajax/ajax_appMgmtSave.php:311 msgid "Perfil eliminado" msgstr "Profil törölve" # "Error on profile deletion" -#: ../../../../ajax/ajax_appMgmtSave.php:313 +#: ../../../../ajax/ajax_appMgmtSave.php:314 msgid "Error al eliminar el perfil" msgstr "Hiba a profil törlése közben" # "Customer added" -#: ../../../../ajax/ajax_appMgmtSave.php:348 +#: ../../../../ajax/ajax_appMgmtSave.php:349 msgid "Cliente creado" msgstr "Ügyfél hozzáadva" # "Customer updated" -#: ../../../../ajax/ajax_appMgmtSave.php:363 +#: ../../../../ajax/ajax_appMgmtSave.php:364 msgid "Cliente actualizado" msgstr "Ügyfél frissítve" # "Customer deleted" -#: ../../../../ajax/ajax_appMgmtSave.php:373 +#: ../../../../ajax/ajax_appMgmtSave.php:374 msgid "Cliente eliminado" msgstr "Ügyfél törölve" # "Category name needed" -#: ../../../../ajax/ajax_appMgmtSave.php:387 +#: ../../../../ajax/ajax_appMgmtSave.php:388 msgid "Es necesario un nombre de categoría" msgstr "Kategória név szükséges" # "Category added" -#: ../../../../ajax/ajax_appMgmtSave.php:407 +#: ../../../../ajax/ajax_appMgmtSave.php:408 msgid "Categoría creada" msgstr "Kategória hozzáadva" # "Category updated" -#: ../../../../ajax/ajax_appMgmtSave.php:422 +#: ../../../../ajax/ajax_appMgmtSave.php:423 msgid "Categoría actualizada" msgstr "Kategória frissítve" # "Category deleted" -#: ../../../../ajax/ajax_appMgmtSave.php:433 +#: ../../../../ajax/ajax_appMgmtSave.php:434 msgid "Categoría eliminada" msgstr "Kategória törölve" # "User/Pass not entered" -#: ../../../../ajax/ajax_appMgmtSave.php:449 +#: ../../../../ajax/ajax_appMgmtSave.php:450 #, fuzzy msgid "Usuario o acción no indicado" msgstr "Felhasználó/jelszó nem lett kitöltve" # "Account Activation" -#: ../../../../ajax/ajax_appMgmtSave.php:459 +#: ../../../../ajax/ajax_appMgmtSave.php:460 #, fuzzy msgid "Autorización creada" msgstr "Fiók hozzáadva" # "Configuration updated" -#: ../../../../ajax/ajax_appMgmtSave.php:467 +#: ../../../../ajax/ajax_appMgmtSave.php:468 #, fuzzy msgid "Autorización actualizada" msgstr "Fiók frissítve" # "Account deleted" -#: ../../../../ajax/ajax_appMgmtSave.php:477 +#: ../../../../ajax/ajax_appMgmtSave.php:478 #, fuzzy msgid "Autorización eliminada" msgstr "Fiók törölve" # "Duplicated group name" -#: ../../../../ajax/ajax_appMgmtSave.php:494 +#: ../../../../ajax/ajax_appMgmtSave.php:495 #, fuzzy msgid "Nombre del campo no indicado" msgstr "Ügyfél név" # "File type not allowed" -#: ../../../../ajax/ajax_appMgmtSave.php:496 +#: ../../../../ajax/ajax_appMgmtSave.php:497 #, fuzzy msgid "Tipo del campo no indicado" msgstr "Fájltípus nem engedélyezett" -#: ../../../../ajax/ajax_appMgmtSave.php:498 +#: ../../../../ajax/ajax_appMgmtSave.php:499 msgid "Módulo del campo no indicado" msgstr "" # "Group added" -#: ../../../../ajax/ajax_appMgmtSave.php:512 +#: ../../../../ajax/ajax_appMgmtSave.php:513 #, fuzzy msgid "Campo creado" msgstr "Felhasználó hozzáadva" # "Group updated" -#: ../../../../ajax/ajax_appMgmtSave.php:521 +#: ../../../../ajax/ajax_appMgmtSave.php:522 #, fuzzy msgid "Campo actualizado" msgstr "Frissítve" # "Group deleted" -#: ../../../../ajax/ajax_appMgmtSave.php:531 +#: ../../../../ajax/ajax_appMgmtSave.php:532 #, fuzzy msgid "Campo eliminado" msgstr "Felhasználó törölve" # "Make Backup" -#: ../../../../ajax/ajax_backup.php:52 ../../../../ajax/ajax_backup.php:57 +#: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:63 #: ../../../../inc/themes/classic/backup.inc:54 msgid "Realizar Backup" msgstr "Archívum készítés" # "Error while doing backup" -#: ../../../../ajax/ajax_backup.php:52 ../../../../ajax/ajax_backup.php:54 +#: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:60 msgid "Error al realizar el backup" msgstr "Hiba Archiválás közben" # "Please, check the event log for more details" -#: ../../../../ajax/ajax_backup.php:54 ../../../../ajax/ajax_backup.php:68 -#: ../../../../ajax/ajax_checkLdap.php:57 ../../../../inc/Import.class.php:128 -#: ../../../../inc/Migrate.class.php:93 +#: ../../../../ajax/ajax_backup.php:60 ../../../../ajax/ajax_backup.php:74 +#: ../../../../ajax/ajax_checkLdap.php:58 ../../../../inc/Import.class.php:128 +#: ../../../../inc/Migrate.class.php:92 msgid "Revise el registro de eventos para más detalles" msgstr "Részletes leírást az esemény naplóban olvashat" # Application and database backup successfully done -#: ../../../../ajax/ajax_backup.php:57 +#: ../../../../ajax/ajax_backup.php:63 #, fuzzy msgid "Copia de la aplicación y base de datos realizada correctamente" msgstr "Application and database backup successfully done" # "Backup process finished" -#: ../../../../ajax/ajax_backup.php:59 +#: ../../../../ajax/ajax_backup.php:65 msgid "Proceso de backup finalizado" msgstr "Archiválás kész" # "Enable debug" -#: ../../../../ajax/ajax_backup.php:66 ../../../../ajax/ajax_backup.php:71 +#: ../../../../ajax/ajax_backup.php:72 ../../../../ajax/ajax_backup.php:77 #, fuzzy msgid "Realizar Exportación" msgstr "Archívum készítés" # "Error on creating accounts files" -#: ../../../../ajax/ajax_backup.php:66 +#: ../../../../ajax/ajax_backup.php:72 #, fuzzy msgid "Error al realizar la exportación de cuentas" msgstr "Hiba a fiók fájlok létrehozása közben" # "Error while doing backup" -#: ../../../../ajax/ajax_backup.php:68 +#: ../../../../ajax/ajax_backup.php:74 #, fuzzy msgid "Error al realizar la exportación" msgstr "Hiba Archiválás közben" # "Application successfully updated" -#: ../../../../ajax/ajax_backup.php:71 +#: ../../../../ajax/ajax_backup.php:77 #, fuzzy msgid "Exportación de cuentas realizada correctamente" msgstr "A beállítások elmentve" # "Backup process finished" -#: ../../../../ajax/ajax_backup.php:73 +#: ../../../../ajax/ajax_backup.php:79 #, fuzzy msgid "Proceso de exportación finalizado" msgstr "Archiválás kész" # "LDAP parameters are not set" -#: ../../../../ajax/ajax_checkLdap.php:51 ../../../../inc/Ldap.class.php:265 +#: ../../../../ajax/ajax_checkLdap.php:52 ../../../../inc/Ldap.class.php:259 msgid "Los parámetros de LDAP no están configurados" msgstr "LDAP paraméterek nem lettek elmentve" # "LDAP connection error" -#: ../../../../ajax/ajax_checkLdap.php:57 +#: ../../../../ajax/ajax_checkLdap.php:58 msgid "Error de conexión a LDAP" msgstr "LDAP kapcsolódási hiba" # "LDAP connection OK" -#: ../../../../ajax/ajax_checkLdap.php:59 +#: ../../../../ajax/ajax_checkLdap.php:60 msgid "Conexión a LDAP correcta" msgstr "LDAP kapcsolat" # "Objects found" -#: ../../../../ajax/ajax_checkLdap.php:59 +#: ../../../../ajax/ajax_checkLdap.php:60 msgid "Objetos encontrados" msgstr "Objektum találatok" # "Edit Configuration" -#: ../../../../ajax/ajax_configSave.php:55 +#: ../../../../ajax/ajax_configSave.php:58 msgid "Modificar Configuración" msgstr "Konfiguráció szerkesztése" # "Maximum file upload size in 16MB" -#: ../../../../ajax/ajax_configSave.php:102 +#: ../../../../ajax/ajax_configSave.php:105 #, fuzzy msgid "El tamaño máximo por archivo es de 16MB" msgstr "Maximálisan feltölthetõ fájl mérete 16MB" # "Missing Mail parameters" -#: ../../../../ajax/ajax_configSave.php:115 +#: ../../../../ajax/ajax_configSave.php:118 #, fuzzy msgid "Faltan parámetros de Proxy" msgstr "Hiányzó Wiki paraméter" -# "Action" +# "User disabled" #: ../../../../ajax/ajax_configSave.php:126 -#: ../../../../ajax/ajax_configSave.php:146 -#: ../../../../ajax/ajax_configSave.php:176 -#: ../../../../ajax/ajax_configSave.php:211 +#, fuzzy +msgid "Proxy habiltado" +msgstr "Felhasználó letiltva" + +# "User disabled" +#: ../../../../ajax/ajax_configSave.php:130 +#, fuzzy +msgid "Proxy deshabilitado" +msgstr "Felhasználó letiltva" + +# "Action" +#: ../../../../ajax/ajax_configSave.php:133 +#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../ajax/ajax_configSave.php:230 #, fuzzy msgid "Sección" msgstr "Akció" # "General" -#: ../../../../ajax/ajax_configSave.php:126 -#: ../../../../web/ConfigC.class.php:106 +#: ../../../../ajax/ajax_configSave.php:133 +#: ../../../../web/ConfigC.class.php:108 #: ../../../../inc/themes/classic/profiles.inc:61 #: ../../../../inc/themes/material-blue/profiles.inc:72 msgid "General" msgstr "Általános" # "Missing Wiki parameters" -#: ../../../../ajax/ajax_configSave.php:136 +#: ../../../../ajax/ajax_configSave.php:143 msgid "Faltan parámetros de Wiki" msgstr "Hiányzó Wiki paraméter" +# "Disabled" +#: ../../../../ajax/ajax_configSave.php:150 +#, fuzzy +msgid "Wiki habiltada" +msgstr "Inaktív" + +# "Disabled" +#: ../../../../ajax/ajax_configSave.php:154 +#, fuzzy +msgid "Wiki deshabilitada" +msgstr "Inaktív" + # "Wiki" -#: ../../../../ajax/ajax_configSave.php:146 -#: ../../../../web/ConfigC.class.php:242 +#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../web/ConfigC.class.php:244 #: ../../../../inc/themes/classic/wiki.inc:4 #: ../../../../inc/themes/material-blue/wiki.inc:4 msgid "Wiki" msgstr "Wiki" # "Missing LDAP parameters" -#: ../../../../ajax/ajax_configSave.php:161 +#: ../../../../ajax/ajax_configSave.php:172 msgid "Faltan parámetros de LDAP" msgstr "Hiányzó LDAP paraméter" +# "Disabled" +#: ../../../../ajax/ajax_configSave.php:184 +#, fuzzy +msgid "LDAP habiltado" +msgstr "Inaktív" + +# "Disabled" +#: ../../../../ajax/ajax_configSave.php:188 +#, fuzzy +msgid "LDAP deshabilitado" +msgstr "Inaktív" + # "LDAP" -#: ../../../../ajax/ajax_configSave.php:176 -#: ../../../../web/ConfigC.class.php:274 +#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../web/ConfigC.class.php:276 #: ../../../../inc/themes/classic/ldap.inc:4 #: ../../../../inc/themes/material-blue/ldap.inc:4 msgid "LDAP" msgstr "LDAP" # "Missing Mail parameters" -#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../ajax/ajax_configSave.php:206 msgid "Faltan parámetros de Correo" msgstr "Hiányzó mail paraméter" +# "Email sent" +#: ../../../../ajax/ajax_configSave.php:221 +#, fuzzy +msgid "Correo habiltado" +msgstr "Email elküldve" + +# "User disabled" +#: ../../../../ajax/ajax_configSave.php:227 +#, fuzzy +msgid "Correo deshabilitado" +msgstr "Felhasználó letiltva" + # "Mail" -#: ../../../../ajax/ajax_configSave.php:211 -#: ../../../../web/ConfigC.class.php:304 +#: ../../../../ajax/ajax_configSave.php:230 +#: ../../../../web/ConfigC.class.php:306 #: ../../../../inc/themes/classic/mail.inc:4 #: ../../../../inc/themes/material-blue/mail.inc:4 msgid "Correo" msgstr "Mail" # "Configuration updated" -#: ../../../../ajax/ajax_configSave.php:223 +#: ../../../../ajax/ajax_configSave.php:252 msgid "Configuración actualizada" msgstr "Beállítások frissítve" # "Master Password updated" -#: ../../../../ajax/ajax_configSave.php:232 -#: ../../../../ajax/ajax_configSave.php:278 -#: ../../../../ajax/ajax_viewpass.php:60 +#: ../../../../ajax/ajax_configSave.php:261 +#: ../../../../ajax/ajax_configSave.php:307 +#: ../../../../ajax/ajax_viewpass.php:61 #: ../../../../inc/Controller.class.php:169 msgid "Clave maestra actualizada" msgstr "A mester jelszó frissítve" # "Restart session to update" -#: ../../../../ajax/ajax_configSave.php:232 -#: ../../../../ajax/ajax_viewpass.php:60 +#: ../../../../ajax/ajax_configSave.php:261 +#: ../../../../ajax/ajax_viewpass.php:61 #: ../../../../inc/Controller.class.php:169 msgid "Reinicie la sesión para cambiarla" msgstr "Indítsa újra a munkamenetot a frissítéshez" # "Master Password needed" -#: ../../../../ajax/ajax_configSave.php:234 +#: ../../../../ajax/ajax_configSave.php:263 msgid "Clave maestra no indicada" msgstr "Mester jelszó szükséges" # "Password update must be confirmed" -#: ../../../../ajax/ajax_configSave.php:236 +#: ../../../../ajax/ajax_configSave.php:265 msgid "Se ha de confirmar el cambio de clave" msgstr "A jelszó frissítéshez megerõsítés szükséges" # "Password are the same" -#: ../../../../ajax/ajax_configSave.php:240 +#: ../../../../ajax/ajax_configSave.php:269 msgid "Las claves son idénticas" msgstr "A jelszó megegyezik" # "Master passwords mismatch" -#: ../../../../ajax/ajax_configSave.php:242 +#: ../../../../ajax/ajax_configSave.php:271 msgid "Las claves maestras no coinciden" msgstr "A mester jelszó nem egyezik" # "Current master password mismatch" -#: ../../../../ajax/ajax_configSave.php:244 +#: ../../../../ajax/ajax_configSave.php:273 msgid "La clave maestra actual no coincide" msgstr "A jelenlegi mester jelszó nem egyezik" # "Error on updating accounts' passwords" -#: ../../../../ajax/ajax_configSave.php:253 +#: ../../../../ajax/ajax_configSave.php:282 msgid "Errores al actualizar las claves de las cuentas" msgstr "Hiba a fiókok jelszavainak frissítése közben" # "Error on updating accounts' passwords" -#: ../../../../ajax/ajax_configSave.php:259 +#: ../../../../ajax/ajax_configSave.php:288 #, fuzzy msgid "Errores al actualizar las claves de las cuentas del histórico" msgstr "Hiba a fiókok jelszavainak frissítése közben" # "Error on updating accounts' passwords" -#: ../../../../ajax/ajax_configSave.php:263 +#: ../../../../ajax/ajax_configSave.php:292 #, fuzzy msgid "Errores al actualizar datos de campos personalizados" msgstr "Hiba a fiókok jelszavainak frissítése közben" # "Update Master Password" -#: ../../../../ajax/ajax_configSave.php:276 -#: ../../../../inc/Account.class.php:495 +#: ../../../../ajax/ajax_configSave.php:305 +#: ../../../../inc/Account.class.php:512 msgid "Actualizar Clave Maestra" msgstr "Frissítse a mester jelszót" # "Error on saving master password's hash" -#: ../../../../ajax/ajax_configSave.php:280 +#: ../../../../ajax/ajax_configSave.php:309 msgid "Error al guardar el hash de la clave maestra" msgstr "Hiba a mester jelszó hash-ének elmentése közben" # "Generate random password" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:317 #, fuzzy msgid "Generar Clave Temporal" msgstr "Generate Temporary Password" # "Password" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:317 +#: ../../../../inc/CustomFieldsBase.class.php:87 #: ../../../../inc/themes/classic/account.inc:86 #: ../../../../inc/themes/classic/editpass.inc:25 -#: ../../../../inc/themes/classic/encryption.inc:146 +#: ../../../../inc/themes/classic/encryption.inc:143 #: ../../../../inc/themes/classic/install.inc:38 #: ../../../../inc/themes/classic/install.inc:39 #: ../../../../inc/themes/classic/login.inc:10 @@ -864,7 +914,7 @@ msgstr "Generate Temporary Password" #: ../../../../inc/themes/material-blue/editpass.inc:26 #: ../../../../inc/themes/material-blue/editpass.inc:31 #: ../../../../inc/themes/material-blue/editpass.inc:41 -#: ../../../../inc/themes/material-blue/encryption.inc:164 +#: ../../../../inc/themes/material-blue/encryption.inc:161 #: ../../../../inc/themes/material-blue/install.inc:46 #: ../../../../inc/themes/material-blue/ldap.inc:105 #: ../../../../inc/themes/material-blue/login.inc:18 @@ -880,36 +930,42 @@ msgid "Clave" msgstr "Jelszó" # "Generated Password" -#: ../../../../ajax/ajax_configSave.php:290 +#: ../../../../ajax/ajax_configSave.php:319 #, fuzzy msgid "Clave Temporal Generada" msgstr "Generált Jelszó" +# "Generate random password" +#: ../../../../ajax/ajax_configSave.php:321 +#, fuzzy +msgid "Error al generar clave temporal" +msgstr "Generate Temporary Password" + # "User/Pass not entered" -#: ../../../../ajax/ajax_doLogin.php:46 +#: ../../../../ajax/ajax_doLogin.php:49 msgid "Usuario/Clave no introducidos" msgstr "Felhasználó/jelszó nem lett kitöltve" # "Session start (LDAP)" -#: ../../../../ajax/ajax_doLogin.php:58 +#: ../../../../ajax/ajax_doLogin.php:61 #, fuzzy msgid "Inicio sesión" msgstr "munkamenet elindult (LDAP)" # "Server" -#: ../../../../ajax/ajax_doLogin.php:63 +#: ../../../../ajax/ajax_doLogin.php:66 #, fuzzy msgid "Servidor Login" msgstr "Belépés" # "Error on saving LDAP user data" -#: ../../../../ajax/ajax_doLogin.php:69 +#: ../../../../ajax/ajax_doLogin.php:72 msgid "Error al guardar los datos de LDAP" msgstr "Hiba az LDAP felhasználók adatainak elmentése közben" # "Internal error" -#: ../../../../ajax/ajax_doLogin.php:72 ../../../../ajax/ajax_doLogin.php:80 -#: ../../../../ajax/ajax_doLogin.php:132 ../../../../ajax/ajax_doLogin.php:176 +#: ../../../../ajax/ajax_doLogin.php:75 ../../../../ajax/ajax_doLogin.php:83 +#: ../../../../ajax/ajax_doLogin.php:135 ../../../../ajax/ajax_doLogin.php:179 #: ../../../../inc/ApiTokens.class.php:140 #: ../../../../inc/ApiTokens.class.php:186 #: ../../../../inc/ApiTokens.class.php:217 @@ -918,33 +974,35 @@ msgstr "Hiba az LDAP felhasználók adatainak elmentése közben" #: ../../../../inc/ApiTokens.class.php:304 #: ../../../../inc/ApiTokens.class.php:328 ../../../../inc/Crypt.class.php:181 #: ../../../../inc/Crypt.class.php:192 -#: ../../../../inc/XmlImportBase.class.php:74 +#: ../../../../inc/XmlImportBase.class.php:79 msgid "Error interno" msgstr "Belsõ hiba" # "Error on updating user password in BD" -#: ../../../../ajax/ajax_doLogin.php:77 +#: ../../../../ajax/ajax_doLogin.php:80 msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Adatbázis Hiba a felhasználói jelszó frissítése közben" # "Incorrect login" -#: ../../../../ajax/ajax_doLogin.php:85 ../../../../ajax/ajax_doLogin.php:110 +#: ../../../../ajax/ajax_doLogin.php:88 ../../../../ajax/ajax_doLogin.php:113 msgid "Login incorrecto" msgstr "Hibás felhasználónév vagy jelszó" # "User" -#: ../../../../ajax/ajax_doLogin.php:86 ../../../../ajax/ajax_doLogin.php:93 -#: ../../../../ajax/ajax_doLogin.php:100 ../../../../ajax/ajax_doLogin.php:111 -#: ../../../../ajax/ajax_doLogin.php:121 ../../../../ajax/ajax_doLogin.php:171 +#: ../../../../ajax/ajax_doLogin.php:89 ../../../../ajax/ajax_doLogin.php:96 +#: ../../../../ajax/ajax_doLogin.php:103 ../../../../ajax/ajax_doLogin.php:114 +#: ../../../../ajax/ajax_doLogin.php:124 ../../../../ajax/ajax_doLogin.php:174 #: ../../../../inc/ApiTokens.class.php:190 #: ../../../../inc/ApiTokens.class.php:308 ../../../../inc/Auth.class.php:108 -#: ../../../../inc/Init.class.php:457 ../../../../inc/UserBase.class.php:382 -#: ../../../../inc/UserBase.class.php:526 ../../../../res/test.php:64 -#: ../../../../web/SearchC.class.php:304 -#: ../../../../web/UsersMgmtC.class.php:392 +#: ../../../../inc/Init.class.php:457 ../../../../inc/Ldap.class.php:290 +#: ../../../../inc/Ldap.class.php:303 ../../../../inc/Ldap.class.php:311 +#: ../../../../inc/UserBase.class.php:384 +#: ../../../../inc/UserBase.class.php:528 ../../../../res/test.php:64 +#: ../../../../web/SearchC.class.php:303 +#: ../../../../web/UsersMgmtC.class.php:393 #: ../../../../inc/themes/classic/account.inc:73 #: ../../../../inc/themes/classic/editpass.inc:21 -#: ../../../../inc/themes/classic/eventlog.inc:25 +#: ../../../../inc/themes/classic/eventlog.inc:23 #: ../../../../inc/themes/classic/info.inc:39 #: ../../../../inc/themes/classic/install.inc:27 #: ../../../../inc/themes/classic/install.inc:28 @@ -958,7 +1016,7 @@ msgstr "Hibás felhasználónév vagy jelszó" #: ../../../../inc/themes/material-blue/account.inc:83 #: ../../../../inc/themes/material-blue/config.inc:381 #: ../../../../inc/themes/material-blue/editpass.inc:22 -#: ../../../../inc/themes/material-blue/eventlog.inc:24 +#: ../../../../inc/themes/material-blue/eventlog.inc:23 #: ../../../../inc/themes/material-blue/info.inc:39 #: ../../../../inc/themes/material-blue/login.inc:11 #: ../../../../inc/themes/material-blue/login.inc:34 @@ -966,63 +1024,65 @@ msgstr "Hibás felhasználónév vagy jelszó" #: ../../../../inc/themes/material-blue/mail.inc:67 #: ../../../../inc/themes/material-blue/passreset.inc:16 #: ../../../../inc/themes/material-blue/request.inc:20 -#: ../../../../inc/themes/material-blue/search.inc:55 +#: ../../../../inc/themes/material-blue/search.inc:91 #: ../../../../inc/themes/material-blue/tokens.inc:8 msgid "Usuario" msgstr "Felhasználó" # "Wrong user/pass" -#: ../../../../ajax/ajax_doLogin.php:89 ../../../../ajax/ajax_doLogin.php:103 -#: ../../../../ajax/ajax_doLogin.php:114 +#: ../../../../ajax/ajax_doLogin.php:92 ../../../../ajax/ajax_doLogin.php:106 +#: ../../../../ajax/ajax_doLogin.php:117 msgid "Usuario/Clave incorrectos" msgstr "Hibás felhasználó/jelszó" # Account Expired -#: ../../../../ajax/ajax_doLogin.php:92 ../../../../ajax/ajax_doLogin.php:96 +#: ../../../../ajax/ajax_doLogin.php:95 ../../../../ajax/ajax_doLogin.php:99 #, fuzzy msgid "Cuenta expirada" msgstr "Fiók" # "The user have no associated groups" -#: ../../../../ajax/ajax_doLogin.php:99 +#: ../../../../ajax/ajax_doLogin.php:102 msgid "El usuario no tiene grupos asociados" msgstr "a felhasználó nincs csoporthoz társítva" # "User disabled" -#: ../../../../ajax/ajax_doLogin.php:120 ../../../../ajax/ajax_doLogin.php:124 +#: ../../../../ajax/ajax_doLogin.php:123 ../../../../ajax/ajax_doLogin.php:127 msgid "Usuario deshabilitado" msgstr "Felhasználó letiltva" # "Error on retrieving user data from DB" -#: ../../../../ajax/ajax_doLogin.php:129 +#: ../../../../ajax/ajax_doLogin.php:132 msgid "Error al obtener los datos del usuario de la BBDD" msgstr "Hiba a felhasználói adatok adatbázisból való betöltése közben" # "The master password not saved or is incorrect" -#: ../../../../ajax/ajax_doLogin.php:139 +#: ../../../../ajax/ajax_doLogin.php:142 msgid "La clave maestra no ha sido guardada o es incorrecta" msgstr "A mester jelszó nem lett elmentve, vagy helytelen" # "Invalid Master Password" -#: ../../../../ajax/ajax_doLogin.php:146 ../../../../ajax/ajax_doLogin.php:149 +#: ../../../../ajax/ajax_doLogin.php:149 ../../../../ajax/ajax_doLogin.php:152 msgid "Clave maestra incorrecta" msgstr "Érvénytelen mester jelszó" # "Profile" -#: ../../../../ajax/ajax_doLogin.php:172 +#: ../../../../ajax/ajax_doLogin.php:175 #: ../../../../inc/ProfileBase.class.php:512 #: ../../../../inc/ProfileBase.class.php:550 #: ../../../../inc/ProfileBase.class.php:593 -#: ../../../../web/UsersMgmtC.class.php:89 +#: ../../../../web/UsersMgmtC.class.php:90 #: ../../../../inc/themes/classic/users.inc:37 #: ../../../../inc/themes/material-blue/users.inc:43 msgid "Perfil" msgstr "Profil" # "Group" -#: ../../../../ajax/ajax_doLogin.php:173 ../../../../inc/Groups.class.php:158 +#: ../../../../ajax/ajax_doLogin.php:176 ../../../../inc/Groups.class.php:158 #: ../../../../inc/Groups.class.php:259 ../../../../inc/Groups.class.php:375 -#: ../../../../web/UsersMgmtC.class.php:90 +#: ../../../../inc/Ldap.class.php:213 ../../../../inc/Ldap.class.php:226 +#: ../../../../inc/Ldap.class.php:236 ../../../../inc/Ldap.class.php:385 +#: ../../../../web/UsersMgmtC.class.php:91 #: ../../../../inc/themes/classic/ldap.inc:116 #: ../../../../inc/themes/classic/users.inc:49 #: ../../../../inc/themes/material-blue/ldap.inc:139 @@ -1032,32 +1092,32 @@ msgid "Grupo" msgstr "Csoport" # "Files management disabled" -#: ../../../../ajax/ajax_files.php:45 ../../../../ajax/ajax_getFiles.php:39 +#: ../../../../ajax/ajax_files.php:46 ../../../../ajax/ajax_getFiles.php:40 msgid "Gestión de archivos deshabilitada" msgstr "Fálj menedzsment inaktív" # "Upload File" -#: ../../../../ajax/ajax_files.php:59 ../../../../inc/Files.class.php:63 +#: ../../../../ajax/ajax_files.php:60 ../../../../inc/Files.class.php:63 msgid "Subir Archivo" msgstr "Fájl feltöltés" # "There are no allowed extensions" -#: ../../../../ajax/ajax_files.php:68 +#: ../../../../ajax/ajax_files.php:69 msgid "No hay extensiones permitidas" msgstr "Tiltott kiterjesztések" # "File type not allowed" -#: ../../../../ajax/ajax_files.php:79 ../../../../inc/FileImport.class.php:115 +#: ../../../../ajax/ajax_files.php:80 ../../../../inc/FileImport.class.php:115 msgid "Tipo de archivo no soportado" msgstr "Fájltípus nem engedélyezett" # "Invalid file" -#: ../../../../ajax/ajax_files.php:85 +#: ../../../../ajax/ajax_files.php:86 msgid "Archivo inválido" msgstr "Érvénytelen fájl" # "Internal error while reading file" -#: ../../../../ajax/ajax_files.php:101 ../../../../ajax/ajax_files.php:118 +#: ../../../../ajax/ajax_files.php:102 ../../../../ajax/ajax_files.php:119 #: ../../../../inc/FileImport.class.php:131 #: ../../../../inc/FileImport.class.php:149 #: ../../../../inc/FileImport.class.php:167 @@ -1065,195 +1125,195 @@ msgid "Error interno al leer el archivo" msgstr "Belsõ hiba a fájl olvasása közben" # "File is bigger than" -#: ../../../../ajax/ajax_files.php:108 +#: ../../../../ajax/ajax_files.php:109 msgid "El archivo es mayor de " msgstr "A fájl nagyobb, mint" # "File saved" -#: ../../../../ajax/ajax_files.php:125 +#: ../../../../ajax/ajax_files.php:126 msgid "Archivo guardado" msgstr "Fájl elmentve" # "Error on file save" -#: ../../../../ajax/ajax_files.php:130 +#: ../../../../ajax/ajax_files.php:131 msgid "No se pudo guardar el archivo" msgstr "Hiba a fájl mentése közben" # "Invalid file ID" -#: ../../../../ajax/ajax_files.php:140 ../../../../ajax/ajax_files.php:199 +#: ../../../../ajax/ajax_files.php:141 ../../../../ajax/ajax_files.php:200 msgid "No es un ID de archivo válido" msgstr "Helytelen fájl ID" # "File doesn't exist" -#: ../../../../ajax/ajax_files.php:148 +#: ../../../../ajax/ajax_files.php:149 msgid "El archivo no existe" msgstr "A fájl nem létezik" # "Download File" -#: ../../../../ajax/ajax_files.php:157 +#: ../../../../ajax/ajax_files.php:158 #: ../../../../inc/themes/classic/files.inc:19 #: ../../../../inc/themes/material-blue/files.inc:19 msgid "Descargar Archivo" msgstr "Fájl letöltés" # "ID" -#: ../../../../ajax/ajax_files.php:158 ../../../../ajax/ajax_viewpass.php:69 +#: ../../../../ajax/ajax_files.php:159 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/Files.class.php:112 -#: ../../../../inc/themes/classic/eventlog.inc:16 -#: ../../../../inc/themes/material-blue/eventlog.inc:15 +#: ../../../../inc/themes/classic/eventlog.inc:14 +#: ../../../../inc/themes/material-blue/eventlog.inc:14 msgid "ID" msgstr "ID" # "File" -#: ../../../../ajax/ajax_files.php:159 ../../../../inc/Files.class.php:65 +#: ../../../../ajax/ajax_files.php:160 ../../../../inc/Files.class.php:65 #: ../../../../inc/Files.class.php:113 -#: ../../../../inc/themes/classic/import.inc:155 -#: ../../../../inc/themes/material-blue/import.inc:83 +#: ../../../../inc/themes/classic/import.inc:152 +#: ../../../../inc/themes/material-blue/import.inc:80 msgid "Archivo" msgstr "Fájl" # "Type" -#: ../../../../ajax/ajax_files.php:160 ../../../../inc/Files.class.php:66 +#: ../../../../ajax/ajax_files.php:161 ../../../../inc/Files.class.php:66 #: ../../../../inc/Files.class.php:114 -#: ../../../../web/AccountsMgmtC.class.php:266 +#: ../../../../web/AccountsMgmtC.class.php:267 #: ../../../../inc/themes/classic/customfields.inc:16 #: ../../../../inc/themes/material-blue/customfields.inc:19 msgid "Tipo" msgstr "Típus" # "Size" -#: ../../../../ajax/ajax_files.php:161 ../../../../inc/Files.class.php:67 +#: ../../../../ajax/ajax_files.php:162 ../../../../inc/Files.class.php:67 #: ../../../../inc/Files.class.php:115 msgid "Tamaño" msgstr "Méret" # "File deleted" -#: ../../../../ajax/ajax_files.php:203 +#: ../../../../ajax/ajax_files.php:204 msgid "Archivo eliminado" msgstr "Fájl törölve" # "Error on file deletion" -#: ../../../../ajax/ajax_files.php:208 +#: ../../../../ajax/ajax_files.php:209 msgid "Error al eliminar el archivo" msgstr "Hiba a fájlok törlése közben" # "Incorrect parameters" #: ../../../../ajax/ajax_getContent.php:42 #: ../../../../inc/ApiRequest.class.php:55 -#: ../../../../inc/CustomFieldDef.class.php:38 -#: ../../../../inc/CustomFields.class.php:48 +#: ../../../../inc/CustomFieldDef.class.php:45 +#: ../../../../inc/CustomFields.class.php:54 msgid "Parámetros incorrectos" msgstr "Helytelen paraméter" # "Confirm account import" -#: ../../../../ajax/ajax_migrate.php:55 +#: ../../../../ajax/ajax_migrate.php:56 msgid "Confirmar la importación de cuentas" msgstr "Fiók importálás megerõsítése" # "Connection username needed" -#: ../../../../ajax/ajax_migrate.php:57 +#: ../../../../ajax/ajax_migrate.php:58 msgid "Es necesario un usuario de conexión" msgstr "Kapcsolati felhasználónév szükséges" # "Connection password needed" -#: ../../../../ajax/ajax_migrate.php:59 +#: ../../../../ajax/ajax_migrate.php:60 msgid "Es necesaria una clave de conexión" msgstr "Kapcsolati jelszó szükséges" # "Database name needed" -#: ../../../../ajax/ajax_migrate.php:61 +#: ../../../../ajax/ajax_migrate.php:62 msgid "Es necesario el nombre de la BBDD" msgstr "Adatbázis név szükséges" # "Host name needed" -#: ../../../../ajax/ajax_migrate.php:63 +#: ../../../../ajax/ajax_migrate.php:64 msgid "Es necesario un nombre de host" msgstr "Host név szükséges" # "Password Recovery" -#: ../../../../ajax/ajax_passReset.php:47 #: ../../../../ajax/ajax_passReset.php:50 +#: ../../../../ajax/ajax_passReset.php:53 msgid "Recuperación de Clave" msgstr "Jelszó visszaállítás" # "Requested for" -#: ../../../../ajax/ajax_passReset.php:53 -#: ../../../../ajax/ajax_passReset.php:58 +#: ../../../../ajax/ajax_passReset.php:56 +#: ../../../../ajax/ajax_passReset.php:61 msgid "Solicitado para" msgstr "Kért, hogy" # "Request sent" -#: ../../../../ajax/ajax_passReset.php:55 -#: ../../../../ajax/ajax_sendRequest.php:75 +#: ../../../../ajax/ajax_passReset.php:58 +#: ../../../../ajax/ajax_sendRequest.php:76 msgid "Solicitud enviada" msgstr "Kérést elküldve" # "You will receive an email to complete the request in short." -#: ../../../../ajax/ajax_passReset.php:55 +#: ../../../../ajax/ajax_passReset.php:58 msgid "En breve recibirá un correo para completar la solicitud." msgstr "A kérés befejezéséhez email értesítõt küldünk" # "The request can't be done. Please contact with the administrator" -#: ../../../../ajax/ajax_passReset.php:60 +#: ../../../../ajax/ajax_passReset.php:63 msgid "No se ha podido realizar la solicitud. Consulte con el administrador." msgstr "" "A kérést nem lehet befejezni. Kérem lépjen kapcsolatba a rendszergazdával" # "Edit User Password" -#: ../../../../ajax/ajax_passReset.php:72 -#: ../../../../inc/UserBase.class.php:568 -#: ../../../../inc/UserUtil.class.php:662 +#: ../../../../ajax/ajax_passReset.php:73 +#: ../../../../inc/UserBase.class.php:570 +#: ../../../../inc/UserPass.class.php:127 msgid "Modificar Clave Usuario" msgstr "Felhasználó jelszavának szerkesztése" # "Login" -#: ../../../../ajax/ajax_passReset.php:72 -#: ../../../../inc/UserBase.class.php:568 -#: ../../../../inc/UserBase.class.php:592 -#: ../../../../inc/UserUtil.class.php:662 -#: ../../../../web/UsersMgmtC.class.php:88 +#: ../../../../ajax/ajax_passReset.php:73 +#: ../../../../inc/UserBase.class.php:570 +#: ../../../../inc/UserBase.class.php:594 +#: ../../../../inc/UserPass.class.php:127 +#: ../../../../web/UsersMgmtC.class.php:89 #: ../../../../inc/themes/classic/users.inc:21 #: ../../../../inc/themes/material-blue/users.inc:24 msgid "Login" msgstr "Belépés" # "The password is incorrect or not the same" -#: ../../../../ajax/ajax_passReset.php:80 +#: ../../../../ajax/ajax_passReset.php:81 msgid "La clave es incorrecta o no coincide" msgstr "A jelszó helytelen, vagy nem egyezik" # "Description is needed" -#: ../../../../ajax/ajax_sendRequest.php:48 +#: ../../../../ajax/ajax_sendRequest.php:49 msgid "Es necesaria una descripción" msgstr "Leírás szükséges" # "Request for Account Modification" -#: ../../../../ajax/ajax_sendRequest.php:61 +#: ../../../../ajax/ajax_sendRequest.php:62 msgid "Solicitud de Modificación de Cuenta" msgstr "Kérés fiók módosításához" # "Requester" -#: ../../../../ajax/ajax_sendRequest.php:62 +#: ../../../../ajax/ajax_sendRequest.php:63 msgid "Solicitante" msgstr "Kérõ" # "Account" -#: ../../../../ajax/ajax_sendRequest.php:63 -#: ../../../../ajax/ajax_viewpass.php:70 ../../../../inc/Account.class.php:165 -#: ../../../../inc/Account.class.php:219 ../../../../inc/Account.class.php:400 -#: ../../../../inc/Account.class.php:423 ../../../../inc/Account.class.php:665 +#: ../../../../ajax/ajax_sendRequest.php:64 +#: ../../../../ajax/ajax_viewpass.php:71 ../../../../inc/Account.class.php:181 +#: ../../../../inc/Account.class.php:236 ../../../../inc/Account.class.php:417 +#: ../../../../inc/Account.class.php:440 ../../../../inc/Account.class.php:682 #: ../../../../inc/Files.class.php:64 msgid "Cuenta" msgstr "Fiók" # "Customer" -#: ../../../../ajax/ajax_sendRequest.php:64 -#: ../../../../inc/Account.class.php:164 ../../../../inc/Account.class.php:218 -#: ../../../../inc/Account.class.php:399 ../../../../inc/Account.class.php:422 -#: ../../../../inc/Account.class.php:664 ../../../../inc/Customer.class.php:65 +#: ../../../../ajax/ajax_sendRequest.php:65 +#: ../../../../inc/Account.class.php:180 ../../../../inc/Account.class.php:235 +#: ../../../../inc/Account.class.php:416 ../../../../inc/Account.class.php:439 +#: ../../../../inc/Account.class.php:681 ../../../../inc/Customer.class.php:65 #: ../../../../inc/Customer.class.php:115 #: ../../../../inc/Customer.class.php:163 -#: ../../../../web/SearchC.class.php:286 +#: ../../../../web/SearchC.class.php:285 #: ../../../../inc/themes/classic/account.inc:23 #: ../../../../inc/themes/classic/editpass.inc:12 #: ../../../../inc/themes/classic/request.inc:9 @@ -1261,69 +1321,69 @@ msgstr "Fiók" #: ../../../../inc/themes/material-blue/account.inc:29 #: ../../../../inc/themes/material-blue/editpass.inc:13 #: ../../../../inc/themes/material-blue/request.inc:10 -#: ../../../../inc/themes/material-blue/search.inc:24 +#: ../../../../inc/themes/material-blue/search.inc:60 msgid "Cliente" msgstr "Ügyfél" # "Description" -#: ../../../../ajax/ajax_sendRequest.php:65 -#: ../../../../web/AccountsMgmtC.class.php:79 -#: ../../../../web/AccountsMgmtC.class.php:138 -#: ../../../../web/UsersMgmtC.class.php:187 +#: ../../../../ajax/ajax_sendRequest.php:66 +#: ../../../../web/AccountsMgmtC.class.php:80 +#: ../../../../web/AccountsMgmtC.class.php:139 +#: ../../../../web/UsersMgmtC.class.php:188 #: ../../../../inc/themes/classic/categories.inc:16 #: ../../../../inc/themes/classic/customers.inc:16 -#: ../../../../inc/themes/classic/eventlog.inc:31 +#: ../../../../inc/themes/classic/eventlog.inc:29 #: ../../../../inc/themes/classic/groups.inc:16 #: ../../../../inc/themes/material-blue/categories.inc:20 #: ../../../../inc/themes/material-blue/customers.inc:20 -#: ../../../../inc/themes/material-blue/eventlog.inc:30 +#: ../../../../inc/themes/material-blue/eventlog.inc:29 #: ../../../../inc/themes/material-blue/groups.inc:20 msgid "Descripción" msgstr "Leírás" # "Error on sending request" -#: ../../../../ajax/ajax_sendRequest.php:78 +#: ../../../../ajax/ajax_sendRequest.php:79 msgid "Error al enviar la solicitud" msgstr "Hiba a kérés küldése közben" # "Error on updating profile" -#: ../../../../ajax/ajax_userPrefsSave.php:70 -#: ../../../../ajax/ajax_userPrefsSave.php:103 +#: ../../../../ajax/ajax_userPrefsSave.php:73 +#: ../../../../ajax/ajax_userPrefsSave.php:106 #, fuzzy msgid "Error al actualizar preferencias" msgstr "Hiba a jelszó frissítése közben" # "Accounts updated:" -#: ../../../../ajax/ajax_userPrefsSave.php:80 -#: ../../../../ajax/ajax_userPrefsSave.php:106 +#: ../../../../ajax/ajax_userPrefsSave.php:83 +#: ../../../../ajax/ajax_userPrefsSave.php:109 #, fuzzy msgid "Preferencias actualizadas" msgstr "Fiókok frissítve" # "Master password mismatch" -#: ../../../../ajax/ajax_viewpass.php:54 +#: ../../../../ajax/ajax_viewpass.php:55 msgid "La clave maestra no coincide" msgstr "A mester jelszó nem egyezik" # "You don't have permission to access to this account" -#: ../../../../ajax/ajax_viewpass.php:58 +#: ../../../../ajax/ajax_viewpass.php:59 #: ../../../../inc/Controller.class.php:166 msgid "No tiene permisos para acceder a esta cuenta" msgstr "Nincs jogosultságod belépni ebbe a fiókba" # "View password" -#: ../../../../ajax/ajax_viewpass.php:68 ../../../../inc/Acl.class.php:133 +#: ../../../../ajax/ajax_viewpass.php:69 ../../../../inc/Acl.class.php:133 #: ../../../../inc/themes/classic/account.inc:382 #: ../../../../inc/themes/classic/profiles.inc:23 #: ../../../../inc/themes/classic/search.inc:109 -#: ../../../../inc/themes/material-blue/account.inc:422 +#: ../../../../inc/themes/material-blue/account.inc:424 #: ../../../../inc/themes/material-blue/profiles.inc:35 -#: ../../../../inc/themes/material-blue/search.inc:113 +#: ../../../../inc/themes/material-blue/search.inc:149 msgid "Ver Clave" msgstr "Jelszó" # "View account password" -#: ../../../../ajax/ajax_viewpass.php:79 ../../../../js/strings.js.php:73 +#: ../../../../ajax/ajax_viewpass.php:80 ../../../../js/strings.js.php:73 #, fuzzy msgid "Clave de Cuenta" msgstr "Fiók jelszavának szerkesztése" @@ -1342,11 +1402,19 @@ msgstr "Segítség :: GYIK :: Változások Listája" #: ../../../../inc/AccountSearch.class.php:28 ../../../../inc/Acl.class.php:29 #: ../../../../inc/Api.class.php:30 ../../../../inc/ApiRequest.class.php:28 #: ../../../../inc/ApiTokens.class.php:28 ../../../../inc/Auth.class.php:29 -#: ../../../../inc/Auth2FA.class.php:32 ../../../../inc/Backup.class.php:28 -#: ../../../../inc/Category.class.php:29 ../../../../inc/Common.class.php:28 -#: ../../../../inc/Config.class.php:28 ../../../../inc/Controller.class.php:31 -#: ../../../../inc/Crypt.class.php:28 ../../../../inc/CsvImport.class.php:28 +#: ../../../../inc/Auth2FA.class.php:33 ../../../../inc/Backup.class.php:28 +#: ../../../../inc/Base.php:26 ../../../../inc/Cache.class.php:28 +#: ../../../../inc/Category.class.php:29 ../../../../inc/Config.class.php:28 +#: ../../../../inc/ConfigDB.class.php:28 +#: ../../../../inc/ConfigInterface.class.php:28 +#: ../../../../inc/Controller.class.php:31 ../../../../inc/Crypt.class.php:28 +#: ../../../../inc/CryptMasterPass.class.php:28 +#: ../../../../inc/CryptPKI.class.php:28 +#: ../../../../inc/CsvImport.class.php:28 #: ../../../../inc/CsvImportBase.class.php:28 +#: ../../../../inc/CustomFieldDef.class.php:28 +#: ../../../../inc/CustomFields.class.php:28 +#: ../../../../inc/CustomFieldsBase.class.php:28 #: ../../../../inc/Customer.class.php:29 ../../../../inc/DB.class.php:28 #: ../../../../inc/DBConnectionFactory.class.php:30 #: ../../../../inc/FileImport.class.php:28 ../../../../inc/Files.class.php:29 @@ -1361,26 +1429,35 @@ msgstr "Segítség :: GYIK :: Változások Listája" #: ../../../../inc/Migrate.class.php:28 ../../../../inc/Minify.class.php:30 #: ../../../../inc/Profile.class.php:29 #: ../../../../inc/ProfileBase.class.php:28 -#: ../../../../inc/Request.class.php:110 ../../../../inc/Session.class.php:28 +#: ../../../../inc/Request.class.php:110 ../../../../inc/Response.class.php:28 +#: ../../../../inc/SPException.class.php:28 +#: ../../../../inc/Session.class.php:28 +#: ../../../../inc/SessionUtil.class.php:28 #: ../../../../inc/SyspassImport.class.php:28 -#: ../../../../inc/Themes.class.php:28 ../../../../inc/Upgrade.class.php:29 -#: ../../../../inc/User.class.php:28 ../../../../inc/UserLdap.class.php:28 +#: ../../../../inc/Template.class.php:27 ../../../../inc/Themes.class.php:28 +#: ../../../../inc/Upgrade.class.php:29 ../../../../inc/User.class.php:28 +#: ../../../../inc/UserAccounts.class.php:28 +#: ../../../../inc/UserBase.class.php:28 ../../../../inc/UserLdap.class.php:28 +#: ../../../../inc/UserMigrate.class.php:28 +#: ../../../../inc/UserPass.class.php:28 +#: ../../../../inc/UserPassRecover.class.php:28 #: ../../../../inc/UserPreferences.class.php:28 -#: ../../../../inc/UserUtil.class.php:28 ../../../../inc/Util.class.php:31 +#: ../../../../inc/UserUtil.class.php:28 ../../../../inc/Util.class.php:28 +#: ../../../../inc/XmlExport.class.php:28 #: ../../../../inc/XmlImport.class.php:28 #: ../../../../inc/XmlImportBase.class.php:28 -#: ../../../../web/AccountC.class.php:38 -#: ../../../../web/AccountsMgmtC.class.php:32 -#: ../../../../web/ConfigC.class.php:33 ../../../../web/EventlogC.class.php:28 -#: ../../../../web/SearchC.class.php:31 -#: ../../../../web/UsersMgmtC.class.php:39 -#: ../../../../web/UsersPrefsC.class.php:34 +#: ../../../../web/AccountC.class.php:41 +#: ../../../../web/AccountsMgmtC.class.php:33 +#: ../../../../web/ConfigC.class.php:35 ../../../../web/EventlogC.class.php:30 +#: ../../../../web/SearchC.class.php:33 +#: ../../../../web/UsersMgmtC.class.php:40 +#: ../../../../web/UsersPrefsC.class.php:35 msgid "No es posible acceder directamente a este archivo" msgstr "A fájl közvetlen elérése meghiúsult" # "Error on updating history" -#: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:185 -#: ../../../../inc/Account.class.php:634 +#: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:201 +#: ../../../../inc/Account.class.php:651 msgid "Error al actualizar el historial" msgstr "Hiba az elõzmények frissítése közben" @@ -1390,150 +1467,150 @@ msgid "Actualizar Cuenta" msgstr "Frissítés Számla" # "Error on updating secondary groups" -#: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:381 +#: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:398 msgid "Error al actualizar los grupos secundarios" msgstr "Hiba a másodlagos csoportok frissítése közben" # "Error on updating account's users" -#: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:389 +#: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:406 msgid "Error al actualizar los usuarios de la cuenta" msgstr "Hiba a fiók felhasználóinak frissítése közben" # "Restore Account" -#: ../../../../inc/Account.class.php:217 +#: ../../../../inc/Account.class.php:234 msgid "Restaurar Cuenta" msgstr "Restore Számla" # "Error on retrieving accounts' passwords" -#: ../../../../inc/Account.class.php:324 -#: ../../../../inc/AccountHistory.class.php:343 -#: ../../../../inc/AccountHistory.class.php:503 +#: ../../../../inc/Account.class.php:341 +#: ../../../../inc/AccountHistory.class.php:348 +#: ../../../../inc/AccountHistory.class.php:508 #, fuzzy msgid "No se pudieron obtener los datos de la cuenta" msgstr "Hiba a fiókok jelszavainak betöltése közben" # "New Account" -#: ../../../../inc/Account.class.php:398 ../../../../inc/Acl.class.php:129 -#: ../../../../web/AccountC.class.php:147 ../../../../web/MainC.class.php:183 +#: ../../../../inc/Account.class.php:415 ../../../../inc/Acl.class.php:129 +#: ../../../../web/AccountC.class.php:150 ../../../../web/MainC.class.php:183 msgid "Nueva Cuenta" msgstr "Új fiók" # "ERROR: Operation failed" -#: ../../../../inc/Account.class.php:416 +#: ../../../../inc/Account.class.php:433 msgid "ERROR: Error en la operación." msgstr "HIBA: A mûvelet meghiusult" # "Delete Account" -#: ../../../../inc/Account.class.php:421 ../../../../inc/Acl.class.php:134 -#: ../../../../web/AccountC.class.php:353 +#: ../../../../inc/Account.class.php:438 ../../../../inc/Acl.class.php:134 +#: ../../../../web/AccountC.class.php:356 #: ../../../../inc/themes/classic/account.inc:369 #: ../../../../inc/themes/classic/search.inc:137 -#: ../../../../inc/themes/material-blue/account.inc:416 -#: ../../../../inc/themes/material-blue/search.inc:140 +#: ../../../../inc/themes/material-blue/account.inc:418 +#: ../../../../inc/themes/material-blue/search.inc:178 msgid "Eliminar Cuenta" msgstr "Fiók törlése" # "Error on deleting account's groups" -#: ../../../../inc/Account.class.php:434 +#: ../../../../inc/Account.class.php:451 msgid "Error al eliminar grupos asociados a la cuenta" msgstr "Hiba a felhasználó csoportok törlése közben" # "Error on deleting account's users" -#: ../../../../inc/Account.class.php:438 +#: ../../../../inc/Account.class.php:455 msgid "Error al eliminar usuarios asociados a la cuenta" msgstr "Hiba a fiók felhasználók törlése közben" # "Error on deleting account's files" -#: ../../../../inc/Account.class.php:442 +#: ../../../../inc/Account.class.php:459 msgid "Error al eliminar archivos asociados a la cuenta" msgstr "Hiba a fiók fájljainak törlése közben" # "Start" -#: ../../../../inc/Account.class.php:496 -#: ../../../../inc/AccountHistory.class.php:124 +#: ../../../../inc/Account.class.php:513 +#: ../../../../inc/AccountHistory.class.php:129 #: ../../../../inc/XmlImport.class.php:62 msgid "Inicio" msgstr "Start" # "Error on encryption module" -#: ../../../../inc/Account.class.php:501 -#: ../../../../inc/AccountHistory.class.php:130 +#: ../../../../inc/Account.class.php:518 +#: ../../../../inc/AccountHistory.class.php:135 msgid "Error en el módulo de encriptación" msgstr "Titkosító modul hiba" # "Error on retrieving accounts' passwords" -#: ../../../../inc/Account.class.php:509 -#: ../../../../inc/AccountHistory.class.php:138 +#: ../../../../inc/Account.class.php:526 +#: ../../../../inc/AccountHistory.class.php:143 msgid "Error al obtener las claves de las cuentas" msgstr "Hiba a fiókok jelszavainak betöltése közben" # "View account password" -#: ../../../../inc/Account.class.php:525 -#: ../../../../inc/AccountHistory.class.php:160 +#: ../../../../inc/Account.class.php:542 +#: ../../../../inc/AccountHistory.class.php:165 #, fuzzy msgid "Clave de cuenta vacía" msgstr "Fiók jelszavának szerkesztése" -#: ../../../../inc/Account.class.php:530 -#: ../../../../inc/AccountHistory.class.php:165 +#: ../../../../inc/Account.class.php:547 +#: ../../../../inc/AccountHistory.class.php:170 #, fuzzy msgid "IV de encriptación incorrecto" msgstr "A mezõk száma helytelen" # "All accounts passwords will be encrypted again." -#: ../../../../inc/Account.class.php:539 -#: ../../../../inc/AccountHistory.class.php:174 +#: ../../../../inc/Account.class.php:556 +#: ../../../../inc/AccountHistory.class.php:179 #, fuzzy msgid "No es posible desencriptar la clave de la cuenta" msgstr "Minden fiók jelszó újra titkosítva lesz" # "Error on updating account's password" -#: ../../../../inc/Account.class.php:545 +#: ../../../../inc/Account.class.php:562 msgid "Fallo al actualizar la clave de la cuenta" msgstr "Hiba a fiók jelszavának frissítése közben" # "Accounts updated:" -#: ../../../../inc/Account.class.php:559 +#: ../../../../inc/Account.class.php:576 #, fuzzy msgid "Cuentas actualizadas" msgstr "Fiókok frissítve" # "End" -#: ../../../../inc/Account.class.php:564 -#: ../../../../inc/AccountHistory.class.php:199 -#: ../../../../inc/CustomFields.class.php:319 +#: ../../../../inc/Account.class.php:581 +#: ../../../../inc/AccountHistory.class.php:204 +#: ../../../../inc/CustomFields.class.php:325 msgid "Fin" msgstr "Vége" # "Update Password" -#: ../../../../inc/Account.class.php:663 +#: ../../../../inc/Account.class.php:680 msgid "Modificar Clave" msgstr "Jelszó frissítés" # "Error on retrieving accounts' passwords" -#: ../../../../inc/Account.class.php:698 +#: ../../../../inc/Account.class.php:715 #, fuzzy msgid "No se pudieron obtener los datos de las cuentas" msgstr "Hiba a fiókok jelszavainak betöltése közben" # "Update Master Password (H)" -#: ../../../../inc/AccountHistory.class.php:123 +#: ../../../../inc/AccountHistory.class.php:128 msgid "Actualizar Clave Maestra (H)" msgstr "Frissítse a mester jelszót (H)" # "Record's Master password mismatch" -#: ../../../../inc/AccountHistory.class.php:155 +#: ../../../../inc/AccountHistory.class.php:160 msgid "La clave maestra del registro no coincide" msgstr "A rekord mester jelszava nem egyezik" # "Error on updating history's master password" -#: ../../../../inc/AccountHistory.class.php:180 +#: ../../../../inc/AccountHistory.class.php:185 msgid "Fallo al actualizar la clave del histórico" msgstr "Hiba a elõzmények mester jelszavának frissítése közben" # "Records updated" -#: ../../../../inc/AccountHistory.class.php:194 -#: ../../../../inc/CustomFields.class.php:315 +#: ../../../../inc/AccountHistory.class.php:199 +#: ../../../../inc/CustomFields.class.php:321 #, fuzzy msgid "Registros actualizados" msgstr "Rekordok frissítve" @@ -1556,14 +1633,14 @@ msgid "Ver Cuenta" msgstr "Fiók adatok" # "Copy Account" -#: ../../../../inc/Acl.class.php:128 ../../../../web/AccountC.class.php:260 +#: ../../../../inc/Acl.class.php:128 ../../../../web/AccountC.class.php:263 #: ../../../../inc/themes/classic/search.inc:131 -#: ../../../../inc/themes/material-blue/search.inc:134 +#: ../../../../inc/themes/material-blue/search.inc:172 msgid "Copiar Cuenta" msgstr "Fiók másolása" # "Edit Account" -#: ../../../../inc/Acl.class.php:130 ../../../../web/AccountC.class.php:324 +#: ../../../../inc/Acl.class.php:130 ../../../../web/AccountC.class.php:327 msgid "Editar Cuenta" msgstr "Fiók módosítás" @@ -1644,8 +1721,8 @@ msgid "Gestión Perfiles" msgstr "Profil Menedzsment" # "Configuration" -#: ../../../../inc/Acl.class.php:146 ../../../../inc/Config.class.php:118 -#: ../../../../inc/Config.class.php:403 ../../../../web/MainC.class.php:201 +#: ../../../../inc/Acl.class.php:146 ../../../../inc/ConfigDB.class.php:91 +#: ../../../../inc/ConfigDB.class.php:119 ../../../../web/MainC.class.php:201 #: ../../../../inc/themes/classic/profiles.inc:57 #: ../../../../inc/themes/material-blue/profiles.inc:66 msgid "Configuración" @@ -1658,7 +1735,7 @@ msgid "Configuración General" msgstr "Általános beállítások" # "Description" -#: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:130 +#: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:132 #: ../../../../inc/themes/classic/profiles.inc:65 #: ../../../../inc/themes/material-blue/profiles.inc:77 #, fuzzy @@ -1666,7 +1743,7 @@ msgid "Encriptación" msgstr "A Crypto modul nem tölthetõ be" # "Backup" -#: ../../../../inc/Acl.class.php:149 ../../../../web/ConfigC.class.php:175 +#: ../../../../inc/Acl.class.php:149 ../../../../web/ConfigC.class.php:177 #: ../../../../inc/themes/classic/backup.inc:4 #: ../../../../inc/themes/material-blue/backup.inc:4 msgid "Copia de Seguridad" @@ -1744,7 +1821,7 @@ msgstr "Frissítés Számla" # "Delete File" #: ../../../../inc/ApiTokens.class.php:331 -#: ../../../../web/UsersMgmtC.class.php:421 +#: ../../../../web/UsersMgmtC.class.php:422 #, fuzzy msgid "Eliminar Autorización" msgstr "Profil törlése" @@ -1792,13 +1869,13 @@ msgstr "Error while doing backup in compatibility mode" # "Unable to create backup directory" #: ../../../../inc/Backup.class.php:223 -#: ../../../../inc/XmlExport.class.php:465 +#: ../../../../inc/XmlExport.class.php:467 msgid "No es posible crear el directorio de backups" msgstr "Arcív mappa létrehozása meghiusúlt" # "Check backup directory permissions" #: ../../../../inc/Backup.class.php:228 -#: ../../../../inc/XmlExport.class.php:470 +#: ../../../../inc/XmlExport.class.php:472 msgid "Compruebe los permisos del directorio de backups" msgstr "Ellenõrizze az archiválás mappa jogosultságait" @@ -1817,11 +1894,11 @@ msgstr "Hiba a kategória létrehozása közben" #: ../../../../inc/Category.class.php:83 #: ../../../../inc/Category.class.php:132 #: ../../../../inc/Category.class.php:182 -#: ../../../../web/SearchC.class.php:298 +#: ../../../../web/SearchC.class.php:297 #: ../../../../inc/themes/classic/account.inc:42 #: ../../../../inc/themes/classic/search.inc:53 #: ../../../../inc/themes/material-blue/account.inc:50 -#: ../../../../inc/themes/material-blue/search.inc:49 +#: ../../../../inc/themes/material-blue/search.inc:85 msgid "Categoría" msgstr "Kategória" @@ -1837,7 +1914,7 @@ msgstr "Hiba a kategória törlése közben" # "Delete Category" #: ../../../../inc/Category.class.php:132 -#: ../../../../web/AccountsMgmtC.class.php:101 +#: ../../../../web/AccountsMgmtC.class.php:102 msgid "Eliminar Categoría" msgstr "Kategória törlése" @@ -1851,28 +1928,29 @@ msgstr "Hiba a kategória frissítése közben" msgid "Modificar Categoría" msgstr "Kategória szerkesztés" -# "Update Configuration" -#: ../../../../inc/Config.class.php:118 ../../../../inc/Config.class.php:404 -msgid "Modificar configuración" -msgstr "Konfiguráció frissítése" - # "Unable to write on configuration file" -#: ../../../../inc/Config.class.php:276 +#: ../../../../inc/Config.class.php:148 msgid "No es posible escribir el archivo de configuración" msgstr "Nem lehet a konfigurációs fájlba írni" # "Please, check 'config' directory permissions" -#: ../../../../inc/Config.class.php:276 +#: ../../../../inc/Config.class.php:148 msgid "Compruebe los permisos del directorio \"config\"" msgstr "Kérem, ellenõrizze a 'config' mappa jogosultságait" +# "Update Configuration" +#: ../../../../inc/ConfigDB.class.php:91 +#: ../../../../inc/ConfigDB.class.php:120 +msgid "Modificar configuración" +msgstr "Konfiguráció frissítése" + # "Parameter" -#: ../../../../inc/Config.class.php:405 +#: ../../../../inc/ConfigDB.class.php:121 msgid "Parámetro" msgstr "Paraméter" # "Value" -#: ../../../../inc/Config.class.php:406 +#: ../../../../inc/ConfigDB.class.php:122 msgid "Valor" msgstr "Érték" @@ -1900,7 +1978,7 @@ msgid "No tiene permisos para realizar esta operación" msgstr "Nincs jogosultságod végrehajtani ezt a mûveletet" # "Warning" -#: ../../../../inc/Crypt.class.php:119 ../../../../inc/Email.class.php:146 +#: ../../../../inc/Crypt.class.php:119 ../../../../inc/Email.class.php:148 msgid "Aviso" msgstr "Figyelem" @@ -1920,14 +1998,14 @@ msgid "Error al generar datos cifrados" msgstr "Hiba a titkosítási folyamat közben" # "Unable to create customer" -#: ../../../../inc/CryptPKI.class.php:44 +#: ../../../../inc/CryptPKI.class.php:46 #, fuzzy msgid "No es posible generar las claves RSA" msgstr "Ügyfél létrehozása meghiusúlt" # "File doesn't exist" -#: ../../../../inc/CryptPKI.class.php:110 -#: ../../../../inc/CryptPKI.class.php:141 +#: ../../../../inc/CryptPKI.class.php:112 +#: ../../../../inc/CryptPKI.class.php:143 #, fuzzy msgid "El archivo de clave no existe" msgstr "A fájl nem létezik" @@ -1948,10 +2026,10 @@ msgstr "Kérem, ellenõrizze a CSV fájl kiterjesztését" #: ../../../../inc/CsvImportBase.class.php:140 #: ../../../../inc/CsvImportBase.class.php:145 #: ../../../../inc/Import.class.php:118 ../../../../inc/Import.class.php:124 -#: ../../../../inc/Migrate.class.php:349 +#: ../../../../inc/Migrate.class.php:348 #: ../../../../inc/XmlImport.class.php:62 #: ../../../../inc/XmlImport.class.php:63 -#: ../../../../web/ConfigC.class.php:197 +#: ../../../../web/ConfigC.class.php:199 msgid "Importar Cuentas" msgstr "Fiókok importálása" @@ -1972,45 +2050,81 @@ msgstr "Hiba a fiók importálása közben" msgid "Cuenta importada: %s" msgstr "Munkamenet idõ" -#: ../../../../inc/CustomFields.class.php:270 -#: ../../../../web/AccountsMgmtC.class.php:300 +#: ../../../../inc/CustomFields.class.php:276 +#: ../../../../web/AccountsMgmtC.class.php:301 #: ../../../../inc/themes/classic/profiles.inc:107 #: ../../../../inc/themes/material-blue/profiles.inc:124 msgid "Campos Personalizados" msgstr "" # "Error on updating profile" -#: ../../../../inc/CustomFields.class.php:279 +#: ../../../../inc/CustomFields.class.php:285 #, fuzzy msgid "Error al actualizar datos encriptados" msgstr "Hiba a jelszó frissítése közben" -#: ../../../../inc/CustomFields.class.php:283 +#: ../../../../inc/CustomFields.class.php:289 msgid "Actualizando datos encriptados" msgstr "" # "Records updated" -#: ../../../../inc/CustomFields.class.php:310 +#: ../../../../inc/CustomFields.class.php:316 #, fuzzy msgid "Registros no actualizados" msgstr "Rekordok frissítve" +# "Text to search" +#: ../../../../inc/CustomFieldsBase.class.php:86 +#, fuzzy +msgid "Texto" +msgstr "Keresendõ szöveg" + +# "Date Added" +#: ../../../../inc/CustomFieldsBase.class.php:88 +#, fuzzy +msgid "Fecha" +msgstr "Dátum hozzáadva" + +#: ../../../../inc/CustomFieldsBase.class.php:89 +msgid "Número" +msgstr "" + +# "Email" +#: ../../../../inc/CustomFieldsBase.class.php:90 +#: ../../../../inc/themes/classic/passreset.inc:22 +#: ../../../../inc/themes/classic/users.inc:61 +#: ../../../../inc/themes/material-blue/users.inc:71 +msgid "Email" +msgstr "Email" + +#: ../../../../inc/CustomFieldsBase.class.php:91 +msgid "Teléfono" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:92 +msgid "Link" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:93 +msgid "Color" +msgstr "" + # "Categories" -#: ../../../../inc/CustomFieldsBase.class.php:81 +#: ../../../../inc/CustomFieldsBase.class.php:107 #: ../../../../inc/themes/classic/profiles.inc:98 #: ../../../../inc/themes/material-blue/profiles.inc:114 msgid "Categorías" msgstr "Kategóriák" # "Customers" -#: ../../../../inc/CustomFieldsBase.class.php:82 +#: ../../../../inc/CustomFieldsBase.class.php:108 #: ../../../../inc/themes/classic/profiles.inc:103 #: ../../../../inc/themes/material-blue/profiles.inc:119 msgid "Clientes" msgstr "Ügyfél" # "Groups" -#: ../../../../inc/CustomFieldsBase.class.php:84 +#: ../../../../inc/CustomFieldsBase.class.php:110 #: ../../../../inc/themes/classic/account.inc:143 #: ../../../../inc/themes/classic/profiles.inc:89 #: ../../../../inc/themes/material-blue/account.inc:169 @@ -2050,7 +2164,7 @@ msgstr "Hiba az ügyfél törlése közben" # "Delete Customer" #: ../../../../inc/Customer.class.php:163 -#: ../../../../web/AccountsMgmtC.class.php:159 +#: ../../../../web/AccountsMgmtC.class.php:160 msgid "Eliminar Cliente" msgstr "Ügyfél törlése" @@ -2059,7 +2173,7 @@ msgstr "Ügyfél törlése" #: ../../../../inc/DBConnectionFactory.class.php:85 #: ../../../../inc/DBConnectionFactory.class.php:99 #: ../../../../inc/Installer.class.php:235 -#: ../../../../inc/Migrate.class.php:115 +#: ../../../../inc/Migrate.class.php:114 msgid "No es posible conectar con la BD" msgstr "Csatlakozás a DB-hez meghiusúlt" @@ -2067,18 +2181,18 @@ msgstr "Csatlakozás a DB-hez meghiusúlt" #: ../../../../inc/DBConnectionFactory.class.php:83 #: ../../../../inc/DBConnectionFactory.class.php:85 #: ../../../../inc/Installer.class.php:236 -#: ../../../../inc/Migrate.class.php:116 +#: ../../../../inc/Migrate.class.php:115 #, fuzzy msgid "Compruebe los datos de conexión" msgstr "Please, check connection parameters" # "N/A" -#: ../../../../inc/Email.class.php:59 ../../../../inc/UserUtil.class.php:565 +#: ../../../../inc/Email.class.php:59 ../../../../inc/UserUtil.class.php:182 msgid "N/D" msgstr "n.a." # "Action" -#: ../../../../inc/Email.class.php:60 ../../../../web/UsersMgmtC.class.php:392 +#: ../../../../inc/Email.class.php:60 ../../../../web/UsersMgmtC.class.php:393 #: ../../../../inc/themes/classic/tokens.inc:20 #: ../../../../inc/themes/material-blue/tokens.inc:20 msgid "Acción" @@ -2161,7 +2275,7 @@ msgstr "Hiba a fiók felhasználóinak frissítése közben" # "Delete Group" #: ../../../../inc/Groups.class.php:369 -#: ../../../../web/UsersMgmtC.class.php:209 +#: ../../../../web/UsersMgmtC.class.php:210 msgid "Eliminar Grupo" msgstr "Csoport törlése" @@ -2185,7 +2299,7 @@ msgstr "Kérem, ellenõrizze a CSV fájl kiterjesztését" # "Import finished" #: ../../../../inc/Import.class.php:124 ../../../../inc/Import.class.php:127 -#: ../../../../inc/Migrate.class.php:92 +#: ../../../../inc/Migrate.class.php:91 msgid "Importación finalizada" msgstr "Importálás kész" @@ -2492,37 +2606,37 @@ msgid "Error al buscar objetos en DN base" msgstr "Hiba a keresés közben" # "Error on searching group RDN" -#: ../../../../inc/Ldap.class.php:217 ../../../../inc/Ldap.class.php:222 -#: ../../../../inc/Ldap.class.php:229 ../../../../inc/Ldap.class.php:233 -#: ../../../../inc/Ldap.class.php:242 ../../../../inc/Ldap.class.php:246 +#: ../../../../inc/Ldap.class.php:212 ../../../../inc/Ldap.class.php:218 +#: ../../../../inc/Ldap.class.php:225 ../../../../inc/Ldap.class.php:230 +#: ../../../../inc/Ldap.class.php:235 ../../../../inc/Ldap.class.php:240 msgid "Error al buscar RDN de grupo" msgstr "Hiba az RDN csoport keresése közben" # "Error on searching user DN" -#: ../../../../inc/Ldap.class.php:295 ../../../../inc/Ldap.class.php:300 -#: ../../../../inc/Ldap.class.php:314 ../../../../inc/Ldap.class.php:318 +#: ../../../../inc/Ldap.class.php:289 ../../../../inc/Ldap.class.php:295 +#: ../../../../inc/Ldap.class.php:310 ../../../../inc/Ldap.class.php:315 msgid "Error al buscar el DN del usuario" msgstr "Hiba a DN felhasználó keresése közben" # "Error on searching user on LDAP" -#: ../../../../inc/Ldap.class.php:307 ../../../../inc/Ldap.class.php:311 +#: ../../../../inc/Ldap.class.php:302 ../../../../inc/Ldap.class.php:307 msgid "Error al localizar el usuario en LDAP" msgstr "Hiba az LDAP felhasználók keresése közben" # "Error on searching users group" -#: ../../../../inc/Ldap.class.php:392 ../../../../inc/Ldap.class.php:397 -#: ../../../../inc/LdapADS.class.php:99 ../../../../inc/LdapADS.class.php:104 +#: ../../../../inc/Ldap.class.php:384 ../../../../inc/Ldap.class.php:390 +#: ../../../../inc/LdapADS.class.php:103 ../../../../inc/LdapADS.class.php:108 msgid "Error al buscar el grupo de usuarios" msgstr "Hiba a keresése közben" # "User deleted" -#: ../../../../inc/Ldap.class.php:404 +#: ../../../../inc/Ldap.class.php:397 #, fuzzy msgid "Usuario verificado en grupo" msgstr "Csoportot használja a:" # "No group found with that name" -#: ../../../../inc/LdapADS.class.php:108 ../../../../inc/LdapADS.class.php:113 +#: ../../../../inc/LdapADS.class.php:112 ../../../../inc/LdapADS.class.php:117 msgid "No se encontró el grupo con ese nombre" msgstr "Nincs ilyen nevû csoport" @@ -2533,177 +2647,177 @@ msgstr "Események törlése" # "Clear event log" #: ../../../../inc/Log.class.php:88 -#: ../../../../inc/themes/classic/eventlog.inc:100 -#: ../../../../inc/themes/material-blue/eventlog.inc:100 +#: ../../../../inc/themes/classic/eventlog.inc:98 +#: ../../../../inc/themes/material-blue/eventlog.inc:99 msgid "Vaciar registro de eventos" msgstr "Esemény napló törlése" # "Missing parameters" -#: ../../../../inc/Migrate.class.php:52 +#: ../../../../inc/Migrate.class.php:51 msgid "Faltan parámetros" msgstr "Hiányzó paraméter" # "Incompatible version" -#: ../../../../inc/Migrate.class.php:149 +#: ../../../../inc/Migrate.class.php:148 msgid "La versión no es compatible" msgstr "Nem kompatibilis verzió" # "Please, update to last version of phpPMS" -#: ../../../../inc/Migrate.class.php:150 +#: ../../../../inc/Migrate.class.php:149 msgid "Actualice a la última versión de phpPMS" msgstr "Kérem, telepítse a phpPMS legfrissebb változatát" # "Error on retrieving configuration" -#: ../../../../inc/Migrate.class.php:168 +#: ../../../../inc/Migrate.class.php:167 msgid "Error al obtener la configuración" msgstr "Hiba a konfiguráció betöltése közben" # "Error on cleaning table" -#: ../../../../inc/Migrate.class.php:211 ../../../../inc/Migrate.class.php:224 +#: ../../../../inc/Migrate.class.php:210 ../../../../inc/Migrate.class.php:223 msgid "Error al vaciar tabla" msgstr "Hiba a tábla törlése közben" # "Current user is not application administrator" -#: ../../../../inc/Migrate.class.php:229 +#: ../../../../inc/Migrate.class.php:228 msgid "Usuario actual no es administrador de la aplicación" msgstr "A jelenlegi felhasználó nem rendszergazda" # "Unable to create customer" -#: ../../../../inc/Migrate.class.php:274 +#: ../../../../inc/Migrate.class.php:273 msgid "No es posible crear el cliente" msgstr "Ügyfél létrehozása meghiusúlt" # "Please, contact to developer" -#: ../../../../inc/Migrate.class.php:275 +#: ../../../../inc/Migrate.class.php:274 msgid "Contacte con el desarrollador" msgstr "Kérem, keresse a fejlesztõt" # "Import Customers" -#: ../../../../inc/Migrate.class.php:279 +#: ../../../../inc/Migrate.class.php:278 msgid "Importar Clientes" msgstr "Ügyfelek importálása" # "Records" -#: ../../../../inc/Migrate.class.php:281 ../../../../inc/Migrate.class.php:351 -#: ../../../../inc/Migrate.class.php:452 ../../../../inc/Migrate.class.php:525 -#: ../../../../inc/Migrate.class.php:633 ../../../../inc/Migrate.class.php:698 -#: ../../../../inc/Migrate.class.php:772 ../../../../inc/Migrate.class.php:862 -#: ../../../../inc/Migrate.class.php:933 +#: ../../../../inc/Migrate.class.php:280 ../../../../inc/Migrate.class.php:350 +#: ../../../../inc/Migrate.class.php:451 ../../../../inc/Migrate.class.php:524 +#: ../../../../inc/Migrate.class.php:632 ../../../../inc/Migrate.class.php:697 +#: ../../../../inc/Migrate.class.php:771 ../../../../inc/Migrate.class.php:861 +#: ../../../../inc/Migrate.class.php:932 msgid "Registros" msgstr "Rekordok" # "Error on retrieving customer" -#: ../../../../inc/Migrate.class.php:303 +#: ../../../../inc/Migrate.class.php:302 msgid "Error al obtener los clientes" msgstr "Hiba az ügyfél betöltése közben" # "Error on retrieving accounts" -#: ../../../../inc/Migrate.class.php:345 +#: ../../../../inc/Migrate.class.php:344 msgid "Error al obtener cuentas" msgstr "Hiba a fiókok betöltése közben" # "Customer not found" -#: ../../../../inc/Migrate.class.php:374 +#: ../../../../inc/Migrate.class.php:373 msgid "Cliente no encontrado" msgstr "Nincs ügyfél találat" # "Error on importing account" -#: ../../../../inc/Migrate.class.php:417 +#: ../../../../inc/Migrate.class.php:416 msgid "Error al migrar cuenta" msgstr "Hiba a fiók importálása közben" # "Error on retrieving accounts groups" -#: ../../../../inc/Migrate.class.php:446 +#: ../../../../inc/Migrate.class.php:445 msgid "Error al obtener los grupos de cuentas" msgstr "Hiba a fiók csoportok betöltése közben" # "Import Accounts Groups" -#: ../../../../inc/Migrate.class.php:450 +#: ../../../../inc/Migrate.class.php:449 msgid "Importar Grupos de Cuentas" msgstr "Fiók csoportok importálása" # "Error on accounts groups creation" -#: ../../../../inc/Migrate.class.php:472 +#: ../../../../inc/Migrate.class.php:471 msgid "Error al crear grupos de cuentas" msgstr "Hiba a fiók csoportok létrehozása közben" # "Error on retrieving accounts history" -#: ../../../../inc/Migrate.class.php:519 +#: ../../../../inc/Migrate.class.php:518 msgid "Error al obtener el historico de cuentas" msgstr "Hiba a fiókok elõzményeinek betöltése közben" # "Import Accounts History" -#: ../../../../inc/Migrate.class.php:523 +#: ../../../../inc/Migrate.class.php:522 msgid "Importar Histórico de Cuentas" msgstr "Fiók elõzmények importálása" # "Error on creating accounts history" -#: ../../../../inc/Migrate.class.php:592 +#: ../../../../inc/Migrate.class.php:591 msgid "Error al crear historico de cuentas" msgstr "Hiba a fiók elõzmények létrehozása közben" # "Error on retrieving accounts files" -#: ../../../../inc/Migrate.class.php:627 +#: ../../../../inc/Migrate.class.php:626 msgid "Error al obtener los archivos de cuentas" msgstr "Hiba a fiókok fájljainak betöltése közben" # "Import Accounts Files" -#: ../../../../inc/Migrate.class.php:631 +#: ../../../../inc/Migrate.class.php:630 msgid "Importar Archivos de Cuentas" msgstr "Fiók fájljainak importálása" # "Error on creating accounts files" -#: ../../../../inc/Migrate.class.php:663 +#: ../../../../inc/Migrate.class.php:662 msgid "Error al crear archivos de cuentas" msgstr "Hiba a fiók fájlok létrehozása közben" # "Error on retrieving accounts categories" -#: ../../../../inc/Migrate.class.php:692 +#: ../../../../inc/Migrate.class.php:691 msgid "Error al obtener las categorías de cuentas" msgstr "Hiba a fiók kategóriák elérése közben" # "Import Accounts Categories" -#: ../../../../inc/Migrate.class.php:696 +#: ../../../../inc/Migrate.class.php:695 msgid "Importar Categorías de Cuentas" msgstr "Fiók kategóriák importálása" # "Error on retrieving accounts categories" -#: ../../../../inc/Migrate.class.php:718 +#: ../../../../inc/Migrate.class.php:717 msgid "Error al crear categorías de cuentas" msgstr "Hiba a fiók kategóriák elérése közben" # "Error on retrieving users" -#: ../../../../inc/Migrate.class.php:766 +#: ../../../../inc/Migrate.class.php:765 msgid "Error al obtener los usuarios" msgstr "Hiba a felhasználók betöltése közben" # "Import Users" -#: ../../../../inc/Migrate.class.php:770 +#: ../../../../inc/Migrate.class.php:769 msgid "Importar Usuarios" msgstr "Felhasználók importálása" # "Error on creating users" -#: ../../../../inc/Migrate.class.php:827 +#: ../../../../inc/Migrate.class.php:826 msgid "Error al crear usuarios" msgstr "Hiba a profil létrehozása közben" # "Error on retrieving users groups" -#: ../../../../inc/Migrate.class.php:856 +#: ../../../../inc/Migrate.class.php:855 msgid "Error al obtener los grupos de usuarios" msgstr "Hiba a felhasználói csoportok betöltése közben" # "Import Users Groups" -#: ../../../../inc/Migrate.class.php:860 +#: ../../../../inc/Migrate.class.php:859 msgid "Importar Grupos de Usuarios" msgstr "Felhasználó csoportok importálása" # "Error on adding users groups" -#: ../../../../inc/Migrate.class.php:886 +#: ../../../../inc/Migrate.class.php:885 msgid "Error al crear los grupos de usuarios" msgstr "Hiba a felhasználói csoportok hozzáadás közben" # "Import Configuration" -#: ../../../../inc/Migrate.class.php:931 +#: ../../../../inc/Migrate.class.php:930 msgid "Importar Configuración" msgstr "Konfiguráció importálása" @@ -2740,7 +2854,7 @@ msgstr "Kettözõtt profil név" # "Delete Profile" #: ../../../../inc/ProfileBase.class.php:550 -#: ../../../../web/UsersMgmtC.class.php:274 +#: ../../../../web/UsersMgmtC.class.php:275 msgid "Eliminar Perfil" msgstr "Profil törlése" @@ -2775,19 +2889,19 @@ msgid "No hay cuentas para importar" msgstr "Nincsenek letölthetõ Archívumok" # "Unable to create customer" -#: ../../../../inc/Template.class.php:89 +#: ../../../../inc/Template.class.php:91 #, fuzzy, php-format msgid "No es posible obtener la plantilla \"%s\" : %s" msgstr "Ügyfél létrehozása meghiusúlt" # "Unable to create customer" -#: ../../../../inc/Template.class.php:128 +#: ../../../../inc/Template.class.php:130 #, fuzzy, php-format msgid "No es posible obtener la variable \"%s\"" msgstr "Ügyfél létrehozása meghiusúlt" # "Unable to create customer" -#: ../../../../inc/Template.class.php:171 +#: ../../../../inc/Template.class.php:173 #, fuzzy, php-format msgid "No es posible destruir la variable \"%s\"" msgstr "Ügyfél létrehozása meghiusúlt" @@ -2847,20 +2961,20 @@ msgid "Actualización de la Configuración realizada correctamente." msgstr "A beállítások elmentve" # Could not perform the password change request. -#: ../../../../inc/UserBase.class.php:386 -#: ../../../../inc/UserBase.class.php:530 +#: ../../../../inc/UserBase.class.php:388 +#: ../../../../inc/UserBase.class.php:532 #, fuzzy msgid "No se pudo realizar la petición de cambio de clave." msgstr "Nem sikerült végrehajtani a jelszócsere kérelmet." # "Edit User" -#: ../../../../inc/UserBase.class.php:525 +#: ../../../../inc/UserBase.class.php:527 msgid "Modificar Usuario" msgstr "Felhasználó módosítás" # "Delete User" -#: ../../../../inc/UserBase.class.php:592 -#: ../../../../web/UsersMgmtC.class.php:150 +#: ../../../../inc/UserBase.class.php:594 +#: ../../../../web/UsersMgmtC.class.php:151 msgid "Eliminar Usuario" msgstr "felhasználó törlése" @@ -2886,50 +3000,50 @@ msgid "Nuevo usuario de LDAP" msgstr "LDAP felhasználó" # "Edit Group" -#: ../../../../inc/UserUtil.class.php:703 +#: ../../../../inc/UserMigrate.class.php:113 #, fuzzy msgid "Migrar Grupos" msgstr "Csoportok" # "Error on adding users groups" -#: ../../../../inc/UserUtil.class.php:703 +#: ../../../../inc/UserMigrate.class.php:113 #, fuzzy msgid "Error al migrar grupo del usuario" msgstr "Hiba a DN felhasználó keresése közben" # Required PHP version >= 5.1 -#: ../../../../inc/Util.class.php:122 +#: ../../../../inc/Util.class.php:119 #, fuzzy msgid "Versión de PHP requerida >= " msgstr "Szükséges PHP verzió> = 5.1" # "Please update PHP version to run sysPass in a secure way" -#: ../../../../inc/Util.class.php:123 +#: ../../../../inc/Util.class.php:120 #, fuzzy msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" msgstr "Kérem, frissítse a PHP verziót, hogy a sysPass biztonságos legyen" # "Module unavilable" -#: ../../../../inc/Util.class.php:159 +#: ../../../../inc/Util.class.php:156 #: ../../../../inc/themes/classic/ldap.inc:212 #: ../../../../inc/themes/material-blue/ldap.inc:238 msgid "Módulo no disponible" msgstr "Modul nem elérhetõ" # "Without this module the application couldn't run correctly" -#: ../../../../inc/Util.class.php:160 +#: ../../../../inc/Util.class.php:157 msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "E modul nélkül az alkalmazás nem futtatható megfelelõen" # CSV/XML Import -#: ../../../../inc/XmlExport.class.php:125 +#: ../../../../inc/XmlExport.class.php:127 #, fuzzy msgid "Exportar XML" msgstr "Fiókok importálása" # "Error on creating user" -#: ../../../../inc/XmlExport.class.php:410 +#: ../../../../inc/XmlExport.class.php:412 #, fuzzy msgid "Error al crear el archivo XML" msgstr "Hiba az ügyfél létrehozása közben" @@ -2939,19 +3053,19 @@ msgid "Formato detectado" msgstr "" # Unable to process XML file -#: ../../../../inc/XmlImportBase.class.php:75 +#: ../../../../inc/XmlImportBase.class.php:80 #, fuzzy msgid "No es posible procesar el archivo XML" msgstr "Nem lehet a konfigurációs fájlba írni" # XML file not supported -#: ../../../../inc/XmlImportBase.class.php:103 +#: ../../../../inc/XmlImportBase.class.php:108 #, fuzzy msgid "Archivo XML no soportado" msgstr "Fájltípus nem engedélyezett" # Unable to detect the application the data was exported from -#: ../../../../inc/XmlImportBase.class.php:104 +#: ../../../../inc/XmlImportBase.class.php:109 #, fuzzy msgid "No es posible detectar la aplicación que exportó los datos" msgstr "Unable to detect the application the data was exported from" @@ -3177,9 +3291,9 @@ msgstr "Igen" #: ../../../../inc/themes/classic/account.inc:136 #: ../../../../inc/themes/classic/account.inc:167 #: ../../../../inc/themes/classic/account.inc:449 -#: ../../../../inc/themes/classic/encryption.inc:61 -#: ../../../../inc/themes/classic/encryption.inc:80 -#: ../../../../inc/themes/classic/import.inc:70 +#: ../../../../inc/themes/classic/encryption.inc:58 +#: ../../../../inc/themes/classic/encryption.inc:77 +#: ../../../../inc/themes/classic/import.inc:67 #: ../../../../inc/themes/classic/install.inc:99 #: ../../../../inc/themes/classic/preferences.inc:82 #: ../../../../inc/themes/classic/security.inc:26 @@ -3208,30 +3322,30 @@ msgid "Error al copiar al portapapeles" msgstr "Hiba a jelszó frissítése közben" # "Account Details" -#: ../../../../web/AccountC.class.php:381 -#: ../../../../web/AccountC.class.php:412 +#: ../../../../web/AccountC.class.php:384 +#: ../../../../web/AccountC.class.php:415 #: ../../../../inc/themes/classic/search.inc:45 #: ../../../../inc/themes/classic/search.inc:104 -#: ../../../../inc/themes/material-blue/search.inc:41 -#: ../../../../inc/themes/material-blue/search.inc:108 +#: ../../../../inc/themes/material-blue/search.inc:77 +#: ../../../../inc/themes/material-blue/search.inc:144 msgid "Detalles de Cuenta" msgstr "Fiók adatok" # "Edit Account Password" -#: ../../../../web/AccountC.class.php:469 +#: ../../../../web/AccountC.class.php:472 #: ../../../../inc/themes/classic/account.inc:396 -#: ../../../../inc/themes/material-blue/account.inc:433 +#: ../../../../inc/themes/material-blue/account.inc:435 msgid "Modificar Clave de Cuenta" msgstr "Fiók jelszavának szerkesztése" # "Name" -#: ../../../../web/AccountsMgmtC.class.php:79 -#: ../../../../web/AccountsMgmtC.class.php:138 -#: ../../../../web/AccountsMgmtC.class.php:266 -#: ../../../../web/SearchC.class.php:292 -#: ../../../../web/UsersMgmtC.class.php:87 -#: ../../../../web/UsersMgmtC.class.php:187 -#: ../../../../web/UsersMgmtC.class.php:245 +#: ../../../../web/AccountsMgmtC.class.php:80 +#: ../../../../web/AccountsMgmtC.class.php:139 +#: ../../../../web/AccountsMgmtC.class.php:267 +#: ../../../../web/SearchC.class.php:291 +#: ../../../../web/UsersMgmtC.class.php:88 +#: ../../../../web/UsersMgmtC.class.php:188 +#: ../../../../web/UsersMgmtC.class.php:246 #: ../../../../inc/themes/classic/account.inc:11 #: ../../../../inc/themes/classic/categories.inc:8 #: ../../../../inc/themes/classic/customers.inc:8 @@ -3252,22 +3366,22 @@ msgstr "Fiók jelszavának szerkesztése" #: ../../../../inc/themes/material-blue/info.inc:25 #: ../../../../inc/themes/material-blue/profiles.inc:8 #: ../../../../inc/themes/material-blue/request.inc:6 -#: ../../../../inc/themes/material-blue/search.inc:39 +#: ../../../../inc/themes/material-blue/search.inc:75 #: ../../../../inc/themes/material-blue/users.inc:8 msgid "Nombre" msgstr "Név" # "Categories management" -#: ../../../../web/AccountsMgmtC.class.php:115 +#: ../../../../web/AccountsMgmtC.class.php:116 msgid "Gestión de Categorías" msgstr "Kategória Menedzsment" # "Customers Management" -#: ../../../../web/AccountsMgmtC.class.php:172 +#: ../../../../web/AccountsMgmtC.class.php:173 msgid "Gestión de Clientes" msgstr "Ügyfél Menedzsment" -#: ../../../../web/AccountsMgmtC.class.php:266 +#: ../../../../web/AccountsMgmtC.class.php:267 #: ../../../../inc/themes/classic/customfields.inc:27 #: ../../../../inc/themes/material-blue/customfields.inc:30 #, fuzzy @@ -3275,52 +3389,52 @@ msgid "Módulo" msgstr "Modul nem elérhetõ" # "Delete Group" -#: ../../../../web/AccountsMgmtC.class.php:287 +#: ../../../../web/AccountsMgmtC.class.php:288 #, fuzzy msgid "Eliminar Campo" msgstr "Profil törlése" # "Last backup" -#: ../../../../web/ConfigC.class.php:166 +#: ../../../../web/ConfigC.class.php:168 msgid "Último backup" msgstr "Utolsó Archiválás" # "There're no backups available" -#: ../../../../web/ConfigC.class.php:166 +#: ../../../../web/ConfigC.class.php:168 msgid "No se encontraron backups" msgstr "Nincsenek elérhetõ Archívumok" # "Last Modification" -#: ../../../../web/ConfigC.class.php:173 +#: ../../../../web/ConfigC.class.php:175 #, fuzzy msgid "Última exportación" msgstr "Utolsó oldal" # "Unable to write on configuration file" -#: ../../../../web/ConfigC.class.php:173 +#: ../../../../web/ConfigC.class.php:175 #, fuzzy msgid "No se encontró archivo de exportación" msgstr "Nem lehet a konfigurációs fájlba írni" # "Configuration" -#: ../../../../web/ConfigC.class.php:218 +#: ../../../../web/ConfigC.class.php:220 #, fuzzy msgid "Información" msgstr "Mutat néhány információt az alkalmazásról és a teljesítményrõl" # "Event log cleared" -#: ../../../../web/EventlogC.class.php:93 +#: ../../../../web/EventlogC.class.php:95 msgid "Registro de eventos vaciado" msgstr "Esemény napló törölve" # "Error on clearing event log" -#: ../../../../web/EventlogC.class.php:95 +#: ../../../../web/EventlogC.class.php:97 msgid "Error al vaciar el registro de eventos" msgstr "Hiba az esemény napló törlése közben" # "Application Admin" #: ../../../../web/MainC.class.php:159 -#: ../../../../web/UsersMgmtC.class.php:100 +#: ../../../../web/UsersMgmtC.class.php:101 msgid "Admin Aplicación" msgstr "Admin alkalmazás" @@ -3329,21 +3443,22 @@ msgstr "Admin alkalmazás" msgid "Buscar" msgstr "Keresés" -# "Users Management" +# "Access user" #: ../../../../web/MainC.class.php:189 -#: ../../../../web/UsersMgmtC.class.php:163 -msgid "Gestión de Usuarios" -msgstr "Felhasználó Menedzsment" +#, fuzzy +msgid "Usuarios y Accesos" +msgstr "Felhasználó elérése" -# "Customer and Categories management" +# "Delete File" #: ../../../../web/MainC.class.php:195 -msgid "Gestión de Clientes y Categorías" -msgstr "Ügyfél és Kategória Menedzsment" +#, fuzzy +msgid "Elementos y Personalización" +msgstr "Profil törlése" # "Event Log" #: ../../../../web/MainC.class.php:207 -#: ../../../../inc/themes/classic/eventlog.inc:4 -#: ../../../../inc/themes/material-blue/eventlog.inc:3 +#: ../../../../inc/themes/classic/eventlog.inc:2 +#: ../../../../inc/themes/material-blue/eventlog.inc:2 msgid "Registro de Eventos" msgstr "Esemény napló" @@ -3417,75 +3532,75 @@ msgid "Mejoras de seguridad en XSS e inyección SQL" msgstr "" # "This PHP version is vulnerable to NULL Byte attack CVE-2006-7243)" -#: ../../../../web/MainC.class.php:284 +#: ../../../../web/MainC.class.php:283 msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" msgstr "" "Ez a PHP verzió sérülékeny a NULL Byte támadásokkal szemben (CVE-2006-7243)" # "Please update PHP version to run sysPass in a secure way" -#: ../../../../web/MainC.class.php:285 +#: ../../../../web/MainC.class.php:284 msgid "Actualice la versión de PHP para usar sysPass de forma segura" msgstr "Kérem, frissítse a PHP verziót, hogy a sysPass biztonságos legyen" # "Cannot find random number generator." -#: ../../../../web/MainC.class.php:292 +#: ../../../../web/MainC.class.php:291 msgid "No se encuentra el generador de números aleatorios." msgstr "Nem találom a véletlen szám generátort" # "Without this function, an attacker could take your account on password reset." -#: ../../../../web/MainC.class.php:293 +#: ../../../../web/MainC.class.php:292 msgid "" "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" msgstr "E funkció nélkül egy támadó alapállapotba állíthatja jelszavát" # "Installation finished" -#: ../../../../web/MainC.class.php:312 +#: ../../../../web/MainC.class.php:311 msgid "Instalación finalizada" msgstr "A telepítés befejezõdött" # "Click here to access" -#: ../../../../web/MainC.class.php:313 +#: ../../../../web/MainC.class.php:312 msgid "Pulse aquí para acceder" msgstr "" "Kattinst here a " "bejelentkezéshez" # "Download new version" -#: ../../../../web/MainC.class.php:410 +#: ../../../../web/MainC.class.php:409 msgid "Descargar nueva versión" msgstr "Új verzió letöltése" -#: ../../../../web/MainC.class.php:421 +#: ../../../../web/MainC.class.php:420 msgid "Avisos de sysPass" msgstr "" # "Sort by Customer" -#: ../../../../web/SearchC.class.php:285 +#: ../../../../web/SearchC.class.php:284 msgid "Ordenar por Cliente" msgstr "Rendezés Ügyfél szerint" # "Sort by Name" -#: ../../../../web/SearchC.class.php:291 +#: ../../../../web/SearchC.class.php:290 msgid "Ordenar por Nombre" msgstr "Rendezés Név szerint" # "Sort by Category" -#: ../../../../web/SearchC.class.php:297 +#: ../../../../web/SearchC.class.php:296 msgid "Ordenar por Categoría" msgstr "Rendezés Kategória szerint" # "Sort by Username" -#: ../../../../web/SearchC.class.php:303 +#: ../../../../web/SearchC.class.php:302 msgid "Ordenar por Usuario" msgstr "Rendezés Felhasználónév szerint" # "Sort by URL / IP" -#: ../../../../web/SearchC.class.php:309 +#: ../../../../web/SearchC.class.php:308 msgid "Ordenar por URL / IP" msgstr "Rendezés URL / IP szerint" # "URL / IP" -#: ../../../../web/SearchC.class.php:310 +#: ../../../../web/SearchC.class.php:309 #: ../../../../inc/themes/classic/account.inc:61 #: ../../../../inc/themes/classic/editpass.inc:16 #: ../../../../inc/themes/classic/request.inc:13 @@ -3493,29 +3608,29 @@ msgstr "Rendezés URL / IP szerint" #: ../../../../inc/themes/material-blue/account.inc:69 #: ../../../../inc/themes/material-blue/editpass.inc:17 #: ../../../../inc/themes/material-blue/request.inc:15 -#: ../../../../inc/themes/material-blue/search.inc:62 +#: ../../../../inc/themes/material-blue/search.inc:98 msgid "URL / IP" msgstr "URL / IP" # "Properties" -#: ../../../../web/UsersMgmtC.class.php:91 +#: ../../../../web/UsersMgmtC.class.php:92 msgid "Propiedades" msgstr "Beállítások" # "Account Admin" -#: ../../../../web/UsersMgmtC.class.php:104 +#: ../../../../web/UsersMgmtC.class.php:105 msgid "Admin Cuentas" msgstr "Admin Fiók" # "LDAP User" -#: ../../../../web/UsersMgmtC.class.php:108 +#: ../../../../web/UsersMgmtC.class.php:109 #: ../../../../inc/themes/classic/users.inc:28 #: ../../../../inc/themes/material-blue/users.inc:34 msgid "Usuario de LDAP" msgstr "LDAP felhasználó" # "Disabled" -#: ../../../../web/UsersMgmtC.class.php:112 +#: ../../../../web/UsersMgmtC.class.php:113 #: ../../../../inc/themes/classic/users.inc:113 #: ../../../../inc/themes/material-blue/users.inc:151 #: ../../../../inc/themes/material-blue/users.inc:154 @@ -3523,60 +3638,65 @@ msgid "Deshabilitado" msgstr "Inaktív" # "View user details" -#: ../../../../web/UsersMgmtC.class.php:129 +#: ../../../../web/UsersMgmtC.class.php:130 msgid "Ver Detalles de Usuario" msgstr "Felhasználó részletek" # "Change user password" -#: ../../../../web/UsersMgmtC.class.php:143 +#: ../../../../web/UsersMgmtC.class.php:144 msgid "Cambiar Clave de Usuario" msgstr "Változás felhasználói jelszó" +# "Users Management" +#: ../../../../web/UsersMgmtC.class.php:164 +msgid "Gestión de Usuarios" +msgstr "Felhasználó Menedzsment" + # "Groups Management" -#: ../../../../web/UsersMgmtC.class.php:222 +#: ../../../../web/UsersMgmtC.class.php:223 msgid "Gestión de Grupos" msgstr "Csoport Menedzsment" # "View user details" -#: ../../../../web/UsersMgmtC.class.php:260 +#: ../../../../web/UsersMgmtC.class.php:261 #, fuzzy msgid "Ver Detalles de Perfil" msgstr "Felhasználó részletek" # "Profiles Management" -#: ../../../../web/UsersMgmtC.class.php:287 +#: ../../../../web/UsersMgmtC.class.php:288 msgid "Gestión de Perfiles" msgstr "Profil Menedzsment" -#: ../../../../web/UsersMgmtC.class.php:407 +#: ../../../../web/UsersMgmtC.class.php:408 #, fuzzy msgid "Ver token de Autorización" msgstr "Felhasználó részletek" # "Users Management" -#: ../../../../web/UsersMgmtC.class.php:434 +#: ../../../../web/UsersMgmtC.class.php:435 #, fuzzy msgid "Gestión de Autorizaciones API" msgstr "Fálj menedzsment inaktív" # "Configuration updated" -#: ../../../../web/UsersMgmtC.class.php:456 +#: ../../../../web/UsersMgmtC.class.php:457 #, fuzzy msgid "Token de autorización visualizado" msgstr "Beállítások frissítve" -#: ../../../../web/UsersMgmtC.class.php:457 +#: ../../../../web/UsersMgmtC.class.php:458 msgid "Autorizaciones" msgstr "" # "Security" -#: ../../../../web/UsersPrefsC.class.php:92 +#: ../../../../web/UsersPrefsC.class.php:93 #: ../../../../inc/themes/classic/mail.inc:63 #: ../../../../inc/themes/material-blue/mail.inc:86 msgid "Seguridad" msgstr "Biztonság" -#: ../../../../web/UsersPrefsC.class.php:115 +#: ../../../../web/UsersPrefsC.class.php:117 #: ../../../../inc/themes/classic/sessionbar.inc:9 msgid "Preferencias" msgstr "" @@ -3640,7 +3760,7 @@ msgstr "Jelszó (ismét)" #: ../../../../inc/themes/classic/search.inc:82 #: ../../../../inc/themes/classic/users.inc:91 #: ../../../../inc/themes/material-blue/account.inc:119 -#: ../../../../inc/themes/material-blue/search.inc:82 +#: ../../../../inc/themes/material-blue/search.inc:118 #: ../../../../inc/themes/material-blue/users.inc:116 msgid "Notas" msgstr "Jegyzetek" @@ -3655,7 +3775,7 @@ msgstr "Jegyzetek a fiókokról" # "Permissions" #: ../../../../inc/themes/classic/account.inc:108 #: ../../../../inc/themes/material-blue/account.inc:133 -#: ../../../../inc/themes/material-blue/search.inc:75 +#: ../../../../inc/themes/material-blue/search.inc:111 msgid "Permisos" msgstr "Jofosultságok" @@ -3709,71 +3829,71 @@ msgstr "által" # "Visits" #: ../../../../inc/themes/classic/account.inc:289 -#: ../../../../inc/themes/material-blue/account.inc:336 +#: ../../../../inc/themes/material-blue/account.inc:338 msgid "Visitas" msgstr "Látogatók" # "Date Added" #: ../../../../inc/themes/classic/account.inc:293 -#: ../../../../inc/themes/material-blue/account.inc:340 +#: ../../../../inc/themes/material-blue/account.inc:342 msgid "Fecha Alta" msgstr "Dátum hozzáadva" # "Creator" #: ../../../../inc/themes/classic/account.inc:297 -#: ../../../../inc/themes/material-blue/account.inc:344 +#: ../../../../inc/themes/material-blue/account.inc:346 msgid "Creador" msgstr "Készítõ" # "Main Group" #: ../../../../inc/themes/classic/account.inc:301 #: ../../../../inc/themes/material-blue/account.inc:203 -#: ../../../../inc/themes/material-blue/account.inc:348 +#: ../../../../inc/themes/material-blue/account.inc:350 msgid "Grupo Principal" msgstr "Fõcsoport" # "Secondary Users" #: ../../../../inc/themes/classic/account.inc:306 -#: ../../../../inc/themes/material-blue/account.inc:353 +#: ../../../../inc/themes/material-blue/account.inc:355 msgid "Usuarios Secundarios" msgstr "Másodlagos felhasználók" # "Secondary Groups" #: ../../../../inc/themes/classic/account.inc:325 -#: ../../../../inc/themes/material-blue/account.inc:372 +#: ../../../../inc/themes/material-blue/account.inc:374 msgid "Grupos Secundarios" msgstr "Másodlagos csoportok" # "Date Modified" #: ../../../../inc/themes/classic/account.inc:345 -#: ../../../../inc/themes/material-blue/account.inc:392 +#: ../../../../inc/themes/material-blue/account.inc:394 msgid "Fecha Edición" msgstr "Adat módosítva" # "Editor" #: ../../../../inc/themes/classic/account.inc:349 -#: ../../../../inc/themes/material-blue/account.inc:396 +#: ../../../../inc/themes/material-blue/account.inc:398 msgid "Editor" msgstr "Szerkesztõ" # "Restore account from this point" #: ../../../../inc/themes/classic/account.inc:376 -#: ../../../../inc/themes/material-blue/account.inc:459 +#: ../../../../inc/themes/material-blue/account.inc:461 msgid "Restaurar cuenta desde este punto" msgstr "Restore véve ezen a ponton" # Copy Password to Clipboard #: ../../../../inc/themes/classic/account.inc:388 #: ../../../../inc/themes/classic/search.inc:113 -#: ../../../../inc/themes/material-blue/account.inc:426 -#: ../../../../inc/themes/material-blue/search.inc:117 +#: ../../../../inc/themes/material-blue/account.inc:428 +#: ../../../../inc/themes/material-blue/search.inc:154 #, fuzzy msgid "Copiar Clave en Portapapeles" msgstr "A jelszó nem lehet üres" # "View Current" #: ../../../../inc/themes/classic/account.inc:403 -#: ../../../../inc/themes/material-blue/account.inc:439 +#: ../../../../inc/themes/material-blue/account.inc:441 msgid "Ver Actual" msgstr "Általános" @@ -3789,16 +3909,16 @@ msgstr "Vissza" # "Edit Account" #: ../../../../inc/themes/classic/account.inc:415 #: ../../../../inc/themes/classic/search.inc:125 -#: ../../../../inc/themes/material-blue/account.inc:449 -#: ../../../../inc/themes/material-blue/search.inc:128 +#: ../../../../inc/themes/material-blue/account.inc:451 +#: ../../../../inc/themes/material-blue/search.inc:166 msgid "Modificar Cuenta" msgstr "Fiók módosítás" # "Request Modification" #: ../../../../inc/themes/classic/account.inc:420 #: ../../../../inc/themes/classic/search.inc:146 -#: ../../../../inc/themes/material-blue/account.inc:453 -#: ../../../../inc/themes/material-blue/search.inc:148 +#: ../../../../inc/themes/material-blue/account.inc:455 +#: ../../../../inc/themes/material-blue/search.inc:187 msgid "Solicitar Modificación" msgstr "Kérés módosítás" @@ -3809,7 +3929,7 @@ msgstr "Kérés módosítás" #: ../../../../inc/themes/classic/customers.inc:62 #: ../../../../inc/themes/classic/customfields.inc:63 #: ../../../../inc/themes/classic/editpass.inc:50 -#: ../../../../inc/themes/classic/encryption.inc:102 +#: ../../../../inc/themes/classic/encryption.inc:99 #: ../../../../inc/themes/classic/groups.inc:77 #: ../../../../inc/themes/classic/ldap.inc:229 #: ../../../../inc/themes/classic/mail.inc:107 @@ -3820,7 +3940,7 @@ msgstr "Kérés módosítás" #: ../../../../inc/themes/classic/users.inc:189 #: ../../../../inc/themes/classic/userspass.inc:35 #: ../../../../inc/themes/classic/wiki.inc:110 -#: ../../../../inc/themes/material-blue/account.inc:465 +#: ../../../../inc/themes/material-blue/account.inc:467 #: ../../../../inc/themes/material-blue/categories.inc:72 #: ../../../../inc/themes/material-blue/config.inc:425 #: ../../../../inc/themes/material-blue/customers.inc:73 @@ -3829,7 +3949,7 @@ msgstr "Kérés módosítás" #: ../../../../inc/themes/material-blue/groups.inc:88 #: ../../../../inc/themes/material-blue/ldap.inc:257 #: ../../../../inc/themes/material-blue/mail.inc:145 -#: ../../../../inc/themes/material-blue/preferences.inc:101 +#: ../../../../inc/themes/material-blue/preferences.inc:117 #: ../../../../inc/themes/material-blue/profiles.inc:177 #: ../../../../inc/themes/material-blue/security.inc:61 #: ../../../../inc/themes/material-blue/tokens.inc:63 @@ -3841,13 +3961,13 @@ msgstr "Mentés" # "Select secondary groups" #: ../../../../inc/themes/classic/account.inc:437 -#: ../../../../inc/themes/material-blue/account.inc:475 +#: ../../../../inc/themes/material-blue/account.inc:477 msgid "Seleccionar grupos secundarios" msgstr " Válassz másodlagos csoportot" # "Select users" #: ../../../../inc/themes/classic/account.inc:441 -#: ../../../../inc/themes/material-blue/account.inc:478 +#: ../../../../inc/themes/material-blue/account.inc:480 msgid "Seleccionar usuarios" msgstr "Válassz felhasználót" @@ -3877,17 +3997,17 @@ msgstr "Nincsenek letölthetõ Archívumok" #: ../../../../inc/themes/classic/backup.inc:49 #: ../../../../inc/themes/classic/backup.inc:113 #: ../../../../inc/themes/classic/backup.inc:117 -#: ../../../../inc/themes/classic/encryption.inc:93 -#: ../../../../inc/themes/classic/encryption.inc:97 -#: ../../../../inc/themes/classic/encryption.inc:162 -#: ../../../../inc/themes/classic/encryption.inc:166 -#: ../../../../inc/themes/classic/import.inc:15 -#: ../../../../inc/themes/classic/import.inc:37 -#: ../../../../inc/themes/classic/import.inc:51 -#: ../../../../inc/themes/classic/import.inc:97 -#: ../../../../inc/themes/classic/import.inc:118 -#: ../../../../inc/themes/classic/import.inc:170 -#: ../../../../inc/themes/classic/import.inc:174 +#: ../../../../inc/themes/classic/encryption.inc:90 +#: ../../../../inc/themes/classic/encryption.inc:94 +#: ../../../../inc/themes/classic/encryption.inc:159 +#: ../../../../inc/themes/classic/encryption.inc:163 +#: ../../../../inc/themes/classic/import.inc:12 +#: ../../../../inc/themes/classic/import.inc:34 +#: ../../../../inc/themes/classic/import.inc:48 +#: ../../../../inc/themes/classic/import.inc:94 +#: ../../../../inc/themes/classic/import.inc:115 +#: ../../../../inc/themes/classic/import.inc:167 +#: ../../../../inc/themes/classic/import.inc:171 #: ../../../../inc/themes/classic/js-common.inc:13 #: ../../../../inc/themes/classic/ldap.inc:13 #: ../../../../inc/themes/classic/ldap.inc:33 @@ -3906,12 +4026,12 @@ msgstr "Nincsenek letölthetõ Archívumok" #: ../../../../inc/themes/material-blue/backup.inc:51 #: ../../../../inc/themes/material-blue/backup.inc:129 #: ../../../../inc/themes/material-blue/backup.inc:133 -#: ../../../../inc/themes/material-blue/encryption.inc:107 -#: ../../../../inc/themes/material-blue/encryption.inc:111 -#: ../../../../inc/themes/material-blue/encryption.inc:181 -#: ../../../../inc/themes/material-blue/encryption.inc:185 -#: ../../../../inc/themes/material-blue/import.inc:99 -#: ../../../../inc/themes/material-blue/import.inc:103 +#: ../../../../inc/themes/material-blue/encryption.inc:104 +#: ../../../../inc/themes/material-blue/encryption.inc:108 +#: ../../../../inc/themes/material-blue/encryption.inc:178 +#: ../../../../inc/themes/material-blue/encryption.inc:182 +#: ../../../../inc/themes/material-blue/import.inc:96 +#: ../../../../inc/themes/material-blue/import.inc:100 #: ../../../../inc/themes/material-blue/js-common.inc:11 #, fuzzy msgid "Ayuda" @@ -4304,13 +4424,13 @@ msgid "Obligatorio" msgstr "" # "Master Password" -#: ../../../../inc/themes/classic/encryption.inc:8 +#: ../../../../inc/themes/classic/encryption.inc:5 #: ../../../../inc/themes/classic/install.inc:46 #: ../../../../inc/themes/classic/install.inc:50 #: ../../../../inc/themes/classic/install.inc:51 #: ../../../../inc/themes/classic/login.inc:15 #: ../../../../inc/themes/classic/login.inc:27 -#: ../../../../inc/themes/material-blue/encryption.inc:8 +#: ../../../../inc/themes/material-blue/encryption.inc:5 #: ../../../../inc/themes/material-blue/install.inc:51 #: ../../../../inc/themes/material-blue/install.inc:58 #: ../../../../inc/themes/material-blue/login.inc:26 @@ -4319,127 +4439,127 @@ msgid "Clave Maestra" msgstr "Mester jelszó" # "Last Change" -#: ../../../../inc/themes/classic/encryption.inc:16 -#: ../../../../inc/themes/classic/encryption.inc:116 -#: ../../../../inc/themes/material-blue/encryption.inc:16 -#: ../../../../inc/themes/material-blue/encryption.inc:131 +#: ../../../../inc/themes/classic/encryption.inc:13 +#: ../../../../inc/themes/classic/encryption.inc:113 +#: ../../../../inc/themes/material-blue/encryption.inc:13 +#: ../../../../inc/themes/material-blue/encryption.inc:128 msgid "Último cambio" msgstr "Utolsó változtatás" # "Current Master Password" -#: ../../../../inc/themes/classic/encryption.inc:25 -#: ../../../../inc/themes/material-blue/encryption.inc:25 -#: ../../../../inc/themes/material-blue/encryption.inc:31 +#: ../../../../inc/themes/classic/encryption.inc:22 +#: ../../../../inc/themes/material-blue/encryption.inc:22 +#: ../../../../inc/themes/material-blue/encryption.inc:28 msgid "Clave Maestra actual" msgstr "Jelenlegki mester jelszó" # "New Master Password" -#: ../../../../inc/themes/classic/encryption.inc:34 -#: ../../../../inc/themes/material-blue/encryption.inc:37 -#: ../../../../inc/themes/material-blue/encryption.inc:43 +#: ../../../../inc/themes/classic/encryption.inc:31 +#: ../../../../inc/themes/material-blue/encryption.inc:34 +#: ../../../../inc/themes/material-blue/encryption.inc:40 msgid "Nueva Clave Maestra" msgstr "Új mester jelszó" # "New Master Password (repeat)" -#: ../../../../inc/themes/classic/encryption.inc:43 -#: ../../../../inc/themes/material-blue/encryption.inc:49 -#: ../../../../inc/themes/material-blue/encryption.inc:55 +#: ../../../../inc/themes/classic/encryption.inc:40 +#: ../../../../inc/themes/material-blue/encryption.inc:46 +#: ../../../../inc/themes/material-blue/encryption.inc:52 msgid "Nueva Clave Maestra (repetir)" msgstr "Új mester jelszó (megerõsítés)" # "Don't modify accounts" -#: ../../../../inc/themes/classic/encryption.inc:51 -#: ../../../../inc/themes/material-blue/encryption.inc:61 +#: ../../../../inc/themes/classic/encryption.inc:48 +#: ../../../../inc/themes/material-blue/encryption.inc:58 msgid "No modificar cuentas" msgstr "Ne módosítsa a fiókokat" # "Sets a new master password without re-encrypt the accounts." -#: ../../../../inc/themes/classic/encryption.inc:56 -#: ../../../../inc/themes/material-blue/encryption.inc:66 +#: ../../../../inc/themes/classic/encryption.inc:53 +#: ../../../../inc/themes/material-blue/encryption.inc:63 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "Új mester jelszó beállítása a fiók újratitkosítása nélkül" # "Confirm Change" -#: ../../../../inc/themes/classic/encryption.inc:67 -#: ../../../../inc/themes/material-blue/encryption.inc:79 +#: ../../../../inc/themes/classic/encryption.inc:64 +#: ../../../../inc/themes/material-blue/encryption.inc:76 msgid "Confirmar cambio" msgstr "Változás megerõsítése" # "Warning" +#: ../../../../inc/themes/classic/encryption.inc:67 #: ../../../../inc/themes/classic/encryption.inc:70 #: ../../../../inc/themes/classic/encryption.inc:73 -#: ../../../../inc/themes/classic/encryption.inc:76 -#: ../../../../inc/themes/classic/import.inc:67 +#: ../../../../inc/themes/classic/import.inc:64 #: ../../../../inc/themes/classic/security.inc:43 msgid "Atención" msgstr "Figyelem" # "You should save the new password on a secure place" -#: ../../../../inc/themes/classic/encryption.inc:71 -#: ../../../../inc/themes/material-blue/encryption.inc:83 +#: ../../../../inc/themes/classic/encryption.inc:68 +#: ../../../../inc/themes/material-blue/encryption.inc:80 msgid "Guarde la nueva clave en un lugar seguro." msgstr "Tárold biztonságos helyen az új jelszót" # "All accounts passwords will be encrypted again." -#: ../../../../inc/themes/classic/encryption.inc:74 -#: ../../../../inc/themes/material-blue/encryption.inc:86 +#: ../../../../inc/themes/classic/encryption.inc:71 +#: ../../../../inc/themes/material-blue/encryption.inc:83 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "Minden fiók jelszó újra titkosítva lesz" # "All users must re-enter the new master password." -#: ../../../../inc/themes/classic/encryption.inc:77 -#: ../../../../inc/themes/material-blue/encryption.inc:89 +#: ../../../../inc/themes/classic/encryption.inc:74 +#: ../../../../inc/themes/material-blue/encryption.inc:86 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "Minden felhasználónak úrja be kell írnia az új mester jelszót" -#: ../../../../inc/themes/classic/encryption.inc:98 -#: ../../../../inc/themes/material-blue/encryption.inc:112 +#: ../../../../inc/themes/classic/encryption.inc:95 +#: ../../../../inc/themes/material-blue/encryption.inc:109 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:100 -#: ../../../../inc/themes/material-blue/encryption.inc:114 +#: ../../../../inc/themes/classic/encryption.inc:97 +#: ../../../../inc/themes/material-blue/encryption.inc:111 msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " "que incluya números, letras y símbolos." msgstr "" # "Master Password" -#: ../../../../inc/themes/classic/encryption.inc:108 -#: ../../../../inc/themes/material-blue/encryption.inc:124 +#: ../../../../inc/themes/classic/encryption.inc:105 +#: ../../../../inc/themes/material-blue/encryption.inc:121 #, fuzzy msgid "Clave Temporal" msgstr "Generate Temporary Password" # "Generated Password" -#: ../../../../inc/themes/classic/encryption.inc:119 -#: ../../../../inc/themes/classic/encryption.inc:130 -#: ../../../../inc/themes/material-blue/encryption.inc:134 -#: ../../../../inc/themes/material-blue/encryption.inc:145 +#: ../../../../inc/themes/classic/encryption.inc:116 +#: ../../../../inc/themes/classic/encryption.inc:127 +#: ../../../../inc/themes/material-blue/encryption.inc:131 +#: ../../../../inc/themes/material-blue/encryption.inc:142 #, fuzzy msgid "No generada" msgstr "Generált Jelszó" -#: ../../../../inc/themes/classic/encryption.inc:124 -#: ../../../../inc/themes/material-blue/encryption.inc:139 +#: ../../../../inc/themes/classic/encryption.inc:121 +#: ../../../../inc/themes/material-blue/encryption.inc:136 msgid "Válido hasta" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:136 -#: ../../../../inc/themes/material-blue/encryption.inc:151 -#: ../../../../inc/themes/material-blue/encryption.inc:157 +#: ../../../../inc/themes/classic/encryption.inc:133 +#: ../../../../inc/themes/material-blue/encryption.inc:148 +#: ../../../../inc/themes/material-blue/encryption.inc:154 #, fuzzy msgid "Validez (s)" msgstr "Munkamenet idõ" -#: ../../../../inc/themes/classic/encryption.inc:139 +#: ../../../../inc/themes/classic/encryption.inc:136 msgid "Validez" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:167 -#: ../../../../inc/themes/material-blue/encryption.inc:186 +#: ../../../../inc/themes/classic/encryption.inc:164 +#: ../../../../inc/themes/material-blue/encryption.inc:183 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " @@ -4447,67 +4567,71 @@ msgid "" msgstr "" # "General" -#: ../../../../inc/themes/classic/encryption.inc:169 -#: ../../../../inc/themes/material-blue/encryption.inc:190 +#: ../../../../inc/themes/classic/encryption.inc:166 +#: ../../../../inc/themes/material-blue/encryption.inc:187 #, fuzzy msgid "Generar" msgstr "Generate Temporary Password" # "No records found" -#: ../../../../inc/themes/classic/eventlog.inc:8 +#: ../../../../inc/themes/classic/eventlog.inc:6 #: ../../../../inc/themes/classic/search.inc:3 -#: ../../../../inc/themes/material-blue/eventlog.inc:7 +#: ../../../../inc/themes/material-blue/eventlog.inc:6 #: ../../../../inc/themes/material-blue/search.inc:3 msgid "No se encontraron registros" msgstr "Nem találtam rekordokat" # "Date / Time" -#: ../../../../inc/themes/classic/eventlog.inc:19 -#: ../../../../inc/themes/material-blue/eventlog.inc:18 +#: ../../../../inc/themes/classic/eventlog.inc:17 +#: ../../../../inc/themes/material-blue/eventlog.inc:17 msgid "Fecha / Hora" msgstr "Dátum / Idõ" # "Event" -#: ../../../../inc/themes/classic/eventlog.inc:22 -#: ../../../../inc/themes/material-blue/eventlog.inc:21 +#: ../../../../inc/themes/classic/eventlog.inc:20 +#: ../../../../inc/themes/material-blue/eventlog.inc:20 msgid "Evento" msgstr "Esemény" # "IP" -#: ../../../../inc/themes/classic/eventlog.inc:28 -#: ../../../../inc/themes/material-blue/eventlog.inc:27 +#: ../../../../inc/themes/classic/eventlog.inc:26 +#: ../../../../inc/themes/material-blue/eventlog.inc:26 msgid "IP" msgstr "IP" # "First page" -#: ../../../../inc/themes/classic/eventlog.inc:86 +#: ../../../../inc/themes/classic/eventlog.inc:84 #: ../../../../inc/themes/classic/search.inc:169 -#: ../../../../inc/themes/material-blue/eventlog.inc:85 -#: ../../../../inc/themes/material-blue/search.inc:171 +#: ../../../../inc/themes/material-blue/eventlog.inc:84 +#: ../../../../inc/themes/material-blue/search.inc:20 +#: ../../../../inc/themes/material-blue/search.inc:209 msgid "Primera página" msgstr "Elsõ oldal" # "Previous page" -#: ../../../../inc/themes/classic/eventlog.inc:88 +#: ../../../../inc/themes/classic/eventlog.inc:86 #: ../../../../inc/themes/classic/search.inc:171 -#: ../../../../inc/themes/material-blue/eventlog.inc:87 -#: ../../../../inc/themes/material-blue/search.inc:173 +#: ../../../../inc/themes/material-blue/eventlog.inc:86 +#: ../../../../inc/themes/material-blue/search.inc:22 +#: ../../../../inc/themes/material-blue/search.inc:211 msgid "Página anterior" msgstr "Elõzõ oldal" # "Next page" -#: ../../../../inc/themes/classic/eventlog.inc:93 +#: ../../../../inc/themes/classic/eventlog.inc:91 #: ../../../../inc/themes/classic/search.inc:176 -#: ../../../../inc/themes/material-blue/eventlog.inc:92 -#: ../../../../inc/themes/material-blue/search.inc:178 +#: ../../../../inc/themes/material-blue/eventlog.inc:91 +#: ../../../../inc/themes/material-blue/search.inc:27 +#: ../../../../inc/themes/material-blue/search.inc:216 msgid "Página siguiente" msgstr "Következõ oldal" # "Last page" -#: ../../../../inc/themes/classic/eventlog.inc:95 +#: ../../../../inc/themes/classic/eventlog.inc:93 #: ../../../../inc/themes/classic/search.inc:178 -#: ../../../../inc/themes/material-blue/eventlog.inc:94 -#: ../../../../inc/themes/material-blue/search.inc:180 +#: ../../../../inc/themes/material-blue/eventlog.inc:93 +#: ../../../../inc/themes/material-blue/search.inc:29 +#: ../../../../inc/themes/material-blue/search.inc:218 msgid "Última página" msgstr "Utolsó oldal" @@ -4564,164 +4688,164 @@ msgid "Descripción del grupo" msgstr "Csoport leírás" # "phpPMS Import" -#: ../../../../inc/themes/classic/import.inc:7 -#: ../../../../inc/themes/material-blue/import.inc:121 +#: ../../../../inc/themes/classic/import.inc:4 +#: ../../../../inc/themes/material-blue/import.inc:118 msgid "Importar phpPMS" msgstr "phpPMS importálása" # "DB Username" -#: ../../../../inc/themes/classic/import.inc:14 +#: ../../../../inc/themes/classic/import.inc:11 #: ../../../../inc/themes/classic/install.inc:63 #: ../../../../inc/themes/classic/install.inc:64 -#: ../../../../inc/themes/material-blue/import.inc:128 -#: ../../../../inc/themes/material-blue/import.inc:140 +#: ../../../../inc/themes/material-blue/import.inc:125 +#: ../../../../inc/themes/material-blue/import.inc:137 msgid "Usuario BBDD" msgstr "DB felhasználónév" # "Enter phpPMS database connection user" -#: ../../../../inc/themes/classic/import.inc:18 -#: ../../../../inc/themes/material-blue/import.inc:132 +#: ../../../../inc/themes/classic/import.inc:15 +#: ../../../../inc/themes/material-blue/import.inc:129 #, fuzzy msgid "Indicar el usuario de conexión a la base de datos de phpPMS." msgstr "Írd be az adatbázis kapcsolati felhasználót" # "DB Password" -#: ../../../../inc/themes/classic/import.inc:28 +#: ../../../../inc/themes/classic/import.inc:25 #: ../../../../inc/themes/classic/install.inc:71 #: ../../../../inc/themes/classic/install.inc:73 -#: ../../../../inc/themes/material-blue/import.inc:146 -#: ../../../../inc/themes/material-blue/import.inc:152 +#: ../../../../inc/themes/material-blue/import.inc:143 +#: ../../../../inc/themes/material-blue/import.inc:149 msgid "Clave BBDD" msgstr "Adatbázis jelszó" # "DB Name" -#: ../../../../inc/themes/classic/import.inc:36 +#: ../../../../inc/themes/classic/import.inc:33 #: ../../../../inc/themes/classic/install.inc:78 #: ../../../../inc/themes/classic/install.inc:79 -#: ../../../../inc/themes/material-blue/import.inc:158 -#: ../../../../inc/themes/material-blue/import.inc:170 +#: ../../../../inc/themes/material-blue/import.inc:155 +#: ../../../../inc/themes/material-blue/import.inc:167 msgid "Nombre BBDD" msgstr "DB név" # "Enter phpPMS database name" -#: ../../../../inc/themes/classic/import.inc:40 -#: ../../../../inc/themes/material-blue/import.inc:162 +#: ../../../../inc/themes/classic/import.inc:37 +#: ../../../../inc/themes/material-blue/import.inc:159 #, fuzzy msgid "Indicar el nombre de la base de datos de phpPMS." msgstr "Írd be a phpPMS adatbázis nevét" # "DB Server" -#: ../../../../inc/themes/classic/import.inc:50 +#: ../../../../inc/themes/classic/import.inc:47 #: ../../../../inc/themes/classic/install.inc:87 #: ../../../../inc/themes/classic/install.inc:88 -#: ../../../../inc/themes/material-blue/import.inc:176 -#: ../../../../inc/themes/material-blue/import.inc:188 +#: ../../../../inc/themes/material-blue/import.inc:173 +#: ../../../../inc/themes/material-blue/import.inc:185 msgid "Servidor BBDD" msgstr "DB szerver" # "Enter phpPMS database server name" -#: ../../../../inc/themes/classic/import.inc:54 -#: ../../../../inc/themes/material-blue/import.inc:180 +#: ../../../../inc/themes/classic/import.inc:51 +#: ../../../../inc/themes/material-blue/import.inc:177 #, fuzzy msgid "Indicar el servidor de la base de datos de phpPMS." msgstr "Írd be az adatbázis szerver nevét" # "Confirm" -#: ../../../../inc/themes/classic/import.inc:64 -#: ../../../../inc/themes/material-blue/import.inc:194 +#: ../../../../inc/themes/classic/import.inc:61 +#: ../../../../inc/themes/material-blue/import.inc:191 msgid "Confirmar" msgstr "Megerõsítés" # "Current data will be removed (except current user)" -#: ../../../../inc/themes/classic/import.inc:68 -#: ../../../../inc/themes/material-blue/import.inc:198 +#: ../../../../inc/themes/classic/import.inc:65 +#: ../../../../inc/themes/material-blue/import.inc:195 msgid "Los datos actuales serán borrados (excepto el usuario actual)" msgstr "Jelenlegi adatok törlése (kivéve a jelenlegi felhasználót)" # "Start" -#: ../../../../inc/themes/classic/import.inc:83 +#: ../../../../inc/themes/classic/import.inc:80 msgid "Iniciar" msgstr "Start" # CSV/XML Import -#: ../../../../inc/themes/classic/import.inc:89 -#: ../../../../inc/themes/material-blue/import.inc:7 +#: ../../../../inc/themes/classic/import.inc:86 +#: ../../../../inc/themes/material-blue/import.inc:4 #, fuzzy msgid "Importar CSV/XML" msgstr "Import CSV/XML" # Default Group -#: ../../../../inc/themes/classic/import.inc:96 -#: ../../../../inc/themes/material-blue/import.inc:14 +#: ../../../../inc/themes/classic/import.inc:93 +#: ../../../../inc/themes/material-blue/import.inc:11 #, fuzzy msgid "Usuario por Defecto" msgstr "Rendezés Felhasználónév szerint" # Define the default users profile for new LDAP users -#: ../../../../inc/themes/classic/import.inc:100 -#: ../../../../inc/themes/material-blue/import.inc:18 +#: ../../../../inc/themes/classic/import.inc:97 +#: ../../../../inc/themes/material-blue/import.inc:15 #, fuzzy msgid "Define el usuario por defecto para las cuentas importadas." msgstr "Define the default users profile for new LDAP users" # Default Group -#: ../../../../inc/themes/classic/import.inc:117 +#: ../../../../inc/themes/classic/import.inc:114 #: ../../../../inc/themes/classic/ldap.inc:144 -#: ../../../../inc/themes/material-blue/import.inc:36 +#: ../../../../inc/themes/material-blue/import.inc:33 #: ../../../../inc/themes/material-blue/ldap.inc:170 #, fuzzy msgid "Grupo por Defecto" msgstr "Csoportot használja a:" # Define the default users group for new LDAP users -#: ../../../../inc/themes/classic/import.inc:121 -#: ../../../../inc/themes/material-blue/import.inc:40 +#: ../../../../inc/themes/classic/import.inc:118 +#: ../../../../inc/themes/material-blue/import.inc:37 #, fuzzy msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Define the default users group for new LDAP users" # "Bind Password" -#: ../../../../inc/themes/classic/import.inc:138 -#: ../../../../inc/themes/material-blue/import.inc:58 -#: ../../../../inc/themes/material-blue/import.inc:64 +#: ../../../../inc/themes/classic/import.inc:135 +#: ../../../../inc/themes/material-blue/import.inc:55 +#: ../../../../inc/themes/material-blue/import.inc:61 #, fuzzy msgid "Clave de Importación" msgstr "Fiók importálás megerõsítése" -#: ../../../../inc/themes/classic/import.inc:146 -#: ../../../../inc/themes/material-blue/import.inc:70 -#: ../../../../inc/themes/material-blue/import.inc:76 +#: ../../../../inc/themes/classic/import.inc:143 +#: ../../../../inc/themes/material-blue/import.inc:67 +#: ../../../../inc/themes/material-blue/import.inc:73 msgid "Delimitador CSV" msgstr "" # "Drop files here or click to select" -#: ../../../../inc/themes/classic/import.inc:162 -#: ../../../../inc/themes/material-blue/import.inc:90 +#: ../../../../inc/themes/classic/import.inc:159 +#: ../../../../inc/themes/material-blue/import.inc:87 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Dobja el a fájlokat vagy kattintson a választáshoz" -#: ../../../../inc/themes/classic/import.inc:175 +#: ../../../../inc/themes/classic/import.inc:172 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "arhcivos XML y CSV." msgstr "" -#: ../../../../inc/themes/classic/import.inc:177 -#: ../../../../inc/themes/material-blue/import.inc:106 +#: ../../../../inc/themes/classic/import.inc:174 +#: ../../../../inc/themes/material-blue/import.inc:103 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "" -#: ../../../../inc/themes/classic/import.inc:179 -#: ../../../../inc/themes/material-blue/import.inc:108 +#: ../../../../inc/themes/classic/import.inc:176 +#: ../../../../inc/themes/material-blue/import.inc:105 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "" # Import from KeePass or KeePassX. The customer name will be KeePass or KeePassX. -#: ../../../../inc/themes/classic/import.inc:181 -#: ../../../../inc/themes/material-blue/import.inc:110 +#: ../../../../inc/themes/classic/import.inc:178 +#: ../../../../inc/themes/material-blue/import.inc:107 #, fuzzy msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " @@ -4731,21 +4855,21 @@ msgstr "" "KeePassX." # "Import form a CSV file with the format" -#: ../../../../inc/themes/classic/import.inc:183 -#: ../../../../inc/themes/material-blue/import.inc:112 +#: ../../../../inc/themes/classic/import.inc:180 +#: ../../../../inc/themes/material-blue/import.inc:109 #, fuzzy msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "Forma importálása a CSV fájl formátumával együtt" # "account_name;customer;category;url;user;password;notes" -#: ../../../../inc/themes/classic/import.inc:185 -#: ../../../../inc/themes/material-blue/import.inc:114 +#: ../../../../inc/themes/classic/import.inc:182 +#: ../../../../inc/themes/material-blue/import.inc:111 msgid "nombre_de_cuenta;cliente;categoría;url;usuario;clave;notas" msgstr "Fiók_név;ügyfél;kategória;url;felhasználó;jelszó;jegyzetek" # "If the customer or category are not created, they will be automatically created." -#: ../../../../inc/themes/classic/import.inc:187 -#: ../../../../inc/themes/material-blue/import.inc:116 +#: ../../../../inc/themes/classic/import.inc:184 +#: ../../../../inc/themes/material-blue/import.inc:113 #, fuzzy msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " @@ -5072,7 +5196,7 @@ msgstr "Email kérések engedélyezése" # "More Actions" #: ../../../../inc/themes/classic/mgmttabs.inc:70 #: ../../../../inc/themes/classic/search.inc:120 -#: ../../../../inc/themes/material-blue/search.inc:123 +#: ../../../../inc/themes/material-blue/search.inc:160 msgid "Más Acciones" msgstr "Több akció" @@ -5093,13 +5217,6 @@ msgstr "Felhasználó bejelentkezés" msgid "Email del Usuario" msgstr "Felhasználó Email" -# "Email" -#: ../../../../inc/themes/classic/passreset.inc:22 -#: ../../../../inc/themes/classic/users.inc:61 -#: ../../../../inc/themes/material-blue/users.inc:71 -msgid "Email" -msgstr "Email" - # "New Password" #: ../../../../inc/themes/classic/passreset.inc:27 msgid "Nueva Clave" @@ -5370,7 +5487,7 @@ msgstr "Kérés leírás" # "Back" #: ../../../../inc/themes/classic/request.inc:33 -#: ../../../../inc/themes/material-blue/account.inc:443 +#: ../../../../inc/themes/material-blue/account.inc:445 #: ../../../../inc/themes/material-blue/editpass.inc:55 #: ../../../../inc/themes/material-blue/mgmttabs.inc:13 #: ../../../../inc/themes/material-blue/request.inc:42 @@ -5385,37 +5502,39 @@ msgstr "Küldés" # "Search in Wiki" #: ../../../../inc/themes/classic/search.inc:33 -#: ../../../../inc/themes/material-blue/search.inc:29 +#: ../../../../inc/themes/material-blue/search.inc:65 msgid "Buscar en Wiki" msgstr "Keresés a Wikiben" # "Open link to" #: ../../../../inc/themes/classic/search.inc:69 -#: ../../../../inc/themes/material-blue/search.inc:65 +#: ../../../../inc/themes/material-blue/search.inc:101 msgid "Abrir enlace a" msgstr "Nyissa meg a linket, hogy" # "Attachments" #: ../../../../inc/themes/classic/search.inc:87 -#: ../../../../inc/themes/material-blue/search.inc:89 +#: ../../../../inc/themes/material-blue/search.inc:125 msgid "Archivos adjuntos" msgstr "Csatolmányok" # "Link to Wiki" #: ../../../../inc/themes/classic/search.inc:94 -#: ../../../../inc/themes/material-blue/search.inc:98 +#: ../../../../inc/themes/material-blue/search.inc:134 msgid "Enlace a Wiki" msgstr "Wiki link" # "Filter ON" #: ../../../../inc/themes/classic/search.inc:159 -#: ../../../../inc/themes/material-blue/search.inc:161 +#: ../../../../inc/themes/material-blue/search.inc:10 +#: ../../../../inc/themes/material-blue/search.inc:199 msgid "Filtro ON" msgstr "Szûrõ bekapcsolva" # "Global ON" #: ../../../../inc/themes/classic/search.inc:163 -#: ../../../../inc/themes/material-blue/search.inc:165 +#: ../../../../inc/themes/material-blue/search.inc:14 +#: ../../../../inc/themes/material-blue/search.inc:203 msgid "Global ON" msgstr "Global On" @@ -5499,7 +5618,6 @@ msgid "" msgstr "" #: ../../../../inc/themes/classic/security.inc:29 -#: ../../../../inc/themes/material-blue/preferences.inc:86 #: ../../../../inc/themes/material-blue/security.inc:27 msgid "Activar" msgstr "" @@ -5775,8 +5893,8 @@ msgstr "Jelszó (ismét)" # "Performed by" #: ../../../../inc/themes/material-blue/backup.inc:58 #: ../../../../inc/themes/material-blue/backup.inc:144 -#: ../../../../inc/themes/material-blue/encryption.inc:118 -#: ../../../../inc/themes/material-blue/import.inc:217 +#: ../../../../inc/themes/material-blue/encryption.inc:115 +#: ../../../../inc/themes/material-blue/import.inc:214 #, fuzzy msgid "Realizar" msgstr "Archívum készítés" @@ -5847,7 +5965,7 @@ msgstr "Segítség :: GYIK :: Változások Listája" msgid "Preferencias de usuario" msgstr "Dupla felhasználó bejelentkezés" -#: ../../../../inc/themes/material-blue/import.inc:104 +#: ../../../../inc/themes/material-blue/import.inc:101 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "archivos XML y CSV." @@ -5907,6 +6025,14 @@ msgid "" "cuentas sin permisos." msgstr "" +#: ../../../../inc/themes/material-blue/preferences.inc:91 +msgid "Barra de navegación superior" +msgstr "" + +#: ../../../../inc/themes/material-blue/preferences.inc:95 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "" + # "Add new account" #: ../../../../inc/themes/material-blue/profiles.inc:25 #, fuzzy diff --git a/inc/locales/it_IT/LC_MESSAGES/messages.mo b/inc/locales/it_IT/LC_MESSAGES/messages.mo index 77ac1c69..4cd7c3c9 100644 Binary files a/inc/locales/it_IT/LC_MESSAGES/messages.mo and b/inc/locales/it_IT/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/it_IT/LC_MESSAGES/messages.po b/inc/locales/it_IT/LC_MESSAGES/messages.po index 9bb4d866..7a95fbe3 100644 --- a/inc/locales/it_IT/LC_MESSAGES/messages.po +++ b/inc/locales/it_IT/LC_MESSAGES/messages.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" -"POT-Creation-Date: 2015-10-05 02:34+0100\n" -"PO-Revision-Date: 2015-10-05 02:34+0100\n" +"POT-Creation-Date: 2015-10-09 00:51+0100\n" +"PO-Revision-Date: 2015-10-09 00:51+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: nuxsmin@syspass.org \n" "Language: it_IT\n" @@ -15,126 +15,126 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SearchPath-0: ../../../..\n" -#: ../../../../ajax/ajax_2fa.php:35 ../../../../ajax/ajax_accountSave.php:41 -#: ../../../../ajax/ajax_appMgmtSave.php:42 -#: ../../../../ajax/ajax_backup.php:39 ../../../../ajax/ajax_checkLdap.php:41 -#: ../../../../ajax/ajax_configSave.php:41 ../../../../ajax/ajax_files.php:41 -#: ../../../../ajax/ajax_getFiles.php:46 ../../../../ajax/ajax_import.php:49 -#: ../../../../ajax/ajax_migrate.php:45 ../../../../ajax/ajax_passReset.php:37 -#: ../../../../ajax/ajax_search.php:41 -#: ../../../../ajax/ajax_sendRequest.php:41 -#: ../../../../ajax/ajax_userPrefsSave.php:42 +#: ../../../../ajax/ajax_2fa.php:37 ../../../../ajax/ajax_accountSave.php:42 +#: ../../../../ajax/ajax_appMgmtSave.php:43 +#: ../../../../ajax/ajax_backup.php:41 ../../../../ajax/ajax_checkLdap.php:42 +#: ../../../../ajax/ajax_configSave.php:44 ../../../../ajax/ajax_files.php:42 +#: ../../../../ajax/ajax_getFiles.php:47 ../../../../ajax/ajax_import.php:50 +#: ../../../../ajax/ajax_migrate.php:46 ../../../../ajax/ajax_passReset.php:40 +#: ../../../../ajax/ajax_search.php:42 +#: ../../../../ajax/ajax_sendRequest.php:42 +#: ../../../../ajax/ajax_userPrefsSave.php:43 msgid "CONSULTA INVÁLIDA" msgstr "" -#: ../../../../ajax/ajax_2fa.php:55 +#: ../../../../ajax/ajax_2fa.php:57 msgid "Código correcto" msgstr "" -#: ../../../../ajax/ajax_2fa.php:58 ../../../../ajax/ajax_userPrefsSave.php:94 +#: ../../../../ajax/ajax_2fa.php:60 ../../../../ajax/ajax_userPrefsSave.php:97 msgid "Código incorrecto" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:35 -#: ../../../../ajax/ajax_appMgmtSave.php:36 -#: ../../../../ajax/ajax_backup.php:33 ../../../../ajax/ajax_checkLdap.php:35 -#: ../../../../ajax/ajax_configSave.php:35 ../../../../ajax/ajax_import.php:35 -#: ../../../../ajax/ajax_migrate.php:35 -#: ../../../../ajax/ajax_sendRequest.php:35 -#: ../../../../ajax/ajax_userPrefsSave.php:36 -#: ../../../../ajax/ajax_viewpass.php:36 +#: ../../../../ajax/ajax_accountSave.php:36 +#: ../../../../ajax/ajax_appMgmtSave.php:37 +#: ../../../../ajax/ajax_backup.php:35 ../../../../ajax/ajax_checkLdap.php:36 +#: ../../../../ajax/ajax_configSave.php:38 ../../../../ajax/ajax_import.php:36 +#: ../../../../ajax/ajax_migrate.php:36 +#: ../../../../ajax/ajax_sendRequest.php:36 +#: ../../../../ajax/ajax_userPrefsSave.php:37 +#: ../../../../ajax/ajax_viewpass.php:37 msgid "La sesión no se ha iniciado o ha caducado" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:77 -#: ../../../../ajax/ajax_accountSave.php:92 +#: ../../../../ajax/ajax_accountSave.php:78 +#: ../../../../ajax/ajax_accountSave.php:93 msgid "Es necesario un nombre de cuenta" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:79 -#: ../../../../ajax/ajax_accountSave.php:90 -#: ../../../../ajax/ajax_appMgmtSave.php:328 +#: ../../../../ajax/ajax_accountSave.php:80 +#: ../../../../ajax/ajax_accountSave.php:91 +#: ../../../../ajax/ajax_appMgmtSave.php:329 msgid "Es necesario un nombre de cliente" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:81 -#: ../../../../ajax/ajax_accountSave.php:94 +#: ../../../../ajax/ajax_accountSave.php:82 +#: ../../../../ajax/ajax_accountSave.php:95 msgid "Es necesario un usuario" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:83 -#: ../../../../ajax/ajax_accountSave.php:105 +#: ../../../../ajax/ajax_accountSave.php:84 +#: ../../../../ajax/ajax_accountSave.php:106 msgid "Es necesaria una clave" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:85 -#: ../../../../ajax/ajax_accountSave.php:96 +#: ../../../../ajax/ajax_accountSave.php:86 +#: ../../../../ajax/ajax_accountSave.php:97 msgid "Es necesario una categoría" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:100 -#: ../../../../ajax/ajax_accountSave.php:109 +#: ../../../../ajax/ajax_accountSave.php:101 +#: ../../../../ajax/ajax_accountSave.php:110 msgid "Id inválido" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:112 -#: ../../../../ajax/ajax_accountSave.php:262 -#: ../../../../ajax/ajax_appMgmtSave.php:534 -#: ../../../../ajax/ajax_configSave.php:293 -#: ../../../../ajax/ajax_userPrefsSave.php:108 ../../../../api.php:53 +#: ../../../../ajax/ajax_accountSave.php:113 +#: ../../../../ajax/ajax_accountSave.php:263 +#: ../../../../ajax/ajax_appMgmtSave.php:535 +#: ../../../../ajax/ajax_configSave.php:324 +#: ../../../../ajax/ajax_userPrefsSave.php:111 ../../../../api.php:53 msgid "Acción Inválida" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:120 -#: ../../../../ajax/ajax_appMgmtSave.php:111 -#: ../../../../ajax/ajax_appMgmtSave.php:148 -#: ../../../../ajax/ajax_backup.php:62 +#: ../../../../ajax/ajax_accountSave.php:121 +#: ../../../../ajax/ajax_appMgmtSave.php:112 +#: ../../../../ajax/ajax_appMgmtSave.php:149 +#: ../../../../ajax/ajax_backup.php:68 msgid "Las claves no coinciden" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:172 +#: ../../../../ajax/ajax_accountSave.php:173 msgid "Cuenta creada" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:175 +#: ../../../../ajax/ajax_accountSave.php:176 msgid "Error al crear la cuenta" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:210 +#: ../../../../ajax/ajax_accountSave.php:211 msgid "Sin cambios" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:222 +#: ../../../../ajax/ajax_accountSave.php:223 msgid "Cuenta actualizada" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:225 +#: ../../../../ajax/ajax_accountSave.php:226 msgid "Error al modificar la cuenta" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:232 +#: ../../../../ajax/ajax_accountSave.php:233 msgid "Cuenta eliminada" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:235 +#: ../../../../ajax/ajax_accountSave.php:236 msgid "Error al eliminar la cuenta" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:245 -#: ../../../../ajax/ajax_appMgmtSave.php:152 -#: ../../../../ajax/ajax_passReset.php:74 +#: ../../../../ajax/ajax_accountSave.php:246 +#: ../../../../ajax/ajax_appMgmtSave.php:153 +#: ../../../../ajax/ajax_passReset.php:75 msgid "Clave actualizada" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:248 +#: ../../../../ajax/ajax_accountSave.php:249 msgid "Error al actualizar la clave" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:255 +#: ../../../../ajax/ajax_accountSave.php:256 msgid "Cuenta restaurada" msgstr "" -#: ../../../../ajax/ajax_accountSave.php:258 +#: ../../../../ajax/ajax_accountSave.php:259 msgid "Error al restaurar cuenta" msgstr "" @@ -143,13 +143,13 @@ msgid "Ver Usuario" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:61 -#: ../../../../web/UsersMgmtC.class.php:136 +#: ../../../../web/UsersMgmtC.class.php:137 msgid "Editar Usuario" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:67 -#: ../../../../inc/UserBase.class.php:381 -#: ../../../../web/UsersMgmtC.class.php:121 +#: ../../../../inc/UserBase.class.php:383 +#: ../../../../web/UsersMgmtC.class.php:122 msgid "Nuevo Usuario" msgstr "" @@ -158,13 +158,13 @@ msgid "Ver Grupo" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:80 -#: ../../../../web/UsersMgmtC.class.php:202 +#: ../../../../web/UsersMgmtC.class.php:203 msgid "Editar Grupo" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:86 #: ../../../../inc/Groups.class.php:152 ../../../../inc/Groups.class.php:253 -#: ../../../../web/UsersMgmtC.class.php:194 +#: ../../../../web/UsersMgmtC.class.php:195 msgid "Nuevo Grupo" msgstr "" @@ -173,13 +173,13 @@ msgid "Ver Perfil" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:99 -#: ../../../../web/UsersMgmtC.class.php:267 +#: ../../../../web/UsersMgmtC.class.php:268 msgid "Editar Perfil" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:105 #: ../../../../inc/ProfileBase.class.php:512 -#: ../../../../web/UsersMgmtC.class.php:252 +#: ../../../../web/UsersMgmtC.class.php:253 msgid "Nuevo Perfil" msgstr "" @@ -188,13 +188,13 @@ msgid "Ver Cliente" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:118 -#: ../../../../web/AccountsMgmtC.class.php:152 +#: ../../../../web/AccountsMgmtC.class.php:153 msgid "Editar Cliente" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:124 #: ../../../../inc/Customer.class.php:65 -#: ../../../../web/AccountsMgmtC.class.php:145 +#: ../../../../web/AccountsMgmtC.class.php:146 msgid "Nuevo Cliente" msgstr "" @@ -203,13 +203,13 @@ msgid "Ver Categoría" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:137 -#: ../../../../web/AccountsMgmtC.class.php:94 +#: ../../../../web/AccountsMgmtC.class.php:95 msgid "Editar Categoría" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:143 #: ../../../../inc/Category.class.php:83 -#: ../../../../web/AccountsMgmtC.class.php:86 +#: ../../../../web/AccountsMgmtC.class.php:87 #: ../../../../inc/themes/classic/account.inc:53 #: ../../../../inc/themes/material-blue/account.inc:61 msgid "Nueva Categoría" @@ -221,128 +221,129 @@ msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:156 #: ../../../../inc/ApiTokens.class.php:189 -#: ../../../../web/UsersMgmtC.class.php:399 +#: ../../../../web/UsersMgmtC.class.php:400 msgid "Nueva Autorización" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:162 -#: ../../../../web/UsersMgmtC.class.php:414 +#: ../../../../web/UsersMgmtC.class.php:415 msgid "Editar Autorización" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:168 -#: ../../../../web/AccountsMgmtC.class.php:273 +#: ../../../../web/AccountsMgmtC.class.php:274 msgid "Nuevo Campo" msgstr "" #: ../../../../ajax/ajax_appMgmtData.php:174 -#: ../../../../web/AccountsMgmtC.class.php:280 +#: ../../../../web/AccountsMgmtC.class.php:281 msgid "Editar Campo" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:85 +#: ../../../../ajax/ajax_appMgmtSave.php:86 msgid "Es necesario un nombre de usuario" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:87 +#: ../../../../ajax/ajax_appMgmtSave.php:88 msgid "Es necesario un login" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:89 +#: ../../../../ajax/ajax_appMgmtSave.php:90 msgid "Es necesario un perfil" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:91 +#: ../../../../ajax/ajax_appMgmtSave.php:92 msgid "Es necesario un grupo" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:93 +#: ../../../../ajax/ajax_appMgmtSave.php:94 msgid "Es necesario un email" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:95 -#: ../../../../ajax/ajax_appMgmtSave.php:144 -#: ../../../../ajax/ajax_appMgmtSave.php:159 -#: ../../../../ajax/ajax_configSave.php:268 -#: ../../../../ajax/ajax_import.php:39 ../../../../ajax/ajax_migrate.php:39 -#: ../../../../ajax/ajax_userPrefsSave.php:83 +#: ../../../../ajax/ajax_appMgmtSave.php:96 +#: ../../../../ajax/ajax_appMgmtSave.php:145 +#: ../../../../ajax/ajax_appMgmtSave.php:160 +#: ../../../../ajax/ajax_backup.php:54 +#: ../../../../ajax/ajax_configSave.php:297 +#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40 +#: ../../../../ajax/ajax_userPrefsSave.php:86 msgid "Ey, esto es una DEMO!!" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:100 +#: ../../../../ajax/ajax_appMgmtSave.php:101 msgid "Login de usuario duplicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:103 +#: ../../../../ajax/ajax_appMgmtSave.php:104 msgid "Email de usuario duplicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:109 -#: ../../../../ajax/ajax_appMgmtSave.php:146 +#: ../../../../ajax/ajax_appMgmtSave.php:110 +#: ../../../../ajax/ajax_appMgmtSave.php:147 msgid "La clave no puede estar en blanco" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:122 +#: ../../../../ajax/ajax_appMgmtSave.php:123 msgid "Usuario creado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:125 +#: ../../../../ajax/ajax_appMgmtSave.php:126 msgid "Error al crear el usuario" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:135 -#: ../../../../inc/UserUtil.class.php:103 +#: ../../../../ajax/ajax_appMgmtSave.php:136 +#: ../../../../inc/UserMigrate.class.php:89 msgid "Usuario actualizado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:138 +#: ../../../../ajax/ajax_appMgmtSave.php:139 msgid "Error al actualizar el usuario" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:155 -#: ../../../../ajax/ajax_passReset.php:78 +#: ../../../../ajax/ajax_appMgmtSave.php:156 +#: ../../../../ajax/ajax_passReset.php:79 msgid "Error al modificar la clave" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:161 +#: ../../../../ajax/ajax_appMgmtSave.php:162 msgid "No es posible eliminar, usuario en uso" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:165 +#: ../../../../ajax/ajax_appMgmtSave.php:166 msgid "Usuario eliminado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:168 +#: ../../../../ajax/ajax_appMgmtSave.php:169 msgid "Error al eliminar el usuario" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:183 +#: ../../../../ajax/ajax_appMgmtSave.php:184 msgid "Es necesario un nombre de grupo" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:191 +#: ../../../../ajax/ajax_appMgmtSave.php:192 msgid "Nombre de grupo duplicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:203 +#: ../../../../ajax/ajax_appMgmtSave.php:204 msgid "Grupo creado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:205 +#: ../../../../ajax/ajax_appMgmtSave.php:206 msgid "Error al crear el grupo" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:216 +#: ../../../../ajax/ajax_appMgmtSave.php:217 msgid "Grupo actualizado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:219 +#: ../../../../ajax/ajax_appMgmtSave.php:220 msgid "Error al actualizar el grupo" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:228 -#: ../../../../ajax/ajax_appMgmtSave.php:305 -#: ../../../../inc/CustomFieldsBase.class.php:83 +#: ../../../../ajax/ajax_appMgmtSave.php:229 +#: ../../../../ajax/ajax_appMgmtSave.php:306 +#: ../../../../inc/CustomFieldsBase.class.php:109 #: ../../../../inc/themes/classic/account.inc:112 #: ../../../../inc/themes/classic/groups.inc:24 #: ../../../../inc/themes/classic/profiles.inc:85 @@ -352,9 +353,9 @@ msgstr "" msgid "Usuarios" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:232 +#: ../../../../ajax/ajax_appMgmtSave.php:233 #: ../../../../inc/Category.class.php:266 -#: ../../../../inc/CustomFieldsBase.class.php:80 +#: ../../../../inc/CustomFieldsBase.class.php:106 #: ../../../../inc/Customer.class.php:150 #: ../../../../inc/themes/classic/profiles.inc:15 #: ../../../../inc/themes/material-blue/config.inc:176 @@ -362,313 +363,346 @@ msgstr "" msgid "Cuentas" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:235 -#: ../../../../ajax/ajax_appMgmtSave.php:307 +#: ../../../../ajax/ajax_appMgmtSave.php:236 +#: ../../../../ajax/ajax_appMgmtSave.php:308 #: ../../../../inc/Category.class.php:119 #: ../../../../inc/Customer.class.php:150 msgid "No es posible eliminar" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:235 +#: ../../../../ajax/ajax_appMgmtSave.php:236 msgid "Grupo en uso por:" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:240 +#: ../../../../ajax/ajax_appMgmtSave.php:241 msgid "Grupo eliminado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:243 +#: ../../../../ajax/ajax_appMgmtSave.php:244 msgid "Error al eliminar el grupo" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:282 +#: ../../../../ajax/ajax_appMgmtSave.php:283 msgid "Es necesario un nombre de perfil" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:284 +#: ../../../../ajax/ajax_appMgmtSave.php:285 msgid "Nombre de perfil duplicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:289 +#: ../../../../ajax/ajax_appMgmtSave.php:290 msgid "Perfil creado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:292 +#: ../../../../ajax/ajax_appMgmtSave.php:293 msgid "Error al crear el perfil" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:295 +#: ../../../../ajax/ajax_appMgmtSave.php:296 msgid "Perfil actualizado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:298 +#: ../../../../ajax/ajax_appMgmtSave.php:299 msgid "Error al actualizar el perfil" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:307 +#: ../../../../ajax/ajax_appMgmtSave.php:308 msgid "Perfil en uso por:" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:310 +#: ../../../../ajax/ajax_appMgmtSave.php:311 msgid "Perfil eliminado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:313 +#: ../../../../ajax/ajax_appMgmtSave.php:314 msgid "Error al eliminar el perfil" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:348 +#: ../../../../ajax/ajax_appMgmtSave.php:349 msgid "Cliente creado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:363 +#: ../../../../ajax/ajax_appMgmtSave.php:364 msgid "Cliente actualizado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:373 +#: ../../../../ajax/ajax_appMgmtSave.php:374 msgid "Cliente eliminado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:387 +#: ../../../../ajax/ajax_appMgmtSave.php:388 msgid "Es necesario un nombre de categoría" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:407 +#: ../../../../ajax/ajax_appMgmtSave.php:408 msgid "Categoría creada" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:422 +#: ../../../../ajax/ajax_appMgmtSave.php:423 msgid "Categoría actualizada" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:433 +#: ../../../../ajax/ajax_appMgmtSave.php:434 msgid "Categoría eliminada" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:449 +#: ../../../../ajax/ajax_appMgmtSave.php:450 msgid "Usuario o acción no indicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:459 +#: ../../../../ajax/ajax_appMgmtSave.php:460 msgid "Autorización creada" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:467 +#: ../../../../ajax/ajax_appMgmtSave.php:468 msgid "Autorización actualizada" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:477 +#: ../../../../ajax/ajax_appMgmtSave.php:478 msgid "Autorización eliminada" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:494 +#: ../../../../ajax/ajax_appMgmtSave.php:495 msgid "Nombre del campo no indicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:496 +#: ../../../../ajax/ajax_appMgmtSave.php:497 msgid "Tipo del campo no indicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:498 +#: ../../../../ajax/ajax_appMgmtSave.php:499 msgid "Módulo del campo no indicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:512 +#: ../../../../ajax/ajax_appMgmtSave.php:513 msgid "Campo creado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:521 +#: ../../../../ajax/ajax_appMgmtSave.php:522 msgid "Campo actualizado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:531 +#: ../../../../ajax/ajax_appMgmtSave.php:532 msgid "Campo eliminado" msgstr "" -#: ../../../../ajax/ajax_backup.php:52 ../../../../ajax/ajax_backup.php:57 +#: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:63 #: ../../../../inc/themes/classic/backup.inc:54 msgid "Realizar Backup" msgstr "" -#: ../../../../ajax/ajax_backup.php:52 ../../../../ajax/ajax_backup.php:54 +#: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:60 msgid "Error al realizar el backup" msgstr "" -#: ../../../../ajax/ajax_backup.php:54 ../../../../ajax/ajax_backup.php:68 -#: ../../../../ajax/ajax_checkLdap.php:57 ../../../../inc/Import.class.php:128 -#: ../../../../inc/Migrate.class.php:93 +#: ../../../../ajax/ajax_backup.php:60 ../../../../ajax/ajax_backup.php:74 +#: ../../../../ajax/ajax_checkLdap.php:58 ../../../../inc/Import.class.php:128 +#: ../../../../inc/Migrate.class.php:92 msgid "Revise el registro de eventos para más detalles" msgstr "" -#: ../../../../ajax/ajax_backup.php:57 +#: ../../../../ajax/ajax_backup.php:63 msgid "Copia de la aplicación y base de datos realizada correctamente" msgstr "" -#: ../../../../ajax/ajax_backup.php:59 +#: ../../../../ajax/ajax_backup.php:65 msgid "Proceso de backup finalizado" msgstr "" -#: ../../../../ajax/ajax_backup.php:66 ../../../../ajax/ajax_backup.php:71 +#: ../../../../ajax/ajax_backup.php:72 ../../../../ajax/ajax_backup.php:77 msgid "Realizar Exportación" msgstr "" -#: ../../../../ajax/ajax_backup.php:66 +#: ../../../../ajax/ajax_backup.php:72 msgid "Error al realizar la exportación de cuentas" msgstr "" -#: ../../../../ajax/ajax_backup.php:68 +#: ../../../../ajax/ajax_backup.php:74 msgid "Error al realizar la exportación" msgstr "" -#: ../../../../ajax/ajax_backup.php:71 +#: ../../../../ajax/ajax_backup.php:77 msgid "Exportación de cuentas realizada correctamente" msgstr "" -#: ../../../../ajax/ajax_backup.php:73 +#: ../../../../ajax/ajax_backup.php:79 msgid "Proceso de exportación finalizado" msgstr "" -#: ../../../../ajax/ajax_checkLdap.php:51 ../../../../inc/Ldap.class.php:265 +#: ../../../../ajax/ajax_checkLdap.php:52 ../../../../inc/Ldap.class.php:259 msgid "Los parámetros de LDAP no están configurados" msgstr "" -#: ../../../../ajax/ajax_checkLdap.php:57 +#: ../../../../ajax/ajax_checkLdap.php:58 msgid "Error de conexión a LDAP" msgstr "" -#: ../../../../ajax/ajax_checkLdap.php:59 +#: ../../../../ajax/ajax_checkLdap.php:60 msgid "Conexión a LDAP correcta" msgstr "" -#: ../../../../ajax/ajax_checkLdap.php:59 +#: ../../../../ajax/ajax_checkLdap.php:60 msgid "Objetos encontrados" msgstr "" -#: ../../../../ajax/ajax_configSave.php:55 +#: ../../../../ajax/ajax_configSave.php:58 msgid "Modificar Configuración" msgstr "" -#: ../../../../ajax/ajax_configSave.php:102 +#: ../../../../ajax/ajax_configSave.php:105 msgid "El tamaño máximo por archivo es de 16MB" msgstr "" -#: ../../../../ajax/ajax_configSave.php:115 +#: ../../../../ajax/ajax_configSave.php:118 msgid "Faltan parámetros de Proxy" msgstr "" #: ../../../../ajax/ajax_configSave.php:126 -#: ../../../../ajax/ajax_configSave.php:146 -#: ../../../../ajax/ajax_configSave.php:176 -#: ../../../../ajax/ajax_configSave.php:211 +msgid "Proxy habiltado" +msgstr "" + +#: ../../../../ajax/ajax_configSave.php:130 +msgid "Proxy deshabilitado" +msgstr "" + +#: ../../../../ajax/ajax_configSave.php:133 +#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../ajax/ajax_configSave.php:230 msgid "Sección" msgstr "" -#: ../../../../ajax/ajax_configSave.php:126 -#: ../../../../web/ConfigC.class.php:106 +#: ../../../../ajax/ajax_configSave.php:133 +#: ../../../../web/ConfigC.class.php:108 #: ../../../../inc/themes/classic/profiles.inc:61 #: ../../../../inc/themes/material-blue/profiles.inc:72 msgid "General" msgstr "" -#: ../../../../ajax/ajax_configSave.php:136 +#: ../../../../ajax/ajax_configSave.php:143 msgid "Faltan parámetros de Wiki" msgstr "" -#: ../../../../ajax/ajax_configSave.php:146 -#: ../../../../web/ConfigC.class.php:242 +#: ../../../../ajax/ajax_configSave.php:150 +msgid "Wiki habiltada" +msgstr "" + +#: ../../../../ajax/ajax_configSave.php:154 +msgid "Wiki deshabilitada" +msgstr "" + +#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../web/ConfigC.class.php:244 #: ../../../../inc/themes/classic/wiki.inc:4 #: ../../../../inc/themes/material-blue/wiki.inc:4 msgid "Wiki" msgstr "" -#: ../../../../ajax/ajax_configSave.php:161 +#: ../../../../ajax/ajax_configSave.php:172 msgid "Faltan parámetros de LDAP" msgstr "" -#: ../../../../ajax/ajax_configSave.php:176 -#: ../../../../web/ConfigC.class.php:274 +#: ../../../../ajax/ajax_configSave.php:184 +msgid "LDAP habiltado" +msgstr "" + +#: ../../../../ajax/ajax_configSave.php:188 +msgid "LDAP deshabilitado" +msgstr "" + +#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../web/ConfigC.class.php:276 #: ../../../../inc/themes/classic/ldap.inc:4 #: ../../../../inc/themes/material-blue/ldap.inc:4 msgid "LDAP" msgstr "" -#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../ajax/ajax_configSave.php:206 msgid "Faltan parámetros de Correo" msgstr "" -#: ../../../../ajax/ajax_configSave.php:211 -#: ../../../../web/ConfigC.class.php:304 +#: ../../../../ajax/ajax_configSave.php:221 +msgid "Correo habiltado" +msgstr "" + +#: ../../../../ajax/ajax_configSave.php:227 +msgid "Correo deshabilitado" +msgstr "" + +#: ../../../../ajax/ajax_configSave.php:230 +#: ../../../../web/ConfigC.class.php:306 #: ../../../../inc/themes/classic/mail.inc:4 #: ../../../../inc/themes/material-blue/mail.inc:4 msgid "Correo" msgstr "" -#: ../../../../ajax/ajax_configSave.php:223 +#: ../../../../ajax/ajax_configSave.php:252 msgid "Configuración actualizada" msgstr "" -#: ../../../../ajax/ajax_configSave.php:232 -#: ../../../../ajax/ajax_configSave.php:278 -#: ../../../../ajax/ajax_viewpass.php:60 +#: ../../../../ajax/ajax_configSave.php:261 +#: ../../../../ajax/ajax_configSave.php:307 +#: ../../../../ajax/ajax_viewpass.php:61 #: ../../../../inc/Controller.class.php:169 msgid "Clave maestra actualizada" msgstr "" -#: ../../../../ajax/ajax_configSave.php:232 -#: ../../../../ajax/ajax_viewpass.php:60 +#: ../../../../ajax/ajax_configSave.php:261 +#: ../../../../ajax/ajax_viewpass.php:61 #: ../../../../inc/Controller.class.php:169 msgid "Reinicie la sesión para cambiarla" msgstr "" -#: ../../../../ajax/ajax_configSave.php:234 +#: ../../../../ajax/ajax_configSave.php:263 msgid "Clave maestra no indicada" msgstr "" -#: ../../../../ajax/ajax_configSave.php:236 +#: ../../../../ajax/ajax_configSave.php:265 msgid "Se ha de confirmar el cambio de clave" msgstr "" -#: ../../../../ajax/ajax_configSave.php:240 +#: ../../../../ajax/ajax_configSave.php:269 msgid "Las claves son idénticas" msgstr "" -#: ../../../../ajax/ajax_configSave.php:242 +#: ../../../../ajax/ajax_configSave.php:271 msgid "Las claves maestras no coinciden" msgstr "" -#: ../../../../ajax/ajax_configSave.php:244 +#: ../../../../ajax/ajax_configSave.php:273 msgid "La clave maestra actual no coincide" msgstr "" -#: ../../../../ajax/ajax_configSave.php:253 +#: ../../../../ajax/ajax_configSave.php:282 msgid "Errores al actualizar las claves de las cuentas" msgstr "" -#: ../../../../ajax/ajax_configSave.php:259 +#: ../../../../ajax/ajax_configSave.php:288 msgid "Errores al actualizar las claves de las cuentas del histórico" msgstr "" -#: ../../../../ajax/ajax_configSave.php:263 +#: ../../../../ajax/ajax_configSave.php:292 msgid "Errores al actualizar datos de campos personalizados" msgstr "" -#: ../../../../ajax/ajax_configSave.php:276 -#: ../../../../inc/Account.class.php:495 +#: ../../../../ajax/ajax_configSave.php:305 +#: ../../../../inc/Account.class.php:512 msgid "Actualizar Clave Maestra" msgstr "" -#: ../../../../ajax/ajax_configSave.php:280 +#: ../../../../ajax/ajax_configSave.php:309 msgid "Error al guardar el hash de la clave maestra" msgstr "" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:317 msgid "Generar Clave Temporal" msgstr "" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:317 +#: ../../../../inc/CustomFieldsBase.class.php:87 #: ../../../../inc/themes/classic/account.inc:86 #: ../../../../inc/themes/classic/editpass.inc:25 -#: ../../../../inc/themes/classic/encryption.inc:146 +#: ../../../../inc/themes/classic/encryption.inc:143 #: ../../../../inc/themes/classic/install.inc:38 #: ../../../../inc/themes/classic/install.inc:39 #: ../../../../inc/themes/classic/login.inc:10 @@ -685,7 +719,7 @@ msgstr "" #: ../../../../inc/themes/material-blue/editpass.inc:26 #: ../../../../inc/themes/material-blue/editpass.inc:31 #: ../../../../inc/themes/material-blue/editpass.inc:41 -#: ../../../../inc/themes/material-blue/encryption.inc:164 +#: ../../../../inc/themes/material-blue/encryption.inc:161 #: ../../../../inc/themes/material-blue/install.inc:46 #: ../../../../inc/themes/material-blue/ldap.inc:105 #: ../../../../inc/themes/material-blue/login.inc:18 @@ -700,28 +734,32 @@ msgstr "" msgid "Clave" msgstr "" -#: ../../../../ajax/ajax_configSave.php:290 +#: ../../../../ajax/ajax_configSave.php:319 msgid "Clave Temporal Generada" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:46 +#: ../../../../ajax/ajax_configSave.php:321 +msgid "Error al generar clave temporal" +msgstr "" + +#: ../../../../ajax/ajax_doLogin.php:49 msgid "Usuario/Clave no introducidos" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:58 +#: ../../../../ajax/ajax_doLogin.php:61 msgid "Inicio sesión" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:63 +#: ../../../../ajax/ajax_doLogin.php:66 msgid "Servidor Login" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:69 +#: ../../../../ajax/ajax_doLogin.php:72 msgid "Error al guardar los datos de LDAP" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:72 ../../../../ajax/ajax_doLogin.php:80 -#: ../../../../ajax/ajax_doLogin.php:132 ../../../../ajax/ajax_doLogin.php:176 +#: ../../../../ajax/ajax_doLogin.php:75 ../../../../ajax/ajax_doLogin.php:83 +#: ../../../../ajax/ajax_doLogin.php:135 ../../../../ajax/ajax_doLogin.php:179 #: ../../../../inc/ApiTokens.class.php:140 #: ../../../../inc/ApiTokens.class.php:186 #: ../../../../inc/ApiTokens.class.php:217 @@ -730,30 +768,32 @@ msgstr "" #: ../../../../inc/ApiTokens.class.php:304 #: ../../../../inc/ApiTokens.class.php:328 ../../../../inc/Crypt.class.php:181 #: ../../../../inc/Crypt.class.php:192 -#: ../../../../inc/XmlImportBase.class.php:74 +#: ../../../../inc/XmlImportBase.class.php:79 msgid "Error interno" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:77 +#: ../../../../ajax/ajax_doLogin.php:80 msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:85 ../../../../ajax/ajax_doLogin.php:110 +#: ../../../../ajax/ajax_doLogin.php:88 ../../../../ajax/ajax_doLogin.php:113 msgid "Login incorrecto" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:86 ../../../../ajax/ajax_doLogin.php:93 -#: ../../../../ajax/ajax_doLogin.php:100 ../../../../ajax/ajax_doLogin.php:111 -#: ../../../../ajax/ajax_doLogin.php:121 ../../../../ajax/ajax_doLogin.php:171 +#: ../../../../ajax/ajax_doLogin.php:89 ../../../../ajax/ajax_doLogin.php:96 +#: ../../../../ajax/ajax_doLogin.php:103 ../../../../ajax/ajax_doLogin.php:114 +#: ../../../../ajax/ajax_doLogin.php:124 ../../../../ajax/ajax_doLogin.php:174 #: ../../../../inc/ApiTokens.class.php:190 #: ../../../../inc/ApiTokens.class.php:308 ../../../../inc/Auth.class.php:108 -#: ../../../../inc/Init.class.php:457 ../../../../inc/UserBase.class.php:382 -#: ../../../../inc/UserBase.class.php:526 ../../../../res/test.php:64 -#: ../../../../web/SearchC.class.php:304 -#: ../../../../web/UsersMgmtC.class.php:392 +#: ../../../../inc/Init.class.php:457 ../../../../inc/Ldap.class.php:290 +#: ../../../../inc/Ldap.class.php:303 ../../../../inc/Ldap.class.php:311 +#: ../../../../inc/UserBase.class.php:384 +#: ../../../../inc/UserBase.class.php:528 ../../../../res/test.php:64 +#: ../../../../web/SearchC.class.php:303 +#: ../../../../web/UsersMgmtC.class.php:393 #: ../../../../inc/themes/classic/account.inc:73 #: ../../../../inc/themes/classic/editpass.inc:21 -#: ../../../../inc/themes/classic/eventlog.inc:25 +#: ../../../../inc/themes/classic/eventlog.inc:23 #: ../../../../inc/themes/classic/info.inc:39 #: ../../../../inc/themes/classic/install.inc:27 #: ../../../../inc/themes/classic/install.inc:28 @@ -767,7 +807,7 @@ msgstr "" #: ../../../../inc/themes/material-blue/account.inc:83 #: ../../../../inc/themes/material-blue/config.inc:381 #: ../../../../inc/themes/material-blue/editpass.inc:22 -#: ../../../../inc/themes/material-blue/eventlog.inc:24 +#: ../../../../inc/themes/material-blue/eventlog.inc:23 #: ../../../../inc/themes/material-blue/info.inc:39 #: ../../../../inc/themes/material-blue/login.inc:11 #: ../../../../inc/themes/material-blue/login.inc:34 @@ -775,53 +815,55 @@ msgstr "" #: ../../../../inc/themes/material-blue/mail.inc:67 #: ../../../../inc/themes/material-blue/passreset.inc:16 #: ../../../../inc/themes/material-blue/request.inc:20 -#: ../../../../inc/themes/material-blue/search.inc:55 +#: ../../../../inc/themes/material-blue/search.inc:91 #: ../../../../inc/themes/material-blue/tokens.inc:8 msgid "Usuario" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:89 ../../../../ajax/ajax_doLogin.php:103 -#: ../../../../ajax/ajax_doLogin.php:114 +#: ../../../../ajax/ajax_doLogin.php:92 ../../../../ajax/ajax_doLogin.php:106 +#: ../../../../ajax/ajax_doLogin.php:117 msgid "Usuario/Clave incorrectos" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:92 ../../../../ajax/ajax_doLogin.php:96 +#: ../../../../ajax/ajax_doLogin.php:95 ../../../../ajax/ajax_doLogin.php:99 msgid "Cuenta expirada" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:99 +#: ../../../../ajax/ajax_doLogin.php:102 msgid "El usuario no tiene grupos asociados" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:120 ../../../../ajax/ajax_doLogin.php:124 +#: ../../../../ajax/ajax_doLogin.php:123 ../../../../ajax/ajax_doLogin.php:127 msgid "Usuario deshabilitado" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:129 +#: ../../../../ajax/ajax_doLogin.php:132 msgid "Error al obtener los datos del usuario de la BBDD" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:139 +#: ../../../../ajax/ajax_doLogin.php:142 msgid "La clave maestra no ha sido guardada o es incorrecta" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:146 ../../../../ajax/ajax_doLogin.php:149 +#: ../../../../ajax/ajax_doLogin.php:149 ../../../../ajax/ajax_doLogin.php:152 msgid "Clave maestra incorrecta" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:172 +#: ../../../../ajax/ajax_doLogin.php:175 #: ../../../../inc/ProfileBase.class.php:512 #: ../../../../inc/ProfileBase.class.php:550 #: ../../../../inc/ProfileBase.class.php:593 -#: ../../../../web/UsersMgmtC.class.php:89 +#: ../../../../web/UsersMgmtC.class.php:90 #: ../../../../inc/themes/classic/users.inc:37 #: ../../../../inc/themes/material-blue/users.inc:43 msgid "Perfil" msgstr "" -#: ../../../../ajax/ajax_doLogin.php:173 ../../../../inc/Groups.class.php:158 +#: ../../../../ajax/ajax_doLogin.php:176 ../../../../inc/Groups.class.php:158 #: ../../../../inc/Groups.class.php:259 ../../../../inc/Groups.class.php:375 -#: ../../../../web/UsersMgmtC.class.php:90 +#: ../../../../inc/Ldap.class.php:213 ../../../../inc/Ldap.class.php:226 +#: ../../../../inc/Ldap.class.php:236 ../../../../inc/Ldap.class.php:385 +#: ../../../../web/UsersMgmtC.class.php:91 #: ../../../../inc/themes/classic/ldap.inc:116 #: ../../../../inc/themes/classic/users.inc:49 #: ../../../../inc/themes/material-blue/ldap.inc:139 @@ -830,191 +872,191 @@ msgstr "" msgid "Grupo" msgstr "" -#: ../../../../ajax/ajax_files.php:45 ../../../../ajax/ajax_getFiles.php:39 +#: ../../../../ajax/ajax_files.php:46 ../../../../ajax/ajax_getFiles.php:40 msgid "Gestión de archivos deshabilitada" msgstr "" -#: ../../../../ajax/ajax_files.php:59 ../../../../inc/Files.class.php:63 +#: ../../../../ajax/ajax_files.php:60 ../../../../inc/Files.class.php:63 msgid "Subir Archivo" msgstr "" -#: ../../../../ajax/ajax_files.php:68 +#: ../../../../ajax/ajax_files.php:69 msgid "No hay extensiones permitidas" msgstr "" -#: ../../../../ajax/ajax_files.php:79 ../../../../inc/FileImport.class.php:115 +#: ../../../../ajax/ajax_files.php:80 ../../../../inc/FileImport.class.php:115 msgid "Tipo de archivo no soportado" msgstr "" -#: ../../../../ajax/ajax_files.php:85 +#: ../../../../ajax/ajax_files.php:86 msgid "Archivo inválido" msgstr "" -#: ../../../../ajax/ajax_files.php:101 ../../../../ajax/ajax_files.php:118 +#: ../../../../ajax/ajax_files.php:102 ../../../../ajax/ajax_files.php:119 #: ../../../../inc/FileImport.class.php:131 #: ../../../../inc/FileImport.class.php:149 #: ../../../../inc/FileImport.class.php:167 msgid "Error interno al leer el archivo" msgstr "" -#: ../../../../ajax/ajax_files.php:108 +#: ../../../../ajax/ajax_files.php:109 msgid "El archivo es mayor de " msgstr "" -#: ../../../../ajax/ajax_files.php:125 +#: ../../../../ajax/ajax_files.php:126 msgid "Archivo guardado" msgstr "" -#: ../../../../ajax/ajax_files.php:130 +#: ../../../../ajax/ajax_files.php:131 msgid "No se pudo guardar el archivo" msgstr "" -#: ../../../../ajax/ajax_files.php:140 ../../../../ajax/ajax_files.php:199 +#: ../../../../ajax/ajax_files.php:141 ../../../../ajax/ajax_files.php:200 msgid "No es un ID de archivo válido" msgstr "" -#: ../../../../ajax/ajax_files.php:148 +#: ../../../../ajax/ajax_files.php:149 msgid "El archivo no existe" msgstr "" -#: ../../../../ajax/ajax_files.php:157 +#: ../../../../ajax/ajax_files.php:158 #: ../../../../inc/themes/classic/files.inc:19 #: ../../../../inc/themes/material-blue/files.inc:19 msgid "Descargar Archivo" msgstr "" -#: ../../../../ajax/ajax_files.php:158 ../../../../ajax/ajax_viewpass.php:69 +#: ../../../../ajax/ajax_files.php:159 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/Files.class.php:112 -#: ../../../../inc/themes/classic/eventlog.inc:16 -#: ../../../../inc/themes/material-blue/eventlog.inc:15 +#: ../../../../inc/themes/classic/eventlog.inc:14 +#: ../../../../inc/themes/material-blue/eventlog.inc:14 msgid "ID" msgstr "" -#: ../../../../ajax/ajax_files.php:159 ../../../../inc/Files.class.php:65 +#: ../../../../ajax/ajax_files.php:160 ../../../../inc/Files.class.php:65 #: ../../../../inc/Files.class.php:113 -#: ../../../../inc/themes/classic/import.inc:155 -#: ../../../../inc/themes/material-blue/import.inc:83 +#: ../../../../inc/themes/classic/import.inc:152 +#: ../../../../inc/themes/material-blue/import.inc:80 msgid "Archivo" msgstr "" -#: ../../../../ajax/ajax_files.php:160 ../../../../inc/Files.class.php:66 +#: ../../../../ajax/ajax_files.php:161 ../../../../inc/Files.class.php:66 #: ../../../../inc/Files.class.php:114 -#: ../../../../web/AccountsMgmtC.class.php:266 +#: ../../../../web/AccountsMgmtC.class.php:267 #: ../../../../inc/themes/classic/customfields.inc:16 #: ../../../../inc/themes/material-blue/customfields.inc:19 msgid "Tipo" msgstr "" -#: ../../../../ajax/ajax_files.php:161 ../../../../inc/Files.class.php:67 +#: ../../../../ajax/ajax_files.php:162 ../../../../inc/Files.class.php:67 #: ../../../../inc/Files.class.php:115 msgid "Tamaño" msgstr "" -#: ../../../../ajax/ajax_files.php:203 +#: ../../../../ajax/ajax_files.php:204 msgid "Archivo eliminado" msgstr "" -#: ../../../../ajax/ajax_files.php:208 +#: ../../../../ajax/ajax_files.php:209 msgid "Error al eliminar el archivo" msgstr "" #: ../../../../ajax/ajax_getContent.php:42 #: ../../../../inc/ApiRequest.class.php:55 -#: ../../../../inc/CustomFieldDef.class.php:38 -#: ../../../../inc/CustomFields.class.php:48 +#: ../../../../inc/CustomFieldDef.class.php:45 +#: ../../../../inc/CustomFields.class.php:54 msgid "Parámetros incorrectos" msgstr "" -#: ../../../../ajax/ajax_migrate.php:55 +#: ../../../../ajax/ajax_migrate.php:56 msgid "Confirmar la importación de cuentas" msgstr "" -#: ../../../../ajax/ajax_migrate.php:57 +#: ../../../../ajax/ajax_migrate.php:58 msgid "Es necesario un usuario de conexión" msgstr "" -#: ../../../../ajax/ajax_migrate.php:59 +#: ../../../../ajax/ajax_migrate.php:60 msgid "Es necesaria una clave de conexión" msgstr "" -#: ../../../../ajax/ajax_migrate.php:61 +#: ../../../../ajax/ajax_migrate.php:62 msgid "Es necesario el nombre de la BBDD" msgstr "" -#: ../../../../ajax/ajax_migrate.php:63 +#: ../../../../ajax/ajax_migrate.php:64 msgid "Es necesario un nombre de host" msgstr "" -#: ../../../../ajax/ajax_passReset.php:47 #: ../../../../ajax/ajax_passReset.php:50 +#: ../../../../ajax/ajax_passReset.php:53 msgid "Recuperación de Clave" msgstr "" -#: ../../../../ajax/ajax_passReset.php:53 -#: ../../../../ajax/ajax_passReset.php:58 +#: ../../../../ajax/ajax_passReset.php:56 +#: ../../../../ajax/ajax_passReset.php:61 msgid "Solicitado para" msgstr "" -#: ../../../../ajax/ajax_passReset.php:55 -#: ../../../../ajax/ajax_sendRequest.php:75 +#: ../../../../ajax/ajax_passReset.php:58 +#: ../../../../ajax/ajax_sendRequest.php:76 msgid "Solicitud enviada" msgstr "" -#: ../../../../ajax/ajax_passReset.php:55 +#: ../../../../ajax/ajax_passReset.php:58 msgid "En breve recibirá un correo para completar la solicitud." msgstr "" -#: ../../../../ajax/ajax_passReset.php:60 +#: ../../../../ajax/ajax_passReset.php:63 msgid "No se ha podido realizar la solicitud. Consulte con el administrador." msgstr "" -#: ../../../../ajax/ajax_passReset.php:72 -#: ../../../../inc/UserBase.class.php:568 -#: ../../../../inc/UserUtil.class.php:662 +#: ../../../../ajax/ajax_passReset.php:73 +#: ../../../../inc/UserBase.class.php:570 +#: ../../../../inc/UserPass.class.php:127 msgid "Modificar Clave Usuario" msgstr "" -#: ../../../../ajax/ajax_passReset.php:72 -#: ../../../../inc/UserBase.class.php:568 -#: ../../../../inc/UserBase.class.php:592 -#: ../../../../inc/UserUtil.class.php:662 -#: ../../../../web/UsersMgmtC.class.php:88 +#: ../../../../ajax/ajax_passReset.php:73 +#: ../../../../inc/UserBase.class.php:570 +#: ../../../../inc/UserBase.class.php:594 +#: ../../../../inc/UserPass.class.php:127 +#: ../../../../web/UsersMgmtC.class.php:89 #: ../../../../inc/themes/classic/users.inc:21 #: ../../../../inc/themes/material-blue/users.inc:24 msgid "Login" msgstr "" -#: ../../../../ajax/ajax_passReset.php:80 +#: ../../../../ajax/ajax_passReset.php:81 msgid "La clave es incorrecta o no coincide" msgstr "" -#: ../../../../ajax/ajax_sendRequest.php:48 +#: ../../../../ajax/ajax_sendRequest.php:49 msgid "Es necesaria una descripción" msgstr "" -#: ../../../../ajax/ajax_sendRequest.php:61 +#: ../../../../ajax/ajax_sendRequest.php:62 msgid "Solicitud de Modificación de Cuenta" msgstr "" -#: ../../../../ajax/ajax_sendRequest.php:62 +#: ../../../../ajax/ajax_sendRequest.php:63 msgid "Solicitante" msgstr "" -#: ../../../../ajax/ajax_sendRequest.php:63 -#: ../../../../ajax/ajax_viewpass.php:70 ../../../../inc/Account.class.php:165 -#: ../../../../inc/Account.class.php:219 ../../../../inc/Account.class.php:400 -#: ../../../../inc/Account.class.php:423 ../../../../inc/Account.class.php:665 +#: ../../../../ajax/ajax_sendRequest.php:64 +#: ../../../../ajax/ajax_viewpass.php:71 ../../../../inc/Account.class.php:181 +#: ../../../../inc/Account.class.php:236 ../../../../inc/Account.class.php:417 +#: ../../../../inc/Account.class.php:440 ../../../../inc/Account.class.php:682 #: ../../../../inc/Files.class.php:64 msgid "Cuenta" msgstr "" -#: ../../../../ajax/ajax_sendRequest.php:64 -#: ../../../../inc/Account.class.php:164 ../../../../inc/Account.class.php:218 -#: ../../../../inc/Account.class.php:399 ../../../../inc/Account.class.php:422 -#: ../../../../inc/Account.class.php:664 ../../../../inc/Customer.class.php:65 +#: ../../../../ajax/ajax_sendRequest.php:65 +#: ../../../../inc/Account.class.php:180 ../../../../inc/Account.class.php:235 +#: ../../../../inc/Account.class.php:416 ../../../../inc/Account.class.php:439 +#: ../../../../inc/Account.class.php:681 ../../../../inc/Customer.class.php:65 #: ../../../../inc/Customer.class.php:115 #: ../../../../inc/Customer.class.php:163 -#: ../../../../web/SearchC.class.php:286 +#: ../../../../web/SearchC.class.php:285 #: ../../../../inc/themes/classic/account.inc:23 #: ../../../../inc/themes/classic/editpass.inc:12 #: ../../../../inc/themes/classic/request.inc:9 @@ -1022,59 +1064,59 @@ msgstr "" #: ../../../../inc/themes/material-blue/account.inc:29 #: ../../../../inc/themes/material-blue/editpass.inc:13 #: ../../../../inc/themes/material-blue/request.inc:10 -#: ../../../../inc/themes/material-blue/search.inc:24 +#: ../../../../inc/themes/material-blue/search.inc:60 msgid "Cliente" msgstr "" -#: ../../../../ajax/ajax_sendRequest.php:65 -#: ../../../../web/AccountsMgmtC.class.php:79 -#: ../../../../web/AccountsMgmtC.class.php:138 -#: ../../../../web/UsersMgmtC.class.php:187 +#: ../../../../ajax/ajax_sendRequest.php:66 +#: ../../../../web/AccountsMgmtC.class.php:80 +#: ../../../../web/AccountsMgmtC.class.php:139 +#: ../../../../web/UsersMgmtC.class.php:188 #: ../../../../inc/themes/classic/categories.inc:16 #: ../../../../inc/themes/classic/customers.inc:16 -#: ../../../../inc/themes/classic/eventlog.inc:31 +#: ../../../../inc/themes/classic/eventlog.inc:29 #: ../../../../inc/themes/classic/groups.inc:16 #: ../../../../inc/themes/material-blue/categories.inc:20 #: ../../../../inc/themes/material-blue/customers.inc:20 -#: ../../../../inc/themes/material-blue/eventlog.inc:30 +#: ../../../../inc/themes/material-blue/eventlog.inc:29 #: ../../../../inc/themes/material-blue/groups.inc:20 msgid "Descripción" msgstr "" -#: ../../../../ajax/ajax_sendRequest.php:78 +#: ../../../../ajax/ajax_sendRequest.php:79 msgid "Error al enviar la solicitud" msgstr "" -#: ../../../../ajax/ajax_userPrefsSave.php:70 -#: ../../../../ajax/ajax_userPrefsSave.php:103 +#: ../../../../ajax/ajax_userPrefsSave.php:73 +#: ../../../../ajax/ajax_userPrefsSave.php:106 msgid "Error al actualizar preferencias" msgstr "" -#: ../../../../ajax/ajax_userPrefsSave.php:80 -#: ../../../../ajax/ajax_userPrefsSave.php:106 +#: ../../../../ajax/ajax_userPrefsSave.php:83 +#: ../../../../ajax/ajax_userPrefsSave.php:109 msgid "Preferencias actualizadas" msgstr "" -#: ../../../../ajax/ajax_viewpass.php:54 +#: ../../../../ajax/ajax_viewpass.php:55 msgid "La clave maestra no coincide" msgstr "" -#: ../../../../ajax/ajax_viewpass.php:58 +#: ../../../../ajax/ajax_viewpass.php:59 #: ../../../../inc/Controller.class.php:166 msgid "No tiene permisos para acceder a esta cuenta" msgstr "" -#: ../../../../ajax/ajax_viewpass.php:68 ../../../../inc/Acl.class.php:133 +#: ../../../../ajax/ajax_viewpass.php:69 ../../../../inc/Acl.class.php:133 #: ../../../../inc/themes/classic/account.inc:382 #: ../../../../inc/themes/classic/profiles.inc:23 #: ../../../../inc/themes/classic/search.inc:109 -#: ../../../../inc/themes/material-blue/account.inc:422 +#: ../../../../inc/themes/material-blue/account.inc:424 #: ../../../../inc/themes/material-blue/profiles.inc:35 -#: ../../../../inc/themes/material-blue/search.inc:113 +#: ../../../../inc/themes/material-blue/search.inc:149 msgid "Ver Clave" msgstr "" -#: ../../../../ajax/ajax_viewpass.php:79 ../../../../js/strings.js.php:73 +#: ../../../../ajax/ajax_viewpass.php:80 ../../../../js/strings.js.php:73 msgid "Clave de Cuenta" msgstr "" @@ -1089,11 +1131,19 @@ msgstr "" #: ../../../../inc/AccountSearch.class.php:28 ../../../../inc/Acl.class.php:29 #: ../../../../inc/Api.class.php:30 ../../../../inc/ApiRequest.class.php:28 #: ../../../../inc/ApiTokens.class.php:28 ../../../../inc/Auth.class.php:29 -#: ../../../../inc/Auth2FA.class.php:32 ../../../../inc/Backup.class.php:28 -#: ../../../../inc/Category.class.php:29 ../../../../inc/Common.class.php:28 -#: ../../../../inc/Config.class.php:28 ../../../../inc/Controller.class.php:31 -#: ../../../../inc/Crypt.class.php:28 ../../../../inc/CsvImport.class.php:28 +#: ../../../../inc/Auth2FA.class.php:33 ../../../../inc/Backup.class.php:28 +#: ../../../../inc/Base.php:26 ../../../../inc/Cache.class.php:28 +#: ../../../../inc/Category.class.php:29 ../../../../inc/Config.class.php:28 +#: ../../../../inc/ConfigDB.class.php:28 +#: ../../../../inc/ConfigInterface.class.php:28 +#: ../../../../inc/Controller.class.php:31 ../../../../inc/Crypt.class.php:28 +#: ../../../../inc/CryptMasterPass.class.php:28 +#: ../../../../inc/CryptPKI.class.php:28 +#: ../../../../inc/CsvImport.class.php:28 #: ../../../../inc/CsvImportBase.class.php:28 +#: ../../../../inc/CustomFieldDef.class.php:28 +#: ../../../../inc/CustomFields.class.php:28 +#: ../../../../inc/CustomFieldsBase.class.php:28 #: ../../../../inc/Customer.class.php:29 ../../../../inc/DB.class.php:28 #: ../../../../inc/DBConnectionFactory.class.php:30 #: ../../../../inc/FileImport.class.php:28 ../../../../inc/Files.class.php:29 @@ -1108,25 +1158,34 @@ msgstr "" #: ../../../../inc/Migrate.class.php:28 ../../../../inc/Minify.class.php:30 #: ../../../../inc/Profile.class.php:29 #: ../../../../inc/ProfileBase.class.php:28 -#: ../../../../inc/Request.class.php:110 ../../../../inc/Session.class.php:28 +#: ../../../../inc/Request.class.php:110 ../../../../inc/Response.class.php:28 +#: ../../../../inc/SPException.class.php:28 +#: ../../../../inc/Session.class.php:28 +#: ../../../../inc/SessionUtil.class.php:28 #: ../../../../inc/SyspassImport.class.php:28 -#: ../../../../inc/Themes.class.php:28 ../../../../inc/Upgrade.class.php:29 -#: ../../../../inc/User.class.php:28 ../../../../inc/UserLdap.class.php:28 +#: ../../../../inc/Template.class.php:27 ../../../../inc/Themes.class.php:28 +#: ../../../../inc/Upgrade.class.php:29 ../../../../inc/User.class.php:28 +#: ../../../../inc/UserAccounts.class.php:28 +#: ../../../../inc/UserBase.class.php:28 ../../../../inc/UserLdap.class.php:28 +#: ../../../../inc/UserMigrate.class.php:28 +#: ../../../../inc/UserPass.class.php:28 +#: ../../../../inc/UserPassRecover.class.php:28 #: ../../../../inc/UserPreferences.class.php:28 -#: ../../../../inc/UserUtil.class.php:28 ../../../../inc/Util.class.php:31 +#: ../../../../inc/UserUtil.class.php:28 ../../../../inc/Util.class.php:28 +#: ../../../../inc/XmlExport.class.php:28 #: ../../../../inc/XmlImport.class.php:28 #: ../../../../inc/XmlImportBase.class.php:28 -#: ../../../../web/AccountC.class.php:38 -#: ../../../../web/AccountsMgmtC.class.php:32 -#: ../../../../web/ConfigC.class.php:33 ../../../../web/EventlogC.class.php:28 -#: ../../../../web/SearchC.class.php:31 -#: ../../../../web/UsersMgmtC.class.php:39 -#: ../../../../web/UsersPrefsC.class.php:34 +#: ../../../../web/AccountC.class.php:41 +#: ../../../../web/AccountsMgmtC.class.php:33 +#: ../../../../web/ConfigC.class.php:35 ../../../../web/EventlogC.class.php:30 +#: ../../../../web/SearchC.class.php:33 +#: ../../../../web/UsersMgmtC.class.php:40 +#: ../../../../web/UsersPrefsC.class.php:35 msgid "No es posible acceder directamente a este archivo" msgstr "" -#: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:185 -#: ../../../../inc/Account.class.php:634 +#: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:201 +#: ../../../../inc/Account.class.php:651 msgid "Error al actualizar el historial" msgstr "" @@ -1134,121 +1193,121 @@ msgstr "" msgid "Actualizar Cuenta" msgstr "" -#: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:381 +#: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:398 msgid "Error al actualizar los grupos secundarios" msgstr "" -#: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:389 +#: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:406 msgid "Error al actualizar los usuarios de la cuenta" msgstr "" -#: ../../../../inc/Account.class.php:217 +#: ../../../../inc/Account.class.php:234 msgid "Restaurar Cuenta" msgstr "" -#: ../../../../inc/Account.class.php:324 -#: ../../../../inc/AccountHistory.class.php:343 -#: ../../../../inc/AccountHistory.class.php:503 +#: ../../../../inc/Account.class.php:341 +#: ../../../../inc/AccountHistory.class.php:348 +#: ../../../../inc/AccountHistory.class.php:508 msgid "No se pudieron obtener los datos de la cuenta" msgstr "" -#: ../../../../inc/Account.class.php:398 ../../../../inc/Acl.class.php:129 -#: ../../../../web/AccountC.class.php:147 ../../../../web/MainC.class.php:183 +#: ../../../../inc/Account.class.php:415 ../../../../inc/Acl.class.php:129 +#: ../../../../web/AccountC.class.php:150 ../../../../web/MainC.class.php:183 msgid "Nueva Cuenta" msgstr "" -#: ../../../../inc/Account.class.php:416 +#: ../../../../inc/Account.class.php:433 msgid "ERROR: Error en la operación." msgstr "" -#: ../../../../inc/Account.class.php:421 ../../../../inc/Acl.class.php:134 -#: ../../../../web/AccountC.class.php:353 +#: ../../../../inc/Account.class.php:438 ../../../../inc/Acl.class.php:134 +#: ../../../../web/AccountC.class.php:356 #: ../../../../inc/themes/classic/account.inc:369 #: ../../../../inc/themes/classic/search.inc:137 -#: ../../../../inc/themes/material-blue/account.inc:416 -#: ../../../../inc/themes/material-blue/search.inc:140 +#: ../../../../inc/themes/material-blue/account.inc:418 +#: ../../../../inc/themes/material-blue/search.inc:178 msgid "Eliminar Cuenta" msgstr "" -#: ../../../../inc/Account.class.php:434 +#: ../../../../inc/Account.class.php:451 msgid "Error al eliminar grupos asociados a la cuenta" msgstr "" -#: ../../../../inc/Account.class.php:438 +#: ../../../../inc/Account.class.php:455 msgid "Error al eliminar usuarios asociados a la cuenta" msgstr "" -#: ../../../../inc/Account.class.php:442 +#: ../../../../inc/Account.class.php:459 msgid "Error al eliminar archivos asociados a la cuenta" msgstr "" -#: ../../../../inc/Account.class.php:496 -#: ../../../../inc/AccountHistory.class.php:124 +#: ../../../../inc/Account.class.php:513 +#: ../../../../inc/AccountHistory.class.php:129 #: ../../../../inc/XmlImport.class.php:62 msgid "Inicio" msgstr "" -#: ../../../../inc/Account.class.php:501 -#: ../../../../inc/AccountHistory.class.php:130 +#: ../../../../inc/Account.class.php:518 +#: ../../../../inc/AccountHistory.class.php:135 msgid "Error en el módulo de encriptación" msgstr "" -#: ../../../../inc/Account.class.php:509 -#: ../../../../inc/AccountHistory.class.php:138 +#: ../../../../inc/Account.class.php:526 +#: ../../../../inc/AccountHistory.class.php:143 msgid "Error al obtener las claves de las cuentas" msgstr "" -#: ../../../../inc/Account.class.php:525 -#: ../../../../inc/AccountHistory.class.php:160 +#: ../../../../inc/Account.class.php:542 +#: ../../../../inc/AccountHistory.class.php:165 msgid "Clave de cuenta vacía" msgstr "" -#: ../../../../inc/Account.class.php:530 -#: ../../../../inc/AccountHistory.class.php:165 +#: ../../../../inc/Account.class.php:547 +#: ../../../../inc/AccountHistory.class.php:170 msgid "IV de encriptación incorrecto" msgstr "" -#: ../../../../inc/Account.class.php:539 -#: ../../../../inc/AccountHistory.class.php:174 +#: ../../../../inc/Account.class.php:556 +#: ../../../../inc/AccountHistory.class.php:179 msgid "No es posible desencriptar la clave de la cuenta" msgstr "" -#: ../../../../inc/Account.class.php:545 +#: ../../../../inc/Account.class.php:562 msgid "Fallo al actualizar la clave de la cuenta" msgstr "" -#: ../../../../inc/Account.class.php:559 +#: ../../../../inc/Account.class.php:576 msgid "Cuentas actualizadas" msgstr "" -#: ../../../../inc/Account.class.php:564 -#: ../../../../inc/AccountHistory.class.php:199 -#: ../../../../inc/CustomFields.class.php:319 +#: ../../../../inc/Account.class.php:581 +#: ../../../../inc/AccountHistory.class.php:204 +#: ../../../../inc/CustomFields.class.php:325 msgid "Fin" msgstr "" -#: ../../../../inc/Account.class.php:663 +#: ../../../../inc/Account.class.php:680 msgid "Modificar Clave" msgstr "" -#: ../../../../inc/Account.class.php:698 +#: ../../../../inc/Account.class.php:715 msgid "No se pudieron obtener los datos de las cuentas" msgstr "" -#: ../../../../inc/AccountHistory.class.php:123 +#: ../../../../inc/AccountHistory.class.php:128 msgid "Actualizar Clave Maestra (H)" msgstr "" -#: ../../../../inc/AccountHistory.class.php:155 +#: ../../../../inc/AccountHistory.class.php:160 msgid "La clave maestra del registro no coincide" msgstr "" -#: ../../../../inc/AccountHistory.class.php:180 +#: ../../../../inc/AccountHistory.class.php:185 msgid "Fallo al actualizar la clave del histórico" msgstr "" -#: ../../../../inc/AccountHistory.class.php:194 -#: ../../../../inc/CustomFields.class.php:315 +#: ../../../../inc/AccountHistory.class.php:199 +#: ../../../../inc/CustomFields.class.php:321 msgid "Registros actualizados" msgstr "" @@ -1264,13 +1323,13 @@ msgstr "" msgid "Ver Cuenta" msgstr "" -#: ../../../../inc/Acl.class.php:128 ../../../../web/AccountC.class.php:260 +#: ../../../../inc/Acl.class.php:128 ../../../../web/AccountC.class.php:263 #: ../../../../inc/themes/classic/search.inc:131 -#: ../../../../inc/themes/material-blue/search.inc:134 +#: ../../../../inc/themes/material-blue/search.inc:172 msgid "Copiar Cuenta" msgstr "" -#: ../../../../inc/Acl.class.php:130 ../../../../web/AccountC.class.php:324 +#: ../../../../inc/Acl.class.php:130 ../../../../web/AccountC.class.php:327 msgid "Editar Cuenta" msgstr "" @@ -1329,8 +1388,8 @@ msgstr "" msgid "Gestión Perfiles" msgstr "" -#: ../../../../inc/Acl.class.php:146 ../../../../inc/Config.class.php:118 -#: ../../../../inc/Config.class.php:403 ../../../../web/MainC.class.php:201 +#: ../../../../inc/Acl.class.php:146 ../../../../inc/ConfigDB.class.php:91 +#: ../../../../inc/ConfigDB.class.php:119 ../../../../web/MainC.class.php:201 #: ../../../../inc/themes/classic/profiles.inc:57 #: ../../../../inc/themes/material-blue/profiles.inc:66 msgid "Configuración" @@ -1340,13 +1399,13 @@ msgstr "" msgid "Configuración General" msgstr "" -#: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:130 +#: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:132 #: ../../../../inc/themes/classic/profiles.inc:65 #: ../../../../inc/themes/material-blue/profiles.inc:77 msgid "Encriptación" msgstr "" -#: ../../../../inc/Acl.class.php:149 ../../../../web/ConfigC.class.php:175 +#: ../../../../inc/Acl.class.php:149 ../../../../web/ConfigC.class.php:177 #: ../../../../inc/themes/classic/backup.inc:4 #: ../../../../inc/themes/material-blue/backup.inc:4 msgid "Copia de Seguridad" @@ -1404,7 +1463,7 @@ msgid "Actualizar Autorización" msgstr "" #: ../../../../inc/ApiTokens.class.php:331 -#: ../../../../web/UsersMgmtC.class.php:421 +#: ../../../../web/UsersMgmtC.class.php:422 msgid "Eliminar Autorización" msgstr "" @@ -1441,12 +1500,12 @@ msgid "Error al realizar backup en modo compatibilidad" msgstr "" #: ../../../../inc/Backup.class.php:223 -#: ../../../../inc/XmlExport.class.php:465 +#: ../../../../inc/XmlExport.class.php:467 msgid "No es posible crear el directorio de backups" msgstr "" #: ../../../../inc/Backup.class.php:228 -#: ../../../../inc/XmlExport.class.php:470 +#: ../../../../inc/XmlExport.class.php:472 msgid "Compruebe los permisos del directorio de backups" msgstr "" @@ -1462,11 +1521,11 @@ msgstr "" #: ../../../../inc/Category.class.php:83 #: ../../../../inc/Category.class.php:132 #: ../../../../inc/Category.class.php:182 -#: ../../../../web/SearchC.class.php:298 +#: ../../../../web/SearchC.class.php:297 #: ../../../../inc/themes/classic/account.inc:42 #: ../../../../inc/themes/classic/search.inc:53 #: ../../../../inc/themes/material-blue/account.inc:50 -#: ../../../../inc/themes/material-blue/search.inc:49 +#: ../../../../inc/themes/material-blue/search.inc:85 msgid "Categoría" msgstr "" @@ -1479,7 +1538,7 @@ msgid "Error al eliminar la categoría" msgstr "" #: ../../../../inc/Category.class.php:132 -#: ../../../../web/AccountsMgmtC.class.php:101 +#: ../../../../web/AccountsMgmtC.class.php:102 msgid "Eliminar Categoría" msgstr "" @@ -1491,23 +1550,24 @@ msgstr "" msgid "Modificar Categoría" msgstr "" -#: ../../../../inc/Config.class.php:118 ../../../../inc/Config.class.php:404 -msgid "Modificar configuración" -msgstr "" - -#: ../../../../inc/Config.class.php:276 +#: ../../../../inc/Config.class.php:148 msgid "No es posible escribir el archivo de configuración" msgstr "" -#: ../../../../inc/Config.class.php:276 +#: ../../../../inc/Config.class.php:148 msgid "Compruebe los permisos del directorio \"config\"" msgstr "" -#: ../../../../inc/Config.class.php:405 +#: ../../../../inc/ConfigDB.class.php:91 +#: ../../../../inc/ConfigDB.class.php:120 +msgid "Modificar configuración" +msgstr "" + +#: ../../../../inc/ConfigDB.class.php:121 msgid "Parámetro" msgstr "" -#: ../../../../inc/Config.class.php:406 +#: ../../../../inc/ConfigDB.class.php:122 msgid "Valor" msgstr "" @@ -1530,7 +1590,7 @@ msgstr "" msgid "No tiene permisos para realizar esta operación" msgstr "" -#: ../../../../inc/Crypt.class.php:119 ../../../../inc/Email.class.php:146 +#: ../../../../inc/Crypt.class.php:119 ../../../../inc/Email.class.php:148 msgid "Aviso" msgstr "" @@ -1547,12 +1607,12 @@ msgstr "" msgid "Error al generar datos cifrados" msgstr "" -#: ../../../../inc/CryptPKI.class.php:44 +#: ../../../../inc/CryptPKI.class.php:46 msgid "No es posible generar las claves RSA" msgstr "" -#: ../../../../inc/CryptPKI.class.php:110 -#: ../../../../inc/CryptPKI.class.php:141 +#: ../../../../inc/CryptPKI.class.php:112 +#: ../../../../inc/CryptPKI.class.php:143 msgid "El archivo de clave no existe" msgstr "" @@ -1569,10 +1629,10 @@ msgstr "" #: ../../../../inc/CsvImportBase.class.php:140 #: ../../../../inc/CsvImportBase.class.php:145 #: ../../../../inc/Import.class.php:118 ../../../../inc/Import.class.php:124 -#: ../../../../inc/Migrate.class.php:349 +#: ../../../../inc/Migrate.class.php:348 #: ../../../../inc/XmlImport.class.php:62 #: ../../../../inc/XmlImport.class.php:63 -#: ../../../../web/ConfigC.class.php:197 +#: ../../../../web/ConfigC.class.php:199 msgid "Importar Cuentas" msgstr "" @@ -1590,38 +1650,69 @@ msgstr "" msgid "Cuenta importada: %s" msgstr "" -#: ../../../../inc/CustomFields.class.php:270 -#: ../../../../web/AccountsMgmtC.class.php:300 +#: ../../../../inc/CustomFields.class.php:276 +#: ../../../../web/AccountsMgmtC.class.php:301 #: ../../../../inc/themes/classic/profiles.inc:107 #: ../../../../inc/themes/material-blue/profiles.inc:124 msgid "Campos Personalizados" msgstr "" -#: ../../../../inc/CustomFields.class.php:279 +#: ../../../../inc/CustomFields.class.php:285 msgid "Error al actualizar datos encriptados" msgstr "" -#: ../../../../inc/CustomFields.class.php:283 +#: ../../../../inc/CustomFields.class.php:289 msgid "Actualizando datos encriptados" msgstr "" -#: ../../../../inc/CustomFields.class.php:310 +#: ../../../../inc/CustomFields.class.php:316 msgid "Registros no actualizados" msgstr "" -#: ../../../../inc/CustomFieldsBase.class.php:81 +#: ../../../../inc/CustomFieldsBase.class.php:86 +msgid "Texto" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:88 +msgid "Fecha" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:89 +msgid "Número" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:90 +#: ../../../../inc/themes/classic/passreset.inc:22 +#: ../../../../inc/themes/classic/users.inc:61 +#: ../../../../inc/themes/material-blue/users.inc:71 +msgid "Email" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:91 +msgid "Teléfono" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:92 +msgid "Link" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:93 +msgid "Color" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:107 #: ../../../../inc/themes/classic/profiles.inc:98 #: ../../../../inc/themes/material-blue/profiles.inc:114 msgid "Categorías" msgstr "" -#: ../../../../inc/CustomFieldsBase.class.php:82 +#: ../../../../inc/CustomFieldsBase.class.php:108 #: ../../../../inc/themes/classic/profiles.inc:103 #: ../../../../inc/themes/material-blue/profiles.inc:119 msgid "Clientes" msgstr "" -#: ../../../../inc/CustomFieldsBase.class.php:84 +#: ../../../../inc/CustomFieldsBase.class.php:110 #: ../../../../inc/themes/classic/account.inc:143 #: ../../../../inc/themes/classic/profiles.inc:89 #: ../../../../inc/themes/material-blue/account.inc:169 @@ -1654,7 +1745,7 @@ msgid "Error al eliminar el cliente" msgstr "" #: ../../../../inc/Customer.class.php:163 -#: ../../../../web/AccountsMgmtC.class.php:159 +#: ../../../../web/AccountsMgmtC.class.php:160 msgid "Eliminar Cliente" msgstr "" @@ -1662,22 +1753,22 @@ msgstr "" #: ../../../../inc/DBConnectionFactory.class.php:85 #: ../../../../inc/DBConnectionFactory.class.php:99 #: ../../../../inc/Installer.class.php:235 -#: ../../../../inc/Migrate.class.php:115 +#: ../../../../inc/Migrate.class.php:114 msgid "No es posible conectar con la BD" msgstr "" #: ../../../../inc/DBConnectionFactory.class.php:83 #: ../../../../inc/DBConnectionFactory.class.php:85 #: ../../../../inc/Installer.class.php:236 -#: ../../../../inc/Migrate.class.php:116 +#: ../../../../inc/Migrate.class.php:115 msgid "Compruebe los datos de conexión" msgstr "" -#: ../../../../inc/Email.class.php:59 ../../../../inc/UserUtil.class.php:565 +#: ../../../../inc/Email.class.php:59 ../../../../inc/UserUtil.class.php:182 msgid "N/D" msgstr "" -#: ../../../../inc/Email.class.php:60 ../../../../web/UsersMgmtC.class.php:392 +#: ../../../../inc/Email.class.php:60 ../../../../web/UsersMgmtC.class.php:393 #: ../../../../inc/themes/classic/tokens.inc:20 #: ../../../../inc/themes/material-blue/tokens.inc:20 msgid "Acción" @@ -1743,7 +1834,7 @@ msgid "Error al actualizar los usuarios del grupo" msgstr "" #: ../../../../inc/Groups.class.php:369 -#: ../../../../web/UsersMgmtC.class.php:209 +#: ../../../../web/UsersMgmtC.class.php:210 msgid "Eliminar Grupo" msgstr "" @@ -1760,7 +1851,7 @@ msgid "Compruebe el formato del archivo" msgstr "" #: ../../../../inc/Import.class.php:124 ../../../../inc/Import.class.php:127 -#: ../../../../inc/Migrate.class.php:92 +#: ../../../../inc/Migrate.class.php:91 msgid "Importación finalizada" msgstr "" @@ -2004,31 +2095,31 @@ msgstr "" msgid "Error al buscar objetos en DN base" msgstr "" -#: ../../../../inc/Ldap.class.php:217 ../../../../inc/Ldap.class.php:222 -#: ../../../../inc/Ldap.class.php:229 ../../../../inc/Ldap.class.php:233 -#: ../../../../inc/Ldap.class.php:242 ../../../../inc/Ldap.class.php:246 +#: ../../../../inc/Ldap.class.php:212 ../../../../inc/Ldap.class.php:218 +#: ../../../../inc/Ldap.class.php:225 ../../../../inc/Ldap.class.php:230 +#: ../../../../inc/Ldap.class.php:235 ../../../../inc/Ldap.class.php:240 msgid "Error al buscar RDN de grupo" msgstr "" -#: ../../../../inc/Ldap.class.php:295 ../../../../inc/Ldap.class.php:300 -#: ../../../../inc/Ldap.class.php:314 ../../../../inc/Ldap.class.php:318 +#: ../../../../inc/Ldap.class.php:289 ../../../../inc/Ldap.class.php:295 +#: ../../../../inc/Ldap.class.php:310 ../../../../inc/Ldap.class.php:315 msgid "Error al buscar el DN del usuario" msgstr "" -#: ../../../../inc/Ldap.class.php:307 ../../../../inc/Ldap.class.php:311 +#: ../../../../inc/Ldap.class.php:302 ../../../../inc/Ldap.class.php:307 msgid "Error al localizar el usuario en LDAP" msgstr "" -#: ../../../../inc/Ldap.class.php:392 ../../../../inc/Ldap.class.php:397 -#: ../../../../inc/LdapADS.class.php:99 ../../../../inc/LdapADS.class.php:104 +#: ../../../../inc/Ldap.class.php:384 ../../../../inc/Ldap.class.php:390 +#: ../../../../inc/LdapADS.class.php:103 ../../../../inc/LdapADS.class.php:108 msgid "Error al buscar el grupo de usuarios" msgstr "" -#: ../../../../inc/Ldap.class.php:404 +#: ../../../../inc/Ldap.class.php:397 msgid "Usuario verificado en grupo" msgstr "" -#: ../../../../inc/LdapADS.class.php:108 ../../../../inc/LdapADS.class.php:113 +#: ../../../../inc/LdapADS.class.php:112 ../../../../inc/LdapADS.class.php:117 msgid "No se encontró el grupo con ese nombre" msgstr "" @@ -2037,144 +2128,144 @@ msgid "Vaciar Eventos" msgstr "" #: ../../../../inc/Log.class.php:88 -#: ../../../../inc/themes/classic/eventlog.inc:100 -#: ../../../../inc/themes/material-blue/eventlog.inc:100 +#: ../../../../inc/themes/classic/eventlog.inc:98 +#: ../../../../inc/themes/material-blue/eventlog.inc:99 msgid "Vaciar registro de eventos" msgstr "" -#: ../../../../inc/Migrate.class.php:52 +#: ../../../../inc/Migrate.class.php:51 msgid "Faltan parámetros" msgstr "" -#: ../../../../inc/Migrate.class.php:149 +#: ../../../../inc/Migrate.class.php:148 msgid "La versión no es compatible" msgstr "" -#: ../../../../inc/Migrate.class.php:150 +#: ../../../../inc/Migrate.class.php:149 msgid "Actualice a la última versión de phpPMS" msgstr "" -#: ../../../../inc/Migrate.class.php:168 +#: ../../../../inc/Migrate.class.php:167 msgid "Error al obtener la configuración" msgstr "" -#: ../../../../inc/Migrate.class.php:211 ../../../../inc/Migrate.class.php:224 +#: ../../../../inc/Migrate.class.php:210 ../../../../inc/Migrate.class.php:223 msgid "Error al vaciar tabla" msgstr "" -#: ../../../../inc/Migrate.class.php:229 +#: ../../../../inc/Migrate.class.php:228 msgid "Usuario actual no es administrador de la aplicación" msgstr "" -#: ../../../../inc/Migrate.class.php:274 +#: ../../../../inc/Migrate.class.php:273 msgid "No es posible crear el cliente" msgstr "" -#: ../../../../inc/Migrate.class.php:275 +#: ../../../../inc/Migrate.class.php:274 msgid "Contacte con el desarrollador" msgstr "" -#: ../../../../inc/Migrate.class.php:279 +#: ../../../../inc/Migrate.class.php:278 msgid "Importar Clientes" msgstr "" -#: ../../../../inc/Migrate.class.php:281 ../../../../inc/Migrate.class.php:351 -#: ../../../../inc/Migrate.class.php:452 ../../../../inc/Migrate.class.php:525 -#: ../../../../inc/Migrate.class.php:633 ../../../../inc/Migrate.class.php:698 -#: ../../../../inc/Migrate.class.php:772 ../../../../inc/Migrate.class.php:862 -#: ../../../../inc/Migrate.class.php:933 +#: ../../../../inc/Migrate.class.php:280 ../../../../inc/Migrate.class.php:350 +#: ../../../../inc/Migrate.class.php:451 ../../../../inc/Migrate.class.php:524 +#: ../../../../inc/Migrate.class.php:632 ../../../../inc/Migrate.class.php:697 +#: ../../../../inc/Migrate.class.php:771 ../../../../inc/Migrate.class.php:861 +#: ../../../../inc/Migrate.class.php:932 msgid "Registros" msgstr "" -#: ../../../../inc/Migrate.class.php:303 +#: ../../../../inc/Migrate.class.php:302 msgid "Error al obtener los clientes" msgstr "" -#: ../../../../inc/Migrate.class.php:345 +#: ../../../../inc/Migrate.class.php:344 msgid "Error al obtener cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:374 +#: ../../../../inc/Migrate.class.php:373 msgid "Cliente no encontrado" msgstr "" -#: ../../../../inc/Migrate.class.php:417 +#: ../../../../inc/Migrate.class.php:416 msgid "Error al migrar cuenta" msgstr "" -#: ../../../../inc/Migrate.class.php:446 +#: ../../../../inc/Migrate.class.php:445 msgid "Error al obtener los grupos de cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:450 +#: ../../../../inc/Migrate.class.php:449 msgid "Importar Grupos de Cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:472 +#: ../../../../inc/Migrate.class.php:471 msgid "Error al crear grupos de cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:519 +#: ../../../../inc/Migrate.class.php:518 msgid "Error al obtener el historico de cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:523 +#: ../../../../inc/Migrate.class.php:522 msgid "Importar Histórico de Cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:592 +#: ../../../../inc/Migrate.class.php:591 msgid "Error al crear historico de cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:627 +#: ../../../../inc/Migrate.class.php:626 msgid "Error al obtener los archivos de cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:631 +#: ../../../../inc/Migrate.class.php:630 msgid "Importar Archivos de Cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:663 +#: ../../../../inc/Migrate.class.php:662 msgid "Error al crear archivos de cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:692 +#: ../../../../inc/Migrate.class.php:691 msgid "Error al obtener las categorías de cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:696 +#: ../../../../inc/Migrate.class.php:695 msgid "Importar Categorías de Cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:718 +#: ../../../../inc/Migrate.class.php:717 msgid "Error al crear categorías de cuentas" msgstr "" -#: ../../../../inc/Migrate.class.php:766 +#: ../../../../inc/Migrate.class.php:765 msgid "Error al obtener los usuarios" msgstr "" -#: ../../../../inc/Migrate.class.php:770 +#: ../../../../inc/Migrate.class.php:769 msgid "Importar Usuarios" msgstr "" -#: ../../../../inc/Migrate.class.php:827 +#: ../../../../inc/Migrate.class.php:826 msgid "Error al crear usuarios" msgstr "" -#: ../../../../inc/Migrate.class.php:856 +#: ../../../../inc/Migrate.class.php:855 msgid "Error al obtener los grupos de usuarios" msgstr "" -#: ../../../../inc/Migrate.class.php:860 +#: ../../../../inc/Migrate.class.php:859 msgid "Importar Grupos de Usuarios" msgstr "" -#: ../../../../inc/Migrate.class.php:886 +#: ../../../../inc/Migrate.class.php:885 msgid "Error al crear los grupos de usuarios" msgstr "" -#: ../../../../inc/Migrate.class.php:931 +#: ../../../../inc/Migrate.class.php:930 msgid "Importar Configuración" msgstr "" @@ -2200,7 +2291,7 @@ msgid "Datos de perfil incorrectos" msgstr "" #: ../../../../inc/ProfileBase.class.php:550 -#: ../../../../web/UsersMgmtC.class.php:274 +#: ../../../../web/UsersMgmtC.class.php:275 msgid "Eliminar Perfil" msgstr "" @@ -2226,17 +2317,17 @@ msgstr "" msgid "No hay cuentas para importar" msgstr "" -#: ../../../../inc/Template.class.php:89 +#: ../../../../inc/Template.class.php:91 #, php-format msgid "No es posible obtener la plantilla \"%s\" : %s" msgstr "" -#: ../../../../inc/Template.class.php:128 +#: ../../../../inc/Template.class.php:130 #, php-format msgid "No es posible obtener la variable \"%s\"" msgstr "" -#: ../../../../inc/Template.class.php:171 +#: ../../../../inc/Template.class.php:173 #, php-format msgid "No es posible destruir la variable \"%s\"" msgstr "" @@ -2284,17 +2375,17 @@ msgstr "" msgid "Actualización de la Configuración realizada correctamente." msgstr "" -#: ../../../../inc/UserBase.class.php:386 -#: ../../../../inc/UserBase.class.php:530 +#: ../../../../inc/UserBase.class.php:388 +#: ../../../../inc/UserBase.class.php:532 msgid "No se pudo realizar la petición de cambio de clave." msgstr "" -#: ../../../../inc/UserBase.class.php:525 +#: ../../../../inc/UserBase.class.php:527 msgid "Modificar Usuario" msgstr "" -#: ../../../../inc/UserBase.class.php:592 -#: ../../../../web/UsersMgmtC.class.php:150 +#: ../../../../inc/UserBase.class.php:594 +#: ../../../../web/UsersMgmtC.class.php:151 msgid "Eliminar Usuario" msgstr "" @@ -2314,38 +2405,38 @@ msgstr "" msgid "Nuevo usuario de LDAP" msgstr "" -#: ../../../../inc/UserUtil.class.php:703 +#: ../../../../inc/UserMigrate.class.php:113 msgid "Migrar Grupos" msgstr "" -#: ../../../../inc/UserUtil.class.php:703 +#: ../../../../inc/UserMigrate.class.php:113 msgid "Error al migrar grupo del usuario" msgstr "" -#: ../../../../inc/Util.class.php:122 +#: ../../../../inc/Util.class.php:119 msgid "Versión de PHP requerida >= " msgstr "" -#: ../../../../inc/Util.class.php:123 +#: ../../../../inc/Util.class.php:120 msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" msgstr "" -#: ../../../../inc/Util.class.php:159 +#: ../../../../inc/Util.class.php:156 #: ../../../../inc/themes/classic/ldap.inc:212 #: ../../../../inc/themes/material-blue/ldap.inc:238 msgid "Módulo no disponible" msgstr "" -#: ../../../../inc/Util.class.php:160 +#: ../../../../inc/Util.class.php:157 msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "" -#: ../../../../inc/XmlExport.class.php:125 +#: ../../../../inc/XmlExport.class.php:127 msgid "Exportar XML" msgstr "" -#: ../../../../inc/XmlExport.class.php:410 +#: ../../../../inc/XmlExport.class.php:412 msgid "Error al crear el archivo XML" msgstr "" @@ -2353,15 +2444,15 @@ msgstr "" msgid "Formato detectado" msgstr "" -#: ../../../../inc/XmlImportBase.class.php:75 +#: ../../../../inc/XmlImportBase.class.php:80 msgid "No es posible procesar el archivo XML" msgstr "" -#: ../../../../inc/XmlImportBase.class.php:103 +#: ../../../../inc/XmlImportBase.class.php:108 msgid "Archivo XML no soportado" msgstr "" -#: ../../../../inc/XmlImportBase.class.php:104 +#: ../../../../inc/XmlImportBase.class.php:109 msgid "No es posible detectar la aplicación que exportó los datos" msgstr "" @@ -2543,9 +2634,9 @@ msgstr "" #: ../../../../inc/themes/classic/account.inc:136 #: ../../../../inc/themes/classic/account.inc:167 #: ../../../../inc/themes/classic/account.inc:449 -#: ../../../../inc/themes/classic/encryption.inc:61 -#: ../../../../inc/themes/classic/encryption.inc:80 -#: ../../../../inc/themes/classic/import.inc:70 +#: ../../../../inc/themes/classic/encryption.inc:58 +#: ../../../../inc/themes/classic/encryption.inc:77 +#: ../../../../inc/themes/classic/import.inc:67 #: ../../../../inc/themes/classic/install.inc:99 #: ../../../../inc/themes/classic/preferences.inc:82 #: ../../../../inc/themes/classic/security.inc:26 @@ -2569,28 +2660,28 @@ msgstr "" msgid "Error al copiar al portapapeles" msgstr "" -#: ../../../../web/AccountC.class.php:381 -#: ../../../../web/AccountC.class.php:412 +#: ../../../../web/AccountC.class.php:384 +#: ../../../../web/AccountC.class.php:415 #: ../../../../inc/themes/classic/search.inc:45 #: ../../../../inc/themes/classic/search.inc:104 -#: ../../../../inc/themes/material-blue/search.inc:41 -#: ../../../../inc/themes/material-blue/search.inc:108 +#: ../../../../inc/themes/material-blue/search.inc:77 +#: ../../../../inc/themes/material-blue/search.inc:144 msgid "Detalles de Cuenta" msgstr "" -#: ../../../../web/AccountC.class.php:469 +#: ../../../../web/AccountC.class.php:472 #: ../../../../inc/themes/classic/account.inc:396 -#: ../../../../inc/themes/material-blue/account.inc:433 +#: ../../../../inc/themes/material-blue/account.inc:435 msgid "Modificar Clave de Cuenta" msgstr "" -#: ../../../../web/AccountsMgmtC.class.php:79 -#: ../../../../web/AccountsMgmtC.class.php:138 -#: ../../../../web/AccountsMgmtC.class.php:266 -#: ../../../../web/SearchC.class.php:292 -#: ../../../../web/UsersMgmtC.class.php:87 -#: ../../../../web/UsersMgmtC.class.php:187 -#: ../../../../web/UsersMgmtC.class.php:245 +#: ../../../../web/AccountsMgmtC.class.php:80 +#: ../../../../web/AccountsMgmtC.class.php:139 +#: ../../../../web/AccountsMgmtC.class.php:267 +#: ../../../../web/SearchC.class.php:291 +#: ../../../../web/UsersMgmtC.class.php:88 +#: ../../../../web/UsersMgmtC.class.php:188 +#: ../../../../web/UsersMgmtC.class.php:246 #: ../../../../inc/themes/classic/account.inc:11 #: ../../../../inc/themes/classic/categories.inc:8 #: ../../../../inc/themes/classic/customers.inc:8 @@ -2611,59 +2702,59 @@ msgstr "" #: ../../../../inc/themes/material-blue/info.inc:25 #: ../../../../inc/themes/material-blue/profiles.inc:8 #: ../../../../inc/themes/material-blue/request.inc:6 -#: ../../../../inc/themes/material-blue/search.inc:39 +#: ../../../../inc/themes/material-blue/search.inc:75 #: ../../../../inc/themes/material-blue/users.inc:8 msgid "Nombre" msgstr "" -#: ../../../../web/AccountsMgmtC.class.php:115 +#: ../../../../web/AccountsMgmtC.class.php:116 msgid "Gestión de Categorías" msgstr "" -#: ../../../../web/AccountsMgmtC.class.php:172 +#: ../../../../web/AccountsMgmtC.class.php:173 msgid "Gestión de Clientes" msgstr "" -#: ../../../../web/AccountsMgmtC.class.php:266 +#: ../../../../web/AccountsMgmtC.class.php:267 #: ../../../../inc/themes/classic/customfields.inc:27 #: ../../../../inc/themes/material-blue/customfields.inc:30 msgid "Módulo" msgstr "" -#: ../../../../web/AccountsMgmtC.class.php:287 +#: ../../../../web/AccountsMgmtC.class.php:288 msgid "Eliminar Campo" msgstr "" -#: ../../../../web/ConfigC.class.php:166 +#: ../../../../web/ConfigC.class.php:168 msgid "Último backup" msgstr "" -#: ../../../../web/ConfigC.class.php:166 +#: ../../../../web/ConfigC.class.php:168 msgid "No se encontraron backups" msgstr "" -#: ../../../../web/ConfigC.class.php:173 +#: ../../../../web/ConfigC.class.php:175 msgid "Última exportación" msgstr "" -#: ../../../../web/ConfigC.class.php:173 +#: ../../../../web/ConfigC.class.php:175 msgid "No se encontró archivo de exportación" msgstr "" -#: ../../../../web/ConfigC.class.php:218 +#: ../../../../web/ConfigC.class.php:220 msgid "Información" msgstr "" -#: ../../../../web/EventlogC.class.php:93 +#: ../../../../web/EventlogC.class.php:95 msgid "Registro de eventos vaciado" msgstr "" -#: ../../../../web/EventlogC.class.php:95 +#: ../../../../web/EventlogC.class.php:97 msgid "Error al vaciar el registro de eventos" msgstr "" #: ../../../../web/MainC.class.php:159 -#: ../../../../web/UsersMgmtC.class.php:100 +#: ../../../../web/UsersMgmtC.class.php:101 msgid "Admin Aplicación" msgstr "" @@ -2672,17 +2763,16 @@ msgid "Buscar" msgstr "" #: ../../../../web/MainC.class.php:189 -#: ../../../../web/UsersMgmtC.class.php:163 -msgid "Gestión de Usuarios" +msgid "Usuarios y Accesos" msgstr "" #: ../../../../web/MainC.class.php:195 -msgid "Gestión de Clientes y Categorías" +msgid "Elementos y Personalización" msgstr "" #: ../../../../web/MainC.class.php:207 -#: ../../../../inc/themes/classic/eventlog.inc:4 -#: ../../../../inc/themes/material-blue/eventlog.inc:3 +#: ../../../../inc/themes/classic/eventlog.inc:2 +#: ../../../../inc/themes/material-blue/eventlog.inc:2 msgid "Registro de Eventos" msgstr "" @@ -2745,60 +2835,60 @@ msgstr "" msgid "Mejoras de seguridad en XSS e inyección SQL" msgstr "" -#: ../../../../web/MainC.class.php:284 +#: ../../../../web/MainC.class.php:283 msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" msgstr "" -#: ../../../../web/MainC.class.php:285 +#: ../../../../web/MainC.class.php:284 msgid "Actualice la versión de PHP para usar sysPass de forma segura" msgstr "" -#: ../../../../web/MainC.class.php:292 +#: ../../../../web/MainC.class.php:291 msgid "No se encuentra el generador de números aleatorios." msgstr "" -#: ../../../../web/MainC.class.php:293 +#: ../../../../web/MainC.class.php:292 msgid "" "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" msgstr "" -#: ../../../../web/MainC.class.php:312 +#: ../../../../web/MainC.class.php:311 msgid "Instalación finalizada" msgstr "" -#: ../../../../web/MainC.class.php:313 +#: ../../../../web/MainC.class.php:312 msgid "Pulse aquí para acceder" msgstr "" -#: ../../../../web/MainC.class.php:410 +#: ../../../../web/MainC.class.php:409 msgid "Descargar nueva versión" msgstr "" -#: ../../../../web/MainC.class.php:421 +#: ../../../../web/MainC.class.php:420 msgid "Avisos de sysPass" msgstr "" -#: ../../../../web/SearchC.class.php:285 +#: ../../../../web/SearchC.class.php:284 msgid "Ordenar por Cliente" msgstr "" -#: ../../../../web/SearchC.class.php:291 +#: ../../../../web/SearchC.class.php:290 msgid "Ordenar por Nombre" msgstr "" -#: ../../../../web/SearchC.class.php:297 +#: ../../../../web/SearchC.class.php:296 msgid "Ordenar por Categoría" msgstr "" -#: ../../../../web/SearchC.class.php:303 +#: ../../../../web/SearchC.class.php:302 msgid "Ordenar por Usuario" msgstr "" -#: ../../../../web/SearchC.class.php:309 +#: ../../../../web/SearchC.class.php:308 msgid "Ordenar por URL / IP" msgstr "" -#: ../../../../web/SearchC.class.php:310 +#: ../../../../web/SearchC.class.php:309 #: ../../../../inc/themes/classic/account.inc:61 #: ../../../../inc/themes/classic/editpass.inc:16 #: ../../../../inc/themes/classic/request.inc:13 @@ -2806,74 +2896,78 @@ msgstr "" #: ../../../../inc/themes/material-blue/account.inc:69 #: ../../../../inc/themes/material-blue/editpass.inc:17 #: ../../../../inc/themes/material-blue/request.inc:15 -#: ../../../../inc/themes/material-blue/search.inc:62 +#: ../../../../inc/themes/material-blue/search.inc:98 msgid "URL / IP" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:91 +#: ../../../../web/UsersMgmtC.class.php:92 msgid "Propiedades" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:104 +#: ../../../../web/UsersMgmtC.class.php:105 msgid "Admin Cuentas" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:108 +#: ../../../../web/UsersMgmtC.class.php:109 #: ../../../../inc/themes/classic/users.inc:28 #: ../../../../inc/themes/material-blue/users.inc:34 msgid "Usuario de LDAP" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:112 +#: ../../../../web/UsersMgmtC.class.php:113 #: ../../../../inc/themes/classic/users.inc:113 #: ../../../../inc/themes/material-blue/users.inc:151 #: ../../../../inc/themes/material-blue/users.inc:154 msgid "Deshabilitado" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:129 +#: ../../../../web/UsersMgmtC.class.php:130 msgid "Ver Detalles de Usuario" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:143 +#: ../../../../web/UsersMgmtC.class.php:144 msgid "Cambiar Clave de Usuario" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:222 +#: ../../../../web/UsersMgmtC.class.php:164 +msgid "Gestión de Usuarios" +msgstr "" + +#: ../../../../web/UsersMgmtC.class.php:223 msgid "Gestión de Grupos" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:260 +#: ../../../../web/UsersMgmtC.class.php:261 msgid "Ver Detalles de Perfil" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:287 +#: ../../../../web/UsersMgmtC.class.php:288 msgid "Gestión de Perfiles" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:407 +#: ../../../../web/UsersMgmtC.class.php:408 msgid "Ver token de Autorización" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:434 +#: ../../../../web/UsersMgmtC.class.php:435 msgid "Gestión de Autorizaciones API" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:456 +#: ../../../../web/UsersMgmtC.class.php:457 msgid "Token de autorización visualizado" msgstr "" -#: ../../../../web/UsersMgmtC.class.php:457 +#: ../../../../web/UsersMgmtC.class.php:458 msgid "Autorizaciones" msgstr "" -#: ../../../../web/UsersPrefsC.class.php:92 +#: ../../../../web/UsersPrefsC.class.php:93 #: ../../../../inc/themes/classic/mail.inc:63 #: ../../../../inc/themes/material-blue/mail.inc:86 msgid "Seguridad" msgstr "" -#: ../../../../web/UsersPrefsC.class.php:115 +#: ../../../../web/UsersPrefsC.class.php:117 #: ../../../../inc/themes/classic/sessionbar.inc:9 msgid "Preferencias" msgstr "" @@ -2927,7 +3021,7 @@ msgstr "" #: ../../../../inc/themes/classic/search.inc:82 #: ../../../../inc/themes/classic/users.inc:91 #: ../../../../inc/themes/material-blue/account.inc:119 -#: ../../../../inc/themes/material-blue/search.inc:82 +#: ../../../../inc/themes/material-blue/search.inc:118 #: ../../../../inc/themes/material-blue/users.inc:116 msgid "Notas" msgstr "" @@ -2940,7 +3034,7 @@ msgstr "" #: ../../../../inc/themes/classic/account.inc:108 #: ../../../../inc/themes/material-blue/account.inc:133 -#: ../../../../inc/themes/material-blue/search.inc:75 +#: ../../../../inc/themes/material-blue/search.inc:111 msgid "Permisos" msgstr "" @@ -2986,60 +3080,60 @@ msgid "por" msgstr "" #: ../../../../inc/themes/classic/account.inc:289 -#: ../../../../inc/themes/material-blue/account.inc:336 +#: ../../../../inc/themes/material-blue/account.inc:338 msgid "Visitas" msgstr "" #: ../../../../inc/themes/classic/account.inc:293 -#: ../../../../inc/themes/material-blue/account.inc:340 +#: ../../../../inc/themes/material-blue/account.inc:342 msgid "Fecha Alta" msgstr "" #: ../../../../inc/themes/classic/account.inc:297 -#: ../../../../inc/themes/material-blue/account.inc:344 +#: ../../../../inc/themes/material-blue/account.inc:346 msgid "Creador" msgstr "" #: ../../../../inc/themes/classic/account.inc:301 #: ../../../../inc/themes/material-blue/account.inc:203 -#: ../../../../inc/themes/material-blue/account.inc:348 +#: ../../../../inc/themes/material-blue/account.inc:350 msgid "Grupo Principal" msgstr "" #: ../../../../inc/themes/classic/account.inc:306 -#: ../../../../inc/themes/material-blue/account.inc:353 +#: ../../../../inc/themes/material-blue/account.inc:355 msgid "Usuarios Secundarios" msgstr "" #: ../../../../inc/themes/classic/account.inc:325 -#: ../../../../inc/themes/material-blue/account.inc:372 +#: ../../../../inc/themes/material-blue/account.inc:374 msgid "Grupos Secundarios" msgstr "" #: ../../../../inc/themes/classic/account.inc:345 -#: ../../../../inc/themes/material-blue/account.inc:392 +#: ../../../../inc/themes/material-blue/account.inc:394 msgid "Fecha Edición" msgstr "" #: ../../../../inc/themes/classic/account.inc:349 -#: ../../../../inc/themes/material-blue/account.inc:396 +#: ../../../../inc/themes/material-blue/account.inc:398 msgid "Editor" msgstr "" #: ../../../../inc/themes/classic/account.inc:376 -#: ../../../../inc/themes/material-blue/account.inc:459 +#: ../../../../inc/themes/material-blue/account.inc:461 msgid "Restaurar cuenta desde este punto" msgstr "" #: ../../../../inc/themes/classic/account.inc:388 #: ../../../../inc/themes/classic/search.inc:113 -#: ../../../../inc/themes/material-blue/account.inc:426 -#: ../../../../inc/themes/material-blue/search.inc:117 +#: ../../../../inc/themes/material-blue/account.inc:428 +#: ../../../../inc/themes/material-blue/search.inc:154 msgid "Copiar Clave en Portapapeles" msgstr "" #: ../../../../inc/themes/classic/account.inc:403 -#: ../../../../inc/themes/material-blue/account.inc:439 +#: ../../../../inc/themes/material-blue/account.inc:441 msgid "Ver Actual" msgstr "" @@ -3053,15 +3147,15 @@ msgstr "" #: ../../../../inc/themes/classic/account.inc:415 #: ../../../../inc/themes/classic/search.inc:125 -#: ../../../../inc/themes/material-blue/account.inc:449 -#: ../../../../inc/themes/material-blue/search.inc:128 +#: ../../../../inc/themes/material-blue/account.inc:451 +#: ../../../../inc/themes/material-blue/search.inc:166 msgid "Modificar Cuenta" msgstr "" #: ../../../../inc/themes/classic/account.inc:420 #: ../../../../inc/themes/classic/search.inc:146 -#: ../../../../inc/themes/material-blue/account.inc:453 -#: ../../../../inc/themes/material-blue/search.inc:148 +#: ../../../../inc/themes/material-blue/account.inc:455 +#: ../../../../inc/themes/material-blue/search.inc:187 msgid "Solicitar Modificación" msgstr "" @@ -3071,7 +3165,7 @@ msgstr "" #: ../../../../inc/themes/classic/customers.inc:62 #: ../../../../inc/themes/classic/customfields.inc:63 #: ../../../../inc/themes/classic/editpass.inc:50 -#: ../../../../inc/themes/classic/encryption.inc:102 +#: ../../../../inc/themes/classic/encryption.inc:99 #: ../../../../inc/themes/classic/groups.inc:77 #: ../../../../inc/themes/classic/ldap.inc:229 #: ../../../../inc/themes/classic/mail.inc:107 @@ -3082,7 +3176,7 @@ msgstr "" #: ../../../../inc/themes/classic/users.inc:189 #: ../../../../inc/themes/classic/userspass.inc:35 #: ../../../../inc/themes/classic/wiki.inc:110 -#: ../../../../inc/themes/material-blue/account.inc:465 +#: ../../../../inc/themes/material-blue/account.inc:467 #: ../../../../inc/themes/material-blue/categories.inc:72 #: ../../../../inc/themes/material-blue/config.inc:425 #: ../../../../inc/themes/material-blue/customers.inc:73 @@ -3091,7 +3185,7 @@ msgstr "" #: ../../../../inc/themes/material-blue/groups.inc:88 #: ../../../../inc/themes/material-blue/ldap.inc:257 #: ../../../../inc/themes/material-blue/mail.inc:145 -#: ../../../../inc/themes/material-blue/preferences.inc:101 +#: ../../../../inc/themes/material-blue/preferences.inc:117 #: ../../../../inc/themes/material-blue/profiles.inc:177 #: ../../../../inc/themes/material-blue/security.inc:61 #: ../../../../inc/themes/material-blue/tokens.inc:63 @@ -3102,12 +3196,12 @@ msgid "Guardar" msgstr "" #: ../../../../inc/themes/classic/account.inc:437 -#: ../../../../inc/themes/material-blue/account.inc:475 +#: ../../../../inc/themes/material-blue/account.inc:477 msgid "Seleccionar grupos secundarios" msgstr "" #: ../../../../inc/themes/classic/account.inc:441 -#: ../../../../inc/themes/material-blue/account.inc:478 +#: ../../../../inc/themes/material-blue/account.inc:480 msgid "Seleccionar usuarios" msgstr "" @@ -3134,17 +3228,17 @@ msgstr "" #: ../../../../inc/themes/classic/backup.inc:49 #: ../../../../inc/themes/classic/backup.inc:113 #: ../../../../inc/themes/classic/backup.inc:117 -#: ../../../../inc/themes/classic/encryption.inc:93 -#: ../../../../inc/themes/classic/encryption.inc:97 -#: ../../../../inc/themes/classic/encryption.inc:162 -#: ../../../../inc/themes/classic/encryption.inc:166 -#: ../../../../inc/themes/classic/import.inc:15 -#: ../../../../inc/themes/classic/import.inc:37 -#: ../../../../inc/themes/classic/import.inc:51 -#: ../../../../inc/themes/classic/import.inc:97 -#: ../../../../inc/themes/classic/import.inc:118 -#: ../../../../inc/themes/classic/import.inc:170 -#: ../../../../inc/themes/classic/import.inc:174 +#: ../../../../inc/themes/classic/encryption.inc:90 +#: ../../../../inc/themes/classic/encryption.inc:94 +#: ../../../../inc/themes/classic/encryption.inc:159 +#: ../../../../inc/themes/classic/encryption.inc:163 +#: ../../../../inc/themes/classic/import.inc:12 +#: ../../../../inc/themes/classic/import.inc:34 +#: ../../../../inc/themes/classic/import.inc:48 +#: ../../../../inc/themes/classic/import.inc:94 +#: ../../../../inc/themes/classic/import.inc:115 +#: ../../../../inc/themes/classic/import.inc:167 +#: ../../../../inc/themes/classic/import.inc:171 #: ../../../../inc/themes/classic/js-common.inc:13 #: ../../../../inc/themes/classic/ldap.inc:13 #: ../../../../inc/themes/classic/ldap.inc:33 @@ -3163,12 +3257,12 @@ msgstr "" #: ../../../../inc/themes/material-blue/backup.inc:51 #: ../../../../inc/themes/material-blue/backup.inc:129 #: ../../../../inc/themes/material-blue/backup.inc:133 -#: ../../../../inc/themes/material-blue/encryption.inc:107 -#: ../../../../inc/themes/material-blue/encryption.inc:111 -#: ../../../../inc/themes/material-blue/encryption.inc:181 -#: ../../../../inc/themes/material-blue/encryption.inc:185 -#: ../../../../inc/themes/material-blue/import.inc:99 -#: ../../../../inc/themes/material-blue/import.inc:103 +#: ../../../../inc/themes/material-blue/encryption.inc:104 +#: ../../../../inc/themes/material-blue/encryption.inc:108 +#: ../../../../inc/themes/material-blue/encryption.inc:178 +#: ../../../../inc/themes/material-blue/encryption.inc:182 +#: ../../../../inc/themes/material-blue/import.inc:96 +#: ../../../../inc/themes/material-blue/import.inc:100 #: ../../../../inc/themes/material-blue/js-common.inc:11 msgid "Ayuda" msgstr "" @@ -3494,13 +3588,13 @@ msgstr "" msgid "Obligatorio" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:8 +#: ../../../../inc/themes/classic/encryption.inc:5 #: ../../../../inc/themes/classic/install.inc:46 #: ../../../../inc/themes/classic/install.inc:50 #: ../../../../inc/themes/classic/install.inc:51 #: ../../../../inc/themes/classic/login.inc:15 #: ../../../../inc/themes/classic/login.inc:27 -#: ../../../../inc/themes/material-blue/encryption.inc:8 +#: ../../../../inc/themes/material-blue/encryption.inc:5 #: ../../../../inc/themes/material-blue/install.inc:51 #: ../../../../inc/themes/material-blue/install.inc:58 #: ../../../../inc/themes/material-blue/login.inc:26 @@ -3508,170 +3602,174 @@ msgstr "" msgid "Clave Maestra" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:16 -#: ../../../../inc/themes/classic/encryption.inc:116 -#: ../../../../inc/themes/material-blue/encryption.inc:16 -#: ../../../../inc/themes/material-blue/encryption.inc:131 +#: ../../../../inc/themes/classic/encryption.inc:13 +#: ../../../../inc/themes/classic/encryption.inc:113 +#: ../../../../inc/themes/material-blue/encryption.inc:13 +#: ../../../../inc/themes/material-blue/encryption.inc:128 msgid "Último cambio" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:25 -#: ../../../../inc/themes/material-blue/encryption.inc:25 -#: ../../../../inc/themes/material-blue/encryption.inc:31 +#: ../../../../inc/themes/classic/encryption.inc:22 +#: ../../../../inc/themes/material-blue/encryption.inc:22 +#: ../../../../inc/themes/material-blue/encryption.inc:28 msgid "Clave Maestra actual" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:34 -#: ../../../../inc/themes/material-blue/encryption.inc:37 -#: ../../../../inc/themes/material-blue/encryption.inc:43 +#: ../../../../inc/themes/classic/encryption.inc:31 +#: ../../../../inc/themes/material-blue/encryption.inc:34 +#: ../../../../inc/themes/material-blue/encryption.inc:40 msgid "Nueva Clave Maestra" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:43 -#: ../../../../inc/themes/material-blue/encryption.inc:49 -#: ../../../../inc/themes/material-blue/encryption.inc:55 +#: ../../../../inc/themes/classic/encryption.inc:40 +#: ../../../../inc/themes/material-blue/encryption.inc:46 +#: ../../../../inc/themes/material-blue/encryption.inc:52 msgid "Nueva Clave Maestra (repetir)" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:51 -#: ../../../../inc/themes/material-blue/encryption.inc:61 +#: ../../../../inc/themes/classic/encryption.inc:48 +#: ../../../../inc/themes/material-blue/encryption.inc:58 msgid "No modificar cuentas" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:56 -#: ../../../../inc/themes/material-blue/encryption.inc:66 +#: ../../../../inc/themes/classic/encryption.inc:53 +#: ../../../../inc/themes/material-blue/encryption.inc:63 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:67 -#: ../../../../inc/themes/material-blue/encryption.inc:79 +#: ../../../../inc/themes/classic/encryption.inc:64 +#: ../../../../inc/themes/material-blue/encryption.inc:76 msgid "Confirmar cambio" msgstr "" +#: ../../../../inc/themes/classic/encryption.inc:67 #: ../../../../inc/themes/classic/encryption.inc:70 #: ../../../../inc/themes/classic/encryption.inc:73 -#: ../../../../inc/themes/classic/encryption.inc:76 -#: ../../../../inc/themes/classic/import.inc:67 +#: ../../../../inc/themes/classic/import.inc:64 #: ../../../../inc/themes/classic/security.inc:43 msgid "Atención" msgstr "" +#: ../../../../inc/themes/classic/encryption.inc:68 +#: ../../../../inc/themes/material-blue/encryption.inc:80 +msgid "Guarde la nueva clave en un lugar seguro." +msgstr "" + #: ../../../../inc/themes/classic/encryption.inc:71 #: ../../../../inc/themes/material-blue/encryption.inc:83 -msgid "Guarde la nueva clave en un lugar seguro." +msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "" #: ../../../../inc/themes/classic/encryption.inc:74 #: ../../../../inc/themes/material-blue/encryption.inc:86 -msgid "Se volverán a encriptar las claves de todas las cuentas." -msgstr "" - -#: ../../../../inc/themes/classic/encryption.inc:77 -#: ../../../../inc/themes/material-blue/encryption.inc:89 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:98 -#: ../../../../inc/themes/material-blue/encryption.inc:112 +#: ../../../../inc/themes/classic/encryption.inc:95 +#: ../../../../inc/themes/material-blue/encryption.inc:109 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:100 -#: ../../../../inc/themes/material-blue/encryption.inc:114 +#: ../../../../inc/themes/classic/encryption.inc:97 +#: ../../../../inc/themes/material-blue/encryption.inc:111 msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " "que incluya números, letras y símbolos." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:108 -#: ../../../../inc/themes/material-blue/encryption.inc:124 +#: ../../../../inc/themes/classic/encryption.inc:105 +#: ../../../../inc/themes/material-blue/encryption.inc:121 msgid "Clave Temporal" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:119 -#: ../../../../inc/themes/classic/encryption.inc:130 -#: ../../../../inc/themes/material-blue/encryption.inc:134 -#: ../../../../inc/themes/material-blue/encryption.inc:145 +#: ../../../../inc/themes/classic/encryption.inc:116 +#: ../../../../inc/themes/classic/encryption.inc:127 +#: ../../../../inc/themes/material-blue/encryption.inc:131 +#: ../../../../inc/themes/material-blue/encryption.inc:142 msgid "No generada" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:124 -#: ../../../../inc/themes/material-blue/encryption.inc:139 +#: ../../../../inc/themes/classic/encryption.inc:121 +#: ../../../../inc/themes/material-blue/encryption.inc:136 msgid "Válido hasta" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:136 -#: ../../../../inc/themes/material-blue/encryption.inc:151 -#: ../../../../inc/themes/material-blue/encryption.inc:157 +#: ../../../../inc/themes/classic/encryption.inc:133 +#: ../../../../inc/themes/material-blue/encryption.inc:148 +#: ../../../../inc/themes/material-blue/encryption.inc:154 msgid "Validez (s)" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:139 +#: ../../../../inc/themes/classic/encryption.inc:136 msgid "Validez" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:167 -#: ../../../../inc/themes/material-blue/encryption.inc:186 +#: ../../../../inc/themes/classic/encryption.inc:164 +#: ../../../../inc/themes/material-blue/encryption.inc:183 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " "la clave maestra original." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:169 -#: ../../../../inc/themes/material-blue/encryption.inc:190 +#: ../../../../inc/themes/classic/encryption.inc:166 +#: ../../../../inc/themes/material-blue/encryption.inc:187 msgid "Generar" msgstr "" -#: ../../../../inc/themes/classic/eventlog.inc:8 +#: ../../../../inc/themes/classic/eventlog.inc:6 #: ../../../../inc/themes/classic/search.inc:3 -#: ../../../../inc/themes/material-blue/eventlog.inc:7 +#: ../../../../inc/themes/material-blue/eventlog.inc:6 #: ../../../../inc/themes/material-blue/search.inc:3 msgid "No se encontraron registros" msgstr "" -#: ../../../../inc/themes/classic/eventlog.inc:19 -#: ../../../../inc/themes/material-blue/eventlog.inc:18 +#: ../../../../inc/themes/classic/eventlog.inc:17 +#: ../../../../inc/themes/material-blue/eventlog.inc:17 msgid "Fecha / Hora" msgstr "" -#: ../../../../inc/themes/classic/eventlog.inc:22 -#: ../../../../inc/themes/material-blue/eventlog.inc:21 +#: ../../../../inc/themes/classic/eventlog.inc:20 +#: ../../../../inc/themes/material-blue/eventlog.inc:20 msgid "Evento" msgstr "" -#: ../../../../inc/themes/classic/eventlog.inc:28 -#: ../../../../inc/themes/material-blue/eventlog.inc:27 +#: ../../../../inc/themes/classic/eventlog.inc:26 +#: ../../../../inc/themes/material-blue/eventlog.inc:26 msgid "IP" msgstr "" -#: ../../../../inc/themes/classic/eventlog.inc:86 +#: ../../../../inc/themes/classic/eventlog.inc:84 #: ../../../../inc/themes/classic/search.inc:169 -#: ../../../../inc/themes/material-blue/eventlog.inc:85 -#: ../../../../inc/themes/material-blue/search.inc:171 +#: ../../../../inc/themes/material-blue/eventlog.inc:84 +#: ../../../../inc/themes/material-blue/search.inc:20 +#: ../../../../inc/themes/material-blue/search.inc:209 msgid "Primera página" msgstr "" -#: ../../../../inc/themes/classic/eventlog.inc:88 +#: ../../../../inc/themes/classic/eventlog.inc:86 #: ../../../../inc/themes/classic/search.inc:171 -#: ../../../../inc/themes/material-blue/eventlog.inc:87 -#: ../../../../inc/themes/material-blue/search.inc:173 +#: ../../../../inc/themes/material-blue/eventlog.inc:86 +#: ../../../../inc/themes/material-blue/search.inc:22 +#: ../../../../inc/themes/material-blue/search.inc:211 msgid "Página anterior" msgstr "" -#: ../../../../inc/themes/classic/eventlog.inc:93 +#: ../../../../inc/themes/classic/eventlog.inc:91 #: ../../../../inc/themes/classic/search.inc:176 -#: ../../../../inc/themes/material-blue/eventlog.inc:92 -#: ../../../../inc/themes/material-blue/search.inc:178 +#: ../../../../inc/themes/material-blue/eventlog.inc:91 +#: ../../../../inc/themes/material-blue/search.inc:27 +#: ../../../../inc/themes/material-blue/search.inc:216 msgid "Página siguiente" msgstr "" -#: ../../../../inc/themes/classic/eventlog.inc:95 +#: ../../../../inc/themes/classic/eventlog.inc:93 #: ../../../../inc/themes/classic/search.inc:178 -#: ../../../../inc/themes/material-blue/eventlog.inc:94 -#: ../../../../inc/themes/material-blue/search.inc:180 +#: ../../../../inc/themes/material-blue/eventlog.inc:93 +#: ../../../../inc/themes/material-blue/search.inc:29 +#: ../../../../inc/themes/material-blue/search.inc:218 msgid "Última página" msgstr "" @@ -3720,154 +3818,154 @@ msgstr "" msgid "Descripción del grupo" msgstr "" -#: ../../../../inc/themes/classic/import.inc:7 -#: ../../../../inc/themes/material-blue/import.inc:121 +#: ../../../../inc/themes/classic/import.inc:4 +#: ../../../../inc/themes/material-blue/import.inc:118 msgid "Importar phpPMS" msgstr "" -#: ../../../../inc/themes/classic/import.inc:14 +#: ../../../../inc/themes/classic/import.inc:11 #: ../../../../inc/themes/classic/install.inc:63 #: ../../../../inc/themes/classic/install.inc:64 -#: ../../../../inc/themes/material-blue/import.inc:128 -#: ../../../../inc/themes/material-blue/import.inc:140 +#: ../../../../inc/themes/material-blue/import.inc:125 +#: ../../../../inc/themes/material-blue/import.inc:137 msgid "Usuario BBDD" msgstr "" -#: ../../../../inc/themes/classic/import.inc:18 -#: ../../../../inc/themes/material-blue/import.inc:132 +#: ../../../../inc/themes/classic/import.inc:15 +#: ../../../../inc/themes/material-blue/import.inc:129 msgid "Indicar el usuario de conexión a la base de datos de phpPMS." msgstr "" -#: ../../../../inc/themes/classic/import.inc:28 +#: ../../../../inc/themes/classic/import.inc:25 #: ../../../../inc/themes/classic/install.inc:71 #: ../../../../inc/themes/classic/install.inc:73 -#: ../../../../inc/themes/material-blue/import.inc:146 -#: ../../../../inc/themes/material-blue/import.inc:152 +#: ../../../../inc/themes/material-blue/import.inc:143 +#: ../../../../inc/themes/material-blue/import.inc:149 msgid "Clave BBDD" msgstr "" -#: ../../../../inc/themes/classic/import.inc:36 +#: ../../../../inc/themes/classic/import.inc:33 #: ../../../../inc/themes/classic/install.inc:78 #: ../../../../inc/themes/classic/install.inc:79 -#: ../../../../inc/themes/material-blue/import.inc:158 -#: ../../../../inc/themes/material-blue/import.inc:170 +#: ../../../../inc/themes/material-blue/import.inc:155 +#: ../../../../inc/themes/material-blue/import.inc:167 msgid "Nombre BBDD" msgstr "" -#: ../../../../inc/themes/classic/import.inc:40 -#: ../../../../inc/themes/material-blue/import.inc:162 +#: ../../../../inc/themes/classic/import.inc:37 +#: ../../../../inc/themes/material-blue/import.inc:159 msgid "Indicar el nombre de la base de datos de phpPMS." msgstr "" -#: ../../../../inc/themes/classic/import.inc:50 +#: ../../../../inc/themes/classic/import.inc:47 #: ../../../../inc/themes/classic/install.inc:87 #: ../../../../inc/themes/classic/install.inc:88 -#: ../../../../inc/themes/material-blue/import.inc:176 -#: ../../../../inc/themes/material-blue/import.inc:188 +#: ../../../../inc/themes/material-blue/import.inc:173 +#: ../../../../inc/themes/material-blue/import.inc:185 msgid "Servidor BBDD" msgstr "" -#: ../../../../inc/themes/classic/import.inc:54 -#: ../../../../inc/themes/material-blue/import.inc:180 +#: ../../../../inc/themes/classic/import.inc:51 +#: ../../../../inc/themes/material-blue/import.inc:177 msgid "Indicar el servidor de la base de datos de phpPMS." msgstr "" -#: ../../../../inc/themes/classic/import.inc:64 -#: ../../../../inc/themes/material-blue/import.inc:194 +#: ../../../../inc/themes/classic/import.inc:61 +#: ../../../../inc/themes/material-blue/import.inc:191 msgid "Confirmar" msgstr "" -#: ../../../../inc/themes/classic/import.inc:68 -#: ../../../../inc/themes/material-blue/import.inc:198 +#: ../../../../inc/themes/classic/import.inc:65 +#: ../../../../inc/themes/material-blue/import.inc:195 msgid "Los datos actuales serán borrados (excepto el usuario actual)" msgstr "" -#: ../../../../inc/themes/classic/import.inc:83 +#: ../../../../inc/themes/classic/import.inc:80 msgid "Iniciar" msgstr "" -#: ../../../../inc/themes/classic/import.inc:89 -#: ../../../../inc/themes/material-blue/import.inc:7 +#: ../../../../inc/themes/classic/import.inc:86 +#: ../../../../inc/themes/material-blue/import.inc:4 msgid "Importar CSV/XML" msgstr "" -#: ../../../../inc/themes/classic/import.inc:96 -#: ../../../../inc/themes/material-blue/import.inc:14 +#: ../../../../inc/themes/classic/import.inc:93 +#: ../../../../inc/themes/material-blue/import.inc:11 msgid "Usuario por Defecto" msgstr "" -#: ../../../../inc/themes/classic/import.inc:100 -#: ../../../../inc/themes/material-blue/import.inc:18 +#: ../../../../inc/themes/classic/import.inc:97 +#: ../../../../inc/themes/material-blue/import.inc:15 msgid "Define el usuario por defecto para las cuentas importadas." msgstr "" -#: ../../../../inc/themes/classic/import.inc:117 +#: ../../../../inc/themes/classic/import.inc:114 #: ../../../../inc/themes/classic/ldap.inc:144 -#: ../../../../inc/themes/material-blue/import.inc:36 +#: ../../../../inc/themes/material-blue/import.inc:33 #: ../../../../inc/themes/material-blue/ldap.inc:170 msgid "Grupo por Defecto" msgstr "" -#: ../../../../inc/themes/classic/import.inc:121 -#: ../../../../inc/themes/material-blue/import.inc:40 +#: ../../../../inc/themes/classic/import.inc:118 +#: ../../../../inc/themes/material-blue/import.inc:37 msgid "Define el grupo por defecto para las cuentas importadas." msgstr "" -#: ../../../../inc/themes/classic/import.inc:138 -#: ../../../../inc/themes/material-blue/import.inc:58 -#: ../../../../inc/themes/material-blue/import.inc:64 +#: ../../../../inc/themes/classic/import.inc:135 +#: ../../../../inc/themes/material-blue/import.inc:55 +#: ../../../../inc/themes/material-blue/import.inc:61 msgid "Clave de Importación" msgstr "" -#: ../../../../inc/themes/classic/import.inc:146 -#: ../../../../inc/themes/material-blue/import.inc:70 -#: ../../../../inc/themes/material-blue/import.inc:76 +#: ../../../../inc/themes/classic/import.inc:143 +#: ../../../../inc/themes/material-blue/import.inc:67 +#: ../../../../inc/themes/material-blue/import.inc:73 msgid "Delimitador CSV" msgstr "" -#: ../../../../inc/themes/classic/import.inc:162 -#: ../../../../inc/themes/material-blue/import.inc:90 +#: ../../../../inc/themes/classic/import.inc:159 +#: ../../../../inc/themes/material-blue/import.inc:87 msgid "Soltar archivo aquí o click para seleccionar" msgstr "" -#: ../../../../inc/themes/classic/import.inc:175 +#: ../../../../inc/themes/classic/import.inc:172 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "arhcivos XML y CSV." msgstr "" -#: ../../../../inc/themes/classic/import.inc:177 -#: ../../../../inc/themes/material-blue/import.inc:106 +#: ../../../../inc/themes/classic/import.inc:174 +#: ../../../../inc/themes/material-blue/import.inc:103 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "" -#: ../../../../inc/themes/classic/import.inc:179 -#: ../../../../inc/themes/material-blue/import.inc:108 +#: ../../../../inc/themes/classic/import.inc:176 +#: ../../../../inc/themes/material-blue/import.inc:105 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "" -#: ../../../../inc/themes/classic/import.inc:181 -#: ../../../../inc/themes/material-blue/import.inc:110 +#: ../../../../inc/themes/classic/import.inc:178 +#: ../../../../inc/themes/material-blue/import.inc:107 msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " "KeePass o KeePassX y la categoría igual al nombre de los grupos." msgstr "" -#: ../../../../inc/themes/classic/import.inc:183 -#: ../../../../inc/themes/material-blue/import.inc:112 +#: ../../../../inc/themes/classic/import.inc:180 +#: ../../../../inc/themes/material-blue/import.inc:109 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "" -#: ../../../../inc/themes/classic/import.inc:185 -#: ../../../../inc/themes/material-blue/import.inc:114 +#: ../../../../inc/themes/classic/import.inc:182 +#: ../../../../inc/themes/material-blue/import.inc:111 msgid "nombre_de_cuenta;cliente;categoría;url;usuario;clave;notas" msgstr "" -#: ../../../../inc/themes/classic/import.inc:187 -#: ../../../../inc/themes/material-blue/import.inc:116 +#: ../../../../inc/themes/classic/import.inc:184 +#: ../../../../inc/themes/material-blue/import.inc:113 msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " "automáticamente." @@ -4125,7 +4223,7 @@ msgstr "" #: ../../../../inc/themes/classic/mgmttabs.inc:70 #: ../../../../inc/themes/classic/search.inc:120 -#: ../../../../inc/themes/material-blue/search.inc:123 +#: ../../../../inc/themes/material-blue/search.inc:160 msgid "Más Acciones" msgstr "" @@ -4143,12 +4241,6 @@ msgstr "" msgid "Email del Usuario" msgstr "" -#: ../../../../inc/themes/classic/passreset.inc:22 -#: ../../../../inc/themes/classic/users.inc:61 -#: ../../../../inc/themes/material-blue/users.inc:71 -msgid "Email" -msgstr "" - #: ../../../../inc/themes/classic/passreset.inc:27 msgid "Nueva Clave" msgstr "" @@ -4369,7 +4461,7 @@ msgid "Descripción de la petición" msgstr "" #: ../../../../inc/themes/classic/request.inc:33 -#: ../../../../inc/themes/material-blue/account.inc:443 +#: ../../../../inc/themes/material-blue/account.inc:445 #: ../../../../inc/themes/material-blue/editpass.inc:55 #: ../../../../inc/themes/material-blue/mgmttabs.inc:13 #: ../../../../inc/themes/material-blue/request.inc:42 @@ -4382,32 +4474,34 @@ msgid "Enviar" msgstr "" #: ../../../../inc/themes/classic/search.inc:33 -#: ../../../../inc/themes/material-blue/search.inc:29 +#: ../../../../inc/themes/material-blue/search.inc:65 msgid "Buscar en Wiki" msgstr "" #: ../../../../inc/themes/classic/search.inc:69 -#: ../../../../inc/themes/material-blue/search.inc:65 +#: ../../../../inc/themes/material-blue/search.inc:101 msgid "Abrir enlace a" msgstr "" #: ../../../../inc/themes/classic/search.inc:87 -#: ../../../../inc/themes/material-blue/search.inc:89 +#: ../../../../inc/themes/material-blue/search.inc:125 msgid "Archivos adjuntos" msgstr "" #: ../../../../inc/themes/classic/search.inc:94 -#: ../../../../inc/themes/material-blue/search.inc:98 +#: ../../../../inc/themes/material-blue/search.inc:134 msgid "Enlace a Wiki" msgstr "" #: ../../../../inc/themes/classic/search.inc:159 -#: ../../../../inc/themes/material-blue/search.inc:161 +#: ../../../../inc/themes/material-blue/search.inc:10 +#: ../../../../inc/themes/material-blue/search.inc:199 msgid "Filtro ON" msgstr "" #: ../../../../inc/themes/classic/search.inc:163 -#: ../../../../inc/themes/material-blue/search.inc:165 +#: ../../../../inc/themes/material-blue/search.inc:14 +#: ../../../../inc/themes/material-blue/search.inc:203 msgid "Global ON" msgstr "" @@ -4480,7 +4574,6 @@ msgid "" msgstr "" #: ../../../../inc/themes/classic/security.inc:29 -#: ../../../../inc/themes/material-blue/preferences.inc:86 #: ../../../../inc/themes/material-blue/security.inc:27 msgid "Activar" msgstr "" @@ -4702,8 +4795,8 @@ msgstr "" #: ../../../../inc/themes/material-blue/backup.inc:58 #: ../../../../inc/themes/material-blue/backup.inc:144 -#: ../../../../inc/themes/material-blue/encryption.inc:118 -#: ../../../../inc/themes/material-blue/import.inc:217 +#: ../../../../inc/themes/material-blue/encryption.inc:115 +#: ../../../../inc/themes/material-blue/import.inc:214 msgid "Realizar" msgstr "" @@ -4760,7 +4853,7 @@ msgstr "" msgid "Preferencias de usuario" msgstr "" -#: ../../../../inc/themes/material-blue/import.inc:104 +#: ../../../../inc/themes/material-blue/import.inc:101 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "archivos XML y CSV." @@ -4804,6 +4897,14 @@ msgid "" "cuentas sin permisos." msgstr "" +#: ../../../../inc/themes/material-blue/preferences.inc:91 +msgid "Barra de navegación superior" +msgstr "" + +#: ../../../../inc/themes/material-blue/preferences.inc:95 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "" + #: ../../../../inc/themes/material-blue/profiles.inc:25 msgid "Crear nueva cuenta" msgstr "" diff --git a/inc/locales/ru_RU/LC_MESSAGES/messages.mo b/inc/locales/ru_RU/LC_MESSAGES/messages.mo index 198393ce..60c0ba0c 100644 Binary files a/inc/locales/ru_RU/LC_MESSAGES/messages.mo and b/inc/locales/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/ru_RU/LC_MESSAGES/messages.po b/inc/locales/ru_RU/LC_MESSAGES/messages.po index d737e805..128e4dce 100644 --- a/inc/locales/ru_RU/LC_MESSAGES/messages.po +++ b/inc/locales/ru_RU/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-05 02:35+0100\n" -"PO-Revision-Date: 2015-10-05 02:35+0100\n" +"POT-Creation-Date: 2015-10-09 00:52+0100\n" +"PO-Revision-Date: 2015-10-09 00:52+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: \n" "Language: ru_RU\n" @@ -24,130 +24,130 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Poedit-SearchPath-0: ../../../..\n" -#: ../../../../ajax/ajax_2fa.php:35 ../../../../ajax/ajax_accountSave.php:41 -#: ../../../../ajax/ajax_appMgmtSave.php:42 -#: ../../../../ajax/ajax_backup.php:39 ../../../../ajax/ajax_checkLdap.php:41 -#: ../../../../ajax/ajax_configSave.php:41 ../../../../ajax/ajax_files.php:41 -#: ../../../../ajax/ajax_getFiles.php:46 ../../../../ajax/ajax_import.php:49 -#: ../../../../ajax/ajax_migrate.php:45 ../../../../ajax/ajax_passReset.php:37 -#: ../../../../ajax/ajax_search.php:41 -#: ../../../../ajax/ajax_sendRequest.php:41 -#: ../../../../ajax/ajax_userPrefsSave.php:42 +#: ../../../../ajax/ajax_2fa.php:37 ../../../../ajax/ajax_accountSave.php:42 +#: ../../../../ajax/ajax_appMgmtSave.php:43 +#: ../../../../ajax/ajax_backup.php:41 ../../../../ajax/ajax_checkLdap.php:42 +#: ../../../../ajax/ajax_configSave.php:44 ../../../../ajax/ajax_files.php:42 +#: ../../../../ajax/ajax_getFiles.php:47 ../../../../ajax/ajax_import.php:50 +#: ../../../../ajax/ajax_migrate.php:46 ../../../../ajax/ajax_passReset.php:40 +#: ../../../../ajax/ajax_search.php:42 +#: ../../../../ajax/ajax_sendRequest.php:42 +#: ../../../../ajax/ajax_userPrefsSave.php:43 msgid "CONSULTA INVÁLIDA" msgstr "ОШИБОЧНЫЙ ЗАПРОС" -#: ../../../../ajax/ajax_2fa.php:55 +#: ../../../../ajax/ajax_2fa.php:57 #, fuzzy msgid "Código correcto" msgstr "Введите код безопасности" -#: ../../../../ajax/ajax_2fa.php:58 ../../../../ajax/ajax_userPrefsSave.php:94 +#: ../../../../ajax/ajax_2fa.php:60 ../../../../ajax/ajax_userPrefsSave.php:97 #, fuzzy msgid "Código incorrecto" msgstr "Ошибка входа" -#: ../../../../ajax/ajax_accountSave.php:35 -#: ../../../../ajax/ajax_appMgmtSave.php:36 -#: ../../../../ajax/ajax_backup.php:33 ../../../../ajax/ajax_checkLdap.php:35 -#: ../../../../ajax/ajax_configSave.php:35 ../../../../ajax/ajax_import.php:35 -#: ../../../../ajax/ajax_migrate.php:35 -#: ../../../../ajax/ajax_sendRequest.php:35 -#: ../../../../ajax/ajax_userPrefsSave.php:36 -#: ../../../../ajax/ajax_viewpass.php:36 +#: ../../../../ajax/ajax_accountSave.php:36 +#: ../../../../ajax/ajax_appMgmtSave.php:37 +#: ../../../../ajax/ajax_backup.php:35 ../../../../ajax/ajax_checkLdap.php:36 +#: ../../../../ajax/ajax_configSave.php:38 ../../../../ajax/ajax_import.php:36 +#: ../../../../ajax/ajax_migrate.php:36 +#: ../../../../ajax/ajax_sendRequest.php:36 +#: ../../../../ajax/ajax_userPrefsSave.php:37 +#: ../../../../ajax/ajax_viewpass.php:37 msgid "La sesión no se ha iniciado o ha caducado" msgstr "Сессия истекла или ошибка сессии" -#: ../../../../ajax/ajax_accountSave.php:77 -#: ../../../../ajax/ajax_accountSave.php:92 +#: ../../../../ajax/ajax_accountSave.php:78 +#: ../../../../ajax/ajax_accountSave.php:93 msgid "Es necesario un nombre de cuenta" msgstr "Необходимо имя учетной записи" -#: ../../../../ajax/ajax_accountSave.php:79 -#: ../../../../ajax/ajax_accountSave.php:90 -#: ../../../../ajax/ajax_appMgmtSave.php:328 +#: ../../../../ajax/ajax_accountSave.php:80 +#: ../../../../ajax/ajax_accountSave.php:91 +#: ../../../../ajax/ajax_appMgmtSave.php:329 msgid "Es necesario un nombre de cliente" msgstr "Необходимо имя заказчика" -#: ../../../../ajax/ajax_accountSave.php:81 -#: ../../../../ajax/ajax_accountSave.php:94 +#: ../../../../ajax/ajax_accountSave.php:82 +#: ../../../../ajax/ajax_accountSave.php:95 msgid "Es necesario un usuario" msgstr "Необходимо имя пользователя" -#: ../../../../ajax/ajax_accountSave.php:83 -#: ../../../../ajax/ajax_accountSave.php:105 +#: ../../../../ajax/ajax_accountSave.php:84 +#: ../../../../ajax/ajax_accountSave.php:106 #, fuzzy msgid "Es necesaria una clave" msgstr "Необходим пароль" -#: ../../../../ajax/ajax_accountSave.php:85 -#: ../../../../ajax/ajax_accountSave.php:96 +#: ../../../../ajax/ajax_accountSave.php:86 +#: ../../../../ajax/ajax_accountSave.php:97 #, fuzzy msgid "Es necesario una categoría" msgstr "Необходим пароль" -#: ../../../../ajax/ajax_accountSave.php:100 -#: ../../../../ajax/ajax_accountSave.php:109 +#: ../../../../ajax/ajax_accountSave.php:101 +#: ../../../../ajax/ajax_accountSave.php:110 msgid "Id inválido" msgstr "Ошибочный ID" -#: ../../../../ajax/ajax_accountSave.php:112 -#: ../../../../ajax/ajax_accountSave.php:262 -#: ../../../../ajax/ajax_appMgmtSave.php:534 -#: ../../../../ajax/ajax_configSave.php:293 -#: ../../../../ajax/ajax_userPrefsSave.php:108 ../../../../api.php:53 +#: ../../../../ajax/ajax_accountSave.php:113 +#: ../../../../ajax/ajax_accountSave.php:263 +#: ../../../../ajax/ajax_appMgmtSave.php:535 +#: ../../../../ajax/ajax_configSave.php:324 +#: ../../../../ajax/ajax_userPrefsSave.php:111 ../../../../api.php:53 msgid "Acción Inválida" msgstr "Ошибочное действие" -#: ../../../../ajax/ajax_accountSave.php:120 -#: ../../../../ajax/ajax_appMgmtSave.php:111 -#: ../../../../ajax/ajax_appMgmtSave.php:148 -#: ../../../../ajax/ajax_backup.php:62 +#: ../../../../ajax/ajax_accountSave.php:121 +#: ../../../../ajax/ajax_appMgmtSave.php:112 +#: ../../../../ajax/ajax_appMgmtSave.php:149 +#: ../../../../ajax/ajax_backup.php:68 msgid "Las claves no coinciden" msgstr "Пароль и подтверждение не совпадают" -#: ../../../../ajax/ajax_accountSave.php:172 +#: ../../../../ajax/ajax_accountSave.php:173 msgid "Cuenta creada" msgstr "Аккаунт создан" -#: ../../../../ajax/ajax_accountSave.php:175 +#: ../../../../ajax/ajax_accountSave.php:176 msgid "Error al crear la cuenta" msgstr "Ошибка при создании учетной записи" -#: ../../../../ajax/ajax_accountSave.php:210 +#: ../../../../ajax/ajax_accountSave.php:211 msgid "Sin cambios" msgstr "Нет изменений" -#: ../../../../ajax/ajax_accountSave.php:222 +#: ../../../../ajax/ajax_accountSave.php:223 msgid "Cuenta actualizada" msgstr "Информация об учетной записи изменена" -#: ../../../../ajax/ajax_accountSave.php:225 +#: ../../../../ajax/ajax_accountSave.php:226 msgid "Error al modificar la cuenta" msgstr "Ошибка при изменении учетной записи" -#: ../../../../ajax/ajax_accountSave.php:232 +#: ../../../../ajax/ajax_accountSave.php:233 msgid "Cuenta eliminada" msgstr "Аккаунт удален" -#: ../../../../ajax/ajax_accountSave.php:235 +#: ../../../../ajax/ajax_accountSave.php:236 msgid "Error al eliminar la cuenta" msgstr "Ошибка при удалении учетной записи" -#: ../../../../ajax/ajax_accountSave.php:245 -#: ../../../../ajax/ajax_appMgmtSave.php:152 -#: ../../../../ajax/ajax_passReset.php:74 +#: ../../../../ajax/ajax_accountSave.php:246 +#: ../../../../ajax/ajax_appMgmtSave.php:153 +#: ../../../../ajax/ajax_passReset.php:75 msgid "Clave actualizada" msgstr "Пароль изменен" -#: ../../../../ajax/ajax_accountSave.php:248 +#: ../../../../ajax/ajax_accountSave.php:249 msgid "Error al actualizar la clave" msgstr "Ошибка изменения пароля" -#: ../../../../ajax/ajax_accountSave.php:255 +#: ../../../../ajax/ajax_accountSave.php:256 msgid "Cuenta restaurada" msgstr "Аккаунт восстановлен" -#: ../../../../ajax/ajax_accountSave.php:258 +#: ../../../../ajax/ajax_accountSave.php:259 msgid "Error al restaurar cuenta" msgstr "Ошибка восстановления учетной записи" @@ -157,13 +157,13 @@ msgid "Ver Usuario" msgstr "Просмотр информации пользователя" #: ../../../../ajax/ajax_appMgmtData.php:61 -#: ../../../../web/UsersMgmtC.class.php:136 +#: ../../../../web/UsersMgmtC.class.php:137 msgid "Editar Usuario" msgstr "Редактировать пользователя" #: ../../../../ajax/ajax_appMgmtData.php:67 -#: ../../../../inc/UserBase.class.php:381 -#: ../../../../web/UsersMgmtC.class.php:121 +#: ../../../../inc/UserBase.class.php:383 +#: ../../../../web/UsersMgmtC.class.php:122 msgid "Nuevo Usuario" msgstr "Создать пользователя" @@ -173,13 +173,13 @@ msgid "Ver Grupo" msgstr "Показать" #: ../../../../ajax/ajax_appMgmtData.php:80 -#: ../../../../web/UsersMgmtC.class.php:202 +#: ../../../../web/UsersMgmtC.class.php:203 msgid "Editar Grupo" msgstr "Редактировать группу" #: ../../../../ajax/ajax_appMgmtData.php:86 #: ../../../../inc/Groups.class.php:152 ../../../../inc/Groups.class.php:253 -#: ../../../../web/UsersMgmtC.class.php:194 +#: ../../../../web/UsersMgmtC.class.php:195 msgid "Nuevo Grupo" msgstr "Создать группу" @@ -189,13 +189,13 @@ msgid "Ver Perfil" msgstr "Показать" #: ../../../../ajax/ajax_appMgmtData.php:99 -#: ../../../../web/UsersMgmtC.class.php:267 +#: ../../../../web/UsersMgmtC.class.php:268 msgid "Editar Perfil" msgstr "Редактировать профиль" #: ../../../../ajax/ajax_appMgmtData.php:105 #: ../../../../inc/ProfileBase.class.php:512 -#: ../../../../web/UsersMgmtC.class.php:252 +#: ../../../../web/UsersMgmtC.class.php:253 msgid "Nuevo Perfil" msgstr "Создать профиль" @@ -205,13 +205,13 @@ msgid "Ver Cliente" msgstr "Показать" #: ../../../../ajax/ajax_appMgmtData.php:118 -#: ../../../../web/AccountsMgmtC.class.php:152 +#: ../../../../web/AccountsMgmtC.class.php:153 msgid "Editar Cliente" msgstr "Редактировать заказчика" #: ../../../../ajax/ajax_appMgmtData.php:124 #: ../../../../inc/Customer.class.php:65 -#: ../../../../web/AccountsMgmtC.class.php:145 +#: ../../../../web/AccountsMgmtC.class.php:146 msgid "Nuevo Cliente" msgstr "Новый заказчик" @@ -221,13 +221,13 @@ msgid "Ver Categoría" msgstr "Показать" #: ../../../../ajax/ajax_appMgmtData.php:137 -#: ../../../../web/AccountsMgmtC.class.php:94 +#: ../../../../web/AccountsMgmtC.class.php:95 msgid "Editar Categoría" msgstr "Редактировать категорию" #: ../../../../ajax/ajax_appMgmtData.php:143 #: ../../../../inc/Category.class.php:83 -#: ../../../../web/AccountsMgmtC.class.php:86 +#: ../../../../web/AccountsMgmtC.class.php:87 #: ../../../../inc/themes/classic/account.inc:53 #: ../../../../inc/themes/material-blue/account.inc:61 msgid "Nueva Categoría" @@ -240,132 +240,133 @@ msgstr "Показать" #: ../../../../ajax/ajax_appMgmtData.php:156 #: ../../../../inc/ApiTokens.class.php:189 -#: ../../../../web/UsersMgmtC.class.php:399 +#: ../../../../web/UsersMgmtC.class.php:400 #, fuzzy msgid "Nueva Autorización" msgstr "Создать категорию" #: ../../../../ajax/ajax_appMgmtData.php:162 -#: ../../../../web/UsersMgmtC.class.php:414 +#: ../../../../web/UsersMgmtC.class.php:415 #, fuzzy msgid "Editar Autorización" msgstr "Изменить" #: ../../../../ajax/ajax_appMgmtData.php:168 -#: ../../../../web/AccountsMgmtC.class.php:273 +#: ../../../../web/AccountsMgmtC.class.php:274 #, fuzzy msgid "Nuevo Campo" msgstr "Создать пользователя" #: ../../../../ajax/ajax_appMgmtData.php:174 -#: ../../../../web/AccountsMgmtC.class.php:280 +#: ../../../../web/AccountsMgmtC.class.php:281 #, fuzzy msgid "Editar Campo" msgstr "Изменить" -#: ../../../../ajax/ajax_appMgmtSave.php:85 +#: ../../../../ajax/ajax_appMgmtSave.php:86 msgid "Es necesario un nombre de usuario" msgstr "Необходимо имя пользователя" -#: ../../../../ajax/ajax_appMgmtSave.php:87 +#: ../../../../ajax/ajax_appMgmtSave.php:88 msgid "Es necesario un login" msgstr "Необходим логин" -#: ../../../../ajax/ajax_appMgmtSave.php:89 +#: ../../../../ajax/ajax_appMgmtSave.php:90 msgid "Es necesario un perfil" msgstr "Необходим профиль" -#: ../../../../ajax/ajax_appMgmtSave.php:91 +#: ../../../../ajax/ajax_appMgmtSave.php:92 msgid "Es necesario un grupo" msgstr "Необходима группа" -#: ../../../../ajax/ajax_appMgmtSave.php:93 +#: ../../../../ajax/ajax_appMgmtSave.php:94 msgid "Es necesario un email" msgstr "Необходим email" -#: ../../../../ajax/ajax_appMgmtSave.php:95 -#: ../../../../ajax/ajax_appMgmtSave.php:144 -#: ../../../../ajax/ajax_appMgmtSave.php:159 -#: ../../../../ajax/ajax_configSave.php:268 -#: ../../../../ajax/ajax_import.php:39 ../../../../ajax/ajax_migrate.php:39 -#: ../../../../ajax/ajax_userPrefsSave.php:83 +#: ../../../../ajax/ajax_appMgmtSave.php:96 +#: ../../../../ajax/ajax_appMgmtSave.php:145 +#: ../../../../ajax/ajax_appMgmtSave.php:160 +#: ../../../../ajax/ajax_backup.php:54 +#: ../../../../ajax/ajax_configSave.php:297 +#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40 +#: ../../../../ajax/ajax_userPrefsSave.php:86 msgid "Ey, esto es una DEMO!!" msgstr "Ey, это DEMO!!" -#: ../../../../ajax/ajax_appMgmtSave.php:100 +#: ../../../../ajax/ajax_appMgmtSave.php:101 msgid "Login de usuario duplicado" msgstr "Указанный логин уже существует" -#: ../../../../ajax/ajax_appMgmtSave.php:103 +#: ../../../../ajax/ajax_appMgmtSave.php:104 msgid "Email de usuario duplicado" msgstr "Указанный email уже существует" -#: ../../../../ajax/ajax_appMgmtSave.php:109 -#: ../../../../ajax/ajax_appMgmtSave.php:146 +#: ../../../../ajax/ajax_appMgmtSave.php:110 +#: ../../../../ajax/ajax_appMgmtSave.php:147 msgid "La clave no puede estar en blanco" msgstr "Пароль не может быть пустым" -#: ../../../../ajax/ajax_appMgmtSave.php:122 +#: ../../../../ajax/ajax_appMgmtSave.php:123 msgid "Usuario creado" msgstr "Пользователь создан" -#: ../../../../ajax/ajax_appMgmtSave.php:125 +#: ../../../../ajax/ajax_appMgmtSave.php:126 msgid "Error al crear el usuario" msgstr "Ошибка при создании пользователя" -#: ../../../../ajax/ajax_appMgmtSave.php:135 -#: ../../../../inc/UserUtil.class.php:103 +#: ../../../../ajax/ajax_appMgmtSave.php:136 +#: ../../../../inc/UserMigrate.class.php:89 msgid "Usuario actualizado" msgstr "Данные пользователя обновлены" -#: ../../../../ajax/ajax_appMgmtSave.php:138 +#: ../../../../ajax/ajax_appMgmtSave.php:139 msgid "Error al actualizar el usuario" msgstr "Ошибка при обновлении данных пользователя" -#: ../../../../ajax/ajax_appMgmtSave.php:155 -#: ../../../../ajax/ajax_passReset.php:78 +#: ../../../../ajax/ajax_appMgmtSave.php:156 +#: ../../../../ajax/ajax_passReset.php:79 msgid "Error al modificar la clave" msgstr "Ошибка изменения пароля" -#: ../../../../ajax/ajax_appMgmtSave.php:161 +#: ../../../../ajax/ajax_appMgmtSave.php:162 msgid "No es posible eliminar, usuario en uso" msgstr "Не могу удалить, пользователь работает" -#: ../../../../ajax/ajax_appMgmtSave.php:165 +#: ../../../../ajax/ajax_appMgmtSave.php:166 msgid "Usuario eliminado" msgstr "Пользователь удален" -#: ../../../../ajax/ajax_appMgmtSave.php:168 +#: ../../../../ajax/ajax_appMgmtSave.php:169 msgid "Error al eliminar el usuario" msgstr "Ошибка удаления пользователя" -#: ../../../../ajax/ajax_appMgmtSave.php:183 +#: ../../../../ajax/ajax_appMgmtSave.php:184 msgid "Es necesario un nombre de grupo" msgstr "Необходимо имя группы" -#: ../../../../ajax/ajax_appMgmtSave.php:191 +#: ../../../../ajax/ajax_appMgmtSave.php:192 msgid "Nombre de grupo duplicado" msgstr "Указанное имя группы уже существует" -#: ../../../../ajax/ajax_appMgmtSave.php:203 +#: ../../../../ajax/ajax_appMgmtSave.php:204 msgid "Grupo creado" msgstr "Группа создана" -#: ../../../../ajax/ajax_appMgmtSave.php:205 +#: ../../../../ajax/ajax_appMgmtSave.php:206 msgid "Error al crear el grupo" msgstr "Ошибка при создании группы" -#: ../../../../ajax/ajax_appMgmtSave.php:216 +#: ../../../../ajax/ajax_appMgmtSave.php:217 msgid "Grupo actualizado" msgstr "Группа обновлена" -#: ../../../../ajax/ajax_appMgmtSave.php:219 +#: ../../../../ajax/ajax_appMgmtSave.php:220 msgid "Error al actualizar el grupo" msgstr "Ошибка при обновлении группы" -#: ../../../../ajax/ajax_appMgmtSave.php:228 -#: ../../../../ajax/ajax_appMgmtSave.php:305 -#: ../../../../inc/CustomFieldsBase.class.php:83 +#: ../../../../ajax/ajax_appMgmtSave.php:229 +#: ../../../../ajax/ajax_appMgmtSave.php:306 +#: ../../../../inc/CustomFieldsBase.class.php:109 #: ../../../../inc/themes/classic/account.inc:112 #: ../../../../inc/themes/classic/groups.inc:24 #: ../../../../inc/themes/classic/profiles.inc:85 @@ -375,9 +376,9 @@ msgstr "Ошибка при обновлении группы" msgid "Usuarios" msgstr "Пользователи" -#: ../../../../ajax/ajax_appMgmtSave.php:232 +#: ../../../../ajax/ajax_appMgmtSave.php:233 #: ../../../../inc/Category.class.php:266 -#: ../../../../inc/CustomFieldsBase.class.php:80 +#: ../../../../inc/CustomFieldsBase.class.php:106 #: ../../../../inc/Customer.class.php:150 #: ../../../../inc/themes/classic/profiles.inc:15 #: ../../../../inc/themes/material-blue/config.inc:176 @@ -385,333 +386,374 @@ msgstr "Пользователи" msgid "Cuentas" msgstr "Учетные записи" -#: ../../../../ajax/ajax_appMgmtSave.php:235 -#: ../../../../ajax/ajax_appMgmtSave.php:307 +#: ../../../../ajax/ajax_appMgmtSave.php:236 +#: ../../../../ajax/ajax_appMgmtSave.php:308 #: ../../../../inc/Category.class.php:119 #: ../../../../inc/Customer.class.php:150 msgid "No es posible eliminar" msgstr "Невозможно удалить" -#: ../../../../ajax/ajax_appMgmtSave.php:235 +#: ../../../../ajax/ajax_appMgmtSave.php:236 msgid "Grupo en uso por:" msgstr "Группа используется:" -#: ../../../../ajax/ajax_appMgmtSave.php:240 +#: ../../../../ajax/ajax_appMgmtSave.php:241 msgid "Grupo eliminado" msgstr "Группа удалена" -#: ../../../../ajax/ajax_appMgmtSave.php:243 +#: ../../../../ajax/ajax_appMgmtSave.php:244 msgid "Error al eliminar el grupo" msgstr "Ошибка при удалении группы" -#: ../../../../ajax/ajax_appMgmtSave.php:282 +#: ../../../../ajax/ajax_appMgmtSave.php:283 msgid "Es necesario un nombre de perfil" msgstr "Необходимо имя профиля" -#: ../../../../ajax/ajax_appMgmtSave.php:284 +#: ../../../../ajax/ajax_appMgmtSave.php:285 msgid "Nombre de perfil duplicado" msgstr "Профиль с таким именем уже существует" -#: ../../../../ajax/ajax_appMgmtSave.php:289 +#: ../../../../ajax/ajax_appMgmtSave.php:290 msgid "Perfil creado" msgstr "Профиль создан" -#: ../../../../ajax/ajax_appMgmtSave.php:292 +#: ../../../../ajax/ajax_appMgmtSave.php:293 msgid "Error al crear el perfil" msgstr "Ошибка при создании профиля" -#: ../../../../ajax/ajax_appMgmtSave.php:295 +#: ../../../../ajax/ajax_appMgmtSave.php:296 msgid "Perfil actualizado" msgstr "Профиль изменен" -#: ../../../../ajax/ajax_appMgmtSave.php:298 +#: ../../../../ajax/ajax_appMgmtSave.php:299 msgid "Error al actualizar el perfil" msgstr "Ошибка при изменении профиля" -#: ../../../../ajax/ajax_appMgmtSave.php:307 +#: ../../../../ajax/ajax_appMgmtSave.php:308 msgid "Perfil en uso por:" msgstr "Профиль используется:" -#: ../../../../ajax/ajax_appMgmtSave.php:310 +#: ../../../../ajax/ajax_appMgmtSave.php:311 msgid "Perfil eliminado" msgstr "Профиль удален" -#: ../../../../ajax/ajax_appMgmtSave.php:313 +#: ../../../../ajax/ajax_appMgmtSave.php:314 msgid "Error al eliminar el perfil" msgstr "Ошибка при удалении профиля" -#: ../../../../ajax/ajax_appMgmtSave.php:348 +#: ../../../../ajax/ajax_appMgmtSave.php:349 msgid "Cliente creado" msgstr "Заказчик добавлен" -#: ../../../../ajax/ajax_appMgmtSave.php:363 +#: ../../../../ajax/ajax_appMgmtSave.php:364 msgid "Cliente actualizado" msgstr "Информация о заказчике обновлена" -#: ../../../../ajax/ajax_appMgmtSave.php:373 +#: ../../../../ajax/ajax_appMgmtSave.php:374 msgid "Cliente eliminado" msgstr "Заказчик удален" -#: ../../../../ajax/ajax_appMgmtSave.php:387 +#: ../../../../ajax/ajax_appMgmtSave.php:388 msgid "Es necesario un nombre de categoría" msgstr "Необходимо имя категории" -#: ../../../../ajax/ajax_appMgmtSave.php:407 +#: ../../../../ajax/ajax_appMgmtSave.php:408 msgid "Categoría creada" msgstr "Категория создана" -#: ../../../../ajax/ajax_appMgmtSave.php:422 +#: ../../../../ajax/ajax_appMgmtSave.php:423 msgid "Categoría actualizada" msgstr "Информация о категории изменена" -#: ../../../../ajax/ajax_appMgmtSave.php:433 +#: ../../../../ajax/ajax_appMgmtSave.php:434 msgid "Categoría eliminada" msgstr "Категория удалена" -#: ../../../../ajax/ajax_appMgmtSave.php:449 +#: ../../../../ajax/ajax_appMgmtSave.php:450 #, fuzzy msgid "Usuario o acción no indicado" msgstr "Пользователь / пароль не введены" -#: ../../../../ajax/ajax_appMgmtSave.php:459 +#: ../../../../ajax/ajax_appMgmtSave.php:460 #, fuzzy msgid "Autorización creada" msgstr "Аккаунт создан" -#: ../../../../ajax/ajax_appMgmtSave.php:467 +#: ../../../../ajax/ajax_appMgmtSave.php:468 #, fuzzy msgid "Autorización actualizada" msgstr "Информация об учетной записи изменена" -#: ../../../../ajax/ajax_appMgmtSave.php:477 +#: ../../../../ajax/ajax_appMgmtSave.php:478 #, fuzzy msgid "Autorización eliminada" msgstr "Аккаунт удален" -#: ../../../../ajax/ajax_appMgmtSave.php:494 +#: ../../../../ajax/ajax_appMgmtSave.php:495 #, fuzzy msgid "Nombre del campo no indicado" msgstr "Имя заказчика" -#: ../../../../ajax/ajax_appMgmtSave.php:496 +#: ../../../../ajax/ajax_appMgmtSave.php:497 #, fuzzy msgid "Tipo del campo no indicado" msgstr "Данный тип файлов запрещен" -#: ../../../../ajax/ajax_appMgmtSave.php:498 +#: ../../../../ajax/ajax_appMgmtSave.php:499 msgid "Módulo del campo no indicado" msgstr "" -#: ../../../../ajax/ajax_appMgmtSave.php:512 +#: ../../../../ajax/ajax_appMgmtSave.php:513 #, fuzzy msgid "Campo creado" msgstr "Пользователь создан" -#: ../../../../ajax/ajax_appMgmtSave.php:521 +#: ../../../../ajax/ajax_appMgmtSave.php:522 #, fuzzy msgid "Campo actualizado" msgstr "Обновлено" -#: ../../../../ajax/ajax_appMgmtSave.php:531 +#: ../../../../ajax/ajax_appMgmtSave.php:532 #, fuzzy msgid "Campo eliminado" msgstr "Пользователь удален" -#: ../../../../ajax/ajax_backup.php:52 ../../../../ajax/ajax_backup.php:57 +#: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:63 #: ../../../../inc/themes/classic/backup.inc:54 msgid "Realizar Backup" msgstr "Выполнить резервное копирование" -#: ../../../../ajax/ajax_backup.php:52 ../../../../ajax/ajax_backup.php:54 +#: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:60 msgid "Error al realizar el backup" msgstr "Ошибка при выполнении резервной копии" -#: ../../../../ajax/ajax_backup.php:54 ../../../../ajax/ajax_backup.php:68 -#: ../../../../ajax/ajax_checkLdap.php:57 ../../../../inc/Import.class.php:128 -#: ../../../../inc/Migrate.class.php:93 +#: ../../../../ajax/ajax_backup.php:60 ../../../../ajax/ajax_backup.php:74 +#: ../../../../ajax/ajax_checkLdap.php:58 ../../../../inc/Import.class.php:128 +#: ../../../../inc/Migrate.class.php:92 msgid "Revise el registro de eventos para más detalles" msgstr "Пожалуйста, за деталями обратиться в журнал событий" -#: ../../../../ajax/ajax_backup.php:57 +#: ../../../../ajax/ajax_backup.php:63 msgid "Copia de la aplicación y base de datos realizada correctamente" msgstr "Резервная копия программы и базы успешно создана" -#: ../../../../ajax/ajax_backup.php:59 +#: ../../../../ajax/ajax_backup.php:65 msgid "Proceso de backup finalizado" msgstr "Процесс резервного копирования закончен." -#: ../../../../ajax/ajax_backup.php:66 ../../../../ajax/ajax_backup.php:71 +#: ../../../../ajax/ajax_backup.php:72 ../../../../ajax/ajax_backup.php:77 #, fuzzy msgid "Realizar Exportación" msgstr "Выполнить резервное копирование" -#: ../../../../ajax/ajax_backup.php:66 +#: ../../../../ajax/ajax_backup.php:72 #, fuzzy msgid "Error al realizar la exportación de cuentas" msgstr "Ошибка создания файлов учетных записей" -#: ../../../../ajax/ajax_backup.php:68 +#: ../../../../ajax/ajax_backup.php:74 #, fuzzy msgid "Error al realizar la exportación" msgstr "Ошибка при выполнении резервной копии" -#: ../../../../ajax/ajax_backup.php:71 +#: ../../../../ajax/ajax_backup.php:77 #, fuzzy msgid "Exportación de cuentas realizada correctamente" msgstr "Конфигурация была успешно обновлена." -#: ../../../../ajax/ajax_backup.php:73 +#: ../../../../ajax/ajax_backup.php:79 #, fuzzy msgid "Proceso de exportación finalizado" msgstr "Процесс резервного копирования закончен." -#: ../../../../ajax/ajax_checkLdap.php:51 ../../../../inc/Ldap.class.php:265 +#: ../../../../ajax/ajax_checkLdap.php:52 ../../../../inc/Ldap.class.php:259 msgid "Los parámetros de LDAP no están configurados" msgstr "Параметры LDAP не указаны" -#: ../../../../ajax/ajax_checkLdap.php:57 +#: ../../../../ajax/ajax_checkLdap.php:58 msgid "Error de conexión a LDAP" msgstr "Ошибка подключения к LDAP" -#: ../../../../ajax/ajax_checkLdap.php:59 +#: ../../../../ajax/ajax_checkLdap.php:60 msgid "Conexión a LDAP correcta" msgstr "Подключение к LDAP успешно" -#: ../../../../ajax/ajax_checkLdap.php:59 +#: ../../../../ajax/ajax_checkLdap.php:60 msgid "Objetos encontrados" msgstr "Найдено объектов" -#: ../../../../ajax/ajax_configSave.php:55 +#: ../../../../ajax/ajax_configSave.php:58 msgid "Modificar Configuración" msgstr "Изменить конфигурацию" -#: ../../../../ajax/ajax_configSave.php:102 +#: ../../../../ajax/ajax_configSave.php:105 #, fuzzy msgid "El tamaño máximo por archivo es de 16MB" msgstr "Максимальный размер файла 16MB" -#: ../../../../ajax/ajax_configSave.php:115 +#: ../../../../ajax/ajax_configSave.php:118 #, fuzzy msgid "Faltan parámetros de Proxy" msgstr "Пропущены настройки Wiki" #: ../../../../ajax/ajax_configSave.php:126 -#: ../../../../ajax/ajax_configSave.php:146 -#: ../../../../ajax/ajax_configSave.php:176 -#: ../../../../ajax/ajax_configSave.php:211 +#, fuzzy +msgid "Proxy habiltado" +msgstr "Пользователь заблокирован" + +#: ../../../../ajax/ajax_configSave.php:130 +#, fuzzy +msgid "Proxy deshabilitado" +msgstr "Пользователь заблокирован" + +#: ../../../../ajax/ajax_configSave.php:133 +#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../ajax/ajax_configSave.php:230 #, fuzzy msgid "Sección" msgstr "Действие" -#: ../../../../ajax/ajax_configSave.php:126 -#: ../../../../web/ConfigC.class.php:106 +#: ../../../../ajax/ajax_configSave.php:133 +#: ../../../../web/ConfigC.class.php:108 #: ../../../../inc/themes/classic/profiles.inc:61 #: ../../../../inc/themes/material-blue/profiles.inc:72 msgid "General" msgstr "Основное" -#: ../../../../ajax/ajax_configSave.php:136 +#: ../../../../ajax/ajax_configSave.php:143 msgid "Faltan parámetros de Wiki" msgstr "Пропущены настройки Wiki" -#: ../../../../ajax/ajax_configSave.php:146 -#: ../../../../web/ConfigC.class.php:242 +#: ../../../../ajax/ajax_configSave.php:150 +#, fuzzy +msgid "Wiki habiltada" +msgstr "Отключена" + +#: ../../../../ajax/ajax_configSave.php:154 +#, fuzzy +msgid "Wiki deshabilitada" +msgstr "Отключена" + +#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../web/ConfigC.class.php:244 #: ../../../../inc/themes/classic/wiki.inc:4 #: ../../../../inc/themes/material-blue/wiki.inc:4 msgid "Wiki" msgstr "Wiki" -#: ../../../../ajax/ajax_configSave.php:161 +#: ../../../../ajax/ajax_configSave.php:172 msgid "Faltan parámetros de LDAP" msgstr "Пропущены настройки LDAP" -#: ../../../../ajax/ajax_configSave.php:176 -#: ../../../../web/ConfigC.class.php:274 +#: ../../../../ajax/ajax_configSave.php:184 +#, fuzzy +msgid "LDAP habiltado" +msgstr "Отключен" + +#: ../../../../ajax/ajax_configSave.php:188 +#, fuzzy +msgid "LDAP deshabilitado" +msgstr "Отключен" + +#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../web/ConfigC.class.php:276 #: ../../../../inc/themes/classic/ldap.inc:4 #: ../../../../inc/themes/material-blue/ldap.inc:4 msgid "LDAP" msgstr "LDAP" -#: ../../../../ajax/ajax_configSave.php:191 +#: ../../../../ajax/ajax_configSave.php:206 msgid "Faltan parámetros de Correo" msgstr "Пропущены настройки почты" -#: ../../../../ajax/ajax_configSave.php:211 -#: ../../../../web/ConfigC.class.php:304 +#: ../../../../ajax/ajax_configSave.php:221 +#, fuzzy +msgid "Correo habiltado" +msgstr "Email выслан" + +#: ../../../../ajax/ajax_configSave.php:227 +#, fuzzy +msgid "Correo deshabilitado" +msgstr "Пользователь заблокирован" + +#: ../../../../ajax/ajax_configSave.php:230 +#: ../../../../web/ConfigC.class.php:306 #: ../../../../inc/themes/classic/mail.inc:4 #: ../../../../inc/themes/material-blue/mail.inc:4 msgid "Correo" msgstr "Mail" -#: ../../../../ajax/ajax_configSave.php:223 +#: ../../../../ajax/ajax_configSave.php:252 msgid "Configuración actualizada" msgstr "Конфигурация изменена" -#: ../../../../ajax/ajax_configSave.php:232 -#: ../../../../ajax/ajax_configSave.php:278 -#: ../../../../ajax/ajax_viewpass.php:60 +#: ../../../../ajax/ajax_configSave.php:261 +#: ../../../../ajax/ajax_configSave.php:307 +#: ../../../../ajax/ajax_viewpass.php:61 #: ../../../../inc/Controller.class.php:169 msgid "Clave maestra actualizada" msgstr "Мастер-пароль изменен" -#: ../../../../ajax/ajax_configSave.php:232 -#: ../../../../ajax/ajax_viewpass.php:60 +#: ../../../../ajax/ajax_configSave.php:261 +#: ../../../../ajax/ajax_viewpass.php:61 #: ../../../../inc/Controller.class.php:169 msgid "Reinicie la sesión para cambiarla" msgstr "Перезайдите для вступления изменений" -#: ../../../../ajax/ajax_configSave.php:234 +#: ../../../../ajax/ajax_configSave.php:263 msgid "Clave maestra no indicada" msgstr "Необходим мастер-пароль" -#: ../../../../ajax/ajax_configSave.php:236 +#: ../../../../ajax/ajax_configSave.php:265 msgid "Se ha de confirmar el cambio de clave" msgstr "Изменение пароля должно быть подтверждено" -#: ../../../../ajax/ajax_configSave.php:240 +#: ../../../../ajax/ajax_configSave.php:269 msgid "Las claves son idénticas" msgstr "Пароли одинаковы" -#: ../../../../ajax/ajax_configSave.php:242 +#: ../../../../ajax/ajax_configSave.php:271 msgid "Las claves maestras no coinciden" msgstr "Мастер-пароль не совпадает" -#: ../../../../ajax/ajax_configSave.php:244 +#: ../../../../ajax/ajax_configSave.php:273 msgid "La clave maestra actual no coincide" msgstr "Текущий мастер-пароль ошибочен" -#: ../../../../ajax/ajax_configSave.php:253 +#: ../../../../ajax/ajax_configSave.php:282 msgid "Errores al actualizar las claves de las cuentas" msgstr "Ошибка при изменении паролей учетной записи" -#: ../../../../ajax/ajax_configSave.php:259 +#: ../../../../ajax/ajax_configSave.php:288 #, fuzzy msgid "Errores al actualizar las claves de las cuentas del histórico" msgstr "Ошибка при изменении паролей учетной записи" -#: ../../../../ajax/ajax_configSave.php:263 +#: ../../../../ajax/ajax_configSave.php:292 #, fuzzy msgid "Errores al actualizar datos de campos personalizados" msgstr "Ошибка при изменении паролей учетной записи" -#: ../../../../ajax/ajax_configSave.php:276 -#: ../../../../inc/Account.class.php:495 +#: ../../../../ajax/ajax_configSave.php:305 +#: ../../../../inc/Account.class.php:512 msgid "Actualizar Clave Maestra" msgstr "Изменить мастер-пароль" -#: ../../../../ajax/ajax_configSave.php:280 +#: ../../../../ajax/ajax_configSave.php:309 msgid "Error al guardar el hash de la clave maestra" msgstr "Ошибка при сохранении хеша мастер-пароля" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:317 #, fuzzy msgid "Generar Clave Temporal" msgstr "Сгенерировать пароль" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:317 +#: ../../../../inc/CustomFieldsBase.class.php:87 #: ../../../../inc/themes/classic/account.inc:86 #: ../../../../inc/themes/classic/editpass.inc:25 -#: ../../../../inc/themes/classic/encryption.inc:146 +#: ../../../../inc/themes/classic/encryption.inc:143 #: ../../../../inc/themes/classic/install.inc:38 #: ../../../../inc/themes/classic/install.inc:39 #: ../../../../inc/themes/classic/login.inc:10 @@ -728,7 +770,7 @@ msgstr "Сгенерировать пароль" #: ../../../../inc/themes/material-blue/editpass.inc:26 #: ../../../../inc/themes/material-blue/editpass.inc:31 #: ../../../../inc/themes/material-blue/editpass.inc:41 -#: ../../../../inc/themes/material-blue/encryption.inc:164 +#: ../../../../inc/themes/material-blue/encryption.inc:161 #: ../../../../inc/themes/material-blue/install.inc:46 #: ../../../../inc/themes/material-blue/ldap.inc:105 #: ../../../../inc/themes/material-blue/login.inc:18 @@ -743,31 +785,36 @@ msgstr "Сгенерировать пароль" msgid "Clave" msgstr "Пароль" -#: ../../../../ajax/ajax_configSave.php:290 +#: ../../../../ajax/ajax_configSave.php:319 #, fuzzy msgid "Clave Temporal Generada" msgstr "Сгенерированный пароль" -#: ../../../../ajax/ajax_doLogin.php:46 +#: ../../../../ajax/ajax_configSave.php:321 +#, fuzzy +msgid "Error al generar clave temporal" +msgstr "Сгенерировать пароль" + +#: ../../../../ajax/ajax_doLogin.php:49 msgid "Usuario/Clave no introducidos" msgstr "Пользователь / пароль не введены" -#: ../../../../ajax/ajax_doLogin.php:58 +#: ../../../../ajax/ajax_doLogin.php:61 #, fuzzy msgid "Inicio sesión" msgstr "Начало сессии (LDAP)" -#: ../../../../ajax/ajax_doLogin.php:63 +#: ../../../../ajax/ajax_doLogin.php:66 #, fuzzy msgid "Servidor Login" msgstr "Логин" -#: ../../../../ajax/ajax_doLogin.php:69 +#: ../../../../ajax/ajax_doLogin.php:72 msgid "Error al guardar los datos de LDAP" msgstr "Ошибка сохранении данных пользователя из LDAP" -#: ../../../../ajax/ajax_doLogin.php:72 ../../../../ajax/ajax_doLogin.php:80 -#: ../../../../ajax/ajax_doLogin.php:132 ../../../../ajax/ajax_doLogin.php:176 +#: ../../../../ajax/ajax_doLogin.php:75 ../../../../ajax/ajax_doLogin.php:83 +#: ../../../../ajax/ajax_doLogin.php:135 ../../../../ajax/ajax_doLogin.php:179 #: ../../../../inc/ApiTokens.class.php:140 #: ../../../../inc/ApiTokens.class.php:186 #: ../../../../inc/ApiTokens.class.php:217 @@ -776,30 +823,32 @@ msgstr "Ошибка сохранении данных пользователя #: ../../../../inc/ApiTokens.class.php:304 #: ../../../../inc/ApiTokens.class.php:328 ../../../../inc/Crypt.class.php:181 #: ../../../../inc/Crypt.class.php:192 -#: ../../../../inc/XmlImportBase.class.php:74 +#: ../../../../inc/XmlImportBase.class.php:79 msgid "Error interno" msgstr "Внутренняя ошибка" -#: ../../../../ajax/ajax_doLogin.php:77 +#: ../../../../ajax/ajax_doLogin.php:80 msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Ошибка изменения пароля пользователя в БД" -#: ../../../../ajax/ajax_doLogin.php:85 ../../../../ajax/ajax_doLogin.php:110 +#: ../../../../ajax/ajax_doLogin.php:88 ../../../../ajax/ajax_doLogin.php:113 msgid "Login incorrecto" msgstr "Ошибка входа" -#: ../../../../ajax/ajax_doLogin.php:86 ../../../../ajax/ajax_doLogin.php:93 -#: ../../../../ajax/ajax_doLogin.php:100 ../../../../ajax/ajax_doLogin.php:111 -#: ../../../../ajax/ajax_doLogin.php:121 ../../../../ajax/ajax_doLogin.php:171 +#: ../../../../ajax/ajax_doLogin.php:89 ../../../../ajax/ajax_doLogin.php:96 +#: ../../../../ajax/ajax_doLogin.php:103 ../../../../ajax/ajax_doLogin.php:114 +#: ../../../../ajax/ajax_doLogin.php:124 ../../../../ajax/ajax_doLogin.php:174 #: ../../../../inc/ApiTokens.class.php:190 #: ../../../../inc/ApiTokens.class.php:308 ../../../../inc/Auth.class.php:108 -#: ../../../../inc/Init.class.php:457 ../../../../inc/UserBase.class.php:382 -#: ../../../../inc/UserBase.class.php:526 ../../../../res/test.php:64 -#: ../../../../web/SearchC.class.php:304 -#: ../../../../web/UsersMgmtC.class.php:392 +#: ../../../../inc/Init.class.php:457 ../../../../inc/Ldap.class.php:290 +#: ../../../../inc/Ldap.class.php:303 ../../../../inc/Ldap.class.php:311 +#: ../../../../inc/UserBase.class.php:384 +#: ../../../../inc/UserBase.class.php:528 ../../../../res/test.php:64 +#: ../../../../web/SearchC.class.php:303 +#: ../../../../web/UsersMgmtC.class.php:393 #: ../../../../inc/themes/classic/account.inc:73 #: ../../../../inc/themes/classic/editpass.inc:21 -#: ../../../../inc/themes/classic/eventlog.inc:25 +#: ../../../../inc/themes/classic/eventlog.inc:23 #: ../../../../inc/themes/classic/info.inc:39 #: ../../../../inc/themes/classic/install.inc:27 #: ../../../../inc/themes/classic/install.inc:28 @@ -813,7 +862,7 @@ msgstr "Ошибка входа" #: ../../../../inc/themes/material-blue/account.inc:83 #: ../../../../inc/themes/material-blue/config.inc:381 #: ../../../../inc/themes/material-blue/editpass.inc:22 -#: ../../../../inc/themes/material-blue/eventlog.inc:24 +#: ../../../../inc/themes/material-blue/eventlog.inc:23 #: ../../../../inc/themes/material-blue/info.inc:39 #: ../../../../inc/themes/material-blue/login.inc:11 #: ../../../../inc/themes/material-blue/login.inc:34 @@ -821,53 +870,55 @@ msgstr "Ошибка входа" #: ../../../../inc/themes/material-blue/mail.inc:67 #: ../../../../inc/themes/material-blue/passreset.inc:16 #: ../../../../inc/themes/material-blue/request.inc:20 -#: ../../../../inc/themes/material-blue/search.inc:55 +#: ../../../../inc/themes/material-blue/search.inc:91 #: ../../../../inc/themes/material-blue/tokens.inc:8 msgid "Usuario" msgstr "Пользователь" -#: ../../../../ajax/ajax_doLogin.php:89 ../../../../ajax/ajax_doLogin.php:103 -#: ../../../../ajax/ajax_doLogin.php:114 +#: ../../../../ajax/ajax_doLogin.php:92 ../../../../ajax/ajax_doLogin.php:106 +#: ../../../../ajax/ajax_doLogin.php:117 msgid "Usuario/Clave incorrectos" msgstr "Неправильный пользователь / пароль" -#: ../../../../ajax/ajax_doLogin.php:92 ../../../../ajax/ajax_doLogin.php:96 +#: ../../../../ajax/ajax_doLogin.php:95 ../../../../ajax/ajax_doLogin.php:99 msgid "Cuenta expirada" msgstr "Аккаунт просрочен" -#: ../../../../ajax/ajax_doLogin.php:99 +#: ../../../../ajax/ajax_doLogin.php:102 msgid "El usuario no tiene grupos asociados" msgstr "Для пользователя не указаны группы" -#: ../../../../ajax/ajax_doLogin.php:120 ../../../../ajax/ajax_doLogin.php:124 +#: ../../../../ajax/ajax_doLogin.php:123 ../../../../ajax/ajax_doLogin.php:127 msgid "Usuario deshabilitado" msgstr "Пользователь заблокирован" -#: ../../../../ajax/ajax_doLogin.php:129 +#: ../../../../ajax/ajax_doLogin.php:132 msgid "Error al obtener los datos del usuario de la BBDD" msgstr "Ошибка получения данных о пользователе из DB" -#: ../../../../ajax/ajax_doLogin.php:139 +#: ../../../../ajax/ajax_doLogin.php:142 msgid "La clave maestra no ha sido guardada o es incorrecta" msgstr "Мастер-пароль не сохранен или ошибочен" -#: ../../../../ajax/ajax_doLogin.php:146 ../../../../ajax/ajax_doLogin.php:149 +#: ../../../../ajax/ajax_doLogin.php:149 ../../../../ajax/ajax_doLogin.php:152 msgid "Clave maestra incorrecta" msgstr "Неправильный мастер-пароль" -#: ../../../../ajax/ajax_doLogin.php:172 +#: ../../../../ajax/ajax_doLogin.php:175 #: ../../../../inc/ProfileBase.class.php:512 #: ../../../../inc/ProfileBase.class.php:550 #: ../../../../inc/ProfileBase.class.php:593 -#: ../../../../web/UsersMgmtC.class.php:89 +#: ../../../../web/UsersMgmtC.class.php:90 #: ../../../../inc/themes/classic/users.inc:37 #: ../../../../inc/themes/material-blue/users.inc:43 msgid "Perfil" msgstr "Профиль" -#: ../../../../ajax/ajax_doLogin.php:173 ../../../../inc/Groups.class.php:158 +#: ../../../../ajax/ajax_doLogin.php:176 ../../../../inc/Groups.class.php:158 #: ../../../../inc/Groups.class.php:259 ../../../../inc/Groups.class.php:375 -#: ../../../../web/UsersMgmtC.class.php:90 +#: ../../../../inc/Ldap.class.php:213 ../../../../inc/Ldap.class.php:226 +#: ../../../../inc/Ldap.class.php:236 ../../../../inc/Ldap.class.php:385 +#: ../../../../web/UsersMgmtC.class.php:91 #: ../../../../inc/themes/classic/ldap.inc:116 #: ../../../../inc/themes/classic/users.inc:49 #: ../../../../inc/themes/material-blue/ldap.inc:139 @@ -876,192 +927,192 @@ msgstr "Профиль" msgid "Grupo" msgstr "Группа" -#: ../../../../ajax/ajax_files.php:45 ../../../../ajax/ajax_getFiles.php:39 +#: ../../../../ajax/ajax_files.php:46 ../../../../ajax/ajax_getFiles.php:40 msgid "Gestión de archivos deshabilitada" msgstr "Управление файлами отключено" -#: ../../../../ajax/ajax_files.php:59 ../../../../inc/Files.class.php:63 +#: ../../../../ajax/ajax_files.php:60 ../../../../inc/Files.class.php:63 msgid "Subir Archivo" msgstr "Загрузить файл" -#: ../../../../ajax/ajax_files.php:68 +#: ../../../../ajax/ajax_files.php:69 msgid "No hay extensiones permitidas" msgstr "Нет доступных расширений файлов" -#: ../../../../ajax/ajax_files.php:79 ../../../../inc/FileImport.class.php:115 +#: ../../../../ajax/ajax_files.php:80 ../../../../inc/FileImport.class.php:115 msgid "Tipo de archivo no soportado" msgstr "Данный тип файлов запрещен" -#: ../../../../ajax/ajax_files.php:85 +#: ../../../../ajax/ajax_files.php:86 msgid "Archivo inválido" msgstr "Ошибочный файл" -#: ../../../../ajax/ajax_files.php:101 ../../../../ajax/ajax_files.php:118 +#: ../../../../ajax/ajax_files.php:102 ../../../../ajax/ajax_files.php:119 #: ../../../../inc/FileImport.class.php:131 #: ../../../../inc/FileImport.class.php:149 #: ../../../../inc/FileImport.class.php:167 msgid "Error interno al leer el archivo" msgstr "Внутренняя ошибка чтения файла" -#: ../../../../ajax/ajax_files.php:108 +#: ../../../../ajax/ajax_files.php:109 msgid "El archivo es mayor de " msgstr "Файл больше чем" -#: ../../../../ajax/ajax_files.php:125 +#: ../../../../ajax/ajax_files.php:126 msgid "Archivo guardado" msgstr "Файл сохранен" -#: ../../../../ajax/ajax_files.php:130 +#: ../../../../ajax/ajax_files.php:131 msgid "No se pudo guardar el archivo" msgstr "Ошибка сохранения файла" -#: ../../../../ajax/ajax_files.php:140 ../../../../ajax/ajax_files.php:199 +#: ../../../../ajax/ajax_files.php:141 ../../../../ajax/ajax_files.php:200 msgid "No es un ID de archivo válido" msgstr "Ошибочный ID файла" -#: ../../../../ajax/ajax_files.php:148 +#: ../../../../ajax/ajax_files.php:149 msgid "El archivo no existe" msgstr "Файл не существует" -#: ../../../../ajax/ajax_files.php:157 +#: ../../../../ajax/ajax_files.php:158 #: ../../../../inc/themes/classic/files.inc:19 #: ../../../../inc/themes/material-blue/files.inc:19 msgid "Descargar Archivo" msgstr "Скачать файл" -#: ../../../../ajax/ajax_files.php:158 ../../../../ajax/ajax_viewpass.php:69 +#: ../../../../ajax/ajax_files.php:159 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/Files.class.php:112 -#: ../../../../inc/themes/classic/eventlog.inc:16 -#: ../../../../inc/themes/material-blue/eventlog.inc:15 +#: ../../../../inc/themes/classic/eventlog.inc:14 +#: ../../../../inc/themes/material-blue/eventlog.inc:14 msgid "ID" msgstr "ID" -#: ../../../../ajax/ajax_files.php:159 ../../../../inc/Files.class.php:65 +#: ../../../../ajax/ajax_files.php:160 ../../../../inc/Files.class.php:65 #: ../../../../inc/Files.class.php:113 -#: ../../../../inc/themes/classic/import.inc:155 -#: ../../../../inc/themes/material-blue/import.inc:83 +#: ../../../../inc/themes/classic/import.inc:152 +#: ../../../../inc/themes/material-blue/import.inc:80 msgid "Archivo" msgstr "Файл" -#: ../../../../ajax/ajax_files.php:160 ../../../../inc/Files.class.php:66 +#: ../../../../ajax/ajax_files.php:161 ../../../../inc/Files.class.php:66 #: ../../../../inc/Files.class.php:114 -#: ../../../../web/AccountsMgmtC.class.php:266 +#: ../../../../web/AccountsMgmtC.class.php:267 #: ../../../../inc/themes/classic/customfields.inc:16 #: ../../../../inc/themes/material-blue/customfields.inc:19 msgid "Tipo" msgstr "Тип" -#: ../../../../ajax/ajax_files.php:161 ../../../../inc/Files.class.php:67 +#: ../../../../ajax/ajax_files.php:162 ../../../../inc/Files.class.php:67 #: ../../../../inc/Files.class.php:115 msgid "Tamaño" msgstr "Размер" -#: ../../../../ajax/ajax_files.php:203 +#: ../../../../ajax/ajax_files.php:204 msgid "Archivo eliminado" msgstr "Файл удален" -#: ../../../../ajax/ajax_files.php:208 +#: ../../../../ajax/ajax_files.php:209 msgid "Error al eliminar el archivo" msgstr "Ошибка при удалении файла" #: ../../../../ajax/ajax_getContent.php:42 #: ../../../../inc/ApiRequest.class.php:55 -#: ../../../../inc/CustomFieldDef.class.php:38 -#: ../../../../inc/CustomFields.class.php:48 +#: ../../../../inc/CustomFieldDef.class.php:45 +#: ../../../../inc/CustomFields.class.php:54 msgid "Parámetros incorrectos" msgstr "Ошибочные параметры" -#: ../../../../ajax/ajax_migrate.php:55 +#: ../../../../ajax/ajax_migrate.php:56 msgid "Confirmar la importación de cuentas" msgstr "Подтвердите импорт учетной записи" -#: ../../../../ajax/ajax_migrate.php:57 +#: ../../../../ajax/ajax_migrate.php:58 msgid "Es necesario un usuario de conexión" msgstr "Требуется имя пользовтеля для подключения" -#: ../../../../ajax/ajax_migrate.php:59 +#: ../../../../ajax/ajax_migrate.php:60 msgid "Es necesaria una clave de conexión" msgstr "Требуется пароль для подключения" -#: ../../../../ajax/ajax_migrate.php:61 +#: ../../../../ajax/ajax_migrate.php:62 msgid "Es necesario el nombre de la BBDD" msgstr "Необходимо имя базы данных" -#: ../../../../ajax/ajax_migrate.php:63 +#: ../../../../ajax/ajax_migrate.php:64 msgid "Es necesario un nombre de host" msgstr "Необходимо имя сервера" -#: ../../../../ajax/ajax_passReset.php:47 #: ../../../../ajax/ajax_passReset.php:50 +#: ../../../../ajax/ajax_passReset.php:53 msgid "Recuperación de Clave" msgstr "Восстановление пароля" -#: ../../../../ajax/ajax_passReset.php:53 -#: ../../../../ajax/ajax_passReset.php:58 +#: ../../../../ajax/ajax_passReset.php:56 +#: ../../../../ajax/ajax_passReset.php:61 msgid "Solicitado para" msgstr "Запрошено для" -#: ../../../../ajax/ajax_passReset.php:55 -#: ../../../../ajax/ajax_sendRequest.php:75 +#: ../../../../ajax/ajax_passReset.php:58 +#: ../../../../ajax/ajax_sendRequest.php:76 msgid "Solicitud enviada" msgstr "Запрос отправлен" -#: ../../../../ajax/ajax_passReset.php:55 +#: ../../../../ajax/ajax_passReset.php:58 msgid "En breve recibirá un correo para completar la solicitud." msgstr "В скором времени вы получите email для завершения запроса." -#: ../../../../ajax/ajax_passReset.php:60 +#: ../../../../ajax/ajax_passReset.php:63 msgid "No se ha podido realizar la solicitud. Consulte con el administrador." msgstr "" "Запрос не может быть выполнен. Пожалуйста, свяжитесь с администратором." -#: ../../../../ajax/ajax_passReset.php:72 -#: ../../../../inc/UserBase.class.php:568 -#: ../../../../inc/UserUtil.class.php:662 +#: ../../../../ajax/ajax_passReset.php:73 +#: ../../../../inc/UserBase.class.php:570 +#: ../../../../inc/UserPass.class.php:127 msgid "Modificar Clave Usuario" msgstr "Изменить пароль пользователя" -#: ../../../../ajax/ajax_passReset.php:72 -#: ../../../../inc/UserBase.class.php:568 -#: ../../../../inc/UserBase.class.php:592 -#: ../../../../inc/UserUtil.class.php:662 -#: ../../../../web/UsersMgmtC.class.php:88 +#: ../../../../ajax/ajax_passReset.php:73 +#: ../../../../inc/UserBase.class.php:570 +#: ../../../../inc/UserBase.class.php:594 +#: ../../../../inc/UserPass.class.php:127 +#: ../../../../web/UsersMgmtC.class.php:89 #: ../../../../inc/themes/classic/users.inc:21 #: ../../../../inc/themes/material-blue/users.inc:24 msgid "Login" msgstr "Логин" -#: ../../../../ajax/ajax_passReset.php:80 +#: ../../../../ajax/ajax_passReset.php:81 msgid "La clave es incorrecta o no coincide" msgstr "Ошибка пароля" -#: ../../../../ajax/ajax_sendRequest.php:48 +#: ../../../../ajax/ajax_sendRequest.php:49 msgid "Es necesaria una descripción" msgstr "Необходимо описание" -#: ../../../../ajax/ajax_sendRequest.php:61 +#: ../../../../ajax/ajax_sendRequest.php:62 msgid "Solicitud de Modificación de Cuenta" msgstr "Запрос на изменение учетной записи" -#: ../../../../ajax/ajax_sendRequest.php:62 +#: ../../../../ajax/ajax_sendRequest.php:63 msgid "Solicitante" msgstr "Запросил" -#: ../../../../ajax/ajax_sendRequest.php:63 -#: ../../../../ajax/ajax_viewpass.php:70 ../../../../inc/Account.class.php:165 -#: ../../../../inc/Account.class.php:219 ../../../../inc/Account.class.php:400 -#: ../../../../inc/Account.class.php:423 ../../../../inc/Account.class.php:665 +#: ../../../../ajax/ajax_sendRequest.php:64 +#: ../../../../ajax/ajax_viewpass.php:71 ../../../../inc/Account.class.php:181 +#: ../../../../inc/Account.class.php:236 ../../../../inc/Account.class.php:417 +#: ../../../../inc/Account.class.php:440 ../../../../inc/Account.class.php:682 #: ../../../../inc/Files.class.php:64 msgid "Cuenta" msgstr "Учетная запись" -#: ../../../../ajax/ajax_sendRequest.php:64 -#: ../../../../inc/Account.class.php:164 ../../../../inc/Account.class.php:218 -#: ../../../../inc/Account.class.php:399 ../../../../inc/Account.class.php:422 -#: ../../../../inc/Account.class.php:664 ../../../../inc/Customer.class.php:65 +#: ../../../../ajax/ajax_sendRequest.php:65 +#: ../../../../inc/Account.class.php:180 ../../../../inc/Account.class.php:235 +#: ../../../../inc/Account.class.php:416 ../../../../inc/Account.class.php:439 +#: ../../../../inc/Account.class.php:681 ../../../../inc/Customer.class.php:65 #: ../../../../inc/Customer.class.php:115 #: ../../../../inc/Customer.class.php:163 -#: ../../../../web/SearchC.class.php:286 +#: ../../../../web/SearchC.class.php:285 #: ../../../../inc/themes/classic/account.inc:23 #: ../../../../inc/themes/classic/editpass.inc:12 #: ../../../../inc/themes/classic/request.inc:9 @@ -1069,61 +1120,61 @@ msgstr "Учетная запись" #: ../../../../inc/themes/material-blue/account.inc:29 #: ../../../../inc/themes/material-blue/editpass.inc:13 #: ../../../../inc/themes/material-blue/request.inc:10 -#: ../../../../inc/themes/material-blue/search.inc:24 +#: ../../../../inc/themes/material-blue/search.inc:60 msgid "Cliente" msgstr "Заказчик" -#: ../../../../ajax/ajax_sendRequest.php:65 -#: ../../../../web/AccountsMgmtC.class.php:79 -#: ../../../../web/AccountsMgmtC.class.php:138 -#: ../../../../web/UsersMgmtC.class.php:187 +#: ../../../../ajax/ajax_sendRequest.php:66 +#: ../../../../web/AccountsMgmtC.class.php:80 +#: ../../../../web/AccountsMgmtC.class.php:139 +#: ../../../../web/UsersMgmtC.class.php:188 #: ../../../../inc/themes/classic/categories.inc:16 #: ../../../../inc/themes/classic/customers.inc:16 -#: ../../../../inc/themes/classic/eventlog.inc:31 +#: ../../../../inc/themes/classic/eventlog.inc:29 #: ../../../../inc/themes/classic/groups.inc:16 #: ../../../../inc/themes/material-blue/categories.inc:20 #: ../../../../inc/themes/material-blue/customers.inc:20 -#: ../../../../inc/themes/material-blue/eventlog.inc:30 +#: ../../../../inc/themes/material-blue/eventlog.inc:29 #: ../../../../inc/themes/material-blue/groups.inc:20 msgid "Descripción" msgstr "Описание" -#: ../../../../ajax/ajax_sendRequest.php:78 +#: ../../../../ajax/ajax_sendRequest.php:79 msgid "Error al enviar la solicitud" msgstr "Ошибка при отправке запроса" -#: ../../../../ajax/ajax_userPrefsSave.php:70 -#: ../../../../ajax/ajax_userPrefsSave.php:103 +#: ../../../../ajax/ajax_userPrefsSave.php:73 +#: ../../../../ajax/ajax_userPrefsSave.php:106 #, fuzzy msgid "Error al actualizar preferencias" msgstr "Ошибка изменения пароля" -#: ../../../../ajax/ajax_userPrefsSave.php:80 -#: ../../../../ajax/ajax_userPrefsSave.php:106 +#: ../../../../ajax/ajax_userPrefsSave.php:83 +#: ../../../../ajax/ajax_userPrefsSave.php:109 #, fuzzy msgid "Preferencias actualizadas" msgstr "Обновлены учетные записи:" -#: ../../../../ajax/ajax_viewpass.php:54 +#: ../../../../ajax/ajax_viewpass.php:55 msgid "La clave maestra no coincide" msgstr "Неверный мастер-пароль" -#: ../../../../ajax/ajax_viewpass.php:58 +#: ../../../../ajax/ajax_viewpass.php:59 #: ../../../../inc/Controller.class.php:166 msgid "No tiene permisos para acceder a esta cuenta" msgstr "Нет прав для доступа к данной учетной записи" -#: ../../../../ajax/ajax_viewpass.php:68 ../../../../inc/Acl.class.php:133 +#: ../../../../ajax/ajax_viewpass.php:69 ../../../../inc/Acl.class.php:133 #: ../../../../inc/themes/classic/account.inc:382 #: ../../../../inc/themes/classic/profiles.inc:23 #: ../../../../inc/themes/classic/search.inc:109 -#: ../../../../inc/themes/material-blue/account.inc:422 +#: ../../../../inc/themes/material-blue/account.inc:424 #: ../../../../inc/themes/material-blue/profiles.inc:35 -#: ../../../../inc/themes/material-blue/search.inc:113 +#: ../../../../inc/themes/material-blue/search.inc:149 msgid "Ver Clave" msgstr "Показать пароль" -#: ../../../../ajax/ajax_viewpass.php:79 ../../../../js/strings.js.php:73 +#: ../../../../ajax/ajax_viewpass.php:80 ../../../../js/strings.js.php:73 #, fuzzy msgid "Clave de Cuenta" msgstr "Изменить пароль учетной записи" @@ -1140,11 +1191,19 @@ msgstr "Help :: FAQ :: Changelog" #: ../../../../inc/AccountSearch.class.php:28 ../../../../inc/Acl.class.php:29 #: ../../../../inc/Api.class.php:30 ../../../../inc/ApiRequest.class.php:28 #: ../../../../inc/ApiTokens.class.php:28 ../../../../inc/Auth.class.php:29 -#: ../../../../inc/Auth2FA.class.php:32 ../../../../inc/Backup.class.php:28 -#: ../../../../inc/Category.class.php:29 ../../../../inc/Common.class.php:28 -#: ../../../../inc/Config.class.php:28 ../../../../inc/Controller.class.php:31 -#: ../../../../inc/Crypt.class.php:28 ../../../../inc/CsvImport.class.php:28 +#: ../../../../inc/Auth2FA.class.php:33 ../../../../inc/Backup.class.php:28 +#: ../../../../inc/Base.php:26 ../../../../inc/Cache.class.php:28 +#: ../../../../inc/Category.class.php:29 ../../../../inc/Config.class.php:28 +#: ../../../../inc/ConfigDB.class.php:28 +#: ../../../../inc/ConfigInterface.class.php:28 +#: ../../../../inc/Controller.class.php:31 ../../../../inc/Crypt.class.php:28 +#: ../../../../inc/CryptMasterPass.class.php:28 +#: ../../../../inc/CryptPKI.class.php:28 +#: ../../../../inc/CsvImport.class.php:28 #: ../../../../inc/CsvImportBase.class.php:28 +#: ../../../../inc/CustomFieldDef.class.php:28 +#: ../../../../inc/CustomFields.class.php:28 +#: ../../../../inc/CustomFieldsBase.class.php:28 #: ../../../../inc/Customer.class.php:29 ../../../../inc/DB.class.php:28 #: ../../../../inc/DBConnectionFactory.class.php:30 #: ../../../../inc/FileImport.class.php:28 ../../../../inc/Files.class.php:29 @@ -1159,25 +1218,34 @@ msgstr "Help :: FAQ :: Changelog" #: ../../../../inc/Migrate.class.php:28 ../../../../inc/Minify.class.php:30 #: ../../../../inc/Profile.class.php:29 #: ../../../../inc/ProfileBase.class.php:28 -#: ../../../../inc/Request.class.php:110 ../../../../inc/Session.class.php:28 +#: ../../../../inc/Request.class.php:110 ../../../../inc/Response.class.php:28 +#: ../../../../inc/SPException.class.php:28 +#: ../../../../inc/Session.class.php:28 +#: ../../../../inc/SessionUtil.class.php:28 #: ../../../../inc/SyspassImport.class.php:28 -#: ../../../../inc/Themes.class.php:28 ../../../../inc/Upgrade.class.php:29 -#: ../../../../inc/User.class.php:28 ../../../../inc/UserLdap.class.php:28 +#: ../../../../inc/Template.class.php:27 ../../../../inc/Themes.class.php:28 +#: ../../../../inc/Upgrade.class.php:29 ../../../../inc/User.class.php:28 +#: ../../../../inc/UserAccounts.class.php:28 +#: ../../../../inc/UserBase.class.php:28 ../../../../inc/UserLdap.class.php:28 +#: ../../../../inc/UserMigrate.class.php:28 +#: ../../../../inc/UserPass.class.php:28 +#: ../../../../inc/UserPassRecover.class.php:28 #: ../../../../inc/UserPreferences.class.php:28 -#: ../../../../inc/UserUtil.class.php:28 ../../../../inc/Util.class.php:31 +#: ../../../../inc/UserUtil.class.php:28 ../../../../inc/Util.class.php:28 +#: ../../../../inc/XmlExport.class.php:28 #: ../../../../inc/XmlImport.class.php:28 #: ../../../../inc/XmlImportBase.class.php:28 -#: ../../../../web/AccountC.class.php:38 -#: ../../../../web/AccountsMgmtC.class.php:32 -#: ../../../../web/ConfigC.class.php:33 ../../../../web/EventlogC.class.php:28 -#: ../../../../web/SearchC.class.php:31 -#: ../../../../web/UsersMgmtC.class.php:39 -#: ../../../../web/UsersPrefsC.class.php:34 +#: ../../../../web/AccountC.class.php:41 +#: ../../../../web/AccountsMgmtC.class.php:33 +#: ../../../../web/ConfigC.class.php:35 ../../../../web/EventlogC.class.php:30 +#: ../../../../web/SearchC.class.php:33 +#: ../../../../web/UsersMgmtC.class.php:40 +#: ../../../../web/UsersPrefsC.class.php:35 msgid "No es posible acceder directamente a este archivo" msgstr "Невозможно обратиться к файлу напрямую" -#: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:185 -#: ../../../../inc/Account.class.php:634 +#: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:201 +#: ../../../../inc/Account.class.php:651 msgid "Error al actualizar el historial" msgstr "Ошибка при обновлении истории" @@ -1185,127 +1253,127 @@ msgstr "Ошибка при обновлении истории" msgid "Actualizar Cuenta" msgstr "Редактировать учетную запись" -#: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:381 +#: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:398 msgid "Error al actualizar los grupos secundarios" msgstr "Ошибка изменения вторичных групп" -#: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:389 +#: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:406 msgid "Error al actualizar los usuarios de la cuenta" msgstr "Ошибка изменения пользователей с доступом к учетной записи" -#: ../../../../inc/Account.class.php:217 +#: ../../../../inc/Account.class.php:234 msgid "Restaurar Cuenta" msgstr "Восстановление учетной записи" -#: ../../../../inc/Account.class.php:324 -#: ../../../../inc/AccountHistory.class.php:343 -#: ../../../../inc/AccountHistory.class.php:503 +#: ../../../../inc/Account.class.php:341 +#: ../../../../inc/AccountHistory.class.php:348 +#: ../../../../inc/AccountHistory.class.php:508 #, fuzzy msgid "No se pudieron obtener los datos de la cuenta" msgstr "Ошибка получения паролей для учетной записи" -#: ../../../../inc/Account.class.php:398 ../../../../inc/Acl.class.php:129 -#: ../../../../web/AccountC.class.php:147 ../../../../web/MainC.class.php:183 +#: ../../../../inc/Account.class.php:415 ../../../../inc/Acl.class.php:129 +#: ../../../../web/AccountC.class.php:150 ../../../../web/MainC.class.php:183 msgid "Nueva Cuenta" msgstr "Новая учетная запись" -#: ../../../../inc/Account.class.php:416 +#: ../../../../inc/Account.class.php:433 msgid "ERROR: Error en la operación." msgstr "ОШИБКА: Сбой операции" -#: ../../../../inc/Account.class.php:421 ../../../../inc/Acl.class.php:134 -#: ../../../../web/AccountC.class.php:353 +#: ../../../../inc/Account.class.php:438 ../../../../inc/Acl.class.php:134 +#: ../../../../web/AccountC.class.php:356 #: ../../../../inc/themes/classic/account.inc:369 #: ../../../../inc/themes/classic/search.inc:137 -#: ../../../../inc/themes/material-blue/account.inc:416 -#: ../../../../inc/themes/material-blue/search.inc:140 +#: ../../../../inc/themes/material-blue/account.inc:418 +#: ../../../../inc/themes/material-blue/search.inc:178 msgid "Eliminar Cuenta" msgstr "Удалить учетную запись" -#: ../../../../inc/Account.class.php:434 +#: ../../../../inc/Account.class.php:451 msgid "Error al eliminar grupos asociados a la cuenta" msgstr "Ошибка удаления групп учетной записи" -#: ../../../../inc/Account.class.php:438 +#: ../../../../inc/Account.class.php:455 msgid "Error al eliminar usuarios asociados a la cuenta" msgstr "Ошибка удаления пользователей учетной записи" -#: ../../../../inc/Account.class.php:442 +#: ../../../../inc/Account.class.php:459 msgid "Error al eliminar archivos asociados a la cuenta" msgstr "Ошибка удаления файлов учетной записи" -#: ../../../../inc/Account.class.php:496 -#: ../../../../inc/AccountHistory.class.php:124 +#: ../../../../inc/Account.class.php:513 +#: ../../../../inc/AccountHistory.class.php:129 #: ../../../../inc/XmlImport.class.php:62 msgid "Inicio" msgstr "Старт" -#: ../../../../inc/Account.class.php:501 -#: ../../../../inc/AccountHistory.class.php:130 +#: ../../../../inc/Account.class.php:518 +#: ../../../../inc/AccountHistory.class.php:135 msgid "Error en el módulo de encriptación" msgstr "Ошибка в модуле шифрования" -#: ../../../../inc/Account.class.php:509 -#: ../../../../inc/AccountHistory.class.php:138 +#: ../../../../inc/Account.class.php:526 +#: ../../../../inc/AccountHistory.class.php:143 msgid "Error al obtener las claves de las cuentas" msgstr "Ошибка получения паролей для учетной записи" -#: ../../../../inc/Account.class.php:525 -#: ../../../../inc/AccountHistory.class.php:160 +#: ../../../../inc/Account.class.php:542 +#: ../../../../inc/AccountHistory.class.php:165 #, fuzzy msgid "Clave de cuenta vacía" msgstr "Изменить пароль учетной записи" -#: ../../../../inc/Account.class.php:530 -#: ../../../../inc/AccountHistory.class.php:165 +#: ../../../../inc/Account.class.php:547 +#: ../../../../inc/AccountHistory.class.php:170 #, fuzzy msgid "IV de encriptación incorrecto" msgstr "Количество полей неправильно" -#: ../../../../inc/Account.class.php:539 -#: ../../../../inc/AccountHistory.class.php:174 +#: ../../../../inc/Account.class.php:556 +#: ../../../../inc/AccountHistory.class.php:179 #, fuzzy msgid "No es posible desencriptar la clave de la cuenta" msgstr "Все пароли учетных записей будут зашифрованы вновь." -#: ../../../../inc/Account.class.php:545 +#: ../../../../inc/Account.class.php:562 msgid "Fallo al actualizar la clave de la cuenta" msgstr "Ошибка изменения пароля учетной записи" -#: ../../../../inc/Account.class.php:559 +#: ../../../../inc/Account.class.php:576 #, fuzzy msgid "Cuentas actualizadas" msgstr "Обновлены учетные записи:" -#: ../../../../inc/Account.class.php:564 -#: ../../../../inc/AccountHistory.class.php:199 -#: ../../../../inc/CustomFields.class.php:319 +#: ../../../../inc/Account.class.php:581 +#: ../../../../inc/AccountHistory.class.php:204 +#: ../../../../inc/CustomFields.class.php:325 msgid "Fin" msgstr "Конец" -#: ../../../../inc/Account.class.php:663 +#: ../../../../inc/Account.class.php:680 msgid "Modificar Clave" msgstr "Изменить пароль" -#: ../../../../inc/Account.class.php:698 +#: ../../../../inc/Account.class.php:715 #, fuzzy msgid "No se pudieron obtener los datos de las cuentas" msgstr "Ошибка получения паролей для учетной записи" -#: ../../../../inc/AccountHistory.class.php:123 +#: ../../../../inc/AccountHistory.class.php:128 msgid "Actualizar Clave Maestra (H)" msgstr "Изменить мастер-пароль (H)" -#: ../../../../inc/AccountHistory.class.php:155 +#: ../../../../inc/AccountHistory.class.php:160 msgid "La clave maestra del registro no coincide" msgstr "Мастер-пароль не совпадает" -#: ../../../../inc/AccountHistory.class.php:180 +#: ../../../../inc/AccountHistory.class.php:185 msgid "Fallo al actualizar la clave del histórico" msgstr "Ошибка обновления истории мастер-паролей" -#: ../../../../inc/AccountHistory.class.php:194 -#: ../../../../inc/CustomFields.class.php:315 +#: ../../../../inc/AccountHistory.class.php:199 +#: ../../../../inc/CustomFields.class.php:321 #, fuzzy msgid "Registros actualizados" msgstr "Записи изменены" @@ -1324,13 +1392,13 @@ msgstr "Поиск" msgid "Ver Cuenta" msgstr "Просмотр деталей учетной записи" -#: ../../../../inc/Acl.class.php:128 ../../../../web/AccountC.class.php:260 +#: ../../../../inc/Acl.class.php:128 ../../../../web/AccountC.class.php:263 #: ../../../../inc/themes/classic/search.inc:131 -#: ../../../../inc/themes/material-blue/search.inc:134 +#: ../../../../inc/themes/material-blue/search.inc:172 msgid "Copiar Cuenta" msgstr "Скопировать учетную запись" -#: ../../../../inc/Acl.class.php:130 ../../../../web/AccountC.class.php:324 +#: ../../../../inc/Acl.class.php:130 ../../../../web/AccountC.class.php:327 msgid "Editar Cuenta" msgstr "Изменить учетную запись" @@ -1399,8 +1467,8 @@ msgstr "Управление группами" msgid "Gestión Perfiles" msgstr "Управление профилями" -#: ../../../../inc/Acl.class.php:146 ../../../../inc/Config.class.php:118 -#: ../../../../inc/Config.class.php:403 ../../../../web/MainC.class.php:201 +#: ../../../../inc/Acl.class.php:146 ../../../../inc/ConfigDB.class.php:91 +#: ../../../../inc/ConfigDB.class.php:119 ../../../../web/MainC.class.php:201 #: ../../../../inc/themes/classic/profiles.inc:57 #: ../../../../inc/themes/material-blue/profiles.inc:66 msgid "Configuración" @@ -1411,14 +1479,14 @@ msgstr "Конфигурация" msgid "Configuración General" msgstr "Основная конфигурация" -#: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:130 +#: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:132 #: ../../../../inc/themes/classic/profiles.inc:65 #: ../../../../inc/themes/material-blue/profiles.inc:77 #, fuzzy msgid "Encriptación" msgstr "Ошибка в модуле шифрования" -#: ../../../../inc/Acl.class.php:149 ../../../../web/ConfigC.class.php:175 +#: ../../../../inc/Acl.class.php:149 ../../../../web/ConfigC.class.php:177 #: ../../../../inc/themes/classic/backup.inc:4 #: ../../../../inc/themes/material-blue/backup.inc:4 msgid "Copia de Seguridad" @@ -1486,7 +1554,7 @@ msgid "Actualizar Autorización" msgstr "Обновить" #: ../../../../inc/ApiTokens.class.php:331 -#: ../../../../web/UsersMgmtC.class.php:421 +#: ../../../../web/UsersMgmtC.class.php:422 #, fuzzy msgid "Eliminar Autorización" msgstr "Удалить учетную запись" @@ -1527,13 +1595,13 @@ msgid "Error al realizar backup en modo compatibilidad" msgstr "Ошибка при создании резервной копии в режиме совместимости" #: ../../../../inc/Backup.class.php:223 -#: ../../../../inc/XmlExport.class.php:465 +#: ../../../../inc/XmlExport.class.php:467 #, fuzzy msgid "No es posible crear el directorio de backups" msgstr "Невозможно создать заказчика" #: ../../../../inc/Backup.class.php:228 -#: ../../../../inc/XmlExport.class.php:470 +#: ../../../../inc/XmlExport.class.php:472 msgid "Compruebe los permisos del directorio de backups" msgstr "Проверьте права на папку резервных копий" @@ -1549,11 +1617,11 @@ msgstr "Ошибка при создании категории" #: ../../../../inc/Category.class.php:83 #: ../../../../inc/Category.class.php:132 #: ../../../../inc/Category.class.php:182 -#: ../../../../web/SearchC.class.php:298 +#: ../../../../web/SearchC.class.php:297 #: ../../../../inc/themes/classic/account.inc:42 #: ../../../../inc/themes/classic/search.inc:53 #: ../../../../inc/themes/material-blue/account.inc:50 -#: ../../../../inc/themes/material-blue/search.inc:49 +#: ../../../../inc/themes/material-blue/search.inc:85 msgid "Categoría" msgstr "Категория" @@ -1566,7 +1634,7 @@ msgid "Error al eliminar la categoría" msgstr "Ошибка при удалении категории" #: ../../../../inc/Category.class.php:132 -#: ../../../../web/AccountsMgmtC.class.php:101 +#: ../../../../web/AccountsMgmtC.class.php:102 msgid "Eliminar Categoría" msgstr "Удалить категорию" @@ -1578,23 +1646,24 @@ msgstr "Ошибка изменения информации о категори msgid "Modificar Categoría" msgstr "Изменить категорию" -#: ../../../../inc/Config.class.php:118 ../../../../inc/Config.class.php:404 -msgid "Modificar configuración" -msgstr "Изменить конфигурацию" - -#: ../../../../inc/Config.class.php:276 +#: ../../../../inc/Config.class.php:148 msgid "No es posible escribir el archivo de configuración" msgstr "Ошибка записи файла конфигурации" -#: ../../../../inc/Config.class.php:276 +#: ../../../../inc/Config.class.php:148 msgid "Compruebe los permisos del directorio \"config\"" msgstr "Пожалуйста, проверьте права на папку \"config\"" -#: ../../../../inc/Config.class.php:405 +#: ../../../../inc/ConfigDB.class.php:91 +#: ../../../../inc/ConfigDB.class.php:120 +msgid "Modificar configuración" +msgstr "Изменить конфигурацию" + +#: ../../../../inc/ConfigDB.class.php:121 msgid "Parámetro" msgstr "Параметр" -#: ../../../../inc/Config.class.php:406 +#: ../../../../inc/ConfigDB.class.php:122 msgid "Valor" msgstr "Значение" @@ -1617,7 +1686,7 @@ msgstr "Нет прав для доступа к данной странице" msgid "No tiene permisos para realizar esta operación" msgstr "Нет прав для данной операции" -#: ../../../../inc/Crypt.class.php:119 ../../../../inc/Email.class.php:146 +#: ../../../../inc/Crypt.class.php:119 ../../../../inc/Email.class.php:148 msgid "Aviso" msgstr "Предупреждение" @@ -1634,13 +1703,13 @@ msgstr "Модуль криптографии не может быть загр msgid "Error al generar datos cifrados" msgstr "Ошибка при создании шифрованных данных" -#: ../../../../inc/CryptPKI.class.php:44 +#: ../../../../inc/CryptPKI.class.php:46 #, fuzzy msgid "No es posible generar las claves RSA" msgstr "Невозможно создать заказчика" -#: ../../../../inc/CryptPKI.class.php:110 -#: ../../../../inc/CryptPKI.class.php:141 +#: ../../../../inc/CryptPKI.class.php:112 +#: ../../../../inc/CryptPKI.class.php:143 #, fuzzy msgid "El archivo de clave no existe" msgstr "Файл не существует" @@ -1658,10 +1727,10 @@ msgstr "Пожалуйста, проверьте формат файла CSV" #: ../../../../inc/CsvImportBase.class.php:140 #: ../../../../inc/CsvImportBase.class.php:145 #: ../../../../inc/Import.class.php:118 ../../../../inc/Import.class.php:124 -#: ../../../../inc/Migrate.class.php:349 +#: ../../../../inc/Migrate.class.php:348 #: ../../../../inc/XmlImport.class.php:62 #: ../../../../inc/XmlImport.class.php:63 -#: ../../../../web/ConfigC.class.php:197 +#: ../../../../web/ConfigC.class.php:199 msgid "Importar Cuentas" msgstr "Импорт учетных записей" @@ -1679,40 +1748,73 @@ msgstr "Ошибка импорта учетной записи" msgid "Cuenta importada: %s" msgstr "Таймаут сессии (секунды)" -#: ../../../../inc/CustomFields.class.php:270 -#: ../../../../web/AccountsMgmtC.class.php:300 +#: ../../../../inc/CustomFields.class.php:276 +#: ../../../../web/AccountsMgmtC.class.php:301 #: ../../../../inc/themes/classic/profiles.inc:107 #: ../../../../inc/themes/material-blue/profiles.inc:124 msgid "Campos Personalizados" msgstr "" -#: ../../../../inc/CustomFields.class.php:279 +#: ../../../../inc/CustomFields.class.php:285 #, fuzzy msgid "Error al actualizar datos encriptados" msgstr "Ошибка изменения пароля" -#: ../../../../inc/CustomFields.class.php:283 +#: ../../../../inc/CustomFields.class.php:289 msgid "Actualizando datos encriptados" msgstr "" -#: ../../../../inc/CustomFields.class.php:310 +#: ../../../../inc/CustomFields.class.php:316 #, fuzzy msgid "Registros no actualizados" msgstr "Записи изменены" -#: ../../../../inc/CustomFieldsBase.class.php:81 +#: ../../../../inc/CustomFieldsBase.class.php:86 +#, fuzzy +msgid "Texto" +msgstr "Текст для поиска" + +#: ../../../../inc/CustomFieldsBase.class.php:88 +#, fuzzy +msgid "Fecha" +msgstr "Дата создания" + +#: ../../../../inc/CustomFieldsBase.class.php:89 +msgid "Número" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:90 +#: ../../../../inc/themes/classic/passreset.inc:22 +#: ../../../../inc/themes/classic/users.inc:61 +#: ../../../../inc/themes/material-blue/users.inc:71 +msgid "Email" +msgstr "Email" + +#: ../../../../inc/CustomFieldsBase.class.php:91 +msgid "Teléfono" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:92 +msgid "Link" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:93 +msgid "Color" +msgstr "" + +#: ../../../../inc/CustomFieldsBase.class.php:107 #: ../../../../inc/themes/classic/profiles.inc:98 #: ../../../../inc/themes/material-blue/profiles.inc:114 msgid "Categorías" msgstr "Категории" -#: ../../../../inc/CustomFieldsBase.class.php:82 +#: ../../../../inc/CustomFieldsBase.class.php:108 #: ../../../../inc/themes/classic/profiles.inc:103 #: ../../../../inc/themes/material-blue/profiles.inc:119 msgid "Clientes" msgstr "Заказчики" -#: ../../../../inc/CustomFieldsBase.class.php:84 +#: ../../../../inc/CustomFieldsBase.class.php:110 #: ../../../../inc/themes/classic/account.inc:143 #: ../../../../inc/themes/classic/profiles.inc:89 #: ../../../../inc/themes/material-blue/account.inc:169 @@ -1745,7 +1847,7 @@ msgid "Error al eliminar el cliente" msgstr "Ошибка при удалении заказчика" #: ../../../../inc/Customer.class.php:163 -#: ../../../../web/AccountsMgmtC.class.php:159 +#: ../../../../web/AccountsMgmtC.class.php:160 msgid "Eliminar Cliente" msgstr "Удалить заказчика" @@ -1753,22 +1855,22 @@ msgstr "Удалить заказчика" #: ../../../../inc/DBConnectionFactory.class.php:85 #: ../../../../inc/DBConnectionFactory.class.php:99 #: ../../../../inc/Installer.class.php:235 -#: ../../../../inc/Migrate.class.php:115 +#: ../../../../inc/Migrate.class.php:114 msgid "No es posible conectar con la BD" msgstr "Невозможно подключиться к базе данных" #: ../../../../inc/DBConnectionFactory.class.php:83 #: ../../../../inc/DBConnectionFactory.class.php:85 #: ../../../../inc/Installer.class.php:236 -#: ../../../../inc/Migrate.class.php:116 +#: ../../../../inc/Migrate.class.php:115 msgid "Compruebe los datos de conexión" msgstr "Пожалуйста, проверьте параметры подключения" -#: ../../../../inc/Email.class.php:59 ../../../../inc/UserUtil.class.php:565 +#: ../../../../inc/Email.class.php:59 ../../../../inc/UserUtil.class.php:182 msgid "N/D" msgstr "N/A" -#: ../../../../inc/Email.class.php:60 ../../../../web/UsersMgmtC.class.php:392 +#: ../../../../inc/Email.class.php:60 ../../../../web/UsersMgmtC.class.php:393 #: ../../../../inc/themes/classic/tokens.inc:20 #: ../../../../inc/themes/material-blue/tokens.inc:20 msgid "Acción" @@ -1836,7 +1938,7 @@ msgid "Error al actualizar los usuarios del grupo" msgstr "Ошибка изменения пользователей с доступом к учетной записи" #: ../../../../inc/Groups.class.php:369 -#: ../../../../web/UsersMgmtC.class.php:209 +#: ../../../../web/UsersMgmtC.class.php:210 msgid "Eliminar Grupo" msgstr "Удалить группу" @@ -1854,7 +1956,7 @@ msgid "Compruebe el formato del archivo" msgstr "Пожалуйста, проверьте формат файла" #: ../../../../inc/Import.class.php:124 ../../../../inc/Import.class.php:127 -#: ../../../../inc/Migrate.class.php:92 +#: ../../../../inc/Migrate.class.php:91 msgid "Importación finalizada" msgstr "Импорт завершен" @@ -2101,32 +2203,32 @@ msgstr "Ошибка подключения (BIND)" msgid "Error al buscar objetos en DN base" msgstr "Ошибка поиска объектов в DN" -#: ../../../../inc/Ldap.class.php:217 ../../../../inc/Ldap.class.php:222 -#: ../../../../inc/Ldap.class.php:229 ../../../../inc/Ldap.class.php:233 -#: ../../../../inc/Ldap.class.php:242 ../../../../inc/Ldap.class.php:246 +#: ../../../../inc/Ldap.class.php:212 ../../../../inc/Ldap.class.php:218 +#: ../../../../inc/Ldap.class.php:225 ../../../../inc/Ldap.class.php:230 +#: ../../../../inc/Ldap.class.php:235 ../../../../inc/Ldap.class.php:240 msgid "Error al buscar RDN de grupo" msgstr "Ошибка поиска группы в RDN" -#: ../../../../inc/Ldap.class.php:295 ../../../../inc/Ldap.class.php:300 -#: ../../../../inc/Ldap.class.php:314 ../../../../inc/Ldap.class.php:318 +#: ../../../../inc/Ldap.class.php:289 ../../../../inc/Ldap.class.php:295 +#: ../../../../inc/Ldap.class.php:310 ../../../../inc/Ldap.class.php:315 msgid "Error al buscar el DN del usuario" msgstr "Ошибка поиска пользователя в DN" -#: ../../../../inc/Ldap.class.php:307 ../../../../inc/Ldap.class.php:311 +#: ../../../../inc/Ldap.class.php:302 ../../../../inc/Ldap.class.php:307 msgid "Error al localizar el usuario en LDAP" msgstr "Ошибка поиска пользователя в LDAP" -#: ../../../../inc/Ldap.class.php:392 ../../../../inc/Ldap.class.php:397 -#: ../../../../inc/LdapADS.class.php:99 ../../../../inc/LdapADS.class.php:104 +#: ../../../../inc/Ldap.class.php:384 ../../../../inc/Ldap.class.php:390 +#: ../../../../inc/LdapADS.class.php:103 ../../../../inc/LdapADS.class.php:108 msgid "Error al buscar el grupo de usuarios" msgstr "Ошибка поиска групп пользователя" -#: ../../../../inc/Ldap.class.php:404 +#: ../../../../inc/Ldap.class.php:397 #, fuzzy msgid "Usuario verificado en grupo" msgstr "Группа используется:" -#: ../../../../inc/LdapADS.class.php:108 ../../../../inc/LdapADS.class.php:113 +#: ../../../../inc/LdapADS.class.php:112 ../../../../inc/LdapADS.class.php:117 msgid "No se encontró el grupo con ese nombre" msgstr "No group found with that name" @@ -2135,144 +2237,144 @@ msgid "Vaciar Eventos" msgstr "Очистить записи" #: ../../../../inc/Log.class.php:88 -#: ../../../../inc/themes/classic/eventlog.inc:100 -#: ../../../../inc/themes/material-blue/eventlog.inc:100 +#: ../../../../inc/themes/classic/eventlog.inc:98 +#: ../../../../inc/themes/material-blue/eventlog.inc:99 msgid "Vaciar registro de eventos" msgstr "Очистить журнал событий" -#: ../../../../inc/Migrate.class.php:52 +#: ../../../../inc/Migrate.class.php:51 msgid "Faltan parámetros" msgstr "Пропущены параметры" -#: ../../../../inc/Migrate.class.php:149 +#: ../../../../inc/Migrate.class.php:148 msgid "La versión no es compatible" msgstr "Несовместимая версия" -#: ../../../../inc/Migrate.class.php:150 +#: ../../../../inc/Migrate.class.php:149 msgid "Actualice a la última versión de phpPMS" msgstr "Пожалуйста, обновите phpPMS до последней версии" -#: ../../../../inc/Migrate.class.php:168 +#: ../../../../inc/Migrate.class.php:167 msgid "Error al obtener la configuración" msgstr "Ошибка получения конфигурации" -#: ../../../../inc/Migrate.class.php:211 ../../../../inc/Migrate.class.php:224 +#: ../../../../inc/Migrate.class.php:210 ../../../../inc/Migrate.class.php:223 msgid "Error al vaciar tabla" msgstr "Ошибка очистки таблицы" -#: ../../../../inc/Migrate.class.php:229 +#: ../../../../inc/Migrate.class.php:228 msgid "Usuario actual no es administrador de la aplicación" msgstr "Текущий пользователь не является администратором программы" -#: ../../../../inc/Migrate.class.php:274 +#: ../../../../inc/Migrate.class.php:273 msgid "No es posible crear el cliente" msgstr "Невозможно создать заказчика" -#: ../../../../inc/Migrate.class.php:275 +#: ../../../../inc/Migrate.class.php:274 msgid "Contacte con el desarrollador" msgstr "Пожалуйста, свяжитесь с разработчиками" -#: ../../../../inc/Migrate.class.php:279 +#: ../../../../inc/Migrate.class.php:278 msgid "Importar Clientes" msgstr "Импорт заказчиков" -#: ../../../../inc/Migrate.class.php:281 ../../../../inc/Migrate.class.php:351 -#: ../../../../inc/Migrate.class.php:452 ../../../../inc/Migrate.class.php:525 -#: ../../../../inc/Migrate.class.php:633 ../../../../inc/Migrate.class.php:698 -#: ../../../../inc/Migrate.class.php:772 ../../../../inc/Migrate.class.php:862 -#: ../../../../inc/Migrate.class.php:933 +#: ../../../../inc/Migrate.class.php:280 ../../../../inc/Migrate.class.php:350 +#: ../../../../inc/Migrate.class.php:451 ../../../../inc/Migrate.class.php:524 +#: ../../../../inc/Migrate.class.php:632 ../../../../inc/Migrate.class.php:697 +#: ../../../../inc/Migrate.class.php:771 ../../../../inc/Migrate.class.php:861 +#: ../../../../inc/Migrate.class.php:932 msgid "Registros" msgstr "Записи" -#: ../../../../inc/Migrate.class.php:303 +#: ../../../../inc/Migrate.class.php:302 msgid "Error al obtener los clientes" msgstr "Ошибка получения заказчиков" -#: ../../../../inc/Migrate.class.php:345 +#: ../../../../inc/Migrate.class.php:344 msgid "Error al obtener cuentas" msgstr "Ошибка получения учетных записей" -#: ../../../../inc/Migrate.class.php:374 +#: ../../../../inc/Migrate.class.php:373 msgid "Cliente no encontrado" msgstr "Заказчик не найден" -#: ../../../../inc/Migrate.class.php:417 +#: ../../../../inc/Migrate.class.php:416 msgid "Error al migrar cuenta" msgstr "Ошибка импорта учетной записи" -#: ../../../../inc/Migrate.class.php:446 +#: ../../../../inc/Migrate.class.php:445 msgid "Error al obtener los grupos de cuentas" msgstr "Ошибка получения групп учетных записей" -#: ../../../../inc/Migrate.class.php:450 +#: ../../../../inc/Migrate.class.php:449 msgid "Importar Grupos de Cuentas" msgstr "Импорт групп учетных записей" -#: ../../../../inc/Migrate.class.php:472 +#: ../../../../inc/Migrate.class.php:471 msgid "Error al crear grupos de cuentas" msgstr "Ошибка при создании групп учетных записей" -#: ../../../../inc/Migrate.class.php:519 +#: ../../../../inc/Migrate.class.php:518 msgid "Error al obtener el historico de cuentas" msgstr "Ошибка при получении истории учетных записей" -#: ../../../../inc/Migrate.class.php:523 +#: ../../../../inc/Migrate.class.php:522 msgid "Importar Histórico de Cuentas" msgstr "Импорт истории учетных записей" -#: ../../../../inc/Migrate.class.php:592 +#: ../../../../inc/Migrate.class.php:591 msgid "Error al crear historico de cuentas" msgstr "Ошибка создания истории учетных записей" -#: ../../../../inc/Migrate.class.php:627 +#: ../../../../inc/Migrate.class.php:626 msgid "Error al obtener los archivos de cuentas" msgstr "Ошибка получения файлов учетных записей" -#: ../../../../inc/Migrate.class.php:631 +#: ../../../../inc/Migrate.class.php:630 msgid "Importar Archivos de Cuentas" msgstr "Импорт файлов учетных записей" -#: ../../../../inc/Migrate.class.php:663 +#: ../../../../inc/Migrate.class.php:662 msgid "Error al crear archivos de cuentas" msgstr "Ошибка создания файлов учетных записей" -#: ../../../../inc/Migrate.class.php:692 +#: ../../../../inc/Migrate.class.php:691 msgid "Error al obtener las categorías de cuentas" msgstr "Ошибка получения категорий учетных записей" -#: ../../../../inc/Migrate.class.php:696 +#: ../../../../inc/Migrate.class.php:695 msgid "Importar Categorías de Cuentas" msgstr "Импорт категорий учетных записей" -#: ../../../../inc/Migrate.class.php:718 +#: ../../../../inc/Migrate.class.php:717 msgid "Error al crear categorías de cuentas" msgstr "Ошибка получения категорий учетных записей" -#: ../../../../inc/Migrate.class.php:766 +#: ../../../../inc/Migrate.class.php:765 msgid "Error al obtener los usuarios" msgstr "Ошибка получения пользователей" -#: ../../../../inc/Migrate.class.php:770 +#: ../../../../inc/Migrate.class.php:769 msgid "Importar Usuarios" msgstr "Импорт пользователей" -#: ../../../../inc/Migrate.class.php:827 +#: ../../../../inc/Migrate.class.php:826 msgid "Error al crear usuarios" msgstr "Ошибка создания пользователей" -#: ../../../../inc/Migrate.class.php:856 +#: ../../../../inc/Migrate.class.php:855 msgid "Error al obtener los grupos de usuarios" msgstr "Ошибка получения групп пользователей" -#: ../../../../inc/Migrate.class.php:860 +#: ../../../../inc/Migrate.class.php:859 msgid "Importar Grupos de Usuarios" msgstr "Импорт групп пользователей" -#: ../../../../inc/Migrate.class.php:886 +#: ../../../../inc/Migrate.class.php:885 msgid "Error al crear los grupos de usuarios" msgstr "Ошибка добавления групп пользователей" -#: ../../../../inc/Migrate.class.php:931 +#: ../../../../inc/Migrate.class.php:930 msgid "Importar Configuración" msgstr "Импорт конфигурации" @@ -2303,7 +2405,7 @@ msgid "Datos de perfil incorrectos" msgstr "Профиль с таким именем уже существует" #: ../../../../inc/ProfileBase.class.php:550 -#: ../../../../web/UsersMgmtC.class.php:274 +#: ../../../../web/UsersMgmtC.class.php:275 msgid "Eliminar Perfil" msgstr "Удалить профиль" @@ -2333,17 +2435,17 @@ msgstr "Импорт заказчиков" msgid "No hay cuentas para importar" msgstr "Нет резервных копий для скачивания" -#: ../../../../inc/Template.class.php:89 +#: ../../../../inc/Template.class.php:91 #, fuzzy, php-format msgid "No es posible obtener la plantilla \"%s\" : %s" msgstr "Невозможно создать заказчика" -#: ../../../../inc/Template.class.php:128 +#: ../../../../inc/Template.class.php:130 #, fuzzy, php-format msgid "No es posible obtener la variable \"%s\"" msgstr "Невозможно создать заказчика" -#: ../../../../inc/Template.class.php:171 +#: ../../../../inc/Template.class.php:173 #, fuzzy, php-format msgid "No es posible destruir la variable \"%s\"" msgstr "Невозможно создать заказчика" @@ -2392,17 +2494,17 @@ msgstr "Обновить конфигурацию" msgid "Actualización de la Configuración realizada correctamente." msgstr "Конфигурация была успешно обновлена." -#: ../../../../inc/UserBase.class.php:386 -#: ../../../../inc/UserBase.class.php:530 +#: ../../../../inc/UserBase.class.php:388 +#: ../../../../inc/UserBase.class.php:532 msgid "No se pudo realizar la petición de cambio de clave." msgstr "Выполнить запрос на смену пароля невозможно." -#: ../../../../inc/UserBase.class.php:525 +#: ../../../../inc/UserBase.class.php:527 msgid "Modificar Usuario" msgstr "Изменить пользователя" -#: ../../../../inc/UserBase.class.php:592 -#: ../../../../web/UsersMgmtC.class.php:150 +#: ../../../../inc/UserBase.class.php:594 +#: ../../../../web/UsersMgmtC.class.php:151 msgid "Eliminar Usuario" msgstr "Удалить пользователя" @@ -2423,42 +2525,42 @@ msgstr "Вы получите письмо в скором времени." msgid "Nuevo usuario de LDAP" msgstr "Пользователь LDAP" -#: ../../../../inc/UserUtil.class.php:703 +#: ../../../../inc/UserMigrate.class.php:113 #, fuzzy msgid "Migrar Grupos" msgstr "Ошибка импорта учетной записи" -#: ../../../../inc/UserUtil.class.php:703 +#: ../../../../inc/UserMigrate.class.php:113 #, fuzzy msgid "Error al migrar grupo del usuario" msgstr "Ошибка поиска пользователя в DN" -#: ../../../../inc/Util.class.php:122 +#: ../../../../inc/Util.class.php:119 #, fuzzy msgid "Versión de PHP requerida >= " msgstr "Необходим PHP версии >= 5.1" -#: ../../../../inc/Util.class.php:123 +#: ../../../../inc/Util.class.php:120 msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" msgstr "Пожалуйста, обновите PHP для использования sysPass" -#: ../../../../inc/Util.class.php:159 +#: ../../../../inc/Util.class.php:156 #: ../../../../inc/themes/classic/ldap.inc:212 #: ../../../../inc/themes/material-blue/ldap.inc:238 msgid "Módulo no disponible" msgstr "Модуль недоступен" -#: ../../../../inc/Util.class.php:160 +#: ../../../../inc/Util.class.php:157 msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Без этого модуля программа не может работать корректно" -#: ../../../../inc/XmlExport.class.php:125 +#: ../../../../inc/XmlExport.class.php:127 #, fuzzy msgid "Exportar XML" msgstr "Импорт CSV/XML" -#: ../../../../inc/XmlExport.class.php:410 +#: ../../../../inc/XmlExport.class.php:412 #, fuzzy msgid "Error al crear el archivo XML" msgstr "Ошибка при создании пользователя" @@ -2467,15 +2569,15 @@ msgstr "Ошибка при создании пользователя" msgid "Formato detectado" msgstr "" -#: ../../../../inc/XmlImportBase.class.php:75 +#: ../../../../inc/XmlImportBase.class.php:80 msgid "No es posible procesar el archivo XML" msgstr "Невозможно обработать файл XML" -#: ../../../../inc/XmlImportBase.class.php:103 +#: ../../../../inc/XmlImportBase.class.php:108 msgid "Archivo XML no soportado" msgstr "Файл XML не поддерживается" -#: ../../../../inc/XmlImportBase.class.php:104 +#: ../../../../inc/XmlImportBase.class.php:109 msgid "No es posible detectar la aplicación que exportó los datos" msgstr "Невозможно определить программу, из которой были экспортированы данные" @@ -2663,9 +2765,9 @@ msgstr "ДА" #: ../../../../inc/themes/classic/account.inc:136 #: ../../../../inc/themes/classic/account.inc:167 #: ../../../../inc/themes/classic/account.inc:449 -#: ../../../../inc/themes/classic/encryption.inc:61 -#: ../../../../inc/themes/classic/encryption.inc:80 -#: ../../../../inc/themes/classic/import.inc:70 +#: ../../../../inc/themes/classic/encryption.inc:58 +#: ../../../../inc/themes/classic/encryption.inc:77 +#: ../../../../inc/themes/classic/import.inc:67 #: ../../../../inc/themes/classic/install.inc:99 #: ../../../../inc/themes/classic/preferences.inc:82 #: ../../../../inc/themes/classic/security.inc:26 @@ -2690,28 +2792,28 @@ msgstr "Пароль скопирован в буфер" msgid "Error al copiar al portapapeles" msgstr "Пароль скопирован в буфер" -#: ../../../../web/AccountC.class.php:381 -#: ../../../../web/AccountC.class.php:412 +#: ../../../../web/AccountC.class.php:384 +#: ../../../../web/AccountC.class.php:415 #: ../../../../inc/themes/classic/search.inc:45 #: ../../../../inc/themes/classic/search.inc:104 -#: ../../../../inc/themes/material-blue/search.inc:41 -#: ../../../../inc/themes/material-blue/search.inc:108 +#: ../../../../inc/themes/material-blue/search.inc:77 +#: ../../../../inc/themes/material-blue/search.inc:144 msgid "Detalles de Cuenta" msgstr "Детали учетной записи" -#: ../../../../web/AccountC.class.php:469 +#: ../../../../web/AccountC.class.php:472 #: ../../../../inc/themes/classic/account.inc:396 -#: ../../../../inc/themes/material-blue/account.inc:433 +#: ../../../../inc/themes/material-blue/account.inc:435 msgid "Modificar Clave de Cuenta" msgstr "Изменить пароль учетной записи" -#: ../../../../web/AccountsMgmtC.class.php:79 -#: ../../../../web/AccountsMgmtC.class.php:138 -#: ../../../../web/AccountsMgmtC.class.php:266 -#: ../../../../web/SearchC.class.php:292 -#: ../../../../web/UsersMgmtC.class.php:87 -#: ../../../../web/UsersMgmtC.class.php:187 -#: ../../../../web/UsersMgmtC.class.php:245 +#: ../../../../web/AccountsMgmtC.class.php:80 +#: ../../../../web/AccountsMgmtC.class.php:139 +#: ../../../../web/AccountsMgmtC.class.php:267 +#: ../../../../web/SearchC.class.php:291 +#: ../../../../web/UsersMgmtC.class.php:88 +#: ../../../../web/UsersMgmtC.class.php:188 +#: ../../../../web/UsersMgmtC.class.php:246 #: ../../../../inc/themes/classic/account.inc:11 #: ../../../../inc/themes/classic/categories.inc:8 #: ../../../../inc/themes/classic/customers.inc:8 @@ -2732,64 +2834,64 @@ msgstr "Изменить пароль учетной записи" #: ../../../../inc/themes/material-blue/info.inc:25 #: ../../../../inc/themes/material-blue/profiles.inc:8 #: ../../../../inc/themes/material-blue/request.inc:6 -#: ../../../../inc/themes/material-blue/search.inc:39 +#: ../../../../inc/themes/material-blue/search.inc:75 #: ../../../../inc/themes/material-blue/users.inc:8 msgid "Nombre" msgstr "Имя" -#: ../../../../web/AccountsMgmtC.class.php:115 +#: ../../../../web/AccountsMgmtC.class.php:116 msgid "Gestión de Categorías" msgstr "Управление категориями" -#: ../../../../web/AccountsMgmtC.class.php:172 +#: ../../../../web/AccountsMgmtC.class.php:173 msgid "Gestión de Clientes" msgstr "Управление заказчиками" -#: ../../../../web/AccountsMgmtC.class.php:266 +#: ../../../../web/AccountsMgmtC.class.php:267 #: ../../../../inc/themes/classic/customfields.inc:27 #: ../../../../inc/themes/material-blue/customfields.inc:30 #, fuzzy msgid "Módulo" msgstr "Модуль недоступен" -#: ../../../../web/AccountsMgmtC.class.php:287 +#: ../../../../web/AccountsMgmtC.class.php:288 #, fuzzy msgid "Eliminar Campo" msgstr "Удалить учетную запись" -#: ../../../../web/ConfigC.class.php:166 +#: ../../../../web/ConfigC.class.php:168 msgid "Último backup" msgstr "Последняя резервная копия" -#: ../../../../web/ConfigC.class.php:166 +#: ../../../../web/ConfigC.class.php:168 msgid "No se encontraron backups" msgstr "Резервные копии не найдены" -#: ../../../../web/ConfigC.class.php:173 +#: ../../../../web/ConfigC.class.php:175 #, fuzzy msgid "Última exportación" msgstr "Последнее изменение" -#: ../../../../web/ConfigC.class.php:173 +#: ../../../../web/ConfigC.class.php:175 #, fuzzy msgid "No se encontró archivo de exportación" msgstr "Ошибка записи файла конфигурации" -#: ../../../../web/ConfigC.class.php:218 +#: ../../../../web/ConfigC.class.php:220 #, fuzzy msgid "Información" msgstr "Показывает информацию о программе и производительности." -#: ../../../../web/EventlogC.class.php:93 +#: ../../../../web/EventlogC.class.php:95 msgid "Registro de eventos vaciado" msgstr "Журнал очищен" -#: ../../../../web/EventlogC.class.php:95 +#: ../../../../web/EventlogC.class.php:97 msgid "Error al vaciar el registro de eventos" msgstr "Ошибка очистки журнала" #: ../../../../web/MainC.class.php:159 -#: ../../../../web/UsersMgmtC.class.php:100 +#: ../../../../web/UsersMgmtC.class.php:101 msgid "Admin Aplicación" msgstr "Администратор программы" @@ -2798,17 +2900,18 @@ msgid "Buscar" msgstr "Поиск" #: ../../../../web/MainC.class.php:189 -#: ../../../../web/UsersMgmtC.class.php:163 -msgid "Gestión de Usuarios" -msgstr "Управление пользователями" +#, fuzzy +msgid "Usuarios y Accesos" +msgstr "Пользователь доступа" #: ../../../../web/MainC.class.php:195 -msgid "Gestión de Clientes y Categorías" -msgstr "Управление заказчиками и категориями" +#, fuzzy +msgid "Elementos y Personalización" +msgstr "Удалить учетную запись" #: ../../../../web/MainC.class.php:207 -#: ../../../../inc/themes/classic/eventlog.inc:4 -#: ../../../../inc/themes/material-blue/eventlog.inc:3 +#: ../../../../inc/themes/classic/eventlog.inc:2 +#: ../../../../inc/themes/material-blue/eventlog.inc:2 msgid "Registro de Eventos" msgstr "Журнал событий" @@ -2879,62 +2982,62 @@ msgstr "Оптимизация кода" msgid "Mejoras de seguridad en XSS e inyección SQL" msgstr "Улучшена защита от XSS и SQL инъекций" -#: ../../../../web/MainC.class.php:284 +#: ../../../../web/MainC.class.php:283 msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" msgstr "Данная версия PHP уязвима NULL Byte attack (CVE-2006-7243)" -#: ../../../../web/MainC.class.php:285 +#: ../../../../web/MainC.class.php:284 msgid "Actualice la versión de PHP para usar sysPass de forma segura" msgstr "Пожалуйста, обновите версию PHP для безопасного использования sysPass" -#: ../../../../web/MainC.class.php:292 +#: ../../../../web/MainC.class.php:291 msgid "No se encuentra el generador de números aleatorios." msgstr "Не могу найти генератор случайных чисел." -#: ../../../../web/MainC.class.php:293 +#: ../../../../web/MainC.class.php:292 msgid "" "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" msgstr "" "Без этой функции, атакующий может завладеть вашим аккаунтом при сбросе " "пароля." -#: ../../../../web/MainC.class.php:312 +#: ../../../../web/MainC.class.php:311 msgid "Instalación finalizada" msgstr "Установка завершена" -#: ../../../../web/MainC.class.php:313 +#: ../../../../web/MainC.class.php:312 msgid "Pulse aquí para acceder" msgstr "Назмите здесь для входа" -#: ../../../../web/MainC.class.php:410 +#: ../../../../web/MainC.class.php:409 msgid "Descargar nueva versión" msgstr "Скачать новую версию" -#: ../../../../web/MainC.class.php:421 +#: ../../../../web/MainC.class.php:420 msgid "Avisos de sysPass" msgstr "" -#: ../../../../web/SearchC.class.php:285 +#: ../../../../web/SearchC.class.php:284 msgid "Ordenar por Cliente" msgstr "Сортировать по заказчику" -#: ../../../../web/SearchC.class.php:291 +#: ../../../../web/SearchC.class.php:290 msgid "Ordenar por Nombre" msgstr "Сортировать по имени" -#: ../../../../web/SearchC.class.php:297 +#: ../../../../web/SearchC.class.php:296 msgid "Ordenar por Categoría" msgstr "Сортировать по категории" -#: ../../../../web/SearchC.class.php:303 +#: ../../../../web/SearchC.class.php:302 msgid "Ordenar por Usuario" msgstr "Сортировать по имени пользователя" -#: ../../../../web/SearchC.class.php:309 +#: ../../../../web/SearchC.class.php:308 msgid "Ordenar por URL / IP" msgstr "Сортировать по URL / IP" -#: ../../../../web/SearchC.class.php:310 +#: ../../../../web/SearchC.class.php:309 #: ../../../../inc/themes/classic/account.inc:61 #: ../../../../inc/themes/classic/editpass.inc:16 #: ../../../../inc/themes/classic/request.inc:13 @@ -2942,78 +3045,82 @@ msgstr "Сортировать по URL / IP" #: ../../../../inc/themes/material-blue/account.inc:69 #: ../../../../inc/themes/material-blue/editpass.inc:17 #: ../../../../inc/themes/material-blue/request.inc:15 -#: ../../../../inc/themes/material-blue/search.inc:62 +#: ../../../../inc/themes/material-blue/search.inc:98 msgid "URL / IP" msgstr "URL / IP" -#: ../../../../web/UsersMgmtC.class.php:91 +#: ../../../../web/UsersMgmtC.class.php:92 msgid "Propiedades" msgstr "Настройки" -#: ../../../../web/UsersMgmtC.class.php:104 +#: ../../../../web/UsersMgmtC.class.php:105 msgid "Admin Cuentas" msgstr "Администратор учетных записей" -#: ../../../../web/UsersMgmtC.class.php:108 +#: ../../../../web/UsersMgmtC.class.php:109 #: ../../../../inc/themes/classic/users.inc:28 #: ../../../../inc/themes/material-blue/users.inc:34 msgid "Usuario de LDAP" msgstr "Пользователь LDAP" -#: ../../../../web/UsersMgmtC.class.php:112 +#: ../../../../web/UsersMgmtC.class.php:113 #: ../../../../inc/themes/classic/users.inc:113 #: ../../../../inc/themes/material-blue/users.inc:151 #: ../../../../inc/themes/material-blue/users.inc:154 msgid "Deshabilitado" msgstr "Отключен" -#: ../../../../web/UsersMgmtC.class.php:129 +#: ../../../../web/UsersMgmtC.class.php:130 msgid "Ver Detalles de Usuario" msgstr "Просмотр информации пользователя" -#: ../../../../web/UsersMgmtC.class.php:143 +#: ../../../../web/UsersMgmtC.class.php:144 msgid "Cambiar Clave de Usuario" msgstr "Изменить пароль пользователя" -#: ../../../../web/UsersMgmtC.class.php:222 +#: ../../../../web/UsersMgmtC.class.php:164 +msgid "Gestión de Usuarios" +msgstr "Управление пользователями" + +#: ../../../../web/UsersMgmtC.class.php:223 msgid "Gestión de Grupos" msgstr "Управление группами" -#: ../../../../web/UsersMgmtC.class.php:260 +#: ../../../../web/UsersMgmtC.class.php:261 #, fuzzy msgid "Ver Detalles de Perfil" msgstr "Просмотр информации пользователя" -#: ../../../../web/UsersMgmtC.class.php:287 +#: ../../../../web/UsersMgmtC.class.php:288 msgid "Gestión de Perfiles" msgstr "Управление профилями" -#: ../../../../web/UsersMgmtC.class.php:407 +#: ../../../../web/UsersMgmtC.class.php:408 #, fuzzy msgid "Ver token de Autorización" msgstr "Просмотр информации пользователя" -#: ../../../../web/UsersMgmtC.class.php:434 +#: ../../../../web/UsersMgmtC.class.php:435 #, fuzzy msgid "Gestión de Autorizaciones API" msgstr "Управление файлами отключено" -#: ../../../../web/UsersMgmtC.class.php:456 +#: ../../../../web/UsersMgmtC.class.php:457 #, fuzzy msgid "Token de autorización visualizado" msgstr "Конфигурация изменена" -#: ../../../../web/UsersMgmtC.class.php:457 +#: ../../../../web/UsersMgmtC.class.php:458 msgid "Autorizaciones" msgstr "" -#: ../../../../web/UsersPrefsC.class.php:92 +#: ../../../../web/UsersPrefsC.class.php:93 #: ../../../../inc/themes/classic/mail.inc:63 #: ../../../../inc/themes/material-blue/mail.inc:86 msgid "Seguridad" msgstr "Безопасность" -#: ../../../../web/UsersPrefsC.class.php:115 +#: ../../../../web/UsersPrefsC.class.php:117 #: ../../../../inc/themes/classic/sessionbar.inc:9 msgid "Preferencias" msgstr "" @@ -3069,7 +3176,7 @@ msgstr "Подтверждение пароля" #: ../../../../inc/themes/classic/search.inc:82 #: ../../../../inc/themes/classic/users.inc:91 #: ../../../../inc/themes/material-blue/account.inc:119 -#: ../../../../inc/themes/material-blue/search.inc:82 +#: ../../../../inc/themes/material-blue/search.inc:118 #: ../../../../inc/themes/material-blue/users.inc:116 msgid "Notas" msgstr "Заметки" @@ -3082,7 +3189,7 @@ msgstr "Заметки по учетной записи" #: ../../../../inc/themes/classic/account.inc:108 #: ../../../../inc/themes/material-blue/account.inc:133 -#: ../../../../inc/themes/material-blue/search.inc:75 +#: ../../../../inc/themes/material-blue/search.inc:111 msgid "Permisos" msgstr "Разрешения" @@ -3128,60 +3235,60 @@ msgid "por" msgstr "выполнено" #: ../../../../inc/themes/classic/account.inc:289 -#: ../../../../inc/themes/material-blue/account.inc:336 +#: ../../../../inc/themes/material-blue/account.inc:338 msgid "Visitas" msgstr "Просмотров" #: ../../../../inc/themes/classic/account.inc:293 -#: ../../../../inc/themes/material-blue/account.inc:340 +#: ../../../../inc/themes/material-blue/account.inc:342 msgid "Fecha Alta" msgstr "Дата создания" #: ../../../../inc/themes/classic/account.inc:297 -#: ../../../../inc/themes/material-blue/account.inc:344 +#: ../../../../inc/themes/material-blue/account.inc:346 msgid "Creador" msgstr "Создатель" #: ../../../../inc/themes/classic/account.inc:301 #: ../../../../inc/themes/material-blue/account.inc:203 -#: ../../../../inc/themes/material-blue/account.inc:348 +#: ../../../../inc/themes/material-blue/account.inc:350 msgid "Grupo Principal" msgstr "Основная группа" #: ../../../../inc/themes/classic/account.inc:306 -#: ../../../../inc/themes/material-blue/account.inc:353 +#: ../../../../inc/themes/material-blue/account.inc:355 msgid "Usuarios Secundarios" msgstr "Вторичные пользователи" #: ../../../../inc/themes/classic/account.inc:325 -#: ../../../../inc/themes/material-blue/account.inc:372 +#: ../../../../inc/themes/material-blue/account.inc:374 msgid "Grupos Secundarios" msgstr "Вторичные группы" #: ../../../../inc/themes/classic/account.inc:345 -#: ../../../../inc/themes/material-blue/account.inc:392 +#: ../../../../inc/themes/material-blue/account.inc:394 msgid "Fecha Edición" msgstr "Дата изменения" #: ../../../../inc/themes/classic/account.inc:349 -#: ../../../../inc/themes/material-blue/account.inc:396 +#: ../../../../inc/themes/material-blue/account.inc:398 msgid "Editor" msgstr "Изменил" #: ../../../../inc/themes/classic/account.inc:376 -#: ../../../../inc/themes/material-blue/account.inc:459 +#: ../../../../inc/themes/material-blue/account.inc:461 msgid "Restaurar cuenta desde este punto" msgstr "Восстановить учетную запись из текущей точки" #: ../../../../inc/themes/classic/account.inc:388 #: ../../../../inc/themes/classic/search.inc:113 -#: ../../../../inc/themes/material-blue/account.inc:426 -#: ../../../../inc/themes/material-blue/search.inc:117 +#: ../../../../inc/themes/material-blue/account.inc:428 +#: ../../../../inc/themes/material-blue/search.inc:154 msgid "Copiar Clave en Portapapeles" msgstr "Копировать пароль в буфер" #: ../../../../inc/themes/classic/account.inc:403 -#: ../../../../inc/themes/material-blue/account.inc:439 +#: ../../../../inc/themes/material-blue/account.inc:441 msgid "Ver Actual" msgstr "Просмотр текущей версии" @@ -3195,15 +3302,15 @@ msgstr "Назад" #: ../../../../inc/themes/classic/account.inc:415 #: ../../../../inc/themes/classic/search.inc:125 -#: ../../../../inc/themes/material-blue/account.inc:449 -#: ../../../../inc/themes/material-blue/search.inc:128 +#: ../../../../inc/themes/material-blue/account.inc:451 +#: ../../../../inc/themes/material-blue/search.inc:166 msgid "Modificar Cuenta" msgstr "Редактировать учетную запись" #: ../../../../inc/themes/classic/account.inc:420 #: ../../../../inc/themes/classic/search.inc:146 -#: ../../../../inc/themes/material-blue/account.inc:453 -#: ../../../../inc/themes/material-blue/search.inc:148 +#: ../../../../inc/themes/material-blue/account.inc:455 +#: ../../../../inc/themes/material-blue/search.inc:187 msgid "Solicitar Modificación" msgstr "Запросить изменение" @@ -3213,7 +3320,7 @@ msgstr "Запросить изменение" #: ../../../../inc/themes/classic/customers.inc:62 #: ../../../../inc/themes/classic/customfields.inc:63 #: ../../../../inc/themes/classic/editpass.inc:50 -#: ../../../../inc/themes/classic/encryption.inc:102 +#: ../../../../inc/themes/classic/encryption.inc:99 #: ../../../../inc/themes/classic/groups.inc:77 #: ../../../../inc/themes/classic/ldap.inc:229 #: ../../../../inc/themes/classic/mail.inc:107 @@ -3224,7 +3331,7 @@ msgstr "Запросить изменение" #: ../../../../inc/themes/classic/users.inc:189 #: ../../../../inc/themes/classic/userspass.inc:35 #: ../../../../inc/themes/classic/wiki.inc:110 -#: ../../../../inc/themes/material-blue/account.inc:465 +#: ../../../../inc/themes/material-blue/account.inc:467 #: ../../../../inc/themes/material-blue/categories.inc:72 #: ../../../../inc/themes/material-blue/config.inc:425 #: ../../../../inc/themes/material-blue/customers.inc:73 @@ -3233,7 +3340,7 @@ msgstr "Запросить изменение" #: ../../../../inc/themes/material-blue/groups.inc:88 #: ../../../../inc/themes/material-blue/ldap.inc:257 #: ../../../../inc/themes/material-blue/mail.inc:145 -#: ../../../../inc/themes/material-blue/preferences.inc:101 +#: ../../../../inc/themes/material-blue/preferences.inc:117 #: ../../../../inc/themes/material-blue/profiles.inc:177 #: ../../../../inc/themes/material-blue/security.inc:61 #: ../../../../inc/themes/material-blue/tokens.inc:63 @@ -3244,12 +3351,12 @@ msgid "Guardar" msgstr "Сохранить" #: ../../../../inc/themes/classic/account.inc:437 -#: ../../../../inc/themes/material-blue/account.inc:475 +#: ../../../../inc/themes/material-blue/account.inc:477 msgid "Seleccionar grupos secundarios" msgstr "Выберите вторичные группы" #: ../../../../inc/themes/classic/account.inc:441 -#: ../../../../inc/themes/material-blue/account.inc:478 +#: ../../../../inc/themes/material-blue/account.inc:480 msgid "Seleccionar usuarios" msgstr "Выберите пользователей" @@ -3276,17 +3383,17 @@ msgstr "Нет резервных копий для скачивания" #: ../../../../inc/themes/classic/backup.inc:49 #: ../../../../inc/themes/classic/backup.inc:113 #: ../../../../inc/themes/classic/backup.inc:117 -#: ../../../../inc/themes/classic/encryption.inc:93 -#: ../../../../inc/themes/classic/encryption.inc:97 -#: ../../../../inc/themes/classic/encryption.inc:162 -#: ../../../../inc/themes/classic/encryption.inc:166 -#: ../../../../inc/themes/classic/import.inc:15 -#: ../../../../inc/themes/classic/import.inc:37 -#: ../../../../inc/themes/classic/import.inc:51 -#: ../../../../inc/themes/classic/import.inc:97 -#: ../../../../inc/themes/classic/import.inc:118 -#: ../../../../inc/themes/classic/import.inc:170 -#: ../../../../inc/themes/classic/import.inc:174 +#: ../../../../inc/themes/classic/encryption.inc:90 +#: ../../../../inc/themes/classic/encryption.inc:94 +#: ../../../../inc/themes/classic/encryption.inc:159 +#: ../../../../inc/themes/classic/encryption.inc:163 +#: ../../../../inc/themes/classic/import.inc:12 +#: ../../../../inc/themes/classic/import.inc:34 +#: ../../../../inc/themes/classic/import.inc:48 +#: ../../../../inc/themes/classic/import.inc:94 +#: ../../../../inc/themes/classic/import.inc:115 +#: ../../../../inc/themes/classic/import.inc:167 +#: ../../../../inc/themes/classic/import.inc:171 #: ../../../../inc/themes/classic/js-common.inc:13 #: ../../../../inc/themes/classic/ldap.inc:13 #: ../../../../inc/themes/classic/ldap.inc:33 @@ -3305,12 +3412,12 @@ msgstr "Нет резервных копий для скачивания" #: ../../../../inc/themes/material-blue/backup.inc:51 #: ../../../../inc/themes/material-blue/backup.inc:129 #: ../../../../inc/themes/material-blue/backup.inc:133 -#: ../../../../inc/themes/material-blue/encryption.inc:107 -#: ../../../../inc/themes/material-blue/encryption.inc:111 -#: ../../../../inc/themes/material-blue/encryption.inc:181 -#: ../../../../inc/themes/material-blue/encryption.inc:185 -#: ../../../../inc/themes/material-blue/import.inc:99 -#: ../../../../inc/themes/material-blue/import.inc:103 +#: ../../../../inc/themes/material-blue/encryption.inc:104 +#: ../../../../inc/themes/material-blue/encryption.inc:108 +#: ../../../../inc/themes/material-blue/encryption.inc:178 +#: ../../../../inc/themes/material-blue/encryption.inc:182 +#: ../../../../inc/themes/material-blue/import.inc:96 +#: ../../../../inc/themes/material-blue/import.inc:100 #: ../../../../inc/themes/material-blue/js-common.inc:11 #, fuzzy msgid "Ayuda" @@ -3660,13 +3767,13 @@ msgstr "Текст для поиска" msgid "Obligatorio" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:8 +#: ../../../../inc/themes/classic/encryption.inc:5 #: ../../../../inc/themes/classic/install.inc:46 #: ../../../../inc/themes/classic/install.inc:50 #: ../../../../inc/themes/classic/install.inc:51 #: ../../../../inc/themes/classic/login.inc:15 #: ../../../../inc/themes/classic/login.inc:27 -#: ../../../../inc/themes/material-blue/encryption.inc:8 +#: ../../../../inc/themes/material-blue/encryption.inc:5 #: ../../../../inc/themes/material-blue/install.inc:51 #: ../../../../inc/themes/material-blue/install.inc:58 #: ../../../../inc/themes/material-blue/login.inc:26 @@ -3674,174 +3781,178 @@ msgstr "" msgid "Clave Maestra" msgstr "Мастер-пароль" -#: ../../../../inc/themes/classic/encryption.inc:16 -#: ../../../../inc/themes/classic/encryption.inc:116 -#: ../../../../inc/themes/material-blue/encryption.inc:16 -#: ../../../../inc/themes/material-blue/encryption.inc:131 +#: ../../../../inc/themes/classic/encryption.inc:13 +#: ../../../../inc/themes/classic/encryption.inc:113 +#: ../../../../inc/themes/material-blue/encryption.inc:13 +#: ../../../../inc/themes/material-blue/encryption.inc:128 msgid "Último cambio" msgstr "Последнее изменение" -#: ../../../../inc/themes/classic/encryption.inc:25 -#: ../../../../inc/themes/material-blue/encryption.inc:25 -#: ../../../../inc/themes/material-blue/encryption.inc:31 +#: ../../../../inc/themes/classic/encryption.inc:22 +#: ../../../../inc/themes/material-blue/encryption.inc:22 +#: ../../../../inc/themes/material-blue/encryption.inc:28 msgid "Clave Maestra actual" msgstr "Текущий мастер-пароль" -#: ../../../../inc/themes/classic/encryption.inc:34 -#: ../../../../inc/themes/material-blue/encryption.inc:37 -#: ../../../../inc/themes/material-blue/encryption.inc:43 +#: ../../../../inc/themes/classic/encryption.inc:31 +#: ../../../../inc/themes/material-blue/encryption.inc:34 +#: ../../../../inc/themes/material-blue/encryption.inc:40 msgid "Nueva Clave Maestra" msgstr "Новый мастер-пароль" -#: ../../../../inc/themes/classic/encryption.inc:43 -#: ../../../../inc/themes/material-blue/encryption.inc:49 -#: ../../../../inc/themes/material-blue/encryption.inc:55 +#: ../../../../inc/themes/classic/encryption.inc:40 +#: ../../../../inc/themes/material-blue/encryption.inc:46 +#: ../../../../inc/themes/material-blue/encryption.inc:52 msgid "Nueva Clave Maestra (repetir)" msgstr "Новый мастер-пароль (подтверждение)" -#: ../../../../inc/themes/classic/encryption.inc:51 -#: ../../../../inc/themes/material-blue/encryption.inc:61 +#: ../../../../inc/themes/classic/encryption.inc:48 +#: ../../../../inc/themes/material-blue/encryption.inc:58 msgid "No modificar cuentas" msgstr "Не изменять учетные записи" -#: ../../../../inc/themes/classic/encryption.inc:56 -#: ../../../../inc/themes/material-blue/encryption.inc:66 +#: ../../../../inc/themes/classic/encryption.inc:53 +#: ../../../../inc/themes/material-blue/encryption.inc:63 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "Устанавливает мастер-пароль без повторного шифрования учетных записей." -#: ../../../../inc/themes/classic/encryption.inc:67 -#: ../../../../inc/themes/material-blue/encryption.inc:79 +#: ../../../../inc/themes/classic/encryption.inc:64 +#: ../../../../inc/themes/material-blue/encryption.inc:76 msgid "Confirmar cambio" msgstr "Подтвердите изменение" +#: ../../../../inc/themes/classic/encryption.inc:67 #: ../../../../inc/themes/classic/encryption.inc:70 #: ../../../../inc/themes/classic/encryption.inc:73 -#: ../../../../inc/themes/classic/encryption.inc:76 -#: ../../../../inc/themes/classic/import.inc:67 +#: ../../../../inc/themes/classic/import.inc:64 #: ../../../../inc/themes/classic/security.inc:43 msgid "Atención" msgstr "Предупреждение" -#: ../../../../inc/themes/classic/encryption.inc:71 -#: ../../../../inc/themes/material-blue/encryption.inc:83 +#: ../../../../inc/themes/classic/encryption.inc:68 +#: ../../../../inc/themes/material-blue/encryption.inc:80 msgid "Guarde la nueva clave en un lugar seguro." msgstr "Необходимо сохранить новый пароль в надежном месте" -#: ../../../../inc/themes/classic/encryption.inc:74 -#: ../../../../inc/themes/material-blue/encryption.inc:86 +#: ../../../../inc/themes/classic/encryption.inc:71 +#: ../../../../inc/themes/material-blue/encryption.inc:83 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "Все пароли учетных записей будут зашифрованы вновь." -#: ../../../../inc/themes/classic/encryption.inc:77 -#: ../../../../inc/themes/material-blue/encryption.inc:89 +#: ../../../../inc/themes/classic/encryption.inc:74 +#: ../../../../inc/themes/material-blue/encryption.inc:86 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "Пользователям потребуется ввести новый мастер-пароль." -#: ../../../../inc/themes/classic/encryption.inc:98 -#: ../../../../inc/themes/material-blue/encryption.inc:112 +#: ../../../../inc/themes/classic/encryption.inc:95 +#: ../../../../inc/themes/material-blue/encryption.inc:109 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:100 -#: ../../../../inc/themes/material-blue/encryption.inc:114 +#: ../../../../inc/themes/classic/encryption.inc:97 +#: ../../../../inc/themes/material-blue/encryption.inc:111 msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " "que incluya números, letras y símbolos." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:108 -#: ../../../../inc/themes/material-blue/encryption.inc:124 +#: ../../../../inc/themes/classic/encryption.inc:105 +#: ../../../../inc/themes/material-blue/encryption.inc:121 #, fuzzy msgid "Clave Temporal" msgstr "Мастер-пароль" -#: ../../../../inc/themes/classic/encryption.inc:119 -#: ../../../../inc/themes/classic/encryption.inc:130 -#: ../../../../inc/themes/material-blue/encryption.inc:134 -#: ../../../../inc/themes/material-blue/encryption.inc:145 +#: ../../../../inc/themes/classic/encryption.inc:116 +#: ../../../../inc/themes/classic/encryption.inc:127 +#: ../../../../inc/themes/material-blue/encryption.inc:131 +#: ../../../../inc/themes/material-blue/encryption.inc:142 #, fuzzy msgid "No generada" msgstr "Сгенерированный пароль" -#: ../../../../inc/themes/classic/encryption.inc:124 -#: ../../../../inc/themes/material-blue/encryption.inc:139 +#: ../../../../inc/themes/classic/encryption.inc:121 +#: ../../../../inc/themes/material-blue/encryption.inc:136 msgid "Válido hasta" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:136 -#: ../../../../inc/themes/material-blue/encryption.inc:151 -#: ../../../../inc/themes/material-blue/encryption.inc:157 +#: ../../../../inc/themes/classic/encryption.inc:133 +#: ../../../../inc/themes/material-blue/encryption.inc:148 +#: ../../../../inc/themes/material-blue/encryption.inc:154 #, fuzzy msgid "Validez (s)" msgstr "Таймаут сессии (секунды)" -#: ../../../../inc/themes/classic/encryption.inc:139 +#: ../../../../inc/themes/classic/encryption.inc:136 msgid "Validez" msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:167 -#: ../../../../inc/themes/material-blue/encryption.inc:186 +#: ../../../../inc/themes/classic/encryption.inc:164 +#: ../../../../inc/themes/material-blue/encryption.inc:183 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " "la clave maestra original." msgstr "" -#: ../../../../inc/themes/classic/encryption.inc:169 -#: ../../../../inc/themes/material-blue/encryption.inc:190 +#: ../../../../inc/themes/classic/encryption.inc:166 +#: ../../../../inc/themes/material-blue/encryption.inc:187 #, fuzzy msgid "Generar" msgstr "Сгенерировать пароль" -#: ../../../../inc/themes/classic/eventlog.inc:8 +#: ../../../../inc/themes/classic/eventlog.inc:6 #: ../../../../inc/themes/classic/search.inc:3 -#: ../../../../inc/themes/material-blue/eventlog.inc:7 +#: ../../../../inc/themes/material-blue/eventlog.inc:6 #: ../../../../inc/themes/material-blue/search.inc:3 msgid "No se encontraron registros" msgstr "Записи не найдены" -#: ../../../../inc/themes/classic/eventlog.inc:19 -#: ../../../../inc/themes/material-blue/eventlog.inc:18 +#: ../../../../inc/themes/classic/eventlog.inc:17 +#: ../../../../inc/themes/material-blue/eventlog.inc:17 msgid "Fecha / Hora" msgstr "Дата / Время" -#: ../../../../inc/themes/classic/eventlog.inc:22 -#: ../../../../inc/themes/material-blue/eventlog.inc:21 +#: ../../../../inc/themes/classic/eventlog.inc:20 +#: ../../../../inc/themes/material-blue/eventlog.inc:20 msgid "Evento" msgstr "Событие" -#: ../../../../inc/themes/classic/eventlog.inc:28 -#: ../../../../inc/themes/material-blue/eventlog.inc:27 +#: ../../../../inc/themes/classic/eventlog.inc:26 +#: ../../../../inc/themes/material-blue/eventlog.inc:26 msgid "IP" msgstr "IP" -#: ../../../../inc/themes/classic/eventlog.inc:86 +#: ../../../../inc/themes/classic/eventlog.inc:84 #: ../../../../inc/themes/classic/search.inc:169 -#: ../../../../inc/themes/material-blue/eventlog.inc:85 -#: ../../../../inc/themes/material-blue/search.inc:171 +#: ../../../../inc/themes/material-blue/eventlog.inc:84 +#: ../../../../inc/themes/material-blue/search.inc:20 +#: ../../../../inc/themes/material-blue/search.inc:209 msgid "Primera página" msgstr "Первая страница" -#: ../../../../inc/themes/classic/eventlog.inc:88 +#: ../../../../inc/themes/classic/eventlog.inc:86 #: ../../../../inc/themes/classic/search.inc:171 -#: ../../../../inc/themes/material-blue/eventlog.inc:87 -#: ../../../../inc/themes/material-blue/search.inc:173 +#: ../../../../inc/themes/material-blue/eventlog.inc:86 +#: ../../../../inc/themes/material-blue/search.inc:22 +#: ../../../../inc/themes/material-blue/search.inc:211 msgid "Página anterior" msgstr "Прошлая страница" -#: ../../../../inc/themes/classic/eventlog.inc:93 +#: ../../../../inc/themes/classic/eventlog.inc:91 #: ../../../../inc/themes/classic/search.inc:176 -#: ../../../../inc/themes/material-blue/eventlog.inc:92 -#: ../../../../inc/themes/material-blue/search.inc:178 +#: ../../../../inc/themes/material-blue/eventlog.inc:91 +#: ../../../../inc/themes/material-blue/search.inc:27 +#: ../../../../inc/themes/material-blue/search.inc:216 msgid "Página siguiente" msgstr "Следующая страница" -#: ../../../../inc/themes/classic/eventlog.inc:95 +#: ../../../../inc/themes/classic/eventlog.inc:93 #: ../../../../inc/themes/classic/search.inc:178 -#: ../../../../inc/themes/material-blue/eventlog.inc:94 -#: ../../../../inc/themes/material-blue/search.inc:180 +#: ../../../../inc/themes/material-blue/eventlog.inc:93 +#: ../../../../inc/themes/material-blue/search.inc:29 +#: ../../../../inc/themes/material-blue/search.inc:218 msgid "Última página" msgstr "Последняя страница" @@ -3891,145 +4002,145 @@ msgstr "Имя группы" msgid "Descripción del grupo" msgstr "Описание группы" -#: ../../../../inc/themes/classic/import.inc:7 -#: ../../../../inc/themes/material-blue/import.inc:121 +#: ../../../../inc/themes/classic/import.inc:4 +#: ../../../../inc/themes/material-blue/import.inc:118 msgid "Importar phpPMS" msgstr "Импорт phpPMS" -#: ../../../../inc/themes/classic/import.inc:14 +#: ../../../../inc/themes/classic/import.inc:11 #: ../../../../inc/themes/classic/install.inc:63 #: ../../../../inc/themes/classic/install.inc:64 -#: ../../../../inc/themes/material-blue/import.inc:128 -#: ../../../../inc/themes/material-blue/import.inc:140 +#: ../../../../inc/themes/material-blue/import.inc:125 +#: ../../../../inc/themes/material-blue/import.inc:137 msgid "Usuario BBDD" msgstr "Имя пользователя DB" -#: ../../../../inc/themes/classic/import.inc:18 -#: ../../../../inc/themes/material-blue/import.inc:132 +#: ../../../../inc/themes/classic/import.inc:15 +#: ../../../../inc/themes/material-blue/import.inc:129 #, fuzzy msgid "Indicar el usuario de conexión a la base de datos de phpPMS." msgstr "Введите пользователя для подключения к базе phpPMS" -#: ../../../../inc/themes/classic/import.inc:28 +#: ../../../../inc/themes/classic/import.inc:25 #: ../../../../inc/themes/classic/install.inc:71 #: ../../../../inc/themes/classic/install.inc:73 -#: ../../../../inc/themes/material-blue/import.inc:146 -#: ../../../../inc/themes/material-blue/import.inc:152 +#: ../../../../inc/themes/material-blue/import.inc:143 +#: ../../../../inc/themes/material-blue/import.inc:149 msgid "Clave BBDD" msgstr "Пароль DB" -#: ../../../../inc/themes/classic/import.inc:36 +#: ../../../../inc/themes/classic/import.inc:33 #: ../../../../inc/themes/classic/install.inc:78 #: ../../../../inc/themes/classic/install.inc:79 -#: ../../../../inc/themes/material-blue/import.inc:158 -#: ../../../../inc/themes/material-blue/import.inc:170 +#: ../../../../inc/themes/material-blue/import.inc:155 +#: ../../../../inc/themes/material-blue/import.inc:167 msgid "Nombre BBDD" msgstr "Имя DB" -#: ../../../../inc/themes/classic/import.inc:40 -#: ../../../../inc/themes/material-blue/import.inc:162 +#: ../../../../inc/themes/classic/import.inc:37 +#: ../../../../inc/themes/material-blue/import.inc:159 #, fuzzy msgid "Indicar el nombre de la base de datos de phpPMS." msgstr "Введите имя базы phpPMS" -#: ../../../../inc/themes/classic/import.inc:50 +#: ../../../../inc/themes/classic/import.inc:47 #: ../../../../inc/themes/classic/install.inc:87 #: ../../../../inc/themes/classic/install.inc:88 -#: ../../../../inc/themes/material-blue/import.inc:176 -#: ../../../../inc/themes/material-blue/import.inc:188 +#: ../../../../inc/themes/material-blue/import.inc:173 +#: ../../../../inc/themes/material-blue/import.inc:185 msgid "Servidor BBDD" msgstr "Сервер DB" -#: ../../../../inc/themes/classic/import.inc:54 -#: ../../../../inc/themes/material-blue/import.inc:180 +#: ../../../../inc/themes/classic/import.inc:51 +#: ../../../../inc/themes/material-blue/import.inc:177 #, fuzzy msgid "Indicar el servidor de la base de datos de phpPMS." msgstr "Введите имя сервера с базой phpPMS" -#: ../../../../inc/themes/classic/import.inc:64 -#: ../../../../inc/themes/material-blue/import.inc:194 +#: ../../../../inc/themes/classic/import.inc:61 +#: ../../../../inc/themes/material-blue/import.inc:191 msgid "Confirmar" msgstr "Подтвердить" -#: ../../../../inc/themes/classic/import.inc:68 -#: ../../../../inc/themes/material-blue/import.inc:198 +#: ../../../../inc/themes/classic/import.inc:65 +#: ../../../../inc/themes/material-blue/import.inc:195 msgid "Los datos actuales serán borrados (excepto el usuario actual)" msgstr "Текущие данные будут удалены (кроме текущего пользователя)" -#: ../../../../inc/themes/classic/import.inc:83 +#: ../../../../inc/themes/classic/import.inc:80 msgid "Iniciar" msgstr "Старт" -#: ../../../../inc/themes/classic/import.inc:89 -#: ../../../../inc/themes/material-blue/import.inc:7 +#: ../../../../inc/themes/classic/import.inc:86 +#: ../../../../inc/themes/material-blue/import.inc:4 msgid "Importar CSV/XML" msgstr "Импорт CSV/XML" -#: ../../../../inc/themes/classic/import.inc:96 -#: ../../../../inc/themes/material-blue/import.inc:14 +#: ../../../../inc/themes/classic/import.inc:93 +#: ../../../../inc/themes/material-blue/import.inc:11 #, fuzzy msgid "Usuario por Defecto" msgstr "Задает профиль по умолчанию для новых пользователей из LDAP" -#: ../../../../inc/themes/classic/import.inc:100 -#: ../../../../inc/themes/material-blue/import.inc:18 +#: ../../../../inc/themes/classic/import.inc:97 +#: ../../../../inc/themes/material-blue/import.inc:15 #, fuzzy msgid "Define el usuario por defecto para las cuentas importadas." msgstr "Задает профиль по умолчанию для новых пользователей из LDAP" -#: ../../../../inc/themes/classic/import.inc:117 +#: ../../../../inc/themes/classic/import.inc:114 #: ../../../../inc/themes/classic/ldap.inc:144 -#: ../../../../inc/themes/material-blue/import.inc:36 +#: ../../../../inc/themes/material-blue/import.inc:33 #: ../../../../inc/themes/material-blue/ldap.inc:170 msgid "Grupo por Defecto" msgstr "Группа по умолчанию" -#: ../../../../inc/themes/classic/import.inc:121 -#: ../../../../inc/themes/material-blue/import.inc:40 +#: ../../../../inc/themes/classic/import.inc:118 +#: ../../../../inc/themes/material-blue/import.inc:37 #, fuzzy msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Задает группу по умолчанию для новых пользователей из LDAP" -#: ../../../../inc/themes/classic/import.inc:138 -#: ../../../../inc/themes/material-blue/import.inc:58 -#: ../../../../inc/themes/material-blue/import.inc:64 +#: ../../../../inc/themes/classic/import.inc:135 +#: ../../../../inc/themes/material-blue/import.inc:55 +#: ../../../../inc/themes/material-blue/import.inc:61 #, fuzzy msgid "Clave de Importación" msgstr "Подтвердите импорт учетной записи" -#: ../../../../inc/themes/classic/import.inc:146 -#: ../../../../inc/themes/material-blue/import.inc:70 -#: ../../../../inc/themes/material-blue/import.inc:76 +#: ../../../../inc/themes/classic/import.inc:143 +#: ../../../../inc/themes/material-blue/import.inc:67 +#: ../../../../inc/themes/material-blue/import.inc:73 #, fuzzy msgid "Delimitador CSV" msgstr "Импорт CSV/XML" -#: ../../../../inc/themes/classic/import.inc:162 -#: ../../../../inc/themes/material-blue/import.inc:90 +#: ../../../../inc/themes/classic/import.inc:159 +#: ../../../../inc/themes/material-blue/import.inc:87 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Перетащите файлы сюда или нажниме для выбора" -#: ../../../../inc/themes/classic/import.inc:175 +#: ../../../../inc/themes/classic/import.inc:172 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "arhcivos XML y CSV." msgstr "" -#: ../../../../inc/themes/classic/import.inc:177 -#: ../../../../inc/themes/material-blue/import.inc:106 +#: ../../../../inc/themes/classic/import.inc:174 +#: ../../../../inc/themes/material-blue/import.inc:103 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "" -#: ../../../../inc/themes/classic/import.inc:179 -#: ../../../../inc/themes/material-blue/import.inc:108 +#: ../../../../inc/themes/classic/import.inc:176 +#: ../../../../inc/themes/material-blue/import.inc:105 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "" -#: ../../../../inc/themes/classic/import.inc:181 -#: ../../../../inc/themes/material-blue/import.inc:110 +#: ../../../../inc/themes/classic/import.inc:178 +#: ../../../../inc/themes/material-blue/import.inc:107 #, fuzzy msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " @@ -4037,19 +4148,19 @@ msgid "" msgstr "" "Импорт из KeePass или KeePassX. Имя заказчика будет KeePass или KeePassX." -#: ../../../../inc/themes/classic/import.inc:183 -#: ../../../../inc/themes/material-blue/import.inc:112 +#: ../../../../inc/themes/classic/import.inc:180 +#: ../../../../inc/themes/material-blue/import.inc:109 #, fuzzy msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "Импорт из CSV в формате" -#: ../../../../inc/themes/classic/import.inc:185 -#: ../../../../inc/themes/material-blue/import.inc:114 +#: ../../../../inc/themes/classic/import.inc:182 +#: ../../../../inc/themes/material-blue/import.inc:111 msgid "nombre_de_cuenta;cliente;categoría;url;usuario;clave;notas" msgstr "account_name;customer;category;url;user;password;notes" -#: ../../../../inc/themes/classic/import.inc:187 -#: ../../../../inc/themes/material-blue/import.inc:116 +#: ../../../../inc/themes/classic/import.inc:184 +#: ../../../../inc/themes/material-blue/import.inc:113 #, fuzzy msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " @@ -4322,7 +4433,7 @@ msgstr "Включить запросы по email" #: ../../../../inc/themes/classic/mgmttabs.inc:70 #: ../../../../inc/themes/classic/search.inc:120 -#: ../../../../inc/themes/material-blue/search.inc:123 +#: ../../../../inc/themes/material-blue/search.inc:160 msgid "Más Acciones" msgstr "Другие действия" @@ -4340,12 +4451,6 @@ msgstr "Логин" msgid "Email del Usuario" msgstr "Email" -#: ../../../../inc/themes/classic/passreset.inc:22 -#: ../../../../inc/themes/classic/users.inc:61 -#: ../../../../inc/themes/material-blue/users.inc:71 -msgid "Email" -msgstr "Email" - #: ../../../../inc/themes/classic/passreset.inc:27 msgid "Nueva Clave" msgstr "Новый пароль" @@ -4572,7 +4677,7 @@ msgid "Descripción de la petición" msgstr "Описание запроса" #: ../../../../inc/themes/classic/request.inc:33 -#: ../../../../inc/themes/material-blue/account.inc:443 +#: ../../../../inc/themes/material-blue/account.inc:445 #: ../../../../inc/themes/material-blue/editpass.inc:55 #: ../../../../inc/themes/material-blue/mgmttabs.inc:13 #: ../../../../inc/themes/material-blue/request.inc:42 @@ -4585,32 +4690,34 @@ msgid "Enviar" msgstr "Отправить" #: ../../../../inc/themes/classic/search.inc:33 -#: ../../../../inc/themes/material-blue/search.inc:29 +#: ../../../../inc/themes/material-blue/search.inc:65 msgid "Buscar en Wiki" msgstr "Поиск в Wiki" #: ../../../../inc/themes/classic/search.inc:69 -#: ../../../../inc/themes/material-blue/search.inc:65 +#: ../../../../inc/themes/material-blue/search.inc:101 msgid "Abrir enlace a" msgstr "Открыть ссылку" #: ../../../../inc/themes/classic/search.inc:87 -#: ../../../../inc/themes/material-blue/search.inc:89 +#: ../../../../inc/themes/material-blue/search.inc:125 msgid "Archivos adjuntos" msgstr "Вложения" #: ../../../../inc/themes/classic/search.inc:94 -#: ../../../../inc/themes/material-blue/search.inc:98 +#: ../../../../inc/themes/material-blue/search.inc:134 msgid "Enlace a Wiki" msgstr "Ссылка на Wiki" #: ../../../../inc/themes/classic/search.inc:159 -#: ../../../../inc/themes/material-blue/search.inc:161 +#: ../../../../inc/themes/material-blue/search.inc:10 +#: ../../../../inc/themes/material-blue/search.inc:199 msgid "Filtro ON" msgstr "Включен фильтр" #: ../../../../inc/themes/classic/search.inc:163 -#: ../../../../inc/themes/material-blue/search.inc:165 +#: ../../../../inc/themes/material-blue/search.inc:14 +#: ../../../../inc/themes/material-blue/search.inc:203 msgid "Global ON" msgstr "Глобальный" @@ -4686,7 +4793,6 @@ msgid "" msgstr "" #: ../../../../inc/themes/classic/security.inc:29 -#: ../../../../inc/themes/material-blue/preferences.inc:86 #: ../../../../inc/themes/material-blue/security.inc:27 msgid "Activar" msgstr "" @@ -4923,8 +5029,8 @@ msgstr "Подтверждение пароля" #: ../../../../inc/themes/material-blue/backup.inc:58 #: ../../../../inc/themes/material-blue/backup.inc:144 -#: ../../../../inc/themes/material-blue/encryption.inc:118 -#: ../../../../inc/themes/material-blue/import.inc:217 +#: ../../../../inc/themes/material-blue/encryption.inc:115 +#: ../../../../inc/themes/material-blue/import.inc:214 #, fuzzy msgid "Realizar" msgstr "Выполнить резервное копирование" @@ -4989,7 +5095,7 @@ msgstr "Help :: FAQ :: Changelog" msgid "Preferencias de usuario" msgstr "Указанный логин уже существует" -#: ../../../../inc/themes/material-blue/import.inc:104 +#: ../../../../inc/themes/material-blue/import.inc:101 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "archivos XML y CSV." @@ -5041,6 +5147,14 @@ msgid "" "cuentas sin permisos." msgstr "" +#: ../../../../inc/themes/material-blue/preferences.inc:91 +msgid "Barra de navegación superior" +msgstr "" + +#: ../../../../inc/themes/material-blue/preferences.inc:95 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "" + #: ../../../../inc/themes/material-blue/profiles.inc:25 #, fuzzy msgid "Crear nueva cuenta" diff --git a/sql/upgrade.sql b/sql/upgrade.sql index d201f64f..ce641226 100644 --- a/sql/upgrade.sql +++ b/sql/upgrade.sql @@ -1,41 +1,106 @@ -- To 1.1 ALTER TABLE `accFiles` CHANGE COLUMN `accfile_name` `accfile_name` VARCHAR(100) NOT NULL -ALTER TABLE `accounts` ADD COLUMN `account_otherGroupEdit` BIT(1) NULL DEFAULT 0 AFTER `account_dateEdit`, ADD COLUMN `account_otherUserEdit` BIT(1) NULL DEFAULT 0 AFTER `account_otherGroupEdit`; -CREATE TABLE `accUsers` (`accuser_id` INT NOT NULL AUTO_INCREMENT,`accuser_accountId` INT(10) UNSIGNED NOT NULL,`accuser_userId` INT(10) UNSIGNED NOT NULL, PRIMARY KEY (`accuser_id`), INDEX `idx_account` (`accuser_accountId` ASC)); -ALTER TABLE `accHistory` ADD COLUMN `accHistory_otherUserEdit` BIT NULL AFTER `acchistory_mPassHash`, ADD COLUMN `accHistory_otherGroupEdit` VARCHAR(45) NULL AFTER `accHistory_otherUserEdit`; -ALTER TABLE `accFiles` CHANGE COLUMN `accfile_type` `accfile_type` VARCHAR(100) NOT NULL ; +ALTER TABLE `accounts` ADD COLUMN `account_otherGroupEdit` BIT(1) NULL DEFAULT 0 +AFTER `account_dateEdit`, ADD COLUMN `account_otherUserEdit` BIT(1) NULL DEFAULT 0 +AFTER `account_otherGroupEdit`; +CREATE TABLE `accUsers` ( + `accuser_id` INT NOT NULL AUTO_INCREMENT, + `accuser_accountId` INT(10) UNSIGNED NOT NULL, + `accuser_userId` INT(10) UNSIGNED NOT NULL, + PRIMARY KEY (`accuser_id`), + INDEX `idx_account` (`accuser_accountId` ASC) +); +ALTER TABLE `accHistory` ADD COLUMN `accHistory_otherUserEdit` BIT NULL +AFTER `acchistory_mPassHash`, ADD COLUMN `accHistory_otherGroupEdit` VARCHAR(45) NULL +AFTER `accHistory_otherUserEdit`; +ALTER TABLE `accFiles` CHANGE COLUMN `accfile_type` `accfile_type` VARCHAR(100) NOT NULL; -- To 1.1.2.1 -ALTER TABLE `categories` ADD COLUMN `category_description` VARCHAR(255) NULL AFTER `category_name`; -ALTER TABLE `usrProfiles` ADD COLUMN `userProfile_pAppMgmtMenu` BIT(1) NULL DEFAULT b'0' AFTER `userProfile_pUsersMenu`,CHANGE COLUMN `userProfile_pConfigCategories` `userProfile_pAppMgmtCategories` BIT(1) NULL DEFAULT b'0' AFTER `userProfile_pAppMgmtMenu`,ADD COLUMN `userProfile_pAppMgmtCustomers` BIT(1) NULL DEFAULT b'0' AFTER `userProfile_pAppMgmtCategories`; +ALTER TABLE `categories` ADD COLUMN `category_description` VARCHAR(255) NULL +AFTER `category_name`; +ALTER TABLE `usrProfiles` ADD COLUMN `userProfile_pAppMgmtMenu` BIT(1) NULL DEFAULT b'0' +AFTER `userProfile_pUsersMenu`, CHANGE COLUMN `userProfile_pConfigCategories` `userProfile_pAppMgmtCategories` BIT(1) NULL DEFAULT b'0' +AFTER `userProfile_pAppMgmtMenu`, ADD COLUMN `userProfile_pAppMgmtCustomers` BIT(1) NULL DEFAULT b'0' +AFTER `userProfile_pAppMgmtCategories`; -- To 1.1.2.2 -ALTER TABLE `usrData` CHANGE COLUMN `user_login` `user_login` VARCHAR(50) NOT NULL ,CHANGE COLUMN `user_email` `user_email` VARCHAR(80) NULL DEFAULT NULL ; +ALTER TABLE `usrData` CHANGE COLUMN `user_login` `user_login` VARCHAR(50) NOT NULL, CHANGE COLUMN `user_email` `user_email` VARCHAR(80) NULL DEFAULT NULL; -- To 1.1.2.3 -CREATE TABLE `usrPassRecover` (`userpassr_id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `userpassr_userId` SMALLINT UNSIGNED NOT NULL,`userpassr_hash` VARBINARY(40) NOT NULL,`userpassr_date` INT UNSIGNED NOT NULL,`userpassr_used` BIT(1) NOT NULL DEFAULT b\'0\', PRIMARY KEY (`userpassr_id`),INDEX `IDX_userId` (`userpassr_userId` ASC, `userpassr_date` ASC)) DEFAULT CHARACTER SET = utf8 COLLATE = utf8_general_ci; -ALTER TABLE `log` ADD COLUMN `log_ipAddress` VARCHAR(45) NOT NULL AFTER `log_userId`; -ALTER TABLE `usrData` ADD COLUMN `user_isChangePass` BIT(1) NULL DEFAULT b'0' AFTER `user_isMigrate`; +CREATE TABLE `usrPassRecover` ( + `userpassr_id` INT UNSIGNED NOT NULL AUTO_INCREMENT, + `userpassr_userId` SMALLINT UNSIGNED NOT NULL, + `userpassr_hash` VARBINARY(40) NOT NULL, + `userpassr_date` INT UNSIGNED NOT NULL, + `userpassr_used` BIT(1) NOT NULL DEFAULT b'0', + PRIMARY KEY (`userpassr_id`), + INDEX `IDX_userId` (`userpassr_userId` ASC, `userpassr_date` ASC) +) + DEFAULT CHARACTER SET = utf8 + COLLATE = utf8_general_ci; +ALTER TABLE `log` ADD COLUMN `log_ipAddress` VARCHAR(45) NOT NULL +AFTER `log_userId`; +ALTER TABLE `usrData` ADD COLUMN `user_isChangePass` BIT(1) NULL DEFAULT b'0' +AFTER `user_isMigrate`; -- To 1.1.2.12 -ALTER TABLE `usrData` CHANGE COLUMN `user_mPass` `user_mPass` VARBINARY(32) NULL DEFAULT NULL ,CHANGE COLUMN `user_lastLogin` `user_lastLogin` DATETIME NULL DEFAULT NULL ,CHANGE COLUMN `user_lastUpdate` `user_lastUpdate` DATETIME NULL DEFAULT NULL, CHANGE COLUMN `user_mIV` `user_mIV` VARBINARY(32) NULL ; -ALTER TABLE `accounts` CHANGE COLUMN `account_login` `account_login` VARCHAR(50) NULL DEFAULT NULL ; +ALTER TABLE `usrData` CHANGE COLUMN `user_mPass` `user_mPass` VARBINARY(32) NULL DEFAULT NULL, CHANGE COLUMN `user_lastLogin` `user_lastLogin` DATETIME NULL DEFAULT NULL, CHANGE COLUMN `user_lastUpdate` `user_lastUpdate` DATETIME NULL DEFAULT NULL, CHANGE COLUMN `user_mIV` `user_mIV` VARBINARY(32) NULL; +ALTER TABLE `accounts` CHANGE COLUMN `account_login` `account_login` VARCHAR(50) NULL DEFAULT NULL; -- To 1.1.2.13 -ALTER TABLE `usrData` CHANGE COLUMN `user_mPass` `user_mPass` VARBINARY(32) NULL DEFAULT NULL ,CHANGE COLUMN `user_lastLogin` `user_lastLogin` DATETIME NULL DEFAULT NULL ,CHANGE COLUMN `user_lastUpdate` `user_lastUpdate` DATETIME NULL DEFAULT NULL, CHANGE COLUMN `user_mIV` `user_mIV` VARBINARY(32) NULL ;'; +ALTER TABLE `usrData` CHANGE COLUMN `user_mPass` `user_mPass` VARBINARY(32) NULL DEFAULT NULL, CHANGE COLUMN `user_lastLogin` `user_lastLogin` DATETIME NULL DEFAULT NULL, CHANGE COLUMN `user_lastUpdate` `user_lastUpdate` DATETIME NULL DEFAULT NULL, CHANGE COLUMN `user_mIV` `user_mIV` VARBINARY(32) NULL; ALTER TABLE `accounts` CHANGE COLUMN `account_login` `account_login` VARCHAR(50) NULL DEFAULT NULL; -- To 1.1.2.19 -ALTER TABLE `accounts` CHANGE COLUMN `account_pass` `account_pass` VARBINARY(255) NOT NULL ; -ALTER TABLE `accHistory` CHANGE COLUMN `acchistory_pass` `acchistory_pass` VARBINARY(255) NOT NULL ; +ALTER TABLE `accounts` CHANGE COLUMN `account_pass` `account_pass` VARBINARY(255) NOT NULL; +ALTER TABLE `accHistory` CHANGE COLUMN `acchistory_pass` `acchistory_pass` VARBINARY(255) NOT NULL; -- To 1.1.2.20 -ALTER TABLE `usrData` CHANGE COLUMN `user_pass` `user_pass` VARBINARY(255) NOT NULL,CHANGE COLUMN `user_mPass` `acchistory_pass` VARBINARY(255) DEFAULT NULL ; +ALTER TABLE `usrData` CHANGE COLUMN `user_pass` `user_pass` VARBINARY(255) NOT NULL, CHANGE COLUMN `user_mPass` `acchistory_pass` VARBINARY(255) DEFAULT NULL; -- To 1.2.0.1 ALTER TABLE `accounts` CHANGE COLUMN `account_userEditId` `account_userEditId` TINYINT(3) UNSIGNED NULL DEFAULT NULL, CHANGE COLUMN `account_dateEdit` `account_dateEdit` DATETIME NULL DEFAULT NULL; ALTER TABLE `accHistory` CHANGE COLUMN `acchistory_userEditId` `acchistory_userEditId` TINYINT(3) UNSIGNED NULL DEFAULT NULL, CHANGE COLUMN `acchistory_dateEdit` `acchistory_dateEdit` DATETIME NULL DEFAULT NULL; -ALTER TABLE `accHistory` CHANGE COLUMN `accHistory_otherGroupEdit` `accHistory_otherGroupEdit` BIT NULL DEFAULT b\'0\'; +ALTER TABLE `accHistory` CHANGE COLUMN `accHistory_otherGroupEdit` `accHistory_otherGroupEdit` BIT NULL DEFAULT b'0'; ALTER TABLE `usrProfiles` ADD COLUMN `userProfile_profile` BLOB NOT NULL; ALTER TABLE `usrData` ADD `user_preferences` BLOB NULL; -CREATE TABLE usrToGroups (usertogroup_id INT UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT,usertogroup_userId INT UNSIGNED NOT NULL,usertogroup_groupId INT UNSIGNED NOT NULL) DEFAULT CHARSET=utf8; -CREATE INDEX IDX_accountId ON usrToGroups (usertogroup_userId) +CREATE TABLE usrToGroups ( + usertogroup_id INT UNSIGNED PRIMARY KEY NOT NULL AUTO_INCREMENT, + usertogroup_userId INT UNSIGNED NOT NULL, + usertogroup_groupId INT UNSIGNED NOT NULL +) + DEFAULT CHARSET = utf8; +CREATE INDEX IDX_accountId ON usrToGroups (usertogroup_userId); ALTER TABLE `accFiles` ADD `accFile_thumb` BLOB NULL; -CREATE TABLE `authTokens` (`authtoken_id` int(11) NOT NULL AUTO_INCREMENT,`authtoken_userId` int(11) NOT NULL,`authtoken_token` varbinary(100) NOT NULL,`authtoken_actionId` smallint(5) unsigned NOT NULL,`authtoken_createdBy` smallint(5) unsigned NOT NULL,`authtoken_startDate` int(10) unsigned NOT NULL,PRIMARY KEY (`authtoken_id`),UNIQUE KEY `unique_authtoken_id` (`authtoken_id`),KEY `IDX_checkToken` (`authtoken_userId`,`authtoken_actionId`,`authtoken_token`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -CREATE TABLE `customFieldsDef` (`customfielddef_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `customfielddef_module` smallint(5) unsigned NOT NULL, `customfielddef_field` blob NOT NULL, PRIMARY KEY (`customfielddef_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; -CREATE TABLE `customFieldsData` (`customfielddata_id` int(10) unsigned NOT NULL AUTO_INCREMENT,`customfielddata_moduleId` smallint(5) unsigned NOT NULL,`customfielddata_itemId` int(10) unsigned NOT NULL,`customfielddata_defId` int(10) unsigned NOT NULL,`customfielddata_data` longblob,`customfielddata_iv` varbinary(128) DEFAULT NULL, PRIMARY KEY (`customfielddata_id`), KEY `IDX_DEFID` (`customfielddata_defId`), KEY `IDX_DELETE` (`customfielddata_itemId`,`customfielddata_moduleId`), KEY `IDX_UPDATE` (`customfielddata_moduleId`,`customfielddata_itemId`,`customfielddata_defId`), KEY `IDX_ITEM` (`customfielddata_itemId`), KEY `IDX_MODULE` (`customfielddata_moduleId`)) ENGINE=InnoDB DEFAULT CHARSET=utf8; +CREATE TABLE `authTokens` ( + `authtoken_id` INT(11) NOT NULL AUTO_INCREMENT, + `authtoken_userId` INT(11) NOT NULL, + `authtoken_token` VARBINARY(100) NOT NULL, + `authtoken_actionId` SMALLINT(5) UNSIGNED NOT NULL, + `authtoken_createdBy` SMALLINT(5) UNSIGNED NOT NULL, + `authtoken_startDate` INT(10) UNSIGNED NOT NULL, + PRIMARY KEY (`authtoken_id`), + UNIQUE KEY `unique_authtoken_id` (`authtoken_id`), + KEY `IDX_checkToken` (`authtoken_userId`, `authtoken_actionId`, `authtoken_token`) +) + ENGINE = InnoDB + DEFAULT CHARSET = utf8; +CREATE TABLE `customFieldsDef` ( + `customfielddef_id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, + `customfielddef_module` SMALLINT(5) UNSIGNED NOT NULL, + `customfielddef_field` BLOB NOT NULL, + PRIMARY KEY (`customfielddef_id`) +) + ENGINE = InnoDB + DEFAULT CHARSET = utf8; +CREATE TABLE `customFieldsData` ( + `customfielddata_id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT, + `customfielddata_moduleId` SMALLINT(5) UNSIGNED NOT NULL, + `customfielddata_itemId` INT(10) UNSIGNED NOT NULL, + `customfielddata_defId` INT(10) UNSIGNED NOT NULL, + `customfielddata_data` LONGBLOB, + `customfielddata_iv` VARBINARY(128) DEFAULT NULL, + PRIMARY KEY (`customfielddata_id`), + KEY `IDX_DEFID` (`customfielddata_defId`), + KEY `IDX_DELETE` (`customfielddata_itemId`, `customfielddata_moduleId`), + KEY `IDX_UPDATE` (`customfielddata_moduleId`, `customfielddata_itemId`, `customfielddata_defId`), + KEY `IDX_ITEM` (`customfielddata_itemId`), + KEY `IDX_MODULE` (`customfielddata_moduleId`) +) + ENGINE = InnoDB + DEFAULT CHARSET = utf8; -- To 1.2.0.2 ALTER TABLE config CHANGE config_value config_value VARCHAR(255); ALTER TABLE usrData CHANGE user_pass user_pass VARBINARY(255);