diff --git a/CHANGELOG b/CHANGELOG index 4503c752..eab9cbb5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/CHANGELOG-ES b/CHANGELOG-ES index 4bcb4af1..9a24f452 100644 --- a/CHANGELOG-ES +++ b/CHANGELOG-ES @@ -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 diff --git a/ajax/ajax_accountSave.php b/ajax/ajax_accountSave.php index bde4f652..2d97340e 100644 --- a/ajax/ajax_accountSave.php +++ b/ajax/ajax_accountSave.php @@ -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; diff --git a/css/chosen-custom.min.css b/css/chosen-custom.min.css index e61eb364..89bb5c45 100644 --- a/css/chosen-custom.min.css +++ b/css/chosen-custom.min.css @@ -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)} \ No newline at end of file +*/.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} \ No newline at end of file diff --git a/inc/UserLdap.class.php b/inc/UserLdap.class.php index 608ed25c..f077778f 100644 --- a/inc/UserLdap.class.php +++ b/inc/UserLdap.class.php @@ -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; diff --git a/inc/Util.class.php b/inc/Util.class.php index c3ac845c..661814f1 100644 --- a/inc/Util.class.php +++ b/inc/Util.class.php @@ -309,7 +309,7 @@ class Util */ public static function getVersion($retBuild = false) { - $build = '07'; + $build = '08'; $version = array(1, 2, 0); if ($retBuild) { diff --git a/inc/locales/ca_ES/LC_MESSAGES/messages.mo b/inc/locales/ca_ES/LC_MESSAGES/messages.mo index 94e6e8db..feb4fffc 100644 Binary files a/inc/locales/ca_ES/LC_MESSAGES/messages.mo and b/inc/locales/ca_ES/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/ca_ES/LC_MESSAGES/messages.po b/inc/locales/ca_ES/LC_MESSAGES/messages.po index 091e195f..abc690eb 100644 --- a/inc/locales/ca_ES/LC_MESSAGES/messages.po +++ b/inc/locales/ca_ES/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-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 \n" "Language-Team: \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)" diff --git a/inc/locales/de_DE/LC_MESSAGES/messages.mo b/inc/locales/de_DE/LC_MESSAGES/messages.mo index 194251bd..f63709c1 100644 Binary files a/inc/locales/de_DE/LC_MESSAGES/messages.mo and b/inc/locales/de_DE/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/de_DE/LC_MESSAGES/messages.po b/inc/locales/de_DE/LC_MESSAGES/messages.po index 3dc6d662..21c6b69a 100644 --- a/inc/locales/de_DE/LC_MESSAGES/messages.po +++ b/inc/locales/de_DE/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-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 \n" "Language-Team: \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" diff --git a/inc/locales/en_US/LC_MESSAGES/messages.mo b/inc/locales/en_US/LC_MESSAGES/messages.mo index 84997a3a..f45a0366 100644 Binary files a/inc/locales/en_US/LC_MESSAGES/messages.mo and b/inc/locales/en_US/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/en_US/LC_MESSAGES/messages.po b/inc/locales/en_US/LC_MESSAGES/messages.po index 7b72e577..35e4525e 100644 --- a/inc/locales/en_US/LC_MESSAGES/messages.po +++ b/inc/locales/en_US/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-15 15:02+0100\n" -"PO-Revision-Date: 2015-10-15 15:03+0100\n" +"POT-Creation-Date: 2015-10-25 23:29+0100\n" +"PO-Revision-Date: 2015-10-25 23:33+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: nuxsmin@syspass.org\n" "Language: en_US\n" @@ -87,7 +87,7 @@ msgstr "Invalid 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 "Invalid Action" @@ -218,7 +218,7 @@ msgstr "Edit Category" #: ../../../../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 "New Category" @@ -235,7 +235,7 @@ msgstr "New Authorization" #: ../../../../ajax/ajax_appMgmtData.php:162 #: ../../../../web/UsersMgmtC.class.php:415 msgid "Editar Autorización" -msgstr "Edit authorization" +msgstr "Edit Authorization" #: ../../../../ajax/ajax_appMgmtData.php:168 #: ../../../../web/AccountsMgmtC.class.php:274 @@ -245,7 +245,7 @@ msgstr "New Field" #: ../../../../ajax/ajax_appMgmtData.php:174 #: ../../../../web/AccountsMgmtC.class.php:281 msgid "Editar Campo" -msgstr "Edit field" +msgstr "Edit Field" #: ../../../../ajax/ajax_appMgmtSave.php:86 msgid "Es necesario un nombre de usuario" @@ -271,7 +271,7 @@ msgstr "An email is needed" #: ../../../../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!!" @@ -354,7 +354,7 @@ msgstr "Error on updating group" #: ../../../../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" @@ -463,7 +463,7 @@ msgstr "Authorization added" #: ../../../../ajax/ajax_appMgmtSave.php:468 msgid "Autorización actualizada" -msgstr "Authorization Updated" +msgstr "Authorization updated" #: ../../../../ajax/ajax_appMgmtSave.php:478 msgid "Autorización eliminada" @@ -500,17 +500,17 @@ msgstr "Make Backup" #: ../../../../ajax/ajax_backup.php:58 ../../../../ajax/ajax_backup.php:60 msgid "Error al realizar el backup" -msgstr "Error on doing backup" +msgstr "Error performing backup" #: ../../../../ajax/ajax_backup.php:60 ../../../../ajax/ajax_backup.php:74 #: ../../../../ajax/ajax_checkLdap.php:58 ../../../../inc/Import.class.php:128 #: ../../../../inc/Migrate.class.php:92 msgid "Revise el registro de eventos para más detalles" -msgstr "Please, check the event log for more details" +msgstr "Please check the event log for more details" #: ../../../../ajax/ajax_backup.php:63 msgid "Copia de la aplicación y base de datos realizada correctamente" -msgstr "Application and database backup successfully done" +msgstr "Application and database backup completed successfully" #: ../../../../ajax/ajax_backup.php:65 msgid "Proceso de backup finalizado" @@ -526,11 +526,11 @@ msgstr "Error while exporting accounts" #: ../../../../ajax/ajax_backup.php:74 msgid "Error al realizar la exportación" -msgstr "Error doing export" +msgstr "Error occurred during export" #: ../../../../ajax/ajax_backup.php:77 msgid "Exportación de cuentas realizada correctamente" -msgstr "Export successfully done" +msgstr "Export completed successfully" #: ../../../../ajax/ajax_backup.php:79 msgid "Proceso de exportación finalizado" @@ -556,156 +556,160 @@ msgstr "Objects found" msgid "Modificar Configuración" msgstr "Edit Configuration" -#: ../../../../ajax/ajax_configSave.php:105 +#: ../../../../ajax/ajax_configSave.php:101 msgid "El tamaño máximo por archivo es de 16MB" msgstr "The maximum size per file is 16MB" -#: ../../../../ajax/ajax_configSave.php:118 +#: ../../../../ajax/ajax_configSave.php:109 ../../../../js/strings.js.php:46 +msgid "Extensión no permitida" +msgstr "Extension not allowed" + +#: ../../../../ajax/ajax_configSave.php:128 msgid "Faltan parámetros de Proxy" msgstr "Missing proxy parameters " -#: ../../../../ajax/ajax_configSave.php:126 +#: ../../../../ajax/ajax_configSave.php:136 msgid "Proxy habiltado" msgstr "Proxy enabled" -#: ../../../../ajax/ajax_configSave.php:130 +#: ../../../../ajax/ajax_configSave.php:140 msgid "Proxy deshabilitado" msgstr "Proxy disabled" -#: ../../../../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 "Section" -#: ../../../../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 "Missing Wiki parameters" -#: ../../../../ajax/ajax_configSave.php:150 +#: ../../../../ajax/ajax_configSave.php:160 msgid "Wiki habiltada" msgstr "Wiki enabled" -#: ../../../../ajax/ajax_configSave.php:154 +#: ../../../../ajax/ajax_configSave.php:164 msgid "Wiki deshabilitada" msgstr "Wiki disabled" -#: ../../../../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 "Missing LDAP parameters" -#: ../../../../ajax/ajax_configSave.php:184 +#: ../../../../ajax/ajax_configSave.php:194 msgid "LDAP habiltado" msgstr "LDAP enabled" -#: ../../../../ajax/ajax_configSave.php:188 +#: ../../../../ajax/ajax_configSave.php:198 msgid "LDAP deshabilitado" msgstr "LDAP disabled" -#: ../../../../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 "Missing Mail parameters" -#: ../../../../ajax/ajax_configSave.php:221 +#: ../../../../ajax/ajax_configSave.php:231 msgid "Correo habiltado" msgstr "Mail enabled" -#: ../../../../ajax/ajax_configSave.php:227 +#: ../../../../ajax/ajax_configSave.php:237 msgid "Correo deshabilitado" msgstr "Mail disabled" -#: ../../../../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 "Configuration 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 "Master Password updated" -#: ../../../../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 "Restart session to update" -#: ../../../../ajax/ajax_configSave.php:263 +#: ../../../../ajax/ajax_configSave.php:273 msgid "Clave maestra no indicada" msgstr "Master Password needed" -#: ../../../../ajax/ajax_configSave.php:265 +#: ../../../../ajax/ajax_configSave.php:275 msgid "Se ha de confirmar el cambio de clave" msgstr "The password update must be confirmed" -#: ../../../../ajax/ajax_configSave.php:269 +#: ../../../../ajax/ajax_configSave.php:279 msgid "Las claves son idénticas" msgstr "The passwords are the same" -#: ../../../../ajax/ajax_configSave.php:271 +#: ../../../../ajax/ajax_configSave.php:281 msgid "Las claves maestras no coinciden" msgstr "The master passwords do not match" -#: ../../../../ajax/ajax_configSave.php:273 +#: ../../../../ajax/ajax_configSave.php:283 msgid "La clave maestra actual no coincide" msgstr "The current master password does not match" -#: ../../../../ajax/ajax_configSave.php:282 +#: ../../../../ajax/ajax_configSave.php:292 msgid "Errores al actualizar las claves de las cuentas" msgstr "Error on updating accounts' passwords" -#: ../../../../ajax/ajax_configSave.php:288 +#: ../../../../ajax/ajax_configSave.php:298 msgid "Errores al actualizar las claves de las cuentas del histórico" -msgstr "Error while updating acounts passwords in history" +msgstr "Error while updating accounts' passwords in history" -#: ../../../../ajax/ajax_configSave.php:292 +#: ../../../../ajax/ajax_configSave.php:302 msgid "Errores al actualizar datos de campos personalizados" msgstr "Error while updating custom fields data" -#: ../../../../ajax/ajax_configSave.php:305 +#: ../../../../ajax/ajax_configSave.php:315 #: ../../../../inc/Account.class.php:512 msgid "Actualizar Clave Maestra" msgstr "Update Master Password" -#: ../../../../ajax/ajax_configSave.php:309 +#: ../../../../ajax/ajax_configSave.php:319 msgid "Error al guardar el hash de la clave maestra" -msgstr "Error on saving master password's hash" +msgstr "Error while saving Master Password's hash" -#: ../../../../ajax/ajax_configSave.php:317 +#: ../../../../ajax/ajax_configSave.php:327 msgid "Generar Clave Temporal" msgstr "Generate Temporary 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 @@ -720,8 +724,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 @@ -741,11 +745,11 @@ msgstr "Generate Temporary Password" msgid "Clave" msgstr "Password" -#: ../../../../ajax/ajax_configSave.php:319 +#: ../../../../ajax/ajax_configSave.php:329 msgid "Clave Temporal Generada" msgstr "Temporary Password Generated" -#: ../../../../ajax/ajax_configSave.php:321 +#: ../../../../ajax/ajax_configSave.php:331 msgid "Error al generar clave temporal" msgstr "Error while generating temporary password" @@ -781,7 +785,7 @@ msgstr "Internal error" #: ../../../../ajax/ajax_doLogin.php:80 msgid "Error al actualizar la clave del usuario en la BBDD" -msgstr "Error on updating user password in BD" +msgstr "Error while updating user password in DB" #: ../../../../ajax/ajax_doLogin.php:88 ../../../../ajax/ajax_doLogin.php:113 msgid "Login incorrecto" @@ -811,11 +815,12 @@ msgstr "Incorrect login" #: ../../../../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 @@ -838,7 +843,7 @@ msgstr "Account expired" #: ../../../../ajax/ajax_doLogin.php:102 msgid "El usuario no tiene grupos asociados" -msgstr "The user have no associated groups" +msgstr "The user has no associated groups" #: ../../../../ajax/ajax_doLogin.php:123 ../../../../ajax/ajax_doLogin.php:127 msgid "Usuario deshabilitado" @@ -846,11 +851,11 @@ msgstr "User disabled" #: ../../../../ajax/ajax_doLogin.php:132 msgid "Error al obtener los datos del usuario de la BBDD" -msgstr "Error on retrieving user data from DB" +msgstr "Error while retrieving user data from DB" #: ../../../../ajax/ajax_doLogin.php:142 msgid "La clave maestra no ha sido guardada o es incorrecta" -msgstr "The master password not saved or is wrong" +msgstr "The Master Password is not saved or is wrong" #: ../../../../ajax/ajax_doLogin.php:149 ../../../../ajax/ajax_doLogin.php:152 msgid "Clave maestra incorrecta" @@ -904,7 +909,7 @@ msgstr "Invalid file" #: ../../../../inc/FileImport.class.php:149 #: ../../../../inc/FileImport.class.php:167 msgid "Error interno al leer el archivo" -msgstr "Internal error on reading file" +msgstr "Internal error while reading file" #: ../../../../ajax/ajax_files.php:109 msgid "El archivo es mayor de " @@ -916,7 +921,7 @@ msgstr "File saved" #: ../../../../ajax/ajax_files.php:131 msgid "No se pudo guardar el archivo" -msgstr "Error on saving file" +msgstr "Error while saving file" #: ../../../../ajax/ajax_files.php:141 ../../../../ajax/ajax_files.php:200 msgid "No es un ID de archivo válido" @@ -965,7 +970,7 @@ msgstr "File deleted" #: ../../../../ajax/ajax_files.php:209 msgid "Error al eliminar el archivo" -msgstr "Error on file deletion" +msgstr "Error during file deletion" #: ../../../../ajax/ajax_getContent.php:42 #: ../../../../inc/ApiRequest.class.php:55 @@ -1011,11 +1016,11 @@ msgstr "Request sent" #: ../../../../ajax/ajax_passReset.php:58 msgid "En breve recibirá un correo para completar la solicitud." -msgstr "You will receive an email to complete the request in short." +msgstr "You will receive an email to complete the request shortly." #: ../../../../ajax/ajax_passReset.php:63 msgid "No se ha podido realizar la solicitud. Consulte con el administrador." -msgstr "The request cannot be done. Please contact to the administrator" +msgstr "The request cannot be performed. Please contact to the administrator" #: ../../../../ajax/ajax_passReset.php:73 #: ../../../../inc/UserBase.class.php:570 @@ -1035,7 +1040,7 @@ msgstr "Login" #: ../../../../ajax/ajax_passReset.php:81 msgid "La clave es incorrecta o no coincide" -msgstr "The password is incorrect or do not match" +msgstr "The password is incorrect or does not match" #: ../../../../ajax/ajax_sendRequest.php:49 msgid "Es necesaria una descripción" @@ -1092,7 +1097,7 @@ msgstr "Description" #: ../../../../ajax/ajax_sendRequest.php:79 msgid "Error al enviar la solicitud" -msgstr "Error on sending request" +msgstr "Error while sending request" #: ../../../../ajax/ajax_userPrefsSave.php:75 #: ../../../../ajax/ajax_userPrefsSave.php:108 @@ -1106,7 +1111,7 @@ msgstr "Preferences updated" #: ../../../../ajax/ajax_viewpass.php:55 msgid "La clave maestra no coincide" -msgstr "The master password does not match" +msgstr "The Master Password does not match" #: ../../../../ajax/ajax_viewpass.php:59 #: ../../../../inc/Controller.class.php:166 @@ -1117,7 +1122,7 @@ msgstr "You don't have permission to access to this account" #: ../../../../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" @@ -1189,12 +1194,12 @@ msgstr "Parameters help" #: ../../../../web/UsersMgmtC.class.php:40 #: ../../../../web/UsersPrefsC.class.php:35 msgid "No es posible acceder directamente a este archivo" -msgstr "Unable to access to this file directly" +msgstr "Unable to access this file" #: ../../../../inc/Account.class.php:112 ../../../../inc/Account.class.php:201 #: ../../../../inc/Account.class.php:653 msgid "Error al actualizar el historial" -msgstr "Error on updating history" +msgstr "Error while updating history" #: ../../../../inc/Account.class.php:117 msgid "Actualizar Cuenta" @@ -1202,11 +1207,11 @@ msgstr "Update Account" #: ../../../../inc/Account.class.php:120 ../../../../inc/Account.class.php:398 msgid "Error al actualizar los grupos secundarios" -msgstr "Error on updating secondary groups" +msgstr "Error while updating secondary groups" #: ../../../../inc/Account.class.php:126 ../../../../inc/Account.class.php:406 msgid "Error al actualizar los usuarios de la cuenta" -msgstr "Error on updating account's users" +msgstr "Error while updating account's users" #: ../../../../inc/Account.class.php:234 msgid "Restaurar Cuenta" @@ -1231,22 +1236,22 @@ msgstr "ERROR: Operation failed" #: ../../../../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 "Delete Account" #: ../../../../inc/Account.class.php:451 msgid "Error al eliminar grupos asociados a la cuenta" -msgstr "Error on deleting account's groups" +msgstr "Error while deleting account's groups" #: ../../../../inc/Account.class.php:455 msgid "Error al eliminar usuarios asociados a la cuenta" -msgstr "Error on deleting account's users" +msgstr "Error while deleting account's users" #: ../../../../inc/Account.class.php:459 msgid "Error al eliminar archivos asociados a la cuenta" -msgstr "Error on deleting account's files" +msgstr "Error while deleting account's files" #: ../../../../inc/Account.class.php:513 #: ../../../../inc/AccountHistory.class.php:129 @@ -1262,7 +1267,7 @@ msgstr "Error on encryption module" #: ../../../../inc/Account.class.php:526 #: ../../../../inc/AccountHistory.class.php:143 msgid "Error al obtener las claves de las cuentas" -msgstr "Error on retrieving accounts' passwords" +msgstr "Error while retrieving accounts' passwords" #: ../../../../inc/Account.class.php:542 #: ../../../../inc/AccountHistory.class.php:165 @@ -1281,7 +1286,7 @@ msgstr "Unable to decrypt account password" #: ../../../../inc/Account.class.php:562 msgid "Fallo al actualizar la clave de la cuenta" -msgstr "Error on updating account's password" +msgstr "Error while updating account's password" #: ../../../../inc/Account.class.php:576 msgid "Cuentas actualizadas" @@ -1300,7 +1305,7 @@ msgstr "Update Password" #: ../../../../inc/Account.class.php:717 msgid "No se pudieron obtener los datos de las cuentas" -msgstr "It was unable to retrieve accounts data" +msgstr "Unable to retrieve accounts data" #: ../../../../inc/AccountHistory.class.php:128 msgid "Actualizar Clave Maestra (H)" @@ -1354,7 +1359,7 @@ msgstr "View History" #: ../../../../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" @@ -1405,7 +1410,7 @@ msgstr "Configuration" #: ../../../../inc/Acl.class.php:147 msgid "Configuración General" -msgstr "General configuration" +msgstr "General Configuration" #: ../../../../inc/Acl.class.php:148 ../../../../web/ConfigC.class.php:132 #: ../../../../inc/themes/classic/profiles.inc:65 @@ -1468,7 +1473,7 @@ msgstr "The authorization already exist" #: ../../../../inc/ApiTokens.class.php:307 msgid "Actualizar Autorización" -msgstr "Update Athorization" +msgstr "Update Authorization" #: ../../../../inc/ApiTokens.class.php:331 #: ../../../../web/UsersMgmtC.class.php:422 @@ -1524,7 +1529,7 @@ msgstr "Duplicated category name" #: ../../../../inc/Category.class.php:78 msgid "Error al crear la categoría" -msgstr "Error on creating category" +msgstr "Error while creating category" #: ../../../../inc/Category.class.php:83 #: ../../../../inc/Category.class.php:132 @@ -1532,7 +1537,7 @@ msgstr "Error on creating category" #: ../../../../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 "Category" @@ -1543,7 +1548,7 @@ msgstr "Category in use by:" #: ../../../../inc/Category.class.php:129 msgid "Error al eliminar la categoría" -msgstr "Error on category deletion" +msgstr "Error while deleting category" #: ../../../../inc/Category.class.php:132 #: ../../../../web/AccountsMgmtC.class.php:102 @@ -1552,7 +1557,7 @@ msgstr "Delete Category" #: ../../../../inc/Category.class.php:179 msgid "Error al actualizar la categoría" -msgstr "Error on updating category" +msgstr "Error while updating category" #: ../../../../inc/Category.class.php:182 msgid "Modificar Categoría" @@ -1588,11 +1593,11 @@ msgstr "Option unavailable" #: ../../../../inc/Controller.class.php:167 #: ../../../../inc/Controller.class.php:168 ../../../../inc/Init.class.php:282 msgid "Consulte con el administrador" -msgstr "Please, contact to the administrator" +msgstr "Please contact to the administrator" #: ../../../../inc/Controller.class.php:167 msgid "No tiene permisos para acceder a esta página" -msgstr "You don't have permission to access to this page" +msgstr "You don't have permission to access this page" #: ../../../../inc/Controller.class.php:168 msgid "No tiene permisos para realizar esta operación" @@ -1606,7 +1611,7 @@ msgstr "Warning" msgid "" "Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." msgstr "" -"The master password HASH has been regenerated. No further action is needed." +"The Master Password HASH has been regenerated. No further action is needed." #: ../../../../inc/Crypt.class.php:186 msgid "No se puede usar el módulo de encriptación" @@ -1614,11 +1619,11 @@ msgstr "Crypto module cannot be loaded" #: ../../../../inc/Crypt.class.php:197 msgid "Error al generar datos cifrados" -msgstr "Error on creating encryption data" +msgstr "Error while creating encryption data" #: ../../../../inc/CryptPKI.class.php:46 msgid "No es posible generar las claves RSA" -msgstr "Unable to cgenerate the RSA keys" +msgstr "Unable to generate the RSA keys" #: ../../../../inc/CryptPKI.class.php:112 #: ../../../../inc/CryptPKI.class.php:143 @@ -1647,7 +1652,7 @@ msgstr "Import Accounts" #: ../../../../inc/CsvImportBase.class.php:141 msgid "Error importando cuenta" -msgstr "Error on importing account" +msgstr "Error while importing account" #: ../../../../inc/CsvImportBase.class.php:142 #, php-format @@ -1672,7 +1677,7 @@ msgstr "Updating encrypted data" #: ../../../../inc/CustomFields.class.php:318 msgid "Registros no actualizados" -msgstr "Not updated records" +msgstr "No updated records" #: ../../../../inc/CustomFieldsBase.class.php:86 msgid "Texto" @@ -1720,22 +1725,22 @@ msgstr "Customers" #: ../../../../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 "Groups" #: ../../../../inc/Customer.class.php:50 ../../../../inc/Customer.class.php:95 msgid "Cliente duplicado" -msgstr "Duplicated customer" +msgstr "Duplicate customer" #: ../../../../inc/Customer.class.php:60 msgid "Error al crear el cliente" -msgstr "Error on creating customer" +msgstr "Error while creating customer" #: ../../../../inc/Customer.class.php:112 msgid "Error al actualizar el cliente" -msgstr "Error on updating customer" +msgstr "Error while updating customer" #: ../../../../inc/Customer.class.php:115 msgid "Actualizar Cliente" @@ -1793,7 +1798,7 @@ msgstr "Email sent" #: ../../../../inc/Email.class.php:83 msgid "Error al enviar correo" -msgstr "Error on sending email" +msgstr "Error while sending email" #: ../../../../inc/Email.class.php:87 msgid "Destinatario" @@ -1809,20 +1814,20 @@ msgstr "File successfully uploaded" #: ../../../../inc/FileImport.class.php:105 msgid "Verifique los permisos del usuario del servidor web" -msgstr "Please, check the web server's user permissions" +msgstr "Please check the web server's user permissions" #: ../../../../inc/FileImport.class.php:116 msgid "Compruebe la extensión del archivo" -msgstr "Please, check file extension" +msgstr "Please check file extension" #: ../../../../inc/FileImport.class.php:132 msgid "Compruebe la configuración de PHP para subir archivos" -msgstr "Please, check PHP configuration for upload files" +msgstr "Please check PHP configuration for upload files" #: ../../../../inc/FileImport.class.php:150 #: ../../../../inc/FileImport.class.php:168 msgid "Compruebe los permisos del directorio temporal" -msgstr "Please, check temporary directory permissions" +msgstr "Please check temporary directory permissions" #: ../../../../inc/Files.class.php:111 #: ../../../../inc/themes/classic/files.inc:15 @@ -1853,7 +1858,7 @@ msgstr "Mime type not supported" #: ../../../../inc/Import.class.php:110 msgid "Compruebe el formato del archivo" -msgstr "Please, check the file format" +msgstr "Please check the file format" #: ../../../../inc/Import.class.php:124 ../../../../inc/Import.class.php:127 #: ../../../../inc/Migrate.class.php:91 @@ -1862,7 +1867,7 @@ msgstr "Import finished" #: ../../../../inc/Init.class.php:182 msgid "Error en la verificación de la base de datos" -msgstr "Error on checking database" +msgstr "Error while checking database" #: ../../../../inc/Init.class.php:278 msgid "Sesion" @@ -1898,7 +1903,7 @@ msgstr "Application in maintenance" #: ../../../../inc/Init.class.php:428 msgid "En breve estará operativa" -msgstr "It will be running in short" +msgstr "It will be running shortly" #: ../../../../inc/Init.class.php:465 msgid "Finalizar sesión" @@ -1959,19 +1964,19 @@ msgstr "Application administrator's password" #: ../../../../inc/Installer.class.php:137 msgid "Indicar la clave maestra" -msgstr "Enter the master password" +msgstr "Enter the Master Password" #: ../../../../inc/Installer.class.php:138 msgid "Clave maestra para encriptar las claves" -msgstr "Master password to encrypt the passwords" +msgstr "Master Password to encrypt the passwords" #: ../../../../inc/Installer.class.php:142 msgid "Clave maestra muy corta" -msgstr "Master password too short" +msgstr "Master Password too short" #: ../../../../inc/Installer.class.php:143 msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" -msgstr "The master password length need to be at least 11 characters" +msgstr "The Master Password length need to be at least 11 characters" #: ../../../../inc/Installer.class.php:147 msgid "Indicar el usuario de la BBDD" @@ -1987,7 +1992,7 @@ msgstr "Enter the database password" #: ../../../../inc/Installer.class.php:153 msgid "Clave del usuario administrador de la Base de Datos" -msgstr "Database administartor's password" +msgstr "Database administrator's password" #: ../../../../inc/Installer.class.php:157 msgid "Indicar el nombre de la BBDD" @@ -2003,7 +2008,7 @@ msgstr "Database name cannot contain \".\"" #: ../../../../inc/Installer.class.php:163 msgid "Elimine los puntos del nombre de la Base de Datos" -msgstr "Please, remove dots in database name" +msgstr "Please remove dots in database name" #: ../../../../inc/Installer.class.php:167 msgid "Indicar el servidor de la BBDD" @@ -2019,11 +2024,11 @@ msgstr "Unable to check the sysPass user" #: ../../../../inc/Installer.class.php:268 msgid "Compruebe los permisos del usuario de conexión a la BD" -msgstr "Please, check the DB connection user rights" +msgstr "Please check the DB connection user rights" #: ../../../../inc/Installer.class.php:319 msgid "El usuario de MySQL ya existe" -msgstr "The MySQL user already exist" +msgstr "The MySQL user already exists" #: ../../../../inc/Installer.class.php:320 msgid "Indique un nuevo usuario o elimine el existente" @@ -2031,7 +2036,7 @@ msgstr "Enter a new username or delete the existing one" #: ../../../../inc/Installer.class.php:333 msgid "La BBDD ya existe" -msgstr "The database already exist" +msgstr "The database already exists" #: ../../../../inc/Installer.class.php:334 msgid "Indique una nueva Base de Datos o elimine la existente" @@ -2040,16 +2045,16 @@ msgstr "Enter a new database or delete the existing one" #: ../../../../inc/Installer.class.php:343 #: ../../../../inc/Installer.class.php:414 msgid "Error al crear la BBDD" -msgstr "Error on DB creation" +msgstr "Error while creating DB" #: ../../../../inc/Installer.class.php:344 #: ../../../../inc/Installer.class.php:355 msgid "Verifique los permisos del usuario de la Base de Datos" -msgstr "Please, check database user permissions" +msgstr "Please check database user permissions" #: ../../../../inc/Installer.class.php:354 msgid "Error al establecer permisos de la BBDD" -msgstr "Error on setting database permissions" +msgstr "Error while setting database permissions" #: ../../../../inc/Installer.class.php:387 msgid "El archivo de estructura de la BBDD no existe" @@ -2057,11 +2062,11 @@ msgstr "The database structure file does not exist" #: ../../../../inc/Installer.class.php:388 msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." -msgstr "Unable to create the application database. Please, download it again." +msgstr "Unable to create the application database. Please download it again." #: ../../../../inc/Installer.class.php:396 msgid "Error al seleccionar la BBDD" -msgstr "Error on selecting database." +msgstr "Error while selecting database." #: ../../../../inc/Installer.class.php:397 msgid "" @@ -2073,11 +2078,11 @@ msgstr "" #: ../../../../inc/Installer.class.php:415 msgid "Error al crear la estructura de la Base de Datos." -msgstr "Error on creating database structure." +msgstr "Error while creating database structure." #: ../../../../inc/Installer.class.php:438 msgid "Error al crear el grupo \"admin\"" -msgstr "Error on creating \"admin\" group" +msgstr "Error while creating \"admin\" group" #: ../../../../inc/Installer.class.php:439 #: ../../../../inc/Installer.class.php:472 @@ -2088,15 +2093,15 @@ msgstr "Warn to developer" #: ../../../../inc/Installer.class.php:471 msgid "Error al crear el perfil \"admin\"" -msgstr "Error on creating \"admin\" profile" +msgstr "Error while creating \"admin\" profile" #: ../../../../inc/Installer.class.php:488 msgid "Error al crear el usuario \"admin\"" -msgstr "Error on creating \"admin\" user" +msgstr "Error while creating \"admin\" user" #: ../../../../inc/Installer.class.php:501 msgid "Error al actualizar la clave maestra del usuario \"admin\"" -msgstr "Error on updating master password for user \"admin\"" +msgstr "Error while updating Master Password for user \"admin\"" #: ../../../../inc/Ldap.class.php:127 ../../../../inc/Ldap.class.php:131 msgid "No es posible conectar con el servidor de LDAP" @@ -2108,27 +2113,27 @@ msgstr "Connection error (BIND)" #: ../../../../inc/Ldap.class.php:184 ../../../../inc/Ldap.class.php:189 msgid "Error al buscar objetos en DN base" -msgstr "Error on searching objects in base DN" +msgstr "Error while searching objects in base DN" #: ../../../../inc/Ldap.class.php:212 ../../../../inc/Ldap.class.php:218 #: ../../../../inc/Ldap.class.php:225 ../../../../inc/Ldap.class.php:230 #: ../../../../inc/Ldap.class.php:235 ../../../../inc/Ldap.class.php:240 msgid "Error al buscar RDN de grupo" -msgstr "Error on searching group RDN" +msgstr "Error while searching group RDN" #: ../../../../inc/Ldap.class.php:289 ../../../../inc/Ldap.class.php:295 #: ../../../../inc/Ldap.class.php:310 ../../../../inc/Ldap.class.php:315 msgid "Error al buscar el DN del usuario" -msgstr "Error on searching user DN" +msgstr "Error while searching user DN" #: ../../../../inc/Ldap.class.php:302 ../../../../inc/Ldap.class.php:307 msgid "Error al localizar el usuario en LDAP" -msgstr "Error on searching user on LDAP" +msgstr "Error while searching user on LDAP" #: ../../../../inc/Ldap.class.php:384 ../../../../inc/Ldap.class.php:390 #: ../../../../inc/LdapADS.class.php:103 ../../../../inc/LdapADS.class.php:108 msgid "Error al buscar el grupo de usuarios" -msgstr "Error on searching users group" +msgstr "Error while searching users group" #: ../../../../inc/Ldap.class.php:397 msgid "Usuario verificado en grupo" @@ -2158,19 +2163,19 @@ msgstr "Incompatible version" #: ../../../../inc/Migrate.class.php:149 msgid "Actualice a la última versión de phpPMS" -msgstr "Please, update to the last version of phpPMS" +msgstr "Please update to the last version of phpPMS" #: ../../../../inc/Migrate.class.php:167 msgid "Error al obtener la configuración" -msgstr "Error on retrieving configuration" +msgstr "Error while retrieving configuration" #: ../../../../inc/Migrate.class.php:210 ../../../../inc/Migrate.class.php:223 msgid "Error al vaciar tabla" -msgstr "Error on cleaning table" +msgstr "Error while cleaning table" #: ../../../../inc/Migrate.class.php:228 msgid "Usuario actual no es administrador de la aplicación" -msgstr "Current user is not application administrator" +msgstr "Current user is not an application administrator" #: ../../../../inc/Migrate.class.php:273 msgid "No es posible crear el cliente" @@ -2178,7 +2183,7 @@ msgstr "Unable to create the customer" #: ../../../../inc/Migrate.class.php:274 msgid "Contacte con el desarrollador" -msgstr "Please, contact to the developer" +msgstr "Please contact the developer" #: ../../../../inc/Migrate.class.php:278 msgid "Importar Clientes" @@ -2194,11 +2199,11 @@ msgstr "Records" #: ../../../../inc/Migrate.class.php:302 msgid "Error al obtener los clientes" -msgstr "Error on retrieving customer" +msgstr "Error while retrieving customer" #: ../../../../inc/Migrate.class.php:344 msgid "Error al obtener cuentas" -msgstr "Error on retrieving accounts" +msgstr "Error while retrieving accounts" #: ../../../../inc/Migrate.class.php:373 msgid "Cliente no encontrado" @@ -2206,11 +2211,11 @@ msgstr "Customer not found" #: ../../../../inc/Migrate.class.php:416 msgid "Error al migrar cuenta" -msgstr "Error on importing account" +msgstr "Error while importing account" #: ../../../../inc/Migrate.class.php:445 msgid "Error al obtener los grupos de cuentas" -msgstr "Error on retrieving accounts groups" +msgstr "Error while retrieving accounts groups" #: ../../../../inc/Migrate.class.php:449 msgid "Importar Grupos de Cuentas" @@ -2218,11 +2223,11 @@ msgstr "Import Accounts Groups" #: ../../../../inc/Migrate.class.php:471 msgid "Error al crear grupos de cuentas" -msgstr "Error on accounts groups creation" +msgstr "Error while creating accounts groups" #: ../../../../inc/Migrate.class.php:518 msgid "Error al obtener el historico de cuentas" -msgstr "Error on retrieving accounts history" +msgstr "Error while retrieving accounts history" #: ../../../../inc/Migrate.class.php:522 msgid "Importar Histórico de Cuentas" @@ -2230,11 +2235,11 @@ msgstr "Import Accounts History" #: ../../../../inc/Migrate.class.php:591 msgid "Error al crear historico de cuentas" -msgstr "Error on creating accounts history" +msgstr "Error while creating accounts history" #: ../../../../inc/Migrate.class.php:626 msgid "Error al obtener los archivos de cuentas" -msgstr "Error on retrieving accounts files" +msgstr "Error while retrieving accounts files" #: ../../../../inc/Migrate.class.php:630 msgid "Importar Archivos de Cuentas" @@ -2246,7 +2251,7 @@ msgstr "Error on creating accounts files" #: ../../../../inc/Migrate.class.php:691 msgid "Error al obtener las categorías de cuentas" -msgstr "Error on retrieving accounts categories" +msgstr "Error while retrieving accounts categories" #: ../../../../inc/Migrate.class.php:695 msgid "Importar Categorías de Cuentas" @@ -2254,11 +2259,11 @@ msgstr "Import Accounts Categories" #: ../../../../inc/Migrate.class.php:717 msgid "Error al crear categorías de cuentas" -msgstr "Error on retrieving accounts categories" +msgstr "Error while retrieving accounts categories" #: ../../../../inc/Migrate.class.php:765 msgid "Error al obtener los usuarios" -msgstr "Error on retrieving users" +msgstr "Error while retrieving users" #: ../../../../inc/Migrate.class.php:769 msgid "Importar Usuarios" @@ -2266,11 +2271,11 @@ msgstr "Import Users" #: ../../../../inc/Migrate.class.php:826 msgid "Error al crear usuarios" -msgstr "Error on creating users" +msgstr "Error while creating users" #: ../../../../inc/Migrate.class.php:855 msgid "Error al obtener los grupos de usuarios" -msgstr "Error on retrieving users groups" +msgstr "Error while retrieving users groups" #: ../../../../inc/Migrate.class.php:859 msgid "Importar Grupos de Usuarios" @@ -2278,7 +2283,7 @@ msgstr "Import Users Groups" #: ../../../../inc/Migrate.class.php:885 msgid "Error al crear los grupos de usuarios" -msgstr "Error on adding users groups" +msgstr "Error while adding users groups" #: ../../../../inc/Migrate.class.php:930 msgid "Importar Configuración" @@ -2295,11 +2300,11 @@ msgstr "Error while retrieving profiles" #: ../../../../inc/Profile.class.php:126 msgid "Operación realizada correctamente" -msgstr "Operation successfully done" +msgstr "Operation completed successfully" #: ../../../../inc/Profile.class.php:128 msgid "Fallo al realizar la operación" -msgstr "Error while doing operation" +msgstr "Error while performing operation" #: ../../../../inc/ProfileBase.class.php:164 msgid "Datos de perfil incorrectos" @@ -2322,15 +2327,15 @@ msgstr "Invalid XML format" #: ../../../../inc/SyspassImport.class.php:111 msgid "No hay categorías para importar" -msgstr "There is no categories to import" +msgstr "There are no categories to import" #: ../../../../inc/SyspassImport.class.php:136 msgid "No hay clientes para importar" -msgstr "There is no customers to import" +msgstr "There are no customers to import" #: ../../../../inc/SyspassImport.class.php:161 msgid "No hay cuentas para importar" -msgstr "There is no accounts to import" +msgstr "There are no accounts to import" #: ../../../../inc/Template.class.php:91 #, php-format @@ -2376,11 +2381,11 @@ msgstr "Database update not needed." #: ../../../../inc/Upgrade.class.php:135 msgid "Error al aplicar la actualización de la Base de Datos." -msgstr "Error on updating database." +msgstr "Error while updating database." #: ../../../../inc/Upgrade.class.php:144 msgid "Actualización de la Base de Datos realizada correctamente." -msgstr "Database updating was successfully done." +msgstr "Database updating was completed successfully." #: ../../../../inc/Upgrade.class.php:221 msgid "Actualizar Configuración" @@ -2388,7 +2393,7 @@ msgstr "Update Configuration" #: ../../../../inc/Upgrade.class.php:221 msgid "Actualización de la Configuración realizada correctamente." -msgstr "Configuration updating was successfully done." +msgstr "Configuration updating was completed successfully." #: ../../../../inc/UserBase.class.php:388 #: ../../../../inc/UserBase.class.php:532 @@ -2404,6 +2409,13 @@ msgstr "Edit User" msgid "Eliminar Usuario" msgstr "Delete 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 User" + #: ../../../../inc/UserLdap.class.php:78 msgid "Activación Cuenta" msgstr "Account Activation" @@ -2414,7 +2426,7 @@ msgstr "Your account activation is pending." #: ../../../../inc/UserLdap.class.php:80 msgid "En breve recibirá un email de confirmación." -msgstr "You will receive a confirmation email in short." +msgstr "You will receive a confirmation email shortly." #: ../../../../inc/UserLdap.class.php:86 msgid "Nuevo usuario de LDAP" @@ -2441,7 +2453,7 @@ msgstr "Please update the PHP version to run sysPass" #: ../../../../inc/themes/classic/ldap.inc:212 #: ../../../../inc/themes/material-blue/ldap.inc:238 msgid "Módulo no disponible" -msgstr "Module unavilable" +msgstr "Module unavailable" #: ../../../../inc/Util.class.php:157 msgid "Sin este módulo la aplicación puede no funcionar correctamente." @@ -2473,7 +2485,7 @@ msgstr "Unable to detect the application the data was exported from" #: ../../../../js/strings.js.php:27 msgid "Error en la consulta" -msgstr "Error on query" +msgstr "Error during query" #: ../../../../js/strings.js.php:28 msgid "Ha ocurrido un error" @@ -2515,7 +2527,7 @@ msgstr "Low level" #: ../../../../js/strings.js.php:37 msgid "Nivel muy alto" -msgstr "Very high level" +msgstr "Very High level" #: ../../../../js/strings.js.php:38 msgid "Utilizar al menos 8 caracteres" @@ -2550,10 +2562,6 @@ msgstr "Too many files" msgid "No es posible guardar el archivo \"%s\" Tamaño máximo:" msgstr "Unable to save file \"%s\". Maximum allowed size:" -#: ../../../../js/strings.js.php:46 -msgid "Extensión no permitida" -msgstr "Extension not allowed" - #: ../../../../js/strings.js.php:47 msgid "Vaciar el registro de eventos?" msgstr "Clear event log?" @@ -2576,7 +2584,7 @@ msgstr "Select Customer" #: ../../../../js/strings.js.php:52 msgid "Seleccionar Categoría" -msgstr "Select category" +msgstr "Select Category" #: ../../../../js/strings.js.php:53 msgid "Sin resultados" @@ -2639,11 +2647,29 @@ msgstr "Select 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 "YES" @@ -2651,15 +2677,33 @@ msgstr "YES" #: ../../../../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 "NO" @@ -2690,7 +2734,7 @@ msgstr "Account Details" #: ../../../../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 "Edit Account Password" @@ -2770,7 +2814,7 @@ msgstr "Event log cleared" #: ../../../../web/EventlogC.class.php:97 msgid "Error al vaciar el registro de eventos" -msgstr "Error on clearing event log" +msgstr "Error while clearing event log" #: ../../../../web/MainC.class.php:159 #: ../../../../web/UsersMgmtC.class.php:101 @@ -2840,7 +2884,7 @@ msgstr "XML Export" #: ../../../../web/MainC.class.php:238 msgid "Clave maestra temporal" -msgstr "Temporary master password" +msgstr "Temporary Master Password" #: ../../../../web/MainC.class.php:239 msgid "Importación de cuentas desde sysPass, KeePass, KeePassX y CSV" @@ -2913,7 +2957,7 @@ msgstr "Sort by 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 @@ -2928,12 +2972,6 @@ msgstr "Properties" msgid "Admin Cuentas" msgstr "Account Admin" -#: ../../../../web/UsersMgmtC.class.php:109 -#: ../../../../inc/themes/classic/users.inc:28 -#: ../../../../inc/themes/material-blue/users.inc:34 -msgid "Usuario de LDAP" -msgstr "LDAP User" - #: ../../../../web/UsersMgmtC.class.php:113 #: ../../../../inc/themes/classic/users.inc:113 #: ../../../../inc/themes/material-blue/users.inc:151 @@ -3011,12 +3049,12 @@ msgid "Buscar en desplegable o introducir" msgstr "Search down or enter" #: ../../../../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 "Access URL or 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 "Access user" @@ -3026,7 +3064,7 @@ msgstr "Access user" #: ../../../../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 @@ -3040,120 +3078,120 @@ msgstr "Password (repeat)" #: ../../../../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 about the account" #: ../../../../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 "Enable Edit" #: ../../../../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 "Drop files here (max. 5) or click to select" #: ../../../../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 "Maximum file size" #: ../../../../inc/themes/classic/account.inc:216 -#: ../../../../inc/themes/material-blue/account.inc:258 +#: ../../../../inc/themes/material-blue/account.inc:259 msgid "Historial" msgstr "History" #: ../../../../inc/themes/classic/account.inc:235 -#: ../../../../inc/themes/material-blue/account.inc:278 +#: ../../../../inc/themes/material-blue/account.inc:279 msgid "Seleccionar fecha" msgstr "Select 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 "Last Modification" #: ../../../../inc/themes/classic/account.inc:246 -#: ../../../../inc/themes/material-blue/account.inc:289 +#: ../../../../inc/themes/material-blue/account.inc:290 msgid "por" msgstr "by" #: ../../../../inc/themes/classic/account.inc:289 -#: ../../../../inc/themes/material-blue/account.inc:338 +#: ../../../../inc/themes/material-blue/account.inc:339 msgid "Visitas" msgstr "Visits" #: ../../../../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 Added" #: ../../../../inc/themes/classic/account.inc:297 -#: ../../../../inc/themes/material-blue/account.inc:346 +#: ../../../../inc/themes/material-blue/account.inc:347 msgid "Creador" msgstr "Creator" #: ../../../../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 "Main Group" #: ../../../../inc/themes/classic/account.inc:306 -#: ../../../../inc/themes/material-blue/account.inc:355 +#: ../../../../inc/themes/material-blue/account.inc:356 msgid "Usuarios Secundarios" msgstr "Secondary Users" #: ../../../../inc/themes/classic/account.inc:325 -#: ../../../../inc/themes/material-blue/account.inc:374 +#: ../../../../inc/themes/material-blue/account.inc:375 msgid "Grupos Secundarios" msgstr "Secondary Groups" #: ../../../../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 Modified" #: ../../../../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 "Restore account from this 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 "Copy Password to Clipboard" #: ../../../../inc/themes/classic/account.inc:403 -#: ../../../../inc/themes/material-blue/account.inc:441 +#: ../../../../inc/themes/material-blue/account.inc:442 msgid "Ver Actual" msgstr "View Current" @@ -3167,14 +3205,14 @@ msgstr "Back" #: ../../../../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 "Edit Account" #: ../../../../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 "Request Modification" @@ -3196,7 +3234,7 @@ msgstr "Request 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 @@ -3216,12 +3254,12 @@ msgid "Guardar" msgstr "Save" #: ../../../../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 "Select secondary groups" #: ../../../../inc/themes/classic/account.inc:441 -#: ../../../../inc/themes/material-blue/account.inc:480 +#: ../../../../inc/themes/material-blue/account.inc:481 msgid "Seleccionar usuarios" msgstr "Select users" @@ -3293,8 +3331,8 @@ msgid "" "La copia de seguridad permite guardar y descargar tanto la base de datos de " "sysPass como los archivos de la aplicación y su configuración." msgstr "" -"The backup allows to save and download either sysPass database or " -"application files and its configuracion." +"The backup allows you to save and download either sysPass database or " +"application files and its configuration." #: ../../../../inc/themes/classic/backup.inc:52 #: ../../../../inc/themes/material-blue/backup.inc:54 @@ -3334,8 +3372,8 @@ msgid "" "La exportación de cuentas permite guardar las cuentas y sus datos en formato " "XML para posteriormente poder ser importados en otras instancias de sysPass." msgstr "" -"The accounts export allows to save the accounts and their data in XML format " -"to be imported in another sysPass intances." +"The accounts export allows you to save the accounts and their data in XML " +"format to be imported in another sysPass instance." #: ../../../../inc/themes/classic/backup.inc:120 #: ../../../../inc/themes/material-blue/backup.inc:136 @@ -3356,8 +3394,8 @@ msgid "" "Es posible establecer una clave de exportación para guardar todos los datos " "encriptados en el archivo XML." msgstr "" -"It's possible to set an export password to save whole data encrypted in the " -"XML file." +"It's possible to set an export password to save all the encrypted data in " +"the XML file." #: ../../../../inc/themes/classic/body-start.inc:4 #: ../../../../inc/themes/material-blue/body-start.inc:4 @@ -3528,8 +3566,8 @@ msgid "" "Permite que todos los usuarios puedan realizar búsquedas en todas las " "cuentas, pero no pueden ver el contenido de las que no tienen permisos." msgstr "" -"Allows to the users to do searches that includes all account, even if they " -"don't have permissions, but they can't view the accounts details." +"Allows the users to do searches that includes all accounts, if they don't " +"have permission they can't view the accounts details." #: ../../../../inc/themes/classic/config.inc:189 #: ../../../../inc/themes/material-blue/config.inc:286 @@ -3552,7 +3590,7 @@ msgid "" "Escribir extensión y pulsar intro para añadir. Es necesario guardar la " "configuración." msgstr "" -"Write the extension and press enter to add. You need to save the " +"Write the extension and press enter to add. Remember to save the " "configuration." #: ../../../../inc/themes/classic/config.inc:216 @@ -3601,7 +3639,8 @@ msgstr "Generate an image with a text of the account password." #: ../../../../inc/themes/material-blue/config.inc:245 msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." msgstr "" -"Useful for environments where copy password to clipboard is a security risk." +"Useful for environments where copying a password to clipboard is a security " +"risk." #: ../../../../inc/themes/classic/config.inc:304 #: ../../../../inc/themes/material-blue/config.inc:435 @@ -3680,7 +3719,7 @@ msgstr "Do not modify accounts" #: ../../../../inc/themes/classic/encryption.inc:53 #: ../../../../inc/themes/material-blue/encryption.inc:63 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" -msgstr "Sets a new master password without re-encrypting the accounts." +msgstr "Sets a new Master Password without re-encrypting the accounts." #: ../../../../inc/themes/classic/encryption.inc:64 #: ../../../../inc/themes/material-blue/encryption.inc:76 @@ -3708,7 +3747,7 @@ msgstr "All accounts passwords will be encrypted again." #: ../../../../inc/themes/classic/encryption.inc:74 #: ../../../../inc/themes/material-blue/encryption.inc:86 msgid "Los usuarios deberán de introducir la nueva clave maestra." -msgstr "Users will need to enter the new master key." +msgstr "Users will need to enter the new Master Password." #: ../../../../inc/themes/classic/encryption.inc:95 #: ../../../../inc/themes/material-blue/encryption.inc:109 @@ -3716,7 +3755,7 @@ msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." msgstr "" -"The master password is used to encryt sysPass accounts passwords and keep " +"The Master Password is used to encryt sysPass accounts passwords and keep " "them safe." #: ../../../../inc/themes/classic/encryption.inc:97 @@ -3762,8 +3801,9 @@ msgid "" "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " "la clave maestra original." msgstr "" -"The temporary password is used as a master password for the users that need " -"to enter when login, so there is no need to tell the real master password." +"The temporary password is used as a Master Password for the users that need " +"to enter it during login. This waythere is no need to tell them the real " +"Master Password." #: ../../../../inc/themes/classic/encryption.inc:166 #: ../../../../inc/themes/material-blue/encryption.inc:187 @@ -3977,7 +4017,7 @@ msgstr "Import Password" #: ../../../../inc/themes/material-blue/import.inc:67 #: ../../../../inc/themes/material-blue/import.inc:73 msgid "Delimitador CSV" -msgstr "CVS delimiter" +msgstr "CSV delimiter" #: ../../../../inc/themes/classic/import.inc:159 #: ../../../../inc/themes/material-blue/import.inc:87 @@ -3990,8 +4030,8 @@ msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "archivos XML y CSV." msgstr "" -"Allows to make the Accounts, Categories and Customers import from XML or CSV " -"files." +"Allows you to make the Accounts, Categories and Customers import from XML or " +"CSV files." #: ../../../../inc/themes/classic/import.inc:174 #: ../../../../inc/themes/material-blue/import.inc:103 @@ -4004,7 +4044,7 @@ msgstr "The supported XML file formats are: sysPass, KeePass and KeePassX" msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." -msgstr "Drag&Drop the file to the import zone or click over the arrow." +msgstr "Drag & Drop the file to the import zone or click over the arrow." #: ../../../../inc/themes/classic/import.inc:178 #: ../../../../inc/themes/material-blue/import.inc:107 @@ -4018,7 +4058,7 @@ msgstr "" #: ../../../../inc/themes/classic/import.inc:180 #: ../../../../inc/themes/material-blue/import.inc:109 msgid "La importación de archivos CSV se realiza con el siguiente formato:" -msgstr "The CSV file import is done with the following format:" +msgstr "The CSV import file requires the following format:" #: ../../../../inc/themes/classic/import.inc:182 #: ../../../../inc/themes/material-blue/import.inc:111 @@ -4031,8 +4071,8 @@ msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " "automáticamente." msgstr "" -"In all cases, if the customer o category aren't created, they are " -"automatically created." +"In all cases, if the customer or category do not exist the will be created " +"automatically." #: ../../../../inc/themes/classic/info.inc:4 #: ../../../../inc/themes/material-blue/info.inc:4 @@ -4071,7 +4111,6 @@ msgstr "Used Memory" #: ../../../../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" @@ -4099,7 +4138,7 @@ msgstr "DB Configuration" #: ../../../../inc/themes/classic/install.inc:67 msgid "Login de usuario con permisos de administrador de MySQL" -msgstr "User login with with database administrative rights" +msgstr "User login with database administrative rights" #: ../../../../inc/themes/classic/install.inc:83 #: ../../../../inc/themes/material-blue/install.inc:106 @@ -4134,7 +4173,7 @@ msgstr "Enable LDAP" #: ../../../../inc/themes/classic/ldap.inc:16 #: ../../../../inc/themes/material-blue/ldap.inc:16 msgid "Habilita de autentificación mediante servidor LDAP." -msgstr "Enables the authentication aganist an LDAP server." +msgstr "Enables authentication aganist a LDAP server." #: ../../../../inc/themes/classic/ldap.inc:20 #: ../../../../inc/themes/material-blue/ldap.inc:20 @@ -4353,7 +4392,7 @@ msgstr "Navigation bar on top" #: ../../../../inc/themes/classic/preferences.inc:94 #: ../../../../inc/themes/material-blue/preferences.inc:95 msgid "Mostrar una barra de navegación superior en las búsquedas." -msgstr "Shows a navigation bar on top of search results." +msgstr "Shows a navigation bar on top of the search results." #: ../../../../inc/themes/classic/preferences.inc:107 #: ../../../../inc/themes/material-blue/preferences.inc:108 @@ -4364,7 +4403,7 @@ msgstr "Show Hidden Actions" #: ../../../../inc/themes/material-blue/preferences.inc:112 msgid "" "Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." -msgstr "Show the hidden actions of the accounts search items." +msgstr "Always show the hidden actions on the accounts search page." #: ../../../../inc/themes/classic/profiles.inc:11 #: ../../../../inc/themes/material-blue/profiles.inc:14 @@ -4439,7 +4478,7 @@ msgstr "General configuration" #: ../../../../inc/themes/classic/profiles.inc:65 msgid "Cambiar clave maestra" -msgstr "Change master password" +msgstr "Change Master Password" #: ../../../../inc/themes/classic/profiles.inc:70 msgid "Realizar copia de seguridad" @@ -4543,10 +4582,10 @@ msgstr "Request" #: ../../../../inc/themes/classic/request.inc:24 #: ../../../../inc/themes/material-blue/request.inc:29 msgid "Descripción de la petición" -msgstr "Request description" +msgstr "Request Description" #: ../../../../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 @@ -4652,7 +4691,7 @@ 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 "" -"Enables two factor authentication that requires to enter a token that is " +"Enables two factor authentication that requires you to enter a token that is " "generated by an application like Google Authenticator." #: ../../../../inc/themes/classic/security.inc:21 @@ -4660,7 +4699,7 @@ msgstr "" msgid "" "Escanee el código QR proporcionado y a continuación introduzca la clave de 6 " "dígitos." -msgstr "Scan the provided QR code and then enter the 6 digits code." +msgstr "Scan the provided QR code and then enter the 6 digit code." #: ../../../../inc/themes/classic/security.inc:29 #: ../../../../inc/themes/material-blue/security.inc:27 @@ -4683,7 +4722,7 @@ msgid "" "Una vez activada, sólo es posible acceder si se dispone del dispositivo " "generador de códigos asociado." msgstr "" -"Once enabled, you can only access if you have the device that generates the " +"Once enabled, you can only login if you have the device that generates the " "code." #: ../../../../inc/themes/classic/sessionbar.inc:6 @@ -4694,7 +4733,7 @@ msgstr "Change user password" #: ../../../../inc/themes/classic/sessionbar.inc:15 #: ../../../../inc/themes/material-blue/footer.inc:5 msgid "Salir" -msgstr "Sign out" +msgstr "Sign Out" #: ../../../../inc/themes/classic/tokens.inc:34 #: ../../../../inc/themes/classic/users.inc:98 @@ -4855,13 +4894,13 @@ msgstr "The account name is used as parameter of Wiki search variable." #: ../../../../inc/themes/classic/wiki.inc:81 #: ../../../../inc/themes/material-blue/wiki.inc:93 msgid "Prefijo para nombre de cuenta" -msgstr "Account name preffix" +msgstr "Account name prefix" #: ../../../../inc/themes/classic/wiki.inc:85 #: ../../../../inc/themes/material-blue/wiki.inc:97 msgid "" "Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." -msgstr "Preffix to determine which accounts have a link to the Wiki." +msgstr "Prefix to determine which accounts have a link to the Wiki." #: ../../../../inc/themes/classic/wiki.inc:121 #: ../../../../inc/themes/material-blue/wiki.inc:135 @@ -4877,11 +4916,15 @@ msgstr "Delete filter" msgid "Histórico" msgstr "History" -#: ../../../../inc/themes/material-blue/account.inc:42 +#: ../../../../inc/themes/material-blue/account.inc:34 +msgid "> Usar texto y crear nuevo" +msgstr "> Use the text and create a new one" + +#: ../../../../inc/themes/material-blue/account.inc:43 msgid "Seleccionar o escribir para crear uno nuevo" msgstr "Select or write to create a new one" -#: ../../../../inc/themes/material-blue/account.inc:113 +#: ../../../../inc/themes/material-blue/account.inc:114 msgid "Clave (Repetir)" msgstr "Password (Repeat)" @@ -4898,7 +4941,7 @@ msgstr "Force HTTPS" #: ../../../../inc/themes/material-blue/config.inc:71 msgid "Fuerza para que todas las conexiones sean a través de HTTPS." -msgstr "It forces to use HTTPS on all the connections" +msgstr "It forces the use of HTTPS on all the connections" #: ../../../../inc/themes/material-blue/config.inc:232 #: ../../../../inc/themes/material-blue/preferences.inc:68 @@ -4982,8 +5025,8 @@ msgid "" "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " "cuentas sin permisos." msgstr "" -"Allows that users can request for modifications or access to accounts in " -"which they havenn't rights." +"Allows users to request either modifications to existing accounts, or access " +"to accounts in which they have no rights." #: ../../../../inc/themes/material-blue/profiles.inc:25 msgid "Crear nueva cuenta" @@ -5013,5 +5056,12 @@ msgstr "Make a backup and export" msgid "Autentificación" msgstr "Authentication" +#~ msgid "" +#~ "It's possible to set an export password to encrypt all data saved in the " +#~ "XML file." +#~ msgstr "" +#~ "It's possible to set an export password to save whole data encrypted in " +#~ "the XML file." + #~ msgid "Error al actualizar datos encriptados" #~ msgstr "Error while updating encrypted data" diff --git a/inc/locales/fr_FR/LC_MESSAGES/messages.mo b/inc/locales/fr_FR/LC_MESSAGES/messages.mo index 872f4c6f..3026eb5f 100644 Binary files a/inc/locales/fr_FR/LC_MESSAGES/messages.mo and b/inc/locales/fr_FR/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/fr_FR/LC_MESSAGES/messages.po b/inc/locales/fr_FR/LC_MESSAGES/messages.po index f37111c6..23eb530b 100644 --- a/inc/locales/fr_FR/LC_MESSAGES/messages.po +++ b/inc/locales/fr_FR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-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 \n" "Language-Team: \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)" diff --git a/inc/locales/hu_HU/LC_MESSAGES/messages.mo b/inc/locales/hu_HU/LC_MESSAGES/messages.mo index 6d769710..4282ae03 100644 Binary files a/inc/locales/hu_HU/LC_MESSAGES/messages.mo and b/inc/locales/hu_HU/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/hu_HU/LC_MESSAGES/messages.po b/inc/locales/hu_HU/LC_MESSAGES/messages.po index e1390213..1e3b3753 100644 --- a/inc/locales/hu_HU/LC_MESSAGES/messages.po +++ b/inc/locales/hu_HU/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-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 \n" "Language-Team: \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.
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)" diff --git a/inc/locales/it_IT/LC_MESSAGES/messages.mo b/inc/locales/it_IT/LC_MESSAGES/messages.mo index 4991e42b..3ee70da0 100644 Binary files a/inc/locales/it_IT/LC_MESSAGES/messages.mo and b/inc/locales/it_IT/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/it_IT/LC_MESSAGES/messages.po b/inc/locales/it_IT/LC_MESSAGES/messages.po index 6ed0919b..874a05d1 100644 --- a/inc/locales/it_IT/LC_MESSAGES/messages.po +++ b/inc/locales/it_IT/LC_MESSAGES/messages.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" -"POT-Creation-Date: 2015-10-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 \n" "Language-Team: 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 "" diff --git a/inc/locales/ru_RU/LC_MESSAGES/messages.mo b/inc/locales/ru_RU/LC_MESSAGES/messages.mo index 34e7a7da..5193e628 100644 Binary files a/inc/locales/ru_RU/LC_MESSAGES/messages.mo and b/inc/locales/ru_RU/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/ru_RU/LC_MESSAGES/messages.po b/inc/locales/ru_RU/LC_MESSAGES/messages.po index 4720cb96..8fe8a03c 100644 --- a/inc/locales/ru_RU/LC_MESSAGES/messages.po +++ b/inc/locales/ru_RU/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-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 \n" "Language-Team: \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 "Сохранить файл невозможно.
Максимальный размер:" -#: ../../../../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 "Подтверждение пароля" diff --git a/inc/themes/classic/account.inc b/inc/themes/classic/account.inc index f9b45ad6..150bd799 100644 --- a/inc/themes/classic/account.inc +++ b/inc/themes/classic/account.inc @@ -23,8 +23,8 @@ - + $name): ?> @@ -42,8 +42,8 @@ - + $name): ?> diff --git a/inc/themes/classic/groups.inc b/inc/themes/classic/groups.inc index a911726a..97f6b725 100644 --- a/inc/themes/classic/groups.inc +++ b/inc/themes/classic/groups.inc @@ -24,7 +24,7 @@ - + $name): ?> authtoken_userId) ? 'selected' : ''; ?> @@ -21,7 +21,7 @@ required> - + $name): ?> @@ -49,7 +49,7 @@ - + - + - + $name): ?> $name): ?> authtoken_userId) ? 'selected' : ''; ?> @@ -20,8 +20,8 @@ > - + $name): ?> @@ -58,7 +58,7 @@
    '):this.container.html(''+this.default_text+'
      '),this.form_field_jq.hide().after(this.container),this.dropdown=this.container.find("div.chosen-drop").first(),this.search_field=this.container.find("input").first(),this.search_results=this.container.find("ul.chosen-results").first(),this.search_field_scale(),this.search_no_results=this.container.find("li.no-results").first(),this.is_multiple?(this.search_choices=this.container.find("ul.chosen-choices").first(),this.search_container=this.container.find("li.search-field").first()):(this.search_container=this.container.find("div.chosen-search").first(),this.selected_item=this.container.find(".chosen-single").first()),this.results_build(),this.set_tab_index(),this.set_label_behavior()},Chosen.prototype.on_ready=function(){return this.form_field_jq.trigger("chosen:ready",{chosen:this})},Chosen.prototype.register_observers=function(){var a=this;return this.container.bind("touchstart.chosen",function(b){return a.container_mousedown(b),b.preventDefault()}),this.container.bind("touchend.chosen",function(b){return a.container_mouseup(b),b.preventDefault()}),this.container.bind("mousedown.chosen",function(b){a.container_mousedown(b)}),this.container.bind("mouseup.chosen",function(b){a.container_mouseup(b)}),this.container.bind("mouseenter.chosen",function(b){a.mouse_enter(b)}),this.container.bind("mouseleave.chosen",function(b){a.mouse_leave(b)}),this.search_results.bind("mouseup.chosen",function(b){a.search_results_mouseup(b)}),this.search_results.bind("mouseover.chosen",function(b){a.search_results_mouseover(b)}),this.search_results.bind("mouseout.chosen",function(b){a.search_results_mouseout(b)}),this.search_results.bind("mousewheel.chosen DOMMouseScroll.chosen",function(b){a.search_results_mousewheel(b)}),this.search_results.bind("touchstart.chosen",function(b){a.search_results_touchstart(b)}),this.search_results.bind("touchmove.chosen",function(b){a.search_results_touchmove(b)}),this.search_results.bind("touchend.chosen",function(b){a.search_results_touchend(b)}),this.form_field_jq.bind("chosen:updated.chosen",function(b){a.results_update_field(b)}),this.form_field_jq.bind("chosen:activate.chosen",function(b){a.activate_field(b)}),this.form_field_jq.bind("chosen:open.chosen",function(b){a.container_mousedown(b)}),this.form_field_jq.bind("chosen:close.chosen",function(b){a.input_blur(b)}),this.search_field.bind("blur.chosen",function(b){a.input_blur(b)}),this.search_field.bind("keyup.chosen",function(b){a.keyup_checker(b)}),this.search_field.bind("keydown.chosen",function(b){a.keydown_checker(b)}),this.search_field.bind("focus.chosen",function(b){a.input_focus(b)}),this.search_field.bind("cut.chosen",function(b){a.clipboard_event_checker(b)}),this.search_field.bind("paste.chosen",function(b){a.clipboard_event_checker(b)}),this.is_multiple?this.search_choices.bind("click.chosen",function(b){a.choices_click(b)}):this.container.bind("click.chosen",function(a){a.preventDefault()})},Chosen.prototype.destroy=function(){return a(this.container[0].ownerDocument).unbind("click.chosen",this.click_test_action),this.search_field[0].tabIndex&&(this.form_field_jq[0].tabIndex=this.search_field[0].tabIndex),this.container.remove(),this.form_field_jq.removeData("chosen"),this.form_field_jq.show()},Chosen.prototype.search_field_disabled=function(){return this.is_disabled=this.form_field_jq[0].disabled,this.is_disabled?(this.container.addClass("chosen-disabled"),this.search_field[0].disabled=!0,this.is_multiple||this.selected_item.unbind("focus.chosen",this.activate_action),this.close_field()):(this.container.removeClass("chosen-disabled"),this.search_field[0].disabled=!1,this.is_multiple?void 0:this.selected_item.bind("focus.chosen",this.activate_action))},Chosen.prototype.container_mousedown=function(b){return this.is_disabled||(b&&"mousedown"===b.type&&!this.results_showing&&b.preventDefault(),null!=b&&a(b.target).hasClass("search-choice-close"))?void 0:(this.active_field?this.is_multiple||!b||a(b.target)[0]!==this.selected_item[0]&&!a(b.target).parents("a.chosen-single").length||(b.preventDefault(),this.results_toggle()):(this.is_multiple&&this.search_field.val(""),a(this.container[0].ownerDocument).bind("click.chosen",this.click_test_action),this.results_show()),this.activate_field())},Chosen.prototype.container_mouseup=function(a){return"ABBR"!==a.target.nodeName||this.is_disabled?void 0:this.results_reset(a)},Chosen.prototype.search_results_mousewheel=function(a){var b;return a.originalEvent&&(b=a.originalEvent.deltaY||-a.originalEvent.wheelDelta||a.originalEvent.detail),null!=b?(a.preventDefault(),"DOMMouseScroll"===a.type&&(b=40*b),this.search_results.scrollTop(b+this.search_results.scrollTop())):void 0},Chosen.prototype.blur_test=function(){return!this.active_field&&this.container.hasClass("chosen-container-active")?this.close_field():void 0},Chosen.prototype.close_field=function(){return a(this.container[0].ownerDocument).unbind("click.chosen",this.click_test_action),this.active_field=!1,this.results_hide(),this.container.removeClass("chosen-container-active"),this.clear_backstroke(),this.show_search_field_default(),this.search_field_scale()},Chosen.prototype.activate_field=function(){return this.container.addClass("chosen-container-active"),this.active_field=!0,this.search_field.val(this.search_field.val()),this.search_field.focus()},Chosen.prototype.test_active_click=function(b){var c;return c=a(b.target).closest(".chosen-container"),c.length&&this.container[0]===c[0]?this.active_field=!0:this.close_field()},Chosen.prototype.results_build=function(){return this.parsing=!0,this.selected_option_count=null,this.results_data=SelectParser.select_to_array(this.form_field),this.is_multiple?this.search_choices.find("li.search-choice").remove():this.is_multiple||(this.single_set_selected_text(),this.disable_search||this.form_field.options.length<=this.disable_search_threshold?(this.search_field[0].readOnly=!0,this.container.addClass("chosen-container-single-nosearch")):(this.search_field[0].readOnly=!1,this.container.removeClass("chosen-container-single-nosearch"))),this.update_results_content(this.results_option_build({first:!0})),this.search_field_disabled(),this.show_search_field_default(),this.search_field_scale(),this.parsing=!1},Chosen.prototype.result_do_highlight=function(a){var b,c,d,e,f;if(a.length){if(this.result_clear_highlight(),this.result_highlight=a,this.result_highlight.addClass("highlighted"),d=parseInt(this.search_results.css("maxHeight"),10),f=this.search_results.scrollTop(),e=d+f,c=this.result_highlight.position().top+this.search_results.scrollTop(),b=c+this.result_highlight.outerHeight(),b>=e)return this.search_results.scrollTop(b-d>0?b-d:0);if(f>c)return this.search_results.scrollTop(c)}},Chosen.prototype.result_clear_highlight=function(){return this.result_highlight&&this.result_highlight.removeClass("highlighted"),this.result_highlight=null},Chosen.prototype.results_show=function(){return this.is_multiple&&this.max_selected_options<=this.choices_count()?(this.form_field_jq.trigger("chosen:maxselected",{chosen:this}),!1):(this.container.addClass("chosen-with-drop"),this.results_showing=!0,this.search_field.focus(),this.search_field.val(this.search_field.val()),this.winnow_results(),this.form_field_jq.trigger("chosen:showing_dropdown",{chosen:this}))},Chosen.prototype.update_results_content=function(a){return this.search_results.html(a)},Chosen.prototype.results_hide=function(){return this.results_showing&&(this.result_clear_highlight(),this.container.removeClass("chosen-with-drop"),this.form_field_jq.trigger("chosen:hiding_dropdown",{chosen:this})),this.results_showing=!1},Chosen.prototype.set_tab_index=function(){var a;return this.form_field.tabIndex?(a=this.form_field.tabIndex,this.form_field.tabIndex=-1,this.search_field[0].tabIndex=a):void 0},Chosen.prototype.set_label_behavior=function(){var b=this;return this.form_field_label=this.form_field_jq.parents("label"),!this.form_field_label.length&&this.form_field.id.length&&(this.form_field_label=a("label[for='"+this.form_field.id+"']")),this.form_field_label.length>0?this.form_field_label.bind("click.chosen",function(a){return b.is_multiple?b.container_mousedown(a):b.activate_field()}):void 0},Chosen.prototype.show_search_field_default=function(){return this.is_multiple&&this.choices_count()<1&&!this.active_field?(this.search_field.val(this.default_text),this.search_field.addClass("default")):(this.search_field.val(""),this.search_field.removeClass("default"))},Chosen.prototype.search_results_mouseup=function(b){var c;return c=a(b.target).hasClass("active-result")?a(b.target):a(b.target).parents(".active-result").first(),c.length?(this.result_highlight=c,this.result_select(b),this.search_field.focus()):void 0},Chosen.prototype.search_results_mouseover=function(b){var c;return c=a(b.target).hasClass("active-result")?a(b.target):a(b.target).parents(".active-result").first(),c?this.result_do_highlight(c):void 0},Chosen.prototype.search_results_mouseout=function(b){return a(b.target).hasClass("active-result")?this.result_clear_highlight():void 0},Chosen.prototype.choice_build=function(b){var c,d,e=this;return c=a("
    • ",{"class":"search-choice"}).html(""+this.choice_label(b)+""),b.disabled?c.addClass("search-choice-disabled"):(d=a("",{"class":"search-choice-close","data-option-array-index":b.array_index}),d.bind("click.chosen",function(a){return e.choice_destroy_link_click(a)}),c.append(d)),this.search_container.before(c)},Chosen.prototype.choice_destroy_link_click=function(b){return b.preventDefault(),b.stopPropagation(),this.is_disabled?void 0:this.choice_destroy(a(b.target))},Chosen.prototype.choice_destroy=function(a){return this.result_deselect(a[0].getAttribute("data-option-array-index"))?(this.show_search_field_default(),this.is_multiple&&this.choices_count()>0&&this.search_field.val().length<1&&this.results_hide(),a.parents("li").first().remove(),this.search_field_scale()):void 0},Chosen.prototype.results_reset=function(){return this.reset_single_select_options(),this.form_field.options[0].selected=!0,this.single_set_selected_text(),this.show_search_field_default(),this.results_reset_cleanup(),this.form_field_jq.trigger("change"),this.active_field?this.results_hide():void 0},Chosen.prototype.results_reset_cleanup=function(){return this.current_selectedIndex=this.form_field.selectedIndex,this.selected_item.find("abbr").remove()},Chosen.prototype.result_select=function(a){var b,c;return this.result_highlight?(b=this.result_highlight,this.result_clear_highlight(),this.is_multiple&&this.max_selected_options<=this.choices_count()?(this.form_field_jq.trigger("chosen:maxselected",{chosen:this}),!1):(this.is_multiple?b.removeClass("active-result"):this.reset_single_select_options(),b.addClass("result-selected"),c=this.results_data[b[0].getAttribute("data-option-array-index")],c.selected=!0,this.form_field.options[c.options_index].selected=!0,this.selected_option_count=null,this.is_multiple?this.choice_build(c):this.single_set_selected_text(this.choice_label(c)),(a.metaKey||a.ctrlKey)&&this.is_multiple||this.results_hide(),this.search_field.val(""),(this.is_multiple||this.form_field.selectedIndex!==this.current_selectedIndex)&&this.form_field_jq.trigger("change",{selected:this.form_field.options[c.options_index].value}),this.current_selectedIndex=this.form_field.selectedIndex,a.preventDefault(),this.search_field_scale())):void 0},Chosen.prototype.single_set_selected_text=function(a){return null==a&&(a=this.default_text),a===this.default_text?this.selected_item.addClass("chosen-default"):(this.single_deselect_control_build(),this.selected_item.removeClass("chosen-default")),this.selected_item.find("span").html(a)},Chosen.prototype.result_deselect=function(a){var b;return b=this.results_data[a],this.form_field.options[b.options_index].disabled?!1:(b.selected=!1,this.form_field.options[b.options_index].selected=!1,this.selected_option_count=null,this.result_clear_highlight(),this.results_showing&&this.winnow_results(),this.form_field_jq.trigger("change",{deselected:this.form_field.options[b.options_index].value}),this.search_field_scale(),!0)},Chosen.prototype.single_deselect_control_build=function(){return this.allow_single_deselect?(this.selected_item.find("abbr").length||this.selected_item.find("span").first().after(''),this.selected_item.addClass("chosen-single-with-deselect")):void 0},Chosen.prototype.get_search_text=function(){return a("
      ").text(a.trim(this.search_field.val())).html()},Chosen.prototype.winnow_results_set_highlight=function(){var a,b;return b=this.is_multiple?[]:this.search_results.find(".result-selected.active-result"),a=b.length?b.first():this.search_results.find(".active-result").first(),null!=a?this.result_do_highlight(a):void 0},Chosen.prototype.no_results=function(b){var c;return c=a('
    • '+this.results_none_found+' ""
    • '),c.find("span").first().html(b),this.search_results.append(c),this.form_field_jq.trigger("chosen:no_results",{chosen:this})},Chosen.prototype.no_results_clear=function(){return this.search_results.find(".no-results").remove()},Chosen.prototype.keydown_arrow=function(){var a;return this.results_showing&&this.result_highlight?(a=this.result_highlight.nextAll("li.active-result").first())?this.result_do_highlight(a):void 0:this.results_show()},Chosen.prototype.keyup_arrow=function(){var a;return this.results_showing||this.is_multiple?this.result_highlight?(a=this.result_highlight.prevAll("li.active-result"),a.length?this.result_do_highlight(a.first()):(this.choices_count()>0&&this.results_hide(),this.result_clear_highlight())):void 0:this.results_show()},Chosen.prototype.keydown_backstroke=function(){var a;return this.pending_backstroke?(this.choice_destroy(this.pending_backstroke.find("a").first()),this.clear_backstroke()):(a=this.search_container.siblings("li.search-choice").last(),a.length&&!a.hasClass("search-choice-disabled")?(this.pending_backstroke=a,this.single_backstroke_delete?this.keydown_backstroke():this.pending_backstroke.addClass("search-choice-focus")):void 0)},Chosen.prototype.clear_backstroke=function(){return this.pending_backstroke&&this.pending_backstroke.removeClass("search-choice-focus"),this.pending_backstroke=null},Chosen.prototype.keydown_checker=function(a){var b,c;switch(b=null!=(c=a.which)?c:a.keyCode,this.search_field_scale(),8!==b&&this.pending_backstroke&&this.clear_backstroke(),b){case 8:this.backstroke_length=this.search_field.val().length;break;case 9:this.results_showing&&!this.is_multiple&&this.result_select(a),this.mouse_on_container=!1;break;case 13:this.results_showing&&a.preventDefault();break;case 32:this.disable_search&&a.preventDefault();break;case 38:a.preventDefault(),this.keyup_arrow();break;case 40:a.preventDefault(),this.keydown_arrow()}},Chosen.prototype.search_field_scale=function(){var b,c,d,e,f,g,h,i,j;if(this.is_multiple){for(d=0,h=0,f="position:absolute; left: -1000px; top: -1000px; display:none;",g=["font-size","font-style","font-weight","font-family","line-height","text-transform","letter-spacing"],i=0,j=g.length;j>i;i++)e=g[i],f+=e+":"+this.search_field.css(e)+";";return b=a("
      ",{style:f}),b.text(this.search_field.val()),a("body").append(b),h=b.width()+25,b.remove(),c=this.container.outerWidth(),h>c-10&&(h=c-10),this.search_field.css({width:h+"px"})}},Chosen}(AbstractChosen)}).call(this); \ No newline at end of file +/*! +Chosen, a Select Box Enhancer for jQuery and Prototype +by Patrick Filler for Harvest, http://getharvest.com + +Version 1.4.2 +Full source at https://github.com/harvesthq/chosen +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. +*/ +(function(){var f,a,g,d,e,b={}.hasOwnProperty,c=function(k,i){for(var h in i){if(b.call(i,h)){k[h]=i[h]}}function j(){this.constructor=k}j.prototype=i.prototype;k.prototype=new j();k.__super__=i.prototype;return k};d=(function(){function h(){this.options_index=0;this.parsed=[]}h.prototype.add_node=function(i){if(i.nodeName.toUpperCase()==="OPTGROUP"){return this.add_group(i)}else{return this.add_option(i)}};h.prototype.add_group=function(o){var n,k,m,j,l,i;n=this.parsed.length;this.parsed.push({array_index:n,group:true,label:this.escapeExpression(o.label),title:o.title?o.title:void 0,children:0,disabled:o.disabled,classes:o.className});l=o.childNodes;i=[];for(m=0,j=l.length;m\"\'\`]/.test(k)){return k}j={"<":"<",">":">",'"':""","'":"'","`":"`"};i=/&(?!\w+;)|[\<\>\"\'\`]/g;return k.replace(i,function(l){return j[l]||"&"})};return h})();d.select_to_array=function(h){var m,l,k,i,j;l=new d();j=h.childNodes;for(k=0,i=j.length;k"+i.group_label+""+i.html}else{return i.html}};h.prototype.mouse_enter=function(){return this.mouse_on_container=true};h.prototype.mouse_leave=function(){return this.mouse_on_container=false};h.prototype.input_focus=function(i){var j=this;if(this.is_multiple){if(!this.active_field){return setTimeout((function(){return j.container_mousedown()}),50)}}else{if(!this.active_field){return this.activate_field()}}};h.prototype.input_blur=function(i){var j=this;if(!this.mouse_on_container){this.active_field=false;return setTimeout((function(){return j.blur_test()}),100)}};h.prototype.results_option_build=function(j){var k,n,m,i,l;k="";l=this.results_data;for(m=0,i=l.length;m0)){return""}j=[];j.push("group-result");if(k.classes){j.push(k.classes)}i=document.createElement("li");i.className=j.join(" ");i.innerHTML=k.search_text;if(k.title){i.title=k.title}return this.outerHTML(i)};h.prototype.results_update_field=function(){this.set_default_text();if(!this.is_multiple){this.results_reset_cleanup()}this.result_clear_highlight();this.results_build();if(this.results_showing){return this.winnow_results()}};h.prototype.reset_single_select_options=function(){var i,m,k,l,j;l=this.results_data;j=[];for(m=0,k=l.length;m"+n.search_text.substr(o+s.length);n.search_text=r.substr(0,o)+""+r.substr(o)}if(i!=null){i.group_match=true}}else{if((n.group_array_index!=null)&&this.results_data[n.group_array_index].search_match){n.search_match=true}}}}}this.result_clear_highlight();if(m<1&&s.length){this.update_results_content("");return this.no_results(s)}else{this.update_results_content(this.results_option_build());return this.winnow_results_set_highlight()}};h.prototype.get_search_regex=function(j){var i;i=this.search_contains?"":"^";return new RegExp(i+j,"i")};h.prototype.search_string_match=function(n,k){var j,m,l,i;if(k.test(n)){return true}else{if(this.enable_split_word_search&&(n.indexOf(" ")>=0||n.indexOf("[")===0)){m=n.replace(/\[|\]/g,"").split(" ");if(m.length){for(l=0,i=m.length;l0){return this.keydown_backstroke()}else{if(!this.pending_backstroke){this.result_clear_highlight();return this.results_search()}}break;case 13:i.preventDefault();if(this.results_showing){return this.result_select(i)}break;case 27:if(this.results_showing){this.results_hide()}return true;case 9:case 38:case 40:case 16:case 91:case 17:break;default:return this.results_search()}};h.prototype.clipboard_event_checker=function(i){var j=this;return setTimeout((function(){return j.results_search()}),50)};h.prototype.container_width=function(){if(this.options.width!=null){return this.options.width}else{return""+this.form_field.offsetWidth+"px"}};h.prototype.include_option_in_results=function(i){if(this.is_multiple&&(!this.display_selected_options&&i.selected)){return false}if(!this.display_disabled_options&&i.disabled){return false}if(i.empty){return false}return true};h.prototype.search_results_touchstart=function(i){this.touch_started=true;return this.search_results_mouseover(i)};h.prototype.search_results_touchmove=function(i){this.touch_started=false;return this.search_results_mouseout(i)};h.prototype.search_results_touchend=function(i){if(this.touch_started){return this.search_results_mouseup(i)}};h.prototype.outerHTML=function(j){var i;if(j.outerHTML){return j.outerHTML}i=document.createElement("div");i.appendChild(j);return i.innerHTML};h.browser_is_supported=function(){if(window.navigator.appName==="Microsoft Internet Explorer"){return document.documentMode>=8}if(/iP(od|hone)/i.test(window.navigator.userAgent)){return false}if(/Android/i.test(window.navigator.userAgent)){if(/Mobile/i.test(window.navigator.userAgent)){return false}}return true};h.default_multiple_text="Select Some Options";h.default_single_text="Select an Option";h.default_no_result_text="No results match";return h})();f=jQuery;f.fn.extend({chosen:function(h){if(!a.browser_is_supported()){return this}return this.each(function(j){var k,i;k=f(this);i=k.data("chosen");if(h==="destroy"&&i instanceof g){i.destroy()}else{if(!(i instanceof g)){k.data("chosen",new g(this,h))}}})}});g=(function(h){c(i,h);function i(){e=i.__super__.constructor.apply(this,arguments);return e}i.prototype.setup=function(){this.form_field_jq=f(this.form_field);this.current_selectedIndex=this.form_field.selectedIndex;return this.is_rtl=this.form_field_jq.hasClass("chosen-rtl")};i.prototype.set_up_html=function(){var j,k;j=["chosen-container"];j.push("chosen-container-"+(this.is_multiple?"multi":"single"));if(this.inherit_select_classes&&this.form_field.className){j.push(this.form_field.className)}if(this.is_rtl){j.push("chosen-rtl")}k={"class":j.join(" "),style:"width: "+(this.container_width())+";",title:this.form_field.title};if(this.form_field.id.length){k.id=this.form_field.id.replace(/[^\w]/g,"_")+"_chosen"}this.container=f("
      ",k);if(this.is_multiple){this.container.html('
        ')}else{this.container.html('
        '+this.default_text+'
          ')}this.form_field_jq.hide().after(this.container);this.dropdown=this.container.find("div.chosen-drop").first();this.search_field=this.container.find("input").first();this.search_results=this.container.find("ul.chosen-results").first();this.search_field_scale();this.search_no_results=this.container.find("li.no-results").first();if(this.is_multiple){this.search_choices=this.container.find("ul.chosen-choices").first();this.search_container=this.container.find("li.search-field").first()}else{this.search_container=this.container.find("div.chosen-search").first();this.selected_item=this.container.find(".chosen-single").first()}this.results_build();this.set_tab_index();return this.set_label_behavior()};i.prototype.on_ready=function(){return this.form_field_jq.trigger("chosen:ready",{chosen:this})};i.prototype.register_observers=function(){var j=this;this.container.bind("touchstart.chosen",function(k){j.container_mousedown(k);return k.preventDefault()});this.container.bind("touchend.chosen",function(k){j.container_mouseup(k);return k.preventDefault()});this.container.bind("mousedown.chosen",function(k){j.container_mousedown(k)});this.container.bind("mouseup.chosen",function(k){j.container_mouseup(k)});this.container.bind("mouseenter.chosen",function(k){j.mouse_enter(k)});this.container.bind("mouseleave.chosen",function(k){j.mouse_leave(k)});this.search_results.bind("mouseup.chosen",function(k){j.search_results_mouseup(k)});this.search_results.bind("mouseover.chosen",function(k){j.search_results_mouseover(k)});this.search_results.bind("mouseout.chosen",function(k){j.search_results_mouseout(k)});this.search_results.bind("mousewheel.chosen DOMMouseScroll.chosen",function(k){j.search_results_mousewheel(k)});this.search_results.bind("touchstart.chosen",function(k){j.search_results_touchstart(k)});this.search_results.bind("touchmove.chosen",function(k){j.search_results_touchmove(k)});this.search_results.bind("touchend.chosen",function(k){j.search_results_touchend(k)});this.form_field_jq.bind("chosen:updated.chosen",function(k){j.results_update_field(k)});this.form_field_jq.bind("chosen:activate.chosen",function(k){j.activate_field(k)});this.form_field_jq.bind("chosen:open.chosen",function(k){j.container_mousedown(k)});this.form_field_jq.bind("chosen:close.chosen",function(k){j.input_blur(k)});this.search_field.bind("blur.chosen",function(k){j.input_blur(k)});this.search_field.bind("keyup.chosen",function(k){j.keyup_checker(k)});this.search_field.bind("keydown.chosen",function(k){j.keydown_checker(k)});this.search_field.bind("focus.chosen",function(k){j.input_focus(k)});this.search_field.bind("cut.chosen",function(k){j.clipboard_event_checker(k)});this.search_field.bind("paste.chosen",function(k){j.clipboard_event_checker(k)});if(this.is_multiple){return this.search_choices.bind("click.chosen",function(k){j.choices_click(k)})}else{return this.container.bind("click.chosen",function(k){k.preventDefault()})}};i.prototype.destroy=function(){f(this.container[0].ownerDocument).unbind("click.chosen",this.click_test_action);if(this.search_field[0].tabIndex){this.form_field_jq[0].tabIndex=this.search_field[0].tabIndex}this.container.remove();this.form_field_jq.removeData("chosen");return this.form_field_jq.show()};i.prototype.search_field_disabled=function(){this.is_disabled=this.form_field_jq[0].disabled;if(this.is_disabled){this.container.addClass("chosen-disabled");this.search_field[0].disabled=true;if(!this.is_multiple){this.selected_item.unbind("focus.chosen",this.activate_action)}return this.close_field()}else{this.container.removeClass("chosen-disabled");this.search_field[0].disabled=false;if(!this.is_multiple){return this.selected_item.bind("focus.chosen",this.activate_action)}}};i.prototype.container_mousedown=function(j){if(!this.is_disabled){if(j&&j.type==="mousedown"&&!this.results_showing){j.preventDefault()}if(!((j!=null)&&(f(j.target)).hasClass("search-choice-close"))){if(!this.active_field){if(this.is_multiple){this.search_field.val("")}f(this.container[0].ownerDocument).bind("click.chosen",this.click_test_action);this.results_show()}else{if(!this.is_multiple&&j&&((f(j.target)[0]===this.selected_item[0])||f(j.target).parents("a.chosen-single").length)){j.preventDefault();this.results_toggle()}}return this.activate_field()}}};i.prototype.container_mouseup=function(j){if(j.target.nodeName==="ABBR"&&!this.is_disabled){return this.results_reset(j)}};i.prototype.search_results_mousewheel=function(j){var k;if(j.originalEvent){k=j.originalEvent.deltaY||-j.originalEvent.wheelDelta||j.originalEvent.detail}if(k!=null){j.preventDefault();if(j.type==="DOMMouseScroll"){k=k*40}return this.search_results.scrollTop(k+this.search_results.scrollTop())}};i.prototype.blur_test=function(j){if(!this.active_field&&this.container.hasClass("chosen-container-active")){return this.close_field()}};i.prototype.close_field=function(){f(this.container[0].ownerDocument).unbind("click.chosen",this.click_test_action);this.active_field=false;this.results_hide();this.container.removeClass("chosen-container-active");this.clear_backstroke();this.show_search_field_default();return this.search_field_scale()};i.prototype.activate_field=function(){this.container.addClass("chosen-container-active");this.active_field=true;this.search_field.val(this.search_field.val());return this.search_field.focus()};i.prototype.test_active_click=function(j){var k;k=f(j.target).closest(".chosen-container");if(k.length&&this.container[0]===k[0]){return this.active_field=true}else{return this.close_field()}};i.prototype.results_build=function(){this.parsing=true;this.selected_option_count=null;this.results_data=d.select_to_array(this.form_field);if(this.is_multiple){this.search_choices.find("li.search-choice").remove()}else{if(!this.is_multiple){this.single_set_selected_text();if(this.disable_search||this.form_field.options.length<=this.disable_search_threshold){this.search_field[0].readOnly=true;this.container.addClass("chosen-container-single-nosearch")}else{this.search_field[0].readOnly=false;this.container.removeClass("chosen-container-single-nosearch")}}}this.update_results_content(this.results_option_build({first:true}));this.search_field_disabled();this.show_search_field_default();this.search_field_scale();return this.parsing=false};i.prototype.result_do_highlight=function(k){var o,n,l,m,j;if(k.length){this.result_clear_highlight();this.result_highlight=k;this.result_highlight.addClass("highlighted");l=parseInt(this.search_results.css("maxHeight"),10);j=this.search_results.scrollTop();m=l+j;n=this.result_highlight.position().top+this.search_results.scrollTop();o=n+this.result_highlight.outerHeight();if(o>=m){return this.search_results.scrollTop((o-l)>0?o-l:0)}else{if(n0){return this.form_field_label.bind("click.chosen",function(k){if(j.is_multiple){return j.container_mousedown(k)}else{return j.activate_field()}})}};i.prototype.show_search_field_default=function(){if(this.is_multiple&&this.choices_count()<1&&!this.active_field){this.search_field.val(this.default_text);return this.search_field.addClass("default")}else{this.search_field.val("");return this.search_field.removeClass("default")}};i.prototype.search_results_mouseup=function(j){var k;k=f(j.target).hasClass("active-result")?f(j.target):f(j.target).parents(".active-result").first();if(k.length){this.result_highlight=k;this.result_select(j);return this.search_field.focus()}};i.prototype.search_results_mouseover=function(j){var k;k=f(j.target).hasClass("active-result")?f(j.target):f(j.target).parents(".active-result").first();if(k){return this.result_do_highlight(k)}};i.prototype.search_results_mouseout=function(j){if(f(j.target).hasClass("active-result"||f(j.target).parents(".active-result").first())){return this.result_clear_highlight()}};i.prototype.choice_build=function(k){var j,l,m=this;j=f("
        • ",{"class":"search-choice"}).html(""+(this.choice_label(k))+"");if(k.disabled){j.addClass("search-choice-disabled")}else{l=f("",{"class":"search-choice-close","data-option-array-index":k.array_index});l.bind("click.chosen",function(n){return m.choice_destroy_link_click(n)});j.append(l)}return this.search_container.before(j)};i.prototype.choice_destroy_link_click=function(j){j.preventDefault();j.stopPropagation();if(!this.is_disabled){return this.choice_destroy(f(j.target))}};i.prototype.choice_destroy=function(j){if(this.result_deselect(j[0].getAttribute("data-option-array-index"))){this.show_search_field_default();if(this.is_multiple&&this.choices_count()>0&&this.search_field.val().length<1){this.results_hide()}j.parents("li").first().remove();return this.search_field_scale()}};i.prototype.results_reset=function(){this.reset_single_select_options();this.form_field.options[0].selected=true;this.single_set_selected_text();this.show_search_field_default();this.results_reset_cleanup();this.form_field_jq.trigger("change");if(this.active_field){return this.results_hide()}};i.prototype.results_reset_cleanup=function(){this.current_selectedIndex=this.form_field.selectedIndex;return this.selected_item.find("abbr").remove()};i.prototype.result_select=function(j){var l,k;if(this.result_highlight){l=this.result_highlight;this.result_clear_highlight();if(this.is_multiple&&this.max_selected_options<=this.choices_count()){this.form_field_jq.trigger("chosen:maxselected",{chosen:this});return false}if(this.is_multiple){l.removeClass("active-result")}else{this.reset_single_select_options()}l.addClass("result-selected");k=this.results_data[l[0].getAttribute("data-option-array-index")];k.selected=true;this.form_field.options[k.options_index].selected=true;this.selected_option_count=null;if(this.is_multiple){this.choice_build(k)}else{this.single_set_selected_text(this.choice_label(k))}if(!((j.metaKey||j.ctrlKey)&&this.is_multiple)){this.results_hide()}this.search_field.val("");if(this.is_multiple||this.form_field.selectedIndex!==this.current_selectedIndex){this.form_field_jq.trigger("change",{selected:this.form_field.options[k.options_index].value})}this.current_selectedIndex=this.form_field.selectedIndex;j.preventDefault();return this.search_field_scale()}};i.prototype.single_set_selected_text=function(j){if(j==null){j=this.default_text}if(j===this.default_text){this.selected_item.addClass("chosen-default")}else{this.single_deselect_control_build();this.selected_item.removeClass("chosen-default")}return this.selected_item.find("span").html(j)};i.prototype.result_deselect=function(k){var j;j=this.results_data[k];if(!this.form_field.options[j.options_index].disabled){j.selected=false;this.form_field.options[j.options_index].selected=false;this.selected_option_count=null;this.result_clear_highlight();if(this.results_showing){this.winnow_results()}this.form_field_jq.trigger("change",{deselected:this.form_field.options[j.options_index].value});this.search_field_scale();return true}else{return false}};i.prototype.single_deselect_control_build=function(){if(!this.allow_single_deselect){return}if(!this.selected_item.find("abbr").length){this.selected_item.find("span").first().after('')}return this.selected_item.addClass("chosen-single-with-deselect")};i.prototype.get_search_text=function(){return f("
          ").text(f.trim(this.search_field.val())).html()};i.prototype.winnow_results_set_highlight=function(){var j,k;k=!this.is_multiple?this.search_results.find(".result-selected.active-result"):[];j=k.length?k.first():this.search_results.find(".active-result").first();if(j!=null){return this.result_do_highlight(j)}};i.prototype.no_results=function(j){var k;k=f('
        • '+this.results_none_found+' ""
        • ');k.find("span").first().html(j);this.search_results.append(k);return this.form_field_jq.trigger("chosen:no_results",{chosen:this})};i.prototype.no_results_clear=function(){return this.search_results.find(".no-results").remove()};i.prototype.keydown_arrow=function(){var j;if(this.results_showing&&this.result_highlight){j=this.result_highlight.nextAll("li.active-result").first();if(j){return this.result_do_highlight(j)}}else{return this.results_show()}};i.prototype.keyup_arrow=function(){var j;if(!this.results_showing&&!this.is_multiple){return this.results_show()}else{if(this.result_highlight){j=this.result_highlight.prevAll("li.active-result");if(j.length){return this.result_do_highlight(j.first())}else{if(this.choices_count()>0){this.results_hide()}return this.result_clear_highlight()}}}};i.prototype.keydown_backstroke=function(){var j;if(this.pending_backstroke){this.choice_destroy(this.pending_backstroke.find("a").first());return this.clear_backstroke()}else{j=this.search_container.siblings("li.search-choice").last();if(j.length&&!j.hasClass("search-choice-disabled")){this.pending_backstroke=j;if(this.single_backstroke_delete){return this.keydown_backstroke()}else{return this.pending_backstroke.addClass("search-choice-focus")}}}};i.prototype.clear_backstroke=function(){if(this.pending_backstroke){this.pending_backstroke.removeClass("search-choice-focus")}return this.pending_backstroke=null};i.prototype.keydown_checker=function(k){var l,j;l=(j=k.which)!=null?j:k.keyCode;this.search_field_scale();if(l!==8&&this.pending_backstroke){this.clear_backstroke()}switch(l){case 8:this.backstroke_length=this.search_field.val().length;break;case 9:if(this.results_showing&&!this.is_multiple){this.result_select(k)}this.mouse_on_container=false;break;case 13:if(this.results_showing){k.preventDefault()}break;case 32:if(this.disable_search){k.preventDefault()}break;case 38:k.preventDefault();this.keyup_arrow();break;case 40:k.preventDefault();this.keydown_arrow();break}};i.prototype.search_field_scale=function(){var j,n,m,k,q,r,p,l,o;if(this.is_multiple){m=0;p=0;q="position:absolute; left: -1000px; top: -1000px; display:none;";r=["font-size","font-style","font-weight","font-family","line-height","text-transform","letter-spacing"];for(l=0,o=r.length;l",{style:q});j.text(this.search_field.val());f("body").append(j);p=j.width()+25;j.remove();n=this.container.outerWidth();if(p>n-10){p=n-10}return this.search_field.css({width:p+"px"})}};return i})(a)}).call(this);$.fn.oldChosen=$.fn.chosen;$.fn.chosen=function(d){var a=$(this),b=!!d;if(b&&a.css("position")==="absolute"){a.removeAttr("style")}var c=a.oldChosen(d);if(b&&a.css("display")==="none"){a.attr("style","display:visible; position:absolute; clip:rect(0,0,0,0)");a.attr("tabindex",-1)}return c}; \ No newline at end of file diff --git a/js/clipboard.min.js b/js/clipboard.min.js index c4d6b9e7..6ca24d8f 100644 --- a/js/clipboard.min.js +++ b/js/clipboard.min.js @@ -1 +1,7 @@ -(function(b){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=b()}else{if(typeof define==="function"&&define.amd){define([],b)}else{var a;if(typeof window!=="undefined"){a=window}else{if(typeof global!=="undefined"){a=global}else{if(typeof self!=="undefined"){a=self}else{a=this}}}a.Clipboard=b()}}})(function(){var d,b,a;return(function c(f,k,h){function g(q,n){if(!k[q]){if(!f[q]){var m=typeof require=="function"&&require;if(!n&&m){return m(q,!0)}if(e){return e(q,!0)}var p=new Error("Cannot find module '"+q+"'");throw p.code="MODULE_NOT_FOUND",p}var i=k[q]={exports:{}};f[q][0].call(i.exports,function(l){var o=f[q][1][l];return g(o?o:l)},i,i.exports,c,f,k,h)}return k[q].exports}var e=typeof require=="function"&&require;for(var j=0;j'; - $(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 diff --git a/js/functions.min.js b/js/functions.min.js index 5afb2276..ff61af84 100644 --- a/js/functions.min.js +++ b/js/functions.min.js @@ -1 +1 @@ -var sysPass=sysPass||{};sysPass.createNS=function(d){var e=d.split(".");var c=sysPass;if(e[0]==="sysPass"){e=e.slice(1)}for(var a=0;a105&&event.keyCode<123))){return}if(lenTxtSearch<3&&continous===1&&lenTxtSearch>window.lastlen&&event.keyCode!==13){return}window.lastlen=lenTxtSearch;$("#frmSearch").find('input[name="start"]').val(0);doSearch()};var searchSort=function(skey,start,dir){if(typeof skey==="undefined"||typeof start==="undefined"){return false}$("#frmSearch").find('input[name="skey"]').val(skey);$("#frmSearch").find('input[name="sorder"]').val(dir);$("#frmSearch").find('input[name="start"]').val(start);doSearch()};var doSearch=function(){var frmData=$("#frmSearch").serialize();$.ajax({type:"POST",dataType:"html",url:APP_ROOT+"/ajax/ajax_search.php",data:frmData,success:function(response){$("#resBuscar").html(response);$("#resBuscar").css("max-height",$("html").height()-windowAdjustSize)},error:function(){$("#resBuscar").html(resMsg("nofancyerror"))},complete:function(){sysPassUtil.hideLoading();scrollUp()}})};var showSearchOrder=function(){if(order.key){$("#search-sort-"+order.key).addClass("filterOn");if(order.dir===0){$("#search-sort-"+order.key).append('')}else{$("#search-sort-"+order.key).append('')}}};var navLog=function(start,current){if(typeof start==="undefined"){return false}$.ajax({type:"POST",dataType:"html",url:APP_ROOT+"/ajax/ajax_eventlog.php",data:{start:start,current:current},success:function(response){$("#content").html(response)},error:function(){$("#content").html(resMsg("nofancyerror"))},complete:function(){sysPassUtil.hideLoading();scrollUp()}})};var viewPass=function(id,full,history){if(passToClip===1&&full===0){return}$.ajax({type:"POST",url:APP_ROOT+"/ajax/ajax_viewpass.php",dataType:"json",async:false,data:{accountid:id,full:full,isHistory:history,isAjax:1},success:function(json){if(json.status===10){doLogout();return}if(full===false){$("#clip-pass-text").html(json.accpass);passToClip=1;return}$("
          ").dialog({modal:true,title:LANG[47],width:"auto",open:function(){var content;var pass="";var clipboardUserButton='";var clipboardPassButton='";var useImage=json.useimage;var user='

          '+json.acclogin+"

          ";if(json.status===0){if(useImage===0){pass='

          '+json.accpass+"

          "}else{pass='';clipboardPassButton=""}content=user+pass+'
          '+clipboardUserButton+clipboardPassButton+"
          "}else{content=''+json.description+"";$(this).dialog("option","buttons",[{text:"Ok",icons:{primary:"ui-icon-close"},click:function(){$(this).dialog("close")}}])}$(this).html(content);$(this).dialog("option","position","center");var thisDialog=$(this);$(this).parent().on("mouseleave",function(){clearTimeout(timeout);timeout=setTimeout(function(){thisDialog.dialog("close")},30000)})},close:function(){clearTimeout(timeout);$(this).dialog("destroy")}})}})};var getUrlVars=function(){var vars=[],hash;var hashes=window.location.href.slice(window.location.href.indexOf("?")+1).split("&");for(var i=0;i"+LANG[13]+"

          ";resMsg("error",txt)}}});return false};var doLogout=function(){var url=window.location.search;if(url.length>0){location.href="index.php"+url+"&logout=1"}else{location.href="index.php?logout=1"}};var checkLogout=function(){var session=getUrlVars()["session"];if(session===0){resMsg("warn",LANG[2],"","location.search = ''")}};var redirect=function(url){location.href=url};var saveAccount=function(frm){var data=$("#"+frm).serialize();var id=$('input[name="accountid"]').val();var action=$('input[name="next"]').val();$.ajax({type:"POST",dataType:"json",url:APP_ROOT+"/ajax/ajax_accountSave.php",data:data,success:function(json){var status=json.status;var description=json.description;if(status===0){resMsg("ok",description);if(action&&id){doAction(action,1,id)}else{if(action){doAction(action,1)}}}else{if(status===10){doLogout()}else{resMsg("error",description)}}},error:function(jqXHR,textStatus,errorThrown){var txt=LANG[1]+"

          "+errorThrown+textStatus+"

          ";resMsg("error",txt)}})};var delAccount=function(id,action,sk){var data={accountid:id,actionId:action,sk:sk};var atext='

          '+LANG[3]+"

          ";var url="/ajax/ajax_accountSave.php";alertify.okBtn(LANG[43]).cancelBtn(LANG[44]).confirm(atext,function(e){sendAjax(data,url)},function(e){e.preventDefault();alertify.error(LANG[44])})};var sendRequest=function(){var url="/ajax/ajax_sendRequest.php";var data=$("#frmRequestModify").serialize();sendAjax(data,url)};var configMgmt=function(action,obj){var url;switch(action){case"config":url="/ajax/ajax_configSave.php";break;case"export":url="/ajax/ajax_backup.php";break;case"import":url="/ajax/ajax_migrate.php";break;case"preferences":url="/ajax/ajax_userPrefsSave.php";break;default:return}var data=$(obj).serialize();sendAjax(data,url)};var downFile=function(id,sk,action){var data={fileId:id,sk:sk,action:action};if(action==="view"){$.ajax({type:"POST",cache:false,url:APP_ROOT+"/ajax/ajax_files.php",data:data,success:function(response){if(response){$.fancybox(response,{padding:[10,10,10,10]});setTimeout(function(){$.fancybox.update()},1000)}else{resMsg("error",LANG[14])}}})}else{if(action==="download"){$.fileDownload(APP_ROOT+"/ajax/ajax_files.php",{httpMethod:"POST",data:data})}}};var getFiles=function(id,isDel,sk){var data={id:id,del:isDel,sk:sk};$.ajax({type:"GET",cache:false,url:APP_ROOT+"/ajax/ajax_getFiles.php",data:data,success:function(response){$("#downFiles").html(response)}})};var delFile=function(id,sk,accid){var atext='

          '+LANG[15]+"

          ";alertify.okBtn(LANG[43]).cancelBtn(LANG[44]).confirm(atext,function(e){var data={fileId:id,action:"delete",sk:sk};$.post(APP_ROOT+"/ajax/ajax_files.php",data,function(data){resMsg("ok",data);$("#downFiles").load(APP_ROOT+"/ajax/ajax_getFiles.php?id="+accid+"&del=1&isAjax=1&sk="+sk)})},function(e){e.preventDefault();alertify.error(LANG[44])})};var dropFile=function(accountId,sk,maxsize){var dropfiles=$("#dropzone");var file_exts_ok=dropfiles.attr("data-files-ext").toLowerCase().split(",");dropfiles.filedrop({fallback_id:"inFile",paramname:"inFile",maxfiles:5,maxfilesize:maxsize,allowedfileextensions:file_exts_ok,url:APP_ROOT+"/ajax/ajax_files.php",data:{sk:sk,accountId:accountId,action:"upload",isAjax:1},uploadFinished:function(i,file,response){sysPassUtil.hideLoading();var sk=$('input[name="sk"]').val();$("#downFiles").load(APP_ROOT+"/ajax/ajax_getFiles.php?id="+accountId+"&del=1&isAjax=1&sk="+sk);resMsg("ok",response)},error:function(err,file){switch(err){case"BrowserNotSupported":resMsg("error",LANG[16]);break;case"TooManyFiles":resMsg("error",LANG[17]+" (max. "+this.maxfiles+")");break;case"FileTooLarge":resMsg("error",LANG[18]+" "+maxsize+" MB
          "+file.name);break;case"FileExtensionNotAllowed":resMsg("error",LANG[19]);break;default:break}},uploadStarted:function(i,file,len){sysPassUtil.showLoading()}})};var importFile=function(sk){var dropfiles=$("#dropzone");var file_exts_ok=["csv","xml"];dropfiles.filedrop({fallback_id:"inFile",paramname:"inFile",maxfiles:1,maxfilesize:1,allowedfileextensions:file_exts_ok,url:APP_ROOT+"/ajax/ajax_import.php",data:{sk:sk,action:"import",isAjax:1,importPwd:function(){return $('input[name="importPwd"]').val()},defUser:function(){return $("#import_defaultuser").chosen().val()},defGroup:function(){return $("#import_defaultgroup").chosen().val()},csvDelimiter:function(){return $('input[name="csvDelimiter"]').val()}},uploadFinished:function(i,file,json){sysPassUtilhideLoading();var status=json.status;var description=json.description;if(status===0){resMsg("ok",description)}else{if(status===10){resMsg("error",description);doLogout()}else{resMsg("error",description)}}},error:function(err,file){switch(err){case"BrowserNotSupported":resMsg("error",LANG[16]);break;case"TooManyFiles":resMsg("error",LANG[17]+" (max. "+this.maxfiles+")");break;case"FileTooLarge":resMsg("error",LANG[18]+"
          "+file.name);break;case"FileExtensionNotAllowed":resMsg("error",LANG[19]);break;default:break}},uploadStarted:function(i,file,len){sysPassUtil.showLoading()}})};var sendAjax=function(data,url){$.ajax({type:"POST",dataType:"json",url:APP_ROOT+url,data:data,success:function(json){var status=json.status;var description=json.description;var action=json.action;switch(status){case 0:$.fancybox.close();resMsg("ok",description,undefined,action);break;case 1:$.fancybox.close();$(":input[type=password]").val("");resMsg("error",description,undefined,action);break;case 2:$("#resFancyAccion").html(''+description+"").show();break;case 3:$.fancybox.close();resMsg("warn",description,undefined,action);break;case 10:doLogout();break;default:return}},error:function(jqXHR,textStatus,errorThrown){var txt=LANG[1]+"

          "+errorThrown+textStatus+"

          ";resMsg("error",txt)}})};var usrUpdPass=function(object,actionId,sk){var userId=$(object).attr("data-itemid");var data={userId:userId,actionId:actionId,sk:sk,isAjax:1};$.ajax({type:"GET",cache:false,url:APP_ROOT+"/ajax/ajax_usrpass.php",data:data,success:function(data){if(data.length===0){doLogout()}else{$.fancybox(data,{padding:0})}}})};var appMgmtData=function(obj,actionId,sk){var itemId=$(obj).attr("data-itemid");var activeTab=$(obj).attr("data-activetab");var data={itemId:itemId,actionId:actionId,sk:sk,activeTab:activeTab,isAjax:1};var url=APP_ROOT+"/ajax/ajax_appMgmtData.php";$.ajax({type:"POST",dataType:"html",url:url,data:data,success:function(response){$.fancybox(response,{padding:[0,10,10,10]})},error:function(jqXHR,textStatus,errorThrown){var txt=LANG[1]+"

          "+errorThrown+textStatus+"

          ";resMsg("error",txt)}})};var appMgmtDelete=function(obj,actionId,sk){var itemId=$(obj).attr("data-itemid");var activeTab=$(obj).attr("data-activetab");var nextActionId=$(obj).attr("data-nextactionid");var atext='

          '+LANG[12]+"

          ";var url="/ajax/ajax_appMgmtSave.php";var data={itemId:itemId,actionId:actionId,sk:sk,activeTab:activeTab,onCloseAction:nextActionId};alertify.okBtn(LANG[43]).cancelBtn(LANG[44]).confirm(atext,function(e){sendAjax(data,url)},function(e){e.preventDefault();alertify.error(LANG[44])})};var appMgmtSave=function(frmId){var url="/ajax/ajax_appMgmtSave.php";var data=$("#"+frmId).serialize();sendAjax(data,url)};var checkUpds=function(){$.ajax({type:"GET",dataType:"html",url:APP_ROOT+"/ajax/ajax_checkUpds.php",timeout:10000,success:function(response){$("#updates").html(response);if(typeof componentHandler!=="undefined"){componentHandler.upgradeDom()}},error:function(jqXHR,textStatus,errorThrown){$("#updates").html("!")}})};var clearEventlog=function(sk){var atext='

          '+LANG[20]+"

          ";alertify.okBtn(LANG[43]).cancelBtn(LANG[44]).confirm(atext,function(e){var data={clear:1,sk:sk,isAjax:1};var url="/ajax/ajax_eventlog.php";sendAjax(data,url)},function(e){e.preventDefault();alertify.error(LANG[44])})};var showOptional=function(me){$(me).hide();var actions=$(me).parent().children(".actions-optional");actions.show(250)};var getTime=function(){var t=new Date();return t.getTime()};var checkPassLevel=function(password,dst){var level=zxcvbn(password);outputResult(level.score,dst)};var outputResult=function(level,dstId){var complexity,selector=".passLevel-"+dstId;complexity=$(selector);complexity.removeClass("weak good strong strongest");if(passwordData.passLength===0){complexity.attr("title","").empty()}else{if(passwordData.passLength");switch(type){case"ok":alertify.success(txt);break;case"error":alertify.error(txt);break;case"warn":alertify.log(txt);break;case"nofancyerror":html='

          Oops...
          '+LANG[1]+"
          "+txt+"

          ";return html;default:alertify.error(txt);break}if(typeof action!=="undefined"){eval(action)}};var checkLdapConn=function(formId){var form="#frmLdap";var ldapServer=$(form).find("[name=ldap_server]").val();var ldapBase=$(form).find("[name=ldap_base]").val();var ldapGroup=$(form).find("[name=ldap_group]").val();var ldapBindUser=$(form).find("[name=ldap_binduser]").val();var ldapBindPass=$(form).find("[name=ldap_bindpass]").val();var sk=$(form).find("[name=sk]").val();var data={ldap_server:ldapServer,ldap_base:ldapBase,ldap_group:ldapGroup,ldap_binduser:ldapBindUser,ldap_bindpass:(PK!=="")?encrypt.encrypt(ldapBindPass):ldapBindPass,isAjax:1,sk:sk};sendAjax(data,"/ajax/ajax_checkLdap.php")};var goLogin=function(){setTimeout(function(){location.href="index.php"},2000)};var getBrowser=function(){var browser;var ua=navigator.userAgent;var re=new RegExp("(MSIE|Firefox)[ /]?([0-9]{1,}[.0-9]{0,})","i");if(re.exec(ua)!==null){browser=RegExp.$1}return browser};var chosenDetect=function(){var selectWidth="250px";var searchTreshold=10;$(".sel-chosen-usergroup").chosen({placeholder_text_single:LANG[21],disable_search_threshold:searchTreshold,no_results_text:LANG[26],width:selectWidth});$(".sel-chosen-user").chosen({placeholder_text_single:LANG[22],disable_search_threshold:searchTreshold,no_results_text:LANG[26],width:selectWidth});$(".sel-chosen-profile").chosen({placeholder_text_single:LANG[23],disable_search_threshold:searchTreshold,no_results_text:LANG[26],width:selectWidth});$(".sel-chosen-customer").each(function(){var deselect=$(this).hasClass("sel-chosen-deselect");$(this).chosen({allow_single_deselect:deselect,placeholder_text_single:LANG[24],disable_search_threshold:searchTreshold,no_results_text:LANG[26],width:selectWidth})});$(".sel-chosen-category").each(function(){var deselect=$(this).hasClass("sel-chosen-deselect");$(this).chosen({allow_single_deselect:deselect,placeholder_text_single:LANG[25],disable_search_threshold:searchTreshold,no_results_text:LANG[26],width:selectWidth})});$(".sel-chosen-action").each(function(){var deselect=$(this).hasClass("sel-chosen-deselect");$(this).chosen({allow_single_deselect:deselect,placeholder_text_single:LANG[39],disable_search_threshold:searchTreshold,no_results_text:LANG[26],width:selectWidth})});$(".sel-chosen-ns").chosen({disable_search:true,width:selectWidth})};var checkboxDetect=function(container){$(container).find(".checkbox").button({icons:{primary:"ui-icon-transferthick-e-w"}}).click(function(){if($(this).prop("checked")===true){$(this).button("option","label",LANG[40])}else{$(this).button("option","label",LANG[41])}})};var encryptFormValue=function(inputId){var input=$(inputId);var curValue=input.val();var nextName=inputId+"-encrypted";var nextInput=input.next(':input[name="'+nextName+'"]');if((curValue!==""&&nextInput.attr("name")!==nextName)||(curValue!==""&&nextInput.attr("name")===nextName&&parseInt(input.next().val())!==curValue.length)){var passEncrypted=encrypt.encrypt(curValue);input.val(passEncrypted);if(nextInput.length>0){nextInput.val(passEncrypted.length)}else{input.after('')}}};var initializeClipboard=function(){var clipboard=new Clipboard(".clip-pass-button",{text:function(trigger){sysPassUtil.Common.viewPass(trigger.getAttribute("data-account-id"),false);return $("#clip-pass-text").html()}});clipboard.on("success",function(e){sysPassUtil.Common.resMsg("ok",LANG[45])});clipboard.on("error",function(e){sysPassUtil.Common.resMsg("error",LANG[46])});var clipboardPass=new Clipboard(".dialog-clip-pass-button");var clipboardUser=new Clipboard(".dialog-clip-user-button");clipboardPass.on("success",function(e){$(".dialog-pass-text").addClass("dialog-clip-pass-copy round");e.clearSelection()});clipboardUser.on("success",function(e){e.clearSelection()})};var bindPassEncrypt=function(){$("body").delegate(":input[type=password]","blur",function(e){var id=$(this).attr("id");encryptFormValue("#"+id)});$("body").delegate(":input[type=password]","keypress",function(e){if(e.keyCode===13){e.preventDefault();var form=$(this).closest("form");var id=$(this).attr("id");encryptFormValue("#"+id);form.submit()}})};return{accSearch:accSearch,appMgmtData:appMgmtData,appMgmtSave:appMgmtSave,appMgmtDelete:appMgmtDelete,checkboxDetect:checkboxDetect,checkLdapConn:checkLdapConn,checkPassLevel:checkPassLevel,checkUpds:checkUpds,clearEventlog:clearEventlog,clearSearch:clearSearch,chosenDetect:chosenDetect,configMgmt:configMgmt,delAccount:delAccount,delFile:delFile,doAction:doAction,doLogin:doLogin,doLogout:doLogout,downFile:downFile,dropFile:dropFile,encryptFormValue:encryptFormValue,getFiles:getFiles,importFile:importFile,navLog:navLog,outputResult:outputResult,redirect:redirect,resMsg:resMsg,searchSort:searchSort,saveAccount:saveAccount,sendAjax:sendAjax,sendRequest:sendRequest,setContentSize:setContentSize,showOptional:showOptional,showSearchOrder:showSearchOrder,usrUpdPass:usrUpdPass,viewPass:viewPass,passwordData:passwordData,passToClip:passToClip,APP_ROOT:APP_ROOT,LANG:LANG,PK:PK}}; \ No newline at end of file +var sysPass=sysPass||{};sysPass.createNS=function(d){var e=d.split(".");var c=sysPass;if(e[0]==="sysPass"){e=e.slice(1)}for(var a=0;a105&&event.keyCode<123))){return}if(lenTxtSearch<3&&continous===1&&lenTxtSearch>window.lastlen&&event.keyCode!==13){return}window.lastlen=lenTxtSearch;$("#frmSearch").find('input[name="start"]').val(0);doSearch()};var searchSort=function(skey,start,dir){if(typeof skey==="undefined"||typeof start==="undefined"){return false}$("#frmSearch").find('input[name="skey"]').val(skey);$("#frmSearch").find('input[name="sorder"]').val(dir);$("#frmSearch").find('input[name="start"]').val(start);doSearch()};var doSearch=function(){var frmData=$("#frmSearch").serialize();$.ajax({type:"POST",dataType:"html",url:APP_ROOT+"/ajax/ajax_search.php",data:frmData,success:function(response){$("#resBuscar").html(response);$("#resBuscar").css("max-height",$("html").height()-windowAdjustSize)},error:function(){$("#resBuscar").html(resMsg("nofancyerror"))},complete:function(){sysPassUtil.hideLoading();scrollUp()}})};var showSearchOrder=function(){if(order.key){$("#search-sort-"+order.key).addClass("filterOn");if(order.dir===0){$("#search-sort-"+order.key).append('')}else{$("#search-sort-"+order.key).append('')}}};var navLog=function(start,current){if(typeof start==="undefined"){return false}$.ajax({type:"POST",dataType:"html",url:APP_ROOT+"/ajax/ajax_eventlog.php",data:{start:start,current:current},success:function(response){$("#content").html(response)},error:function(){$("#content").html(resMsg("nofancyerror"))},complete:function(){sysPassUtil.hideLoading();scrollUp()}})};var viewPass=function(id,full,history){if(passToClip===1&&full===0){return}$.ajax({type:"POST",url:APP_ROOT+"/ajax/ajax_viewpass.php",dataType:"json",async:false,data:{accountid:id,full:full,isHistory:history,isAjax:1},success:function(json){if(json.status===10){doLogout();return}if(full===false){$("#clip-pass-text").html(json.accpass);passToClip=1;return}$("
          ").dialog({modal:true,title:LANG[47],width:"auto",open:function(){var thisDialog=$(this);var content;var pass="";var clipboardUserButton='";var clipboardPassButton='";var useImage=json.useimage;var user='

          '+json.acclogin+"

          ";if(json.status===0){if(useImage===0){pass='

          '+json.accpass+"

          "}else{pass='';clipboardPassButton=""}content=user+pass+'
          '+clipboardUserButton+clipboardPassButton+"
          "}else{content=''+json.description+"";thisDialog.dialog("option","buttons",[{text:"Ok",icons:{primary:"ui-icon-close"},click:function(){thisDialog.dialog("close")}}])}thisDialog.html(content);thisDialog.dialog("option","position","center");$(this).parent().on("mouseleave",function(){clearTimeout(timeout);timeout=setTimeout(function(){thisDialog.dialog("close")},30000)})},close:function(){clearTimeout(timeout);$(this).dialog("destroy")}})}})};var getUrlVars=function(){var vars=[],hash;var hashes=window.location.href.slice(window.location.href.indexOf("?")+1).split("&");for(var i=0;i"+LANG[13]+"

          ";resMsg("error",txt)}}});return false};var doLogout=function(){var url=window.location.search;if(url.length>0){location.href="index.php"+url+"&logout=1"}else{location.href="index.php?logout=1"}};var checkLogout=function(){var session=getUrlVars()["session"];if(session===0){resMsg("warn",LANG[2],"","location.search = ''")}};var redirect=function(url){location.href=url};var saveAccount=function(frm){var data=$("#"+frm).serialize();var id=$('input[name="accountid"]').val();var action=$('input[name="next"]').val();$.ajax({type:"POST",dataType:"json",url:APP_ROOT+"/ajax/ajax_accountSave.php",data:data,success:function(json){var status=json.status;var description=json.description;if(status===0){resMsg("ok",description);if(action&&id){doAction(action,1,id)}else{if(action){doAction(action,1)}}}else{if(status===10){doLogout()}else{resMsg("error",description)}}},error:function(jqXHR,textStatus,errorThrown){var txt=LANG[1]+"

          "+errorThrown+textStatus+"

          ";resMsg("error",txt)}})};var delAccount=function(id,action,sk){var data={accountid:id,actionId:action,sk:sk};var atext='

          '+LANG[3]+"

          ";var url="/ajax/ajax_accountSave.php";alertify.okBtn(LANG[43]).cancelBtn(LANG[44]).confirm(atext,function(e){sendAjax(data,url)},function(e){e.preventDefault();alertify.error(LANG[44])})};var sendRequest=function(){var url="/ajax/ajax_sendRequest.php";var data=$("#frmRequestModify").serialize();sendAjax(data,url)};var configMgmt=function(action,obj){var url;switch(action){case"config":url="/ajax/ajax_configSave.php";break;case"export":url="/ajax/ajax_backup.php";break;case"import":url="/ajax/ajax_migrate.php";break;case"preferences":url="/ajax/ajax_userPrefsSave.php";break;default:return}var data=$(obj).serialize();sendAjax(data,url)};var downFile=function(id,sk,action){var data={fileId:id,sk:sk,action:action};if(action==="view"){$.ajax({type:"POST",cache:false,url:APP_ROOT+"/ajax/ajax_files.php",data:data,success:function(response){if(response){$.fancybox(response,{padding:[10,10,10,10]});setTimeout(function(){$.fancybox.update()},1000)}else{resMsg("error",LANG[14])}}})}else{if(action==="download"){$.fileDownload(APP_ROOT+"/ajax/ajax_files.php",{httpMethod:"POST",data:data})}}};var getFiles=function(id,isDel,sk){var data={id:id,del:isDel,sk:sk};$.ajax({type:"GET",cache:false,url:APP_ROOT+"/ajax/ajax_getFiles.php",data:data,success:function(response){$("#downFiles").html(response)}})};var delFile=function(id,sk,accid){var atext='

          '+LANG[15]+"

          ";alertify.okBtn(LANG[43]).cancelBtn(LANG[44]).confirm(atext,function(e){var data={fileId:id,action:"delete",sk:sk};$.post(APP_ROOT+"/ajax/ajax_files.php",data,function(data){resMsg("ok",data);$("#downFiles").load(APP_ROOT+"/ajax/ajax_getFiles.php?id="+accid+"&del=1&isAjax=1&sk="+sk)})},function(e){e.preventDefault();alertify.error(LANG[44])})};var dropFile=function(accountId,sk,maxsize){var dropfiles=$("#dropzone");var file_exts_ok=dropfiles.attr("data-files-ext").toLowerCase().split(",");dropfiles.filedrop({fallback_id:"inFile",paramname:"inFile",maxfiles:5,maxfilesize:maxsize,allowedfileextensions:file_exts_ok,url:APP_ROOT+"/ajax/ajax_files.php",data:{sk:sk,accountId:accountId,action:"upload",isAjax:1},uploadFinished:function(i,file,response){sysPassUtil.hideLoading();var sk=$('input[name="sk"]').val();$("#downFiles").load(APP_ROOT+"/ajax/ajax_getFiles.php?id="+accountId+"&del=1&isAjax=1&sk="+sk);resMsg("ok",response)},error:function(err,file){switch(err){case"BrowserNotSupported":resMsg("error",LANG[16]);break;case"TooManyFiles":resMsg("error",LANG[17]+" (max. "+this.maxfiles+")");break;case"FileTooLarge":resMsg("error",LANG[18]+" "+maxsize+" MB
          "+file.name);break;case"FileExtensionNotAllowed":resMsg("error",LANG[19]);break;default:break}},uploadStarted:function(i,file,len){sysPassUtil.showLoading()}})};var importFile=function(sk){var dropfiles=$("#dropzone");var file_exts_ok=["csv","xml"];dropfiles.filedrop({fallback_id:"inFile",paramname:"inFile",maxfiles:1,maxfilesize:1,allowedfileextensions:file_exts_ok,url:APP_ROOT+"/ajax/ajax_import.php",data:{sk:sk,action:"import",isAjax:1,importPwd:function(){return $('input[name="importPwd"]').val()},defUser:function(){return $("#import_defaultuser").chosen().val()},defGroup:function(){return $("#import_defaultgroup").chosen().val()},csvDelimiter:function(){return $('input[name="csvDelimiter"]').val()}},uploadFinished:function(i,file,json){sysPassUtilhideLoading();var status=json.status;var description=json.description;if(status===0){resMsg("ok",description)}else{if(status===10){resMsg("error",description);doLogout()}else{resMsg("error",description)}}},error:function(err,file){switch(err){case"BrowserNotSupported":resMsg("error",LANG[16]);break;case"TooManyFiles":resMsg("error",LANG[17]+" (max. "+this.maxfiles+")");break;case"FileTooLarge":resMsg("error",LANG[18]+"
          "+file.name);break;case"FileExtensionNotAllowed":resMsg("error",LANG[19]);break;default:break}},uploadStarted:function(i,file,len){sysPassUtil.showLoading()}})};var sendAjax=function(data,url){$.ajax({type:"POST",dataType:"json",url:APP_ROOT+url,data:data,success:function(json){var status=json.status;var description=json.description;var action=json.action;switch(status){case 0:$.fancybox.close();resMsg("ok",description,undefined,action);break;case 1:$.fancybox.close();$(":input[type=password]").val("");resMsg("error",description,undefined,action);break;case 2:$("#resFancyAccion").html(''+description+"").show();break;case 3:$.fancybox.close();resMsg("warn",description,undefined,action);break;case 10:doLogout();break;default:return}},error:function(jqXHR,textStatus,errorThrown){var txt=LANG[1]+"

          "+errorThrown+textStatus+"

          ";resMsg("error",txt)}})};var usrUpdPass=function(object,actionId,sk){var userId=$(object).attr("data-itemid");var data={userId:userId,actionId:actionId,sk:sk,isAjax:1};$.ajax({type:"GET",cache:false,url:APP_ROOT+"/ajax/ajax_usrpass.php",data:data,success:function(data){if(data.length===0){doLogout()}else{$.fancybox(data,{padding:0})}}})};var appMgmtData=function(obj,actionId,sk){var itemId=$(obj).attr("data-itemid");var activeTab=$(obj).attr("data-activetab");var data={itemId:itemId,actionId:actionId,sk:sk,activeTab:activeTab,isAjax:1};var url=APP_ROOT+"/ajax/ajax_appMgmtData.php";$.ajax({type:"POST",dataType:"html",url:url,data:data,success:function(response){$.fancybox(response,{padding:[0,10,10,10]})},error:function(jqXHR,textStatus,errorThrown){var txt=LANG[1]+"

          "+errorThrown+textStatus+"

          ";resMsg("error",txt)}})};var appMgmtDelete=function(obj,actionId,sk){var itemId=$(obj).attr("data-itemid");var activeTab=$(obj).attr("data-activetab");var nextActionId=$(obj).attr("data-nextactionid");var atext='

          '+LANG[12]+"

          ";var url="/ajax/ajax_appMgmtSave.php";var data={itemId:itemId,actionId:actionId,sk:sk,activeTab:activeTab,onCloseAction:nextActionId};alertify.okBtn(LANG[43]).cancelBtn(LANG[44]).confirm(atext,function(e){sendAjax(data,url)},function(e){e.preventDefault();alertify.error(LANG[44])})};var appMgmtSave=function(frmId){var url="/ajax/ajax_appMgmtSave.php";var data=$("#"+frmId).serialize();sendAjax(data,url)};var checkUpds=function(){$.ajax({type:"GET",dataType:"html",url:APP_ROOT+"/ajax/ajax_checkUpds.php",timeout:10000,success:function(response){$("#updates").html(response);if(typeof componentHandler!=="undefined"){componentHandler.upgradeDom()}},error:function(jqXHR,textStatus,errorThrown){$("#updates").html("!")}})};var clearEventlog=function(sk){var atext='

          '+LANG[20]+"

          ";alertify.okBtn(LANG[43]).cancelBtn(LANG[44]).confirm(atext,function(e){var data={clear:1,sk:sk,isAjax:1};var url="/ajax/ajax_eventlog.php";sendAjax(data,url)},function(e){e.preventDefault();alertify.error(LANG[44])})};var showOptional=function(me){$(me).hide();var actions=$(me).parent().children(".actions-optional");actions.show(250)};var getTime=function(){var t=new Date();return t.getTime()};var checkPassLevel=function(password,dst){var level=zxcvbn(password);outputResult(level.score,dst)};var outputResult=function(level,dstId){var complexity,selector=".passLevel-"+dstId;complexity=$(selector);complexity.removeClass("weak good strong strongest");if(passwordData.passLength===0){complexity.attr("title","").empty()}else{if(passwordData.passLength");switch(type){case"ok":alertify.success(txt);break;case"error":alertify.error(txt);break;case"warn":alertify.log(txt);break;case"nofancyerror":html='

          Oops...
          '+LANG[1]+"
          "+txt+"

          ";return html;default:alertify.error(txt);break}if(typeof action!=="undefined"){eval(action)}};var checkLdapConn=function(formId){var form="#frmLdap";var ldapServer=$(form).find("[name=ldap_server]").val();var ldapBase=$(form).find("[name=ldap_base]").val();var ldapGroup=$(form).find("[name=ldap_group]").val();var ldapBindUser=$(form).find("[name=ldap_binduser]").val();var ldapBindPass=$(form).find("[name=ldap_bindpass]").val();var sk=$(form).find("[name=sk]").val();var data={ldap_server:ldapServer,ldap_base:ldapBase,ldap_group:ldapGroup,ldap_binduser:ldapBindUser,ldap_bindpass:ldapBindPass,isAjax:1,sk:sk};sendAjax(data,"/ajax/ajax_checkLdap.php")};var goLogin=function(){setTimeout(function(){location.href="index.php"},2000)};var getBrowser=function(){var browser;var ua=navigator.userAgent;var re=new RegExp("(MSIE|Firefox)[ /]?([0-9]{1,}[.0-9]{0,})","i");if(re.exec(ua)!==null){browser=RegExp.$1}return browser};var chosenDetect=function(){var selectWidth="250px";var searchTreshold=10;$(".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});$(".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});$(".sel-chosen-profile").chosen({placeholder_text_single:LANG[23],disable_search_threshold:searchTreshold,no_results_text:LANG[26],width:selectWidth});$(".sel-chosen-customer").each(function(){var deselect=$(this).hasClass("sel-chosen-deselect");$(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})});$(".sel-chosen-category").each(function(){var deselect=$(this).hasClass("sel-chosen-deselect");$(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})});$(".sel-chosen-action").each(function(){var deselect=$(this).hasClass("sel-chosen-deselect");$(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})});$(".sel-chosen-ns").chosen({disable_search:true,width:selectWidth})};var checkboxDetect=function(container){$(container).find(".checkbox").button({icons:{primary:"ui-icon-transferthick-e-w"}}).click(function(){if($(this).prop("checked")===true){$(this).button("option","label",LANG[40])}else{$(this).button("option","label",LANG[41])}})};var encryptFormValue=function(inputId){var input=$(inputId);var curValue=input.val();var nextName=inputId+"-encrypted";var nextInput=input.next(':input[name="'+nextName+'"]');if((curValue!==""&&nextInput.attr("name")!==nextName)||(curValue!==""&&nextInput.attr("name")===nextName&&parseInt(input.next().val())!==curValue.length)){var passEncrypted=encrypt.encrypt(curValue);input.val(passEncrypted);if(nextInput.length>0){nextInput.val(passEncrypted.length)}else{input.after('')}}};var initializeClipboard=function(){var clipboard=new Clipboard(".clip-pass-button",{text:function(trigger){sysPassUtil.Common.viewPass(trigger.getAttribute("data-account-id"),false);return $("#clip-pass-text").html()}});clipboard.on("success",function(e){sysPassUtil.Common.resMsg("ok",LANG[45])});clipboard.on("error",function(e){sysPassUtil.Common.resMsg("error",LANG[46])});var clipboardPass=new Clipboard(".dialog-clip-pass-button");var clipboardUser=new Clipboard(".dialog-clip-user-button");clipboardPass.on("success",function(e){$(".dialog-pass-text").addClass("dialog-clip-pass-copy round");e.clearSelection()});clipboardUser.on("success",function(e){e.clearSelection()})};var bindPassEncrypt=function(){$("body").delegate(":input[type=password]","blur",function(e){var id=$(this).attr("id");encryptFormValue("#"+id)});$("body").delegate(":input[type=password]","keypress",function(e){if(e.keyCode===13){e.preventDefault();var form=$(this).closest("form");var id=$(this).attr("id");encryptFormValue("#"+id);form.submit()}})};return{accSearch:accSearch,appMgmtData:appMgmtData,appMgmtSave:appMgmtSave,appMgmtDelete:appMgmtDelete,checkboxDetect:checkboxDetect,checkLdapConn:checkLdapConn,checkPassLevel:checkPassLevel,checkUpds:checkUpds,clearEventlog:clearEventlog,clearSearch:clearSearch,chosenDetect:chosenDetect,configMgmt:configMgmt,delAccount:delAccount,delFile:delFile,doAction:doAction,doLogin:doLogin,doLogout:doLogout,downFile:downFile,dropFile:dropFile,encryptFormValue:encryptFormValue,getFiles:getFiles,importFile:importFile,navLog:navLog,outputResult:outputResult,redirect:redirect,resMsg:resMsg,searchSort:searchSort,saveAccount:saveAccount,sendAjax:sendAjax,sendRequest:sendRequest,setContentSize:setContentSize,showOptional:showOptional,showSearchOrder:showSearchOrder,usrUpdPass:usrUpdPass,viewPass:viewPass,passwordData:passwordData,passToClip:passToClip,APP_ROOT:APP_ROOT,LANG:LANG,PK:PK}}; \ No newline at end of file