mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-03 07:04:07 +01:00
* [FIX] Fixed issue on copy password to clipboard on Chrome browser. Related #140. Thanks to @basil-twisleton
* [FIX] Fixed English translation. Related #140.Thanks to @basil-twisleton * [FIX] Fixed displaying required field when it is a select tag. Related #140.Thanks to @basil-twisleton * [FIX] Fixed issue when adding an user from LDAP when no group/profile is set (disabled by default). Fixes #157 * [MOD] Modified behavior when adding a new customer from account page. Related #140.Thanks to @basil-twisleton * [MOD] Updated German translation. Thanks to @wagnst
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
=== ** v1.2.0.08 ===
|
||||
|
||||
* [FIX] Fixed issue on copy password to clipboard on Chrome browser. Related #140. Thanks to @basil-twisleton
|
||||
* [FIX] Fixed English translation. Related #140.Thanks to @basil-twisleton
|
||||
* [FIX] Fixed displaying required field when it is a select tag. Related #140.Thanks to @basil-twisleton
|
||||
* [FIX] Fixed issue when adding an user from LDAP when no group/profile is set (disabled by default). Fixes #157
|
||||
* [MOD] Modified behavior when adding a new customer from account page. Related #140.Thanks to @basil-twisleton
|
||||
* [MOD] Updated German translation. Thanks to @wagnst
|
||||
|
||||
=== ** v1.2.0.07 ===
|
||||
|
||||
* [FIX] Fixed issue when searching an user groupmembership to access to an account. Thanks to @basil-twisleton
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
=== ** v1.2.0.08 ===
|
||||
|
||||
* [FIX] Corregido error al copiar clave al portapapeles en el navegador Chrome. Related #140. Thanks to @basil-twisleton
|
||||
* [FIX] Corregida traducción al inglés. Related #140.Thanks to @basil-twisleton
|
||||
* [FIX] Corregido error al mostrar una etiqueta select requerida. Related #140.Thanks to @basil-twisleton
|
||||
* [FIX] Corregido error al añadir usuario desde LDAP cuando el grupo o perfil no están establecidos (deshabilitado por defecto). Fixes #157
|
||||
* [MOD] Modificado comportamiento cuando se añade un nuevo cliente desde la página de cuenta. Related #140.Thanks to @basil-twisleton
|
||||
* [MOD] Actualizada traducción al alemán. Thanks to @wagnst
|
||||
|
||||
=== ** v1.2.0.07 ===
|
||||
|
||||
* [FIX] Arreglado error cuando se obtenía la pertenencia a grupos de un usuario para acceder a una cuenta. Thanks to @basil-twisleton
|
||||
|
||||
@@ -137,7 +137,7 @@ switch ($actionId) {
|
||||
SP\Customer::$customerName = $newCustomer;
|
||||
|
||||
// Comprobar si se ha introducido un nuevo cliente
|
||||
if ($newCustomer) {
|
||||
if ($customerId === 0 && $newCustomer) {
|
||||
try {
|
||||
SP\Customer::addCustomer();
|
||||
$customerId = SP\Customer::$customerLastId;
|
||||
@@ -179,7 +179,7 @@ switch ($actionId) {
|
||||
SP\Customer::$customerName = $newCustomer;
|
||||
|
||||
// Comprobar si se ha introducido un nuevo cliente
|
||||
if ($newCustomer) {
|
||||
if ($customerId === 0 && $newCustomer) {
|
||||
try {
|
||||
SP\Customer::addCustomer();
|
||||
$customerId = SP\Customer::$customerLastId;
|
||||
|
||||
2
css/chosen-custom.min.css
vendored
2
css/chosen-custom.min.css
vendored
@@ -8,4 +8,4 @@ Copyright (c) 2011-2015 Harvest http://getharvest.com
|
||||
|
||||
MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
|
||||
This file is generated by `grunt build`, do not edit it by hand.
|
||||
*/.chosen-container .chosen-results li.highlighted{background-color:#536dfe;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#879bff),color-stop(90%,#536dfe));background-image:-webkit-linear-gradient(#879bff 20%,#536dfe 90%);background-image:-moz-linear-gradient(#879bff 20%,#536dfe 90%);background-image:-o-linear-gradient(#879bff 20%,#536dfe 90%);background-image:linear-gradient(#879bff 20%,#536dfe 90%);color:#fff}.chosen-container-active .chosen-single{border:1px solid rgba(83,109,254,.8);box-shadow:0 0 5px rgba(0,0,0,0.3)}.chosen-container-active .chosen-choices{border:1px solid rgba(83,109,254,.8);box-shadow:0 0 5px rgba(0,0,0,0.3)}
|
||||
*/.chosen-container .chosen-results li.highlighted{background-color:#536dfe;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(20%,#879bff),color-stop(90%,#536dfe));background-image:-webkit-linear-gradient(#879bff 20%,#536dfe 90%);background-image:-moz-linear-gradient(#879bff 20%,#536dfe 90%);background-image:-o-linear-gradient(#879bff 20%,#536dfe 90%);background-image:linear-gradient(#879bff 20%,#536dfe 90%);color:#fff}.chosen-container-active .chosen-single{border:1px solid rgba(83,109,254,.8);box-shadow:0 0 5px rgba(0,0,0,0.3)}.chosen-container-active .chosen-choices{border:1px solid rgba(83,109,254,.8);box-shadow:0 0 5px rgba(0,0,0,0.3)}select:invalid+.chosen-container .chosen-single{border-color:red}
|
||||
@@ -68,7 +68,7 @@ class UserLdap
|
||||
$data['notes'] = _('Usuario de LDAP');
|
||||
$data['groupId'] = $groupId;
|
||||
$data['profileId'] = $profileId;
|
||||
$data['isDisabled'] = (int)($groupId && $profileId);
|
||||
$data['isDisabled'] = ($groupId === 0 || $profileId === 0) ? 1 : 0;
|
||||
|
||||
if (DB::getQuery($query, __FUNCTION__, $data) === false) {
|
||||
return false;
|
||||
|
||||
@@ -309,7 +309,7 @@ class Util
|
||||
*/
|
||||
public static function getVersion($retBuild = false)
|
||||
{
|
||||
$build = '07';
|
||||
$build = '08';
|
||||
$version = array(1, 2, 0);
|
||||
|
||||
if ($retBuild) {
|
||||
|
||||
Binary file not shown.
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sysPass\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-15 22:43+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 22:43+0100\n"
|
||||
"POT-Creation-Date: 2015-10-25 23:35+0100\n"
|
||||
"PO-Revision-Date: 2015-10-25 23:35+0100\n"
|
||||
"Last-Translator: nuxsmin <nuxsmin@syspass.org>\n"
|
||||
"Language-Team: <language@syspass.org>\n"
|
||||
"Language: ca_ES\n"
|
||||
@@ -81,7 +81,7 @@ msgstr "Id invàlid"
|
||||
#: ../../../../ajax/ajax_accountSave.php:113
|
||||
#: ../../../../ajax/ajax_accountSave.php:263
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:535
|
||||
#: ../../../../ajax/ajax_configSave.php:324
|
||||
#: ../../../../ajax/ajax_configSave.php:334
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:113 ../../../../api.php:53
|
||||
msgid "Acción Inválida"
|
||||
msgstr "Acció Invàlida"
|
||||
@@ -212,7 +212,7 @@ msgstr "Editar Categoria"
|
||||
#: ../../../../inc/Category.class.php:83
|
||||
#: ../../../../web/AccountsMgmtC.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:53
|
||||
#: ../../../../inc/themes/material-blue/account.inc:61
|
||||
#: ../../../../inc/themes/material-blue/account.inc:62
|
||||
msgid "Nueva Categoría"
|
||||
msgstr "Nova Categoria"
|
||||
|
||||
@@ -265,7 +265,7 @@ msgstr "És necessari un email"
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:145
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:160
|
||||
#: ../../../../ajax/ajax_backup.php:54
|
||||
#: ../../../../ajax/ajax_configSave.php:297
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:88
|
||||
msgid "Ey, esto es una DEMO!!"
|
||||
@@ -348,7 +348,7 @@ msgstr "Error en actualitzar el grup"
|
||||
#: ../../../../inc/themes/classic/account.inc:112
|
||||
#: ../../../../inc/themes/classic/groups.inc:24
|
||||
#: ../../../../inc/themes/classic/profiles.inc:85
|
||||
#: ../../../../inc/themes/material-blue/account.inc:137
|
||||
#: ../../../../inc/themes/material-blue/account.inc:138
|
||||
#: ../../../../inc/themes/material-blue/groups.inc:32
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:99
|
||||
msgid "Usuarios"
|
||||
@@ -550,156 +550,160 @@ msgstr "Objectes trobats"
|
||||
msgid "Modificar Configuración"
|
||||
msgstr "Modificar Configuració"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:105
|
||||
#: ../../../../ajax/ajax_configSave.php:101
|
||||
msgid "El tamaño máximo por archivo es de 16MB"
|
||||
msgstr "La grandària màxima per arxiu és de 16MB"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:118
|
||||
#: ../../../../ajax/ajax_configSave.php:109 ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr "Extensió no permesa"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:128
|
||||
msgid "Faltan parámetros de Proxy"
|
||||
msgstr "Falten paràmetres de Proxy"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:126
|
||||
#: ../../../../ajax/ajax_configSave.php:136
|
||||
msgid "Proxy habiltado"
|
||||
msgstr "Proxy habilitat"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:130
|
||||
#: ../../../../ajax/ajax_configSave.php:140
|
||||
msgid "Proxy deshabilitado"
|
||||
msgstr "Proxy deshabilitat"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:133
|
||||
#: ../../../../ajax/ajax_configSave.php:157
|
||||
#: ../../../../ajax/ajax_configSave.php:191
|
||||
#: ../../../../ajax/ajax_configSave.php:230
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
msgid "Sección"
|
||||
msgstr "Secció"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:133
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../web/ConfigC.class.php:108
|
||||
#: ../../../../inc/themes/classic/profiles.inc:61
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:72
|
||||
msgid "General"
|
||||
msgstr "General"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../ajax/ajax_configSave.php:153
|
||||
msgid "Faltan parámetros de Wiki"
|
||||
msgstr "Falten paràmetres de Wiki"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:150
|
||||
#: ../../../../ajax/ajax_configSave.php:160
|
||||
msgid "Wiki habiltada"
|
||||
msgstr "Wiki habiltada"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:154
|
||||
#: ../../../../ajax/ajax_configSave.php:164
|
||||
msgid "Wiki deshabilitada"
|
||||
msgstr "Wiki deshabilitada"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:157
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../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:172
|
||||
#: ../../../../ajax/ajax_configSave.php:182
|
||||
msgid "Faltan parámetros de LDAP"
|
||||
msgstr "Falten paràmetres de LDAP"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:184
|
||||
#: ../../../../ajax/ajax_configSave.php:194
|
||||
msgid "LDAP habiltado"
|
||||
msgstr "LDAP habiltat"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:188
|
||||
#: ../../../../ajax/ajax_configSave.php:198
|
||||
msgid "LDAP deshabilitado"
|
||||
msgstr "LDAP deshabilitat"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:191
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../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:206
|
||||
#: ../../../../ajax/ajax_configSave.php:216
|
||||
msgid "Faltan parámetros de Correo"
|
||||
msgstr "Falten paràmetres de Correu"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:221
|
||||
#: ../../../../ajax/ajax_configSave.php:231
|
||||
msgid "Correo habiltado"
|
||||
msgstr "Correu habiltat"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:227
|
||||
#: ../../../../ajax/ajax_configSave.php:237
|
||||
msgid "Correo deshabilitado"
|
||||
msgstr "Correu deshabilitat"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:230
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
#: ../../../../web/ConfigC.class.php:306
|
||||
#: ../../../../inc/themes/classic/mail.inc:4
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:4
|
||||
msgid "Correo"
|
||||
msgstr "Correu"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:252
|
||||
#: ../../../../ajax/ajax_configSave.php:262
|
||||
msgid "Configuración actualizada"
|
||||
msgstr "Configuració actualitzada"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:261
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_viewpass.php:61
|
||||
#: ../../../../inc/Controller.class.php:169
|
||||
msgid "Clave maestra actualizada"
|
||||
msgstr "Clau mestra actualitzada"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:261
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_viewpass.php:61
|
||||
#: ../../../../inc/Controller.class.php:169
|
||||
msgid "Reinicie la sesión para cambiarla"
|
||||
msgstr "Reiniciï la sessió per canviar-la"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:263
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
msgid "Clave maestra no indicada"
|
||||
msgstr "Clau mestra no indicada"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:265
|
||||
#: ../../../../ajax/ajax_configSave.php:275
|
||||
msgid "Se ha de confirmar el cambio de clave"
|
||||
msgstr "S'ha de confirmar el canvi de clau"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:269
|
||||
#: ../../../../ajax/ajax_configSave.php:279
|
||||
msgid "Las claves son idénticas"
|
||||
msgstr "Les claus són idèntiques"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:281
|
||||
msgid "Las claves maestras no coinciden"
|
||||
msgstr "Les claus mestres no coincideixen"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
#: ../../../../ajax/ajax_configSave.php:283
|
||||
msgid "La clave maestra actual no coincide"
|
||||
msgstr "La clau mestra actual no coincideix"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:282
|
||||
#: ../../../../ajax/ajax_configSave.php:292
|
||||
msgid "Errores al actualizar las claves de las cuentas"
|
||||
msgstr "Errors en actualitzar les claus dels comptes"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:288
|
||||
#: ../../../../ajax/ajax_configSave.php:298
|
||||
msgid "Errores al actualizar las claves de las cuentas del histórico"
|
||||
msgstr "Errors en actualitzar les claus dels comptes de l'històric"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:292
|
||||
#: ../../../../ajax/ajax_configSave.php:302
|
||||
msgid "Errores al actualizar datos de campos personalizados"
|
||||
msgstr "Errors en actualitzar dades de camps personalitzats"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:305
|
||||
#: ../../../../ajax/ajax_configSave.php:315
|
||||
#: ../../../../inc/Account.class.php:512
|
||||
msgid "Actualizar Clave Maestra"
|
||||
msgstr "Actualitzar Clau Mestra"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:309
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
msgid "Error al guardar el hash de la clave maestra"
|
||||
msgstr "Error en guardar el hash de la clau mestra"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
msgid "Generar Clave Temporal"
|
||||
msgstr "Generar Clau Temporal"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:86
|
||||
#: ../../../../inc/themes/classic/editpass.inc:25
|
||||
@@ -714,8 +718,8 @@ msgstr "Generar Clau Temporal"
|
||||
#: ../../../../inc/themes/classic/users.inc:75
|
||||
#: ../../../../inc/themes/classic/userspass.inc:8
|
||||
#: ../../../../inc/themes/classic/userspass.inc:11
|
||||
#: ../../../../inc/themes/material-blue/account.inc:98
|
||||
#: ../../../../inc/themes/material-blue/account.inc:103
|
||||
#: ../../../../inc/themes/material-blue/account.inc:99
|
||||
#: ../../../../inc/themes/material-blue/account.inc:104
|
||||
#: ../../../../inc/themes/material-blue/config.inc:395
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:26
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:31
|
||||
@@ -735,11 +739,11 @@ msgstr "Generar Clau Temporal"
|
||||
msgid "Clave"
|
||||
msgstr "Clau"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
#: ../../../../ajax/ajax_configSave.php:329
|
||||
msgid "Clave Temporal Generada"
|
||||
msgstr "Clau Temporal Generada"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:321
|
||||
#: ../../../../ajax/ajax_configSave.php:331
|
||||
msgid "Error al generar clave temporal"
|
||||
msgstr "Error en generar clau temporal"
|
||||
|
||||
@@ -805,11 +809,12 @@ msgstr "Login incorrecte"
|
||||
#: ../../../../inc/themes/classic/request.inc:17
|
||||
#: ../../../../inc/themes/classic/search.inc:89
|
||||
#: ../../../../inc/themes/classic/tokens.inc:8
|
||||
#: ../../../../inc/themes/material-blue/account.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:84
|
||||
#: ../../../../inc/themes/material-blue/config.inc:381
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:22
|
||||
#: ../../../../inc/themes/material-blue/eventlog.inc:23
|
||||
#: ../../../../inc/themes/material-blue/info.inc:39
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/login.inc:11
|
||||
#: ../../../../inc/themes/material-blue/login.inc:34
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:61
|
||||
@@ -1111,7 +1116,7 @@ msgstr "No té permisos per accedir a aquest compte"
|
||||
#: ../../../../inc/themes/classic/account.inc:382
|
||||
#: ../../../../inc/themes/classic/profiles.inc:23
|
||||
#: ../../../../inc/themes/classic/search.inc:139
|
||||
#: ../../../../inc/themes/material-blue/account.inc:424
|
||||
#: ../../../../inc/themes/material-blue/account.inc:425
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:35
|
||||
#: ../../../../inc/themes/material-blue/search.inc:149
|
||||
msgid "Ver Clave"
|
||||
@@ -1225,7 +1230,7 @@ msgstr "ERROR: Error en l'operació."
|
||||
#: ../../../../web/AccountC.class.php:358
|
||||
#: ../../../../inc/themes/classic/account.inc:369
|
||||
#: ../../../../inc/themes/classic/search.inc:167
|
||||
#: ../../../../inc/themes/material-blue/account.inc:418
|
||||
#: ../../../../inc/themes/material-blue/account.inc:419
|
||||
#: ../../../../inc/themes/material-blue/search.inc:178
|
||||
msgid "Eliminar Cuenta"
|
||||
msgstr "Eliminar Compte"
|
||||
@@ -1348,7 +1353,7 @@ msgstr "Veure Historial"
|
||||
#: ../../../../inc/Acl.class.php:135
|
||||
#: ../../../../inc/themes/classic/account.inc:191
|
||||
#: ../../../../inc/themes/classic/profiles.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:233
|
||||
#: ../../../../inc/themes/material-blue/account.inc:234
|
||||
#: ../../../../inc/themes/material-blue/config.inc:261
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:60
|
||||
msgid "Archivos"
|
||||
@@ -1526,7 +1531,7 @@ msgstr "Error en crear la categoria"
|
||||
#: ../../../../web/SearchC.class.php:299
|
||||
#: ../../../../inc/themes/classic/account.inc:42
|
||||
#: ../../../../inc/themes/classic/search.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:51
|
||||
#: ../../../../inc/themes/material-blue/search.inc:85
|
||||
msgid "Categoría"
|
||||
msgstr "Categoria"
|
||||
@@ -1713,7 +1718,7 @@ msgstr "Clients"
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:110
|
||||
#: ../../../../inc/themes/classic/account.inc:143
|
||||
#: ../../../../inc/themes/classic/profiles.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:169
|
||||
#: ../../../../inc/themes/material-blue/account.inc:170
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:104
|
||||
msgid "Grupos"
|
||||
msgstr "Grups"
|
||||
@@ -2397,6 +2402,13 @@ msgstr "Modificar Usuari"
|
||||
msgid "Eliminar Usuario"
|
||||
msgstr "Eliminar Usuari"
|
||||
|
||||
#: ../../../../inc/UserLdap.class.php:68
|
||||
#: ../../../../web/UsersMgmtC.class.php:109
|
||||
#: ../../../../inc/themes/classic/users.inc:28
|
||||
#: ../../../../inc/themes/material-blue/users.inc:34
|
||||
msgid "Usuario de LDAP"
|
||||
msgstr "Usuari de LDAP"
|
||||
|
||||
#: ../../../../inc/UserLdap.class.php:78
|
||||
msgid "Activación Cuenta"
|
||||
msgstr "Activació Comptes"
|
||||
@@ -2543,10 +2555,6 @@ msgstr "Massa arxius"
|
||||
msgid "No es posible guardar el archivo \"%s\" Tamaño máximo:"
|
||||
msgstr "No és possible guardar l'arxiu \"%s\" Grandària màxima:"
|
||||
|
||||
#: ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr "Extensió no permesa"
|
||||
|
||||
#: ../../../../js/strings.js.php:47
|
||||
msgid "Vaciar el registro de eventos?"
|
||||
msgstr "Buidar el registre d'esdeveniments?"
|
||||
@@ -2719,7 +2727,7 @@ msgstr "Detalls de Compte"
|
||||
|
||||
#: ../../../../web/AccountC.class.php:474
|
||||
#: ../../../../inc/themes/classic/account.inc:396
|
||||
#: ../../../../inc/themes/material-blue/account.inc:435
|
||||
#: ../../../../inc/themes/material-blue/account.inc:436
|
||||
msgid "Modificar Clave de Cuenta"
|
||||
msgstr "Modificar Clau de Compte"
|
||||
|
||||
@@ -2943,7 +2951,7 @@ msgstr "Ordenar per URL / IP"
|
||||
#: ../../../../inc/themes/classic/editpass.inc:16
|
||||
#: ../../../../inc/themes/classic/request.inc:13
|
||||
#: ../../../../inc/themes/classic/search.inc:96
|
||||
#: ../../../../inc/themes/material-blue/account.inc:69
|
||||
#: ../../../../inc/themes/material-blue/account.inc:70
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:17
|
||||
#: ../../../../inc/themes/material-blue/request.inc:15
|
||||
#: ../../../../inc/themes/material-blue/search.inc:98
|
||||
@@ -2958,12 +2966,6 @@ msgstr "Propietats"
|
||||
msgid "Admin Cuentas"
|
||||
msgstr "Admin Comptes"
|
||||
|
||||
#: ../../../../web/UsersMgmtC.class.php:109
|
||||
#: ../../../../inc/themes/classic/users.inc:28
|
||||
#: ../../../../inc/themes/material-blue/users.inc:34
|
||||
msgid "Usuario de LDAP"
|
||||
msgstr "Usuari de LDAP"
|
||||
|
||||
#: ../../../../web/UsersMgmtC.class.php:113
|
||||
#: ../../../../inc/themes/classic/users.inc:113
|
||||
#: ../../../../inc/themes/material-blue/users.inc:151
|
||||
@@ -3041,12 +3043,12 @@ msgid "Buscar en desplegable o introducir"
|
||||
msgstr "Buscar en desplegable o introduir"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:64
|
||||
#: ../../../../inc/themes/material-blue/account.inc:75
|
||||
#: ../../../../inc/themes/material-blue/account.inc:76
|
||||
msgid "URL o IP de acceso"
|
||||
msgstr "URL o IP d'accés"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:76
|
||||
#: ../../../../inc/themes/material-blue/account.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:90
|
||||
msgid "Usuario de acceso"
|
||||
msgstr "Usuari d'accés"
|
||||
|
||||
@@ -3056,7 +3058,7 @@ msgstr "Usuari d'accés"
|
||||
#: ../../../../inc/themes/classic/users.inc:83
|
||||
#: ../../../../inc/themes/classic/userspass.inc:19
|
||||
#: ../../../../inc/themes/classic/userspass.inc:21
|
||||
#: ../../../../inc/themes/material-blue/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:109
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:36
|
||||
#: ../../../../inc/themes/material-blue/install.inc:67
|
||||
#: ../../../../inc/themes/material-blue/passreset.inc:36
|
||||
@@ -3070,120 +3072,120 @@ msgstr "Clau (repetir)"
|
||||
#: ../../../../inc/themes/classic/account.inc:100
|
||||
#: ../../../../inc/themes/classic/search.inc:112
|
||||
#: ../../../../inc/themes/classic/users.inc:91
|
||||
#: ../../../../inc/themes/material-blue/account.inc:119
|
||||
#: ../../../../inc/themes/material-blue/account.inc:120
|
||||
#: ../../../../inc/themes/material-blue/search.inc:118
|
||||
#: ../../../../inc/themes/material-blue/users.inc:116
|
||||
msgid "Notas"
|
||||
msgstr "Notes"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:102
|
||||
#: ../../../../inc/themes/material-blue/account.inc:124
|
||||
#: ../../../../inc/themes/material-blue/account.inc:125
|
||||
#: ../../../../inc/themes/material-blue/users.inc:123
|
||||
msgid "Notas sobre la cuenta"
|
||||
msgstr "Notes sobre el compte"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:133
|
||||
#: ../../../../inc/themes/material-blue/account.inc:134
|
||||
#: ../../../../inc/themes/material-blue/search.inc:111
|
||||
msgid "Permisos"
|
||||
msgstr "Permisos"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:135
|
||||
#: ../../../../inc/themes/classic/account.inc:166
|
||||
#: ../../../../inc/themes/material-blue/account.inc:162
|
||||
#: ../../../../inc/themes/material-blue/account.inc:194
|
||||
#: ../../../../inc/themes/material-blue/account.inc:163
|
||||
#: ../../../../inc/themes/material-blue/account.inc:195
|
||||
msgid "Hablitar edición"
|
||||
msgstr "Hablitar edició"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
msgid "Soltar archivos aquí (max. 5) o click para seleccionar"
|
||||
msgstr "Deixar anar arxius aquí (max. 5) o clic per seleccionar"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/classic/config.inc:212
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
#: ../../../../inc/themes/material-blue/config.inc:309
|
||||
msgid "Tamaño máximo de archivo"
|
||||
msgstr "Grandària màxima d'arxiu"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:216
|
||||
#: ../../../../inc/themes/material-blue/account.inc:258
|
||||
#: ../../../../inc/themes/material-blue/account.inc:259
|
||||
msgid "Historial"
|
||||
msgstr "Historial"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:235
|
||||
#: ../../../../inc/themes/material-blue/account.inc:278
|
||||
#: ../../../../inc/themes/material-blue/account.inc:279
|
||||
msgid "Seleccionar fecha"
|
||||
msgstr "Seleccionar data"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:244
|
||||
#: ../../../../inc/themes/classic/users.inc:164
|
||||
#: ../../../../inc/themes/material-blue/account.inc:287
|
||||
#: ../../../../inc/themes/material-blue/account.inc:288
|
||||
#: ../../../../inc/themes/material-blue/users.inc:208
|
||||
msgid "Última Modificación"
|
||||
msgstr "Última Modificació"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:290
|
||||
msgid "por"
|
||||
msgstr "per"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:338
|
||||
#: ../../../../inc/themes/material-blue/account.inc:339
|
||||
msgid "Visitas"
|
||||
msgstr "Visites"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:293
|
||||
#: ../../../../inc/themes/material-blue/account.inc:342
|
||||
#: ../../../../inc/themes/material-blue/account.inc:343
|
||||
msgid "Fecha Alta"
|
||||
msgstr "Data Alta"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:297
|
||||
#: ../../../../inc/themes/material-blue/account.inc:346
|
||||
#: ../../../../inc/themes/material-blue/account.inc:347
|
||||
msgid "Creador"
|
||||
msgstr "Creador"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:301
|
||||
#: ../../../../inc/themes/material-blue/account.inc:203
|
||||
#: ../../../../inc/themes/material-blue/account.inc:350
|
||||
#: ../../../../inc/themes/material-blue/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:351
|
||||
msgid "Grupo Principal"
|
||||
msgstr "Grup Principal"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:306
|
||||
#: ../../../../inc/themes/material-blue/account.inc:355
|
||||
#: ../../../../inc/themes/material-blue/account.inc:356
|
||||
msgid "Usuarios Secundarios"
|
||||
msgstr "Usuaris Secundaris"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:325
|
||||
#: ../../../../inc/themes/material-blue/account.inc:374
|
||||
#: ../../../../inc/themes/material-blue/account.inc:375
|
||||
msgid "Grupos Secundarios"
|
||||
msgstr "Grups Secundaris"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:345
|
||||
#: ../../../../inc/themes/material-blue/account.inc:394
|
||||
#: ../../../../inc/themes/material-blue/account.inc:395
|
||||
msgid "Fecha Edición"
|
||||
msgstr "Data Edició"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:349
|
||||
#: ../../../../inc/themes/material-blue/account.inc:398
|
||||
#: ../../../../inc/themes/material-blue/account.inc:399
|
||||
msgid "Editor"
|
||||
msgstr "Editor"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:376
|
||||
#: ../../../../inc/themes/material-blue/account.inc:461
|
||||
#: ../../../../inc/themes/material-blue/account.inc:462
|
||||
msgid "Restaurar cuenta desde este punto"
|
||||
msgstr "Restaurar compte des d'aquest punt"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:388
|
||||
#: ../../../../inc/themes/classic/search.inc:143
|
||||
#: ../../../../inc/themes/material-blue/account.inc:428
|
||||
#: ../../../../inc/themes/material-blue/account.inc:429
|
||||
#: ../../../../inc/themes/material-blue/search.inc:154
|
||||
msgid "Copiar Clave en Portapapeles"
|
||||
msgstr "Copiar Clau en Portapapers"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:403
|
||||
#: ../../../../inc/themes/material-blue/account.inc:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:442
|
||||
msgid "Ver Actual"
|
||||
msgstr "Veure Actual"
|
||||
|
||||
@@ -3197,14 +3199,14 @@ msgstr "Tornar"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:415
|
||||
#: ../../../../inc/themes/classic/search.inc:155
|
||||
#: ../../../../inc/themes/material-blue/account.inc:451
|
||||
#: ../../../../inc/themes/material-blue/account.inc:452
|
||||
#: ../../../../inc/themes/material-blue/search.inc:166
|
||||
msgid "Modificar Cuenta"
|
||||
msgstr "Modificar Compte"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:420
|
||||
#: ../../../../inc/themes/classic/search.inc:176
|
||||
#: ../../../../inc/themes/material-blue/account.inc:455
|
||||
#: ../../../../inc/themes/material-blue/account.inc:456
|
||||
#: ../../../../inc/themes/material-blue/search.inc:187
|
||||
msgid "Solicitar Modificación"
|
||||
msgstr "Sol·licitar Modificació"
|
||||
@@ -3226,7 +3228,7 @@ msgstr "Sol·licitar Modificació"
|
||||
#: ../../../../inc/themes/classic/users.inc:189
|
||||
#: ../../../../inc/themes/classic/userspass.inc:35
|
||||
#: ../../../../inc/themes/classic/wiki.inc:110
|
||||
#: ../../../../inc/themes/material-blue/account.inc:467
|
||||
#: ../../../../inc/themes/material-blue/account.inc:468
|
||||
#: ../../../../inc/themes/material-blue/categories.inc:72
|
||||
#: ../../../../inc/themes/material-blue/config.inc:425
|
||||
#: ../../../../inc/themes/material-blue/customers.inc:73
|
||||
@@ -3246,12 +3248,12 @@ msgid "Guardar"
|
||||
msgstr "Desar"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:437
|
||||
#: ../../../../inc/themes/material-blue/account.inc:477
|
||||
#: ../../../../inc/themes/material-blue/account.inc:478
|
||||
msgid "Seleccionar grupos secundarios"
|
||||
msgstr "Seleccionar grups secundaris"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:480
|
||||
#: ../../../../inc/themes/material-blue/account.inc:481
|
||||
msgid "Seleccionar usuarios"
|
||||
msgstr "Seleccionar usuaris"
|
||||
|
||||
@@ -4108,7 +4110,6 @@ msgstr "Memòria Utilitzada"
|
||||
#: ../../../../inc/themes/material-blue/info.inc:44
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:35
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:58
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:24
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:30
|
||||
msgid "Servidor"
|
||||
@@ -4584,7 +4585,7 @@ msgid "Descripción de la petición"
|
||||
msgstr "Descripció de la petició"
|
||||
|
||||
#: ../../../../inc/themes/classic/request.inc:33
|
||||
#: ../../../../inc/themes/material-blue/account.inc:445
|
||||
#: ../../../../inc/themes/material-blue/account.inc:446
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:55
|
||||
#: ../../../../inc/themes/material-blue/mgmttabs.inc:13
|
||||
#: ../../../../inc/themes/material-blue/request.inc:42
|
||||
@@ -4921,11 +4922,15 @@ msgstr "Eliminar filtre"
|
||||
msgid "Histórico"
|
||||
msgstr "Històric"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:42
|
||||
#: ../../../../inc/themes/material-blue/account.inc:34
|
||||
msgid "> Usar texto y crear nuevo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:43
|
||||
msgid "Seleccionar o escribir para crear uno nuevo"
|
||||
msgstr "Seleccionar o escriure per crear un de nou"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:113
|
||||
#: ../../../../inc/themes/material-blue/account.inc:114
|
||||
msgid "Clave (Repetir)"
|
||||
msgstr "Clau (Repetir)"
|
||||
|
||||
|
||||
Binary file not shown.
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sysPass\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-15 15:10+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 15:10+0100\n"
|
||||
"POT-Creation-Date: 2015-10-25 23:35+0100\n"
|
||||
"PO-Revision-Date: 2015-10-25 23:45+0100\n"
|
||||
"Last-Translator: nuxsmin <nuxsmin@syspass.org>\n"
|
||||
"Language-Team: <language@syspass.org>\n"
|
||||
"Language: de_DE\n"
|
||||
@@ -30,7 +30,7 @@ msgstr "Ungültige Anfrage"
|
||||
|
||||
#: ../../../../ajax/ajax_2fa.php:48
|
||||
msgid "Código correcto"
|
||||
msgstr ""
|
||||
msgstr "Code bestätigt"
|
||||
|
||||
#: ../../../../ajax/ajax_2fa.php:51 ../../../../ajax/ajax_userPrefsSave.php:99
|
||||
msgid "Código incorrecto"
|
||||
@@ -66,22 +66,22 @@ msgstr "Benutzername ist notwendig"
|
||||
#: ../../../../ajax/ajax_accountSave.php:84
|
||||
#: ../../../../ajax/ajax_accountSave.php:106
|
||||
msgid "Es necesaria una clave"
|
||||
msgstr "Ein Schlüssel wird benötigt"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_accountSave.php:86
|
||||
#: ../../../../ajax/ajax_accountSave.php:97
|
||||
msgid "Es necesario una categoría"
|
||||
msgstr "Eine Kategorie wird benötigt"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_accountSave.php:101
|
||||
#: ../../../../ajax/ajax_accountSave.php:110
|
||||
msgid "Id inválido"
|
||||
msgstr "Ungültige ID"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_accountSave.php:113
|
||||
#: ../../../../ajax/ajax_accountSave.php:263
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:535
|
||||
#: ../../../../ajax/ajax_configSave.php:324
|
||||
#: ../../../../ajax/ajax_configSave.php:334
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:113 ../../../../api.php:53
|
||||
msgid "Acción Inválida"
|
||||
msgstr "Ungültige Aktion"
|
||||
@@ -91,7 +91,7 @@ msgstr "Ungültige Aktion"
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:149
|
||||
#: ../../../../ajax/ajax_backup.php:68
|
||||
msgid "Las claves no coinciden"
|
||||
msgstr "Passwörter stimmen nicht"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_accountSave.php:173
|
||||
msgid "Cuenta creada"
|
||||
@@ -212,7 +212,7 @@ msgstr "Kategorie ändern"
|
||||
#: ../../../../inc/Category.class.php:83
|
||||
#: ../../../../web/AccountsMgmtC.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:53
|
||||
#: ../../../../inc/themes/material-blue/account.inc:61
|
||||
#: ../../../../inc/themes/material-blue/account.inc:62
|
||||
msgid "Nueva Categoría"
|
||||
msgstr "Neue Kategorie"
|
||||
|
||||
@@ -265,7 +265,7 @@ msgstr "E-Mail ist notwendig"
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:145
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:160
|
||||
#: ../../../../ajax/ajax_backup.php:54
|
||||
#: ../../../../ajax/ajax_configSave.php:297
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:88
|
||||
msgid "Ey, esto es una DEMO!!"
|
||||
@@ -328,7 +328,7 @@ msgstr "Duplizierter Gruppenname"
|
||||
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:204
|
||||
msgid "Grupo creado"
|
||||
msgstr "Gruppe hinzugefügt"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:206
|
||||
msgid "Error al crear el grupo"
|
||||
@@ -348,7 +348,7 @@ msgstr "Fehler beim Ändern der Gruppe"
|
||||
#: ../../../../inc/themes/classic/account.inc:112
|
||||
#: ../../../../inc/themes/classic/groups.inc:24
|
||||
#: ../../../../inc/themes/classic/profiles.inc:85
|
||||
#: ../../../../inc/themes/material-blue/account.inc:137
|
||||
#: ../../../../inc/themes/material-blue/account.inc:138
|
||||
#: ../../../../inc/themes/material-blue/groups.inc:32
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:99
|
||||
msgid "Usuarios"
|
||||
@@ -500,7 +500,7 @@ msgstr "Fehler beim Ausführen des Backups"
|
||||
#: ../../../../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 ""
|
||||
msgstr "Mehr Details in den Log Dateien"
|
||||
|
||||
#: ../../../../ajax/ajax_backup.php:63
|
||||
msgid "Copia de la aplicación y base de datos realizada correctamente"
|
||||
@@ -508,11 +508,11 @@ msgstr "Sicherung der Applikation und der Datenbank erfolgreich durchgeführt"
|
||||
|
||||
#: ../../../../ajax/ajax_backup.php:65
|
||||
msgid "Proceso de backup finalizado"
|
||||
msgstr "Backup beendet"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_backup.php:72 ../../../../ajax/ajax_backup.php:77
|
||||
msgid "Realizar Exportación"
|
||||
msgstr "Export ausführen"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_backup.php:72
|
||||
msgid "Error al realizar la exportación de cuentas"
|
||||
@@ -550,156 +550,160 @@ msgstr "Objekte gefunden"
|
||||
msgid "Modificar Configuración"
|
||||
msgstr "Konfiguration ändern"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:105
|
||||
#: ../../../../ajax/ajax_configSave.php:101
|
||||
msgid "El tamaño máximo por archivo es de 16MB"
|
||||
msgstr "Die maximale Dateigröße ist 16MB"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:118
|
||||
#: ../../../../ajax/ajax_configSave.php:109 ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr "Erweiterung nicht erlaubt"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:128
|
||||
msgid "Faltan parámetros de Proxy"
|
||||
msgstr "Proxy Parameter fehlt"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:126
|
||||
#: ../../../../ajax/ajax_configSave.php:136
|
||||
msgid "Proxy habiltado"
|
||||
msgstr "Proxy aktiviert"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:130
|
||||
#: ../../../../ajax/ajax_configSave.php:140
|
||||
msgid "Proxy deshabilitado"
|
||||
msgstr "Proxy deaktiviert"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:133
|
||||
#: ../../../../ajax/ajax_configSave.php:157
|
||||
#: ../../../../ajax/ajax_configSave.php:191
|
||||
#: ../../../../ajax/ajax_configSave.php:230
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
msgid "Sección"
|
||||
msgstr "Sektion"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:133
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../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:143
|
||||
#: ../../../../ajax/ajax_configSave.php:153
|
||||
msgid "Faltan parámetros de Wiki"
|
||||
msgstr "Fehlender Wiki-Parameter"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:150
|
||||
#: ../../../../ajax/ajax_configSave.php:160
|
||||
msgid "Wiki habiltada"
|
||||
msgstr "Wiki aktiviert"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:154
|
||||
#: ../../../../ajax/ajax_configSave.php:164
|
||||
msgid "Wiki deshabilitada"
|
||||
msgstr "Wiki deaktiviert"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:157
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../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:172
|
||||
#: ../../../../ajax/ajax_configSave.php:182
|
||||
msgid "Faltan parámetros de LDAP"
|
||||
msgstr "Fehlender LDAP-Parameter"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:184
|
||||
#: ../../../../ajax/ajax_configSave.php:194
|
||||
msgid "LDAP habiltado"
|
||||
msgstr "LDAP aktiviert"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:188
|
||||
#: ../../../../ajax/ajax_configSave.php:198
|
||||
msgid "LDAP deshabilitado"
|
||||
msgstr "LDAP deaktiviert"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:191
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../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:206
|
||||
#: ../../../../ajax/ajax_configSave.php:216
|
||||
msgid "Faltan parámetros de Correo"
|
||||
msgstr ""
|
||||
msgstr "Fehlende Mail Parameter"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:221
|
||||
#: ../../../../ajax/ajax_configSave.php:231
|
||||
msgid "Correo habiltado"
|
||||
msgstr "Mail aktiviert"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:227
|
||||
#: ../../../../ajax/ajax_configSave.php:237
|
||||
msgid "Correo deshabilitado"
|
||||
msgstr "Mail deaktiviert"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:230
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
#: ../../../../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:252
|
||||
#: ../../../../ajax/ajax_configSave.php:262
|
||||
msgid "Configuración actualizada"
|
||||
msgstr "Konfiguration aktualisiert"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:261
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_viewpass.php:61
|
||||
#: ../../../../inc/Controller.class.php:169
|
||||
msgid "Clave maestra actualizada"
|
||||
msgstr "Master-Passwort aktualisiert"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:261
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../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:263
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
msgid "Clave maestra no indicada"
|
||||
msgstr "Master-Passwort notwendig"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:265
|
||||
#: ../../../../ajax/ajax_configSave.php:275
|
||||
msgid "Se ha de confirmar el cambio de clave"
|
||||
msgstr "Passwort muss bestätigt werden"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:269
|
||||
#: ../../../../ajax/ajax_configSave.php:279
|
||||
msgid "Las claves son idénticas"
|
||||
msgstr "Passwörter sind identisch"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:281
|
||||
msgid "Las claves maestras no coinciden"
|
||||
msgstr "Master-Passwort stimmt nicht"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
#: ../../../../ajax/ajax_configSave.php:283
|
||||
msgid "La clave maestra actual no coincide"
|
||||
msgstr "Aktuelles Master-Passwort stimmt nicht"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:282
|
||||
#: ../../../../ajax/ajax_configSave.php:292
|
||||
msgid "Errores al actualizar las claves de las cuentas"
|
||||
msgstr "Fehler beim Ändern der Passwörter eines Kontos"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:288
|
||||
#: ../../../../ajax/ajax_configSave.php:298
|
||||
msgid "Errores al actualizar las claves de las cuentas del histórico"
|
||||
msgstr "Fehler beim Aktualisieren des Kontopasswörter in der History"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:292
|
||||
#: ../../../../ajax/ajax_configSave.php:302
|
||||
msgid "Errores al actualizar datos de campos personalizados"
|
||||
msgstr "Fehler beim aktualisieren der Benutzerfelder"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:305
|
||||
#: ../../../../ajax/ajax_configSave.php:315
|
||||
#: ../../../../inc/Account.class.php:512
|
||||
msgid "Actualizar Clave Maestra"
|
||||
msgstr "Master-Passwort ändern"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:309
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
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:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
msgid "Generar Clave Temporal"
|
||||
msgstr "temporäres Passwort erstellen"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:86
|
||||
#: ../../../../inc/themes/classic/editpass.inc:25
|
||||
@@ -714,8 +718,8 @@ msgstr "temporäres Passwort erstellen"
|
||||
#: ../../../../inc/themes/classic/users.inc:75
|
||||
#: ../../../../inc/themes/classic/userspass.inc:8
|
||||
#: ../../../../inc/themes/classic/userspass.inc:11
|
||||
#: ../../../../inc/themes/material-blue/account.inc:98
|
||||
#: ../../../../inc/themes/material-blue/account.inc:103
|
||||
#: ../../../../inc/themes/material-blue/account.inc:99
|
||||
#: ../../../../inc/themes/material-blue/account.inc:104
|
||||
#: ../../../../inc/themes/material-blue/config.inc:395
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:26
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:31
|
||||
@@ -735,11 +739,11 @@ msgstr "temporäres Passwort erstellen"
|
||||
msgid "Clave"
|
||||
msgstr "Passwort"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
#: ../../../../ajax/ajax_configSave.php:329
|
||||
msgid "Clave Temporal Generada"
|
||||
msgstr "temporäres Passwort erstellt"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:321
|
||||
#: ../../../../ajax/ajax_configSave.php:331
|
||||
msgid "Error al generar clave temporal"
|
||||
msgstr "Fehler beim erstellen eines temporären Passwortes"
|
||||
|
||||
@@ -805,11 +809,12 @@ msgstr "Fehlerhafte Anmeldung"
|
||||
#: ../../../../inc/themes/classic/request.inc:17
|
||||
#: ../../../../inc/themes/classic/search.inc:89
|
||||
#: ../../../../inc/themes/classic/tokens.inc:8
|
||||
#: ../../../../inc/themes/material-blue/account.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:84
|
||||
#: ../../../../inc/themes/material-blue/config.inc:381
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:22
|
||||
#: ../../../../inc/themes/material-blue/eventlog.inc:23
|
||||
#: ../../../../inc/themes/material-blue/info.inc:39
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/login.inc:11
|
||||
#: ../../../../inc/themes/material-blue/login.inc:34
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:61
|
||||
@@ -1112,7 +1117,7 @@ msgstr "Sie haben keine Erlaubnis auf dieses Konto zuzugreifen"
|
||||
#: ../../../../inc/themes/classic/account.inc:382
|
||||
#: ../../../../inc/themes/classic/profiles.inc:23
|
||||
#: ../../../../inc/themes/classic/search.inc:139
|
||||
#: ../../../../inc/themes/material-blue/account.inc:424
|
||||
#: ../../../../inc/themes/material-blue/account.inc:425
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:35
|
||||
#: ../../../../inc/themes/material-blue/search.inc:149
|
||||
msgid "Ver Clave"
|
||||
@@ -1226,7 +1231,7 @@ msgstr "Fehler: Operation fehlgeschlagen"
|
||||
#: ../../../../web/AccountC.class.php:358
|
||||
#: ../../../../inc/themes/classic/account.inc:369
|
||||
#: ../../../../inc/themes/classic/search.inc:167
|
||||
#: ../../../../inc/themes/material-blue/account.inc:418
|
||||
#: ../../../../inc/themes/material-blue/account.inc:419
|
||||
#: ../../../../inc/themes/material-blue/search.inc:178
|
||||
msgid "Eliminar Cuenta"
|
||||
msgstr "Konto löschen"
|
||||
@@ -1291,7 +1296,7 @@ msgstr "Ende"
|
||||
|
||||
#: ../../../../inc/Account.class.php:682
|
||||
msgid "Modificar Clave"
|
||||
msgstr ""
|
||||
msgstr "Password erneuern"
|
||||
|
||||
#: ../../../../inc/Account.class.php:717
|
||||
msgid "No se pudieron obtener los datos de las cuentas"
|
||||
@@ -1344,12 +1349,12 @@ msgstr "Benutzerpasswort ändern"
|
||||
#: ../../../../inc/themes/classic/profiles.inc:28
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:40
|
||||
msgid "Ver Historial"
|
||||
msgstr ""
|
||||
msgstr "Verlauf anzeigen"
|
||||
|
||||
#: ../../../../inc/Acl.class.php:135
|
||||
#: ../../../../inc/themes/classic/account.inc:191
|
||||
#: ../../../../inc/themes/classic/profiles.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:233
|
||||
#: ../../../../inc/themes/material-blue/account.inc:234
|
||||
#: ../../../../inc/themes/material-blue/config.inc:261
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:60
|
||||
msgid "Archivos"
|
||||
@@ -1529,7 +1534,7 @@ msgstr "Fehler beim Anlegen der Kategorie"
|
||||
#: ../../../../web/SearchC.class.php:299
|
||||
#: ../../../../inc/themes/classic/account.inc:42
|
||||
#: ../../../../inc/themes/classic/search.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:51
|
||||
#: ../../../../inc/themes/material-blue/search.inc:85
|
||||
msgid "Categoría"
|
||||
msgstr "Kategorie"
|
||||
@@ -1718,7 +1723,7 @@ msgstr "Kunden"
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:110
|
||||
#: ../../../../inc/themes/classic/account.inc:143
|
||||
#: ../../../../inc/themes/classic/profiles.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:169
|
||||
#: ../../../../inc/themes/material-blue/account.inc:170
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:104
|
||||
msgid "Grupos"
|
||||
msgstr "Gruppen"
|
||||
@@ -2013,11 +2018,11 @@ msgstr "Server auf dem die Datenbank installiert wird"
|
||||
|
||||
#: ../../../../inc/Installer.class.php:267
|
||||
msgid "No es posible comprobar el usuario de sysPass"
|
||||
msgstr ""
|
||||
msgstr "Überprüfung des sysPass Nutzers nicht möglich"
|
||||
|
||||
#: ../../../../inc/Installer.class.php:268
|
||||
msgid "Compruebe los permisos del usuario de conexión a la BD"
|
||||
msgstr ""
|
||||
msgstr "Bitte Datenbankverbindung überprüfen"
|
||||
|
||||
#: ../../../../inc/Installer.class.php:319
|
||||
msgid "El usuario de MySQL ya existe"
|
||||
@@ -2143,7 +2148,7 @@ msgstr "Protokol löschen"
|
||||
#: ../../../../inc/themes/classic/eventlog.inc:98
|
||||
#: ../../../../inc/themes/material-blue/eventlog.inc:99
|
||||
msgid "Vaciar registro de eventos"
|
||||
msgstr ""
|
||||
msgstr "Ereignisprotokoll leeren"
|
||||
|
||||
#: ../../../../inc/Migrate.class.php:51
|
||||
msgid "Faltan parámetros"
|
||||
@@ -2401,6 +2406,13 @@ msgstr "Benutzer ändern"
|
||||
msgid "Eliminar Usuario"
|
||||
msgstr "Benutzer löschen"
|
||||
|
||||
#: ../../../../inc/UserLdap.class.php:68
|
||||
#: ../../../../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"
|
||||
|
||||
#: ../../../../inc/UserLdap.class.php:78
|
||||
msgid "Activación Cuenta"
|
||||
msgstr "Kontoaktivierung"
|
||||
@@ -2551,10 +2563,6 @@ msgstr "Zu viele Dateien"
|
||||
msgid "No es posible guardar el archivo \"%s\" Tamaño máximo:"
|
||||
msgstr "Unmöglich die Datei \"%s\" zu speichern. Maximal erlaubte Größe:"
|
||||
|
||||
#: ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr "Erweiterung nicht erlaubt"
|
||||
|
||||
#: ../../../../js/strings.js.php:47
|
||||
msgid "Vaciar el registro de eventos?"
|
||||
msgstr "Klar Ereignisprotokoll?"
|
||||
@@ -2640,11 +2648,29 @@ msgstr "Aktion auswählen"
|
||||
#: ../../../../inc/themes/classic/account.inc:136
|
||||
#: ../../../../inc/themes/classic/account.inc:167
|
||||
#: ../../../../inc/themes/classic/account.inc:451
|
||||
#: ../../../../inc/themes/classic/config.inc:70
|
||||
#: ../../../../inc/themes/classic/config.inc:86
|
||||
#: ../../../../inc/themes/classic/config.inc:102
|
||||
#: ../../../../inc/themes/classic/config.inc:118
|
||||
#: ../../../../inc/themes/classic/config.inc:134
|
||||
#: ../../../../inc/themes/classic/config.inc:150
|
||||
#: ../../../../inc/themes/classic/config.inc:166
|
||||
#: ../../../../inc/themes/classic/config.inc:182
|
||||
#: ../../../../inc/themes/classic/config.inc:255
|
||||
#: ../../../../inc/themes/classic/config.inc:274
|
||||
#: ../../../../inc/themes/classic/customfields.inc:46
|
||||
#: ../../../../inc/themes/classic/install.inc:99
|
||||
#: ../../../../inc/themes/classic/ldap.inc:25
|
||||
#: ../../../../inc/themes/classic/ldap.inc:195
|
||||
#: ../../../../inc/themes/classic/mail.inc:14
|
||||
#: ../../../../inc/themes/classic/mail.inc:40
|
||||
#: ../../../../inc/themes/classic/mail.inc:88
|
||||
#: ../../../../inc/themes/classic/preferences.inc:48
|
||||
#: ../../../../inc/themes/classic/preferences.inc:82
|
||||
#: ../../../../inc/themes/classic/preferences.inc:99
|
||||
#: ../../../../inc/themes/classic/preferences.inc:116
|
||||
#: ../../../../inc/themes/classic/security.inc:26
|
||||
#: ../../../../inc/themes/classic/wiki.inc:20
|
||||
msgid "SI"
|
||||
msgstr "Ja"
|
||||
|
||||
@@ -2652,15 +2678,33 @@ msgstr "Ja"
|
||||
#: ../../../../inc/themes/classic/account.inc:136
|
||||
#: ../../../../inc/themes/classic/account.inc:167
|
||||
#: ../../../../inc/themes/classic/account.inc:449
|
||||
#: ../../../../inc/themes/classic/config.inc:70
|
||||
#: ../../../../inc/themes/classic/config.inc:86
|
||||
#: ../../../../inc/themes/classic/config.inc:102
|
||||
#: ../../../../inc/themes/classic/config.inc:118
|
||||
#: ../../../../inc/themes/classic/config.inc:134
|
||||
#: ../../../../inc/themes/classic/config.inc:150
|
||||
#: ../../../../inc/themes/classic/config.inc:166
|
||||
#: ../../../../inc/themes/classic/config.inc:182
|
||||
#: ../../../../inc/themes/classic/config.inc:255
|
||||
#: ../../../../inc/themes/classic/config.inc:274
|
||||
#: ../../../../inc/themes/classic/customfields.inc:46
|
||||
#: ../../../../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/ldap.inc:25
|
||||
#: ../../../../inc/themes/classic/ldap.inc:195
|
||||
#: ../../../../inc/themes/classic/mail.inc:14
|
||||
#: ../../../../inc/themes/classic/mail.inc:40
|
||||
#: ../../../../inc/themes/classic/mail.inc:88
|
||||
#: ../../../../inc/themes/classic/preferences.inc:48
|
||||
#: ../../../../inc/themes/classic/preferences.inc:82
|
||||
#: ../../../../inc/themes/classic/preferences.inc:99
|
||||
#: ../../../../inc/themes/classic/preferences.inc:116
|
||||
#: ../../../../inc/themes/classic/security.inc:26
|
||||
#: ../../../../inc/themes/classic/tokens.inc:36
|
||||
#: ../../../../inc/themes/classic/wiki.inc:20
|
||||
msgid "NO"
|
||||
msgstr "Nein"
|
||||
|
||||
@@ -2691,7 +2735,7 @@ msgstr "Kontodetails"
|
||||
|
||||
#: ../../../../web/AccountC.class.php:474
|
||||
#: ../../../../inc/themes/classic/account.inc:396
|
||||
#: ../../../../inc/themes/material-blue/account.inc:435
|
||||
#: ../../../../inc/themes/material-blue/account.inc:436
|
||||
msgid "Modificar Clave de Cuenta"
|
||||
msgstr "Konto-Passwort ändern"
|
||||
|
||||
@@ -2918,7 +2962,7 @@ msgstr "Nach URL/IP sortieren"
|
||||
#: ../../../../inc/themes/classic/editpass.inc:16
|
||||
#: ../../../../inc/themes/classic/request.inc:13
|
||||
#: ../../../../inc/themes/classic/search.inc:96
|
||||
#: ../../../../inc/themes/material-blue/account.inc:69
|
||||
#: ../../../../inc/themes/material-blue/account.inc:70
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:17
|
||||
#: ../../../../inc/themes/material-blue/request.inc:15
|
||||
#: ../../../../inc/themes/material-blue/search.inc:98
|
||||
@@ -2933,12 +2977,6 @@ msgstr "Eigenschaften"
|
||||
msgid "Admin Cuentas"
|
||||
msgstr "Konto-Administrator"
|
||||
|
||||
#: ../../../../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:113
|
||||
#: ../../../../inc/themes/classic/users.inc:113
|
||||
#: ../../../../inc/themes/material-blue/users.inc:151
|
||||
@@ -3016,12 +3054,12 @@ msgid "Buscar en desplegable o introducir"
|
||||
msgstr "Weitersuchen"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:64
|
||||
#: ../../../../inc/themes/material-blue/account.inc:75
|
||||
#: ../../../../inc/themes/material-blue/account.inc:76
|
||||
msgid "URL o IP de acceso"
|
||||
msgstr "Auf URL/IP zugreifen"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:76
|
||||
#: ../../../../inc/themes/material-blue/account.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:90
|
||||
msgid "Usuario de acceso"
|
||||
msgstr "Benutzer für Zugriff"
|
||||
|
||||
@@ -3031,7 +3069,7 @@ msgstr "Benutzer für Zugriff"
|
||||
#: ../../../../inc/themes/classic/users.inc:83
|
||||
#: ../../../../inc/themes/classic/userspass.inc:19
|
||||
#: ../../../../inc/themes/classic/userspass.inc:21
|
||||
#: ../../../../inc/themes/material-blue/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:109
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:36
|
||||
#: ../../../../inc/themes/material-blue/install.inc:67
|
||||
#: ../../../../inc/themes/material-blue/passreset.inc:36
|
||||
@@ -3045,120 +3083,120 @@ msgstr "Passwort (Wiederholung)"
|
||||
#: ../../../../inc/themes/classic/account.inc:100
|
||||
#: ../../../../inc/themes/classic/search.inc:112
|
||||
#: ../../../../inc/themes/classic/users.inc:91
|
||||
#: ../../../../inc/themes/material-blue/account.inc:119
|
||||
#: ../../../../inc/themes/material-blue/account.inc:120
|
||||
#: ../../../../inc/themes/material-blue/search.inc:118
|
||||
#: ../../../../inc/themes/material-blue/users.inc:116
|
||||
msgid "Notas"
|
||||
msgstr "Bemerkungen"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:102
|
||||
#: ../../../../inc/themes/material-blue/account.inc:124
|
||||
#: ../../../../inc/themes/material-blue/account.inc:125
|
||||
#: ../../../../inc/themes/material-blue/users.inc:123
|
||||
msgid "Notas sobre la cuenta"
|
||||
msgstr "Bemerkungen zum Konto"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:133
|
||||
#: ../../../../inc/themes/material-blue/account.inc:134
|
||||
#: ../../../../inc/themes/material-blue/search.inc:111
|
||||
msgid "Permisos"
|
||||
msgstr "Berechtigungen"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:135
|
||||
#: ../../../../inc/themes/classic/account.inc:166
|
||||
#: ../../../../inc/themes/material-blue/account.inc:162
|
||||
#: ../../../../inc/themes/material-blue/account.inc:194
|
||||
#: ../../../../inc/themes/material-blue/account.inc:163
|
||||
#: ../../../../inc/themes/material-blue/account.inc:195
|
||||
msgid "Hablitar edición"
|
||||
msgstr "Erlaube Änderungen"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
msgid "Soltar archivos aquí (max. 5) o click para seleccionar"
|
||||
msgstr "Dateien hier fallen lassen (max. 5) oder zum selektieren anklicken"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/classic/config.inc:212
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
#: ../../../../inc/themes/material-blue/config.inc:309
|
||||
msgid "Tamaño máximo de archivo"
|
||||
msgstr "Maximale Dateigröße"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:216
|
||||
#: ../../../../inc/themes/material-blue/account.inc:258
|
||||
#: ../../../../inc/themes/material-blue/account.inc:259
|
||||
msgid "Historial"
|
||||
msgstr "Protokol"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:235
|
||||
#: ../../../../inc/themes/material-blue/account.inc:278
|
||||
#: ../../../../inc/themes/material-blue/account.inc:279
|
||||
msgid "Seleccionar fecha"
|
||||
msgstr "Datum auswählen"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:244
|
||||
#: ../../../../inc/themes/classic/users.inc:164
|
||||
#: ../../../../inc/themes/material-blue/account.inc:287
|
||||
#: ../../../../inc/themes/material-blue/account.inc:288
|
||||
#: ../../../../inc/themes/material-blue/users.inc:208
|
||||
msgid "Última Modificación"
|
||||
msgstr "Letzte Änderung"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:290
|
||||
msgid "por"
|
||||
msgstr "durch"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:338
|
||||
#: ../../../../inc/themes/material-blue/account.inc:339
|
||||
msgid "Visitas"
|
||||
msgstr "Besuche"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:293
|
||||
#: ../../../../inc/themes/material-blue/account.inc:342
|
||||
#: ../../../../inc/themes/material-blue/account.inc:343
|
||||
msgid "Fecha Alta"
|
||||
msgstr "Datum hinzugefügt"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:297
|
||||
#: ../../../../inc/themes/material-blue/account.inc:346
|
||||
#: ../../../../inc/themes/material-blue/account.inc:347
|
||||
msgid "Creador"
|
||||
msgstr "Erzeuger"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:301
|
||||
#: ../../../../inc/themes/material-blue/account.inc:203
|
||||
#: ../../../../inc/themes/material-blue/account.inc:350
|
||||
#: ../../../../inc/themes/material-blue/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:351
|
||||
msgid "Grupo Principal"
|
||||
msgstr "Hauptgruppe"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:306
|
||||
#: ../../../../inc/themes/material-blue/account.inc:355
|
||||
#: ../../../../inc/themes/material-blue/account.inc:356
|
||||
msgid "Usuarios Secundarios"
|
||||
msgstr "Unter-Benutzer"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:325
|
||||
#: ../../../../inc/themes/material-blue/account.inc:374
|
||||
#: ../../../../inc/themes/material-blue/account.inc:375
|
||||
msgid "Grupos Secundarios"
|
||||
msgstr "Untergruppe"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:345
|
||||
#: ../../../../inc/themes/material-blue/account.inc:394
|
||||
#: ../../../../inc/themes/material-blue/account.inc:395
|
||||
msgid "Fecha Edición"
|
||||
msgstr "Änderungsdatum"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:349
|
||||
#: ../../../../inc/themes/material-blue/account.inc:398
|
||||
#: ../../../../inc/themes/material-blue/account.inc:399
|
||||
msgid "Editor"
|
||||
msgstr "Editor"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:376
|
||||
#: ../../../../inc/themes/material-blue/account.inc:461
|
||||
#: ../../../../inc/themes/material-blue/account.inc:462
|
||||
msgid "Restaurar cuenta desde este punto"
|
||||
msgstr "Wiederherstellen Konto von diesem Punkt"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:388
|
||||
#: ../../../../inc/themes/classic/search.inc:143
|
||||
#: ../../../../inc/themes/material-blue/account.inc:428
|
||||
#: ../../../../inc/themes/material-blue/account.inc:429
|
||||
#: ../../../../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:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:442
|
||||
msgid "Ver Actual"
|
||||
msgstr "Ansehen"
|
||||
|
||||
@@ -3172,14 +3210,14 @@ msgstr "Zurück"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:415
|
||||
#: ../../../../inc/themes/classic/search.inc:155
|
||||
#: ../../../../inc/themes/material-blue/account.inc:451
|
||||
#: ../../../../inc/themes/material-blue/account.inc:452
|
||||
#: ../../../../inc/themes/material-blue/search.inc:166
|
||||
msgid "Modificar Cuenta"
|
||||
msgstr "Konto ändern"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:420
|
||||
#: ../../../../inc/themes/classic/search.inc:176
|
||||
#: ../../../../inc/themes/material-blue/account.inc:455
|
||||
#: ../../../../inc/themes/material-blue/account.inc:456
|
||||
#: ../../../../inc/themes/material-blue/search.inc:187
|
||||
msgid "Solicitar Modificación"
|
||||
msgstr "Änderung initiiert"
|
||||
@@ -3201,7 +3239,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:467
|
||||
#: ../../../../inc/themes/material-blue/account.inc:468
|
||||
#: ../../../../inc/themes/material-blue/categories.inc:72
|
||||
#: ../../../../inc/themes/material-blue/config.inc:425
|
||||
#: ../../../../inc/themes/material-blue/customers.inc:73
|
||||
@@ -3221,12 +3259,12 @@ msgid "Guardar"
|
||||
msgstr "Speichern"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:437
|
||||
#: ../../../../inc/themes/material-blue/account.inc:477
|
||||
#: ../../../../inc/themes/material-blue/account.inc:478
|
||||
msgid "Seleccionar grupos secundarios"
|
||||
msgstr "Untergruppe auswählen"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:480
|
||||
#: ../../../../inc/themes/material-blue/account.inc:481
|
||||
msgid "Seleccionar usuarios"
|
||||
msgstr "Benutzer auswählen"
|
||||
|
||||
@@ -3290,7 +3328,7 @@ msgstr "Es existieren keine Backups zum Herunterladen"
|
||||
#: ../../../../inc/themes/material-blue/import.inc:100
|
||||
#: ../../../../inc/themes/material-blue/js-common.inc:11
|
||||
msgid "Ayuda"
|
||||
msgstr "Hilfe"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/backup.inc:50
|
||||
#: ../../../../inc/themes/material-blue/backup.inc:52
|
||||
@@ -3541,12 +3579,12 @@ msgstr "Erlaubte Dateiendungen"
|
||||
#: ../../../../inc/themes/classic/config.inc:193
|
||||
#: ../../../../inc/themes/material-blue/config.inc:290
|
||||
msgid "Extensiones permitidas para la subida de archivos."
|
||||
msgstr ""
|
||||
msgstr "Erlaubte Dateierweiterungen für Dateiupload."
|
||||
|
||||
#: ../../../../inc/themes/classic/config.inc:197
|
||||
#: ../../../../inc/themes/material-blue/config.inc:294
|
||||
msgid "Se permite un máximo de 4 caracteres."
|
||||
msgstr ""
|
||||
msgstr "Maximal 4 Zeichen erlaubt."
|
||||
|
||||
#: ../../../../inc/themes/classic/config.inc:201
|
||||
#: ../../../../inc/themes/material-blue/config.inc:298
|
||||
@@ -3625,12 +3663,12 @@ msgstr "Beschreibung des Kunden"
|
||||
#: ../../../../inc/themes/classic/customfields.inc:38
|
||||
#: ../../../../inc/themes/material-blue/customfields.inc:41
|
||||
msgid "Texto Ayuda"
|
||||
msgstr ""
|
||||
msgstr "Hilfetext"
|
||||
|
||||
#: ../../../../inc/themes/classic/customfields.inc:44
|
||||
#: ../../../../inc/themes/material-blue/customfields.inc:52
|
||||
msgid "Obligatorio"
|
||||
msgstr ""
|
||||
msgstr "Benötigt"
|
||||
|
||||
#: ../../../../inc/themes/classic/encryption.inc:5
|
||||
#: ../../../../inc/themes/classic/install.inc:46
|
||||
@@ -3726,19 +3764,19 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/encryption.inc:105
|
||||
#: ../../../../inc/themes/material-blue/encryption.inc:121
|
||||
msgid "Clave Temporal"
|
||||
msgstr ""
|
||||
msgstr "Temporäres Passwort"
|
||||
|
||||
#: ../../../../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 ""
|
||||
msgstr "Nicht generiert"
|
||||
|
||||
#: ../../../../inc/themes/classic/encryption.inc:121
|
||||
#: ../../../../inc/themes/material-blue/encryption.inc:136
|
||||
msgid "Válido hasta"
|
||||
msgstr ""
|
||||
msgstr "Gültig bis"
|
||||
|
||||
#: ../../../../inc/themes/classic/encryption.inc:133
|
||||
#: ../../../../inc/themes/material-blue/encryption.inc:148
|
||||
@@ -3761,7 +3799,7 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/encryption.inc:166
|
||||
#: ../../../../inc/themes/material-blue/encryption.inc:187
|
||||
msgid "Generar"
|
||||
msgstr ""
|
||||
msgstr "Generieren"
|
||||
|
||||
#: ../../../../inc/themes/classic/eventlog.inc:6
|
||||
#: ../../../../inc/themes/classic/search.inc:3
|
||||
@@ -3963,7 +4001,7 @@ msgstr ""
|
||||
#: ../../../../inc/themes/material-blue/import.inc:55
|
||||
#: ../../../../inc/themes/material-blue/import.inc:61
|
||||
msgid "Clave de Importación"
|
||||
msgstr ""
|
||||
msgstr "Passwort importieren"
|
||||
|
||||
#: ../../../../inc/themes/classic/import.inc:143
|
||||
#: ../../../../inc/themes/material-blue/import.inc:67
|
||||
@@ -4057,7 +4095,6 @@ msgstr "Benutzer Speicher"
|
||||
#: ../../../../inc/themes/material-blue/info.inc:44
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:35
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:58
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:24
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:30
|
||||
msgid "Servidor"
|
||||
@@ -4130,7 +4167,7 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/ldap.inc:36
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:39
|
||||
msgid "Nombre o dirección IP del servidor de LDAP."
|
||||
msgstr ""
|
||||
msgstr "Hostname oder IP Adresse des LDAP Servers"
|
||||
|
||||
#: ../../../../inc/themes/classic/ldap.inc:40
|
||||
#: ../../../../inc/themes/classic/ldap.inc:65
|
||||
@@ -4169,7 +4206,7 @@ msgstr "Suchpräfix"
|
||||
#: ../../../../inc/themes/classic/ldap.inc:96
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:115
|
||||
msgid "Base en la que realizar la búsqueda de usuarios de LDAP."
|
||||
msgstr ""
|
||||
msgstr "LDAP Basis für die LDAP Nutzer-Suche"
|
||||
|
||||
#: ../../../../inc/themes/classic/ldap.inc:120
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:143
|
||||
@@ -4323,7 +4360,7 @@ msgstr "Passwort ändern"
|
||||
#: ../../../../inc/themes/classic/preferences.inc:73
|
||||
#: ../../../../inc/themes/material-blue/preferences.inc:74
|
||||
msgid "Ordenar resultados por visitas"
|
||||
msgstr ""
|
||||
msgstr "Sortiere Suchresultate nach Aufrufen"
|
||||
|
||||
#: ../../../../inc/themes/classic/preferences.inc:77
|
||||
#: ../../../../inc/themes/material-blue/preferences.inc:78
|
||||
@@ -4344,7 +4381,7 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/preferences.inc:107
|
||||
#: ../../../../inc/themes/material-blue/preferences.inc:108
|
||||
msgid "Mostrar Acciones Ocultas"
|
||||
msgstr ""
|
||||
msgstr "Zeige versteckte Aktionen"
|
||||
|
||||
#: ../../../../inc/themes/classic/preferences.inc:111
|
||||
#: ../../../../inc/themes/material-blue/preferences.inc:112
|
||||
@@ -4479,7 +4516,7 @@ msgstr "Kundenverwaltung"
|
||||
#: ../../../../inc/themes/classic/profiles.inc:107
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:124
|
||||
msgid "Gestión de campos personalizados"
|
||||
msgstr ""
|
||||
msgstr "Spezifische Feld Verwaltung"
|
||||
|
||||
#: ../../../../inc/themes/classic/profiles.inc:112
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:129
|
||||
@@ -4532,7 +4569,7 @@ msgid "Descripción de la petición"
|
||||
msgstr "Beschreibung der Anfrage"
|
||||
|
||||
#: ../../../../inc/themes/classic/request.inc:33
|
||||
#: ../../../../inc/themes/material-blue/account.inc:445
|
||||
#: ../../../../inc/themes/material-blue/account.inc:446
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:55
|
||||
#: ../../../../inc/themes/material-blue/mgmttabs.inc:13
|
||||
#: ../../../../inc/themes/material-blue/request.inc:42
|
||||
@@ -4637,14 +4674,14 @@ msgstr "Zwei Faktor Authentifizierung"
|
||||
msgid ""
|
||||
"Habilita la autentificación en 2 pasos que requiere de la introducción de un "
|
||||
"token generado por una aplicación como Google Authenticator."
|
||||
msgstr ""
|
||||
msgstr "Aktiviert Zwei-Faktor-Authentifizierung"
|
||||
|
||||
#: ../../../../inc/themes/classic/security.inc:21
|
||||
#: ../../../../inc/themes/material-blue/security.inc:19
|
||||
msgid ""
|
||||
"Escanee el código QR proporcionado y a continuación introduzca la clave de 6 "
|
||||
"dígitos."
|
||||
msgstr ""
|
||||
msgstr "Scanne den angegebenen QR-Code und gib den sechs stelligen Code ein."
|
||||
|
||||
#: ../../../../inc/themes/classic/security.inc:29
|
||||
#: ../../../../inc/themes/material-blue/security.inc:27
|
||||
@@ -4654,7 +4691,7 @@ msgstr "Aktivieren"
|
||||
#: ../../../../inc/themes/classic/security.inc:34
|
||||
#: ../../../../inc/themes/material-blue/security.inc:33
|
||||
msgid "Error al obtener el código QR. Inténtelo de nuevo"
|
||||
msgstr ""
|
||||
msgstr "Fehler beim Abrufen des QR-Codes. Bitte erneut versuchen."
|
||||
|
||||
#: ../../../../inc/themes/classic/security.inc:39
|
||||
#: ../../../../inc/themes/material-blue/security.inc:41
|
||||
@@ -4689,7 +4726,7 @@ msgstr "Optionen"
|
||||
#: ../../../../inc/themes/material-blue/tokens.inc:37
|
||||
#: ../../../../inc/themes/material-blue/tokens.inc:40
|
||||
msgid "Regenerar Autorización"
|
||||
msgstr ""
|
||||
msgstr "Autorisierung erneuern"
|
||||
|
||||
#: ../../../../inc/themes/classic/tokens.inc:43
|
||||
#: ../../../../inc/themes/material-blue/tokens.inc:46
|
||||
@@ -4704,7 +4741,7 @@ msgstr "Aktualisiert"
|
||||
#: ../../../../inc/themes/classic/update.inc:23
|
||||
#: ../../../../inc/themes/material-blue/update.inc:22
|
||||
msgid "Error al comprobar actualizaciones"
|
||||
msgstr ""
|
||||
msgstr "Fehler bei der Updateprüfung"
|
||||
|
||||
#: ../../../../inc/themes/classic/upgrade.inc:8
|
||||
#: ../../../../inc/themes/material-blue/upgrade.inc:6
|
||||
@@ -4858,11 +4895,15 @@ msgstr "Filter löschen"
|
||||
msgid "Histórico"
|
||||
msgstr "Vergangenheit"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:42
|
||||
msgid "Seleccionar o escribir para crear uno nuevo"
|
||||
#: ../../../../inc/themes/material-blue/account.inc:34
|
||||
msgid "> Usar texto y crear nuevo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:113
|
||||
#: ../../../../inc/themes/material-blue/account.inc:43
|
||||
msgid "Seleccionar o escribir para crear uno nuevo"
|
||||
msgstr "Auswählen oder schreiben um einen neuen zu kreieren"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:114
|
||||
msgid "Clave (Repetir)"
|
||||
msgstr "Passwort (wiederholen)"
|
||||
|
||||
@@ -4879,7 +4920,7 @@ msgstr "HTTPS erzwingen"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/config.inc:71
|
||||
msgid "Fuerza para que todas las conexiones sean a través de HTTPS."
|
||||
msgstr ""
|
||||
msgstr "Erzwingt HTTPS bei allen Verbindungen"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/config.inc:232
|
||||
#: ../../../../inc/themes/material-blue/preferences.inc:68
|
||||
@@ -4920,7 +4961,7 @@ msgstr "Feldname"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/customfields.inc:47
|
||||
msgid "Ayuda del campo"
|
||||
msgstr ""
|
||||
msgstr "Feldhilfe"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/footer.inc:11
|
||||
msgid "Preferencias de usuario"
|
||||
@@ -4928,7 +4969,7 @@ msgstr "Benutzereinstellungen"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/install.inc:33
|
||||
msgid "Usuario administrador de sysPass"
|
||||
msgstr ""
|
||||
msgstr "sysPass Administrator"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/install.inc:81
|
||||
msgid "Usuario acceso BBDD"
|
||||
@@ -4952,7 +4993,7 @@ msgstr "sysPass Datenbankserver"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/install.inc:118
|
||||
msgid "Nombre del servidor para instalar la base de datos de sysPass"
|
||||
msgstr ""
|
||||
msgstr "Name des Servers zur Installation der sysPass Datenbank"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:96
|
||||
msgid "Clave del usuario de conexión a LDAP."
|
||||
@@ -4963,6 +5004,8 @@ msgid ""
|
||||
"Habilita que los usuarios puedan solicitar modificaciones o acceso a las "
|
||||
"cuentas sin permisos."
|
||||
msgstr ""
|
||||
"Erlaubt, dass Nutzer Änderungen an oder Zugriff auf Konten, zu denen sie "
|
||||
"keinen Zugriff haben, erbitten können."
|
||||
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:25
|
||||
msgid "Crear nueva cuenta"
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sysPass\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-15 14:43+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 15:11+0100\n"
|
||||
"POT-Creation-Date: 2015-10-25 23:36+0100\n"
|
||||
"PO-Revision-Date: 2015-10-25 23:36+0100\n"
|
||||
"Last-Translator: nuxsmin <nuxsmin@syspass.org>\n"
|
||||
"Language-Team: <language@syspass.org>\n"
|
||||
"Language: fr_FR\n"
|
||||
@@ -81,7 +81,7 @@ msgstr "Id Invalide"
|
||||
#: ../../../../ajax/ajax_accountSave.php:113
|
||||
#: ../../../../ajax/ajax_accountSave.php:263
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:535
|
||||
#: ../../../../ajax/ajax_configSave.php:324
|
||||
#: ../../../../ajax/ajax_configSave.php:334
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:113 ../../../../api.php:53
|
||||
msgid "Acción Inválida"
|
||||
msgstr "Action Invalide"
|
||||
@@ -212,7 +212,7 @@ msgstr "Editer Catégorie"
|
||||
#: ../../../../inc/Category.class.php:83
|
||||
#: ../../../../web/AccountsMgmtC.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:53
|
||||
#: ../../../../inc/themes/material-blue/account.inc:61
|
||||
#: ../../../../inc/themes/material-blue/account.inc:62
|
||||
msgid "Nueva Categoría"
|
||||
msgstr "Nouvelle Catégorie"
|
||||
|
||||
@@ -265,7 +265,7 @@ msgstr "Courriel requis"
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:145
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:160
|
||||
#: ../../../../ajax/ajax_backup.php:54
|
||||
#: ../../../../ajax/ajax_configSave.php:297
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:88
|
||||
msgid "Ey, esto es una DEMO!!"
|
||||
@@ -348,7 +348,7 @@ msgstr "Erreur pendant l'actualisation du groupe"
|
||||
#: ../../../../inc/themes/classic/account.inc:112
|
||||
#: ../../../../inc/themes/classic/groups.inc:24
|
||||
#: ../../../../inc/themes/classic/profiles.inc:85
|
||||
#: ../../../../inc/themes/material-blue/account.inc:137
|
||||
#: ../../../../inc/themes/material-blue/account.inc:138
|
||||
#: ../../../../inc/themes/material-blue/groups.inc:32
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:99
|
||||
msgid "Usuarios"
|
||||
@@ -551,156 +551,160 @@ msgstr "Objet trouvé"
|
||||
msgid "Modificar Configuración"
|
||||
msgstr "Modifier Configuration"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:105
|
||||
#: ../../../../ajax/ajax_configSave.php:101
|
||||
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:118
|
||||
#: ../../../../ajax/ajax_configSave.php:109 ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr "Extension non autorisée"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:128
|
||||
msgid "Faltan parámetros de Proxy"
|
||||
msgstr "Paramètres Proxy manquant"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:126
|
||||
#: ../../../../ajax/ajax_configSave.php:136
|
||||
msgid "Proxy habiltado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:130
|
||||
#: ../../../../ajax/ajax_configSave.php:140
|
||||
msgid "Proxy deshabilitado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:133
|
||||
#: ../../../../ajax/ajax_configSave.php:157
|
||||
#: ../../../../ajax/ajax_configSave.php:191
|
||||
#: ../../../../ajax/ajax_configSave.php:230
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
msgid "Sección"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:133
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../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:143
|
||||
#: ../../../../ajax/ajax_configSave.php:153
|
||||
msgid "Faltan parámetros de Wiki"
|
||||
msgstr "Paramètres Wiki manquants"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:150
|
||||
#: ../../../../ajax/ajax_configSave.php:160
|
||||
msgid "Wiki habiltada"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:154
|
||||
#: ../../../../ajax/ajax_configSave.php:164
|
||||
msgid "Wiki deshabilitada"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:157
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../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:172
|
||||
#: ../../../../ajax/ajax_configSave.php:182
|
||||
msgid "Faltan parámetros de LDAP"
|
||||
msgstr "Paramètres LDAP manquants"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:184
|
||||
#: ../../../../ajax/ajax_configSave.php:194
|
||||
msgid "LDAP habiltado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:188
|
||||
#: ../../../../ajax/ajax_configSave.php:198
|
||||
msgid "LDAP deshabilitado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:191
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../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:206
|
||||
#: ../../../../ajax/ajax_configSave.php:216
|
||||
msgid "Faltan parámetros de Correo"
|
||||
msgstr "Paramètres de courriel manquants"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:221
|
||||
#: ../../../../ajax/ajax_configSave.php:231
|
||||
msgid "Correo habiltado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:227
|
||||
#: ../../../../ajax/ajax_configSave.php:237
|
||||
msgid "Correo deshabilitado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:230
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
#: ../../../../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:252
|
||||
#: ../../../../ajax/ajax_configSave.php:262
|
||||
msgid "Configuración actualizada"
|
||||
msgstr "Configuration actualisée"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:261
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../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:261
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../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:263
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
msgid "Clave maestra no indicada"
|
||||
msgstr "Mot de passe maître requis"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:265
|
||||
#: ../../../../ajax/ajax_configSave.php:275
|
||||
msgid "Se ha de confirmar el cambio de clave"
|
||||
msgstr "Le changement de mot de passe doit être confirmé"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:269
|
||||
#: ../../../../ajax/ajax_configSave.php:279
|
||||
msgid "Las claves son idénticas"
|
||||
msgstr "Les mots de passe sont identiques"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:281
|
||||
msgid "Las claves maestras no coinciden"
|
||||
msgstr "Les mots de passe maîtres ne correspondent pas"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
#: ../../../../ajax/ajax_configSave.php:283
|
||||
msgid "La clave maestra actual no coincide"
|
||||
msgstr "Le mot de passe maître actuel ne correspond pas"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:282
|
||||
#: ../../../../ajax/ajax_configSave.php:292
|
||||
msgid "Errores al actualizar las claves de las cuentas"
|
||||
msgstr "Erreur pendant la modification des mots de passe des comptes"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:288
|
||||
#: ../../../../ajax/ajax_configSave.php:298
|
||||
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:292
|
||||
#: ../../../../ajax/ajax_configSave.php:302
|
||||
msgid "Errores al actualizar datos de campos personalizados"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:305
|
||||
#: ../../../../ajax/ajax_configSave.php:315
|
||||
#: ../../../../inc/Account.class.php:512
|
||||
msgid "Actualizar Clave Maestra"
|
||||
msgstr "Mettre à jour le Mot de passe Maître"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:309
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
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:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
msgid "Generar Clave Temporal"
|
||||
msgstr "Générer un mot de passe temporaire"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:86
|
||||
#: ../../../../inc/themes/classic/editpass.inc:25
|
||||
@@ -715,8 +719,8 @@ msgstr "Générer un mot de passe temporaire"
|
||||
#: ../../../../inc/themes/classic/users.inc:75
|
||||
#: ../../../../inc/themes/classic/userspass.inc:8
|
||||
#: ../../../../inc/themes/classic/userspass.inc:11
|
||||
#: ../../../../inc/themes/material-blue/account.inc:98
|
||||
#: ../../../../inc/themes/material-blue/account.inc:103
|
||||
#: ../../../../inc/themes/material-blue/account.inc:99
|
||||
#: ../../../../inc/themes/material-blue/account.inc:104
|
||||
#: ../../../../inc/themes/material-blue/config.inc:395
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:26
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:31
|
||||
@@ -736,11 +740,11 @@ msgstr "Générer un mot de passe temporaire"
|
||||
msgid "Clave"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
#: ../../../../ajax/ajax_configSave.php:329
|
||||
msgid "Clave Temporal Generada"
|
||||
msgstr "Mot de passe temporel generé"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:321
|
||||
#: ../../../../ajax/ajax_configSave.php:331
|
||||
msgid "Error al generar clave temporal"
|
||||
msgstr ""
|
||||
|
||||
@@ -808,11 +812,12 @@ msgstr "Login incorrecte"
|
||||
#: ../../../../inc/themes/classic/request.inc:17
|
||||
#: ../../../../inc/themes/classic/search.inc:89
|
||||
#: ../../../../inc/themes/classic/tokens.inc:8
|
||||
#: ../../../../inc/themes/material-blue/account.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:84
|
||||
#: ../../../../inc/themes/material-blue/config.inc:381
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:22
|
||||
#: ../../../../inc/themes/material-blue/eventlog.inc:23
|
||||
#: ../../../../inc/themes/material-blue/info.inc:39
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/login.inc:11
|
||||
#: ../../../../inc/themes/material-blue/login.inc:34
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:61
|
||||
@@ -1115,7 +1120,7 @@ msgstr "Vous n'avez pas les permissions pour accéder à ce compte"
|
||||
#: ../../../../inc/themes/classic/account.inc:382
|
||||
#: ../../../../inc/themes/classic/profiles.inc:23
|
||||
#: ../../../../inc/themes/classic/search.inc:139
|
||||
#: ../../../../inc/themes/material-blue/account.inc:424
|
||||
#: ../../../../inc/themes/material-blue/account.inc:425
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:35
|
||||
#: ../../../../inc/themes/material-blue/search.inc:149
|
||||
msgid "Ver Clave"
|
||||
@@ -1229,7 +1234,7 @@ msgstr "ERREUR: Echec de l'opération"
|
||||
#: ../../../../web/AccountC.class.php:358
|
||||
#: ../../../../inc/themes/classic/account.inc:369
|
||||
#: ../../../../inc/themes/classic/search.inc:167
|
||||
#: ../../../../inc/themes/material-blue/account.inc:418
|
||||
#: ../../../../inc/themes/material-blue/account.inc:419
|
||||
#: ../../../../inc/themes/material-blue/search.inc:178
|
||||
msgid "Eliminar Cuenta"
|
||||
msgstr "Supprimer Compte"
|
||||
@@ -1352,7 +1357,7 @@ msgstr "Voir Historique"
|
||||
#: ../../../../inc/Acl.class.php:135
|
||||
#: ../../../../inc/themes/classic/account.inc:191
|
||||
#: ../../../../inc/themes/classic/profiles.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:233
|
||||
#: ../../../../inc/themes/material-blue/account.inc:234
|
||||
#: ../../../../inc/themes/material-blue/config.inc:261
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:60
|
||||
msgid "Archivos"
|
||||
@@ -1533,7 +1538,7 @@ msgstr "Erreur pendant la création de la catégorie"
|
||||
#: ../../../../web/SearchC.class.php:299
|
||||
#: ../../../../inc/themes/classic/account.inc:42
|
||||
#: ../../../../inc/themes/classic/search.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:51
|
||||
#: ../../../../inc/themes/material-blue/search.inc:85
|
||||
msgid "Categoría"
|
||||
msgstr "Catégorie"
|
||||
@@ -1720,7 +1725,7 @@ msgstr "Clients"
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:110
|
||||
#: ../../../../inc/themes/classic/account.inc:143
|
||||
#: ../../../../inc/themes/classic/profiles.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:169
|
||||
#: ../../../../inc/themes/material-blue/account.inc:170
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:104
|
||||
msgid "Grupos"
|
||||
msgstr "Groupes"
|
||||
@@ -2412,6 +2417,13 @@ msgstr "Modifier Utilisateur"
|
||||
msgid "Eliminar Usuario"
|
||||
msgstr "Supprimer Utilisateur"
|
||||
|
||||
#: ../../../../inc/UserLdap.class.php:68
|
||||
#: ../../../../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"
|
||||
|
||||
#: ../../../../inc/UserLdap.class.php:78
|
||||
msgid "Activación Cuenta"
|
||||
msgstr "Activation Compte"
|
||||
@@ -2563,10 +2575,6 @@ msgstr "Trop de fichiers"
|
||||
msgid "No es posible guardar el archivo \"%s\" Tamaño máximo:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr "Extension non autorisée"
|
||||
|
||||
#: ../../../../js/strings.js.php:47
|
||||
msgid "Vaciar el registro de eventos?"
|
||||
msgstr "Nettoyer le journal d'évènements"
|
||||
@@ -2652,11 +2660,29 @@ msgstr "Choisir une action"
|
||||
#: ../../../../inc/themes/classic/account.inc:136
|
||||
#: ../../../../inc/themes/classic/account.inc:167
|
||||
#: ../../../../inc/themes/classic/account.inc:451
|
||||
#: ../../../../inc/themes/classic/config.inc:70
|
||||
#: ../../../../inc/themes/classic/config.inc:86
|
||||
#: ../../../../inc/themes/classic/config.inc:102
|
||||
#: ../../../../inc/themes/classic/config.inc:118
|
||||
#: ../../../../inc/themes/classic/config.inc:134
|
||||
#: ../../../../inc/themes/classic/config.inc:150
|
||||
#: ../../../../inc/themes/classic/config.inc:166
|
||||
#: ../../../../inc/themes/classic/config.inc:182
|
||||
#: ../../../../inc/themes/classic/config.inc:255
|
||||
#: ../../../../inc/themes/classic/config.inc:274
|
||||
#: ../../../../inc/themes/classic/customfields.inc:46
|
||||
#: ../../../../inc/themes/classic/install.inc:99
|
||||
#: ../../../../inc/themes/classic/ldap.inc:25
|
||||
#: ../../../../inc/themes/classic/ldap.inc:195
|
||||
#: ../../../../inc/themes/classic/mail.inc:14
|
||||
#: ../../../../inc/themes/classic/mail.inc:40
|
||||
#: ../../../../inc/themes/classic/mail.inc:88
|
||||
#: ../../../../inc/themes/classic/preferences.inc:48
|
||||
#: ../../../../inc/themes/classic/preferences.inc:82
|
||||
#: ../../../../inc/themes/classic/preferences.inc:99
|
||||
#: ../../../../inc/themes/classic/preferences.inc:116
|
||||
#: ../../../../inc/themes/classic/security.inc:26
|
||||
#: ../../../../inc/themes/classic/wiki.inc:20
|
||||
msgid "SI"
|
||||
msgstr "OUI"
|
||||
|
||||
@@ -2664,15 +2690,33 @@ msgstr "OUI"
|
||||
#: ../../../../inc/themes/classic/account.inc:136
|
||||
#: ../../../../inc/themes/classic/account.inc:167
|
||||
#: ../../../../inc/themes/classic/account.inc:449
|
||||
#: ../../../../inc/themes/classic/config.inc:70
|
||||
#: ../../../../inc/themes/classic/config.inc:86
|
||||
#: ../../../../inc/themes/classic/config.inc:102
|
||||
#: ../../../../inc/themes/classic/config.inc:118
|
||||
#: ../../../../inc/themes/classic/config.inc:134
|
||||
#: ../../../../inc/themes/classic/config.inc:150
|
||||
#: ../../../../inc/themes/classic/config.inc:166
|
||||
#: ../../../../inc/themes/classic/config.inc:182
|
||||
#: ../../../../inc/themes/classic/config.inc:255
|
||||
#: ../../../../inc/themes/classic/config.inc:274
|
||||
#: ../../../../inc/themes/classic/customfields.inc:46
|
||||
#: ../../../../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/ldap.inc:25
|
||||
#: ../../../../inc/themes/classic/ldap.inc:195
|
||||
#: ../../../../inc/themes/classic/mail.inc:14
|
||||
#: ../../../../inc/themes/classic/mail.inc:40
|
||||
#: ../../../../inc/themes/classic/mail.inc:88
|
||||
#: ../../../../inc/themes/classic/preferences.inc:48
|
||||
#: ../../../../inc/themes/classic/preferences.inc:82
|
||||
#: ../../../../inc/themes/classic/preferences.inc:99
|
||||
#: ../../../../inc/themes/classic/preferences.inc:116
|
||||
#: ../../../../inc/themes/classic/security.inc:26
|
||||
#: ../../../../inc/themes/classic/tokens.inc:36
|
||||
#: ../../../../inc/themes/classic/wiki.inc:20
|
||||
msgid "NO"
|
||||
msgstr "NON"
|
||||
|
||||
@@ -2703,7 +2747,7 @@ msgstr "Détails du Compte"
|
||||
|
||||
#: ../../../../web/AccountC.class.php:474
|
||||
#: ../../../../inc/themes/classic/account.inc:396
|
||||
#: ../../../../inc/themes/material-blue/account.inc:435
|
||||
#: ../../../../inc/themes/material-blue/account.inc:436
|
||||
msgid "Modificar Clave de Cuenta"
|
||||
msgstr "Modifier Mot de passe de Compte"
|
||||
|
||||
@@ -2931,7 +2975,7 @@ msgstr "Trié par URL / IP"
|
||||
#: ../../../../inc/themes/classic/editpass.inc:16
|
||||
#: ../../../../inc/themes/classic/request.inc:13
|
||||
#: ../../../../inc/themes/classic/search.inc:96
|
||||
#: ../../../../inc/themes/material-blue/account.inc:69
|
||||
#: ../../../../inc/themes/material-blue/account.inc:70
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:17
|
||||
#: ../../../../inc/themes/material-blue/request.inc:15
|
||||
#: ../../../../inc/themes/material-blue/search.inc:98
|
||||
@@ -2946,12 +2990,6 @@ msgstr "Propriétés"
|
||||
msgid "Admin Cuentas"
|
||||
msgstr "Admin Comptes"
|
||||
|
||||
#: ../../../../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:113
|
||||
#: ../../../../inc/themes/classic/users.inc:113
|
||||
#: ../../../../inc/themes/material-blue/users.inc:151
|
||||
@@ -3029,12 +3067,12 @@ msgid "Buscar en desplegable o introducir"
|
||||
msgstr "Chercher dans la liste déroulante ou entrer"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:64
|
||||
#: ../../../../inc/themes/material-blue/account.inc:75
|
||||
#: ../../../../inc/themes/material-blue/account.inc:76
|
||||
msgid "URL o IP de acceso"
|
||||
msgstr "URL ou IP d'accès"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:76
|
||||
#: ../../../../inc/themes/material-blue/account.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:90
|
||||
msgid "Usuario de acceso"
|
||||
msgstr "Utilisateur d'accès"
|
||||
|
||||
@@ -3044,7 +3082,7 @@ msgstr "Utilisateur d'accès"
|
||||
#: ../../../../inc/themes/classic/users.inc:83
|
||||
#: ../../../../inc/themes/classic/userspass.inc:19
|
||||
#: ../../../../inc/themes/classic/userspass.inc:21
|
||||
#: ../../../../inc/themes/material-blue/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:109
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:36
|
||||
#: ../../../../inc/themes/material-blue/install.inc:67
|
||||
#: ../../../../inc/themes/material-blue/passreset.inc:36
|
||||
@@ -3058,120 +3096,120 @@ msgstr "Mot de passe (répéter)"
|
||||
#: ../../../../inc/themes/classic/account.inc:100
|
||||
#: ../../../../inc/themes/classic/search.inc:112
|
||||
#: ../../../../inc/themes/classic/users.inc:91
|
||||
#: ../../../../inc/themes/material-blue/account.inc:119
|
||||
#: ../../../../inc/themes/material-blue/account.inc:120
|
||||
#: ../../../../inc/themes/material-blue/search.inc:118
|
||||
#: ../../../../inc/themes/material-blue/users.inc:116
|
||||
msgid "Notas"
|
||||
msgstr "Notes"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:102
|
||||
#: ../../../../inc/themes/material-blue/account.inc:124
|
||||
#: ../../../../inc/themes/material-blue/account.inc:125
|
||||
#: ../../../../inc/themes/material-blue/users.inc:123
|
||||
msgid "Notas sobre la cuenta"
|
||||
msgstr "Notes sur le compte"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:133
|
||||
#: ../../../../inc/themes/material-blue/account.inc:134
|
||||
#: ../../../../inc/themes/material-blue/search.inc:111
|
||||
msgid "Permisos"
|
||||
msgstr "Permissions"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:135
|
||||
#: ../../../../inc/themes/classic/account.inc:166
|
||||
#: ../../../../inc/themes/material-blue/account.inc:162
|
||||
#: ../../../../inc/themes/material-blue/account.inc:194
|
||||
#: ../../../../inc/themes/material-blue/account.inc:163
|
||||
#: ../../../../inc/themes/material-blue/account.inc:195
|
||||
msgid "Hablitar edición"
|
||||
msgstr "Activer l'Edition"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
msgid "Soltar archivos aquí (max. 5) o click para seleccionar"
|
||||
msgstr "Déposer les fichier ici (max. 5) ou cliquez pour les sélectionner"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/classic/config.inc:212
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
#: ../../../../inc/themes/material-blue/config.inc:309
|
||||
msgid "Tamaño máximo de archivo"
|
||||
msgstr "Taille maximale de fichier"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:216
|
||||
#: ../../../../inc/themes/material-blue/account.inc:258
|
||||
#: ../../../../inc/themes/material-blue/account.inc:259
|
||||
msgid "Historial"
|
||||
msgstr "Historique"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:235
|
||||
#: ../../../../inc/themes/material-blue/account.inc:278
|
||||
#: ../../../../inc/themes/material-blue/account.inc:279
|
||||
msgid "Seleccionar fecha"
|
||||
msgstr "Sélectionner date"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:244
|
||||
#: ../../../../inc/themes/classic/users.inc:164
|
||||
#: ../../../../inc/themes/material-blue/account.inc:287
|
||||
#: ../../../../inc/themes/material-blue/account.inc:288
|
||||
#: ../../../../inc/themes/material-blue/users.inc:208
|
||||
msgid "Última Modificación"
|
||||
msgstr "Dernière modification"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:290
|
||||
msgid "por"
|
||||
msgstr "par"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:338
|
||||
#: ../../../../inc/themes/material-blue/account.inc:339
|
||||
msgid "Visitas"
|
||||
msgstr "Visites"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:293
|
||||
#: ../../../../inc/themes/material-blue/account.inc:342
|
||||
#: ../../../../inc/themes/material-blue/account.inc:343
|
||||
msgid "Fecha Alta"
|
||||
msgstr "Date Ajoutée"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:297
|
||||
#: ../../../../inc/themes/material-blue/account.inc:346
|
||||
#: ../../../../inc/themes/material-blue/account.inc:347
|
||||
msgid "Creador"
|
||||
msgstr "Créateur"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:301
|
||||
#: ../../../../inc/themes/material-blue/account.inc:203
|
||||
#: ../../../../inc/themes/material-blue/account.inc:350
|
||||
#: ../../../../inc/themes/material-blue/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:351
|
||||
msgid "Grupo Principal"
|
||||
msgstr "Groupe Principal"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:306
|
||||
#: ../../../../inc/themes/material-blue/account.inc:355
|
||||
#: ../../../../inc/themes/material-blue/account.inc:356
|
||||
msgid "Usuarios Secundarios"
|
||||
msgstr "Utilisateur Secondaires"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:325
|
||||
#: ../../../../inc/themes/material-blue/account.inc:374
|
||||
#: ../../../../inc/themes/material-blue/account.inc:375
|
||||
msgid "Grupos Secundarios"
|
||||
msgstr "Groupes Secondaires"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:345
|
||||
#: ../../../../inc/themes/material-blue/account.inc:394
|
||||
#: ../../../../inc/themes/material-blue/account.inc:395
|
||||
msgid "Fecha Edición"
|
||||
msgstr "Date Modifiée"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:349
|
||||
#: ../../../../inc/themes/material-blue/account.inc:398
|
||||
#: ../../../../inc/themes/material-blue/account.inc:399
|
||||
msgid "Editor"
|
||||
msgstr "Editeur"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:376
|
||||
#: ../../../../inc/themes/material-blue/account.inc:461
|
||||
#: ../../../../inc/themes/material-blue/account.inc:462
|
||||
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:143
|
||||
#: ../../../../inc/themes/material-blue/account.inc:428
|
||||
#: ../../../../inc/themes/material-blue/account.inc:429
|
||||
#: ../../../../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:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:442
|
||||
msgid "Ver Actual"
|
||||
msgstr "Voir Actuel"
|
||||
|
||||
@@ -3185,14 +3223,14 @@ msgstr "Retour"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:415
|
||||
#: ../../../../inc/themes/classic/search.inc:155
|
||||
#: ../../../../inc/themes/material-blue/account.inc:451
|
||||
#: ../../../../inc/themes/material-blue/account.inc:452
|
||||
#: ../../../../inc/themes/material-blue/search.inc:166
|
||||
msgid "Modificar Cuenta"
|
||||
msgstr "Modifier Compte"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:420
|
||||
#: ../../../../inc/themes/classic/search.inc:176
|
||||
#: ../../../../inc/themes/material-blue/account.inc:455
|
||||
#: ../../../../inc/themes/material-blue/account.inc:456
|
||||
#: ../../../../inc/themes/material-blue/search.inc:187
|
||||
msgid "Solicitar Modificación"
|
||||
msgstr "Demande Modification"
|
||||
@@ -3214,7 +3252,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:467
|
||||
#: ../../../../inc/themes/material-blue/account.inc:468
|
||||
#: ../../../../inc/themes/material-blue/categories.inc:72
|
||||
#: ../../../../inc/themes/material-blue/config.inc:425
|
||||
#: ../../../../inc/themes/material-blue/customers.inc:73
|
||||
@@ -3234,12 +3272,12 @@ msgid "Guardar"
|
||||
msgstr "Sauver"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:437
|
||||
#: ../../../../inc/themes/material-blue/account.inc:477
|
||||
#: ../../../../inc/themes/material-blue/account.inc:478
|
||||
msgid "Seleccionar grupos secundarios"
|
||||
msgstr "Sélectionner les groupes secondaires"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:480
|
||||
#: ../../../../inc/themes/material-blue/account.inc:481
|
||||
msgid "Seleccionar usuarios"
|
||||
msgstr "Sélectionner utilisateurs"
|
||||
|
||||
@@ -4072,7 +4110,6 @@ msgstr "Mémoire utilisée"
|
||||
#: ../../../../inc/themes/material-blue/info.inc:44
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:35
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:58
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:24
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:30
|
||||
msgid "Servidor"
|
||||
@@ -4550,7 +4587,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:445
|
||||
#: ../../../../inc/themes/material-blue/account.inc:446
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:55
|
||||
#: ../../../../inc/themes/material-blue/mgmttabs.inc:13
|
||||
#: ../../../../inc/themes/material-blue/request.inc:42
|
||||
@@ -4878,11 +4915,15 @@ msgstr "Supprimer filtre"
|
||||
msgid "Histórico"
|
||||
msgstr "Historique"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:42
|
||||
#: ../../../../inc/themes/material-blue/account.inc:34
|
||||
msgid "> Usar texto y crear nuevo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:43
|
||||
msgid "Seleccionar o escribir para crear uno nuevo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:113
|
||||
#: ../../../../inc/themes/material-blue/account.inc:114
|
||||
msgid "Clave (Repetir)"
|
||||
msgstr "Mot de passe (à confirmer)"
|
||||
|
||||
|
||||
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sysPass\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-15 14:45+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 14:45+0100\n"
|
||||
"POT-Creation-Date: 2015-10-25 23:36+0100\n"
|
||||
"PO-Revision-Date: 2015-10-25 23:36+0100\n"
|
||||
"Last-Translator: nuxsmin <nuxsmin@syspass.org>\n"
|
||||
"Language-Team: <language@syspass.org>\n"
|
||||
"Language: hu_HU\n"
|
||||
@@ -102,7 +102,7 @@ msgstr "Érvénytelen Id"
|
||||
#: ../../../../ajax/ajax_accountSave.php:113
|
||||
#: ../../../../ajax/ajax_accountSave.php:263
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:535
|
||||
#: ../../../../ajax/ajax_configSave.php:324
|
||||
#: ../../../../ajax/ajax_configSave.php:334
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:113 ../../../../api.php:53
|
||||
msgid "Acción Inválida"
|
||||
msgstr "Érvénytelen Akció"
|
||||
@@ -265,7 +265,7 @@ msgstr "Kategória módosítás"
|
||||
#: ../../../../inc/Category.class.php:83
|
||||
#: ../../../../web/AccountsMgmtC.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:53
|
||||
#: ../../../../inc/themes/material-blue/account.inc:61
|
||||
#: ../../../../inc/themes/material-blue/account.inc:62
|
||||
msgid "Nueva Categoría"
|
||||
msgstr "Új Kategória"
|
||||
|
||||
@@ -334,7 +334,7 @@ msgstr "Email szükséges"
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:145
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:160
|
||||
#: ../../../../ajax/ajax_backup.php:54
|
||||
#: ../../../../ajax/ajax_configSave.php:297
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:88
|
||||
msgid "Ey, esto es una DEMO!!"
|
||||
@@ -435,7 +435,7 @@ msgstr "Hiba a csoport frissítése közben"
|
||||
#: ../../../../inc/themes/classic/account.inc:112
|
||||
#: ../../../../inc/themes/classic/groups.inc:24
|
||||
#: ../../../../inc/themes/classic/profiles.inc:85
|
||||
#: ../../../../inc/themes/material-blue/account.inc:137
|
||||
#: ../../../../inc/themes/material-blue/account.inc:138
|
||||
#: ../../../../inc/themes/material-blue/groups.inc:32
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:99
|
||||
msgid "Usuarios"
|
||||
@@ -698,40 +698,45 @@ msgid "Modificar Configuración"
|
||||
msgstr "Konfiguráció szerkesztése"
|
||||
|
||||
# "Maximum file upload size in 16MB"
|
||||
#: ../../../../ajax/ajax_configSave.php:105
|
||||
#: ../../../../ajax/ajax_configSave.php:101
|
||||
#, fuzzy
|
||||
msgid "El tamaño máximo por archivo es de 16MB"
|
||||
msgstr "Maximálisan feltölthetõ fájl mérete 16MB"
|
||||
|
||||
# "Extension not allowed"
|
||||
#: ../../../../ajax/ajax_configSave.php:109 ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr "A kiterjesztés nem engedélyezett"
|
||||
|
||||
# "Missing Mail parameters"
|
||||
#: ../../../../ajax/ajax_configSave.php:118
|
||||
#: ../../../../ajax/ajax_configSave.php:128
|
||||
#, fuzzy
|
||||
msgid "Faltan parámetros de Proxy"
|
||||
msgstr "Hiányzó Wiki paraméter"
|
||||
|
||||
# "User disabled"
|
||||
#: ../../../../ajax/ajax_configSave.php:126
|
||||
#: ../../../../ajax/ajax_configSave.php:136
|
||||
#, fuzzy
|
||||
msgid "Proxy habiltado"
|
||||
msgstr "Felhasználó letiltva"
|
||||
|
||||
# "User disabled"
|
||||
#: ../../../../ajax/ajax_configSave.php:130
|
||||
#: ../../../../ajax/ajax_configSave.php:140
|
||||
#, 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
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
#, fuzzy
|
||||
msgid "Sección"
|
||||
msgstr "Akció"
|
||||
|
||||
# "General"
|
||||
#: ../../../../ajax/ajax_configSave.php:133
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../web/ConfigC.class.php:108
|
||||
#: ../../../../inc/themes/classic/profiles.inc:61
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:72
|
||||
@@ -739,24 +744,24 @@ msgid "General"
|
||||
msgstr "Általános"
|
||||
|
||||
# "Missing Wiki parameters"
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../ajax/ajax_configSave.php:153
|
||||
msgid "Faltan parámetros de Wiki"
|
||||
msgstr "Hiányzó Wiki paraméter"
|
||||
|
||||
# "Disabled"
|
||||
#: ../../../../ajax/ajax_configSave.php:150
|
||||
#: ../../../../ajax/ajax_configSave.php:160
|
||||
#, fuzzy
|
||||
msgid "Wiki habiltada"
|
||||
msgstr "Inaktív"
|
||||
|
||||
# "Disabled"
|
||||
#: ../../../../ajax/ajax_configSave.php:154
|
||||
#: ../../../../ajax/ajax_configSave.php:164
|
||||
#, fuzzy
|
||||
msgid "Wiki deshabilitada"
|
||||
msgstr "Inaktív"
|
||||
|
||||
# "Wiki"
|
||||
#: ../../../../ajax/ajax_configSave.php:157
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../web/ConfigC.class.php:244
|
||||
#: ../../../../inc/themes/classic/wiki.inc:4
|
||||
#: ../../../../inc/themes/material-blue/wiki.inc:4
|
||||
@@ -764,24 +769,24 @@ msgid "Wiki"
|
||||
msgstr "Wiki"
|
||||
|
||||
# "Missing LDAP parameters"
|
||||
#: ../../../../ajax/ajax_configSave.php:172
|
||||
#: ../../../../ajax/ajax_configSave.php:182
|
||||
msgid "Faltan parámetros de LDAP"
|
||||
msgstr "Hiányzó LDAP paraméter"
|
||||
|
||||
# "Disabled"
|
||||
#: ../../../../ajax/ajax_configSave.php:184
|
||||
#: ../../../../ajax/ajax_configSave.php:194
|
||||
#, fuzzy
|
||||
msgid "LDAP habiltado"
|
||||
msgstr "Inaktív"
|
||||
|
||||
# "Disabled"
|
||||
#: ../../../../ajax/ajax_configSave.php:188
|
||||
#: ../../../../ajax/ajax_configSave.php:198
|
||||
#, fuzzy
|
||||
msgid "LDAP deshabilitado"
|
||||
msgstr "Inaktív"
|
||||
|
||||
# "LDAP"
|
||||
#: ../../../../ajax/ajax_configSave.php:191
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../web/ConfigC.class.php:276
|
||||
#: ../../../../inc/themes/classic/ldap.inc:4
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:4
|
||||
@@ -789,24 +794,24 @@ msgid "LDAP"
|
||||
msgstr "LDAP"
|
||||
|
||||
# "Missing Mail parameters"
|
||||
#: ../../../../ajax/ajax_configSave.php:206
|
||||
#: ../../../../ajax/ajax_configSave.php:216
|
||||
msgid "Faltan parámetros de Correo"
|
||||
msgstr "Hiányzó mail paraméter"
|
||||
|
||||
# "Email sent"
|
||||
#: ../../../../ajax/ajax_configSave.php:221
|
||||
#: ../../../../ajax/ajax_configSave.php:231
|
||||
#, fuzzy
|
||||
msgid "Correo habiltado"
|
||||
msgstr "Email elküldve"
|
||||
|
||||
# "User disabled"
|
||||
#: ../../../../ajax/ajax_configSave.php:227
|
||||
#: ../../../../ajax/ajax_configSave.php:237
|
||||
#, fuzzy
|
||||
msgid "Correo deshabilitado"
|
||||
msgstr "Felhasználó letiltva"
|
||||
|
||||
# "Mail"
|
||||
#: ../../../../ajax/ajax_configSave.php:230
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
#: ../../../../web/ConfigC.class.php:306
|
||||
#: ../../../../inc/themes/classic/mail.inc:4
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:4
|
||||
@@ -814,86 +819,86 @@ msgid "Correo"
|
||||
msgstr "Mail"
|
||||
|
||||
# "Configuration updated"
|
||||
#: ../../../../ajax/ajax_configSave.php:252
|
||||
#: ../../../../ajax/ajax_configSave.php:262
|
||||
msgid "Configuración actualizada"
|
||||
msgstr "Beállítások frissítve"
|
||||
|
||||
# "Master Password updated"
|
||||
#: ../../../../ajax/ajax_configSave.php:261
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../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:261
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../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:263
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
msgid "Clave maestra no indicada"
|
||||
msgstr "Mester jelszó szükséges"
|
||||
|
||||
# "Password update must be confirmed"
|
||||
#: ../../../../ajax/ajax_configSave.php:265
|
||||
#: ../../../../ajax/ajax_configSave.php:275
|
||||
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:269
|
||||
#: ../../../../ajax/ajax_configSave.php:279
|
||||
msgid "Las claves son idénticas"
|
||||
msgstr "A jelszó megegyezik"
|
||||
|
||||
# "Master passwords mismatch"
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:281
|
||||
msgid "Las claves maestras no coinciden"
|
||||
msgstr "A mester jelszó nem egyezik"
|
||||
|
||||
# "Current master password mismatch"
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
#: ../../../../ajax/ajax_configSave.php:283
|
||||
msgid "La clave maestra actual no coincide"
|
||||
msgstr "A jelenlegi mester jelszó nem egyezik"
|
||||
|
||||
# "Error on updating accounts' passwords"
|
||||
#: ../../../../ajax/ajax_configSave.php:282
|
||||
#: ../../../../ajax/ajax_configSave.php:292
|
||||
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:288
|
||||
#: ../../../../ajax/ajax_configSave.php:298
|
||||
#, 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:292
|
||||
#: ../../../../ajax/ajax_configSave.php:302
|
||||
#, 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:305
|
||||
#: ../../../../ajax/ajax_configSave.php:315
|
||||
#: ../../../../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:309
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
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:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
#, fuzzy
|
||||
msgid "Generar Clave Temporal"
|
||||
msgstr "Generate Temporary Password"
|
||||
|
||||
# "Password"
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:86
|
||||
#: ../../../../inc/themes/classic/editpass.inc:25
|
||||
@@ -908,8 +913,8 @@ msgstr "Generate Temporary Password"
|
||||
#: ../../../../inc/themes/classic/users.inc:75
|
||||
#: ../../../../inc/themes/classic/userspass.inc:8
|
||||
#: ../../../../inc/themes/classic/userspass.inc:11
|
||||
#: ../../../../inc/themes/material-blue/account.inc:98
|
||||
#: ../../../../inc/themes/material-blue/account.inc:103
|
||||
#: ../../../../inc/themes/material-blue/account.inc:99
|
||||
#: ../../../../inc/themes/material-blue/account.inc:104
|
||||
#: ../../../../inc/themes/material-blue/config.inc:395
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:26
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:31
|
||||
@@ -930,13 +935,13 @@ msgid "Clave"
|
||||
msgstr "Jelszó"
|
||||
|
||||
# "Generated Password"
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
#: ../../../../ajax/ajax_configSave.php:329
|
||||
#, fuzzy
|
||||
msgid "Clave Temporal Generada"
|
||||
msgstr "Generált Jelszó"
|
||||
|
||||
# "Generate random password"
|
||||
#: ../../../../ajax/ajax_configSave.php:321
|
||||
#: ../../../../ajax/ajax_configSave.php:331
|
||||
#, fuzzy
|
||||
msgid "Error al generar clave temporal"
|
||||
msgstr "Generate Temporary Password"
|
||||
@@ -1013,11 +1018,12 @@ msgstr "Hibás felhasználónév vagy jelszó"
|
||||
#: ../../../../inc/themes/classic/request.inc:17
|
||||
#: ../../../../inc/themes/classic/search.inc:89
|
||||
#: ../../../../inc/themes/classic/tokens.inc:8
|
||||
#: ../../../../inc/themes/material-blue/account.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:84
|
||||
#: ../../../../inc/themes/material-blue/config.inc:381
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:22
|
||||
#: ../../../../inc/themes/material-blue/eventlog.inc:23
|
||||
#: ../../../../inc/themes/material-blue/info.inc:39
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/login.inc:11
|
||||
#: ../../../../inc/themes/material-blue/login.inc:34
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:61
|
||||
@@ -1376,7 +1382,7 @@ msgstr "Nincs jogosultságod belépni ebbe a fiókba"
|
||||
#: ../../../../inc/themes/classic/account.inc:382
|
||||
#: ../../../../inc/themes/classic/profiles.inc:23
|
||||
#: ../../../../inc/themes/classic/search.inc:139
|
||||
#: ../../../../inc/themes/material-blue/account.inc:424
|
||||
#: ../../../../inc/themes/material-blue/account.inc:425
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:35
|
||||
#: ../../../../inc/themes/material-blue/search.inc:149
|
||||
msgid "Ver Clave"
|
||||
@@ -1505,7 +1511,7 @@ msgstr "HIBA: A mûvelet meghiusult"
|
||||
#: ../../../../web/AccountC.class.php:358
|
||||
#: ../../../../inc/themes/classic/account.inc:369
|
||||
#: ../../../../inc/themes/classic/search.inc:167
|
||||
#: ../../../../inc/themes/material-blue/account.inc:418
|
||||
#: ../../../../inc/themes/material-blue/account.inc:419
|
||||
#: ../../../../inc/themes/material-blue/search.inc:178
|
||||
msgid "Eliminar Cuenta"
|
||||
msgstr "Fiók törlése"
|
||||
@@ -1662,7 +1668,7 @@ msgstr "Elõzmények"
|
||||
#: ../../../../inc/Acl.class.php:135
|
||||
#: ../../../../inc/themes/classic/account.inc:191
|
||||
#: ../../../../inc/themes/classic/profiles.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:233
|
||||
#: ../../../../inc/themes/material-blue/account.inc:234
|
||||
#: ../../../../inc/themes/material-blue/config.inc:261
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:60
|
||||
msgid "Archivos"
|
||||
@@ -1898,7 +1904,7 @@ msgstr "Hiba a kategória létrehozása közben"
|
||||
#: ../../../../web/SearchC.class.php:299
|
||||
#: ../../../../inc/themes/classic/account.inc:42
|
||||
#: ../../../../inc/themes/classic/search.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:51
|
||||
#: ../../../../inc/themes/material-blue/search.inc:85
|
||||
msgid "Categoría"
|
||||
msgstr "Kategória"
|
||||
@@ -2122,7 +2128,7 @@ msgstr "Ügyfél"
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:110
|
||||
#: ../../../../inc/themes/classic/account.inc:143
|
||||
#: ../../../../inc/themes/classic/profiles.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:169
|
||||
#: ../../../../inc/themes/material-blue/account.inc:170
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:104
|
||||
msgid "Grupos"
|
||||
msgstr "Csoportok"
|
||||
@@ -2985,6 +2991,14 @@ msgstr "Felhasználó módosítás"
|
||||
msgid "Eliminar Usuario"
|
||||
msgstr "felhasználó törlése"
|
||||
|
||||
# "LDAP User"
|
||||
#: ../../../../inc/UserLdap.class.php:68
|
||||
#: ../../../../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ó"
|
||||
|
||||
# "Account Activation"
|
||||
#: ../../../../inc/UserLdap.class.php:78
|
||||
msgid "Activación Cuenta"
|
||||
@@ -3175,11 +3189,6 @@ msgstr "Túl sok fájl"
|
||||
msgid "No es posible guardar el archivo \"%s\" Tamaño máximo:"
|
||||
msgstr "Nem lehet elmenteni a fájlt.<br>Maximális fájl méret:"
|
||||
|
||||
# "Extension not allowed"
|
||||
#: ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr "A kiterjesztés nem engedélyezett"
|
||||
|
||||
# "Clear event log?"
|
||||
#: ../../../../js/strings.js.php:47
|
||||
msgid "Vaciar el registro de eventos?"
|
||||
@@ -3287,11 +3296,29 @@ msgstr "Akció"
|
||||
#: ../../../../inc/themes/classic/account.inc:136
|
||||
#: ../../../../inc/themes/classic/account.inc:167
|
||||
#: ../../../../inc/themes/classic/account.inc:451
|
||||
#: ../../../../inc/themes/classic/config.inc:70
|
||||
#: ../../../../inc/themes/classic/config.inc:86
|
||||
#: ../../../../inc/themes/classic/config.inc:102
|
||||
#: ../../../../inc/themes/classic/config.inc:118
|
||||
#: ../../../../inc/themes/classic/config.inc:134
|
||||
#: ../../../../inc/themes/classic/config.inc:150
|
||||
#: ../../../../inc/themes/classic/config.inc:166
|
||||
#: ../../../../inc/themes/classic/config.inc:182
|
||||
#: ../../../../inc/themes/classic/config.inc:255
|
||||
#: ../../../../inc/themes/classic/config.inc:274
|
||||
#: ../../../../inc/themes/classic/customfields.inc:46
|
||||
#: ../../../../inc/themes/classic/install.inc:99
|
||||
#: ../../../../inc/themes/classic/ldap.inc:25
|
||||
#: ../../../../inc/themes/classic/ldap.inc:195
|
||||
#: ../../../../inc/themes/classic/mail.inc:14
|
||||
#: ../../../../inc/themes/classic/mail.inc:40
|
||||
#: ../../../../inc/themes/classic/mail.inc:88
|
||||
#: ../../../../inc/themes/classic/preferences.inc:48
|
||||
#: ../../../../inc/themes/classic/preferences.inc:82
|
||||
#: ../../../../inc/themes/classic/preferences.inc:99
|
||||
#: ../../../../inc/themes/classic/preferences.inc:116
|
||||
#: ../../../../inc/themes/classic/security.inc:26
|
||||
#: ../../../../inc/themes/classic/wiki.inc:20
|
||||
msgid "SI"
|
||||
msgstr "Igen"
|
||||
|
||||
@@ -3300,15 +3327,33 @@ msgstr "Igen"
|
||||
#: ../../../../inc/themes/classic/account.inc:136
|
||||
#: ../../../../inc/themes/classic/account.inc:167
|
||||
#: ../../../../inc/themes/classic/account.inc:449
|
||||
#: ../../../../inc/themes/classic/config.inc:70
|
||||
#: ../../../../inc/themes/classic/config.inc:86
|
||||
#: ../../../../inc/themes/classic/config.inc:102
|
||||
#: ../../../../inc/themes/classic/config.inc:118
|
||||
#: ../../../../inc/themes/classic/config.inc:134
|
||||
#: ../../../../inc/themes/classic/config.inc:150
|
||||
#: ../../../../inc/themes/classic/config.inc:166
|
||||
#: ../../../../inc/themes/classic/config.inc:182
|
||||
#: ../../../../inc/themes/classic/config.inc:255
|
||||
#: ../../../../inc/themes/classic/config.inc:274
|
||||
#: ../../../../inc/themes/classic/customfields.inc:46
|
||||
#: ../../../../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/ldap.inc:25
|
||||
#: ../../../../inc/themes/classic/ldap.inc:195
|
||||
#: ../../../../inc/themes/classic/mail.inc:14
|
||||
#: ../../../../inc/themes/classic/mail.inc:40
|
||||
#: ../../../../inc/themes/classic/mail.inc:88
|
||||
#: ../../../../inc/themes/classic/preferences.inc:48
|
||||
#: ../../../../inc/themes/classic/preferences.inc:82
|
||||
#: ../../../../inc/themes/classic/preferences.inc:99
|
||||
#: ../../../../inc/themes/classic/preferences.inc:116
|
||||
#: ../../../../inc/themes/classic/security.inc:26
|
||||
#: ../../../../inc/themes/classic/tokens.inc:36
|
||||
#: ../../../../inc/themes/classic/wiki.inc:20
|
||||
msgid "NO"
|
||||
msgstr "Nem"
|
||||
|
||||
@@ -3345,7 +3390,7 @@ msgstr "Fiók adatok"
|
||||
# "Edit Account Password"
|
||||
#: ../../../../web/AccountC.class.php:474
|
||||
#: ../../../../inc/themes/classic/account.inc:396
|
||||
#: ../../../../inc/themes/material-blue/account.inc:435
|
||||
#: ../../../../inc/themes/material-blue/account.inc:436
|
||||
msgid "Modificar Clave de Cuenta"
|
||||
msgstr "Fiók jelszavának szerkesztése"
|
||||
|
||||
@@ -3616,7 +3661,7 @@ msgstr "Rendezés URL / IP szerint"
|
||||
#: ../../../../inc/themes/classic/editpass.inc:16
|
||||
#: ../../../../inc/themes/classic/request.inc:13
|
||||
#: ../../../../inc/themes/classic/search.inc:96
|
||||
#: ../../../../inc/themes/material-blue/account.inc:69
|
||||
#: ../../../../inc/themes/material-blue/account.inc:70
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:17
|
||||
#: ../../../../inc/themes/material-blue/request.inc:15
|
||||
#: ../../../../inc/themes/material-blue/search.inc:98
|
||||
@@ -3633,13 +3678,6 @@ msgstr "Beállítások"
|
||||
msgid "Admin Cuentas"
|
||||
msgstr "Admin Fiók"
|
||||
|
||||
# "LDAP User"
|
||||
#: ../../../../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:113
|
||||
#: ../../../../inc/themes/classic/users.inc:113
|
||||
@@ -3738,13 +3776,13 @@ msgstr "Keress lentebb, vagy nyomj entert"
|
||||
|
||||
# "Access URL or IP"
|
||||
#: ../../../../inc/themes/classic/account.inc:64
|
||||
#: ../../../../inc/themes/material-blue/account.inc:75
|
||||
#: ../../../../inc/themes/material-blue/account.inc:76
|
||||
msgid "URL o IP de acceso"
|
||||
msgstr "URL vagy IP elérés"
|
||||
|
||||
# "Access user"
|
||||
#: ../../../../inc/themes/classic/account.inc:76
|
||||
#: ../../../../inc/themes/material-blue/account.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:90
|
||||
msgid "Usuario de acceso"
|
||||
msgstr "Felhasználó elérése"
|
||||
|
||||
@@ -3755,7 +3793,7 @@ msgstr "Felhasználó elérése"
|
||||
#: ../../../../inc/themes/classic/users.inc:83
|
||||
#: ../../../../inc/themes/classic/userspass.inc:19
|
||||
#: ../../../../inc/themes/classic/userspass.inc:21
|
||||
#: ../../../../inc/themes/material-blue/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:109
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:36
|
||||
#: ../../../../inc/themes/material-blue/install.inc:67
|
||||
#: ../../../../inc/themes/material-blue/passreset.inc:36
|
||||
@@ -3770,7 +3808,7 @@ msgstr "Jelszó (ismét)"
|
||||
#: ../../../../inc/themes/classic/account.inc:100
|
||||
#: ../../../../inc/themes/classic/search.inc:112
|
||||
#: ../../../../inc/themes/classic/users.inc:91
|
||||
#: ../../../../inc/themes/material-blue/account.inc:119
|
||||
#: ../../../../inc/themes/material-blue/account.inc:120
|
||||
#: ../../../../inc/themes/material-blue/search.inc:118
|
||||
#: ../../../../inc/themes/material-blue/users.inc:116
|
||||
msgid "Notas"
|
||||
@@ -3778,14 +3816,14 @@ msgstr "Jegyzetek"
|
||||
|
||||
# "Notes about the account"
|
||||
#: ../../../../inc/themes/classic/account.inc:102
|
||||
#: ../../../../inc/themes/material-blue/account.inc:124
|
||||
#: ../../../../inc/themes/material-blue/account.inc:125
|
||||
#: ../../../../inc/themes/material-blue/users.inc:123
|
||||
msgid "Notas sobre la cuenta"
|
||||
msgstr "Jegyzetek a fiókokról"
|
||||
|
||||
# "Permissions"
|
||||
#: ../../../../inc/themes/classic/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:133
|
||||
#: ../../../../inc/themes/material-blue/account.inc:134
|
||||
#: ../../../../inc/themes/material-blue/search.inc:111
|
||||
msgid "Permisos"
|
||||
msgstr "Jofosultságok"
|
||||
@@ -3793,110 +3831,110 @@ msgstr "Jofosultságok"
|
||||
# "Enable Edit"
|
||||
#: ../../../../inc/themes/classic/account.inc:135
|
||||
#: ../../../../inc/themes/classic/account.inc:166
|
||||
#: ../../../../inc/themes/material-blue/account.inc:162
|
||||
#: ../../../../inc/themes/material-blue/account.inc:194
|
||||
#: ../../../../inc/themes/material-blue/account.inc:163
|
||||
#: ../../../../inc/themes/material-blue/account.inc:195
|
||||
msgid "Hablitar edición"
|
||||
msgstr "Szerkesztés engedélyezése"
|
||||
|
||||
# "Drop files here (max. 5) or click to select"
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
msgid "Soltar archivos aquí (max. 5) o click para seleccionar"
|
||||
msgstr "Dobja el a fájlokat (max. 5) vagy kattintson a választáshoz"
|
||||
|
||||
# "Maximum file size"
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/classic/config.inc:212
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
#: ../../../../inc/themes/material-blue/config.inc:309
|
||||
msgid "Tamaño máximo de archivo"
|
||||
msgstr "Maximális fájl méret"
|
||||
|
||||
# "History"
|
||||
#: ../../../../inc/themes/classic/account.inc:216
|
||||
#: ../../../../inc/themes/material-blue/account.inc:258
|
||||
#: ../../../../inc/themes/material-blue/account.inc:259
|
||||
msgid "Historial"
|
||||
msgstr "Elõzmények"
|
||||
|
||||
# "Select date"
|
||||
#: ../../../../inc/themes/classic/account.inc:235
|
||||
#: ../../../../inc/themes/material-blue/account.inc:278
|
||||
#: ../../../../inc/themes/material-blue/account.inc:279
|
||||
msgid "Seleccionar fecha"
|
||||
msgstr "Válassz dátumot"
|
||||
|
||||
# "Last Modification"
|
||||
#: ../../../../inc/themes/classic/account.inc:244
|
||||
#: ../../../../inc/themes/classic/users.inc:164
|
||||
#: ../../../../inc/themes/material-blue/account.inc:287
|
||||
#: ../../../../inc/themes/material-blue/account.inc:288
|
||||
#: ../../../../inc/themes/material-blue/users.inc:208
|
||||
msgid "Última Modificación"
|
||||
msgstr "Utoljára módosítva"
|
||||
|
||||
# "by"
|
||||
#: ../../../../inc/themes/classic/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:290
|
||||
msgid "por"
|
||||
msgstr "által"
|
||||
|
||||
# "Visits"
|
||||
#: ../../../../inc/themes/classic/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:338
|
||||
#: ../../../../inc/themes/material-blue/account.inc:339
|
||||
msgid "Visitas"
|
||||
msgstr "Látogatók"
|
||||
|
||||
# "Date Added"
|
||||
#: ../../../../inc/themes/classic/account.inc:293
|
||||
#: ../../../../inc/themes/material-blue/account.inc:342
|
||||
#: ../../../../inc/themes/material-blue/account.inc:343
|
||||
msgid "Fecha Alta"
|
||||
msgstr "Dátum hozzáadva"
|
||||
|
||||
# "Creator"
|
||||
#: ../../../../inc/themes/classic/account.inc:297
|
||||
#: ../../../../inc/themes/material-blue/account.inc:346
|
||||
#: ../../../../inc/themes/material-blue/account.inc:347
|
||||
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:350
|
||||
#: ../../../../inc/themes/material-blue/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:351
|
||||
msgid "Grupo Principal"
|
||||
msgstr "Fõcsoport"
|
||||
|
||||
# "Secondary Users"
|
||||
#: ../../../../inc/themes/classic/account.inc:306
|
||||
#: ../../../../inc/themes/material-blue/account.inc:355
|
||||
#: ../../../../inc/themes/material-blue/account.inc:356
|
||||
msgid "Usuarios Secundarios"
|
||||
msgstr "Másodlagos felhasználók"
|
||||
|
||||
# "Secondary Groups"
|
||||
#: ../../../../inc/themes/classic/account.inc:325
|
||||
#: ../../../../inc/themes/material-blue/account.inc:374
|
||||
#: ../../../../inc/themes/material-blue/account.inc:375
|
||||
msgid "Grupos Secundarios"
|
||||
msgstr "Másodlagos csoportok"
|
||||
|
||||
# "Date Modified"
|
||||
#: ../../../../inc/themes/classic/account.inc:345
|
||||
#: ../../../../inc/themes/material-blue/account.inc:394
|
||||
#: ../../../../inc/themes/material-blue/account.inc:395
|
||||
msgid "Fecha Edición"
|
||||
msgstr "Adat módosítva"
|
||||
|
||||
# "Editor"
|
||||
#: ../../../../inc/themes/classic/account.inc:349
|
||||
#: ../../../../inc/themes/material-blue/account.inc:398
|
||||
#: ../../../../inc/themes/material-blue/account.inc:399
|
||||
msgid "Editor"
|
||||
msgstr "Szerkesztõ"
|
||||
|
||||
# "Restore account from this point"
|
||||
#: ../../../../inc/themes/classic/account.inc:376
|
||||
#: ../../../../inc/themes/material-blue/account.inc:461
|
||||
#: ../../../../inc/themes/material-blue/account.inc:462
|
||||
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:143
|
||||
#: ../../../../inc/themes/material-blue/account.inc:428
|
||||
#: ../../../../inc/themes/material-blue/account.inc:429
|
||||
#: ../../../../inc/themes/material-blue/search.inc:154
|
||||
#, fuzzy
|
||||
msgid "Copiar Clave en Portapapeles"
|
||||
@@ -3904,7 +3942,7 @@ msgstr "A jelszó nem lehet üres"
|
||||
|
||||
# "View Current"
|
||||
#: ../../../../inc/themes/classic/account.inc:403
|
||||
#: ../../../../inc/themes/material-blue/account.inc:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:442
|
||||
msgid "Ver Actual"
|
||||
msgstr "Általános"
|
||||
|
||||
@@ -3920,7 +3958,7 @@ msgstr "Vissza"
|
||||
# "Edit Account"
|
||||
#: ../../../../inc/themes/classic/account.inc:415
|
||||
#: ../../../../inc/themes/classic/search.inc:155
|
||||
#: ../../../../inc/themes/material-blue/account.inc:451
|
||||
#: ../../../../inc/themes/material-blue/account.inc:452
|
||||
#: ../../../../inc/themes/material-blue/search.inc:166
|
||||
msgid "Modificar Cuenta"
|
||||
msgstr "Fiók módosítás"
|
||||
@@ -3928,7 +3966,7 @@ msgstr "Fiók módosítás"
|
||||
# "Request Modification"
|
||||
#: ../../../../inc/themes/classic/account.inc:420
|
||||
#: ../../../../inc/themes/classic/search.inc:176
|
||||
#: ../../../../inc/themes/material-blue/account.inc:455
|
||||
#: ../../../../inc/themes/material-blue/account.inc:456
|
||||
#: ../../../../inc/themes/material-blue/search.inc:187
|
||||
msgid "Solicitar Modificación"
|
||||
msgstr "Kérés módosítás"
|
||||
@@ -3951,7 +3989,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:467
|
||||
#: ../../../../inc/themes/material-blue/account.inc:468
|
||||
#: ../../../../inc/themes/material-blue/categories.inc:72
|
||||
#: ../../../../inc/themes/material-blue/config.inc:425
|
||||
#: ../../../../inc/themes/material-blue/customers.inc:73
|
||||
@@ -3972,13 +4010,13 @@ msgstr "Mentés"
|
||||
|
||||
# "Select secondary groups"
|
||||
#: ../../../../inc/themes/classic/account.inc:437
|
||||
#: ../../../../inc/themes/material-blue/account.inc:477
|
||||
#: ../../../../inc/themes/material-blue/account.inc:478
|
||||
msgid "Seleccionar grupos secundarios"
|
||||
msgstr " Válassz másodlagos csoportot"
|
||||
|
||||
# "Select users"
|
||||
#: ../../../../inc/themes/classic/account.inc:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:480
|
||||
#: ../../../../inc/themes/material-blue/account.inc:481
|
||||
msgid "Seleccionar usuarios"
|
||||
msgstr "Válassz felhasználót"
|
||||
|
||||
@@ -4941,7 +4979,6 @@ msgstr ""
|
||||
#: ../../../../inc/themes/material-blue/info.inc:44
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:35
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:58
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:24
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:30
|
||||
msgid "Servidor"
|
||||
@@ -5525,7 +5562,7 @@ msgstr "Kérés leírás"
|
||||
|
||||
# "Back"
|
||||
#: ../../../../inc/themes/classic/request.inc:33
|
||||
#: ../../../../inc/themes/material-blue/account.inc:445
|
||||
#: ../../../../inc/themes/material-blue/account.inc:446
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:55
|
||||
#: ../../../../inc/themes/material-blue/mgmttabs.inc:13
|
||||
#: ../../../../inc/themes/material-blue/request.inc:42
|
||||
@@ -5920,12 +5957,16 @@ msgstr "Szûrõ törlése"
|
||||
msgid "Histórico"
|
||||
msgstr "Fiók elõzmények importálása"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:42
|
||||
#: ../../../../inc/themes/material-blue/account.inc:34
|
||||
msgid "> Usar texto y crear nuevo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:43
|
||||
msgid "Seleccionar o escribir para crear uno nuevo"
|
||||
msgstr ""
|
||||
|
||||
# "Password (repeat)"
|
||||
#: ../../../../inc/themes/material-blue/account.inc:113
|
||||
#: ../../../../inc/themes/material-blue/account.inc:114
|
||||
#, fuzzy
|
||||
msgid "Clave (Repetir)"
|
||||
msgstr "Jelszó (ismét)"
|
||||
|
||||
Binary file not shown.
@@ -1,8 +1,8 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sysPass\n"
|
||||
"POT-Creation-Date: 2015-10-15 14:46+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 14:46+0100\n"
|
||||
"POT-Creation-Date: 2015-10-25 23:36+0100\n"
|
||||
"PO-Revision-Date: 2015-10-25 23:36+0100\n"
|
||||
"Last-Translator: nuxsmin <nuxsmin@syspass.org>\n"
|
||||
"Language-Team: nuxsmin@syspass.org <nuxsmin@syspass.org>\n"
|
||||
"Language: it_IT\n"
|
||||
@@ -80,7 +80,7 @@ msgstr ""
|
||||
#: ../../../../ajax/ajax_accountSave.php:113
|
||||
#: ../../../../ajax/ajax_accountSave.php:263
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:535
|
||||
#: ../../../../ajax/ajax_configSave.php:324
|
||||
#: ../../../../ajax/ajax_configSave.php:334
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:113 ../../../../api.php:53
|
||||
msgid "Acción Inválida"
|
||||
msgstr ""
|
||||
@@ -211,7 +211,7 @@ msgstr ""
|
||||
#: ../../../../inc/Category.class.php:83
|
||||
#: ../../../../web/AccountsMgmtC.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:53
|
||||
#: ../../../../inc/themes/material-blue/account.inc:61
|
||||
#: ../../../../inc/themes/material-blue/account.inc:62
|
||||
msgid "Nueva Categoría"
|
||||
msgstr ""
|
||||
|
||||
@@ -264,7 +264,7 @@ msgstr ""
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:145
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:160
|
||||
#: ../../../../ajax/ajax_backup.php:54
|
||||
#: ../../../../ajax/ajax_configSave.php:297
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:88
|
||||
msgid "Ey, esto es una DEMO!!"
|
||||
@@ -347,7 +347,7 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/account.inc:112
|
||||
#: ../../../../inc/themes/classic/groups.inc:24
|
||||
#: ../../../../inc/themes/classic/profiles.inc:85
|
||||
#: ../../../../inc/themes/material-blue/account.inc:137
|
||||
#: ../../../../inc/themes/material-blue/account.inc:138
|
||||
#: ../../../../inc/themes/material-blue/groups.inc:32
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:99
|
||||
msgid "Usuarios"
|
||||
@@ -549,156 +549,160 @@ msgstr ""
|
||||
msgid "Modificar Configuración"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:105
|
||||
#: ../../../../ajax/ajax_configSave.php:101
|
||||
msgid "El tamaño máximo por archivo es de 16MB"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:118
|
||||
#: ../../../../ajax/ajax_configSave.php:109 ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:128
|
||||
msgid "Faltan parámetros de Proxy"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:126
|
||||
#: ../../../../ajax/ajax_configSave.php:136
|
||||
msgid "Proxy habiltado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:130
|
||||
#: ../../../../ajax/ajax_configSave.php:140
|
||||
msgid "Proxy deshabilitado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:133
|
||||
#: ../../../../ajax/ajax_configSave.php:157
|
||||
#: ../../../../ajax/ajax_configSave.php:191
|
||||
#: ../../../../ajax/ajax_configSave.php:230
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
msgid "Sección"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:133
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../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:143
|
||||
#: ../../../../ajax/ajax_configSave.php:153
|
||||
msgid "Faltan parámetros de Wiki"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:150
|
||||
#: ../../../../ajax/ajax_configSave.php:160
|
||||
msgid "Wiki habiltada"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:154
|
||||
#: ../../../../ajax/ajax_configSave.php:164
|
||||
msgid "Wiki deshabilitada"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:157
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../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:172
|
||||
#: ../../../../ajax/ajax_configSave.php:182
|
||||
msgid "Faltan parámetros de LDAP"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:184
|
||||
#: ../../../../ajax/ajax_configSave.php:194
|
||||
msgid "LDAP habiltado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:188
|
||||
#: ../../../../ajax/ajax_configSave.php:198
|
||||
msgid "LDAP deshabilitado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:191
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../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:206
|
||||
#: ../../../../ajax/ajax_configSave.php:216
|
||||
msgid "Faltan parámetros de Correo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:221
|
||||
#: ../../../../ajax/ajax_configSave.php:231
|
||||
msgid "Correo habiltado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:227
|
||||
#: ../../../../ajax/ajax_configSave.php:237
|
||||
msgid "Correo deshabilitado"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:230
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
#: ../../../../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:252
|
||||
#: ../../../../ajax/ajax_configSave.php:262
|
||||
msgid "Configuración actualizada"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:261
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_viewpass.php:61
|
||||
#: ../../../../inc/Controller.class.php:169
|
||||
msgid "Clave maestra actualizada"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:261
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_viewpass.php:61
|
||||
#: ../../../../inc/Controller.class.php:169
|
||||
msgid "Reinicie la sesión para cambiarla"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:263
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
msgid "Clave maestra no indicada"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:265
|
||||
#: ../../../../ajax/ajax_configSave.php:275
|
||||
msgid "Se ha de confirmar el cambio de clave"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:269
|
||||
#: ../../../../ajax/ajax_configSave.php:279
|
||||
msgid "Las claves son idénticas"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:281
|
||||
msgid "Las claves maestras no coinciden"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
#: ../../../../ajax/ajax_configSave.php:283
|
||||
msgid "La clave maestra actual no coincide"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:282
|
||||
#: ../../../../ajax/ajax_configSave.php:292
|
||||
msgid "Errores al actualizar las claves de las cuentas"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:288
|
||||
#: ../../../../ajax/ajax_configSave.php:298
|
||||
msgid "Errores al actualizar las claves de las cuentas del histórico"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:292
|
||||
#: ../../../../ajax/ajax_configSave.php:302
|
||||
msgid "Errores al actualizar datos de campos personalizados"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:305
|
||||
#: ../../../../ajax/ajax_configSave.php:315
|
||||
#: ../../../../inc/Account.class.php:512
|
||||
msgid "Actualizar Clave Maestra"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:309
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
msgid "Error al guardar el hash de la clave maestra"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
msgid "Generar Clave Temporal"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:86
|
||||
#: ../../../../inc/themes/classic/editpass.inc:25
|
||||
@@ -713,8 +717,8 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/users.inc:75
|
||||
#: ../../../../inc/themes/classic/userspass.inc:8
|
||||
#: ../../../../inc/themes/classic/userspass.inc:11
|
||||
#: ../../../../inc/themes/material-blue/account.inc:98
|
||||
#: ../../../../inc/themes/material-blue/account.inc:103
|
||||
#: ../../../../inc/themes/material-blue/account.inc:99
|
||||
#: ../../../../inc/themes/material-blue/account.inc:104
|
||||
#: ../../../../inc/themes/material-blue/config.inc:395
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:26
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:31
|
||||
@@ -734,11 +738,11 @@ msgstr ""
|
||||
msgid "Clave"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
#: ../../../../ajax/ajax_configSave.php:329
|
||||
msgid "Clave Temporal Generada"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:321
|
||||
#: ../../../../ajax/ajax_configSave.php:331
|
||||
msgid "Error al generar clave temporal"
|
||||
msgstr ""
|
||||
|
||||
@@ -804,11 +808,12 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/request.inc:17
|
||||
#: ../../../../inc/themes/classic/search.inc:89
|
||||
#: ../../../../inc/themes/classic/tokens.inc:8
|
||||
#: ../../../../inc/themes/material-blue/account.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:84
|
||||
#: ../../../../inc/themes/material-blue/config.inc:381
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:22
|
||||
#: ../../../../inc/themes/material-blue/eventlog.inc:23
|
||||
#: ../../../../inc/themes/material-blue/info.inc:39
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/login.inc:11
|
||||
#: ../../../../inc/themes/material-blue/login.inc:34
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:61
|
||||
@@ -1110,7 +1115,7 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/account.inc:382
|
||||
#: ../../../../inc/themes/classic/profiles.inc:23
|
||||
#: ../../../../inc/themes/classic/search.inc:139
|
||||
#: ../../../../inc/themes/material-blue/account.inc:424
|
||||
#: ../../../../inc/themes/material-blue/account.inc:425
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:35
|
||||
#: ../../../../inc/themes/material-blue/search.inc:149
|
||||
msgid "Ver Clave"
|
||||
@@ -1224,7 +1229,7 @@ msgstr ""
|
||||
#: ../../../../web/AccountC.class.php:358
|
||||
#: ../../../../inc/themes/classic/account.inc:369
|
||||
#: ../../../../inc/themes/classic/search.inc:167
|
||||
#: ../../../../inc/themes/material-blue/account.inc:418
|
||||
#: ../../../../inc/themes/material-blue/account.inc:419
|
||||
#: ../../../../inc/themes/material-blue/search.inc:178
|
||||
msgid "Eliminar Cuenta"
|
||||
msgstr ""
|
||||
@@ -1347,7 +1352,7 @@ msgstr ""
|
||||
#: ../../../../inc/Acl.class.php:135
|
||||
#: ../../../../inc/themes/classic/account.inc:191
|
||||
#: ../../../../inc/themes/classic/profiles.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:233
|
||||
#: ../../../../inc/themes/material-blue/account.inc:234
|
||||
#: ../../../../inc/themes/material-blue/config.inc:261
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:60
|
||||
msgid "Archivos"
|
||||
@@ -1525,7 +1530,7 @@ msgstr ""
|
||||
#: ../../../../web/SearchC.class.php:299
|
||||
#: ../../../../inc/themes/classic/account.inc:42
|
||||
#: ../../../../inc/themes/classic/search.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:51
|
||||
#: ../../../../inc/themes/material-blue/search.inc:85
|
||||
msgid "Categoría"
|
||||
msgstr ""
|
||||
@@ -1712,7 +1717,7 @@ msgstr ""
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:110
|
||||
#: ../../../../inc/themes/classic/account.inc:143
|
||||
#: ../../../../inc/themes/classic/profiles.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:169
|
||||
#: ../../../../inc/themes/material-blue/account.inc:170
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:104
|
||||
msgid "Grupos"
|
||||
msgstr ""
|
||||
@@ -2394,6 +2399,13 @@ msgstr ""
|
||||
msgid "Eliminar Usuario"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/UserLdap.class.php:68
|
||||
#: ../../../../web/UsersMgmtC.class.php:109
|
||||
#: ../../../../inc/themes/classic/users.inc:28
|
||||
#: ../../../../inc/themes/material-blue/users.inc:34
|
||||
msgid "Usuario de LDAP"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/UserLdap.class.php:78
|
||||
msgid "Activación Cuenta"
|
||||
msgstr ""
|
||||
@@ -2540,10 +2552,6 @@ msgstr ""
|
||||
msgid "No es posible guardar el archivo \"%s\" Tamaño máximo:"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../js/strings.js.php:47
|
||||
msgid "Vaciar el registro de eventos?"
|
||||
msgstr ""
|
||||
@@ -2629,11 +2637,29 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/account.inc:136
|
||||
#: ../../../../inc/themes/classic/account.inc:167
|
||||
#: ../../../../inc/themes/classic/account.inc:451
|
||||
#: ../../../../inc/themes/classic/config.inc:70
|
||||
#: ../../../../inc/themes/classic/config.inc:86
|
||||
#: ../../../../inc/themes/classic/config.inc:102
|
||||
#: ../../../../inc/themes/classic/config.inc:118
|
||||
#: ../../../../inc/themes/classic/config.inc:134
|
||||
#: ../../../../inc/themes/classic/config.inc:150
|
||||
#: ../../../../inc/themes/classic/config.inc:166
|
||||
#: ../../../../inc/themes/classic/config.inc:182
|
||||
#: ../../../../inc/themes/classic/config.inc:255
|
||||
#: ../../../../inc/themes/classic/config.inc:274
|
||||
#: ../../../../inc/themes/classic/customfields.inc:46
|
||||
#: ../../../../inc/themes/classic/install.inc:99
|
||||
#: ../../../../inc/themes/classic/ldap.inc:25
|
||||
#: ../../../../inc/themes/classic/ldap.inc:195
|
||||
#: ../../../../inc/themes/classic/mail.inc:14
|
||||
#: ../../../../inc/themes/classic/mail.inc:40
|
||||
#: ../../../../inc/themes/classic/mail.inc:88
|
||||
#: ../../../../inc/themes/classic/preferences.inc:48
|
||||
#: ../../../../inc/themes/classic/preferences.inc:82
|
||||
#: ../../../../inc/themes/classic/preferences.inc:99
|
||||
#: ../../../../inc/themes/classic/preferences.inc:116
|
||||
#: ../../../../inc/themes/classic/security.inc:26
|
||||
#: ../../../../inc/themes/classic/wiki.inc:20
|
||||
msgid "SI"
|
||||
msgstr ""
|
||||
|
||||
@@ -2641,15 +2667,33 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/account.inc:136
|
||||
#: ../../../../inc/themes/classic/account.inc:167
|
||||
#: ../../../../inc/themes/classic/account.inc:449
|
||||
#: ../../../../inc/themes/classic/config.inc:70
|
||||
#: ../../../../inc/themes/classic/config.inc:86
|
||||
#: ../../../../inc/themes/classic/config.inc:102
|
||||
#: ../../../../inc/themes/classic/config.inc:118
|
||||
#: ../../../../inc/themes/classic/config.inc:134
|
||||
#: ../../../../inc/themes/classic/config.inc:150
|
||||
#: ../../../../inc/themes/classic/config.inc:166
|
||||
#: ../../../../inc/themes/classic/config.inc:182
|
||||
#: ../../../../inc/themes/classic/config.inc:255
|
||||
#: ../../../../inc/themes/classic/config.inc:274
|
||||
#: ../../../../inc/themes/classic/customfields.inc:46
|
||||
#: ../../../../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/ldap.inc:25
|
||||
#: ../../../../inc/themes/classic/ldap.inc:195
|
||||
#: ../../../../inc/themes/classic/mail.inc:14
|
||||
#: ../../../../inc/themes/classic/mail.inc:40
|
||||
#: ../../../../inc/themes/classic/mail.inc:88
|
||||
#: ../../../../inc/themes/classic/preferences.inc:48
|
||||
#: ../../../../inc/themes/classic/preferences.inc:82
|
||||
#: ../../../../inc/themes/classic/preferences.inc:99
|
||||
#: ../../../../inc/themes/classic/preferences.inc:116
|
||||
#: ../../../../inc/themes/classic/security.inc:26
|
||||
#: ../../../../inc/themes/classic/tokens.inc:36
|
||||
#: ../../../../inc/themes/classic/wiki.inc:20
|
||||
msgid "NO"
|
||||
msgstr ""
|
||||
|
||||
@@ -2680,7 +2724,7 @@ msgstr ""
|
||||
|
||||
#: ../../../../web/AccountC.class.php:474
|
||||
#: ../../../../inc/themes/classic/account.inc:396
|
||||
#: ../../../../inc/themes/material-blue/account.inc:435
|
||||
#: ../../../../inc/themes/material-blue/account.inc:436
|
||||
msgid "Modificar Clave de Cuenta"
|
||||
msgstr ""
|
||||
|
||||
@@ -2902,7 +2946,7 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/editpass.inc:16
|
||||
#: ../../../../inc/themes/classic/request.inc:13
|
||||
#: ../../../../inc/themes/classic/search.inc:96
|
||||
#: ../../../../inc/themes/material-blue/account.inc:69
|
||||
#: ../../../../inc/themes/material-blue/account.inc:70
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:17
|
||||
#: ../../../../inc/themes/material-blue/request.inc:15
|
||||
#: ../../../../inc/themes/material-blue/search.inc:98
|
||||
@@ -2917,12 +2961,6 @@ msgstr ""
|
||||
msgid "Admin Cuentas"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../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:113
|
||||
#: ../../../../inc/themes/classic/users.inc:113
|
||||
#: ../../../../inc/themes/material-blue/users.inc:151
|
||||
@@ -3000,12 +3038,12 @@ msgid "Buscar en desplegable o introducir"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:64
|
||||
#: ../../../../inc/themes/material-blue/account.inc:75
|
||||
#: ../../../../inc/themes/material-blue/account.inc:76
|
||||
msgid "URL o IP de acceso"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:76
|
||||
#: ../../../../inc/themes/material-blue/account.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:90
|
||||
msgid "Usuario de acceso"
|
||||
msgstr ""
|
||||
|
||||
@@ -3015,7 +3053,7 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/users.inc:83
|
||||
#: ../../../../inc/themes/classic/userspass.inc:19
|
||||
#: ../../../../inc/themes/classic/userspass.inc:21
|
||||
#: ../../../../inc/themes/material-blue/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:109
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:36
|
||||
#: ../../../../inc/themes/material-blue/install.inc:67
|
||||
#: ../../../../inc/themes/material-blue/passreset.inc:36
|
||||
@@ -3029,120 +3067,120 @@ msgstr ""
|
||||
#: ../../../../inc/themes/classic/account.inc:100
|
||||
#: ../../../../inc/themes/classic/search.inc:112
|
||||
#: ../../../../inc/themes/classic/users.inc:91
|
||||
#: ../../../../inc/themes/material-blue/account.inc:119
|
||||
#: ../../../../inc/themes/material-blue/account.inc:120
|
||||
#: ../../../../inc/themes/material-blue/search.inc:118
|
||||
#: ../../../../inc/themes/material-blue/users.inc:116
|
||||
msgid "Notas"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:102
|
||||
#: ../../../../inc/themes/material-blue/account.inc:124
|
||||
#: ../../../../inc/themes/material-blue/account.inc:125
|
||||
#: ../../../../inc/themes/material-blue/users.inc:123
|
||||
msgid "Notas sobre la cuenta"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:133
|
||||
#: ../../../../inc/themes/material-blue/account.inc:134
|
||||
#: ../../../../inc/themes/material-blue/search.inc:111
|
||||
msgid "Permisos"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:135
|
||||
#: ../../../../inc/themes/classic/account.inc:166
|
||||
#: ../../../../inc/themes/material-blue/account.inc:162
|
||||
#: ../../../../inc/themes/material-blue/account.inc:194
|
||||
#: ../../../../inc/themes/material-blue/account.inc:163
|
||||
#: ../../../../inc/themes/material-blue/account.inc:195
|
||||
msgid "Hablitar edición"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
msgid "Soltar archivos aquí (max. 5) o click para seleccionar"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/classic/config.inc:212
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
#: ../../../../inc/themes/material-blue/config.inc:309
|
||||
msgid "Tamaño máximo de archivo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:216
|
||||
#: ../../../../inc/themes/material-blue/account.inc:258
|
||||
#: ../../../../inc/themes/material-blue/account.inc:259
|
||||
msgid "Historial"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:235
|
||||
#: ../../../../inc/themes/material-blue/account.inc:278
|
||||
#: ../../../../inc/themes/material-blue/account.inc:279
|
||||
msgid "Seleccionar fecha"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:244
|
||||
#: ../../../../inc/themes/classic/users.inc:164
|
||||
#: ../../../../inc/themes/material-blue/account.inc:287
|
||||
#: ../../../../inc/themes/material-blue/account.inc:288
|
||||
#: ../../../../inc/themes/material-blue/users.inc:208
|
||||
msgid "Última Modificación"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:290
|
||||
msgid "por"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:338
|
||||
#: ../../../../inc/themes/material-blue/account.inc:339
|
||||
msgid "Visitas"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:293
|
||||
#: ../../../../inc/themes/material-blue/account.inc:342
|
||||
#: ../../../../inc/themes/material-blue/account.inc:343
|
||||
msgid "Fecha Alta"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:297
|
||||
#: ../../../../inc/themes/material-blue/account.inc:346
|
||||
#: ../../../../inc/themes/material-blue/account.inc:347
|
||||
msgid "Creador"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:301
|
||||
#: ../../../../inc/themes/material-blue/account.inc:203
|
||||
#: ../../../../inc/themes/material-blue/account.inc:350
|
||||
#: ../../../../inc/themes/material-blue/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:351
|
||||
msgid "Grupo Principal"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:306
|
||||
#: ../../../../inc/themes/material-blue/account.inc:355
|
||||
#: ../../../../inc/themes/material-blue/account.inc:356
|
||||
msgid "Usuarios Secundarios"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:325
|
||||
#: ../../../../inc/themes/material-blue/account.inc:374
|
||||
#: ../../../../inc/themes/material-blue/account.inc:375
|
||||
msgid "Grupos Secundarios"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:345
|
||||
#: ../../../../inc/themes/material-blue/account.inc:394
|
||||
#: ../../../../inc/themes/material-blue/account.inc:395
|
||||
msgid "Fecha Edición"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:349
|
||||
#: ../../../../inc/themes/material-blue/account.inc:398
|
||||
#: ../../../../inc/themes/material-blue/account.inc:399
|
||||
msgid "Editor"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:376
|
||||
#: ../../../../inc/themes/material-blue/account.inc:461
|
||||
#: ../../../../inc/themes/material-blue/account.inc:462
|
||||
msgid "Restaurar cuenta desde este punto"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:388
|
||||
#: ../../../../inc/themes/classic/search.inc:143
|
||||
#: ../../../../inc/themes/material-blue/account.inc:428
|
||||
#: ../../../../inc/themes/material-blue/account.inc:429
|
||||
#: ../../../../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:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:442
|
||||
msgid "Ver Actual"
|
||||
msgstr ""
|
||||
|
||||
@@ -3156,14 +3194,14 @@ msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:415
|
||||
#: ../../../../inc/themes/classic/search.inc:155
|
||||
#: ../../../../inc/themes/material-blue/account.inc:451
|
||||
#: ../../../../inc/themes/material-blue/account.inc:452
|
||||
#: ../../../../inc/themes/material-blue/search.inc:166
|
||||
msgid "Modificar Cuenta"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:420
|
||||
#: ../../../../inc/themes/classic/search.inc:176
|
||||
#: ../../../../inc/themes/material-blue/account.inc:455
|
||||
#: ../../../../inc/themes/material-blue/account.inc:456
|
||||
#: ../../../../inc/themes/material-blue/search.inc:187
|
||||
msgid "Solicitar Modificación"
|
||||
msgstr ""
|
||||
@@ -3185,7 +3223,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:467
|
||||
#: ../../../../inc/themes/material-blue/account.inc:468
|
||||
#: ../../../../inc/themes/material-blue/categories.inc:72
|
||||
#: ../../../../inc/themes/material-blue/config.inc:425
|
||||
#: ../../../../inc/themes/material-blue/customers.inc:73
|
||||
@@ -3205,12 +3243,12 @@ msgid "Guardar"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:437
|
||||
#: ../../../../inc/themes/material-blue/account.inc:477
|
||||
#: ../../../../inc/themes/material-blue/account.inc:478
|
||||
msgid "Seleccionar grupos secundarios"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:480
|
||||
#: ../../../../inc/themes/material-blue/account.inc:481
|
||||
msgid "Seleccionar usuarios"
|
||||
msgstr ""
|
||||
|
||||
@@ -4022,7 +4060,6 @@ msgstr ""
|
||||
#: ../../../../inc/themes/material-blue/info.inc:44
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:35
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:58
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:24
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:30
|
||||
msgid "Servidor"
|
||||
@@ -4497,7 +4534,7 @@ msgid "Descripción de la petición"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/classic/request.inc:33
|
||||
#: ../../../../inc/themes/material-blue/account.inc:445
|
||||
#: ../../../../inc/themes/material-blue/account.inc:446
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:55
|
||||
#: ../../../../inc/themes/material-blue/mgmttabs.inc:13
|
||||
#: ../../../../inc/themes/material-blue/request.inc:42
|
||||
@@ -4823,11 +4860,15 @@ msgstr ""
|
||||
msgid "Histórico"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:42
|
||||
#: ../../../../inc/themes/material-blue/account.inc:34
|
||||
msgid "> Usar texto y crear nuevo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:43
|
||||
msgid "Seleccionar o escribir para crear uno nuevo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:113
|
||||
#: ../../../../inc/themes/material-blue/account.inc:114
|
||||
msgid "Clave (Repetir)"
|
||||
msgstr ""
|
||||
|
||||
|
||||
Binary file not shown.
@@ -8,8 +8,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sysPass\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-15 14:47+0100\n"
|
||||
"PO-Revision-Date: 2015-10-15 14:47+0100\n"
|
||||
"POT-Creation-Date: 2015-10-25 23:36+0100\n"
|
||||
"PO-Revision-Date: 2015-10-25 23:36+0100\n"
|
||||
"Last-Translator: nuxsmin <nuxsmin@syspass.org>\n"
|
||||
"Language-Team: <nuxsmin@syspass.org>\n"
|
||||
"Language: ru_RU\n"
|
||||
@@ -93,7 +93,7 @@ msgstr "Ошибочный ID"
|
||||
#: ../../../../ajax/ajax_accountSave.php:113
|
||||
#: ../../../../ajax/ajax_accountSave.php:263
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:535
|
||||
#: ../../../../ajax/ajax_configSave.php:324
|
||||
#: ../../../../ajax/ajax_configSave.php:334
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:113 ../../../../api.php:53
|
||||
msgid "Acción Inválida"
|
||||
msgstr "Ошибочное действие"
|
||||
@@ -229,7 +229,7 @@ msgstr "Редактировать категорию"
|
||||
#: ../../../../inc/Category.class.php:83
|
||||
#: ../../../../web/AccountsMgmtC.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:53
|
||||
#: ../../../../inc/themes/material-blue/account.inc:61
|
||||
#: ../../../../inc/themes/material-blue/account.inc:62
|
||||
msgid "Nueva Categoría"
|
||||
msgstr "Создать категорию"
|
||||
|
||||
@@ -287,7 +287,7 @@ msgstr "Необходим email"
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:145
|
||||
#: ../../../../ajax/ajax_appMgmtSave.php:160
|
||||
#: ../../../../ajax/ajax_backup.php:54
|
||||
#: ../../../../ajax/ajax_configSave.php:297
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_import.php:40 ../../../../ajax/ajax_migrate.php:40
|
||||
#: ../../../../ajax/ajax_userPrefsSave.php:88
|
||||
msgid "Ey, esto es una DEMO!!"
|
||||
@@ -370,7 +370,7 @@ msgstr "Ошибка при обновлении группы"
|
||||
#: ../../../../inc/themes/classic/account.inc:112
|
||||
#: ../../../../inc/themes/classic/groups.inc:24
|
||||
#: ../../../../inc/themes/classic/profiles.inc:85
|
||||
#: ../../../../inc/themes/material-blue/account.inc:137
|
||||
#: ../../../../inc/themes/material-blue/account.inc:138
|
||||
#: ../../../../inc/themes/material-blue/groups.inc:32
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:99
|
||||
msgid "Usuarios"
|
||||
@@ -586,170 +586,174 @@ msgstr "Найдено объектов"
|
||||
msgid "Modificar Configuración"
|
||||
msgstr "Изменить конфигурацию"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:105
|
||||
#: ../../../../ajax/ajax_configSave.php:101
|
||||
#, fuzzy
|
||||
msgid "El tamaño máximo por archivo es de 16MB"
|
||||
msgstr "Максимальный размер файла 16MB"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:118
|
||||
#: ../../../../ajax/ajax_configSave.php:109 ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr "Данный тип файла заблокирован"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:128
|
||||
#, fuzzy
|
||||
msgid "Faltan parámetros de Proxy"
|
||||
msgstr "Пропущены настройки Wiki"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:126
|
||||
#: ../../../../ajax/ajax_configSave.php:136
|
||||
#, fuzzy
|
||||
msgid "Proxy habiltado"
|
||||
msgstr "Пользователь заблокирован"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:130
|
||||
#: ../../../../ajax/ajax_configSave.php:140
|
||||
#, 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
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
#, fuzzy
|
||||
msgid "Sección"
|
||||
msgstr "Действие"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:133
|
||||
#: ../../../../ajax/ajax_configSave.php:143
|
||||
#: ../../../../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:143
|
||||
#: ../../../../ajax/ajax_configSave.php:153
|
||||
msgid "Faltan parámetros de Wiki"
|
||||
msgstr "Пропущены настройки Wiki"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:150
|
||||
#: ../../../../ajax/ajax_configSave.php:160
|
||||
#, fuzzy
|
||||
msgid "Wiki habiltada"
|
||||
msgstr "Отключена"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:154
|
||||
#: ../../../../ajax/ajax_configSave.php:164
|
||||
#, fuzzy
|
||||
msgid "Wiki deshabilitada"
|
||||
msgstr "Отключена"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:157
|
||||
#: ../../../../ajax/ajax_configSave.php:167
|
||||
#: ../../../../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:172
|
||||
#: ../../../../ajax/ajax_configSave.php:182
|
||||
msgid "Faltan parámetros de LDAP"
|
||||
msgstr "Пропущены настройки LDAP"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:184
|
||||
#: ../../../../ajax/ajax_configSave.php:194
|
||||
#, fuzzy
|
||||
msgid "LDAP habiltado"
|
||||
msgstr "Отключен"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:188
|
||||
#: ../../../../ajax/ajax_configSave.php:198
|
||||
#, fuzzy
|
||||
msgid "LDAP deshabilitado"
|
||||
msgstr "Отключен"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:191
|
||||
#: ../../../../ajax/ajax_configSave.php:201
|
||||
#: ../../../../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:206
|
||||
#: ../../../../ajax/ajax_configSave.php:216
|
||||
msgid "Faltan parámetros de Correo"
|
||||
msgstr "Пропущены настройки почты"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:221
|
||||
#: ../../../../ajax/ajax_configSave.php:231
|
||||
#, fuzzy
|
||||
msgid "Correo habiltado"
|
||||
msgstr "Email выслан"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:227
|
||||
#: ../../../../ajax/ajax_configSave.php:237
|
||||
#, fuzzy
|
||||
msgid "Correo deshabilitado"
|
||||
msgstr "Пользователь заблокирован"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:230
|
||||
#: ../../../../ajax/ajax_configSave.php:240
|
||||
#: ../../../../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:252
|
||||
#: ../../../../ajax/ajax_configSave.php:262
|
||||
msgid "Configuración actualizada"
|
||||
msgstr "Конфигурация изменена"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:261
|
||||
#: ../../../../ajax/ajax_configSave.php:307
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_viewpass.php:61
|
||||
#: ../../../../inc/Controller.class.php:169
|
||||
msgid "Clave maestra actualizada"
|
||||
msgstr "Мастер-пароль изменен"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:261
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_viewpass.php:61
|
||||
#: ../../../../inc/Controller.class.php:169
|
||||
msgid "Reinicie la sesión para cambiarla"
|
||||
msgstr "Перезайдите для вступления изменений"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:263
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
msgid "Clave maestra no indicada"
|
||||
msgstr "Необходим мастер-пароль"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:265
|
||||
#: ../../../../ajax/ajax_configSave.php:275
|
||||
msgid "Se ha de confirmar el cambio de clave"
|
||||
msgstr "Изменение пароля должно быть подтверждено"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:269
|
||||
#: ../../../../ajax/ajax_configSave.php:279
|
||||
msgid "Las claves son idénticas"
|
||||
msgstr "Пароли одинаковы"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:271
|
||||
#: ../../../../ajax/ajax_configSave.php:281
|
||||
msgid "Las claves maestras no coinciden"
|
||||
msgstr "Мастер-пароль не совпадает"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:273
|
||||
#: ../../../../ajax/ajax_configSave.php:283
|
||||
msgid "La clave maestra actual no coincide"
|
||||
msgstr "Текущий мастер-пароль ошибочен"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:282
|
||||
#: ../../../../ajax/ajax_configSave.php:292
|
||||
msgid "Errores al actualizar las claves de las cuentas"
|
||||
msgstr "Ошибка при изменении паролей учетной записи"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:288
|
||||
#: ../../../../ajax/ajax_configSave.php:298
|
||||
#, fuzzy
|
||||
msgid "Errores al actualizar las claves de las cuentas del histórico"
|
||||
msgstr "Ошибка при изменении паролей учетной записи"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:292
|
||||
#: ../../../../ajax/ajax_configSave.php:302
|
||||
#, fuzzy
|
||||
msgid "Errores al actualizar datos de campos personalizados"
|
||||
msgstr "Ошибка при изменении паролей учетной записи"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:305
|
||||
#: ../../../../ajax/ajax_configSave.php:315
|
||||
#: ../../../../inc/Account.class.php:512
|
||||
msgid "Actualizar Clave Maestra"
|
||||
msgstr "Изменить мастер-пароль"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:309
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
msgid "Error al guardar el hash de la clave maestra"
|
||||
msgstr "Ошибка при сохранении хеша мастер-пароля"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
#, fuzzy
|
||||
msgid "Generar Clave Temporal"
|
||||
msgstr "Сгенерировать пароль"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:317
|
||||
#: ../../../../ajax/ajax_configSave.php:327
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:87
|
||||
#: ../../../../inc/themes/classic/account.inc:86
|
||||
#: ../../../../inc/themes/classic/editpass.inc:25
|
||||
@@ -764,8 +768,8 @@ msgstr "Сгенерировать пароль"
|
||||
#: ../../../../inc/themes/classic/users.inc:75
|
||||
#: ../../../../inc/themes/classic/userspass.inc:8
|
||||
#: ../../../../inc/themes/classic/userspass.inc:11
|
||||
#: ../../../../inc/themes/material-blue/account.inc:98
|
||||
#: ../../../../inc/themes/material-blue/account.inc:103
|
||||
#: ../../../../inc/themes/material-blue/account.inc:99
|
||||
#: ../../../../inc/themes/material-blue/account.inc:104
|
||||
#: ../../../../inc/themes/material-blue/config.inc:395
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:26
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:31
|
||||
@@ -785,12 +789,12 @@ msgstr "Сгенерировать пароль"
|
||||
msgid "Clave"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:319
|
||||
#: ../../../../ajax/ajax_configSave.php:329
|
||||
#, fuzzy
|
||||
msgid "Clave Temporal Generada"
|
||||
msgstr "Сгенерированный пароль"
|
||||
|
||||
#: ../../../../ajax/ajax_configSave.php:321
|
||||
#: ../../../../ajax/ajax_configSave.php:331
|
||||
#, fuzzy
|
||||
msgid "Error al generar clave temporal"
|
||||
msgstr "Сгенерировать пароль"
|
||||
@@ -859,11 +863,12 @@ msgstr "Ошибка входа"
|
||||
#: ../../../../inc/themes/classic/request.inc:17
|
||||
#: ../../../../inc/themes/classic/search.inc:89
|
||||
#: ../../../../inc/themes/classic/tokens.inc:8
|
||||
#: ../../../../inc/themes/material-blue/account.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:84
|
||||
#: ../../../../inc/themes/material-blue/config.inc:381
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:22
|
||||
#: ../../../../inc/themes/material-blue/eventlog.inc:23
|
||||
#: ../../../../inc/themes/material-blue/info.inc:39
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/login.inc:11
|
||||
#: ../../../../inc/themes/material-blue/login.inc:34
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:61
|
||||
@@ -1168,7 +1173,7 @@ msgstr "Нет прав для доступа к данной учетной з
|
||||
#: ../../../../inc/themes/classic/account.inc:382
|
||||
#: ../../../../inc/themes/classic/profiles.inc:23
|
||||
#: ../../../../inc/themes/classic/search.inc:139
|
||||
#: ../../../../inc/themes/material-blue/account.inc:424
|
||||
#: ../../../../inc/themes/material-blue/account.inc:425
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:35
|
||||
#: ../../../../inc/themes/material-blue/search.inc:149
|
||||
msgid "Ver Clave"
|
||||
@@ -1285,7 +1290,7 @@ msgstr "ОШИБКА: Сбой операции"
|
||||
#: ../../../../web/AccountC.class.php:358
|
||||
#: ../../../../inc/themes/classic/account.inc:369
|
||||
#: ../../../../inc/themes/classic/search.inc:167
|
||||
#: ../../../../inc/themes/material-blue/account.inc:418
|
||||
#: ../../../../inc/themes/material-blue/account.inc:419
|
||||
#: ../../../../inc/themes/material-blue/search.inc:178
|
||||
msgid "Eliminar Cuenta"
|
||||
msgstr "Удалить учетную запись"
|
||||
@@ -1417,7 +1422,7 @@ msgstr "Показать историю"
|
||||
#: ../../../../inc/Acl.class.php:135
|
||||
#: ../../../../inc/themes/classic/account.inc:191
|
||||
#: ../../../../inc/themes/classic/profiles.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:233
|
||||
#: ../../../../inc/themes/material-blue/account.inc:234
|
||||
#: ../../../../inc/themes/material-blue/config.inc:261
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:60
|
||||
msgid "Archivos"
|
||||
@@ -1621,7 +1626,7 @@ msgstr "Ошибка при создании категории"
|
||||
#: ../../../../web/SearchC.class.php:299
|
||||
#: ../../../../inc/themes/classic/account.inc:42
|
||||
#: ../../../../inc/themes/classic/search.inc:83
|
||||
#: ../../../../inc/themes/material-blue/account.inc:50
|
||||
#: ../../../../inc/themes/material-blue/account.inc:51
|
||||
#: ../../../../inc/themes/material-blue/search.inc:85
|
||||
msgid "Categoría"
|
||||
msgstr "Категория"
|
||||
@@ -1813,7 +1818,7 @@ msgstr "Заказчики"
|
||||
#: ../../../../inc/CustomFieldsBase.class.php:110
|
||||
#: ../../../../inc/themes/classic/account.inc:143
|
||||
#: ../../../../inc/themes/classic/profiles.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:169
|
||||
#: ../../../../inc/themes/material-blue/account.inc:170
|
||||
#: ../../../../inc/themes/material-blue/profiles.inc:104
|
||||
msgid "Grupos"
|
||||
msgstr "Группы"
|
||||
@@ -2514,6 +2519,13 @@ msgstr "Изменить пользователя"
|
||||
msgid "Eliminar Usuario"
|
||||
msgstr "Удалить пользователя"
|
||||
|
||||
#: ../../../../inc/UserLdap.class.php:68
|
||||
#: ../../../../web/UsersMgmtC.class.php:109
|
||||
#: ../../../../inc/themes/classic/users.inc:28
|
||||
#: ../../../../inc/themes/material-blue/users.inc:34
|
||||
msgid "Usuario de LDAP"
|
||||
msgstr "Пользователь LDAP"
|
||||
|
||||
#: ../../../../inc/UserLdap.class.php:78
|
||||
msgid "Activación Cuenta"
|
||||
msgstr "Активация учетной записи"
|
||||
@@ -2666,10 +2678,6 @@ msgstr "Слишком много файлов"
|
||||
msgid "No es posible guardar el archivo \"%s\" Tamaño máximo:"
|
||||
msgstr "Сохранить файл невозможно.<br>Максимальный размер:"
|
||||
|
||||
#: ../../../../js/strings.js.php:46
|
||||
msgid "Extensión no permitida"
|
||||
msgstr "Данный тип файла заблокирован"
|
||||
|
||||
#: ../../../../js/strings.js.php:47
|
||||
msgid "Vaciar el registro de eventos?"
|
||||
msgstr "Очистить журнал событий?"
|
||||
@@ -2761,11 +2769,29 @@ msgstr "Действие"
|
||||
#: ../../../../inc/themes/classic/account.inc:136
|
||||
#: ../../../../inc/themes/classic/account.inc:167
|
||||
#: ../../../../inc/themes/classic/account.inc:451
|
||||
#: ../../../../inc/themes/classic/config.inc:70
|
||||
#: ../../../../inc/themes/classic/config.inc:86
|
||||
#: ../../../../inc/themes/classic/config.inc:102
|
||||
#: ../../../../inc/themes/classic/config.inc:118
|
||||
#: ../../../../inc/themes/classic/config.inc:134
|
||||
#: ../../../../inc/themes/classic/config.inc:150
|
||||
#: ../../../../inc/themes/classic/config.inc:166
|
||||
#: ../../../../inc/themes/classic/config.inc:182
|
||||
#: ../../../../inc/themes/classic/config.inc:255
|
||||
#: ../../../../inc/themes/classic/config.inc:274
|
||||
#: ../../../../inc/themes/classic/customfields.inc:46
|
||||
#: ../../../../inc/themes/classic/install.inc:99
|
||||
#: ../../../../inc/themes/classic/ldap.inc:25
|
||||
#: ../../../../inc/themes/classic/ldap.inc:195
|
||||
#: ../../../../inc/themes/classic/mail.inc:14
|
||||
#: ../../../../inc/themes/classic/mail.inc:40
|
||||
#: ../../../../inc/themes/classic/mail.inc:88
|
||||
#: ../../../../inc/themes/classic/preferences.inc:48
|
||||
#: ../../../../inc/themes/classic/preferences.inc:82
|
||||
#: ../../../../inc/themes/classic/preferences.inc:99
|
||||
#: ../../../../inc/themes/classic/preferences.inc:116
|
||||
#: ../../../../inc/themes/classic/security.inc:26
|
||||
#: ../../../../inc/themes/classic/wiki.inc:20
|
||||
msgid "SI"
|
||||
msgstr "ДА"
|
||||
|
||||
@@ -2773,15 +2799,33 @@ msgstr "ДА"
|
||||
#: ../../../../inc/themes/classic/account.inc:136
|
||||
#: ../../../../inc/themes/classic/account.inc:167
|
||||
#: ../../../../inc/themes/classic/account.inc:449
|
||||
#: ../../../../inc/themes/classic/config.inc:70
|
||||
#: ../../../../inc/themes/classic/config.inc:86
|
||||
#: ../../../../inc/themes/classic/config.inc:102
|
||||
#: ../../../../inc/themes/classic/config.inc:118
|
||||
#: ../../../../inc/themes/classic/config.inc:134
|
||||
#: ../../../../inc/themes/classic/config.inc:150
|
||||
#: ../../../../inc/themes/classic/config.inc:166
|
||||
#: ../../../../inc/themes/classic/config.inc:182
|
||||
#: ../../../../inc/themes/classic/config.inc:255
|
||||
#: ../../../../inc/themes/classic/config.inc:274
|
||||
#: ../../../../inc/themes/classic/customfields.inc:46
|
||||
#: ../../../../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/ldap.inc:25
|
||||
#: ../../../../inc/themes/classic/ldap.inc:195
|
||||
#: ../../../../inc/themes/classic/mail.inc:14
|
||||
#: ../../../../inc/themes/classic/mail.inc:40
|
||||
#: ../../../../inc/themes/classic/mail.inc:88
|
||||
#: ../../../../inc/themes/classic/preferences.inc:48
|
||||
#: ../../../../inc/themes/classic/preferences.inc:82
|
||||
#: ../../../../inc/themes/classic/preferences.inc:99
|
||||
#: ../../../../inc/themes/classic/preferences.inc:116
|
||||
#: ../../../../inc/themes/classic/security.inc:26
|
||||
#: ../../../../inc/themes/classic/tokens.inc:36
|
||||
#: ../../../../inc/themes/classic/wiki.inc:20
|
||||
msgid "NO"
|
||||
msgstr "НЕТ"
|
||||
|
||||
@@ -2813,7 +2857,7 @@ msgstr "Детали учетной записи"
|
||||
|
||||
#: ../../../../web/AccountC.class.php:474
|
||||
#: ../../../../inc/themes/classic/account.inc:396
|
||||
#: ../../../../inc/themes/material-blue/account.inc:435
|
||||
#: ../../../../inc/themes/material-blue/account.inc:436
|
||||
msgid "Modificar Clave de Cuenta"
|
||||
msgstr "Изменить пароль учетной записи"
|
||||
|
||||
@@ -3052,7 +3096,7 @@ msgstr "Сортировать по URL / IP"
|
||||
#: ../../../../inc/themes/classic/editpass.inc:16
|
||||
#: ../../../../inc/themes/classic/request.inc:13
|
||||
#: ../../../../inc/themes/classic/search.inc:96
|
||||
#: ../../../../inc/themes/material-blue/account.inc:69
|
||||
#: ../../../../inc/themes/material-blue/account.inc:70
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:17
|
||||
#: ../../../../inc/themes/material-blue/request.inc:15
|
||||
#: ../../../../inc/themes/material-blue/search.inc:98
|
||||
@@ -3067,12 +3111,6 @@ msgstr "Настройки"
|
||||
msgid "Admin Cuentas"
|
||||
msgstr "Администратор учетных записей"
|
||||
|
||||
#: ../../../../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:113
|
||||
#: ../../../../inc/themes/classic/users.inc:113
|
||||
#: ../../../../inc/themes/material-blue/users.inc:151
|
||||
@@ -3156,12 +3194,12 @@ msgid "Buscar en desplegable o introducir"
|
||||
msgstr "Выберите снизу или введите"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:64
|
||||
#: ../../../../inc/themes/material-blue/account.inc:75
|
||||
#: ../../../../inc/themes/material-blue/account.inc:76
|
||||
msgid "URL o IP de acceso"
|
||||
msgstr "URL или IP доступа"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:76
|
||||
#: ../../../../inc/themes/material-blue/account.inc:89
|
||||
#: ../../../../inc/themes/material-blue/account.inc:90
|
||||
msgid "Usuario de acceso"
|
||||
msgstr "Пользователь доступа"
|
||||
|
||||
@@ -3171,7 +3209,7 @@ msgstr "Пользователь доступа"
|
||||
#: ../../../../inc/themes/classic/users.inc:83
|
||||
#: ../../../../inc/themes/classic/userspass.inc:19
|
||||
#: ../../../../inc/themes/classic/userspass.inc:21
|
||||
#: ../../../../inc/themes/material-blue/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:109
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:36
|
||||
#: ../../../../inc/themes/material-blue/install.inc:67
|
||||
#: ../../../../inc/themes/material-blue/passreset.inc:36
|
||||
@@ -3185,120 +3223,120 @@ msgstr "Подтверждение пароля"
|
||||
#: ../../../../inc/themes/classic/account.inc:100
|
||||
#: ../../../../inc/themes/classic/search.inc:112
|
||||
#: ../../../../inc/themes/classic/users.inc:91
|
||||
#: ../../../../inc/themes/material-blue/account.inc:119
|
||||
#: ../../../../inc/themes/material-blue/account.inc:120
|
||||
#: ../../../../inc/themes/material-blue/search.inc:118
|
||||
#: ../../../../inc/themes/material-blue/users.inc:116
|
||||
msgid "Notas"
|
||||
msgstr "Заметки"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:102
|
||||
#: ../../../../inc/themes/material-blue/account.inc:124
|
||||
#: ../../../../inc/themes/material-blue/account.inc:125
|
||||
#: ../../../../inc/themes/material-blue/users.inc:123
|
||||
msgid "Notas sobre la cuenta"
|
||||
msgstr "Заметки по учетной записи"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:108
|
||||
#: ../../../../inc/themes/material-blue/account.inc:133
|
||||
#: ../../../../inc/themes/material-blue/account.inc:134
|
||||
#: ../../../../inc/themes/material-blue/search.inc:111
|
||||
msgid "Permisos"
|
||||
msgstr "Разрешения"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:135
|
||||
#: ../../../../inc/themes/classic/account.inc:166
|
||||
#: ../../../../inc/themes/material-blue/account.inc:162
|
||||
#: ../../../../inc/themes/material-blue/account.inc:194
|
||||
#: ../../../../inc/themes/material-blue/account.inc:163
|
||||
#: ../../../../inc/themes/material-blue/account.inc:195
|
||||
msgid "Hablitar edición"
|
||||
msgstr "Разрешить изменения"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
msgid "Soltar archivos aquí (max. 5) o click para seleccionar"
|
||||
msgstr "Перетащите файлы сюда (не более 5) или нажмите для выбора"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:204
|
||||
#: ../../../../inc/themes/classic/config.inc:212
|
||||
#: ../../../../inc/themes/material-blue/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:247
|
||||
#: ../../../../inc/themes/material-blue/config.inc:309
|
||||
msgid "Tamaño máximo de archivo"
|
||||
msgstr "Максимальный размер файла"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:216
|
||||
#: ../../../../inc/themes/material-blue/account.inc:258
|
||||
#: ../../../../inc/themes/material-blue/account.inc:259
|
||||
msgid "Historial"
|
||||
msgstr "История"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:235
|
||||
#: ../../../../inc/themes/material-blue/account.inc:278
|
||||
#: ../../../../inc/themes/material-blue/account.inc:279
|
||||
msgid "Seleccionar fecha"
|
||||
msgstr "Выберите дату"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:244
|
||||
#: ../../../../inc/themes/classic/users.inc:164
|
||||
#: ../../../../inc/themes/material-blue/account.inc:287
|
||||
#: ../../../../inc/themes/material-blue/account.inc:288
|
||||
#: ../../../../inc/themes/material-blue/users.inc:208
|
||||
msgid "Última Modificación"
|
||||
msgstr "Последнее изменение"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:246
|
||||
#: ../../../../inc/themes/material-blue/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:290
|
||||
msgid "por"
|
||||
msgstr "выполнено"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:289
|
||||
#: ../../../../inc/themes/material-blue/account.inc:338
|
||||
#: ../../../../inc/themes/material-blue/account.inc:339
|
||||
msgid "Visitas"
|
||||
msgstr "Просмотров"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:293
|
||||
#: ../../../../inc/themes/material-blue/account.inc:342
|
||||
#: ../../../../inc/themes/material-blue/account.inc:343
|
||||
msgid "Fecha Alta"
|
||||
msgstr "Дата создания"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:297
|
||||
#: ../../../../inc/themes/material-blue/account.inc:346
|
||||
#: ../../../../inc/themes/material-blue/account.inc:347
|
||||
msgid "Creador"
|
||||
msgstr "Создатель"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:301
|
||||
#: ../../../../inc/themes/material-blue/account.inc:203
|
||||
#: ../../../../inc/themes/material-blue/account.inc:350
|
||||
#: ../../../../inc/themes/material-blue/account.inc:204
|
||||
#: ../../../../inc/themes/material-blue/account.inc:351
|
||||
msgid "Grupo Principal"
|
||||
msgstr "Основная группа"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:306
|
||||
#: ../../../../inc/themes/material-blue/account.inc:355
|
||||
#: ../../../../inc/themes/material-blue/account.inc:356
|
||||
msgid "Usuarios Secundarios"
|
||||
msgstr "Вторичные пользователи"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:325
|
||||
#: ../../../../inc/themes/material-blue/account.inc:374
|
||||
#: ../../../../inc/themes/material-blue/account.inc:375
|
||||
msgid "Grupos Secundarios"
|
||||
msgstr "Вторичные группы"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:345
|
||||
#: ../../../../inc/themes/material-blue/account.inc:394
|
||||
#: ../../../../inc/themes/material-blue/account.inc:395
|
||||
msgid "Fecha Edición"
|
||||
msgstr "Дата изменения"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:349
|
||||
#: ../../../../inc/themes/material-blue/account.inc:398
|
||||
#: ../../../../inc/themes/material-blue/account.inc:399
|
||||
msgid "Editor"
|
||||
msgstr "Изменил"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:376
|
||||
#: ../../../../inc/themes/material-blue/account.inc:461
|
||||
#: ../../../../inc/themes/material-blue/account.inc:462
|
||||
msgid "Restaurar cuenta desde este punto"
|
||||
msgstr "Восстановить учетную запись из текущей точки"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:388
|
||||
#: ../../../../inc/themes/classic/search.inc:143
|
||||
#: ../../../../inc/themes/material-blue/account.inc:428
|
||||
#: ../../../../inc/themes/material-blue/account.inc:429
|
||||
#: ../../../../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:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:442
|
||||
msgid "Ver Actual"
|
||||
msgstr "Просмотр текущей версии"
|
||||
|
||||
@@ -3312,14 +3350,14 @@ msgstr "Назад"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:415
|
||||
#: ../../../../inc/themes/classic/search.inc:155
|
||||
#: ../../../../inc/themes/material-blue/account.inc:451
|
||||
#: ../../../../inc/themes/material-blue/account.inc:452
|
||||
#: ../../../../inc/themes/material-blue/search.inc:166
|
||||
msgid "Modificar Cuenta"
|
||||
msgstr "Редактировать учетную запись"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:420
|
||||
#: ../../../../inc/themes/classic/search.inc:176
|
||||
#: ../../../../inc/themes/material-blue/account.inc:455
|
||||
#: ../../../../inc/themes/material-blue/account.inc:456
|
||||
#: ../../../../inc/themes/material-blue/search.inc:187
|
||||
msgid "Solicitar Modificación"
|
||||
msgstr "Запросить изменение"
|
||||
@@ -3341,7 +3379,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:467
|
||||
#: ../../../../inc/themes/material-blue/account.inc:468
|
||||
#: ../../../../inc/themes/material-blue/categories.inc:72
|
||||
#: ../../../../inc/themes/material-blue/config.inc:425
|
||||
#: ../../../../inc/themes/material-blue/customers.inc:73
|
||||
@@ -3361,12 +3399,12 @@ msgid "Guardar"
|
||||
msgstr "Сохранить"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:437
|
||||
#: ../../../../inc/themes/material-blue/account.inc:477
|
||||
#: ../../../../inc/themes/material-blue/account.inc:478
|
||||
msgid "Seleccionar grupos secundarios"
|
||||
msgstr "Выберите вторичные группы"
|
||||
|
||||
#: ../../../../inc/themes/classic/account.inc:441
|
||||
#: ../../../../inc/themes/material-blue/account.inc:480
|
||||
#: ../../../../inc/themes/material-blue/account.inc:481
|
||||
msgid "Seleccionar usuarios"
|
||||
msgstr "Выберите пользователей"
|
||||
|
||||
@@ -4224,7 +4262,6 @@ msgstr ""
|
||||
#: ../../../../inc/themes/material-blue/info.inc:44
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:35
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:58
|
||||
#: ../../../../inc/themes/material-blue/ldap.inc:86
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:24
|
||||
#: ../../../../inc/themes/material-blue/mail.inc:30
|
||||
msgid "Servidor"
|
||||
@@ -4714,7 +4751,7 @@ msgid "Descripción de la petición"
|
||||
msgstr "Описание запроса"
|
||||
|
||||
#: ../../../../inc/themes/classic/request.inc:33
|
||||
#: ../../../../inc/themes/material-blue/account.inc:445
|
||||
#: ../../../../inc/themes/material-blue/account.inc:446
|
||||
#: ../../../../inc/themes/material-blue/editpass.inc:55
|
||||
#: ../../../../inc/themes/material-blue/mgmttabs.inc:13
|
||||
#: ../../../../inc/themes/material-blue/request.inc:42
|
||||
@@ -5057,11 +5094,15 @@ msgstr "Удалить фильтр"
|
||||
msgid "Histórico"
|
||||
msgstr "Импорт истории учетных записей"
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:42
|
||||
#: ../../../../inc/themes/material-blue/account.inc:34
|
||||
msgid "> Usar texto y crear nuevo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:43
|
||||
msgid "Seleccionar o escribir para crear uno nuevo"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../inc/themes/material-blue/account.inc:113
|
||||
#: ../../../../inc/themes/material-blue/account.inc:114
|
||||
#, fuzzy
|
||||
msgid "Clave (Repetir)"
|
||||
msgstr "Подтверждение пароля"
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
<td class="descField"><?php echo _('Cliente'); ?></td>
|
||||
<td class="valField">
|
||||
<?php if ($showform): ?>
|
||||
<select id="selCustomer" name="customerId" class="select-box sel-chosen-customer">
|
||||
<option value="0"></option>
|
||||
<select id="selCustomer" name="customerId" class="select-box sel-chosen-customer" required>
|
||||
<option value=""></option>
|
||||
<?php foreach ($customers as $id => $name): ?>
|
||||
<option
|
||||
value="<?php echo $id; ?>" <?php echo ($gotData && $id == $accountData->account_customerId) ? 'selected' : ''; ?>><?php echo $name; ?></option>
|
||||
@@ -42,8 +42,8 @@
|
||||
<td class="descField"><?php echo _('Categoría'); ?></td>
|
||||
<td class="valField">
|
||||
<?php if ($showform): ?>
|
||||
<select id="selCategory" name="categoryId" class="select-box sel-chosen-category">
|
||||
<option value="0"></option>
|
||||
<select id="selCategory" name="categoryId" class="select-box sel-chosen-category" required>
|
||||
<option value=""></option>
|
||||
<?php foreach ($categories as $id => $name): ?>
|
||||
<option
|
||||
value="<?php echo $id; ?>" <?php echo ($gotData && $id == $accountData->account_categoryId) ? 'selected' : ''; ?>><?php echo $name; ?></option>
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<td class="descField"><?php echo _('Usuarios'); ?></td>
|
||||
<td class="valField">
|
||||
<select id="selUsers" name="users[]" multiple="multiple" class="select-box sel-chosen-user">
|
||||
<option value="0"></option>
|
||||
<option value=""></option>
|
||||
<?php foreach ($users as $id => $name): ?>
|
||||
<?php $selected = (in_array($id, $groupUsers)) ? 'selected' : ''; ?>
|
||||
<option
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<td class="descField"><?php echo _('Usuario'); ?></td>
|
||||
<td class="valField">
|
||||
<select id="selUsers" name="users" class="select-box sel-chosen-user">
|
||||
<option value="0"></option>
|
||||
<option value=""></option>
|
||||
<?php foreach ($users as $id => $name): ?>
|
||||
<?php $selected = ($gotData && $id == $token->authtoken_userId) ? 'selected' : ''; ?>
|
||||
<option value="<?php echo $id; ?>" <?php echo $selected; ?>><?php echo $name; ?></option>
|
||||
@@ -21,7 +21,7 @@
|
||||
<td class="valField">
|
||||
<select id="selActions" name="actions"
|
||||
class="select-box sel-chosen-action">
|
||||
<option value="0"></option>
|
||||
<option value=""></option>
|
||||
<?php foreach ($actions as $id => $name): ?>
|
||||
<?php $selected = ($gotData && $id == $token->authtoken_actionId) ? 'selected' : ''; ?>
|
||||
<option value="<?php echo $id; ?>" <?php echo $selected; ?>><?php echo $name; ?></option>
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
<td class="descField"><?php echo _('Perfil'); ?></td>
|
||||
<td class="valField">
|
||||
<select id="selProfile" name="profileid" class="select-box sel-chosen-profile" <?php echo $isDisabled; ?> required>
|
||||
<option value="0"></option>
|
||||
<option value=""></option>
|
||||
<?php foreach ($profiles as $id => $name): ?>
|
||||
<option value="<?php echo $id; ?>" <?php echo ($id == $user['user_profileId']) ? 'selected' : ''; ?>><?php echo $name; ?></option>
|
||||
<?php endforeach; ?>
|
||||
@@ -49,7 +49,7 @@
|
||||
<td class="descField"><?php echo _('Grupo'); ?></td>
|
||||
<td class="valField">
|
||||
<select id="selGroup" name="groupid" class="select-box sel-chosen-usergroup" <?php echo $isDisabled; ?> required>
|
||||
<option value="0"></option>
|
||||
<option value=""></option>
|
||||
<?php foreach ($groups as $id => $name): ?>
|
||||
<option value="<?php echo $id; ?>" <?php echo ($id == $user['user_groupId']) ? 'selected' : ''; ?>><?php echo $name; ?></option>
|
||||
<?php endforeach; ?>
|
||||
|
||||
@@ -29,8 +29,9 @@
|
||||
<td class="descField"><?php echo _('Cliente'); ?></td>
|
||||
<td class="valField">
|
||||
<?php if ($showform): ?>
|
||||
<select id="selCustomer" name="customerId" class="select-box sel-chosen-customer" required>
|
||||
<option value="0"></option>
|
||||
<select id="selCustomer" name="customerId" class="select-box sel-chosen-customer sel-chosen-deselect" required="required">
|
||||
<option value=""></option>
|
||||
<option value="0"><?php echo _('> Usar texto y crear nuevo'); ?></option>
|
||||
<?php foreach ($customers as $id => $name): ?>
|
||||
<option
|
||||
value="<?php echo $id; ?>" <?php echo ($gotData && $id == $accountData->account_customerId) ? 'selected' : ''; ?>><?php echo $name; ?></option>
|
||||
@@ -50,8 +51,8 @@
|
||||
<td class="descField"><?php echo _('Categoría'); ?></td>
|
||||
<td class="valField">
|
||||
<?php if ($showform): ?>
|
||||
<select id="selCategory" name="categoryId" class="select-box sel-chosen-category" required>
|
||||
<option value="0"></option>
|
||||
<select id="selCategory" name="categoryId" class="select-box sel-chosen-category" required="required">
|
||||
<option value=""></option>
|
||||
<?php foreach ($categories as $id => $name): ?>
|
||||
<option
|
||||
value="<?php echo $id; ?>" <?php echo ($gotData && $id == $accountData->account_categoryId) ? 'selected' : ''; ?>><?php echo $name; ?></option>
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
<td class="descField"><?php echo _('Usuarios'); ?></td>
|
||||
<td class="valField">
|
||||
<select id="selUsers" name="users[]" multiple="multiple" class="select-box sel-chosen-user">
|
||||
<option value="0"></option>
|
||||
<option value=""></option>
|
||||
<?php foreach ($users as $id => $name): ?>
|
||||
<?php $selected = (in_array($id, $groupUsers)) ? 'selected' : ''; ?>
|
||||
<option
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
<tr>
|
||||
<td class="descField"><?php echo _('Usuario'); ?></td>
|
||||
<td class="valField">
|
||||
<select id="selUsers" name="users" class="select-box sel-chosen-user">
|
||||
<option value="0"></option>
|
||||
<select id="selUsers" name="users" class="select-box sel-chosen-user" required>
|
||||
<option value=""></option>
|
||||
<?php foreach ($users as $id => $name): ?>
|
||||
<?php $selected = ($gotData && $id == $token->authtoken_userId) ? 'selected' : ''; ?>
|
||||
<option value="<?php echo $id; ?>" <?php echo $selected; ?>><?php echo $name; ?></option>
|
||||
@@ -20,8 +20,8 @@
|
||||
<td class="descField"><?php echo _('Acción'); ?></td>
|
||||
<td class="valField">
|
||||
<select id="selActions" name="actions"
|
||||
class="select-box sel-chosen-action">
|
||||
<option value="0"></option>
|
||||
class="select-box sel-chosen-action" required>
|
||||
<option value=""></option>
|
||||
<?php foreach ($actions as $id => $name): ?>
|
||||
<?php $selected = ($gotData &&$id == $token->authtoken_actionId) ? 'selected' : ''; ?>
|
||||
<option value="<?php echo $id; ?>" <?php echo $selected; ?>><?php echo $name; ?></option>
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
<td class="valField">
|
||||
<select id="selProfile" name="profileid"
|
||||
class="select-box sel-chosen-profile" required <?php echo $isDisabled; ?>>
|
||||
<option value="0"></option>
|
||||
<option value=""></option>
|
||||
<?php foreach ($profiles as $id => $name): ?>
|
||||
<option
|
||||
value="<?php echo $id; ?>" <?php echo ($id == $user['user_profileId']) ? 'selected' : ''; ?>><?php echo $name; ?></option>
|
||||
@@ -58,7 +58,7 @@
|
||||
<td class="valField">
|
||||
<select id="selGroup" name="groupid"
|
||||
class="select-box sel-chosen-usergroup" required <?php echo $isDisabled; ?>>
|
||||
<option value="0"></option>
|
||||
<option value=""></option>
|
||||
<?php foreach ($groups as $id => $name): ?>
|
||||
<option
|
||||
value="<?php echo $id; ?>" <?php echo ($id == $user['user_groupId']) ? 'selected' : ''; ?>><?php echo $name; ?></option>
|
||||
|
||||
14
js/chosen.jquery.min.js
vendored
14
js/chosen.jquery.min.js
vendored
File diff suppressed because one or more lines are too long
8
js/clipboard.min.js
vendored
8
js/clipboard.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -308,6 +308,7 @@ sysPass.Util.Common = function () {
|
||||
title: LANG[47],
|
||||
width: 'auto',
|
||||
open: function () {
|
||||
var thisDialog = $(this);
|
||||
var content;
|
||||
var pass = '';
|
||||
var clipboardUserButton =
|
||||
@@ -335,25 +336,23 @@ sysPass.Util.Common = function () {
|
||||
} else {
|
||||
content = '<span class="altTxtRed">' + json.description + '</span>';
|
||||
|
||||
$(this).dialog("option", "buttons",
|
||||
thisDialog.dialog("option", "buttons",
|
||||
[{
|
||||
text: "Ok",
|
||||
icons: {primary: "ui-icon-close"},
|
||||
click: function () {
|
||||
$(this).dialog("close");
|
||||
thisDialog.dialog("close");
|
||||
}
|
||||
}]
|
||||
);
|
||||
}
|
||||
|
||||
$(this).html(content);
|
||||
thisDialog.html(content);
|
||||
|
||||
// Recentrar después de insertar el contenido
|
||||
$(this).dialog('option', 'position', 'center');
|
||||
thisDialog.dialog('option', 'position', 'center');
|
||||
|
||||
// Cerrar Dialog a los 30s
|
||||
var thisDialog = $(this);
|
||||
|
||||
$(this).parent().on('mouseleave', function () {
|
||||
clearTimeout(timeout);
|
||||
timeout = setTimeout(function () {
|
||||
@@ -361,7 +360,7 @@ sysPass.Util.Common = function () {
|
||||
}, 30000);
|
||||
});
|
||||
},
|
||||
// Forzar la eliminación del objeto para que ZeroClipboard siga funcionando al abrirlo de nuevo
|
||||
// Forzar la eliminación del objeto para que siga copiando al protapapeles al abrirlo de nuevo
|
||||
close: function () {
|
||||
clearTimeout(timeout);
|
||||
$(this).dialog("destroy");
|
||||
@@ -983,7 +982,7 @@ sysPass.Util.Common = function () {
|
||||
'ldap_base': ldapBase,
|
||||
'ldap_group': ldapGroup,
|
||||
'ldap_binduser': ldapBindUser,
|
||||
'ldap_bindpass': (PK !== '' ) ? encrypt.encrypt(ldapBindPass) : ldapBindPass,
|
||||
'ldap_bindpass': ldapBindPass,
|
||||
'isAjax': 1,
|
||||
'sk': sk
|
||||
};
|
||||
@@ -1018,6 +1017,7 @@ sysPass.Util.Common = function () {
|
||||
|
||||
$(".sel-chosen-usergroup").chosen({
|
||||
placeholder_text_single: LANG[21],
|
||||
placeholder_text_multiple: LANG[21],
|
||||
disable_search_threshold: searchTreshold,
|
||||
no_results_text: LANG[26],
|
||||
width: selectWidth
|
||||
@@ -1025,6 +1025,7 @@ sysPass.Util.Common = function () {
|
||||
|
||||
$(".sel-chosen-user").chosen({
|
||||
placeholder_text_single: LANG[22],
|
||||
placeholder_text_multiple: LANG[22],
|
||||
disable_search_threshold: searchTreshold,
|
||||
no_results_text: LANG[26],
|
||||
width: selectWidth
|
||||
@@ -1043,6 +1044,7 @@ sysPass.Util.Common = function () {
|
||||
$(this).chosen({
|
||||
allow_single_deselect: deselect,
|
||||
placeholder_text_single: LANG[24],
|
||||
placeholder_text_multiple: LANG[24],
|
||||
disable_search_threshold: searchTreshold,
|
||||
no_results_text: LANG[26],
|
||||
width: selectWidth
|
||||
@@ -1055,6 +1057,7 @@ sysPass.Util.Common = function () {
|
||||
$(this).chosen({
|
||||
allow_single_deselect: deselect,
|
||||
placeholder_text_single: LANG[25],
|
||||
placeholder_text_multiple: LANG[25],
|
||||
disable_search_threshold: searchTreshold,
|
||||
no_results_text: LANG[26],
|
||||
width: selectWidth
|
||||
@@ -1067,6 +1070,7 @@ sysPass.Util.Common = function () {
|
||||
$(this).chosen({
|
||||
allow_single_deselect: deselect,
|
||||
placeholder_text_single: LANG[39],
|
||||
placeholder_text_multiple: LANG[39],
|
||||
disable_search_threshold: searchTreshold,
|
||||
no_results_text: LANG[26],
|
||||
width: selectWidth
|
||||
|
||||
2
js/functions.min.js
vendored
2
js/functions.min.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user