From 09520d3cc786d60eb72b47851793e4610a59b4e7 Mon Sep 17 00:00:00 2001 From: nuxsmin Date: Sun, 28 Oct 2018 22:37:57 +0100 Subject: [PATCH] * [FIX] Fixed wrong behavior when downloading PDF file from file management * [MOD] Improved backup and export management. They are now stored in compressed file format, can be downloaded without direct access through the web browser and it keeps tracking when downloaded. * [MOD] Updated translations * [ADD] Unit tests Signed-off-by: nuxsmin --- app/locales/da/LC_MESSAGES/messages.mo | Bin 117539 -> 67069 bytes app/locales/da/LC_MESSAGES/messages.po | 13168 +++++++-------- app/locales/de_DE/LC_MESSAGES/messages.mo | Bin 69622 -> 69829 bytes app/locales/de_DE/LC_MESSAGES/messages.po | 2550 +-- app/locales/en_GB/LC_MESSAGES/messages.mo | Bin 105496 -> 105252 bytes app/locales/en_GB/LC_MESSAGES/messages.po | 3374 ++-- app/locales/en_US/LC_MESSAGES/messages.mo | Bin 105496 -> 105252 bytes app/locales/en_US/LC_MESSAGES/messages.po | 3374 ++-- app/locales/fr_FR/LC_MESSAGES/messages.mo | Bin 67120 -> 67312 bytes app/locales/fr_FR/LC_MESSAGES/messages.po | 2550 +-- app/locales/hu_HU/LC_MESSAGES/messages.mo | Bin 91028 -> 54661 bytes app/locales/hu_HU/LC_MESSAGES/messages.po | 13646 +++++++-------- app/locales/it_IT/LC_MESSAGES/messages.mo | Bin 119096 -> 8246 bytes app/locales/it_IT/LC_MESSAGES/messages.po | 12910 ++++++-------- app/locales/nl_NL/LC_MESSAGES/messages.mo | Bin 101200 -> 61172 bytes app/locales/nl_NL/LC_MESSAGES/messages.po | 14030 +++++++--------- app/locales/pl_PL/LC_MESSAGES/messages.mo | Bin 97778 -> 60387 bytes app/locales/pl_PL/LC_MESSAGES/messages.po | 13606 +++++++-------- app/locales/pt_BR/LC_MESSAGES/messages.mo | Bin 117031 -> 67765 bytes app/locales/pt_BR/LC_MESSAGES/messages.po | 13140 +++++++-------- app/locales/ru_RU/LC_MESSAGES/messages.mo | Bin 115658 -> 71308 bytes app/locales/ru_RU/LC_MESSAGES/messages.po | 13647 +++++++-------- .../web/Controllers/AccountFileController.php | 2 + .../Controllers/ConfigBackupController.php | 132 +- .../Controllers/ConfigManagerController.php | 64 +- .../Controllers/Helpers/Grid/EventlogGrid.php | 23 +- .../web/Controllers/Helpers/Grid/FileGrid.php | 4 + .../web/Controllers/Helpers/LayoutHelper.php | 4 +- .../web/Controllers/PublicLinkController.php | 4 +- .../web/Controllers/StatusController.php | 4 +- .../material-blue/views/config/backup.inc | 31 +- .../material-blue/views/config/info.inc | 6 +- .../views/grid/datagrid-rows.inc | 55 +- .../material-blue/views/main/upgrade.inc | 6 +- composer.json | 3 +- lib/SP/Bootstrap.php | 4 +- lib/SP/Config/Config.php | 4 +- .../DataGrid/Action/DataGridActionBase.php | 58 +- .../Action/DataGridActionInterface.php | 7 + .../Html/DataGrid/DataGridDataInterface.php | 2 - lib/SP/Mvc/View/Template.php | 5 + lib/SP/Services/Auth/LoginService.php | 4 +- .../Services/AuthToken/AuthTokenService.php | 4 +- lib/SP/Services/Backup/FileBackupService.php | 120 +- .../Crypt/TemporaryMasterPassService.php | 4 +- lib/SP/Services/Export/XmlExportService.php | 61 +- lib/SP/Services/Install/Installer.php | 14 +- lib/SP/Services/Install/MySQL.php | 4 +- lib/SP/Services/PublicLink/PublicLinkKey.php | 4 +- lib/SP/Services/Upgrade/UpgradeAppService.php | 6 +- .../Services/Upgrade/UpgradeConfigService.php | 6 +- .../Upgrade/UpgradeDatabaseService.php | 6 +- lib/SP/Services/Upgrade/UpgradeUtil.php | 14 +- .../UserPassRecoverService.php | 4 +- lib/SP/Storage/File/ArchiveHandler.php | 117 + lib/SP/Storage/File/FileHandler.php | 34 + lib/SP/Util/PasswordUtil.php | 141 + lib/SP/Util/Util.php | 134 +- lib/SP/Util/{Version.php => VersionUtil.php} | 4 +- public/js/app-actions.js | 2 +- public/js/app-actions.min.js | 41 +- tests/SP/Core/Crypt/CryptPKITest.php | 12 +- tests/SP/Core/Crypt/HashTest.php | 6 +- tests/SP/Core/Crypt/VaultTest.php | 6 +- .../AccountHistoryRepositoryTest.php | 14 +- .../Repositories/AuthTokenRepositoryTest.php | 7 +- .../NotificationRepositoryTest.php | 100 + .../Repositories/PublicLinkRepositoryTest.php | 8 +- .../UserPassRecoverRepositoryTest.php | 8 +- .../Account/AccountAclServiceTest.php | 6 +- .../Account/AccountHistoryServiceTest.php | 14 +- .../Services/Account/AccountServiceTest.php | 4 +- .../Services/Backup/FileBackupServiceTest.php | 4 +- .../Services/Export/XmlExportServiceTest.php | 4 +- tests/SP/Services/Install/InstallerTest.php | 4 +- tests/SP/Services/Install/MySQLTest.php | 4 +- .../Notification/NotificationServiceTest.php | 137 +- .../PublicLink/PublicLinkServiceTest.php | 7 +- .../UserPassRecoverServiceTest.php | 10 +- tests/SP/Util/PasswordUtilTest.php | 137 + tests/SP/Util/UtilTest.php | 127 + tests/res/config/config.xml | 8 +- tests/res/datasets/syspass_notification.xml | 12 +- 83 files changed, 49149 insertions(+), 58627 deletions(-) create mode 100644 lib/SP/Storage/File/ArchiveHandler.php create mode 100644 lib/SP/Util/PasswordUtil.php rename lib/SP/Util/{Version.php => VersionUtil.php} (98%) create mode 100644 tests/SP/Util/PasswordUtilTest.php create mode 100644 tests/SP/Util/UtilTest.php diff --git a/app/locales/da/LC_MESSAGES/messages.mo b/app/locales/da/LC_MESSAGES/messages.mo index 2e90619da8ccf641856fd1709bf8040b0671bf86..e6f7edd4eb3aaef96907ce65f75bb5f70f135913 100644 GIT binary patch delta 22138 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 JBtE##{{gX^`Ah%+ literal 117539 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

Twuq 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\n" "Language-Team: \n" @@ -20,1525 +20,279 @@ msgstr "" "X-Poedit-SearchPath-1: ../../../../lib\n" "X-Poedit-SearchPath-2: ../../../config\n" -#: ../../../modules/web/Controllers/AccountFileController.php:161 -msgid "CONSULTA INVÁLIDA" -msgstr "UGYLDIG FORESPØRGSEL" +#: ../../../../lib/SP/Bootstrap.php:278 +#, php-format +msgid "Versión de PHP requerida >= %s <= %s" +msgstr "Påkrævet PHP version >= %s <= %s" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:64 -msgid "La sesión no se ha iniciado o ha caducado" -msgstr "Sessionen er ikke startet eller den er udløbet" +#: ../../../../lib/SP/Config/ConfigUtil.php:111 +#, php-format +msgid "Actual: %s - Necesario: 750" +msgstr "Nuværende: %s -Påkrævet: 750" -#: ../../../modules/web/Forms/AccountForm.php:171 -msgid "Es necesario un nombre de cuenta" -msgstr "Et kontonavn er påkrævet" +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +msgid "Error interno" +msgstr "Intern fejl" -#: ../../../modules/web/Forms/AccountForm.php:175 -#: ../../../modules/web/Forms/ClientForm.php:84 -msgid "Es necesario un nombre de cliente" -msgstr "Et klientnavn er påkrævet" +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +msgid "No se puede usar el módulo de encriptación" +msgstr "Krypto-modulet kan ikke indlæses" -#: ../../../modules/web/Forms/AccountForm.php:161 -msgid "Es necesario un usuario" -msgstr "Et brugernavn er påkrævet" +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +msgid "Error al generar datos cifrados" +msgstr "Fejl under oprettelsen af de krypterede data" -#: ../../../modules/web/Forms/AccountForm.php:131 -msgid "Es necesaria una clave" -msgstr "En er påkrævet" +#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 +#: ../../../../lib/SP/Mvc/View/Template.php:127 +#, php-format +msgid "No es posible obtener la plantilla \"%s\" : %s" +msgstr "Kan ikke indlæse \"%s\" skabelonen: %s" -#: ../../../modules/web/Forms/AccountForm.php:179 -msgid "Es necesario una categoría" -msgstr "En kategori er påkrævet" +#: ../../../../lib/SP/Http/Address.php:49 +#: ../../../../lib/SP/Http/Address.php:68 +msgid "IP inválida" +msgstr "Ugyldig IP-adresse" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:114 -msgid "Acción Inválida" -msgstr "Ugyldig handling" +#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 +#, php-format +msgid "Es necesaria una clave con al menos %d caracteres" +msgstr "Password needs to be %d characters long" -#: ../../../modules/web/Controllers/ConfigBackupController.php:86 -#: ../../../modules/web/Controllers/UserPassResetController.php:173 -#: ../../../modules/web/Forms/AccountForm.php:135 -#: ../../../modules/web/Forms/UserForm.php:161 -msgid "Las claves no coinciden" -msgstr "Kodeordene er ikke identiske" +#: ../../../../lib/SP/Mvc/View/Template.php:302 +#: ../../../../lib/SP/Mvc/View/Template.php:366 +#, php-format +msgid "No es posible obtener la variable \"%s\"" +msgstr "Kan ikke indlæse \"%s\" variablen" -#: ../../../modules/api/Controllers/AccountController.php:184 -#: ../../../modules/api/Controllers/AccountController.php:190 -#: ../../../modules/web/Controllers/AccountController.php:718 -#: ../../../modules/web/Controllers/AccountController.php:729 -msgid "Cuenta creada" -msgstr "Konto tilføjet" +#: ../../../../lib/SP/Mvc/View/Template.php:335 +#, php-format +msgid "No es posible destruir la variable \"%s\"" +msgstr "Kan ikke nulstille \"%s\" variablen" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:200 -msgid "Error al crear la cuenta" -msgstr "Fejl i oprettelsen af kontoen" +#: ../../../../lib/SP/Mvc/View/Template.php:356 +msgid "La plantilla no contiene archivos" +msgstr "Skabelonen indeholder ingen filer" -#: ../../../modules/web/Controllers/ConfigLdapController.php:95 -#: ../../../modules/web/Controllers/ConfigMailController.php:102 -#: ../../../config/strings.js.inc:80 -msgid "Sin cambios" -msgstr "Ingen ændringer" +#: ../../../../lib/SP/Plugin/PluginManager.php:170 +#, php-format +msgid "Versión de plugin no compatible (%s)" +msgstr "Plugin version not compatible (%s)" -#: ../../../modules/api/Controllers/AccountController.php:234 -#: ../../../modules/api/Controllers/AccountController.php:240 -#: ../../../modules/web/Controllers/AccountController.php:763 -#: ../../../modules/web/Controllers/AccountController.php:774 -msgid "Cuenta actualizada" -msgstr "Konto opdateret" +#: ../../../../lib/SP/Plugin/PluginManager.php:192 +#, php-format +msgid "No es posible cargar el plugin \"%s\"" +msgstr "Kan ikke aktivere \"%s\" -plugin" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:382 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:431 -msgid "Error al modificar la cuenta" -msgstr "Fejl i opdateringen af kontoen" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 +#, php-format +msgid "Realizado por: %s (%s)" +msgstr "Udført af: %s (%s)" -#: ../../../modules/api/Controllers/AccountController.php:309 -#: ../../../modules/api/Controllers/AccountController.php:315 -#: ../../../modules/web/Controllers/AccountController.php:893 -#: ../../../modules/web/Controllers/AccountController.php:898 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:110 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:115 -#: ../../../modules/web/Controllers/AccountManagerController.php:145 -#: ../../../modules/web/Controllers/AccountManagerController.php:150 -msgid "Cuenta eliminada" -msgstr "Konto slettet" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 +#, php-format +msgid "Dirección IP: %s" +msgstr "IP-adresse: %s" -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:162 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:321 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:192 -msgid "Error al eliminar la cuenta" -msgstr "Fejl i sletning af kontoen" - -#: ../../../modules/api/Controllers/AccountController.php:138 -#: ../../../modules/api/Controllers/AccountController.php:144 -#: ../../../modules/web/Controllers/AccountController.php:804 -#: ../../../modules/web/Controllers/AccountController.php:815 -#: ../../../modules/web/Controllers/UserController.php:411 -#: ../../../modules/web/Controllers/UserController.php:415 -#: ../../../modules/web/Controllers/UserPassResetController.php:186 -#: ../../../modules/web/Controllers/UserPassResetController.php:190 -msgid "Clave actualizada" -msgstr "Kodeord skiftet" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:436 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:235 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:260 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:233 -msgid "Error al actualizar la clave" -msgstr "Fejl i opdateringen af kodeordet" - -#: ../../../modules/web/Controllers/AccountController.php:843 -#: ../../../modules/web/Controllers/AccountController.php:854 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:145 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:150 -msgid "Cuenta restaurada" -msgstr "Kontoen er genskabt" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:301 -#: ../../../../lib/SP/Services/Account/AccountService.php:582 -msgid "Error al restaurar cuenta" -msgstr "Fejl i genskabelse af kontoen" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 -#: ../../../config/actions.xml:571 -msgid "Ver Usuario" -msgstr "Se bruger" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 -#: ../../../config/actions.xml:583 -msgid "Editar Usuario" -msgstr "Tilret bruger" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 -#: ../../../config/actions.xml:577 -msgid "Nuevo Usuario" -msgstr "Ny bruger" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 -#: ../../../config/actions.xml:607 -msgid "Ver Grupo" -msgstr "Se gruppe" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 -#: ../../../config/actions.xml:619 -msgid "Editar Grupo" -msgstr "Tilret gruppe" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 -#: ../../../config/actions.xml:613 -msgid "Nuevo Grupo" -msgstr "Ny gruppe" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 -#: ../../../config/actions.xml:637 -msgid "Ver Perfil" -msgstr "Se profil" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 -#: ../../../config/actions.xml:649 -msgid "Editar Perfil" -msgstr "Tilret profil" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 -#: ../../../config/actions.xml:643 -msgid "Nuevo Perfil" -msgstr "Ny profil" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 -#: ../../../config/actions.xml:331 -msgid "Ver Cliente" -msgstr "Se klient" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 -#: ../../../config/actions.xml:343 -msgid "Editar Cliente" -msgstr "Tilret klient" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 -#: ../../../config/actions.xml:337 -msgid "Nuevo Cliente" -msgstr "Ny klient" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 -#: ../../../config/actions.xml:301 -msgid "Ver Categoría" -msgstr "Se kategori" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 -#: ../../../config/actions.xml:313 -msgid "Editar Categoría" -msgstr "Tilret kategori" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 -#: ../../../config/actions.xml:307 -msgid "Nueva Categoría" -msgstr "Ny kategori" - -#: ../../../modules/web/Controllers/AuthTokenController.php:330 -msgid "Ver Autorización" -msgstr "Se autorisation" - -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 -msgid "Nueva Autorización" -msgstr "Ny autorisation" - -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 -msgid "Editar Autorización" -msgstr "Tilret autorisation" - -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 -msgid "Nuevo Campo" -msgstr "Nyt felt" - -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 -msgid "Editar Campo" -msgstr "Tilret felt" - -#: ../../../modules/web/Forms/UserForm.php:111 -#, fuzzy -msgid "Es necesario un nombre de usuario" -msgstr "Et brugernavn er påkrævet" - -#: ../../../modules/web/Forms/UserForm.php:115 -msgid "Es necesario un login" -msgstr "Et login er påkrævet" - -#: ../../../modules/web/Forms/UserForm.php:119 -msgid "Es necesario un perfil" -msgstr "En profil er påkrævet" - -#: ../../../modules/web/Forms/UserForm.php:123 -msgid "Es necesario un grupo" -msgstr "En gruppe er påkrævet" - -#: ../../../modules/web/Forms/UserForm.php:127 -msgid "Es necesario un email" -msgstr "En e-mailadresse er påkrævet" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:53 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:92 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:151 -#: ../../../modules/web/Controllers/ConfigImportController.php:56 -#: ../../../modules/web/Controllers/ConfigLdapController.php:218 -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:55 -#: ../../../modules/web/Forms/UserForm.php:131 -#: ../../../modules/web/Forms/UserForm.php:153 -#: ../../../modules/web/Forms/UserForm.php:171 -msgid "Ey, esto es una DEMO!!" -msgstr "Øj, dette er en DEMO-version!!" - -#: ../../../modules/web/Controllers/UserPassResetController.php:169 -#: ../../../modules/web/Forms/AuthTokenForm.php:101 -#: ../../../modules/web/Forms/UserForm.php:157 -msgid "La clave no puede estar en blanco" -msgstr "Kodeordet må ikke være tomt" - -#: ../../../modules/web/Controllers/UserController.php:311 -#: ../../../modules/web/Controllers/UserController.php:317 -msgid "Usuario creado" -msgstr "Bruger tilføjet" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:474 -msgid "Error al crear el usuario" -msgstr "Fejl under oprettelsen af bruger" - -#: ../../../modules/web/Controllers/UserController.php:372 -#: ../../../modules/web/Controllers/UserController.php:378 -msgid "Usuario actualizado" -msgstr "Bruger opdateret" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:100 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:677 -#: ../../../../lib/SP/Services/User/UserService.php:310 -msgid "Error al actualizar el usuario" -msgstr "Fejl under opdateringen af bruger" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:165 -#: ../../../../lib/SP/Services/User/UserService.php:331 -msgid "Error al modificar la clave" -msgstr "Fejl under opdateringen af kodeordet" - -#: ../../../modules/web/Forms/UserForm.php:179 -msgid "No es posible eliminar, usuario en uso" -msgstr "Brugeren er aktiv og kan ikke slettes" - -#: ../../../modules/web/Controllers/UserController.php:277 -#: ../../../modules/web/Controllers/UserController.php:281 -msgid "Usuario eliminado" -msgstr "Bruger slettet" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:184 -msgid "Error al eliminar el usuario" -msgstr "Fejl under sletning af bruger" - -#: ../../../modules/web/Forms/UserGroupForm.php:84 -msgid "Es necesario un nombre de grupo" -msgstr "Et gruppenavn er påkrævet" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:306 -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:351 -msgid "Nombre de grupo duplicado" -msgstr "Gruppenavnet er allerede i brug" - -#: ../../../modules/api/Controllers/UserGroupController.php:91 -#: ../../../modules/api/Controllers/UserGroupController.php:96 -#: ../../../modules/web/Controllers/UserGroupController.php:264 -#: ../../../modules/web/Controllers/UserGroupController.php:268 -msgid "Grupo creado" -msgstr "Gruppe tilføjet" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:315 -msgid "Error al crear el grupo" -msgstr "Fejl under oprettelsen af gruppen" - -#: ../../../modules/api/Controllers/UserGroupController.php:122 -#: ../../../modules/api/Controllers/UserGroupController.php:127 -#: ../../../modules/web/Controllers/UserGroupController.php:303 -#: ../../../modules/web/Controllers/UserGroupController.php:307 -msgid "Grupo actualizado" -msgstr "Gruppen er opdateret" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:361 -msgid "Error al actualizar el grupo" -msgstr "Fejl under opdateringen af gruppen" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 -msgid "Usuarios" -msgstr "Brugere" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 +msgid "Solicitud" +msgstr "Anmodning" #. (itstool) path: action/text #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigBackupController.php:120 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 +#: ../../../modules/web/Controllers/ConfigManagerController.php:175 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: ../../../config/actions.xml:13 msgid "Cuentas" msgstr "Konti" -#: ../../../../inc/SP/Mgmt/Customers/Customer.class.php:115 -msgid "No es posible eliminar" -msgstr "Kan ikke slette" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 +msgid "Notificación" +msgstr "Notifikation" -#: ../../../modules/api/Controllers/UserGroupController.php:151 -#: ../../../modules/api/Controllers/UserGroupController.php:156 -#: ../../../modules/web/Controllers/UserGroupController.php:230 -#: ../../../modules/web/Controllers/UserGroupController.php:234 -msgid "Grupo eliminado" -msgstr "Gruppe slettet" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:62 -msgid "Error al eliminar el grupo" -msgstr "Fejl under sletning af gruppe" - -#: ../../../modules/web/Forms/UserProfileForm.php:116 -msgid "Es necesario un nombre de perfil" -msgstr "Et profilnavn er påkrævet" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:230 -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:275 -msgid "Nombre de perfil duplicado" -msgstr "Profilnavnet er allerede i brug" - -#: ../../../modules/web/Controllers/UserProfileController.php:248 -msgid "Perfil creado" -msgstr "Profil tilføjet" - -#: ../../../modules/web/Controllers/UserProfileController.php:284 -msgid "Perfil actualizado" -msgstr "Profil opdateret" - -#: ../../../modules/web/Controllers/UserProfileController.php:215 -#: ../../../modules/web/Controllers/UserProfileController.php:219 -msgid "Perfil eliminado" -msgstr "Profil slettet" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:77 -#: ../../../modules/api/Controllers/ClientController.php:93 -#: ../../../modules/api/Controllers/ClientController.php:98 -#: ../../../modules/web/Controllers/ClientController.php:244 -#: ../../../modules/web/Controllers/ClientController.php:248 -msgid "Cliente creado" -msgstr "Klient tilføjet" - -#: ../../../modules/api/Controllers/ClientController.php:124 -#: ../../../modules/api/Controllers/ClientController.php:129 -#: ../../../modules/web/Controllers/ClientController.php:280 -#: ../../../modules/web/Controllers/ClientController.php:284 -msgid "Cliente actualizado" -msgstr "Klient opdateret" - -#: ../../../modules/api/Controllers/ClientController.php:153 -#: ../../../modules/api/Controllers/ClientController.php:158 -#: ../../../modules/web/Controllers/ClientController.php:212 -#: ../../../modules/web/Controllers/ClientController.php:216 -msgid "Cliente eliminado" -msgstr "Klient slettet" - -#: ../../../modules/web/Forms/CategoryForm.php:83 -msgid "Es necesario un nombre de categoría" -msgstr "Et kategorinavn er påkrævet" - -#: ../../../modules/api/Controllers/CategoryController.php:91 -#: ../../../modules/api/Controllers/CategoryController.php:96 -#: ../../../modules/web/Controllers/CategoryController.php:253 -#: ../../../modules/web/Controllers/CategoryController.php:257 -msgid "Categoría creada" -msgstr "Kategori tilføjet" - -#: ../../../modules/api/Controllers/CategoryController.php:121 -#: ../../../modules/api/Controllers/CategoryController.php:126 -#: ../../../modules/web/Controllers/CategoryController.php:293 -#: ../../../modules/web/Controllers/CategoryController.php:297 -msgid "Categoría actualizada" -msgstr "Kategori opdateret" - -#: ../../../modules/api/Controllers/CategoryController.php:150 -#: ../../../modules/api/Controllers/CategoryController.php:155 -#: ../../../modules/web/Controllers/CategoryController.php:219 -#: ../../../modules/web/Controllers/CategoryController.php:223 -msgid "Categoría eliminada" -msgstr "Kategori slettet" - -#: ../../../modules/web/Controllers/AuthTokenController.php:258 -msgid "Autorización creada" -msgstr "Autorisation tilføjet" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 -#: ../../../modules/web/Controllers/AuthTokenController.php:291 -#: ../../../modules/web/Controllers/AuthTokenController.php:300 -#: ../../../modules/web/Controllers/AuthTokenController.php:307 -msgid "Autorización actualizada" -msgstr "Autorisation opdateret" - -#: ../../../modules/web/Controllers/AuthTokenController.php:225 -#: ../../../modules/web/Controllers/AuthTokenController.php:229 -msgid "Autorización eliminada" -msgstr "Autorisation slettet" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:87 -msgid "Nombre del campo no indicado" -msgstr "Feltnavn ikke angivet" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:91 -msgid "Tipo del campo no indicado" -msgstr "Felttype ikke angivet" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:95 -msgid "Módulo del campo no indicado" -msgstr "Feltmodul ikke angivet" - -#: ../../../modules/web/Controllers/CustomFieldController.php:234 -#: ../../../modules/web/Controllers/CustomFieldController.php:238 -msgid "Campo creado" -msgstr "Felt tilføjet" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:74 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:87 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:156 -#: ../../../modules/web/Controllers/CustomFieldController.php:271 -#: ../../../modules/web/Controllers/CustomFieldController.php:275 -msgid "Campo actualizado" -msgstr "Felt opdateret" - -#: ../../../modules/web/Controllers/CustomFieldController.php:206 -msgid "Campo eliminado" -msgstr "Felt slettet" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:94 -msgid "Realizar Backup" -msgstr "Udfør backup" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:112 -msgid "Error al realizar el backup" -msgstr "Fejl under udførelsen af backup" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:114 -#: ../../../../lib/SP/Services/Export/XmlExportService.php:167 -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -msgid "Revise el registro de eventos para más detalles" -msgstr "Se venligst hændelsesloggen for yderligere detaljer" - -#: ../../../modules/api/Controllers/ConfigController.php:57 -#: ../../../modules/web/Controllers/ConfigBackupController.php:64 -msgid "Copia de la aplicación y base de datos realizada correctamente" -msgstr "Applikations- og databasebackup blev gennemført korrekt" - -#: ../../../modules/api/Controllers/ConfigController.php:61 -#: ../../../modules/web/Controllers/ConfigBackupController.php:67 -msgid "Proceso de backup finalizado" -msgstr "Backup-processen er færdig" - -#: ../../../../inc/SP/Core/XmlExport.class.php:146 -msgid "Error al realizar la exportación de cuentas" -msgstr "Fejl under eksportering af konti" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:165 -msgid "Error al realizar la exportación" -msgstr "Fejl under eksportering" - -#: ../../../../inc/SP/Core/XmlExport.class.php:155 -msgid "Exportación de cuentas realizada correctamente" -msgstr "Eksportering blev gennemført korrekt" - -#: ../../../modules/api/Controllers/ConfigController.php:91 -#: ../../../modules/api/Controllers/ConfigController.php:94 -#: ../../../modules/web/Controllers/ConfigBackupController.php:102 -#: ../../../modules/web/Controllers/ConfigBackupController.php:127 -msgid "Proceso de exportación finalizado" -msgstr "Eksportering færdig" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:169 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:171 -msgid "Los parámetros de LDAP no están configurados" -msgstr "LDAP-parametrene er ikke angivet" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:95 -#: ../../../modules/web/Controllers/ConfigLdapController.php:154 -#: ../../../modules/web/Controllers/ConfigLdapController.php:197 -msgid "Conexión a LDAP correcta" -msgstr "LDAP-forbindelsen er OK" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:109 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:196 -msgid "Objetos encontrados" -msgstr "Objekter fundet" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:257 -msgid "Modificar Configuración" -msgstr "Tilret konfiguration" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:70 -msgid "El tamaño máximo por archivo es de 16MB" -msgstr "Maksimal tilladt filstørrelse er 16MB" - -#: ../../../config/strings.js.inc:45 -msgid "Extensión no permitida" -msgstr "Fil-endelse er ikke tilladt " - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:115 -msgid "Faltan parámetros de Proxy" -msgstr "Proxy-parametre ikke angivet" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:129 -msgid "Proxy habiltado" -msgstr "Proxy er aktiveret" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:134 -msgid "Proxy deshabilitado" -msgstr "Proxy er deaktiveret" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:223 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:309 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:375 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:422 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:475 -msgid "Sección" -msgstr "Sektion" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 -msgid "General" -msgstr "Generelt" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:59 -msgid "Faltan parámetros de Wiki" -msgstr "Wiki-parametre ikke angivet" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:69 -msgid "Wiki habiltada" -msgstr "Wiki er aktiveret" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:74 -msgid "Wiki deshabilitada" -msgstr "Wiki er deaktiveret" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 -#: ../../../config/actions.xml:37 -msgid "Wiki" -msgstr "Wiki" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:69 -#: ../../../modules/web/Controllers/ConfigLdapController.php:139 -#: ../../../modules/web/Controllers/ConfigLdapController.php:175 -msgid "Faltan parámetros de LDAP" -msgstr "LDAP-parametre er ikke angivet" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:88 -msgid "LDAP habiltado" -msgstr "LDAP aktiveret" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:93 -msgid "LDAP deshabilitado" -msgstr "LDAP deaktiveret" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 -msgid "LDAP" -msgstr "LDAP" - -#: ../../../modules/web/Controllers/ConfigMailController.php:68 -#: ../../../modules/web/Controllers/ConfigMailController.php:125 -msgid "Faltan parámetros de Correo" -msgstr "E-mail parametre ikke angivet" - -#: ../../../modules/web/Controllers/ConfigMailController.php:93 -msgid "Correo habiltado" -msgstr "E-mail er aktiveret" - -#: ../../../modules/web/Controllers/ConfigMailController.php:100 -msgid "Correo deshabilitado" -msgstr "E-mail er deaktiveret" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 -msgid "Correo" -msgstr "E-mail" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:68 -msgid "Configuración actualizada" -msgstr "Konfiguration opdateret" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:297 -#: ../../../../lib/SP/Services/Auth/LoginService.php:321 -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:144 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -msgid "Clave maestra actualizada" -msgstr "Hoved-kodeord er opdateret" - -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:145 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -msgid "Reinicie la sesión para cambiarla" -msgstr "Genstart venligst sessionen for at genindlæse den" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:72 -msgid "Clave maestra no indicada" -msgstr "Hoved-kodeord skal angives" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:76 -msgid "Se ha de confirmar el cambio de clave" -msgstr "Opdateringen af kodeordet skal bekræftes" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:80 -msgid "Las claves son idénticas" -msgstr "Kodeordene er identiske" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:84 -msgid "Las claves maestras no coinciden" -msgstr "Hoved-kodeordene er ikke identiske" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:88 -msgid "La clave maestra actual no coincide" -msgstr "Det nuværende hoved-kodeord passer ikke" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:89 -msgid "Errores al actualizar las claves de las cuentas" -msgstr "Fejl under opdatering af kontoens kodeord" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:233 -msgid "Errores al actualizar las claves de las cuentas del histórico" -msgstr "Fej under opdatering af kontoens kodeords-historik" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:136 -msgid "Errores al actualizar datos de campos personalizados" -msgstr "Fejl under opdatering af de brugerdefinerede felters indhold" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:71 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:77 #: ../../../../lib/SP/Services/Account/AccountCryptService.php:138 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:67 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:75 #: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:83 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:108 msgid "Actualizar Clave Maestra" msgstr "Opdater Hoved-kodeordet" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:138 -msgid "Error al guardar el hash de la clave maestra" -msgstr "Fejl under lagring af Hoved-kodeordets kontrolsum" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 +#, php-format +msgid "Cuentas actualizadas: %d / %d" +msgstr "Konti opdateret: %d / %d" -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:103 -msgid "Generar Clave Temporal" -msgstr "Opret midlertidigt kodeord" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 +#, php-format +msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" +msgstr "Opdaterede konti: %d / %d -%d%% - ETA: %ds (%.2f/s)" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 -msgid "Clave" -msgstr "Kodeord" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:200 -msgid "Clave Temporal Generada" -msgstr "Midlertidigt kodeord oprettet" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:110 -msgid "Error al generar clave temporal" -msgstr "Fejl under indtastning af midlertidigt kodeord" - -#: ../../../../inc/SP/Controller/LoginController.class.php:124 -msgid "Usuario/Clave no introducidos" -msgstr "Bruger/Kodeord skal angives" - -#: ../../../../inc/SP/Controller/LoginController.class.php:108 -msgid "Inicio sesión" -msgstr "Log ind" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:114 -msgid "Error al guardar los datos de LDAP" -msgstr "Fejl under lagring af LDAP brugerdata" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:59 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:154 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:244 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:334 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:389 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:417 -#: ../../../../lib/SP/Services/Account/AccountService.php:227 -#: ../../../../lib/SP/Services/Account/AccountService.php:232 -#: ../../../../lib/SP/Services/Api/ApiService.php:129 -#: ../../../../lib/SP/Services/Api/ApiService.php:227 -#: ../../../../lib/SP/Services/Api/ApiService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:187 -#: ../../../../lib/SP/Services/Auth/LoginService.php:351 -#: ../../../../lib/SP/Services/Auth/LoginService.php:500 -#: ../../../../lib/SP/Services/Auth/LoginService.php:505 -#: ../../../../lib/SP/Services/Auth/LoginService.php:537 -#: ../../../../lib/SP/Services/Auth/LoginService.php:644 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:311 -#: ../../../../lib/SP/Services/CustomField/CustomFieldService.php:203 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:108 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:79 -#: ../../../../lib/SP/Services/User/UserPassService.php:232 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:122 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:177 -msgid "Error interno" -msgstr "Intern fejl" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:224 -msgid "Error al actualizar la clave del usuario en la BBDD" -msgstr "Fejl under opdatering af brugerens kodeord i databasen" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:157 -#: ../../../../lib/SP/Services/Auth/LoginService.php:456 -#: ../../../../lib/SP/Services/Auth/LoginService.php:463 -#: ../../../../lib/SP/Services/Auth/LoginService.php:571 -#: ../../../../lib/SP/Services/Auth/LoginService.php:576 -#: ../../../../lib/SP/Services/Auth/LoginService.php:615 -#: ../../../../lib/SP/Services/Auth/LoginService.php:620 -msgid "Login incorrecto" -msgstr "Forkert login" - -#: ../../../../lib/SP/Core/Acl/Acl.php:301 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:112 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:155 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:110 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:142 -#: ../../../../lib/SP/Services/Auth/LoginService.php:217 -#: ../../../../lib/SP/Services/Auth/LoginService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:386 -#: ../../../../lib/SP/Services/Auth/LoginService.php:453 -#: ../../../../lib/SP/Services/Auth/LoginService.php:561 #: ../../../../lib/SP/Services/Auth/LoginService.php:604 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:238 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/Controllers/LoginController.php:102 -#: ../../../modules/web/Controllers/UserController.php:278 -#: ../../../modules/web/Controllers/UserController.php:312 -#: ../../../modules/web/Controllers/UserController.php:373 -#: ../../../modules/web/Controllers/UserController.php:412 -#: ../../../modules/web/Controllers/UserPassResetController.php:187 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 -msgid "Usuario" -msgstr "Bruger" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:471 -#: ../../../../lib/SP/Services/Auth/LoginService.php:476 -msgid "Cuenta expirada" -msgstr "Konto udløbet" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:484 -#: ../../../../lib/SP/Services/Auth/LoginService.php:489 -msgid "El usuario no tiene grupos asociados" -msgstr "Brugeren er ikke associeret med nogle grupper" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:605 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 -msgid "Autentificación" -msgstr "Autentikering" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:216 -#: ../../../../lib/SP/Services/Auth/LoginService.php:223 -msgid "Usuario deshabilitado" -msgstr "Brugerkonto inaktiv" - -#: ../../../../inc/SP/Controller/LoginController.class.php:246 -msgid "Error al obtener los datos del usuario de la BBDD" -msgstr "Fejl under indlæsning af brugerens data fra databasen" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:339 -msgid "La clave maestra no ha sido guardada o es incorrecta" -msgstr "Hoved-kodeordet er enten ikke gemt, eller forkert" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:282 -#: ../../../../lib/SP/Services/Auth/LoginService.php:288 -#: ../../../../lib/SP/Services/Auth/LoginService.php:306 -#: ../../../../lib/SP/Services/Auth/LoginService.php:312 -msgid "Clave maestra incorrecta" -msgstr "Forkert Hoved-kodeord" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/Controllers/UserProfileController.php:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 -msgid "Perfil" -msgstr "Profil" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:120 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:146 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:156 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:143 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:140 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/Controllers/UserGroupController.php:231 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:137 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 -msgid "Grupo" -msgstr "Gruppe" - -#: ../../../modules/web/Controllers/AccountFileController.php:370 -msgid "Gestión de archivos deshabilitada" -msgstr "Filhåndtering deaktiveret" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 -msgid "Subir Archivo" -msgstr "Upload fil" - -#: ../../../modules/web/Controllers/AccountFileController.php:167 -msgid "No hay extensiones permitidas" -msgstr "Der findes ingen tilladte filtype-angivelser(endelser)" - -#: ../../../../lib/SP/Services/Import/FileImport.php:100 -#: ../../../modules/web/Controllers/AccountFileController.php:184 -msgid "Tipo de archivo no soportado" -msgstr "Filtype ikke tilladt" - -#: ../../../modules/web/Controllers/AccountFileController.php:191 -msgid "Archivo inválido" -msgstr "Ugyldig fil" - -#: ../../../../lib/SP/Services/Import/FileImport.php:116 -#: ../../../modules/web/Controllers/AccountFileController.php:199 -#: ../../../modules/web/Controllers/AccountFileController.php:219 -msgid "Error interno al leer el archivo" -msgstr "Intern fejl under læsning af filen" - -#: ../../../modules/web/Controllers/AccountFileController.php:231 -#: ../../../modules/web/Controllers/AccountFileController.php:240 -msgid "Archivo guardado" -msgstr "Fil gemt" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:77 -msgid "No se pudo guardar el archivo" -msgstr "Fejl under lagring af filen" - -#: ../../../../ajax/ajax_filesMgmt.php:154 -#: ../../../../ajax/ajax_filesMgmt.php:198 -msgid "No es un ID de archivo válido" -msgstr "Ugyldigt fil-ID" - -#: ../../../modules/web/Controllers/AccountFileController.php:70 -#: ../../../modules/web/Controllers/AccountFileController.php:122 -msgid "El archivo no existe" -msgstr "Filen findes ikke" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 -#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 -msgid "Descargar Archivo" -msgstr "Download fil" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/Controllers/ItemPresetController.php:278 -#: ../../../modules/web/Controllers/ItemPresetController.php:311 -#: ../../../modules/web/Controllers/ItemPresetController.php:350 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 -msgid "ID" -msgstr "ID" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:122 -#: ../../../modules/web/Controllers/AccountFileController.php:84 -#: ../../../modules/web/Controllers/AccountFileController.php:97 -#: ../../../modules/web/Controllers/AccountFileController.php:137 -#: ../../../modules/web/Controllers/AccountFileController.php:232 -#: ../../../modules/web/Controllers/AccountFileController.php:329 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 -msgid "Archivo" -msgstr "Fil" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:451 -#: ../../../../lib/SP/Services/Auth/LoginService.php:514 -#: ../../../../lib/SP/Services/Auth/LoginService.php:560 -#: ../../../../lib/SP/Services/Auth/LoginService.php:603 -#: ../../../modules/web/Controllers/AccountFileController.php:235 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/Controllers/ItemPresetController.php:310 -#: ../../../modules/web/Controllers/ItemPresetController.php:349 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 -msgid "Tipo" -msgstr "Type" - -#: ../../../modules/web/Controllers/AccountFileController.php:236 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 -msgid "Tamaño" -msgstr "Størrelse" - -#: ../../../modules/web/Controllers/AccountFileController.php:328 -msgid "Archivo eliminado" -msgstr "Fil slettet" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:279 -msgid "Error al eliminar el archivo" -msgstr "Fejl under sletning af fil" - -#: ../../../../lib/SP/Services/Api/ApiService.php:152 -msgid "Parámetros incorrectos" -msgstr "Forkerte parametre" - -#: ../../../modules/web/Controllers/UserPassResetController.php:101 -msgid "Recuperación de Clave" -msgstr "Genskabelse af kodeord" - -#: ../../../modules/web/Controllers/UserPassResetController.php:102 -msgid "Solicitado para" -msgstr "Efterspørges af" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "Solicitud enviada" -msgstr "Anmodning afsendt" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "En breve recibirá un correo para completar la solicitud." -msgstr "Du vil snart modtage en e-mail for at gennemføre anmodningen" - -#: ../../../../ajax/ajax_passReset.php:86 -#: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:329 -msgid "Modificar Clave Usuario" -msgstr "Skift brugerens kodeord" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 -msgid "Login" -msgstr "Login" - -#: ../../../../ajax/ajax_passReset.php:107 -msgid "La clave es incorrecta o no coincide" -msgstr "Forkerte kodeord eller ikke-identiske kodeord" - -#: ../../../modules/web/Controllers/AccountController.php:919 -#: ../../../modules/web/Forms/NotificationForm.php:100 -msgid "Es necesaria una descripción" -msgstr "En beskrivelse er påkrævet" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1173 -msgid "Solicitud de Modificación de Cuenta" -msgstr "Anmodning om ændring af konto" - -#: ../../../modules/web/Controllers/AccountController.php:927 -msgid "Solicitante" -msgstr "Ansøger" - -#: ../../../modules/web/Controllers/AccountController.php:224 -#: ../../../modules/web/Controllers/AccountController.php:555 -#: ../../../modules/web/Controllers/AccountController.php:611 -#: ../../../modules/web/Controllers/AccountController.php:650 -#: ../../../modules/web/Controllers/AccountController.php:684 -#: ../../../modules/web/Controllers/AccountController.php:719 -#: ../../../modules/web/Controllers/AccountController.php:764 -#: ../../../modules/web/Controllers/AccountController.php:805 -#: ../../../modules/web/Controllers/AccountController.php:844 -#: ../../../modules/web/Controllers/AccountController.php:894 -#: ../../../modules/web/Controllers/AccountController.php:928 -#: ../../../modules/web/Controllers/AccountFileController.php:233 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:146 -#: ../../../modules/web/Controllers/AccountManagerController.php:146 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 -msgid "Cuenta" -msgstr "Konto" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:159 -#: ../../../modules/api/Controllers/AccountController.php:72 -#: ../../../modules/api/Controllers/AccountController.php:104 -#: ../../../modules/api/Controllers/AccountController.php:140 -#: ../../../modules/api/Controllers/AccountController.php:186 -#: ../../../modules/api/Controllers/AccountController.php:236 -#: ../../../modules/api/Controllers/AccountController.php:311 -#: ../../../modules/web/Controllers/AccountController.php:225 -#: ../../../modules/web/Controllers/AccountController.php:720 -#: ../../../modules/web/Controllers/AccountController.php:765 -#: ../../../modules/web/Controllers/AccountController.php:806 -#: ../../../modules/web/Controllers/AccountController.php:845 -#: ../../../modules/web/Controllers/AccountController.php:895 -#: ../../../modules/web/Controllers/AccountController.php:929 -#: ../../../modules/web/Controllers/AccountFileController.php:234 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:112 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:147 -#: ../../../modules/web/Controllers/AccountManagerController.php:147 -#: ../../../modules/web/Controllers/ClientController.php:213 -#: ../../../modules/web/Controllers/ClientController.php:245 -#: ../../../modules/web/Controllers/ClientController.php:281 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 -msgid "Cliente" -msgstr "Klient" - -#: ../../../modules/web/Controllers/AccountController.php:930 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 -msgid "Descripción" -msgstr "Beskrivelse" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:697 -msgid "Error al actualizar preferencias" -msgstr "Fejl under opdatering af foretrukne indstillinger" - -#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:70 -msgid "Preferencias actualizadas" -msgstr "Foretrukne indstillinger opdaterede" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:509 -msgid "La clave maestra no coincide" -msgstr "Hoved-kodeordene er ikke identiske" - -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:132 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:96 -msgid "No tiene permisos para acceder a esta cuenta" -msgstr "Du har ikke tilladelser til at tilgå denne konto" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 -#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 -msgid "Ver Clave" -msgstr "Vis kodeord" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 -#: ../../../config/strings.js.inc:72 -msgid "Clave de Cuenta" -msgstr "Kontoens kodeord" - -#: ../../../../inc/SP/Http/Request.class.php:55 -msgid "No es posible acceder directamente a este archivo" -msgstr "Kan ikke tilgå filen" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:143 -msgid "Error al actualizar el historial" -msgstr "Fejl under opdatering af historik" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -msgid "Actualizar Cuenta" -msgstr "Opdater konto" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:164 -msgid "Error al actualizar los grupos secundarios" -msgstr "Fejl under opdatering af sekundære grupper" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:103 -msgid "Error al actualizar los usuarios de la cuenta" -msgstr "Fejl under opdatering af kontoens brugere" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 -#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 -msgid "Restaurar Cuenta" -msgstr "Genskabelse af konto" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:451 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:623 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:75 -msgid "No se pudieron obtener los datos de la cuenta" -msgstr "Fejl under indlæsning af kontodata" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:256 -#: ../../../modules/web/Controllers/AccountController.php:300 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:278 -#: ../../../config/actions.xml:157 -msgid "Nueva Cuenta" -msgstr "Ny konto" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:389 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 -#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 -#: ../../../config/actions.xml:793 -msgid "Eliminar Cuenta" -msgstr "Slet konto" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:106 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:139 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:191 -msgid "Error al eliminar grupos asociados a la cuenta" -msgstr "Fejl under sletning af kontoens grupper" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:76 -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:132 -msgid "Error al eliminar usuarios asociados a la cuenta" -msgstr "Fejl under sletning af kontoens brugere" - -#: ../../../../inc/SP/Mgmt/Files/FileUtil.class.php:102 -msgid "Error al eliminar archivos asociados a la cuenta" -msgstr "Fejl under sletning af kontoens filer" - -#: ../../../../inc/SP/Account/AccountCrypt.class.php:70 -#: ../../../../inc/SP/Account/AccountCrypt.class.php:200 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:73 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:208 -msgid "Inicio" -msgstr "Start" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:81 -msgid "Error en el módulo de encriptación" -msgstr "Fejl i krypteringsmodulet" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:115 -msgid "Error al obtener las claves de las cuentas" -msgstr "Fejl under indlæsning af kontoens kodeord" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:183 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:188 -msgid "Fallo al actualizar la clave de la cuenta" -msgstr "Fejl under opdatering af kontoens kodeord" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:193 -#: ../../../modules/web/Controllers/AccountManagerController.php:185 -#: ../../../modules/web/Controllers/AccountManagerController.php:188 -msgid "Cuentas actualizadas" -msgstr "Konti opdaterede" - -#: ../../../../inc/SP/Account/AccountUtil.class.php:132 -msgid "No se pudieron obtener los datos de las cuentas" -msgstr "Kan ikke indlæse kontoens data" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:212 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:218 -msgid "Actualizar Clave Maestra (H)" -msgstr "Opdater Hoved-kodeord (H)" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:158 -msgid "La clave maestra del registro no coincide" -msgstr "Registreringens Hoved-kodeord passer ikke" - -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:157 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:160 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:283 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:286 -msgid "Fallo al actualizar la clave del histórico" -msgstr "Fejl under opdateringen af historikkens Hoved-kodeord" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:109 -msgid "Registros actualizados" -msgstr "Registreringerne er opdaterede" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:7 -msgid "Buscar Cuentas" -msgstr "Søg efter konti" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 -msgid "Ver Cuenta" -msgstr "Vis konto" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 -#: ../../../config/actions.xml:193 -msgid "Copiar Cuenta" -msgstr "Kopier konto" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:344 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 -#: ../../../config/actions.xml:163 -msgid "Editar Cuenta" -msgstr "Tilret konto" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:181 -msgid "Editar Clave de Cuenta" -msgstr "Skift konto-kodeord" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 -#: ../../../config/actions.xml:259 -msgid "Ver Historial" -msgstr "Se historik" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 -#: ../../../config/actions.xml:19 -msgid "Archivos" -msgstr "Filer" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:25 -msgid "Peticiones" -msgstr "Forespørgsler" - -#: ../../../../inc/SP/Core/Acl.class.php:196 -msgid "Gestión Aplicación" -msgstr "Applikationsadministration" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:49 -msgid "Gestión Categorías" -msgstr "Kategoriadministration" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:55 -#, fuzzy -msgid "Gestión Clientes" -msgstr "Klientadministration" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:67 -msgid "Gestión Campos Personalizados" -msgstr "Administration af brugerdefinerede felter" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:61 -msgid "Gestión Autorizaciones API" -msgstr "Administration af API autorisationer" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:115 -msgid "Gestión Usuarios" -msgstr "Brugeradministration" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:121 -msgid "Gestión Grupos" -msgstr "Gruppeadministration" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:127 -msgid "Gestión Perfiles" -msgstr "Profiladministration" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:348 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:61 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 -#: ../../../config/actions.xml:685 -msgid "Configuración" -msgstr "Konfiguration" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 -#: ../../../config/actions.xml:691 -msgid "Configuración General" -msgstr "Generel Konfiguration" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 -msgid "Encriptación" -msgstr "Kryptering" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 -#: ../../../config/actions.xml:733 -msgid "Copia de Seguridad" -msgstr "Backup" - -#: ../../../../inc/SP/Core/Acl.class.php:220 -msgid "Exportar" -msgstr "Eksport" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 -msgid "Importar" -msgstr "Import" - -#: ../../../../lib/SP/Services/Api/ApiService.php:186 -#: ../../../modules/api/Controllers/ControllerBase.php:146 -msgid "Acceso no permitido" -msgstr "Uautoriseret adgang" - -#: ../../../../lib/SP/Http/Json.php:179 -msgid "Error de codificación" -msgstr "Krypteringsfejl" - -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:221 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:309 -msgid "La autorización ya existe" -msgstr "Autorisationen er allerede i brug" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 -msgid "Actualizar Autorización" -msgstr "Opdater autorisation" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 -msgid "Eliminar Autorización" -msgstr "Slet autorisation" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:141 -msgid "Usuario no pertenece al grupo" -msgstr "Brugeren tilhører ikke gruppen" +msgid "N/D" +msgstr "Ej tilgængelig" + +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 +#, php-format +msgid "No es posible crear el directorio de backups (\"%s\")" +msgstr "Backupmappen (\"%s\") kan ikke oprettes" + +#: ../../../../lib/SP/Services/Config/ConfigService.php:68 +#: ../../../../lib/SP/Services/Config/ConfigService.php:153 +#, php-format +msgid "Parámetro no encontrado (%s)" +msgstr "Parameter ikke fundet (%s)" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 +#, php-format +msgid "Clave Maestra %s" +msgstr "Hoved-kodeord %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 +msgid "" +"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " +"el siguiente inicio." +msgstr "" +"Et nyt sysPass Hoved-kodeord er genereret, så næste gang du logger på vil du " +"blive bedt om det." + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 +#, php-format +msgid "La nueva clave es: %s" +msgstr "Det nye Hoved-Kodeord er: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 +#, php-format +msgid "Esta clave estará activa hasta: %s" +msgstr "Kodeordet er gyldigt til: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 +msgid "No olvide acceder lo antes posible para guardar los cambios." +msgstr "" +"Glem venligst ikke at logge på så snart som muligt for at gemme ændringerne." + +#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 +msgid "Actualizando datos encriptados" +msgstr "Opdaterer krypterede data" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 +msgid "Categorías" +msgstr "Kategorier" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 +msgid "Clientes" +msgstr "Klienter" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:104 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 +msgid "Usuarios" +msgstr "Brugere" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 +msgid "Grupos" +msgstr "Grupper" + +#: ../../../../lib/SP/Services/Export/XmlExportService.php:123 +#: ../../../../lib/SP/Storage/File/FileCache.php:74 +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 +#, php-format +msgid "No es posible crear el directorio (%s)" +msgstr "Kan ikke oprette mappen (%s)" + +#: ../../../../lib/SP/Services/Import/CsvImport.php:50 +#, php-format +msgid "Formato detectado: %s" +msgstr "Detekteret format: %s" + +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 +#, php-format +msgid "El número de campos es incorrecto (%d)" +msgstr "Forkert antal felter (%d)" + +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 +#, php-format +msgid "Compruebe el formato del archivo CSV en línea %s" +msgstr "Kontroller venligst CSV-formatet af linje %s" + +#: ../../../../lib/SP/Services/Import/ImportService.php:89 +#, php-format +msgid "Tipo mime no soportado (\"%s\")" +msgstr "Mime-typen er ikke understøttet (\"%s\")" + +#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 +#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 +#, php-format +msgid "El nodo \"%s\" no existe" +msgstr "\"%s\" -noden findes ikke" + +#: ../../../../lib/SP/Services/Install/MySQL.php:135 +#, php-format +msgid "No es posible comprobar el usuario de sysPass (%s)" +msgstr "Kan ikke kontrollere sysPass brugeren (%s)" + +#: ../../../../lib/SP/Services/Install/MySQL.php:213 +#: ../../../../lib/SP/Services/Install/MySQL.php:329 +#: ../../../../lib/SP/Services/Install/MySQL.php:341 +#, php-format +msgid "Error al crear la BBDD ('%s')" +msgstr "Fejl under oprettelsen af databasen ('%s')" + +#: ../../../../lib/SP/Services/Install/MySQL.php:237 +#, php-format +msgid "Error al establecer permisos de la BBDD ('%s')" +msgstr "Fejl under indstilling af databaserettigheder ('%s')" + +#: ../../../../lib/SP/Services/Install/MySQL.php:309 +#, fuzzy, php-format +msgid "Error al seleccionar la BBDD '%s' (%s)" +msgstr "Fejl under valg af databasen '%s' (%s)" + +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 +msgid "Importado desde LDAP" +msgstr "Importeret fra LDAP" + +#: ../../../../lib/SP/Services/Task/TaskService.php:81 +msgid "No es posible crear archivo de bloqueo" +msgstr "Kan ikke oprette låse-filen" + +#: ../../../../lib/SP/Services/Task/TaskService.php:184 +msgid "Esperando actualización de progreso ..." +msgstr "Afventer status ..." + +#: ../../../../lib/SP/Services/Track/TrackService.php:162 +#, php-format +msgid "Intentos excedidos (%d/%d)" +msgstr "Maks. antal forsøg overskredet (%d/%d)" + +#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 +msgid "El archivo de actualización no contiene datos" +msgstr "Opdateringsfilen indeholder ingen data" #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 +#: ../../../modules/web/Controllers/UserController.php:235 +#: ../../../modules/web/Controllers/UserController.php:356 +#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Cambio de Clave" msgstr "Ændring af kodeord" @@ -1555,472 +309,667 @@ msgid "Si no ha solicitado esta acción, ignore este mensaje." msgstr "" "Hvis du ikke har anmodet om denne aktivitet skal du blot slette denne besked." -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:333 -msgid "Esta operación sólo es posible en entornos Linux" -msgstr "Denne handling kan kun udføres på Linux-systemer" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 +msgid "Fallo de autentificación" +msgstr "Fejl i autentikering" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:101 -msgid "Error al realizar backup en modo compatibilidad" -msgstr "Fejl under udførelsen af backup i kompatibilitetstilstand" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 +msgid "Error al realizar la consulta" +msgstr "Fejl under udførelse af forespørgsel" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:138 -msgid "Compruebe los permisos del directorio de backups" -msgstr "Kontroller venligst rettighederne på backup-mappen" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 +msgid "URL de conexión no establecida" +msgstr "Forbindelses-URL er ikke sat" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:107 -msgid "Nombre de categoría duplicado" -msgstr "Kategorinavn er allerede i brug" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 +#, php-format +msgid "Error al descomprimir datos del archivo (%s)" +msgstr "Fejl under dekomrṕression af fildata (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:68 -msgid "Error al crear la categoría" -msgstr "Fejl under oprettelsen af kategorien" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 +msgid "Error al obtener los datos" +msgstr "Fejl under indlæsning af dataene" -#: ../../../../lib/SP/Services/Import/KeepassImport.php:104 -#: ../../../modules/web/Controllers/CategoryController.php:220 -#: ../../../modules/web/Controllers/CategoryController.php:254 -#: ../../../modules/web/Controllers/CategoryController.php:294 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 -msgid "Categoría" -msgstr "Kategori" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 +#, php-format +msgid "Error al comprimir datos del archivo (%s)" +msgstr "Fejl under komprimering af dataene (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:275 -msgid "Error al eliminar la categoría" -msgstr "Fejl under sletning af kategorien" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 +msgid "Datos no cargados" +msgstr "Data ikke indlæst" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 -#: ../../../config/actions.xml:319 -msgid "Eliminar Categoría" -msgstr "Slet kategori" +#: ../../../../lib/SP/Storage/File/FileHandler.php:72 +#: ../../../../lib/SP/Storage/File/FileHandler.php:135 +#, php-format +msgid "No es posible escribir en el archivo (%s)" +msgstr "Kan ikke læse/skrive filen (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:125 -msgid "Error al actualizar la categoría" -msgstr "Fejl under opdatering af kategorien" +#: ../../../../lib/SP/Storage/File/FileHandler.php:89 +#, php-format +msgid "No es posible abrir el archivo (%s)" +msgstr "Kan ikke åbne filen (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:108 -#: ../../../../inc/SP/Config/ConfigDB.class.php:148 -msgid "Modificar configuración" -msgstr "Opdater konfiguration" +#: ../../../../lib/SP/Storage/File/FileHandler.php:104 +#: ../../../../lib/SP/Storage/File/FileHandler.php:118 +#, php-format +msgid "No es posible leer desde el archivo (%s)" +msgstr "Kan ikke læse fra filen (%s)" -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:82 -msgid "Parámetro" -msgstr "Parameter" +#: ../../../../lib/SP/Storage/File/FileHandler.php:173 +#, php-format +msgid "No es posible cerrar el archivo (%s)" +msgstr "Kan ikke lukke filen (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:152 -msgid "Valor" -msgstr "Værdi" +#: ../../../../lib/SP/Storage/File/FileHandler.php:219 +#, php-format +msgid "No es posible escribir el archivo (%s)" +msgstr "Kan ikke skrive i filen (%s)" -#: ../../../../lib/SP/Util/ErrorUtil.php:128 +#: ../../../../lib/SP/Storage/File/FileHandler.php:234 +#, php-format +msgid "Archivo no encontrado (%s)" +msgstr "Fil ikke fundet (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:259 +#: ../../../../lib/SP/Storage/File/FileHandler.php:314 +#, php-format +msgid "No es posible leer el archivo (%s)" +msgstr "Kan ikke læse/skrive filen (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:286 +#, php-format +msgid "No es posible eliminar el archivo (%s)" +msgstr "Kan ikke slette filen (%s)" + +#: ../../../../lib/SP/Util/ErrorUtil.php:148 msgid "Opción no disponible" msgstr "Muligheden er ikke tilgængelig" -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:129 -#: ../../../../lib/SP/Util/ErrorUtil.php:133 -#: ../../../../lib/SP/Util/ErrorUtil.php:137 -#: ../../../../lib/SP/Util/ErrorUtil.php:141 #: ../../../../lib/SP/Util/ErrorUtil.php:149 -#: ../../../../lib/SP/Util/ErrorUtil.php:156 +#: ../../../../lib/SP/Util/ErrorUtil.php:153 +#: ../../../../lib/SP/Util/ErrorUtil.php:157 +#: ../../../../lib/SP/Util/ErrorUtil.php:161 +#: ../../../../lib/SP/Util/ErrorUtil.php:169 +#: ../../../../lib/SP/Util/ErrorUtil.php:176 #: ../../../modules/web/Controllers/ErrorController.php:124 -#: ../../../modules/web/Controllers/UserPassResetController.php:94 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Consulte con el administrador" msgstr "Kontakt venligst administratoren" -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:136 +#: ../../../../lib/SP/Util/ErrorUtil.php:152 +msgid "No tiene permisos para acceder a esta cuenta" +msgstr "Du har ikke tilladelser til at tilgå denne konto" + +#: ../../../../lib/SP/Util/ErrorUtil.php:156 msgid "No tiene permisos para acceder a esta página" msgstr "Du har ikke adgang til denne side" -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Util/ErrorUtil.php:140 -#: ../../../modules/web/Controllers/AccountFileController.php:261 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:59 -#: ../../../modules/web/Controllers/AccountManagerController.php:77 -#: ../../../modules/web/Controllers/AccountManagerController.php:204 -#: ../../../modules/web/Controllers/AuthTokenController.php:68 -#: ../../../modules/web/Controllers/AuthTokenController.php:105 -#: ../../../modules/web/Controllers/AuthTokenController.php:170 -#: ../../../modules/web/Controllers/AuthTokenController.php:200 -#: ../../../modules/web/Controllers/AuthTokenController.php:243 -#: ../../../modules/web/Controllers/AuthTokenController.php:278 -#: ../../../modules/web/Controllers/AuthTokenController.php:327 -#: ../../../modules/web/Controllers/CategoryController.php:66 -#: ../../../modules/web/Controllers/CategoryController.php:100 -#: ../../../modules/web/Controllers/CategoryController.php:164 -#: ../../../modules/web/Controllers/CategoryController.php:194 -#: ../../../modules/web/Controllers/CategoryController.php:237 -#: ../../../modules/web/Controllers/CategoryController.php:277 -#: ../../../modules/web/Controllers/CategoryController.php:317 -#: ../../../modules/web/Controllers/ClientController.php:64 -#: ../../../modules/web/Controllers/ClientController.php:96 -#: ../../../modules/web/Controllers/ClientController.php:160 -#: ../../../modules/web/Controllers/ClientController.php:190 -#: ../../../modules/web/Controllers/ClientController.php:230 -#: ../../../modules/web/Controllers/ClientController.php:268 -#: ../../../modules/web/Controllers/ClientController.php:304 -#: ../../../modules/web/Controllers/CustomFieldController.php:65 -#: ../../../modules/web/Controllers/CustomFieldController.php:97 -#: ../../../modules/web/Controllers/CustomFieldController.php:159 -#: ../../../modules/web/Controllers/CustomFieldController.php:189 -#: ../../../modules/web/Controllers/CustomFieldController.php:221 -#: ../../../modules/web/Controllers/CustomFieldController.php:258 -#: ../../../modules/web/Controllers/CustomFieldController.php:295 -#: ../../../modules/web/Controllers/EventlogController.php:101 -#: ../../../modules/web/Controllers/ItemPresetController.php:67 -#: ../../../modules/web/Controllers/ItemPresetController.php:151 -#: ../../../modules/web/Controllers/ItemPresetController.php:188 -#: ../../../modules/web/Controllers/ItemPresetController.php:226 -#: ../../../modules/web/Controllers/ItemPresetController.php:256 -#: ../../../modules/web/Controllers/ItemPresetController.php:295 -#: ../../../modules/web/Controllers/ItemPresetController.php:334 -#: ../../../modules/web/Controllers/NotificationController.php:100 -#: ../../../modules/web/Controllers/NotificationController.php:160 -#: ../../../modules/web/Controllers/NotificationController.php:175 -#: ../../../modules/web/Controllers/NotificationController.php:206 -#: ../../../modules/web/Controllers/NotificationController.php:237 -#: ../../../modules/web/Controllers/NotificationController.php:288 -#: ../../../modules/web/Controllers/NotificationController.php:315 -#: ../../../modules/web/Controllers/NotificationController.php:348 -#: ../../../modules/web/Controllers/PluginController.php:98 -#: ../../../modules/web/Controllers/PluginController.php:117 -#: ../../../modules/web/Controllers/PublicLinkController.php:71 -#: ../../../modules/web/Controllers/PublicLinkController.php:105 -#: ../../../modules/web/Controllers/PublicLinkController.php:167 -#: ../../../modules/web/Controllers/PublicLinkController.php:193 -#: ../../../modules/web/Controllers/PublicLinkController.php:223 -#: ../../../modules/web/Controllers/PublicLinkController.php:264 -#: ../../../modules/web/Controllers/PublicLinkController.php:296 -#: ../../../modules/web/Controllers/PublicLinkController.php:338 -#: ../../../modules/web/Controllers/TagController.php:65 -#: ../../../modules/web/Controllers/TagController.php:99 -#: ../../../modules/web/Controllers/TagController.php:159 -#: ../../../modules/web/Controllers/TagController.php:189 -#: ../../../modules/web/Controllers/TagController.php:223 -#: ../../../modules/web/Controllers/TagController.php:254 -#: ../../../modules/web/Controllers/TagController.php:285 -#: ../../../modules/web/Controllers/UserController.php:69 -#: ../../../modules/web/Controllers/UserController.php:101 -#: ../../../modules/web/Controllers/UserController.php:186 -#: ../../../modules/web/Controllers/UserController.php:218 -#: ../../../modules/web/Controllers/UserController.php:254 -#: ../../../modules/web/Controllers/UserController.php:296 -#: ../../../modules/web/Controllers/UserController.php:357 -#: ../../../modules/web/Controllers/UserController.php:398 -#: ../../../modules/web/Controllers/UserController.php:435 -#: ../../../modules/web/Controllers/UserGroupController.php:74 -#: ../../../modules/web/Controllers/UserGroupController.php:108 -#: ../../../modules/web/Controllers/UserGroupController.php:179 -#: ../../../modules/web/Controllers/UserGroupController.php:209 -#: ../../../modules/web/Controllers/UserGroupController.php:249 -#: ../../../modules/web/Controllers/UserGroupController.php:288 -#: ../../../modules/web/Controllers/UserGroupController.php:327 -#: ../../../modules/web/Controllers/UserProfileController.php:64 -#: ../../../modules/web/Controllers/UserProfileController.php:96 -#: ../../../modules/web/Controllers/UserProfileController.php:163 -#: ../../../modules/web/Controllers/UserProfileController.php:193 -#: ../../../modules/web/Controllers/UserProfileController.php:233 -#: ../../../modules/web/Controllers/UserProfileController.php:268 -#: ../../../modules/web/Controllers/UserProfileController.php:304 +#: ../../../../lib/SP/Util/ErrorUtil.php:160 msgid "No tiene permisos para realizar esta operación" msgstr "Du har ikke tilladelse til at udføre denne handling" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:56 -#: ../../../config/strings.js.inc:85 -msgid "Aviso" -msgstr "Advarsel" +#: ../../../../lib/SP/Util/ErrorUtil.php:164 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 +msgid "Clave maestra actualizada" +msgstr "Hoved-kodeord er opdateret" -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:105 -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:116 -msgid "" -"Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." -msgstr "" -"Hoved-kodeordets kontrolsum er blevet genudregnet. Ingen yderligere handling " -"er påkrævet" +#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 +msgid "Reinicie la sesión para cambiarla" +msgstr "Genstart venligst sessionen for at genindlæse den" -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -msgid "No se puede usar el módulo de encriptación" -msgstr "Krypto-modulet kan ikke indlæses" +#: ../../../../lib/SP/Util/ErrorUtil.php:168 +#: ../../../../lib/SP/Util/ErrorUtil.php:175 +msgid "Se ha producido una excepción" +msgstr "En undtagelse opstod" -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 -msgid "Error al generar datos cifrados" -msgstr "Fejl under oprettelsen af de krypterede data" +#: ../../../modules/api/Controllers/AccountController.php:144 +msgid "Clave actualizada" +msgstr "Kodeord skiftet" -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:102 -msgid "No es posible generar las claves RSA" -msgstr "Kan ikke oprette RSA-nøgler" +#: ../../../modules/api/Controllers/AccountController.php:194 +msgid "Cuenta creada" +msgstr "Konto tilføjet" -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:135 -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:168 -msgid "El archivo de clave no existe" -msgstr "Nøglefilen findes ikke" +#: ../../../modules/api/Controllers/AccountController.php:245 +msgid "Cuenta actualizada" +msgstr "Konto opdateret" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 -msgid "El número de campos es incorrecto (%d)" -msgstr "Forkert antal felter (%d)" +#: ../../../modules/api/Controllers/AccountController.php:320 +msgid "Cuenta eliminada" +msgstr "Konto slettet" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 -msgid "Compruebe el formato del archivo CSV en línea %s" -msgstr "Kontroller venligst CSV-formatet af linje %s" +#: ../../../modules/api/Controllers/CategoryController.php:96 +msgid "Categoría creada" +msgstr "Kategori tilføjet" -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 +#: ../../../modules/api/Controllers/CategoryController.php:126 +msgid "Categoría actualizada" +msgstr "Kategori opdateret" + +#: ../../../modules/api/Controllers/CategoryController.php:155 +msgid "Categoría eliminada" +msgstr "Kategori slettet" + +#: ../../../modules/api/Controllers/ClientController.php:98 +msgid "Cliente creado" +msgstr "Klient tilføjet" + +#: ../../../modules/api/Controllers/ClientController.php:129 +msgid "Cliente actualizado" +msgstr "Klient opdateret" + +#: ../../../modules/api/Controllers/ClientController.php:158 +msgid "Cliente eliminado" +msgstr "Klient slettet" + +#: ../../../modules/api/Controllers/ConfigController.php:61 +msgid "Proceso de backup finalizado" +msgstr "Backup-processen er færdig" + +#: ../../../modules/api/Controllers/ConfigController.php:94 +msgid "Proceso de exportación finalizado" +msgstr "Eksportering færdig" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 +msgid "Id de la cuenta" +msgstr "KontoID" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 +msgid "Clave del token" +msgstr "Polettens kodeord" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 +msgid "Devolver detalles en la respuesta" +msgstr "Send detaljer i svaret" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:89 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:92 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:163 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:293 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:170 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:253 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:260 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:35 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:98 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:27 +msgid "Clave" +msgstr "Kodeord" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:114 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:181 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:90 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 +msgid "Fecha Caducidad Clave" +msgstr "Udløbsdato for kodeord" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:73 +msgid "Nombre de cuenta" +msgstr "Kontonavn" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 +msgid "Id de categoría" +msgstr "Kategori-ID" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 +msgid "Id de cliente" +msgstr "Klient-ID" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 +msgid "Usuario de acceso" +msgstr "Bruger med adgang" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:136 +msgid "URL o IP de acceso" +msgstr "Adgangs-URL eller IP" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:134 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 +msgid "Notas sobre la cuenta" +msgstr "Noter til kontoen" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:198 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 +msgid "Cuenta Privada" +msgstr "Privat konto" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:217 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 +msgid "Cuenta Privada Grupo" +msgstr "Privat konto for gruppen" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:252 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:254 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:13 +msgid "Cuenta Vinculada" +msgstr "Forbundet konto" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 +#, fuzzy +msgid "Array con Ids de etiquetas" +msgstr "Liste med mærke ID'er" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 +msgid "Id de grupo" +msgstr "Group Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 +#: ../../../modules/api/Controllers/Help/TagHelp.php:77 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 +msgid "Texto a buscar" +msgstr "Søgetekst" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 +#: ../../../modules/api/Controllers/Help/TagHelp.php:78 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 +msgid "Número de resultados a mostrar" +msgstr "Antal resultater der vises" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 +msgid "Id de categoría a filtrar" +msgstr "Kategori-ID der skal filtreres efter" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 +msgid "Id de cliente a filtrar" +msgstr "Klient-ID der skal filtreres efter" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 +#, fuzzy +msgid "Array con Ids de etiquetas a filtrar" +msgstr "Liste med mærke ID'er til filtrering" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 +msgid "Operador de filtrado" +msgstr "Filtreringsoperatør" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:29 +msgid "Nombre de la categoría" +msgstr "Kategorinavn" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:41 +msgid "Descripción de la categoría" +msgstr "Kategoribeskrivelse" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:30 +msgid "Nombre del cliente" +msgstr "Klientnavn" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:43 +msgid "Descripción del cliente" +msgstr "Klientbeskrivelse" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:99 +msgid "Global" +msgstr "Global" + +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 +msgid "Ruta" +msgstr "Sti" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:43 +#: ../../../modules/api/Controllers/Help/TagHelp.php:65 +#: ../../../modules/api/Controllers/Help/TagHelp.php:89 +msgid "Id de etiqueta" +msgstr "Mærke ID" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:54 +#: ../../../modules/api/Controllers/Help/TagHelp.php:66 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:29 +msgid "Nombre de la etiqueta" +msgstr "Mærkenavn" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:31 +msgid "Nombre del grupo" +msgstr "Gruppenavn" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:44 +msgid "Descripción del grupo" +msgstr "Gruppebeskrivelse" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 +msgid "Array con Ids de usuarios" +msgstr "Array with users Id" + +#: ../../../modules/api/Controllers/TagController.php:94 +msgid "Etiqueta creada" +msgstr "Mærke tilføjet" + +#: ../../../modules/api/Controllers/TagController.php:123 +msgid "Etiqueta actualizada" +msgstr "Mærke opdateret" + +#: ../../../modules/api/Controllers/TagController.php:152 +msgid "Etiqueta eliminada" +msgstr "Mærke slettet" + +#: ../../../modules/api/Controllers/UserGroupController.php:96 +msgid "Grupo creado" +msgstr "Gruppe tilføjet" + +#: ../../../modules/api/Controllers/UserGroupController.php:127 +msgid "Grupo actualizado" +msgstr "Gruppen er opdateret" + +#: ../../../modules/api/Controllers/UserGroupController.php:156 +msgid "Grupo eliminado" +msgstr "Gruppe slettet" + +#: ../../../modules/web/Controllers/AccountController.php:149 +#: ../../../modules/web/Controllers/AccountController.php:204 +#: ../../../modules/web/Controllers/AccountController.php:489 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:56 +msgid "Detalles de Cuenta" +msgstr "Kontodetaljer" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:261 +#: ../../../modules/web/Controllers/AccountController.php:307 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:275 +#: ../../../config/actions.xml:157 +msgid "Nueva Cuenta" +msgstr "Ny konto" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:353 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 +#: ../../../config/actions.xml:163 +msgid "Editar Cuenta" +msgstr "Tilret konto" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:400 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 +#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 +#: ../../../config/actions.xml:793 +msgid "Eliminar Cuenta" +msgstr "Slet konto" + +#: ../../../modules/web/Controllers/AccountController.php:445 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 +msgid "Modificar Clave de Cuenta" +msgstr "Skift konto-kodeord" + +#: ../../../modules/web/Controllers/AccountFileController.php:211 +#, php-format +msgid "Extensión: %s" +msgstr "Udvidelse: %s" + +#: ../../../modules/web/Controllers/AccountFileController.php:405 +msgid "Gestión de archivos deshabilitada" +msgstr "Filhåndtering deaktiveret" + +#: ../../../modules/web/Controllers/AccountFileController.php:424 +msgid "No hay archivos asociados a la cuenta" +msgstr "Der findes ingen filer linket til kontoen" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountManagerController.php:216 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 +#: ../../../config/actions.xml:493 +msgid "Actualización Masiva" +msgstr "Bulk Update" + +#: ../../../modules/web/Controllers/AuthTokenController.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 +msgid "Nueva Autorización" +msgstr "Ny autorisation" + +#: ../../../modules/web/Controllers/AuthTokenController.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 +msgid "Editar Autorización" +msgstr "Tilret autorisation" + +#: ../../../modules/web/Controllers/AuthTokenController.php:347 +msgid "Ver Autorización" +msgstr "Se autorisation" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:118 +#: ../../../config/actions.xml:307 +msgid "Nueva Categoría" +msgstr "Ny kategori" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 +#: ../../../config/actions.xml:313 +msgid "Editar Categoría" +msgstr "Tilret kategori" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:335 +#: ../../../config/actions.xml:301 +msgid "Ver Categoría" +msgstr "Se kategori" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:93 +#: ../../../config/actions.xml:337 +msgid "Nuevo Cliente" +msgstr "Ny klient" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:174 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 +#: ../../../config/actions.xml:343 +msgid "Editar Cliente" +msgstr "Tilret klient" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:326 +#: ../../../config/actions.xml:331 +msgid "Ver Cliente" +msgstr "Se klient" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:153 +#: ../../../modules/web/Controllers/ConfigLdapController.php:197 +msgid "Resultados" +msgstr "Resultater" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:159 +#: ../../../modules/web/Controllers/ConfigLdapController.php:204 +#, php-format +msgid "Objetos encontrados: %d" +msgstr "Objekter fundet: %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:279 +#, php-format +msgid "Usuarios importados: %d / %d" +msgstr "Importerede brugere: %d / %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:280 +#, php-format +msgid "Errores: %d" +msgstr "Fejl: %d" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:161 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 +msgid "General" +msgstr "Generelt" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:190 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:29 +#: ../../../config/actions.xml:37 +msgid "Wiki" +msgstr "Wiki" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:209 +msgid "LDAP" +msgstr "LDAP" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:235 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:12 +msgid "Correo" +msgstr "E-mail" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:274 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 +msgid "Encriptación" +msgstr "Kryptering" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:302 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:61 +msgid "No se encontraron backups" +msgstr "Der er ingen backups tilgængelige" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:312 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 +msgid "No se encontró archivo de exportación" +msgstr "Ingen eksportfil fundet" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:315 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:78 +#: ../../../config/actions.xml:733 +msgid "Copia de Seguridad" +msgstr "Backup" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:332 msgid "Importar Cuentas" msgstr "Importer konti" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:166 -msgid "Error importando cuenta" -msgstr "Fejl under importering af konto" +#: ../../../modules/web/Controllers/ConfigManagerController.php:352 +msgid "No instalado" +msgstr "Ikke installeret" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 -msgid "Campos Personalizados" -msgstr "Brugerdefinerede felter" +#: ../../../modules/web/Controllers/ConfigManagerController.php:357 +msgid "Información" +msgstr "Information" -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:76 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 -msgid "Actualizando datos encriptados" -msgstr "Opdaterer krypterede data" +#: ../../../modules/web/Controllers/CustomFieldController.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 +msgid "Nuevo Campo" +msgstr "Nyt felt" -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:110 -msgid "Registros no actualizados" -msgstr "Registreringer er ikke opdateret" +#: ../../../modules/web/Controllers/CustomFieldController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 +msgid "Editar Campo" +msgstr "Tilret felt" -#. (itstool) path: strings/text -#: ../../../config/strings.xml:8 -msgid "Texto" -msgstr "Tekst" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 -msgid "Fecha" -msgstr "Dato" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:5 -msgid "Número" -msgstr "Nummer" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 -msgid "Email" -msgstr "E-mail" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:6 -msgid "Teléfono" -msgstr "Telefon" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:9 -msgid "Link" -msgstr "Link" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:4 -msgid "Color" -msgstr "Farve" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/ConfigBackupController.php:122 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 -msgid "Categorías" -msgstr "Kategorier" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/ConfigBackupController.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 -msgid "Clientes" -msgstr "Klienter" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 -msgid "Grupos" -msgstr "Grupper" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:62 -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:116 -msgid "Cliente duplicado" -msgstr "Duplikeret klient" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:80 -msgid "Error al crear el cliente" -msgstr "Fejl under oprettelsen af klienten" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:136 -msgid "Error al actualizar el cliente" -msgstr "Fejl under opdateringen af klienten" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 -msgid "Actualizar Cliente" -msgstr "Opdater klient" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:283 -msgid "Error al eliminar el cliente" -msgstr "Fejl under sletningen af klienten" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 -#: ../../../config/actions.xml:349 -msgid "Eliminar Cliente" -msgstr "Slet klient" - -#: ../../../../lib/SP/Services/Install/MySQL.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:97 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:117 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:164 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:176 -msgid "No es posible conectar con la BD" -msgstr "Kan ikke forbinde til databasen" - -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:166 -msgid "Compruebe los datos de conexión" -msgstr "Kontroller venligst forbindelsesparametrene" - -#. Not available -#: ../../../../lib/SP/Core/Acl/Acl.php:294 -#: ../../../../lib/SP/Services/Auth/LoginService.php:600 -msgid "N/D" -msgstr "Ej tilgængelig" - -#: ../../../../lib/SP/Core/Acl/Acl.php:300 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 -msgid "Acción" -msgstr "Handling" - -#: ../../../../inc/SP/Log/Email.class.php:64 -msgid "Realizado por" -msgstr "Udført af" - -#: ../../../../inc/SP/Log/Email.class.php:76 -#: ../../../../inc/SP/Log/Email.class.php:191 -msgid "Enviar Email" -msgstr "Send E-mail" - -#: ../../../../lib/SP/Services/Mail/MailService.php:141 -#: ../../../modules/web/Controllers/ConfigMailController.php:138 -#: ../../../modules/web/Controllers/ConfigMailController.php:144 -msgid "Correo enviado" -msgstr "E-mail afsendt" - -#: ../../../../lib/SP/Services/Mail/MailService.php:81 -#: ../../../../lib/SP/Services/Mail/MailService.php:151 -msgid "Error al enviar correo" -msgstr "Fejl under afsendelse af E-mailen" - -#: ../../../../lib/SP/Services/Mail/MailService.php:142 -#: ../../../modules/web/Controllers/ConfigMailController.php:139 -msgid "Destinatario" -msgstr "Modtager" - -#: ../../../../inc/SP/Log/Email.class.php:85 -msgid "CC" -msgstr "CC" - -#: ../../../../lib/SP/Services/Import/FileImport.php:67 -#: ../../../../lib/SP/Services/Import/FileImport.php:88 -msgid "Archivo no subido correctamente" -msgstr "Filen er uploadet" - -#: ../../../../lib/SP/Services/Import/FileImport.php:69 -#: ../../../../lib/SP/Services/Import/FileImport.php:90 -msgid "Verifique los permisos del usuario del servidor web" -msgstr "Kontroller venligst webserverens brugertilladelser" - -#: ../../../../lib/SP/Services/Import/FileImport.php:102 -msgid "Compruebe la extensión del archivo" -msgstr "Kontroller venligst fil-endelsen" - -#: ../../../../lib/SP/Services/Import/FileImport.php:118 -msgid "Compruebe la configuración de PHP para subir archivos" -msgstr "Kontroller venligst PHP konfigurationen for fil-upload" - -#: ../../../../lib/SP/Services/Import/FileImport.php:157 -#: ../../../../lib/SP/Services/Import/FileImport.php:183 -msgid "Compruebe los permisos del directorio temporal" -msgstr "Kontroller venligst tilladelserne på det midlertidige fil-lager" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 -#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 -msgid "Eliminar Archivo" -msgstr "Slet fil" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 -#: ../../../config/actions.xml:625 -msgid "Eliminar Grupo" -msgstr "Slet gruppe" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:108 -msgid "Error al eliminar los usuarios del grupo" -msgstr "Fejl under sletning af gruppens brugere" - -#: ../../../../lib/SP/Services/Import/ImportService.php:91 -msgid "Compruebe el formato del archivo" -msgstr "Kontroller venligst filformatet" - -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigLdapController.php:260 -msgid "Importación finalizada" -msgstr "Import færdig" - -#: ../../../modules/web/Controllers/ErrorController.php:123 -msgid "Error en la verificación de la base de datos" -msgstr "Fejl under kontrol af databasen" - -#: ../../../../lib/SP/Core/Context/SessionContext.php:547 -msgid "La sesión no puede ser inicializada" -msgstr "Sessionen kan ikke initialiseres" - -#: ../../../../lib/SP/Config/ConfigUtil.php:94 -msgid "El directorio \"/config\" no existe" -msgstr "\"/config\" -mappen findes ikke" - -#: ../../../../lib/SP/Config/ConfigUtil.php:100 -msgid "No es posible escribir en el directorio \"config\"" -msgstr "Kan ikke skrive i \"/config\" -mappen" - -#: ../../../../lib/SP/Config/ConfigUtil.php:109 -msgid "Los permisos del directorio \"/config\" son incorrectos" -msgstr "Rettighederne på \"/config\" -mappen er forkerte" +#: ../../../modules/web/Controllers/CustomFieldController.php:317 +msgid "Ver Campo" +msgstr "Vis felt" #: ../../../modules/web/Controllers/ErrorController.php:107 msgid "Aplicación en mantenimiento" @@ -2030,357 +979,1009 @@ msgstr "Applikationen er i vedligeholdelsestilstand" msgid "En breve estará operativa" msgstr "Den er snart i drift" -#: ../../../modules/web/Controllers/LoginController.php:101 -msgid "Finalizar sesión" -msgstr "Afslut session" +#: ../../../modules/web/Controllers/ErrorController.php:123 +msgid "Error en la verificación de la base de datos" +msgstr "Fejl under kontrol af databasen" -#: ../../../modules/web/Controllers/LoginController.php:103 -msgid "Tiempo inactivo" -msgstr "Inaktiv tid" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 +msgid "Ver Actual" +msgstr "Vis aktuel" -#: ../../../modules/web/Controllers/LoginController.php:104 -msgid "Tiempo total" -msgstr "Total tid" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:360 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:310 +#: ../../../modules/web/themes/material-blue/views/config/general.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:295 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:440 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:294 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:194 +msgid "Atrás" +msgstr "Tilbage" -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 -msgid "La aplicación necesita actualizarse" -msgstr "Applikationen skal opdateres" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 +msgid "Solicitar Modificación" +msgstr "Anmod om ændring" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:43 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 -msgid "Actualizar" -msgstr "Opdater" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 +msgid "Restaurar cuenta desde este punto" +msgstr "Genskab konto fra dette tidspunkt" -#: ../../../../lib/SP/Controller/MainActionController.php:91 -#: ../../../../lib/SP/Controller/MainActionController.php:148 -msgid "Actualización" -msgstr "Opdatering" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:130 +msgid "Guardar" +msgstr "Gem" -#: ../../../../lib/SP/Controller/MainActionController.php:149 -msgid "Actualización de versión realizada." -msgstr "Versionsopdatering udført." +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 +#: ../../../config/actions.xml:439 +msgid "Actualizar Enlace Público" +msgstr "Opdatér offentligt link" -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:113 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:229 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:161 -#: ../../../modules/web/Controllers/ConfigBackupController.php:118 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 -msgid "Versión" -msgstr "Version" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 +#: ../../../config/actions.xml:433 +msgid "Eliminar Enlace Público" +msgstr "Slet offentligt link" -#: ../../../../lib/SP/Services/Install/Installer.php:106 -msgid "Indicar nombre de usuario admin" -msgstr "Indtast venligst administrator-brugernavnet" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 +#: ../../../config/actions.xml:421 +msgid "Crear Enlace Público" +msgstr "Opret offentligt link" -#: ../../../../lib/SP/Services/Install/Installer.php:108 -msgid "Usuario admin para acceso a la aplicación" -msgstr "Administrator-brugeren der logger ind i applikationen" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 +#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 +msgid "Ver Clave" +msgstr "Vis kodeord" -#: ../../../../lib/SP/Services/Install/Installer.php:113 -msgid "Indicar la clave de admin" -msgstr "Indtast venligst administrator-adgangskoden" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 +msgid "Copiar Clave en Portapapeles" +msgstr "Kopier kodeord til udklipsholder" -#: ../../../../lib/SP/Services/Install/Installer.php:115 -msgid "Clave del usuario admin de la aplicación" -msgstr "Applikationsadministratorens adgangskode" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 +#: ../../../config/actions.xml:193 +msgid "Copiar Cuenta" +msgstr "Kopier konto" -#: ../../../../lib/SP/Services/Install/Installer.php:120 -msgid "Indicar la clave maestra" -msgstr "Indtast venligst Hoved-kodeordet" +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 +#: ../../../config/strings.js.inc:72 +msgid "Clave de Cuenta" +msgstr "Kontoens kodeord" -#: ../../../../lib/SP/Services/Install/Installer.php:122 -msgid "Clave maestra para encriptar las claves" -msgstr "Hoved-kodeord til kryptering af kodeordene" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 +msgid "Más Acciones" +msgstr "Flere handlinger" -#: ../../../../lib/SP/Services/Install/Installer.php:127 -msgid "Clave maestra muy corta" -msgstr "Hoved-kodeordet er for kort" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:59 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:34 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:40 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 +msgid "Cliente" +msgstr "Klient" -#: ../../../../lib/SP/Services/Install/Installer.php:129 -msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" -msgstr "Hoved-kodeordet skal være mindst 11 tegn" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 +msgid "Ordenar por Cliente" +msgstr "Sortér efter klient" -#: ../../../../lib/SP/Services/Install/Installer.php:134 -msgid "Indicar el usuario de la BBDD" -msgstr "Indtast venligst database-brugernavnet" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:43 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:22 +msgid "Nombre" +msgstr "Navn" -#: ../../../../lib/SP/Services/Install/Installer.php:136 -#, fuzzy -msgid "Usuario con permisos de administrador de la Base de Datos" -msgstr "En bruger med administrationsrettigheder på databasen" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 +msgid "Ordenar por Nombre" +msgstr "Sortér efter navn" -#: ../../../../lib/SP/Services/Install/Installer.php:148 -msgid "Indicar el nombre de la BBDD" -msgstr "Indtast venligst databasenavnet" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:72 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:45 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:51 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:105 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 +msgid "Categoría" +msgstr "Kategori" -#: ../../../../lib/SP/Services/Install/Installer.php:150 -msgid "Nombre para la BBDD de la aplicación pej. syspass" -msgstr "Applikationsdatabasenavn, f.eks. syspass" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 +msgid "Ordenar por Categoría" +msgstr "Sortér efter kategori" -#: ../../../../lib/SP/Services/Install/Installer.php:155 -msgid "El nombre de la BBDD no puede contener \".\"" -msgstr "Databasenavnet må ikke indeholde \".\"" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:141 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:61 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:149 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:233 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:247 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:24 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:94 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:75 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:77 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 +msgid "Usuario" +msgstr "Bruger" -#: ../../../../lib/SP/Services/Install/Installer.php:157 -msgid "Elimine los puntos del nombre de la Base de Datos" -msgstr "Fjern venligst punktummer i databasenavnet" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 +msgid "Ordenar por Usuario" +msgstr "Sortér efter brugernavn" -#: ../../../../lib/SP/Services/Install/Installer.php:162 -msgid "Indicar el servidor de la BBDD" -msgstr "Indtast venligst databaseserverens navn/adresse" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:56 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:62 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:128 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:79 +msgid "URL / IP" +msgstr "URL / IP" -#: ../../../../lib/SP/Services/Install/Installer.php:164 -msgid "Servidor donde se instalará la Base de Datos" -msgstr "Serveren som databasen oprettes på" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 +msgid "Ordenar por URL / IP" +msgstr "Sortér efter URL / IP" -#: ../../../../inc/SP/Core/Installer.class.php:238 -msgid "No es posible comprobar el usuario de sysPass" -msgstr "Kan ikke kontrollere sysPass-brugeren" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 +msgid "Eliminar Seleccionados" +msgstr "Slet valgte" -#: ../../../../lib/SP/Services/Install/MySQL.php:137 -msgid "Compruebe los permisos del usuario de conexión a la BD" -msgstr "Kontroller venligst rettighederne for adgang til databasen" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:158 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:42 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:44 +msgid "Propietario" +msgstr "Owner" -#: ../../../../lib/SP/Services/Install/MySQL.php:201 -msgid "La BBDD ya existe" -msgstr "Databasen findes allerede" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:175 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:50 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 +msgid "Grupo Principal" +msgstr "Hovedgruppe" -#: ../../../../lib/SP/Services/Install/MySQL.php:203 -msgid "Indique una nueva Base de Datos o elimine la existente" -msgstr "" -"Indtast venligst et nyt databasenavn eller slet den eksisterende database" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 +#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 +msgid "Buscar Cuenta" +msgstr "Søg efter konto" -#: ../../../../inc/SP/Core/Installer.class.php:316 -#: ../../../../inc/SP/Core/Installer.class.php:419 -msgid "Error al crear la BBDD" -msgstr "Fejl under oprettelsen af databasen" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 +msgid "Cuentas (H)" +msgstr "Konti (H)" -#: ../../../../lib/SP/Services/Install/MySQL.php:215 -#: ../../../../lib/SP/Services/Install/MySQL.php:239 -msgid "Verifique los permisos del usuario de la Base de Datos" -msgstr "Kontroller venligst brugerrettighederne på databasen" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:122 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:55 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:38 +msgid "Fecha" +msgstr "Dato" -#: ../../../../lib/SP/Services/Install/MySQL.php:305 -msgid "El archivo de estructura de la BBDD no existe" -msgstr "Databasens strukturfil findes ikke" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:126 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 +msgid "Estado" +msgstr "Status" -#: ../../../../lib/SP/Services/Install/MySQL.php:307 -msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." -msgstr "Kan ikke oprette databasen. Download den venligst igen." +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +msgid "Modificada" +msgstr "Modifceret" -#: ../../../../lib/SP/Services/Install/MySQL.php:290 -msgid "Error al seleccionar la BBDD" -msgstr "Fejl under valg af databasen." +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 +msgid "Eliminada" +msgstr "Slettet" -#: ../../../../lib/SP/Services/Install/MySQL.php:311 -msgid "" -"No es posible usar la Base de Datos para crear la estructura. Compruebe los " -"permisos y que no exista." -msgstr "" -"Kan ikke åbne databasen for at oprette strukturen. Kontroller rettigheder og " -"at den ikke allerede er oprettet." +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 +#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 +msgid "Restaurar Cuenta" +msgstr "Genskabelse af konto" -#: ../../../../lib/SP/Services/Install/MySQL.php:331 -msgid "Error al crear la estructura de la Base de Datos." -msgstr "Fejl under oprettelsen af databasestrukturen." +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 +msgid "Autorizaciones API" +msgstr "API autorisationer" -#: ../../../../lib/SP/Services/Install/Installer.php:318 -#: ../../../../lib/SP/Services/Install/Installer.php:369 -msgid "Informe al desarrollador" -msgstr "Advarsel til udviklerne" +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 +msgid "Acción" +msgstr "Handling" -#: ../../../../inc/SP/Core/Installer.class.php:484 -msgid "Error al actualizar la clave maestra del usuario \"admin\"" -msgstr "Fejl under opdateringen af Hoved-kodeordet for brugeren \"admin\"" +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 +msgid "Buscar Token" +msgstr "Søg efter polet" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:141 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:188 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:193 -msgid "No es posible conectar con el servidor de LDAP" -msgstr "Kan ikke forbinde til LDAP-serveren" +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 +msgid "Ver token de Autorización" +msgstr "Vis autorisationspolet" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:231 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:237 -msgid "Error al conectar (BIND)" -msgstr "Forbindelsesfejl (BIND)" +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 +msgid "Eliminar Autorización" +msgstr "Slet autorisation" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:249 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:254 -msgid "Error al buscar objetos en DN base" -msgstr "Fejl under søgnig efter objekter i 'base DN'" +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 +msgid "Descripción" +msgstr "Beskrivelse" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:119 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:125 -msgid "Error al buscar RDN de grupo" -msgstr "Fejl under søgning i gruppen RDN" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 +#: ../../../config/actions.xml:325 +msgid "Buscar Categoría" +msgstr "Søg efter kategori" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:200 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:204 -msgid "Error al localizar el usuario en LDAP" -msgstr "Fejl under søgning efter brugeren i LDAP" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 +#: ../../../config/actions.xml:319 +msgid "Eliminar Categoría" +msgstr "Slet kategori" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:139 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:120 -msgid "Error al buscar el grupo de usuarios" -msgstr "Fejl under søgningen i brugergruppen" +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:66 +msgid "SI" +msgstr "JA" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:109 -msgid "Usuario verificado en grupo" -msgstr "Bruger verificeret som tilhørende gruppen" +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:67 +msgid "NO" +msgstr "NEJ" -#: ../../../../inc/SP/Controller/EventlogController.class.php:102 -msgid "Vaciar Eventos" -msgstr "Ryd hændelser" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 +#: ../../../config/actions.xml:355 +msgid "Buscar Cliente" +msgstr "Søg efter klient" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 +#: ../../../config/actions.xml:349 +msgid "Eliminar Cliente" +msgstr "Slet klient" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 +msgid "Campos Personalizados" +msgstr "Brugerdefinerede felter" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 +msgid "Módulo" +msgstr "Modul" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:30 +msgid "Tipo" +msgstr "Type" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:120 +msgid "Propiedades" +msgstr "Egenskaber" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 +msgid "Encriptado" +msgstr "Krypteret" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 +msgid "Buscar Campo" +msgstr "Søg efter felt" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 +msgid "Eliminar Campo" +msgstr "Slet felt" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 +#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 +#: ../../../config/actions.xml:133 +msgid "Registro de Eventos" +msgstr "Hændelseslog" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:99 +msgid "ID" +msgstr "ID" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 +msgid "Fecha / Hora" +msgstr "Dato / Tid" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 +msgid "Nivel" +msgstr "Niveau" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 +msgid "Evento" +msgstr "Hændelse" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 +msgid "Login" +msgstr "Login" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 +msgid "IP" +msgstr "IP" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 +msgid "Buscar Evento" +msgstr "Søg efter hændelser" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 +msgid "Refrescar" +msgstr "Genindlæs" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:199 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 #, fuzzy msgid "Vaciar registro de eventos" msgstr "Ryd hændelsesloggen" -#: ../../../../lib/SP/Services/Client/ClientService.php:76 -#: ../../../../lib/SP/Services/Client/ClientService.php:95 -#: ../../../../lib/SP/Services/Client/ClientService.php:110 -msgid "Cliente no encontrado" -msgstr "Klient ikke fundet" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:280 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 +#: ../../../config/actions.xml:19 +msgid "Archivos" +msgstr "Filer" -#: ../../../../inc/SP/Mgmt/Users/User.class.php:246 -msgid "Error al obtener los usuarios" -msgstr "Fejl under indlæsning af brugerne" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:25 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:30 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:23 +msgid "Cuenta" +msgstr "Konto" -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:52 -msgid "Migrar Perfiles" -msgstr "Migrer profiler" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:82 -msgid "Error al obtener perfiles" -msgstr "Fejl under indlæsning af profilerne" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:144 -msgid "Operación realizada correctamente" -msgstr "Handlingen blev korrekt gennemført" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:149 -msgid "Fallo al realizar la operación" -msgstr "Fejl under udførelse af handlingen" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:110 +msgid "Tamaño" +msgstr "Størrelse" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 -#: ../../../config/actions.xml:655 -msgid "Eliminar Perfil" -msgstr "Slet profil" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:119 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:68 -msgid "Formato de XML inválido" -msgstr "Ugyldigt XML-format" - -#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:122 -msgid "No es posible obtener la plantilla \"%s\" : %s" -msgstr "Kan ikke indlæse \"%s\" skabelonen: %s" - -#: ../../../../lib/SP/Mvc/View/Template.php:274 -#: ../../../../lib/SP/Mvc/View/Template.php:276 -msgid "No es posible obtener la variable \"%s\"" -msgstr "Kan ikke indlæse \"%s\" variablen" - -#: ../../../../lib/SP/Mvc/View/Template.php:322 -#: ../../../../lib/SP/Mvc/View/Template.php:324 -msgid "No es posible destruir la variable \"%s\"" -msgstr "Kan ikke nulstille \"%s\" variablen" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:175 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:179 -msgid "Error al aplicar la actualización de la Base de Datos" -msgstr "Fejl under opdateringen af databasen" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:72 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:98 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:106 -msgid "Compruebe el registro de eventos para más detalles" -msgstr "Se venligst hændelsesloggen for yderligere detaljer" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 -msgid "Acceder" -msgstr "Log ind" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:96 -msgid "Error al aplicar la actualización auxiliar" -msgstr "Fejl under udførelsen af en tillægsopdatering" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:89 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:120 -msgid "Actualizar BBDD" -msgstr "Opdater databasen" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:155 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:159 -msgid "No es necesario actualizar la Base de Datos." -msgstr "Databaseopdatering ikke påkrævet" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 -msgid "Actualización de la Base de Datos realizada correctamente." -msgstr "Databaseopdateringen blev korrekt udført" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:70 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:202 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:228 -msgid "Actualizar Configuración" -msgstr "Opdater konfigurationen" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:240 -msgid "No se pudo realizar la petición de cambio de clave." -msgstr "Kunne ikke gennemføre forespørgslen om ændring af kodeord" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:145 +#: ../../../config/actions.xml:475 +msgid "Buscar Archivo" +msgstr "Søg efter fil" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:51 +#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 +msgid "Ver Archivo" +msgstr "Vis fil" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:42 +#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 +msgid "Descargar Archivo" +msgstr "Download fil" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:34 +#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 +msgid "Eliminar Archivo" +msgstr "Slet fil" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 +msgid "Valores Predeterminados" +msgstr "Preset Values" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:274 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:277 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:233 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:148 +msgid "Grupo" +msgstr "Gruppe" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:131 +msgid "Perfil" +msgstr "Profil" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 +msgid "Prioridad" +msgstr "Prioritet" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 +msgid "Forzado" +msgstr "Tvungen" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 +#: ../../../config/actions.xml:853 +msgid "Buscar Valor" +msgstr "Search for Value" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 +msgid "Valor de Permiso" +msgstr "Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 +msgid "Nuevo Valor de Permiso" +msgstr "New Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 +msgid "Valor de Cuenta Privada" +msgstr "Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 +msgid "Nuevo Valor de Cuenta Privada" +msgstr "New Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 +msgid "Valor de Timeout de Sesión" +msgstr "Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 +msgid "Nuevo Valor de Timeout de Sesión" +msgstr "New Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 +msgid "Valor de Clave de Cuentas" +msgstr "Account Password Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 +msgid "Nuevo Valor de Clave de Cuentas" +msgstr "New Account Password Preset" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: ../../../modules/web/Controllers/ItemPresetController.php:239 +#: ../../../config/actions.xml:871 +msgid "Editar Valor" +msgstr "Edit Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 +#: ../../../config/actions.xml:877 +msgid "Eliminar Valor" +msgstr "Delete Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 +#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 +#: ../../../config/actions.xml:679 +msgid "Notificaciones" +msgstr "Notifikationer" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:42 +msgid "Componente" +msgstr "Komponent" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:111 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:115 +msgid "Leída" +msgstr "Læs" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 +msgid "Sólo Admins" +msgstr "Kun administratorer" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:164 +#: ../../../config/actions.xml:841 +msgid "Buscar Notificación" +msgstr "Søg efter notifikationer" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:180 +#: ../../../modules/web/Controllers/NotificationController.php:194 +msgid "Nueva Notificación" +msgstr "Ny notifikation" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:198 +#: ../../../modules/web/Controllers/NotificationController.php:113 +#: ../../../config/actions.xml:811 +msgid "Ver Notificación" +msgstr "Vis notifikation" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:228 +#: ../../../config/actions.xml:835 +msgid "Marcar Notificación" +msgstr "Markér" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:246 +#: ../../../modules/web/Controllers/NotificationController.php:226 +#: ../../../config/actions.xml:823 +msgid "Editar Notificación" +msgstr "Tilret notifikation" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:263 +#: ../../../config/actions.xml:829 +msgid "Eliminar Notificación" +msgstr "Slet notifikation" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:331 +#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 +msgid "Plugins" +msgstr "Plugins" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 +msgid "Plugin" +msgstr "Plugin" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 +msgid "No disponible" +msgstr "Ikke disponibel" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 +#: ../../../config/actions.xml:547 +msgid "Buscar Plugin" +msgstr "Søg efter plugin" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 +#: ../../../modules/web/Controllers/PluginController.php:136 +#: ../../../config/actions.xml:541 +msgid "Ver Plugin" +msgstr "Vis plugin" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 +msgid "Habilitar" +msgstr "Aktivér" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 +msgid "Deshabilitar" +msgstr "Deaktivér" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 +msgid "Restablecer Datos" +msgstr "Nulstil data" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:49 +msgid "Enlaces" +msgstr "Links" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:51 +msgid "Fecha Creación" +msgstr "Oprettelsesdato" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:59 +msgid "Fecha Caducidad" +msgstr "Udløbsdato " + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:43 +msgid "Notificar" +msgstr "Orientér" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:14 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:75 +msgid "Visitas" +msgstr "Besøg" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:149 +msgid "Buscar Enlace" +msgstr "Søg efter link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:165 +msgid "Nuevo Enlace" +msgstr "Nyt link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:183 +#: ../../../modules/web/Controllers/PublicLinkController.php:357 +msgid "Ver Enlace" +msgstr "Vis link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:199 +msgid "Renovar Enlace" +msgstr "Forny link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:216 +msgid "Eliminar Enlace" +msgstr "Slet link" + +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:211 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 +msgid "Etiquetas" +msgstr "Mærker" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:135 +#: ../../../config/actions.xml:529 +msgid "Buscar Etiqueta" +msgstr "Søg efter mærker" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: ../../../modules/web/Controllers/TagController.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:226 +#: ../../../config/actions.xml:505 +msgid "Nueva Etiqueta" +msgstr "Nyt mærke" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: ../../../modules/web/Controllers/TagController.php:168 +#: ../../../config/actions.xml:517 +msgid "Editar Etiqueta" +msgstr "Tilret mærke" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:186 +#: ../../../config/actions.xml:523 +msgid "Eliminar Etiqueta" +msgstr "Slet mærke" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 +msgid "Tracks" +msgstr "Tracks" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 +msgid "Fecha Desbloqueo" +msgstr "Date Unlocked" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 +msgid "Origen" +msgstr "Kilde" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 +#: ../../../config/actions.xml:889 +msgid "Buscar Track" +msgstr "Search for track" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:156 +#: ../../../config/actions.xml:601 +msgid "Buscar Usuario" +msgstr "Søg efter bruger" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:172 +#: ../../../modules/web/Controllers/UserController.php:115 +#: ../../../config/actions.xml:577 +msgid "Nuevo Usuario" +msgstr "Ny bruger" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:190 +#: ../../../modules/web/Controllers/UserController.php:200 +#: ../../../config/actions.xml:583 +msgid "Editar Usuario" +msgstr "Tilret bruger" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:207 #: ../../../config/actions.xml:589 msgid "Eliminar Usuario" msgstr "Slet bruger" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:40 -msgid "Usuario de LDAP" -msgstr "LDAP-bruger" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:224 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:460 +msgid "Importar usuarios de LDAP" +msgstr "Importér brugere fra LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:122 -msgid "Activación Cuenta" -msgstr "Kontoaktivering" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:242 +msgid "Ver Detalles de Usuario" +msgstr "Vis brugerdetaljer" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:123 -msgid "Su cuenta está pendiente de activación." -msgstr "Din konto afventer aktivering" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:259 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 +msgid "Cambiar Clave de Usuario" +msgstr "Skift brugers kodeord" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:124 -msgid "En breve recibirá un email de confirmación." -msgstr "Du vil snarest modtage en bekræftelses-mail" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 +#: ../../../config/actions.xml:631 +msgid "Buscar Grupo" +msgstr "Søg efter gruppe" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:131 -msgid "Nuevo usuario de LDAP" -msgstr "Ny LDAP-bruger" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: ../../../modules/web/Controllers/UserGroupController.php:117 +#: ../../../config/actions.xml:613 +msgid "Nuevo Grupo" +msgstr "Ny gruppe" -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:152 -msgid "Error al migrar grupo del usuario" -msgstr "Fejl under migrering af brugergruppe" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: ../../../modules/web/Controllers/UserGroupController.php:344 +#: ../../../config/actions.xml:607 +msgid "Ver Grupo" +msgstr "Se gruppe" -#: ../../../modules/web/Controllers/InstallController.php:62 -msgid "Versión de PHP requerida >= " -msgstr "Påkrævet PHP version >= " +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: ../../../modules/web/Controllers/UserGroupController.php:188 +#: ../../../config/actions.xml:619 +msgid "Editar Grupo" +msgstr "Tilret gruppe" -#: ../../../../lib/SP/Bootstrap.php:269 -msgid "" -"Actualice la versión de PHP para que la aplicación funcione correctamente" -msgstr "Opdater venligst din PHP version for at køre sysPass" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 +#: ../../../config/actions.xml:625 +msgid "Eliminar Grupo" +msgstr "Slet gruppe" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 +msgid "Perfiles" +msgstr "Profiler" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 +#: ../../../config/actions.xml:661 +msgid "Buscar Perfil" +msgstr "Søg efter profil" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: ../../../modules/web/Controllers/UserProfileController.php:110 +#: ../../../config/actions.xml:643 +msgid "Nuevo Perfil" +msgstr "Ny profil" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 +msgid "Ver Detalles de Perfil" +msgstr "Vis profildetaljer" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: ../../../modules/web/Controllers/UserProfileController.php:177 +#: ../../../config/actions.xml:649 +msgid "Editar Perfil" +msgstr "Tilret profil" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 +#: ../../../config/actions.xml:655 +msgid "Eliminar Perfil" +msgstr "Slet profil" + +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:262 +msgid "Buscar" +msgstr "Søg" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:345 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 +#: ../../../config/actions.xml:685 +msgid "Configuración" +msgstr "Konfiguration" #: ../../../modules/web/Controllers/InstallController.php:59 msgid "Módulo no disponible" @@ -2390,28 +1991,57 @@ msgstr "Modulet er ikke tilgængeligt" msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Uden dette modul vil applikationen ikke fungere ordentligt" -#: ../../../../inc/SP/Core/XmlExport.class.php:133 -msgid "Exportar XML" -msgstr "XML eksport" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:73 +#: ../../../config/actions.xml:859 +msgid "Ver Valor" +msgstr "Display Value" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:545 -msgid "Error al crear el archivo XML" -msgstr "Fejl under oprettelsen af XML-filen" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:207 +#: ../../../config/actions.xml:865 +msgid "Nuevo Valor" +msgstr "New Value" -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:110 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:81 -msgid "No es posible procesar el archivo XML" -msgstr "Kan ikke processere XML-filen" +#: ../../../modules/web/Controllers/ItemsController.php:130 +msgid "No hay no hay notificaciones pendientes" +msgstr "Der findes ingen afventende notifikationer" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:105 -msgid "Archivo XML no soportado" -msgstr "XML-filen er ikke understøttet" +#: ../../../modules/web/Controllers/ItemsController.php:131 +#, php-format +msgid "Hay notificaciones pendientes: %d" +msgstr "There are pending notifications: %d" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:107 -msgid "No es posible detectar la aplicación que exportó los datos" -msgstr "Kan ikke udlede hvilken applikation den stammer fra" +#: ../../../modules/web/Controllers/PublicLinkController.php:114 +msgid "Nuevo Enlace Público" +msgstr "Nyt offentligt link" + +#: ../../../modules/web/Controllers/PublicLinkController.php:204 +msgid "Editar Enlace Público" +msgstr "Tilret offentligt link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/TagController.php:302 +#: ../../../config/actions.xml:511 +msgid "Ver Etiqueta" +msgstr "Vis mærke" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserController.php:458 +#: ../../../config/actions.xml:571 +msgid "Ver Usuario" +msgstr "Se bruger" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserProfileController.php:326 +#: ../../../config/actions.xml:637 +msgid "Ver Perfil" +msgstr "Se profil" + +#: ../../../modules/web/Controllers/UserSettingsManagerController.php:87 +msgid "Preferencias" +msgstr "Præferencer" -#: ../../../../lib/SP/Storage/Database/QueryData.php:354 #: ../../../config/strings.js.inc:26 msgid "Error en la consulta" msgstr "Fejl under forespørgsel" @@ -2465,12 +2095,11 @@ msgid "Borrar elemento?" msgstr "Slet element?" #: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:31 msgid "Página no encontrada" msgstr "Side ikke fundet" -#: ../../../modules/web/Controllers/AccountFileController.php:108 #: ../../../config/strings.js.inc:40 msgid "Archivo no soportado para visualizar" msgstr "Filen er ikke understøttet som forhåndsvisning" @@ -2491,53 +2120,57 @@ msgstr "For mange filer" msgid "Tamaño de archivo no permitido" msgstr "Filstørrelse ikke tilladt" +#: ../../../config/strings.js.inc:45 +msgid "Extensión no permitida" +msgstr "Fil-endelse er ikke tilladt " + #: ../../../config/strings.js.inc:46 #, fuzzy msgid "Vaciar el registro de eventos?" msgstr "Ryd hændelsesloggen?" #: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:281 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:253 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:152 msgid "Seleccionar Grupo" msgstr "Vælg gruppe" #: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:81 msgid "Seleccionar Usuario" msgstr "Vælg bruger" #: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:135 msgid "Seleccionar Perfil" msgstr "Vælg profil" #: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:84 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 msgid "Seleccionar Cliente" msgstr "Vælg klient" #: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:41 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 msgid "Seleccionar Categoría" msgstr "Vælg kategori" @@ -2570,54 +2203,44 @@ msgid "Mostrar Clave" msgstr "Vis kodeord" #: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:24 msgid "Copiar Usuario" msgstr "Kopier brugernavn" #. (itstool) path: action/text #: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:41 #: ../../../config/actions.xml:199 ../../../config/actions.xml:271 msgid "Copiar Clave" msgstr "Kopier kodeord" #: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 msgid "Incluir Números" msgstr "Inkluder tal" #: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 msgid "Incluir Mayúsculas" msgstr "Inkluder store bogstaver" #: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 #, fuzzy msgid "Incluir Símbolos" msgstr "Inkluder specialtegn" #: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 msgid "Longitud" msgstr "Længde" #: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 msgid "Seleccionar Acción" msgstr "Vælg handling" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:66 -msgid "SI" -msgstr "JA" - -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:67 -msgid "NO" -msgstr "NEJ" - #: ../../../config/strings.js.inc:68 msgid "Aceptar" msgstr "Accepter" @@ -2634,668 +2257,545 @@ msgstr "Kodeord kopieret til udklipsholder" msgid "Error al copiar al portapapeles" msgstr "Fejl under kopiering til udklipsholder" -#: ../../../modules/web/Controllers/AccountController.php:149 -#: ../../../modules/web/Controllers/AccountController.php:204 -#: ../../../modules/web/Controllers/AccountController.php:474 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 -msgid "Detalles de Cuenta" -msgstr "Kontodetaljer" +#: ../../../config/strings.js.inc:73 +msgid "Recibir notificaciones?" +msgstr "Send notifikationer?" -#: ../../../modules/web/Controllers/AccountController.php:432 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 -msgid "Modificar Clave de Cuenta" -msgstr "Skift konto-kodeord" - -#: ../../../../lib/SP/Plugin/PluginManager.php:246 -#: ../../../modules/api/Controllers/AccountController.php:71 -#: ../../../modules/api/Controllers/AccountController.php:103 -#: ../../../modules/api/Controllers/AccountController.php:139 -#: ../../../modules/api/Controllers/AccountController.php:185 -#: ../../../modules/api/Controllers/AccountController.php:235 -#: ../../../modules/api/Controllers/AccountController.php:310 -#: ../../../modules/api/Controllers/CategoryController.php:63 -#: ../../../modules/api/Controllers/CategoryController.php:92 -#: ../../../modules/api/Controllers/CategoryController.php:122 -#: ../../../modules/api/Controllers/CategoryController.php:151 -#: ../../../modules/api/Controllers/ClientController.php:64 -#: ../../../modules/api/Controllers/ClientController.php:94 -#: ../../../modules/api/Controllers/ClientController.php:125 -#: ../../../modules/api/Controllers/ClientController.php:154 -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:90 -#: ../../../modules/api/Controllers/TagController.php:119 -#: ../../../modules/api/Controllers/TagController.php:148 -#: ../../../modules/api/Controllers/UserGroupController.php:62 -#: ../../../modules/api/Controllers/UserGroupController.php:92 -#: ../../../modules/api/Controllers/UserGroupController.php:123 -#: ../../../modules/api/Controllers/UserGroupController.php:152 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/Controllers/UserGroupController.php:265 -#: ../../../modules/web/Controllers/UserGroupController.php:304 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 -msgid "Nombre" -msgstr "Navn" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 -msgid "Módulo" -msgstr "Modul" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 -msgid "Eliminar Campo" -msgstr "Slet felt" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Sidste backup" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "No se encontraron backups" -msgstr "Der er ingen backups tilgængelige" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "Última exportación" -msgstr "Sidste eksportering" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "No se encontró archivo de exportación" -msgstr "Ingen eksportfil fundet" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:63 -msgid "Información" -msgstr "Information" - -#: ../../../modules/web/Controllers/EventlogController.php:119 -#: ../../../modules/web/Controllers/EventlogController.php:122 -msgid "Registro de eventos vaciado" -msgstr "Hændelsesloggen ryddet" - -#: ../../../../lib/SP/Repositories/EventLog/EventlogRepository.php:53 -#, fuzzy -msgid "Error al vaciar el registro de eventos" -msgstr "Fejl under rydning af hændelsesloggen" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 -msgid "Admin Aplicación" -msgstr "Applikationsadministrator" - -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:265 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:58 -msgid "Buscar" -msgstr "Søg" +#: ../../../config/strings.js.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:158 +msgid "Marcar Favorito" +msgstr "Vælg som foretrukken" #. (itstool) path: action/text -#: ../../../config/actions.xml:103 -msgid "Usuarios y Accesos" -msgstr "Brugere og rettigheder" +#: ../../../config/strings.js.inc:75 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:148 +#: ../../../config/actions.xml:253 +msgid "Eliminar Favorito" +msgstr "Slet foretrukken" -#. (itstool) path: action/text -#: ../../../config/actions.xml:43 -msgid "Elementos y Personalización" -msgstr "Elementer og tilretninger" +#: ../../../config/strings.js.inc:76 +msgid "Limpiar Selección" +msgstr "Ryd valgte" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 -#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 -#: ../../../config/actions.xml:133 -msgid "Registro de Eventos" -msgstr "Hændelseslog" +#: ../../../config/strings.js.inc:77 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:78 +msgid "Mostrar Favoritos" +msgstr "Vis foretrukne" -#: ../../../modules/web/Controllers/InstallController.php:82 -msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" -msgstr "Denne PHP-version er følsom overfor NULL byte attack (CVE-2006-7243)" +#: ../../../config/strings.js.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:72 +msgid "Mostrar Todos" +msgstr "Vis alle" -#: ../../../modules/web/Controllers/InstallController.php:83 -msgid "Actualice la versión de PHP para usar sysPass de forma segura" -msgstr "Opdater venligst PHP så sysPass kan afvikles sikkert" +#: ../../../config/strings.js.inc:79 +msgid "Ayuda" +msgstr "Hjælp" -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "No se encuentra el generador de números aleatorios." -msgstr "Kan ikke finde en tilfældighedsgenerator" +#: ../../../config/strings.js.inc:80 +msgid "Sin cambios" +msgstr "Ingen ændringer" -#: ../../../modules/web/Controllers/InstallController.php:90 +#: ../../../config/strings.js.inc:81 +msgid "Ahora" +msgstr "Nu" + +#: ../../../config/strings.js.inc:82 msgid "" -"Sin esta función un atacante puede utilizar su cuenta al resetear la clave" -msgstr "" -"Uden denne funktion kan en angriber overtage din konto hvis du nulstiller " -"kodeordet" +"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" +msgstr "Dette vil importere de fundne LDAP-brugere. Vil du fortsætte?" -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "Instalación finalizada" -msgstr "Installation færdig" +#: ../../../config/strings.js.inc:83 +msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" +msgstr "Dette vil nulstille alle plugin-data. Vil du fortsætte?" -#: ../../../../inc/SP/Controller/MainController.class.php:492 -msgid "Descargar nueva versión" -msgstr "Download ny version" +#: ../../../config/strings.js.inc:84 +msgid "Este proceso puede durar algo de tiempo. Desea continuar?" +msgstr "Denne proces kan tage noget tid. Vil du fortsætte?" + +#: ../../../config/strings.js.inc:85 +msgid "Aviso" +msgstr "Advarsel" + +#: ../../../config/strings.js.inc:87 +msgid "" +"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." +msgstr "Proces er i gang, luk venligst ikke browser-vinduet eller fanebladet." + +#: ../../../config/strings.js.inc:88 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 +msgid "Incluir Letras" +msgstr "Inkludér bogstaver" + +#: ../../../config/strings.js.inc:89 +msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." +msgstr "Cookies er slået fra. Applikationen vil ikke fungere korrekt." + +#: ../../../config/strings.js.inc:90 +msgid "Portapapeles no soportado por el navegador." +msgstr "Udklipsholder er ikke understøttet af din webbrowser." + +#: ../../../config/strings.js.inc:91 +msgid "Realizando auto-login" +msgstr "Udfører automatisk login" + +#: ../../../config/strings.js.inc:92 +msgid "Hay una versión más reciente del plugin {0} ({1})" +msgstr "Der er en nyere version af {0} plugin ({1})" + +#: ../../../config/strings.js.inc:93 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:30 +msgid "Actualizado" +msgstr "Opdateret" + +#: ../../../config/strings.js.inc:94 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:36 +msgid "Error al comprobar actualizaciones" +msgstr "Fejl under søgning efter opdateringer" #: ../../../config/strings.js.inc:95 msgid "Avisos de sysPass" msgstr "sysPass notifikationer" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 -msgid "Ordenar por Cliente" -msgstr "Sortér efter klient" +#: ../../../config/strings.js.inc:96 +msgid "Vaciar los tracks?" +msgstr "Clear tracks out?" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 -msgid "Ordenar por Nombre" -msgstr "Sortér efter navn" +#: ../../../config/strings.js.inc:97 +msgid "Archivo descargado" +msgstr "Fil hentet" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 -msgid "Ordenar por Categoría" -msgstr "Sortér efter kategori" +#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:21 +msgid "Javascript es necesario para el correcto funcionamiento" +msgstr "Javascript er påkrævet for at programmet skal fungere korrekt" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 -msgid "Ordenar por Usuario" -msgstr "Sortér efter brugernavn" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 -msgid "Ordenar por URL / IP" -msgstr "Sortér efter URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 -msgid "URL / IP" -msgstr "URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 -msgid "Propiedades" -msgstr "Egenskaber" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 -msgid "Admin Cuentas" -msgstr "Kontoadministrator" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:41 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 -msgid "Deshabilitado" -msgstr "Deaktiveret" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 -msgid "Ver Detalles de Usuario" -msgstr "Vis brugerdetaljer" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:62 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:120 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:126 -msgid "Cambiar Clave de Usuario" -msgstr "Skift brugers kodeord" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 -msgid "Ver Detalles de Perfil" -msgstr "Vis profildetaljer" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 -msgid "Ver token de Autorización" -msgstr "Vis autorisationspolet" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:409 -msgid "Token de autorización visualizado" -msgstr "Autorisationspolet vist" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:407 -msgid "Autorizaciones" -msgstr "Autorisationer" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 -msgid "Seguridad" -msgstr "Sikkerhed" - -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:89 -msgid "Preferencias" -msgstr "Præferencer" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 -msgid "Nombre de cuenta" -msgstr "Kontonavn" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 -msgid "URL o IP de acceso" -msgstr "Adgangs-URL eller IP" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 -msgid "Usuario de acceso" -msgstr "Bruger med adgang" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 -msgid "Clave (repetir)" -msgstr "Kodeord(gentaget)" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 -msgid "Notas" -msgstr "Noter" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 -msgid "Notas sobre la cuenta" -msgstr "Noter til kontoen" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 -msgid "Permisos" -msgstr "Rettigheder" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:53 -msgid "Hablitar edición" -msgstr "Aktiver tilretning" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 -msgid "Grupo Principal" -msgstr "Hovedgruppe" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Soltar archivos aquí (max. 5) o click para seleccionar" -msgstr "Slip filer her(max 5) eller klik for at vælge" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 -msgid "Tamaño máximo de archivo" -msgstr "Max filstørrelse" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 -msgid "Historial" -msgstr "Historik" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 -msgid "Seleccionar fecha" -msgstr "Vælg dato" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 -msgid "Última Modificación" -msgstr "Sidste ændring" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 -msgid "Visitas" -msgstr "Besøg" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 -msgid "Fecha Alta" -msgstr "Dato tilføjet" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 -msgid "Creador" -msgstr "Oprettet af" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Usuarios Secundarios" -msgstr "Sekundære brugere" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 -msgid "Grupos Secundarios" -msgstr "Sekundære grupper" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Fecha Edición" -msgstr "Dato ændret" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 -msgid "Editor" -msgstr "Redaktør" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 -msgid "Restaurar cuenta desde este punto" -msgstr "Genskab konto fra dette tidspunkt" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 -msgid "Copiar Clave en Portapapeles" -msgstr "Kopier kodeord til udklipsholder" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 -msgid "Ver Actual" -msgstr "Vis aktuel" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:49 #: ../../../modules/web/themes/material-blue/views/_partials/error.inc:14 #: ../../../modules/web/themes/material-blue/views/_partials/error.inc:15 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 msgid "Volver" msgstr "Tilbage" -#: ../../../../inc/themes/material-blue/views/account/actions.inc:146 -msgid "Modificar Cuenta" -msgstr "Tilret konto" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 +msgid "Preferencias de usuario" +msgstr "Brugerpræferencer" -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 -msgid "Solicitar Modificación" -msgstr "Anmod om ændring" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 +msgid "Salir" +msgstr "Log ud" -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:51 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 -msgid "Guardar" -msgstr "Gem" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:53 +msgid "Demo" +msgstr "Demonstration" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 -msgid "Resultado" -msgstr "Resultat" +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 +msgid "Indica si la conexión utiliza HTTPS." +msgstr "Afslører om forbindelsen bruger HTTPS eller ej" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 -msgid "Descargar Actual" -msgstr "Hent aktuel" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 -msgid "No hay backups para descargar" -msgstr "Der findes ingen backup til download" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:52 -#: ../../../config/strings.js.inc:79 -msgid "Ayuda" -msgstr "Hjælp" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 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." +"Las claves de formularios enviados se encriptan mediante PKI, el resto de " +"datos no." msgstr "" -"Backup tillader dig at gemme enten sysPass databasen, applikationsfilerne " -"eller konfigurationen." +"Kodeordene sendt fra formularerne er krypteret med PKI, andre data er ikke." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:66 +msgid "Ayuda :: FAQ :: Changelog" +msgstr "Hjælp :: OSS :: Ændringslog" + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:70 +msgid "Un proyecto de cygnux.org" +msgstr "Et cygnux.org projekt" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 +msgid "Parámetros especiales" +msgstr "Specielle parametre" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 msgid "" -"Con este método es posible guardar todos los datos de sysPass en otro lugar " -"o utilizarlos para hacer la aplicación portable." +"Es posible utilizar uno o varios parámetros especiales separados por espacios" msgstr "" -"Med denne metode er det muligt at enten gamme alle sysPass data et andet " -"sted eller bruge dem til at gøre applikationen portabel" +"Du kan anvende en eller flere specielle parametre separeret med mellemrum" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 -msgid "Exportar Cuentas" -msgstr "Eksportér konti" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 +msgid "Buscar cuentas a las que 'login' tenga acceso" +msgstr "Søg efter konti hvis 'bruger' har adgang" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -msgid "No hay archivos XML para descargar" -msgstr "Der findes ingen XML-filer til download" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 +msgid "Devolver las cuentas en las que 'login' es propietario" +msgstr "Find de konti hvor brugeren \"bruger\" er ejer" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 -msgid "Clave de Exportación" -msgstr "Eksport-kodeord" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 +msgid "Buscar cuentas a las que 'group_name' tenga acceso" +msgstr "Søg efter konti hvis 'gruppenavn' har adgang" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 -msgid "Clave de Exportación (repetir)" -msgstr "Eskport-kodeord(gentaget)" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 +msgid "Devolver las cuentas con grupo principal 'group_name'" +msgstr "Find de konti hvor hovedgruppen er \"gruppenavn\"" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 -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 "" -"Eksport af konti giver mulighed for at gemme dem som XML så de kan " -"importeres i en anden sysPass installation." +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 +msgid "Buscar cuentas con archivos con el nombre 'file_name'" +msgstr "Søg efter konti der indeholder en fil med navnet 'filnavn'" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 -msgid "" -"Las claves de las cuentas son exportadas de forma encriptada para mayor " -"seguridad." -msgstr "Konto-kodeordene er eksporteret krypteret for højere sikkerhed." +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 +msgid "Buscar cuentas por nombre de cliente" +msgstr "Search for accounts by client name" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 -msgid "" -"Es posible establecer una clave de exportación para guardar todos los datos " -"encriptados en el archivo XML." -msgstr "" -"Det er muligt at angive et eksport-kodeord der anvendes ved lagring af alle " -"de krypterede data i XML-filen." +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 +msgid "Buscar cuentas por nombre de categoría" +msgstr "Search for accounts by category name" -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 -msgid "Javascript es necesario para el correcto funcionamiento" -msgstr "Javascript er påkrævet for at programmet skal fungere korrekt" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 +msgid "Devolver la cuenta con ID" +msgstr "Returnerer kontoen for det angivne ID" -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 -msgid "Nombre de la categoría" -msgstr "Kategorinavn" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 +msgid "Buscar cuentas con la clave caducada" +msgstr "Søg efter konti med udløbet kodeord" -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 -msgid "Descripción de la categoría" -msgstr "Kategoribeskrivelse" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 +msgid "Devolver las cuentas privadas del usuario actual" +msgstr "Find private konti for den nuværende bruger" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 -msgid "Sitio" -msgstr "Websted" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 +msgid "Operador para los parámetros especiales" +msgstr "Operatør til specielle parametre" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 -msgid "Idioma" -msgstr "Sprog" +#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:17 +msgid "No se encontraron registros" +msgstr "Ingen registreringer fundet" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 -msgid "" -"Establece el idioma global de la aplicación. Es posible establecer un idioma " -"por usuario en las preferencias." -msgstr "" -"Indstil globalt applikationssprog. Du kan indstille et sprog pr. bruger " -"under brugerindstillinger." +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:168 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:38 +msgid "Clave (repetir)" +msgstr "Kodeord(gentaget)" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 -msgid "Tema Visual" -msgstr "Visuelt tema" +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 +msgid "Seleccionar Fecha" +msgstr "Vælg dato" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 -msgid "" -"Establece el tema visual global de la aplicación. Es posible establecer un " -"tema visual por usuario en las preferencias." -msgstr "" -"Indstil det globale visuelle tema. Det kan ændres under brugerindstillinger." +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:19 +msgid "Histórico" +msgstr "Historik" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 -msgid "Timeout de sesión (s)" -msgstr "Sessions-udløb (s)" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:22 +msgid "Detalles" +msgstr "Detaljer" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 -msgid "Habilitar log de eventos" -msgstr "Aktivér hændelseslog" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:127 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:200 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:169 +msgid "Notas" +msgstr "Noter" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 -msgid "Guarda las acciones realizadas en la aplicación." -msgstr "Gemmer alle handlinger foretaget i applikationen" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:140 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:142 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:271 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:273 +msgid "Historial" +msgstr "Historik" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 -msgid "Habilitar depuración" -msgstr "Aktiver fejlsøgning" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:278 +msgid "Seleccionar fecha" +msgstr "Vælg dato" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 -msgid "" -"Muestra información relativa a la configuración de la aplicación y " -"rendimiento." -msgstr "Viser information om applikationen og ydelse." +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:160 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 +msgid "Última Modificación" +msgstr "Sidste ændring" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 -msgid "Modo mantenimiento" -msgstr "Vedligeholdelsestilstand" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:23 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:57 +msgid "Seleccionar Usuarios" +msgstr "Vælg brugere" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 -msgid "" -"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " -"necesario modificar el archivo de configuración." -msgstr "" -"I denne tilstand kan man ikke logge ind i applikationen. For at slå " -"vedligeholdesestilstand fra skal man rette i konfigurationsfilen eller slå " -"den fra på websteds-fanebladet" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 +msgid "Ver" +msgstr "Vis" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 -msgid "Comprobar actualizaciones" -msgstr "Søg efter opdateringer" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:132 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:136 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 +msgid "Editar" +msgstr "Tilret" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 -msgid "" -"Comprobar actualizaciones de la aplicación (sólo para los usuarios " -"administradores)." -msgstr "Søger efter applikationsopdateringer (kun administratorer)" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 +msgid "Seleccionar Grupos" +msgstr "Vælg grupper" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 -msgid "Comprobar notificaciones" -msgstr "Søg efter notofikationer" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 +msgid "Privada" +msgstr "Privat" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 -msgid "" -"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " -"para los usuarios administradores)." -msgstr "" -"Se om der er kommet sysPass sikkerheds- eller advarsels notifikationer (kun " -"for administratorer)" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:223 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 +msgid "Privada Grupo" +msgstr "Privat for gruppen" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:15 +msgid "Solicitar Modificación de Cuenta" +msgstr "Anmod om ændring af konto" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 +msgid "Petición" +msgstr "Anmodning" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:52 +msgid "Descripción de la petición" +msgstr "Beskrivelse af anmodning" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:74 +msgid "Enviar" +msgstr "Send" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 +msgid "Permisos" +msgstr "Rettigheder" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:218 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 +msgid "Seleccionar Etiquetas" +msgstr "Vælg mærker" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:26 +msgid "Seleccionar Cuenta" +msgstr "Vælg konto" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:191 +msgid "Enlace Público" +msgstr "Offentligt link" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:314 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:316 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:319 +msgid "Enlace Directo" +msgstr "Direkte link" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:24 +msgid "Fecha Alta" +msgstr "Dato tilføjet" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:60 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:62 +msgid "Fecha Edición" +msgstr "Dato ændret" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:70 +msgid "Editor" +msgstr "Redaktør" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 +msgid "Fecha de Clave" +msgstr "Kodeordsdato" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:37 +msgid "Soltar archivos aquí (max. 5) o click para seleccionar" +msgstr "Slip filer her(max 5) eller klik for at vælge" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:39 +#, php-format +msgid "Tamaño máximo de archivo: %d MB" +msgstr "Maks. filstørrelse: %d MB" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:35 +msgid "Buscar en Wiki" +msgstr "Søg i Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:82 +#, php-format +msgid "Abrir enlace a: %s" +msgstr "Åbn link til: %s" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:109 +msgid "Clave Caducada" +msgstr "Kodeord udløbet" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:123 +msgid "Cuenta Privada (Grupo)" +msgstr "Privat konto (Gruppe)" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:166 +msgid "Notes" +msgstr "Noter" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 +msgid "Archivos adjuntos" +msgstr "Vedhæftninger" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:218 +msgid "Enlace a Wiki" +msgstr "Link til Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:210 +msgid "Ver en Wiki" +msgstr "Vis i Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 +msgid "Búsqueda global" +msgstr "Global søgning" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:83 +msgid "Filtrar Favoritos" +msgstr "Filtrér efter foretrukne" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:98 +msgid "Cuentas por página" +msgstr "Antal konti pr. side" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:104 +msgid "Más Filtros" +msgstr "Flere filtre" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:109 +msgid "Seleccionar Etiqueta" +msgstr "Vælg mærke" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:22 +msgid "Los datos serán encriptados al guardar" +msgstr "Data krypteres efter lagring" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:27 +msgid "Los datos serán desencriptados al guardar" +msgstr "Data vil blive dekrypteret ved lagring" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:12 +#, php-format +msgid "La extensión '%s' no está disponible" +msgstr "'%s' udvidelsen er ikke tilgængelig" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:16 +msgid "Esta extensión es necesaria para mostrar las claves como imágenes" +msgstr "Denne udvidelse er påkrævet for at kunne vise kodeord som billeder" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:30 +msgid "Búsqueda" +msgstr "Søger" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:36 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:56 +msgid "Resultados por página" +msgstr "Antal resultater pr. side" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:41 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:61 +msgid "Número de resultados por página a mostrar, al realizar una búsqueda." +msgstr "Antal resultater pr. side ved søgning." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:52 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:72 +msgid "Número de resultados por página" +msgstr "Antal resultater pr. side" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 +msgid "Caducidad clave cuentas" +msgstr "Konti'enes kodeordsudløb" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:71 +msgid "Habilita la caducidad de la clave de cuentas." +msgstr "Aktiverer udløbsdato for konti" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:79 +msgid "Tiempo caducidad clave" +msgstr "Udløbsdato for kodeord" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:84 +msgid "Número de días para la caducidad de la clave de cuenta." +msgstr "Antal dage før kontoen udløber" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 +msgid "Tiempo caducidad (días)" +msgstr "Udløbstid (dage)" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:112 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:90 msgid "Nombre de cuenta como enlace" msgstr "Kontonavn som link" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:113 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:92 msgid "" "Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " "de la cuenta." msgstr "Aktiverer at kontonavnet fungerer som et link til kontodetaljer" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 -msgid "Gestión de archivos" -msgstr "Filadministration" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 -msgid "Habilita la subida/descarga de archivos para las cuentas." -msgstr "Aktivere upload og download af filer i konti." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:128 msgid "Búsquedas globales" msgstr "Globale søgninger" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:129 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." @@ -3303,20 +2803,120 @@ msgstr "" "Tillader bruger at søge i alle konti. Hvis de ikke har rettigheder til det, " "kan de ikke se kontodetaljer." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:144 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 +msgid "Imagen para mostrar clave" +msgstr "Billede til at vise kodeord" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 +msgid "Generar una imagen con el texto de la clave de la cuenta." +msgstr "Genererer et billede med kodeordsteksten" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 +msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." +msgstr "" +"Er anvendeligt i miljøer hvor brug af udklipsholder anses som en " +"sikkerhedsrisiko" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:164 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:158 +msgid "Resultados en Tarjetas" +msgstr "Resultater som kort" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:166 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:160 +msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." +msgstr "Aktiverer at søgeresultater vises som kartotekskort" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:182 +msgid "Acceso Grupos Secundarios" +msgstr "Adgang for sekundærgrupper" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:184 +msgid "" +"Habilita el acceso a los usuarios que estén incluidos en los grupos " +"secundarios." +msgstr "" +"Giver adgang til de brugere der er medlem af den sekundære brugergruppe." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:186 +msgid "" +"Por defecto el usuario de un grupo secundario es permitido si el grupo " +"secundario está establecido como el primario del usuario." +msgstr "" +"Som standard er brugere i en sekundær gruppe givet adgang hvis denne " +"sekundære gruppe er brugerens primærgruppe." + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:197 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 +#: ../../../config/actions.xml:73 +msgid "Enlaces Públicos" +msgstr "Offentlige links" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:215 +msgid "Habilitar Enlaces Públicos" +msgstr "Aktivér offentlige links" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:217 +msgid "" +"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " +"una cuenta." +msgstr "" +"Giver mulighed for at oprette offentlige links der kan vise en kontos " +"detaljer" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:219 +msgid "" +"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." +msgstr "De forbundne konti kan ses af alle der har linket." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:221 +msgid "" +"Para crear enlaces, los usuarios tienen que tener activada la opción en su " +"perfl." +msgstr "" +"For at oprette links skal brugerne have aktiveret funktionen i deres profil." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:237 +msgid "Usar imagen para clave" +msgstr "Brug et billede til at vise kodeordet" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:239 +msgid "La clave de la cuenta es visualizada como una imagen." +msgstr "Kontoens kodeord vises som et billede." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:248 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:257 +msgid "Tiempo de caducidad" +msgstr "Udløbstid" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:263 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:272 +msgid "Número máximo de visitas" +msgstr "Maks. antal besøg" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:298 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 +msgid "Gestión de archivos" +msgstr "Filadministration" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:299 +msgid "Habilita la subida/descarga de archivos para las cuentas." +msgstr "Aktivere upload og download af filer i konti." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:307 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:320 msgid "Extensiones de archivos permitidas" msgstr "Tilladte filendelser" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 msgid "Extensiones permitidas para la subida de archivos." msgstr "Tilladte filendelser ved upload" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:267 -msgid "Se permite un máximo de 4 caracteres." -msgstr "Max 4 tegn tilladt" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:315 msgid "" "Escribir extensión y pulsar intro para añadir. Es necesario guardar la " "configuración." @@ -3324,137 +2924,190 @@ msgstr "" "Indtast filendelsen og tryk [Enter] for at tilføje. Husk at gemme " "konfigurationen." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:328 +msgid "Tamaño máximo de archivo" +msgstr "Max filstørrelse" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:333 msgid "Establece el tamaño máximo para subir archivos." msgstr "Indstil den maksimale filstørrelse ved upload" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:337 msgid "El máximo absuluto es de 16MB." msgstr "Det absolutte maximum er 16MB" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 -msgid "Resultados por página" -msgstr "Antal resultater pr. side" +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:348 +msgid "Tamaño máximo de archivo en kilobytes" +msgstr "Maksimal filstørrelse i kilobyte" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 -msgid "Número de resultados por página a mostrar, al realizar una búsqueda." -msgstr "Antal resultater pr. side ved søgning." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 -msgid "Resultados en Tarjetas" -msgstr "Resultater som kort" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 -msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." -msgstr "Aktiverer at søgeresultater vises som kartotekskort" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 -msgid "Imagen para mostrar clave" -msgstr "Billede til at vise kodeord" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 -msgid "Generar una imagen con el texto de la clave de la cuenta." -msgstr "Genererer et billede med kodeordsteksten" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 -msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:16 +msgid "" +"Esta extensión es necesaria para generar los archivos de copia de seguridad " +"de la aplicación" msgstr "" -"Er anvendeligt i miljøer hvor brug af udklipsholder anses som en " -"sikkerhedsrisiko" +"Denne udvidelser er påkrævet for at generere applikationens backupfiler" -#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 -msgid "Nombre del cliente" -msgstr "Klientnavn" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 +msgid "Resultado" +msgstr "Resultat" -#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 -msgid "Descripción del cliente" -msgstr "Klientbeskrivelse" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:123 +msgid "Descargar Actual" +msgstr "Hent aktuel" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 -msgid "Texto Ayuda" -msgstr "Hjælpetekst" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:51 +msgid "Copia BBDD" +msgstr "Databasebackup" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 -msgid "Obligatorio" -msgstr "Påkrævet" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:58 +msgid "Copia sysPass" +msgstr "sysPass-backup" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:80 +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 "" +"Backup tillader dig at gemme enten sysPass databasen, applikationsfilerne " +"eller konfigurationen." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:82 +msgid "" +"Con este método es posible guardar todos los datos de sysPass en otro lugar " +"o utilizarlos para hacer la aplicación portable." +msgstr "" +"Med denne metode er det muligt at enten gamme alle sysPass data et andet " +"sted eller bruge dem til at gøre applikationen portabel" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:185 +msgid "Exportar Cuentas" +msgstr "Eksportér konti" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:139 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:147 +msgid "Clave de Exportación" +msgstr "Eksport-kodeord" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:161 +msgid "Clave de Exportación (repetir)" +msgstr "Eskport-kodeord(gentaget)" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:187 +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 "" +"Eksport af konti giver mulighed for at gemme dem som XML så de kan " +"importeres i en anden sysPass installation." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:189 +#, fuzzy +msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." +msgstr "De eksporterede elementer er Konti, Klienter, Kategorier og Mærker." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:191 +msgid "" +"Las claves de las cuentas son exportadas de forma encriptada para mayor " +"seguridad." +msgstr "Konto-kodeordene er eksporteret krypteret for højere sikkerhed." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:193 +msgid "" +"Es posible establecer una clave de exportación para guardar todos los datos " +"encriptados en el archivo XML." +msgstr "" +"Det er muligt at angive et eksport-kodeord der anvendes ved lagring af alle " +"de krypterede data i XML-filen." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:17 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:167 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:50 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:56 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:57 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:102 msgid "Clave Maestra" msgstr "Hoved-kodeord" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:27 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:201 msgid "Último cambio" msgstr "Sidst ændret" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:35 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:43 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:142 msgid "Clave Maestra actual" msgstr "Aktuelt Hoved-kodeord" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:49 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:57 msgid "Nueva Clave Maestra" msgstr "Nyt Hoved-kodeord" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:63 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:71 msgid "Nueva Clave Maestra (repetir)" msgstr "Nyt Hoved-kodeord(gentaget)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 -msgid "No modificar cuentas" -msgstr "Ændr ikke konti" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 -msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" -msgstr "Angiv nyt Hoved-kodeord uden at genkryptere konti" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 -msgid "Confirmar cambio" -msgstr "Bekræft ændring" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:80 msgid "Guarde la nueva clave en un lugar seguro." msgstr "Du bør gemme det nye kodeord et sikkert sted" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:84 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "Alle kontokodeord vil blive genkrypteret" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:88 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "Brugere vil blive afkrævet det nye Hoved-kodeord" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:92 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:130 +#, php-format +msgid "" +"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." +msgstr "Der vil opdateres %s konti, Denne proces kan tage nogen tid." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:109 +msgid "No modificar cuentas" +msgstr "Ændr ikke konti" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:111 +msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" +msgstr "Angiv nyt Hoved-kodeord uden at genkryptere konti" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:127 +msgid "Confirmar cambio" +msgstr "Bekræft ændring" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:129 +msgid "" +"Confirmar el cambio de clave maestra después de haber leído las advertencias " +"anteriores." +msgstr "" +"Bekræft ændringen af hoved-kodeord efter at du har læst alle ovenstående " +"advarsler." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:155 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." msgstr "" "Hoved-kodeordet anvendes til at kryptere sysPass konti og holde dem sikre." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:157 #, fuzzy msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " @@ -3463,27 +3116,52 @@ msgstr "" "Det er tilrådeligt at ændre dem fra tid til anden samt anvende komplekse " "kodeord." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:159 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#, php-format +msgid "Para más información consulte: %s" +msgstr "Du kan få mere at vide på: %s" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:169 +msgid "Actualizar hash de clave maestra" +msgstr "Opdater Hoved-kodeords kontrolsum" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:189 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:323 msgid "Clave Temporal" msgstr "Midlertidigt kodeord" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:203 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:218 msgid "No generada" msgstr "Ikke genereret" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:211 msgid "Válido hasta" msgstr "Gyldigt til" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:227 +msgid "Intentos" +msgstr "Antal forsøg" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:244 msgid "Validez (s)" msgstr "Levetid (S)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:263 +msgid "Enviar correo" +msgstr "Send E-mail" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:265 +msgid "" +"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." +msgstr "" +"Sender en E-mail til alle brugere eller kun de brugere hvis gruppe er valgt." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:325 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " @@ -3493,124 +3171,304 @@ msgstr "" "bedt om at indtaste det under login. Når man gør det, er der intet behov for " "at give dem Hoved-kodeordet." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:332 msgid "Generar" msgstr "Generér" -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 -msgid "No se encontraron registros" -msgstr "Ingen registreringer fundet" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:12 +msgid "Autentificación" +msgstr "Autentikering" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 -msgid "Fecha / Hora" -msgstr "Dato / Tid" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:30 +msgid "Usar Auth Basic" +msgstr "Basal brugerautentificering" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 -msgid "Evento" -msgstr "Hændelse" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:31 +msgid "Usar Auth Basic para autorizar los accesos a la aplicación." +msgstr "Brug basal autentifikation til at autorisere adgang til applikationen" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 -msgid "IP" -msgstr "IP" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:45 +msgid "Usar Auth Basic SSO" +msgstr "Brug basal autentifikation SSO" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:69 -msgid "Primera página" -msgstr "Første side" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:46 +msgid "Usar auto-login con Auth Basic." +msgstr "Brug automatisk login via basal autentifikation" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:67 -msgid "Página anterior" -msgstr "Foregående side" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:54 +msgid "Dominio" +msgstr "Domæne" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:68 -msgid "Página siguiente" -msgstr "Næste side" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:70 -msgid "Última página" -msgstr "Sidste side" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 -#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 -msgid "Ver Archivo" -msgstr "Vis fil" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 -msgid "Indica si la conexión utiliza HTTPS." -msgstr "Afslører om forbindelsen bruger HTTPS eller ej" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:59 msgid "" -"Las claves de formularios enviados se encriptan mediante PKI, el resto de " -"datos no." +"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " +"el de Auth Basic." msgstr "" -"Kodeordene sendt fra formularerne er krypteret med PKI, andre data er ikke." +"Domænet vil blive tilføjet til sysPass brugernavnet for kontrol op mod det " +"brugernavn der findes i basal autentificering." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 -msgid "Ayuda :: FAQ :: Changelog" -msgstr "Hjælp :: OSS :: Ændringslog" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:69 +msgid "Nombre de dominio" +msgstr "Domænenavn" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 -msgid "Un proyecto de cygnux.org" -msgstr "Et cygnux.org projekt" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 -msgid "Nombre del grupo" -msgstr "Gruppenavn" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 -msgid "Descripción del grupo" -msgstr "Gruppebeskrivelse" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 -msgid "Importar CSV/XML" -msgstr "CSV / XML import" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 -msgid "Usuario por Defecto" -msgstr "Standardbruger" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 -msgid "Define el usuario por defecto para las cuentas importadas." -msgstr "Indstiller standardbruger til de konti der importeres" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:249 msgid "Grupo por Defecto" msgstr "Standardgruppe" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:80 +msgid "" +"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Angiver standard-brugergruppen for nyoprettede SSO-brugere" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:264 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:274 +msgid "Perfil por Defecto" +msgstr "Standardprofil" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:105 +msgid "" +"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Angiv standard-brugerprofilen for nyoprettede SSO-brugere" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:98 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:176 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:72 +msgid "Eventos" +msgstr "Hændelser" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:30 +msgid "Habilitar log de eventos" +msgstr "Aktivér hændelseslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:31 +msgid "Guarda las acciones realizadas en la aplicación." +msgstr "Gemmer alle handlinger foretaget i applikationen" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:45 +msgid "Habilitar Syslog" +msgstr "Aktivér syslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:60 +msgid "Habilitar Syslog Remoto" +msgstr "Aktivér ekstern syslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:94 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:66 +msgid "Servidor" +msgstr "Server" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:78 +msgid "Nombre o dirección IP" +msgstr "Hostnavn eller IP-adresse" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:84 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:79 +msgid "Puerto" +msgstr "Port" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:12 +msgid "Proxy" +msgstr "Proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:30 +msgid "Usar Proxy" +msgstr "Anvend Proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:31 +msgid "Usar proxy para comprobación de actualizaciones y notificaciones." +msgstr "" +"Anvend en proxyserver ved søgning efter opdateringer og notifikationer." + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:47 +msgid "Servidor proxy" +msgstr "Proxy-server" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:61 +msgid "Puerto del servidor proxy" +msgstr "Proxy-server port" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:75 +msgid "Usuario del servidor proxy" +msgstr "Proxy-server brugernavn" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:89 +msgid "Clave del servidor proxy" +msgstr "Proxy-server kodeord" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:16 +msgid "" +"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" +msgstr "" +"Denne udvidelse er påkrævet for at søge efter sysPass opdateringer og " +"notifikationer" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:24 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:15 +msgid "Sitio" +msgstr "Websted" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:137 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:139 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:28 +msgid "Idioma" +msgstr "Sprog" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:35 +msgid "" +"Establece el idioma global de la aplicación. Es posible establecer un idioma " +"por usuario en las preferencias." +msgstr "" +"Indstil globalt applikationssprog. Du kan indstille et sprog pr. bruger " +"under brugerindstillinger." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:39 +msgid "" +"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." +"com/join/project/fmlsBuugyv" +msgstr "" +"For at forbedre/tilføje oversættelser kan du engagere dig her: https://" +"poeditor.com/join/project/fmlsBuugyv" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:67 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:42 +msgid "Tema Visual" +msgstr "Visuelt tema" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:62 +msgid "" +"Establece el tema visual global de la aplicación. Es posible establecer un " +"tema visual por usuario en las preferencias." +msgstr "" +"Indstil det globale visuelle tema. Det kan ændres under brugerindstillinger." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:89 +msgid "Timeout de sesión (s)" +msgstr "Sessions-udløb (s)" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:107 +msgid "Forzar HTTPS" +msgstr "Gennemtving HTTPS" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:108 +msgid "Fuerza para que todas las conexiones sean a través de HTTPS." +msgstr "Tvinger alle forbindelser til at anvende HTTPS" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:122 +msgid "Habilitar depuración" +msgstr "Aktiver fejlsøgning" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:123 +msgid "" +"Muestra información relativa a la configuración de la aplicación y " +"rendimiento." +msgstr "Viser information om applikationen og ydelse." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:137 +msgid "Modo mantenimiento" +msgstr "Vedligeholdelsestilstand" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:138 +msgid "" +"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " +"necesario modificar el archivo de configuración." +msgstr "" +"I denne tilstand kan man ikke logge ind i applikationen. For at slå " +"vedligeholdesestilstand fra skal man rette i konfigurationsfilen eller slå " +"den fra på websteds-fanebladet" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:152 +msgid "Comprobar actualizaciones" +msgstr "Søg efter opdateringer" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:153 +msgid "" +"Comprobar actualizaciones de la aplicación (sólo para los usuarios " +"administradores)." +msgstr "Søger efter applikationsopdateringer (kun administratorer)" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:167 +msgid "Comprobar notificaciones" +msgstr "Søg efter notofikationer" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:168 +msgid "" +"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " +"para los usuarios administradores)." +msgstr "" +"Se om der er kommet sysPass sikkerheds- eller advarsels notifikationer (kun " +"for administratorer)" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 +msgid "Encriptar Sesión" +msgstr "Kryptér session" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:184 +msgid "Encriptar los datos de la sesión de PHP." +msgstr "Kryptér PHP sessionsdata" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:185 +msgid "" +"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " +"datos almacenados no serán legibles." +msgstr "" +"Denne funktion forøger PHP sessionens sikkerhed, da gemte data ikke vil " +"kunne læses." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +msgid "Importar CSV/XML" +msgstr "CSV / XML import" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:28 +msgid "Usuario por Defecto" +msgstr "Standardbruger" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:23 +msgid "Define el usuario por defecto para las cuentas importadas." +msgstr "Indstiller standardbruger til de konti der importeres" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:50 msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Indstiller standardgruppe til de konti der importeres" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 -msgid "Clave de Importación" -msgstr "Import-kodeord" +#: ../../../modules/web/themes/material-blue/views/config/import.inc:72 +msgid "Archivo" +msgstr "Fil" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 -msgid "Delimitador CSV" -msgstr "CSV separatortegn" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:75 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Slip filer her eller klik for at vælge" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 #, fuzzy msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " @@ -3618,18 +3476,18 @@ msgid "" msgstr "" "Mulliggør import af Konti, Kategorier og Klienter fra XML eller CSV filer." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "Understøttede filformater er: sysPass, KeePass og KeePassX" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "Træk og slip filerne ind i import-zonen eller klik over pilen." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " "KeePass o KeePassX y la categoría igual al nombre de los grupos." @@ -3637,734 +3495,285 @@ msgstr "" "For KeePass og KeePassX-filer vil klientnavnet blive KeePass(X) og " "kategorinavnene vil svare til gruppenavnene." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "CSV importfilen skal anvende følgende format:" #: ../../../modules/web/themes/material-blue/views/config/import.inc:115 msgid "" +"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" +"\"notas\"" +msgstr "" +"\"kontonavn\";\"klient\";\"kategori\";\"url\";\"bruger\";\"kodeord\";\"noter" +"\"" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:117 +msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " "automáticamente." msgstr "" "I alle tilfælde vil klient eller kategori blive oprettet hvis de ikke " "allerede findes." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:125 +msgid "XML" +msgstr "XML" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:131 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:146 +msgid "Clave de Importación" +msgstr "Import-kodeord" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:136 +msgid "Sólo es necesaria para archivos XML de sysPass encriptados." +msgstr "Kun påkrævet for krypterede sysPass-filer." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:157 +msgid "" +"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " +"la actual." +msgstr "" +"Kun påkrævet for krypterede sysPass-filer der er krypteret med et anden " +"Hoved-kodeord end det nuværende." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:174 +msgid "CSV" +msgstr "CSV" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:195 +msgid "Delimitador CSV" +msgstr "CSV separatortegn" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:185 +msgid "Sólo es necesario para archivos CSV." +msgstr "Kun påkrævet for CSV-filer." + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 msgid "Información de la Aplicación" msgstr "Applikationsinformation" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:23 msgid "Versión sysPass" msgstr "sysPass version" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:33 msgid "Base de Datos" msgstr "Database" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:47 msgid "PHP" msgstr "PHP" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:49 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:34 +msgid "Versión" +msgstr "Version" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:51 msgid "Extensiones" msgstr "Udvidelser" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 +msgid "Extensiones no disponibles" +msgstr "Utilgængelige udvidelser" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:59 msgid "Memoria Usada" msgstr "Anvendt hukommelse" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:142 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:189 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 -msgid "Servidor" -msgstr "Server" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Tasa de descarga" +msgstr "Download rate" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 -msgid "Login del usuario administrador de sysPass" -msgstr "sysPass administratorlogin" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:66 +msgid "OP Cache" +msgstr "OP Cache" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 -msgid "Configurar BBDD" -msgstr "Databasekonfiguration" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:88 +msgid "Copia de Configuración" +msgstr "Backup af konfiguration" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 -msgid "Nombre de la base de datos para sysPass" -msgstr "sysPass databasenavn" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:100 +msgid "Indica si el idioma se encuentra disponible" +msgstr "Indikerer om sproget er tilgængeligt eller ej." -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 -msgid "Modo Hosting" -msgstr "Hosting-tilstand" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:104 +msgid "" +"Si no está instalado, es necesario instalar las locales en el sistema " +"operativo. Más información en Wiki." +msgstr "" +"Hvis det ikke er installeret, skal du installere den korrekte operativsystem-" +"lokalisation. Du kan læse mere i Wiki'en." -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 -msgid "No crea ni verifica los permisos del usuario sobre la BBDD" -msgstr "Opretter eller kontrollerer ikke brugerens rettigheder til databasen" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:116 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:126 +msgid "Sesión Encriptada" +msgstr "Krypteret session" -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 -msgid "Instalar" -msgstr "Installér" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:121 +msgid "Indica si los datos de la sesión están encriptados en el servidor" +msgstr "Angiver hvorvidt sessionsdata er krypterede eller ej" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "Sí" +msgstr "Ja" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "No" +msgstr "Nej" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:136 +msgid "Plugins Cargados" +msgstr "Indlæste plugins" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:16 +msgid "Esta extensión es necesaria conectar con el servidor de LDAP" +msgstr "Denne udvidelse er påkrævet for at kunne forbinde til en LDAP server" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:46 msgid "Habilitar LDAP" msgstr "Aktivér LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:48 msgid "Habilita de autentificación mediante servidor LDAP." msgstr "Aktiverer brugergodkendelse op mod en LDAP server" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:50 msgid "Este método utilizará MySQL en caso de fallo." msgstr "Denne metode vil bruge MySQL som nødløsning." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:65 +msgid "Active Directory" +msgstr "Active Directory" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:67 +msgid "Habilita el modo de conexión con LDAP de Active Directory." +msgstr "Aktiverer Active Directory LDAP-forbindelsestilstand" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:84 +msgid "Habilita la conexión mediante TLS." +msgstr "Enables the connection over TLS" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:99 msgid "Nombre o dirección IP del servidor de LDAP." msgstr "Hostnavn eller IP-adresse på LDAP serveren" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:185 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:219 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:131 msgid "Ejemplos:" msgstr "Eksempler:" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:125 msgid "Usuario de conexión" msgstr "Bindings-bruger" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:130 msgid "Usuario para conectar con el servicio de LDAP." msgstr "Brugeren der anvendes til at forbinde til LDAP-tjenesten." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:155 msgid "Clave de conexión" msgstr "Bind-kodeord" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:160 +msgid "Clave del usuario de conexión a LDAP." +msgstr "LDAP forbindelses-brugers kodeord" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:176 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:200 msgid "Base de búsqueda" msgstr "Søgebase" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:181 msgid "Base en la que realizar la búsqueda de usuarios de LDAP." msgstr "Det basis i LDAP hvorfra søgninger vil udgå." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:211 msgid "" "Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." msgstr "LDAP-gruppen som brugeren skal tilhøre for at måtte logge ind." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:215 msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." msgstr "Denne gruppe skal findes i LDAP Søgebasen" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:244 msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Indstil standard-brugergruppen for nyoprettede LDAP-brugere" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 -msgid "Perfil por Defecto" -msgstr "Standardprofil" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:269 msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Indstil standardprofilen for nyoprettede LDAP-brugere" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 -msgid "Active Directory" -msgstr "Active Directory" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:321 +msgid "Importación" +msgstr "Importér" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 -msgid "Habilita el modo de conexión con LDAP de Active Directory." -msgstr "Aktiverer Active Directory LDAP-forbindelsestilstand" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:337 +msgid "Atributo Login" +msgstr "Loginattribut" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:57 -msgid "Comprobar" -msgstr "Kontrollér" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:332 +msgid "" +"Define el atributo a utilizar para el login del usuario en la importación." +msgstr "Fastsætter attributter for brugerens login ved import." -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 -msgid "¿Olvidó su clave?" -msgstr "Glemt kodeord?" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:350 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:360 +msgid "Atributo Nombre" +msgstr "Navneattribut" -#: ../../../modules/web/Controllers/UpgradeController.php:92 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 -msgid "Aplicación actualizada correctamente" -msgstr "Applikationen er korrekt opdateret" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:355 +msgid "" +"Define el atributo a utilizar para el nombre del usuario en la importación." +msgstr "Definerer attributten for brugerens navn under import." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:385 +msgid "Importar Grupos" +msgstr "Importér grupper" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:394 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:404 +msgid "Atributo Nombre Grupo" +msgstr "Gruppenavnsattribut" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:399 +msgid "" +"Define el atributo a utilizar para el nombre del grupo en la importación." +msgstr "" +"Definerer attributten for det brugergruppenavn der anvendes ved import." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:415 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:429 +msgid "Filtro" +msgstr "Filter" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:420 +msgid "Filtro para importar usuarios o grupos de LDAP." +msgstr "Filter til import af LDAP-brugere eller grupper." + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:34 msgid "Habilitar notificaciones de correo" msgstr "Aktivér E-mail notifikationer" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 -msgid "Puerto" -msgstr "Port" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 -msgid "Habilitar Autentificación" -msgstr "Aktivér godkendelse" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 -msgid "Deshabilitada" -msgstr "Deaktiveret" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 -#, fuzzy -msgid "Dirección de correo de envío" -msgstr "Afsenderens E-mail adresse" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 msgid "Habilitar peticiones por correo" msgstr "Aktivér forespørgsler pr. E-mail" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 -msgid "Más Acciones" -msgstr "Flere handlinger" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 -msgid "Solicitud de Cambio de Clave" -msgstr "Anmod om ændring af kodeord" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 -msgid "Email del Usuario" -msgstr "Brugers E-mail" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 -msgid "Volver a iniciar sesión" -msgstr "Tilbage til login" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 -msgid "Solicitar" -msgstr "Anmod" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 -msgid "Cambiar" -msgstr "Skift" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:37 -msgid "Cambiar Clave" -msgstr "Skift kodeord" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 -msgid "Ordenar resultados por visitas" -msgstr "Sortér søgeresultater efter antal visninger" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 -msgid "" -"Ordena los resultados de búsqueda por el número de visitas de las cuentas." -msgstr "Sortér konti efter antal kontovisninger" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 -msgid "Barra de navegación superior" -msgstr "Navigationsbjælke øverst" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 -msgid "Mostrar una barra de navegación superior en las búsquedas." -msgstr "Viser en navigationsbjælke over søgeresultaterne." - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 -msgid "Mostrar Acciones Ocultas" -msgstr "Vis skjulte handlinger" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 -msgid "" -"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." -msgstr "Viser altid de skjulte handlinger på konto-søgesiden." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 -msgid "Nombre del perfil" -msgstr "Profilnavn" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 -msgid "Ver detalles de cuenta" -msgstr "Vis kontodetaljer" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 -msgid "Ver" -msgstr "Vis" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 -msgid "Ver clave de cuenta" -msgstr "Vis kodeord for kontoen" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 -msgid "Ver historial de cuenta" -msgstr "Vis kontohistorik" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 -msgid "Editar cuenta" -msgstr "Tilret konto" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 -msgid "Editar" -msgstr "Tilret" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 -msgid "Editar clave de cuenta" -msgstr "Tilret kontokodeord" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 -msgid "Editar Clave" -msgstr "Tilret kodeord" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:32 -msgid "Añadir" -msgstr "Tilføj" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 -msgid "Ver archivos de cuenta" -msgstr "Se kontoens filer" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 -msgid "Backup" -msgstr "Backup" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 -msgid "Realizar importación de cuentas" -msgstr "Udfør kontoimport" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 -msgid "Gestión" -msgstr "Administration" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 -msgid "Gestión de usuarios" -msgstr "Brugeradministration" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 -msgid "Gestión de grupos" -msgstr "Gruppeadministration" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 -msgid "Gestión de perfiles" -msgstr "Profiladministration" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 -msgid "Perfiles" -msgstr "Profiler" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 -msgid "Gestión de categorías" -msgstr "Kategoriadministration" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 -#, fuzzy -msgid "Gestión de clientes" -msgstr "Klientadministration" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 -msgid "Gestión de campos personalizados" -msgstr "Administration af brugerdefinerede felter" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 -msgid "Gestión de autorizaciones API" -msgstr "API autorisationsadministration" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 -msgid "Autorizaciones API" -msgstr "API autorisationer" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 -msgid "Otros" -msgstr "Andre" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 -msgid "Ver log de eventos" -msgstr "Vi hændelseslog" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 -msgid "Log de Eventos" -msgstr "Hændelseslog" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 -msgid "Usado por" -msgstr "Anvendes af" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 -msgid "Solicitar Modificación de Cuenta" -msgstr "Anmod om ændring af konto" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 -msgid "Petición" -msgstr "Anmodning" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 -msgid "Descripción de la petición" -msgstr "Beskrivelse af anmodning" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 -msgid "Atrás" -msgstr "Tilbage" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 -msgid "Enviar" -msgstr "Send" - -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 -msgid "Filtro ON" -msgstr "Filter AKTIVT" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 -msgid "Buscar en Wiki" -msgstr "Søg i Wiki" - -#: ../../../../inc/themes/material-blue/views/accountsearch/rows.inc:71 -msgid "Abrir enlace a" -msgstr "Åbn link til" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 -msgid "Archivos adjuntos" -msgstr "Vedhæftninger" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 -msgid "Enlace a Wiki" -msgstr "Link til Wiki" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:53 -msgid "Limpiar" -msgstr "Ryd" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 -#: ../../../modules/api/Controllers/Help/TagHelp.php:77 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 -msgid "Texto a buscar" -msgstr "Søgetekst" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:23 -msgid "Parámetros especiales:" -msgstr "Specielle parametre" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 -msgid "Buscar cuentas a las que 'login' tenga acceso" -msgstr "Søg efter konti hvis 'bruger' har adgang" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 -msgid "Buscar cuentas a las que 'group_name' tenga acceso" -msgstr "Søg efter konti hvis 'gruppenavn' har adgang" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 -msgid "Buscar cuentas con archivos con el nombre 'file_name'" -msgstr "Søg efter konti der indeholder en fil med navnet 'filnavn'" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 -msgid "Búsqueda global" -msgstr "Global søgning" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 -msgid "Cuentas por página" -msgstr "Antal konti pr. side" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:76 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:149 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:152 -msgid "Salir" -msgstr "Log ud" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 -msgid "Opciones" -msgstr "Valgmuligheder" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 -msgid "Regenerar Autorización" -msgstr "Genopfrisk autorisation" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 -msgid "Token" -msgstr "Polet" - -#: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 -msgid "Actualizado" -msgstr "Opdateret" - -#: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 -msgid "Error al comprobar actualizaciones" -msgstr "Fejl under søgning efter opdateringer" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 -msgid "Actualización de BBDD" -msgstr "Databaseopdatering" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 -msgid "Código de Seguridad" -msgstr "Sikkerhedskode" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 -msgid "Iniciar Actualización" -msgstr "Iværksæt opdatering" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 -msgid "Nombre de usuario completo" -msgstr "Fulde brugernavn" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 -msgid "Login de inicio de sesión" -msgstr "Sessionslogin" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 -msgid "Dirección de correo" -msgstr "E-mail adresse" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 -msgid "Administrador de la aplicación" -msgstr "Applikationsadministrator" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 -msgid "Administrador de cuentas" -msgstr "Kontoadministrator" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 -msgid "Forzar cambio de clave" -msgstr "Gennemtving kodeordsændring" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 -msgid "Entradas" -msgstr "Registreringer" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 -msgid "Último Acceso" -msgstr "Sidst tilgået" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 -msgid "Fecha Clave Maestra" -msgstr "Hoved-kodeords dato" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 -msgid "Habilitar enlaces Wiki" -msgstr "Aktivér Wiki links" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 -msgid "" -"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " -"la búsqueda." -msgstr "Giver mulighed for at linke til søgeresultater i en ekstern Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 -msgid "URL de búsqueda Wiki" -msgstr "Wiki søge-URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 -#, fuzzy -msgid "URL que utiliza la wiki para realizar una búsqueda de una página." -msgstr "Den URL som wikien anvender til søgning" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 -msgid "Como parámetro se utiliza el nombre del cliente." -msgstr "Klientnavnet anvendes som parameter" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 -msgid "Ejemplo:" -msgstr "Eksempel:" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 -msgid "URL de página en Wiki" -msgstr "Wiki URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 -#, fuzzy -msgid "URL que utiliza la wiki para acceder a los detalles de una página." -msgstr "Den URL som wikien anvender til adgang til sidedetaljer" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 -msgid "" -"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " -"de la Wiki." -msgstr "Kontonavnet anvendes som en en wiki-søgeparameter" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 -msgid "Prefijo para nombre de cuenta" -msgstr "Præfiks på kontonavn" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 -msgid "" -"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." -msgstr "Præfiks der angiver hvilke konti der har et Wiki-link" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 -msgid "Histórico" -msgstr "Historik" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:54 -msgid "Realizar" -msgstr "Udfør" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 -msgid "Forzar HTTPS" -msgstr "Gennemtving HTTPS" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 -msgid "Fuerza para que todas las conexiones sean a través de HTTPS." -msgstr "Tvinger alle forbindelser til at anvende HTTPS" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 -msgid "Número de resultados por página" -msgstr "Antal resultater pr. side" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 -msgid "Proxy" -msgstr "Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 -msgid "Usar Proxy" -msgstr "Anvend Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 -msgid "Servidor proxy" -msgstr "Proxy-server" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 -msgid "Puerto del servidor proxy" -msgstr "Proxy-server port" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 -msgid "Usuario del servidor proxy" -msgstr "Proxy-server brugernavn" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 -msgid "Clave del servidor proxy" -msgstr "Proxy-server kodeord" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 -msgid "Nombre del campo" -msgstr "Feltnavn" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 -msgid "Ayuda del campo" -msgstr "Hjælp til felter" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 -msgid "Intentos" -msgstr "Antal forsøg" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:69 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:131 -msgid "Preferencias de usuario" -msgstr "Brugerpræferencer" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 -msgid "Usuario administrador de sysPass" -msgstr "sysPass administratorbruger" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 -msgid "Usuario acceso BBDD" -msgstr "Databasebruger" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 -#, fuzzy -msgid "Usuario con permisos de administrador de MySQL" -msgstr "En bruger med MySQL administratorrettigheder" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 -msgid "Clave acceso BBDD" -msgstr "Database adgangskode" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 -msgid "Nombre BBDD para sysPass" -msgstr "sysPass databasenavn" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 -msgid "Servidor BBDD para sysPass" -msgstr "sysPass databaseserver" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 -msgid "Nombre del servidor para instalar la base de datos de sysPass" -msgstr "Navnet på serveren hvor sysPass-databasen skal installeres" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 -msgid "Clave del usuario de conexión a LDAP." -msgstr "LDAP forbindelses-brugers kodeord" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:50 msgid "" "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " "cuentas sin permisos." @@ -4372,558 +3781,852 @@ msgstr "" "Tillad brugere at anmode om ændringer til eksisterende konti eller konti " "hvortil de ikke har adgang." -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 -msgid "Crear nueva cuenta" -msgstr "Tilføj ny konto" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:97 +msgid "Habilitar Autentificación" +msgstr "Aktivér godkendelse" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 -msgid "Crear" -msgstr "Tilføj" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:135 +msgid "Seguridad" +msgstr "Sikkerhed" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 -msgid "Eliminar cuenta" -msgstr "Slet konto" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:138 +msgid "Deshabilitada" +msgstr "Deaktiveret" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:36 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:156 +#, fuzzy +msgid "Dirección de correo de envío" +msgstr "Afsenderens E-mail adresse" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:165 +msgid "Destinatarios" +msgstr "Modtagere" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:16 +msgid "Esta extensión es necesaria conectar con DokuWiki" +msgstr "Denne udvidelse er påkrævet for at kunne forbinde til DokuWiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:47 +msgid "Habilitar enlaces Wiki" +msgstr "Aktivér Wiki links" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:48 +msgid "" +"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " +"la búsqueda." +msgstr "Giver mulighed for at linke til søgeresultater i en ekstern Wiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:56 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:83 +msgid "URL de búsqueda Wiki" +msgstr "Wiki søge-URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:61 +#, fuzzy +msgid "URL que utiliza la wiki para realizar una búsqueda de una página." +msgstr "Den URL som wikien anvender til søgning" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:65 +msgid "Como parámetro se utiliza el nombre del cliente." +msgstr "Klientnavnet anvendes som parameter" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:69 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:102 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:187 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:214 +msgid "Ejemplo:" +msgstr "Eksempel:" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:116 +msgid "URL de página en Wiki" +msgstr "Wiki URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:94 +#, fuzzy +msgid "URL que utiliza la wiki para acceder a los detalles de una página." +msgstr "Den URL som wikien anvender til adgang til sidedetaljer" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:98 +msgid "" +"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " +"de la Wiki." +msgstr "Kontonavnet anvendes som en en wiki-søgeparameter" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:136 +msgid "Prefijo para nombre de cuenta" +msgstr "Præfiks på kontonavn" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:127 +msgid "" +"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." +msgstr "Præfiks der angiver hvilke konti der har et Wiki-link" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:146 +msgid "DokuWiki API" +msgstr "DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:164 +msgid "Habilitar API de DokuWiki" +msgstr "Aktivér DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:166 +msgid "" +"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." +msgstr "Aktiverer DokuWiki XML-RPC API'et til Wiki links." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:168 +msgid "" +"Para que esta característica funcione, es necesario habilitar los enlaces " +"Wiki para el filtrado de cuentas." +msgstr "" +"For at få dette til at fungere skal du aktivere Wiki links til " +"kontofiltrering" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:199 +msgid "URL API" +msgstr "API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:183 +msgid "URL de la API de DokuWiki." +msgstr "DokuWiki API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:205 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:227 +msgid "URL Base" +msgstr "Basis URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:210 +msgid "URL base de DokuWiki." +msgstr "DokuWiki basis URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:238 +#, fuzzy +msgid "Usuario para conectar a la API de DokuWiki." +msgstr "Bruger der anvendes til at forbinde til DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:282 +msgid "Namespace" +msgstr "Namespace" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:271 +msgid "Namespace utilizado para buscar las páginas." +msgstr "Namespace der anvendes til at søge i siderne." + +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:170 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:172 +msgid "Instalar" +msgstr "Installér" + +#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 +msgid "Filtro ON" +msgstr "Filter AKTIVT" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:11 +#, php-format +msgid "Instalación %s" +msgstr "Installation %s" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:21 +msgid "Admin de sysPass" +msgstr "sysPass Administrator" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:29 +msgid "Usuario administrador de sysPass" +msgstr "sysPass administratorbruger" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:37 +msgid "Login del usuario administrador de sysPass" +msgstr "sysPass administratorlogin" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:69 +msgid "Configurar BBDD" +msgstr "Databasekonfiguration" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:79 +msgid "Usuario acceso BBDD" +msgstr "Databasebruger" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:87 +#, fuzzy +msgid "Usuario con permisos de administrador de MySQL" +msgstr "En bruger med MySQL administratorrettigheder" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:95 +msgid "Clave acceso BBDD" +msgstr "Database adgangskode" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:104 +msgid "Nombre BBDD para sysPass" +msgstr "sysPass databasenavn" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:112 +msgid "Nombre de la base de datos para sysPass" +msgstr "sysPass databasenavn" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:121 +msgid "Servidor BBDD para sysPass" +msgstr "sysPass databaseserver" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:129 +msgid "Nombre del servidor para instalar la base de datos de sysPass" +msgstr "Navnet på serveren hvor sysPass-databasen skal installeres" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:149 +msgid "Modo Hosting" +msgstr "Hosting-tilstand" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:156 +msgid "No crea ni verifica los permisos del usuario sobre la BBDD" +msgstr "Opretter eller kontrollerer ikke brugerens rettigheder til databasen" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 +msgid "Otros" +msgstr "Andre" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 +msgid "Creador" +msgstr "Oprettet af" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 msgid "Eliminar" msgstr "Slet" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 +msgid "Eliminar Historial" +msgstr "Delete History" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 +msgid "Opciones" +msgstr "Valgmuligheder" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 +msgid "Regenerar Autorización" +msgstr "Genopfrisk autorisation" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 +msgid "Token" +msgstr "Polet" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:54 +msgid "Indica si el cliente es visible para todos los usuarios." +msgstr "Angiver hvorvidt klienten kan ses af alle brugere" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:57 +msgid "" +"Por defecto los clientes asignados a cuentas sólo son visibles para los " +"usuarios con acceso a las cuentas." +msgstr "" +"Som standard vil klienter der er tilhører en konto kun kunne ses af de " +"brugere der har adgang til den konto." + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 +msgid "Nombre del campo" +msgstr "Feltnavn" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 +msgid "Texto Ayuda" +msgstr "Hjælpetekst" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 +msgid "Ayuda del campo" +msgstr "Hjælp til felter" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 +msgid "Obligatorio" +msgstr "Påkrævet" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 +msgid "Puntuación" +msgstr "Score" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 +msgid "Expresión Regular" +msgstr "Regular Expression" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 +msgid "Incluir Minúsculas" +msgstr "Include Lowercase" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 +msgid "Las cuentas sólo serán visibles por el usuario." +msgstr "Accounts will be only visible by the user." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 +msgid "Los administradores no podrán acceder a las cuentas." +msgstr "Administrators won't be able to display the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 +msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." +msgstr "Accounts will be only visible by the user and his/her main group." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 +msgid "Dirección IP" +msgstr "IP Address" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 +msgid "Timeout" +msgstr "Timeout" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 +msgid "" +"Prioridad de asignación en caso de coincidir con otros valores asignados por " +"usuario, grupo o perfil." +msgstr "" +"Assignment priority if values match with others assigned by user, group or " +"profile." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 +msgid "Prioridad de asignación" +msgstr "Tildelingsprioritet" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 +msgid "" +"Indica si los valores serán forzados al crear o modificar los elementos." +msgstr "Enforces the values to be set either on creating or updating an item." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 +msgid "Los valores serán añadidos a los existentes." +msgstr "Values will be merged with the existing ones." + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:83 +msgid "Hash" +msgstr "Kontrolsum" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:91 +msgid "URL" +msgstr "URL" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:101 +msgid "Uso" +msgstr "Anvendelse" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 +msgid "Nombre de usuario completo" +msgstr "Fulde brugernavn" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:58 +msgid "Login de inicio de sesión" +msgstr "Sessionslogin" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:69 +msgid "Login SSO" +msgstr "SSO Login " + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:77 +msgid "Login de inicio de sesión con SSO" +msgstr "Sessions login via SSO" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:84 +msgid "Email" +msgstr "E-mail" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:92 +msgid "Dirección de correo" +msgstr "E-mail adresse" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:200 +msgid "Admin Aplicación" +msgstr "Applikationsadministrator" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:202 +msgid "Administrador de la aplicación" +msgstr "Applikationsadministrator" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:218 +msgid "Admin Cuentas" +msgstr "Kontoadministrator" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:220 +msgid "Administrador de cuentas" +msgstr "Kontoadministrator" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:240 +msgid "Forzar cambio de clave" +msgstr "Gennemtving kodeordsændring" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:257 +msgid "Deshabilitado" +msgstr "Deaktiveret" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 +msgid "Entradas" +msgstr "Registreringer" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 +msgid "Último Acceso" +msgstr "Sidst tilgået" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 +msgid "Fecha Clave Maestra" +msgstr "Hoved-kodeords dato" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:311 +msgid "Usado en" +msgstr "Anvendt i" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 +msgid "Usado por" +msgstr "Anvendes af" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:108 +msgid "(*) Incluido en grupo" +msgstr "(*) Inkluderet i gruppe" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 +msgid "Gestión" +msgstr "Administration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 +msgid "Crear" +msgstr "Tilføj" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 +msgid "Crear nueva cuenta" +msgstr "Tilføj ny konto" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 +msgid "Ver detalles de cuenta" +msgstr "Vis kontodetaljer" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 +msgid "Ver clave de cuenta" +msgstr "Vis kodeord for kontoen" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 +#: ../../../config/actions.xml:259 +msgid "Ver Historial" +msgstr "Se historik" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 +msgid "Ver historial de cuenta" +msgstr "Vis kontohistorik" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 +msgid "Editar cuenta" +msgstr "Tilret konto" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 +msgid "Editar Clave" +msgstr "Tilret kodeord" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 +msgid "Editar clave de cuenta" +msgstr "Tilret kontokodeord" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 +msgid "Eliminar cuenta" +msgstr "Slet konto" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 +msgid "Ver archivos de cuenta" +msgstr "Se kontoens filer" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 +msgid "Publicar Enlace" +msgstr "Del link" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 +msgid "Publicar enlace a cuenta" +msgstr "Del link til konto" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 +msgid "Crear cuenta privada" +msgstr "Opret privat konto" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 +msgid "Crear cuenta privada para grupo" +msgstr "Opret privat konto til gruppen" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 +msgid "Asignar permisos" +msgstr "Tildel rettigheder" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 +msgid "Gestión de usuarios" +msgstr "Brugeradministration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 +msgid "Gestión de grupos" +msgstr "Gruppeadministration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 +msgid "Gestión de perfiles" +msgstr "Profiladministration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 +msgid "Gestión de categorías" +msgstr "Kategoriadministration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 +msgid "Gestión de etiquetas" +msgstr "Mærkeadministration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 +#, fuzzy +msgid "Gestión de clientes" +msgstr "Klientadministration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 +msgid "Gestión de campos personalizados" +msgstr "Administration af brugerdefinerede felter" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 +msgid "Gestión de autorizaciones API" +msgstr "API autorisationsadministration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 +msgid "Gestión de enlaces" +msgstr "Administration af links" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 +msgid "Gestión de cuentas" +msgstr "Kontoadministration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 +msgid "Valores por Defecto" +msgstr "Default Values" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 +msgid "Gestión de Valores por Defecto" +msgstr "Default Values Management" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 +#: ../../../config/actions.xml:691 +msgid "Configuración General" +msgstr "Generel Konfiguration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 msgid "Opciones de encriptación" msgstr "Krypteringsmuligheder" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 +msgid "Backup" +msgstr "Backup" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 msgid "Realizar copia de seguridad y exportar" msgstr "Udfør en backup og eksport" -#: ../../../../ajax/ajax_filesMgmt.php:97 -msgid "Extensión" -msgstr "Udvidelse" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 +msgid "Importar" +msgstr "Import" -#: ../../../modules/web/Controllers/AccountFileController.php:209 -msgid "Tamaño de archivo superado" -msgstr "Max. filstørrelse overskredet" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 +msgid "Realizar importación de cuentas" +msgstr "Udfør kontoimport" -#: ../../../../ajax/ajax_passReset.php:77 -msgid "Solicitud no enviada" -msgstr "Forespørgsel ikke sendt" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 +msgid "Log de Eventos" +msgstr "Hændelseslog" -#: ../../../../ajax/ajax_passReset.php:78 -msgid "Compruebe datos de usuario o consulte con el administrador" -msgstr "Kontrollér venligst brugerens data eller kontakt administratoren" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 +msgid "Ver log de eventos" +msgstr "Vi hændelseslog" -#: ../../../../lib/SP/Services/Account/AccountService.php:283 -#: ../../../../lib/SP/Services/Account/AccountService.php:672 -#: ../../../../lib/SP/Services/Account/AccountService.php:727 -msgid "La cuenta no existe" -msgstr "Kontoen findes ikke" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 +msgid "Nombre del perfil" +msgstr "Profilnavn" -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:194 -msgid "Errores" -msgstr "Fejl" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:46 +msgid "Clave Anterior" +msgstr "Tidligere kodeord" -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:71 -msgid "Error al añadir favorito" -msgstr "Fejl under tilføjelse af foretrukken" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:73 +msgid "Acceder" +msgstr "Log ind" -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:91 -msgid "Error al eliminar favorito" -msgstr "Fejl under sletning af foretrukken" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:82 +msgid "¿Olvidó su clave?" +msgstr "Glemt kodeord?" -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:94 -msgid "Error al eliminar las etiquetas de la cuenta" -msgstr "Fejl under sletning af kontoens mærker" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 +msgid "Aplicación actualizada correctamente" +msgstr "Applikationen er korrekt opdateret" -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:107 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:78 -msgid "Método inválido" -msgstr "Ugyldig metode" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 +#, php-format +msgid "Actualización %s" +msgstr "Opdatér %s" -#: ../../../../lib/SP/Services/Api/ApiRequest.php:79 -#: ../../../../lib/SP/Services/Api/ApiRequest.php:113 -#: ../../../../lib/SP/Services/Api/ApiService.php:229 -msgid "Datos inválidos" -msgstr "Ugyldige data" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:20 +msgid "Actualización de BBDD" +msgstr "Databaseopdatering" -#: ../../../../inc/SP/Api/ApiRequest.class.php:211 -msgid "Formato incorrecto" -msgstr "Forkert format" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:22 +msgid "Actualización de Aplicación" +msgstr "Applikation opdateret" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 -msgid "Id de la cuenta" -msgstr "KontoID" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 +msgid "Código de Seguridad" +msgstr "Sikkerhedskode" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 -msgid "Devolver detalles en la respuesta" -msgstr "Send detaljer i svaret" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 +msgid "" +"Este código se encuentra en el archivo de configuración de sysPass con la " +"etiqueta \"upgradeKey\"" +msgstr "Denne kode findes i sysPass config-filen, markeret som \"upgradekey\"" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 -#: ../../../modules/api/Controllers/Help/TagHelp.php:78 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 -msgid "Número de resultados a mostrar" -msgstr "Antal resultater der vises" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:47 +msgid "" +"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " +"o indique los IDs por defecto para los elementos huérfanos." +msgstr "" +"Visse forældreløse emner er fundet. Tilret dem venligst eller indtast et " +"standard-ID for dem." -#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 -msgid "Id de categoría a filtrar" -msgstr "Kategori-ID der skal filtreres efter" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:49 +msgid "Si no se indican los IDs, se crearán nuevos elementos." +msgstr "Hvis elementernes ID ikke er sat, vil de blive genereret." -#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 -msgid "Id de cliente a filtrar" -msgstr "Klient-ID der skal filtreres efter" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:74 +msgid "Introducir un ID de usuario válido para cuentas" +msgstr "Indtast et gyldigt bruger-ID for kontiene" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 -msgid "Id de categoría" -msgstr "Kategori-ID" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 +msgid "Introducir un ID de categoría válido para cuentas" +msgstr "Indtast et gyldigt kategori-ID for kontiene" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 -msgid "Id de cliente" -msgstr "Klient-ID" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:96 +msgid "Introducir un ID de cliente válido para cuentas" +msgstr "Indtast et gyldigt klient-ID for kontiene" -#: ../../../../lib/SP/Api/SyspassApi.php:511 -msgid "Nombre de categoría a buscar" -msgstr "Kategorinavne der skal søges efter" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 +msgid "Introducir un ID de grupo válido para usuarios" +msgstr "Indtast et gyldigt grupp-ID for kontiene" -#: ../../../../lib/SP/Api/SyspassApi.php:531 -msgid "Nombre de cliente a buscar" -msgstr "Klientnavn der skal søges efter" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 +msgid "Introducir un ID de perfil válido para usuarios" +msgstr "Indtast et gyldigt profil-ID for kontiene" -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:212 -msgid "Método ya inicializado" -msgstr "Metoden er allerede initialiseret" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:128 +msgid "" +"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " +"necesario reencriptar los datos almacenados" +msgstr "" +"Denne opdatering anvender et nyt krypteringsskema, så det vil blive " +"nødvendigt at genkryptere alle krypterede data." -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:208 -msgid "Método no disponible" -msgstr "Metoden er ikke tilgængelig" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:150 +msgid "Introducir login de usuario válido" +msgstr "Indtast et gyldigt brugenavn" -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 -msgid "Objetos encontrados: %d" -msgstr "Objekter fundet: %d" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:162 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 +msgid "He realizado una copia de seguridad completa de sysPass" +msgstr "Jeg har foretaget en fuld sysPass backup" -#: ../../../../lib/SP/Controller/ChecksController.php:127 -msgid "Los parámetros de DokuWiki no están configurados" -msgstr "DokuWiki-parametrene er ikke sat" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 +msgid "Por favor espere mientras el proceso se ejecuta" +msgstr "Vent venligst mens processen kører" -#: ../../../../lib/SP/Controller/ChecksController.php:135 -#: ../../../../lib/SP/Util/Wiki/DokuWikiApiBase.php:214 -msgid "Error" -msgstr "Fejl" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:184 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 +msgid "Actualizar" +msgstr "Opdater" -#: ../../../../lib/SP/Controller/ChecksController.php:137 -msgid "Conexión correcta" -msgstr "Forbindelse oprettet" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:186 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 +msgid "Iniciar Actualización" +msgstr "Iværksæt opdatering" -#: ../../../../lib/SP/Controller/ChecksController.php:141 -msgid "Error de conexión a DokuWiki" -msgstr "Fejl under forbindelse til DokuWiki" +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:95 +msgid "Notificación global" +msgstr "Global notifikation" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:89 -msgid "Faltan parámetros de syslog remoto" -msgstr "Der mangler parametre til ekstern syslog " +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:103 +msgid "Sólo para administradores de la aplicación" +msgstr "Kun for applikationsadministratorer" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:102 -msgid "Syslog remoto deshabilitado" -msgstr "Ekstern syslog er deaktiveret" +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:107 +msgid "Solo Admins" +msgstr "Kun administratorer" -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:72 -msgid "Error al guardar la configuración" -msgstr "Fejl under lagring af konfigurationen" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:29 +msgid "Nombre del plugin" +msgstr "Plugin-navn" -#: ../../../modules/web/Controllers/ConfigWikiController.php:87 -msgid "Faltan parámetros de DokuWiki" -msgstr "Manglende DokuWiki-parametre" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:41 +msgid "Versión del plugin" +msgstr "Plugin-version" -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:368 -msgid "DokuWiki habiltada" -msgstr "DokuWiki aktiveret" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:46 +msgid "Versión Compatible" +msgstr "Kompatibel version" -#: ../../../modules/web/Controllers/ConfigWikiController.php:104 -msgid "DokuWiki deshabilitada" -msgstr "DokuWiki deaktiveret" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:53 +msgid "Versión de sysPass compatible" +msgstr "sysPass-kompatibel version" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 -msgid "Buscar Evento" -msgstr "Søg efter hændelser" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:39 +msgid "Autor" +msgstr "Forfatter" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:65 +msgid "Autor del plugin" +msgstr "Plugin-forfatter" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 +msgid "La aplicación necesita actualizarse" +msgstr "Applikationen skal opdateres" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 +msgid "Para iniciar la actualización introduzca el código de seguridad" +msgstr "Indtast venligst sikkerhedskoden for at begynde opdateringen" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:13 +msgid "Solicitud de Cambio de Clave" +msgstr "Anmod om ændring af kodeord" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 +msgid "Email del Usuario" +msgstr "Brugers E-mail" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:39 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:49 +msgid "Volver a iniciar sesión" +msgstr "Tilbage til login" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:46 +msgid "Solicitar" +msgstr "Anmod" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:56 +msgid "Cambiar" +msgstr "Skift" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:107 +msgid "Ordenar resultados por visitas" +msgstr "Sortér søgeresultater efter antal visninger" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:109 +msgid "" +"Ordena los resultados de búsqueda por el número de visitas de las cuentas." +msgstr "Sortér konti efter antal kontovisninger" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:124 +msgid "Barra de navegación superior" +msgstr "Navigationsbjælke øverst" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:126 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "Viser en navigationsbjælke over søgeresultaterne." + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:141 +msgid "Mostrar Acciones Ocultas" +msgstr "Vis skjulte handlinger" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:143 +msgid "" +"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." +msgstr "Viser altid de skjulte handlinger på konto-søgesiden." + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:175 +msgid "Notificaciones In-App" +msgstr "In-App Notifications" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:177 +msgid "Habilita la consulta de notificaciones activas In-App." +msgstr "Enables the active In-App notifications polling" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 -#: ../../../config/actions.xml:325 -msgid "Buscar Categoría" -msgstr "Søg efter kategori" +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:16 +#: ../../../config/actions.xml:277 +msgid "Ver Wiki" +msgstr "Vis Wiki" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +#, php-format +msgid "Resultados de búsqueda de '%s'" +msgstr "Søgeresultater fra '%s'" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:37 +msgid "Página" +msgstr "Side" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 -#: ../../../config/actions.xml:355 -msgid "Buscar Cliente" -msgstr "Søg efter klient" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 -msgid "Buscar Campo" -msgstr "Søg efter felt" +#: ../../../config/actions.xml:7 +msgid "Buscar Cuentas" +msgstr "Søg efter konti" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 -#: ../../../config/actions.xml:475 -msgid "Buscar Archivo" -msgstr "Søg efter fil" +#: ../../../config/actions.xml:25 +msgid "Peticiones" +msgstr "Forespørgsler" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 -#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 -msgid "Buscar Cuenta" -msgstr "Søg efter konto" +#: ../../../config/actions.xml:31 +msgid "Favoritos" +msgstr "Foretrukne" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 -#: ../../../config/actions.xml:601 -msgid "Buscar Usuario" -msgstr "Søg efter bruger" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 -msgid "Importar usuarios de LDAP" -msgstr "Importér brugere fra LDAP" +#: ../../../config/actions.xml:43 +msgid "Elementos y Personalización" +msgstr "Elementer og tilretninger" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 -#: ../../../config/actions.xml:631 -msgid "Buscar Grupo" -msgstr "Søg efter gruppe" +#: ../../../config/actions.xml:49 +msgid "Gestión Categorías" +msgstr "Kategoriadministration" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 -#: ../../../config/actions.xml:661 -msgid "Buscar Perfil" -msgstr "Søg efter profil" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 -msgid "Buscar Token" -msgstr "Søg efter polet" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 -msgid "Fecha Creación" -msgstr "Oprettelsesdato" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 -msgid "Fecha Caducidad" -msgstr "Udløbsdato " - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 -msgid "Notificar" -msgstr "Orientér" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 -msgid "Enlaces" -msgstr "Links" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 -msgid "Buscar Enlace" -msgstr "Søg efter link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 -msgid "Ver Enlace" -msgstr "Vis link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 -msgid "Renovar Enlace" -msgstr "Forny link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 -msgid "Eliminar Enlace" -msgstr "Slet link" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:123 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 -msgid "Etiquetas" -msgstr "Mærker" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 -#: ../../../config/actions.xml:529 -msgid "Buscar Etiqueta" -msgstr "Søg efter mærker" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 -#: ../../../config/actions.xml:505 -msgid "Nueva Etiqueta" -msgstr "Nyt mærke" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 -#: ../../../config/actions.xml:517 -msgid "Editar Etiqueta" -msgstr "Tilret mærke" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 -#: ../../../config/actions.xml:523 -msgid "Eliminar Etiqueta" -msgstr "Slet mærke" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 -msgid "Plugin" -msgstr "Plugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 -msgid "Estado" -msgstr "Status" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:334 -#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 -msgid "Plugins" -msgstr "Plugins" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 -#: ../../../config/actions.xml:547 -msgid "Buscar Plugin" -msgstr "Søg efter plugin" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:120 -#: ../../../config/actions.xml:541 -msgid "Ver Plugin" -msgstr "Vis plugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 -msgid "Habilitar" -msgstr "Aktivér" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 -msgid "Deshabilitar" -msgstr "Deaktivér" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 -msgid "Restablecer Datos" -msgstr "Nulstil data" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 -msgid "Componente" -msgstr "Komponent" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 -msgid "Leída" -msgstr "Læs" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:65 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:105 -#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 -#: ../../../config/actions.xml:679 -msgid "Notificaciones" -msgstr "Notifikationer" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 -#: ../../../config/actions.xml:841 -msgid "Buscar Notificación" -msgstr "Søg efter notifikationer" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:103 -#: ../../../config/actions.xml:811 -msgid "Ver Notificación" -msgstr "Vis notifikation" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 -#: ../../../config/actions.xml:835 -msgid "Marcar Notificación" -msgstr "Markér" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 -#: ../../../config/actions.xml:829 -msgid "Eliminar Notificación" -msgstr "Slet notifikation" - -#: ../../../modules/web/Controllers/PublicLinkController.php:275 -#: ../../../modules/web/Controllers/PublicLinkController.php:310 -msgid "Enlace creado" -msgstr "Link oprettet" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:89 -#: ../../../modules/web/Controllers/PublicLinkController.php:175 -msgid "Enlace actualizado" -msgstr "Link opdateret" - -#: ../../../modules/web/Controllers/PublicLinkController.php:245 -#: ../../../modules/web/Controllers/PublicLinkController.php:249 -msgid "Enlace eliminado" -msgstr "Link slettet" - -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:94 -#: ../../../modules/web/Controllers/TagController.php:234 -msgid "Etiqueta creada" -msgstr "Mærke tilføjet" - -#: ../../../modules/api/Controllers/TagController.php:118 -#: ../../../modules/api/Controllers/TagController.php:123 -#: ../../../modules/web/Controllers/TagController.php:265 -msgid "Etiqueta actualizada" -msgstr "Mærke opdateret" - -#: ../../../modules/api/Controllers/TagController.php:147 -#: ../../../modules/api/Controllers/TagController.php:152 -#: ../../../modules/web/Controllers/TagController.php:208 -msgid "Etiqueta eliminada" -msgstr "Mærke slettet" - -#: ../../../modules/web/Controllers/PluginController.php:181 -#: ../../../modules/web/Controllers/PluginController.php:184 -msgid "Plugin habilitado" -msgstr "Plugin aktiveret" - -#: ../../../modules/web/Controllers/PluginController.php:206 -#: ../../../modules/web/Controllers/PluginController.php:209 -msgid "Plugin deshabilitado" -msgstr "Plugin deaktiveret" - -#: ../../../modules/web/Controllers/PluginController.php:231 -#: ../../../modules/web/Controllers/PluginController.php:234 -msgid "Plugin restablecido" -msgstr "Plugin nulstillet" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:55 -msgid "Favorito añadido" -msgstr "Foretrukken tilføjet" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:73 -msgid "Favorito eliminado" -msgstr "Foretrukken slettet" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:269 -msgid "Importación de usuarios de LDAP realizada" -msgstr "Import af LDAP-brugere udført" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1096 -msgid "Error al importar usuarios de LDAP" -msgstr "Fejl under import af LDAP-brugere" - -#: ../../../modules/web/Controllers/NotificationController.php:297 -#: ../../../modules/web/Controllers/NotificationController.php:301 -msgid "Notificación leída" -msgstr "Notifikation læst" - -#: ../../../modules/web/Controllers/NotificationController.php:266 -#: ../../../modules/web/Controllers/NotificationController.php:270 -msgid "Notificación eliminada" -msgstr "Notifikation slettet" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1192 -msgid "Solicitud enviada por correo" -msgstr "Forespørgsel er sendt pr. E-mail" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 -msgid "Solicitud no enviada por correo" -msgstr "Forespørgsel er ikke sendt pr. E-mail" - -#: ../../../modules/web/Controllers/AccountController.php:943 -msgid "Solicitud realizada" -msgstr "Forespørgsel udført" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:427 +#: ../../../config/actions.xml:55 #, fuzzy -msgid "Ver Enlace Público" -msgstr "Vis offentligt link" +msgid "Gestión Clientes" +msgstr "Klientadministration" -#: ../../../../inc/SP/Controller/ItemShowController.class.php:233 -msgid "Detalles de Plugin" -msgstr "Plugindetaljer" +#. (itstool) path: action/text +#: ../../../config/actions.xml:61 +msgid "Gestión Autorizaciones API" +msgstr "Administration af API autorisationer" -#: ../../../../inc/SP/Controller/LoginController.class.php:375 -msgid "Error al obtener la clave maestra del usuario" -msgstr "Fejl under indlæsning af brugerens Hoved-kodeord" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:327 -msgid "Es necesaria su clave anterior" -msgstr "Dit tidligere kodeord er påkrævet" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:452 -#: ../../../../lib/SP/Services/Auth/LoginService.php:515 -msgid "Servidor LDAP" -msgstr "LDAP-server" - -#: ../../../../inc/SP/Core/Acl.class.php:198 -msgid "Buscar Categorías" -msgstr "Søg efter kategorier" - -#: ../../../../inc/SP/Core/Acl.class.php:199 -msgid "Añadir Categoría" -msgstr "Tilføj kategori" - -#: ../../../../inc/SP/Core/Acl.class.php:203 -msgid "Buscar Clientes" -msgstr "Søg efter klient" - -#: ../../../../inc/SP/Core/Acl.class.php:204 -msgid "Añadir Cliente" -msgstr "Tilføj klient" +#. (itstool) path: action/text +#: ../../../config/actions.xml:67 +msgid "Gestión Campos Personalizados" +msgstr "Administration af brugerdefinerede felter" #. (itstool) path: action/text #: ../../../config/actions.xml:79 @@ -4940,2589 +4643,36 @@ msgstr "Kontoadministration" msgid "Gestión de Etiquetas" msgstr "Mærkeadministration" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 -msgid "No es posible crear el directorio de backups (\"%s\")" -msgstr "Backupmappen (\"%s\") kan ikke oprettes" - -#: ../../../../lib/SP/Core/Events/EventDispatcherBase.php:85 -msgid "Observador no inicializado" -msgstr "Observatør ikke initialiseret" - -#: ../../../../lib/SP/Core/Events/Event.php:56 -msgid "Es necesario un objeto" -msgstr "Et objekt er påkrævet" - -#: ../../../../lib/SP/Services/Install/Installer.php:141 -msgid "Indicar la clave de la BBDD" -msgstr "Indtast venligst databasekodeordet" - -#: ../../../../lib/SP/Services/Install/Installer.php:143 -msgid "Clave del usuario administrador de la Base de Datos" -msgstr "Databaseadministratorens kodeord" - -#: ../../../../lib/SP/Services/Install/MySQL.php:181 -msgid "Error al crear el usuario de conexión a MySQL '%s'" -msgstr "Fejl under oprettelsen af MySQL forbindelsesbrugeren '%s'" - -#: ../../../../lib/SP/Services/Install/MySQL.php:251 -msgid "La BBDD no existe" -msgstr "Databasen findes ikke" - -#: ../../../../lib/SP/Services/Install/MySQL.php:253 -msgid "Es necesario crearla y asignar los permisos necesarios" -msgstr "Du skal oprette den og tilføje de nødvendige rettigheder" - -#: ../../../../lib/SP/Services/Install/MySQL.php:237 -msgid "Error al establecer permisos de la BBDD ('%s')" -msgstr "Fejl under indstilling af databaserettigheder ('%s')" - -#: ../../../../lib/SP/Plugin/PluginManager.php:113 -#: ../../../../lib/SP/Plugin/PluginManager.php:256 -msgid "No es posible cargar el plugin \"%s\"" -msgstr "Kan ikke aktivere \"%s\" -plugin" - -#: ../../../../lib/SP/Mvc/View/Template.php:341 -msgid "La plantilla no contiene archivos" -msgstr "Skabelonen indeholder ingen filer" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:121 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:125 -msgid "Error al actualizar la configuración" -msgstr "Fejl under opdatering af konfigurationen" - -#: ../../../modules/web/Forms/AuthTokenForm.php:91 -msgid "Usuario no indicado" -msgstr "Bruger ikke valgt" - -#: ../../../modules/web/Forms/AuthTokenForm.php:95 -msgid "Acción no indicada" -msgstr "Handling ikke valgt" - -#: ../../../modules/web/Forms/TagForm.php:82 -msgid "Es necesario un nombre de etiqueta" -msgstr "Et mærkenavn er påkrævet" - -#: ../../../../lib/SP/Http/XMLRPCResponseParse.php:69 -msgid "Respuesta XML-RPC inválida" -msgstr "Ugyldigt XML-RPC-svar" - -#: ../../../../lib/SP/Services/Import/ImportService.php:89 -msgid "Tipo mime no soportado (\"%s\")" -msgstr "Mime-typen er ikke understøttet (\"%s\")" - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:106 -msgid "Id de categoría no definido. No es posible importar cuenta." -msgstr "Kategi-ID er ikke valgt. Kontoen kan ikke importeres." - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:110 -msgid "Id de cliente no definido. No es posible importar cuenta." -msgstr "Klient-ID er ikke valgt. Kontoen kan ikke importeres." - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:69 -msgid "Clave de encriptación no indicada" -msgstr "Krypteringskodeord er ikke sat" - -#: ../../../../lib/SP/Services/Import/CsvImport.php:50 -msgid "Formato detectado: %s" -msgstr "Detekteret format: %s" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 -msgid "El nodo \"%s\" no existe" -msgstr "\"%s\" -noden findes ikke" - -#: ../../../../lib/SP/Util/ImageUtil.php:48 -#: ../../../../lib/SP/Util/ImageUtil.php:99 -#: ../../../../lib/SP/Util/Util.php:180 ../../../../lib/SP/Util/Util.php:182 -msgid "Extensión '%s' no cargada" -msgstr "Udvidelsen \"%s\" er ikke indlæst" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:58 -msgid "Categoría duplicada" -msgstr "Kategorien findes allerede" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:77 -#: ../../../../lib/SP/Services/Category/CategoryService.php:98 -#: ../../../../lib/SP/Services/Category/CategoryService.php:115 -msgid "Categoría no encontrada" -msgstr "Kategori ikke fundet" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:75 -msgid "Error al crear el campo personalizado" -msgstr "Fejl under oprettelsen af brugerdefineret felt" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:259 -msgid "Error al eliminar el campo personalizado" -msgstr "Fejl under sletningen af brugerdefineret felt" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:118 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:165 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:193 -msgid "Error al actualizar el campo personalizado" -msgstr "Fejl under opdatering af brugerdefineret felt" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:162 -msgid "Campo personalizado no encontrado" -msgstr "Brugerdefineret felt ikke fundet" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:215 -msgid "No se encontraron campos personalizados" -msgstr "Brugerdefinerede felter ikke fundet" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:68 -msgid "No hay datos de campos personalizados" -msgstr "Der findes ingen data fra brugerdefinerede felter" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldsUtil.php:263 -msgid "Error al migrar campos personalizados" -msgstr "Fejl under migrering af brugerdefinerede felter" - -#: ../../../../inc/SP/Mgmt/Files/File.class.php:103 -msgid "Archivo subido" -msgstr "Fil uploadet" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:55 -msgid "Grupo en uso" -msgstr "Gruppen anvendes allerede" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 -msgid "Actualizar Grupo" -msgstr "Opdatér gruppe" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:140 -msgid "Error al asignar los usuarios al grupo" -msgstr "Fejl under tilføjelsen af brugerne til gruppen" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:78 -msgid "Error al crear la notificación" -msgstr "Fejl under tilføjelsen af notifikationen" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:137 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:156 -msgid "Error al eliminar la notificación" -msgstr "Fejl under sletning af notofikationen" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:118 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:429 -msgid "Error al modificar la notificación" -msgstr "Fejl under opdatering af notifikationen" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:212 -msgid "Error al obtener la notificación" -msgstr "Fejl under indlæsning af notifikationen" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:242 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:466 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:499 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:533 -msgid "Error al obtener las notificaciones" -msgstr "Fejl under indlæsning af notifikationerne" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:70 -msgid "Error al crear el plugin" -msgstr "Fejl under tilføjelse af plugin" - -#. (itstool) path: action/text -#: ../../../../lib/SP/Plugin/PluginManager.php:245 -#: ../../../config/actions.xml:535 -msgid "Nuevo Plugin" -msgstr "Ny plugin" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:232 -msgid "Error al eliminar el plugin" -msgstr "Fejl under sletning af plugin" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:104 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:348 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:368 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:388 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:408 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:427 -msgid "Error al actualizar el plugin" -msgstr "Fejl under opdatering af plugin" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:42 -msgid "Habilitado" -msgstr "Aktiveret" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:239 -msgid "Error al crear perfil" -msgstr "Fejl under oprettelsen af profilen" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:73 -msgid "Perfil en uso" -msgstr "Profilen er i brug" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:79 -msgid "Error al eliminar perfil" -msgstr "Fejl under sletning af profilen" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:141 -msgid "Error al modificar perfil" -msgstr "Fejl under opdatering af profilen" - -#: ../../../modules/web/Controllers/AccountController.php:223 -msgid "Enlace visualizado" -msgstr "Link vist" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:341 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:389 -msgid "Error al actualizar enlace" -msgstr "Fejl under opdatering af link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:255 -msgid "Enlace ya creado" -msgstr "Link allerede oprettet" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:282 -msgid "Error al crear enlace" -msgstr "Fejl under oprettelse af link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:63 -msgid "Error al eliminar enlace" -msgstr "Fejl under sletning af link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:424 -msgid "Error al renovar enlace" -msgstr "Fejl under fornyelse af link" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:741 -#: ../../../../inc/themes/material-blue/views/account/actions.inc:69 -msgid "Actualizar Enlace" -msgstr "Opdatér link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:466 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:507 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:528 -msgid "Error al obtener enlace" -msgstr "Fejl under indlæsning af link" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:190 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "ON" -msgstr "TIL" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "OFF" -msgstr "FRA" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:60 -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:108 -msgid "Etiqueta duplicada" -msgstr "Duplikeret mærke" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:69 -msgid "Error al crear etiqueta" -msgstr "Fejl under oprettelsen af mærke" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:262 -msgid "Error al eliminar etiqueta" -msgstr "Fejl under sletning af mærke" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:118 -msgid "Error al actualizar etiqueta" -msgstr "Fejl under opdatering af mærke" - -#: ../../../../inc/SP/Mgmt/Tags/Tag.class.php:181 -msgid "Error al obtener etiqueta" -msgstr "Fejl under indlæsning af mærke" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:63 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:430 -msgid "Login/email de usuario duplicados" -msgstr "Duplikeret brugerlogin / E-mail" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:234 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:551 -msgid "Error al obtener los datos del usuario" -msgstr "Fejl under indlæsning af brugerens data" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:781 -msgid "Sincronización LDAP" -msgstr "LDAP-synkronisering" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:264 -msgid "No se encontraron objetos para sincronizar" -msgstr "Der findes ingen objekter der kan synkroniseres" - -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:128 -msgid "Sincronización finalizada" -msgstr "Synkronisering udført" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:97 -msgid "Error al migrar cuenta de usuario" -msgstr "Fejl under migrering af brugerkonto" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:137 -msgid "Error al obtener grupo de usuarios" -msgstr "Fejl under indlæsning af brugergruppen" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:112 -msgid "Error en comprobación de hash" -msgstr "Fejl under kontrol af kontrolsum" - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:87 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:155 -msgid "Hash inválido o expirado" -msgstr "Forkert eller udløbet kontrolsum" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:86 -msgid "Error al generar el hash de recuperación" -msgstr "Fejl under generering af kontrolsum til gendannelse" - -#: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:57 -msgid "Actualizando preferencias" -msgstr "Opdaterer præferencer" - -#: ../../../../lib/SP/Storage/XmlHandler.php:79 -msgid "No es posible leer/escribir el archivo: %s" -msgstr "Kan ikke læse/skrive filen: %s" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:167 -msgid "No hay elementos para guardar" -msgstr "Der findes ingen elementer at gemme" - -#: ../../../../lib/SP/Util/Connection.php:157 -msgid "Socket no inicializado" -msgstr "Socket ikke initialiseret" - -#: ../../../../lib/SP/Util/Connection.php:164 -msgid "Error al enviar datos" -msgstr "Fejl under afsendelse af data" - -#: ../../../../lib/SP/Util/Util.php:243 -msgid "Respuesta" -msgstr "Svar" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 -msgid "Fallo de autentificación" -msgstr "Fejl i autentikering" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 -msgid "Error al realizar la consulta" -msgstr "Fejl under udførelse af forespørgsel" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 -msgid "URL de conexión no establecida" -msgstr "Forbindelses-URL er ikke sat" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:33 -msgid "Ver Detalles" -msgstr "Vis detaljer" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:44 -msgid "Copiar" -msgstr "Kopiér" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:50 -msgid "Restaurar" -msgstr "Genskab" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:55 -msgid "Descargar" -msgstr "Download" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:64 -msgid "Crítico" -msgstr "Kritisk" - -#: ../../../config/strings.js.inc:73 -msgid "Recibir notificaciones?" -msgstr "Send notifikationer?" - -#: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 -msgid "Marcar Favorito" -msgstr "Vælg som foretrukken" - -#. (itstool) path: action/text -#: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 -#: ../../../config/actions.xml:253 -msgid "Eliminar Favorito" -msgstr "Slet foretrukken" - -#: ../../../config/strings.js.inc:76 -msgid "Limpiar Selección" -msgstr "Ryd valgte" - -#: ../../../config/strings.js.inc:77 -msgid "Mostrar Favoritos" -msgstr "Vis foretrukne" - -#: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 -msgid "Mostrar Todos" -msgstr "Vis alle" - -#: ../../../config/strings.js.inc:81 -msgid "Ahora" -msgstr "Nu" - -#: ../../../config/strings.js.inc:82 -msgid "" -"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" -msgstr "Dette vil importere de fundne LDAP-brugere. Vil du fortsætte?" - -#: ../../../config/strings.js.inc:83 -msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" -msgstr "Dette vil nulstille alle plugin-data. Vil du fortsætte?" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 -msgid "Fecha Caducidad Clave" -msgstr "Udløbsdato for kodeord" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 -msgid "Seleccionar Fecha" -msgstr "Vælg dato" - -#: ../../../../inc/themes/material-blue/views/account/account-permissions.inc:9 -msgid "Accesos" -msgstr "Adgange" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 -msgid "Seleccionar Usuarios" -msgstr "Vælg brugere" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 -msgid "Seleccionar Grupos" -msgstr "Vælg grupper" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 -msgid "Cuenta Privada" -msgstr "Privat konto" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 -msgid "Privada" -msgstr "Privat" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 -msgid "Seleccionar Etiquetas" -msgstr "Vælg mærker" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 -msgid "Cuenta Vinculada" -msgstr "Forbundet konto" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 -msgid "Seleccionar Cuenta" -msgstr "Vælg konto" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Offentligt link" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 -#: ../../../config/actions.xml:421 -msgid "Crear Enlace Público" -msgstr "Opret offentligt link" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 -msgid "Detalles" -msgstr "Detaljer" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 -msgid "Fecha de Clave" -msgstr "Kodeordsdato" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Tamaño máximo de archivo: %d MB" -msgstr "Maks. filstørrelse: %d MB" - -#: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:3 -msgid "Cuentas Vinculadas" -msgstr "Forbundne konti" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 -msgid "Clave Caducada" -msgstr "Kodeord udløbet" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 -msgid "Ver en Wiki" -msgstr "Vis i Wiki" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 -msgid "Buscar cuentas con la clave caducada" -msgstr "Søg efter konti med udløbet kodeord" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 -msgid "Filtrar Favoritos" -msgstr "Filtrér efter foretrukne" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 -msgid "Más Filtros" -msgstr "Flere filtre" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 -msgid "Seleccionar Etiqueta" -msgstr "Vælg mærke" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 -msgid "Copia BBDD" -msgstr "Databasebackup" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 -msgid "Copia sysPass" -msgstr "sysPass-backup" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 -msgid "Eventos" -msgstr "Hændelser" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 -msgid "Habilitar Syslog" -msgstr "Aktivér syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 -msgid "Habilitar Syslog Remoto" -msgstr "Aktivér ekstern syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 -msgid "Nombre o dirección IP" -msgstr "Hostnavn eller IP-adresse" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 -#: ../../../config/actions.xml:73 -msgid "Enlaces Públicos" -msgstr "Offentlige links" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 -msgid "Habilitar Enlaces Públicos" -msgstr "Aktivér offentlige links" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 -msgid "" -"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " -"una cuenta." -msgstr "" -"Giver mulighed for at oprette offentlige links der kan vise en kontos " -"detaljer" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 -msgid "" -"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." -msgstr "De forbundne konti kan ses af alle der har linket." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 -msgid "" -"Para crear enlaces, los usuarios tienen que tener activada la opción en su " -"perfl." -msgstr "" -"For at oprette links skal brugerne have aktiveret funktionen i deres profil." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 -msgid "Tiempo de caducidad" -msgstr "Udløbstid" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 -msgid "Número máximo de visitas" -msgstr "Maks. antal besøg" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 -msgid "Usar imagen para clave" -msgstr "Brug et billede til at vise kodeordet" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 -msgid "La clave de la cuenta es visualizada como una imagen." -msgstr "Kontoens kodeord vises som et billede." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 -msgid "Copia de Configuración" -msgstr "Backup af konfiguration" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 -msgid "Plugins Cargados" -msgstr "Indlæste plugins" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 -msgid "Resultados" -msgstr "Resultater" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 -msgid "DokuWiki API" -msgstr "DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 -msgid "Habilitar API de DokuWiki" -msgstr "Aktivér DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 -msgid "" -"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." -msgstr "Aktiverer DokuWiki XML-RPC API'et til Wiki links." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 -msgid "" -"Para que esta característica funcione, es necesario habilitar los enlaces " -"Wiki para el filtrado de cuentas." -msgstr "" -"For at få dette til at fungere skal du aktivere Wiki links til " -"kontofiltrering" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 -msgid "URL API" -msgstr "API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 -msgid "URL de la API de DokuWiki." -msgstr "DokuWiki API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 -msgid "URL Base" -msgstr "Basis URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 -msgid "URL base de DokuWiki." -msgstr "DokuWiki basis URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 -#, fuzzy -msgid "Usuario para conectar a la API de DokuWiki." -msgstr "Bruger der anvendes til at forbinde til DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 -msgid "Namespace" -msgstr "Namespace" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 -msgid "Namespace utilizado para buscar las páginas." -msgstr "Namespace der anvendes til at søge i siderne." - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 -msgid "Nivel" -msgstr "Niveau" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 -msgid "Eliminar Seleccionados" -msgstr "Slet valgte" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 -msgid "Nombre del plugin" -msgstr "Plugin-navn" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 -msgid "Versión del plugin" -msgstr "Plugin-version" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 -msgid "Versión Compatible" -msgstr "Kompatibel version" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 -msgid "Versión de sysPass compatible" -msgstr "sysPass-kompatibel version" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 -msgid "Autor" -msgstr "Forfatter" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 -msgid "Autor del plugin" -msgstr "Plugin-forfatter" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 -msgid "Publicar enlace a cuenta" -msgstr "Del link til konto" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 -msgid "Publicar Enlace" -msgstr "Del link" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 -msgid "Crear cuenta privada" -msgstr "Opret privat konto" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 -msgid "Asignar permisos" -msgstr "Tildel rettigheder" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 -msgid "Gestión de enlaces" -msgstr "Administration af links" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 -msgid "Gestión de cuentas" -msgstr "Kontoadministration" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 -msgid "Gestión de etiquetas" -msgstr "Mærkeadministration" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 -msgid "Hash" -msgstr "Kontrolsum" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 -msgid "Uso" -msgstr "Anvendelse" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:54 -#: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 -msgid "Nombre de la etiqueta" -msgstr "Mærkenavn" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:40 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 -msgid "Hay %d notificaciones pendientes" -msgstr "Der findes %d ulæste notifikationer" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:165 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 -msgid "Demo" -msgstr "Demonstration" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 -msgid "Instalación %s" -msgstr "Installation %s" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 -msgid "Admin de sysPass" -msgstr "sysPass Administrator" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 -msgid "Clave Anterior" -msgstr "Tidligere kodeord" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 -msgid "Actualización %s" -msgstr "Opdatér %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 -msgid "" -"Este código se encuentra en el archivo de configuración de sysPass con la " -"etiqueta \"upgradeKey\"" -msgstr "Denne kode findes i sysPass config-filen, markeret som \"upgradekey\"" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 -#: ../../../config/actions.xml:277 -msgid "Ver Wiki" -msgstr "Vis Wiki" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 -msgid "Resultados de búsqueda de '%s'" -msgstr "Søgeresultater fra '%s'" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 -msgid "Página" -msgstr "Side" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 -msgid "No instalado" -msgstr "Ikke installeret" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 -msgid "Origen" -msgstr "Kilde" - -#: ../../../modules/web/Controllers/AccountController.php:226 -msgid "Agente" -msgstr "Agent" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 -msgid "" -"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." -"com/join/project/fmlsBuugyv" -msgstr "" -"For at forbedre/tilføje oversættelser kan du engagere dig her: https://" -"poeditor.com/join/project/fmlsBuugyv" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 -msgid "Indica si el idioma se encuentra disponible" -msgstr "Indikerer om sproget er tilgængeligt eller ej." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 -msgid "" -"Si no está instalado, es necesario instalar las locales en el sistema " -"operativo. Más información en Wiki." -msgstr "" -"Hvis det ikke er installeret, skal du installere den korrekte operativsystem-" -"lokalisation. Du kan læse mere i Wiki'en." - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:42 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:112 -msgid "No hay no hay notificaciones pendientes" -msgstr "Der findes ingen afventende notifikationer" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 -msgid "He realizado una copia de seguridad completa de sysPass" -msgstr "Jeg har foretaget en fuld sysPass backup" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 -msgid "Por favor espere mientras el proceso se ejecuta" -msgstr "Vent venligst mens processen kører" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 -msgid "Crear Usuario" -msgstr "Tilføj bruger" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 -msgid "Actualizar Usuario" -msgstr "Opdatér bruger" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:284 -msgid "Actualizar Clave Usuario" -msgstr "Opdatér brugers kodeord" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 -msgid "Crear Grupo" -msgstr "Tilføj gruppe" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 -msgid "Crear Perfil" -msgstr "Tilføj profil" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 -msgid "Actualizar Perfil" -msgstr "Opdatér profil" - -#: ../../../../lib/SP/Api/SyspassApi.php:368 -msgid "Crear Cliente" -msgstr "Tilføj klient" - -#: ../../../../lib/SP/Api/SyspassApi.php:279 -msgid "Crear Categoría" -msgstr "Tilføj kategori" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 -msgid "Actualizar Categoría" -msgstr "Opdatér kategori" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:623 -msgid "Crear Autorización" -msgstr "Tilføj autorisation" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -msgid "Crear Campo" -msgstr "Tilføj felt" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 -msgid "Actualizar Campo" -msgstr "Opdatér felt" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:731 -msgid "Crear Enlace" -msgstr "Opret link" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -msgid "Crear Etiqueta" -msgstr "Tilføj mærke" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 -msgid "Actualizar Etiqueta" -msgstr "Opdatér mærke" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:890 -msgid "Actualizar Plugin" -msgstr "Opdatér plugin" - -#: ../../../../lib/SP/Api/SyspassApi.php:188 -msgid "Crear Cuenta" -msgstr "Tilføj konto" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1091 -msgid "Usuarios importados" -msgstr "Importerede brugere" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 -#: ../../../modules/web/Controllers/AccountController.php:926 -msgid "Solicitud" -msgstr "Anmodning" - -#: ../../../../lib/SP/Core/Acl/Acl.php:299 -msgid "Acceso denegado" -msgstr "Adgang nægtet" - -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:115 -msgid "Error al añadir las etiquetas de la cuenta" -msgstr "Fejl under tilføjelse af mærker til kontoen" - -#: ../../../../lib/SP/Util/ErrorUtil.php:148 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 -msgid "Se ha producido una excepción" -msgstr "En undtagelse opstod" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:179 -msgid "Nueva Notificación" -msgstr "Ny notifikation" - -#: ../../../modules/web/Controllers/UserGroupController.php:219 -#: ../../../modules/web/Controllers/UserGroupController.php:222 -msgid "Grupos eliminados" -msgstr "Grupper slettet" - -#: ../../../modules/web/Controllers/UserProfileController.php:203 -#: ../../../modules/web/Controllers/UserProfileController.php:206 -msgid "Perfiles eliminados" -msgstr "Profiler slettet" - -#: ../../../modules/web/Controllers/ClientController.php:201 -#: ../../../modules/web/Controllers/ClientController.php:204 -msgid "Clientes eliminados" -msgstr "Klienter slettet" - -#: ../../../modules/web/Controllers/CategoryController.php:206 -#: ../../../modules/web/Controllers/CategoryController.php:209 -msgid "Categorías eliminadas" -msgstr "Kategorier slettet" - -#: ../../../modules/web/Controllers/AuthTokenController.php:212 -#: ../../../modules/web/Controllers/AuthTokenController.php:215 -msgid "Autorizaciones eliminadas" -msgstr "Autorisationer slettet" - -#: ../../../modules/web/Controllers/CustomFieldController.php:197 -#: ../../../modules/web/Controllers/CustomFieldController.php:200 -msgid "Campos eliminados" -msgstr "Felter slettet" - -#: ../../../modules/web/Controllers/PublicLinkController.php:234 -#: ../../../modules/web/Controllers/PublicLinkController.php:237 -msgid "Enlaces eliminados" -msgstr "Links slettet" - -#: ../../../modules/web/Controllers/TagController.php:200 -msgid "Etiquetas eliminadas" -msgstr "Mærker slettet" - -#: ../../../modules/web/Controllers/AccountFileController.php:320 -#: ../../../modules/web/Controllers/AccountFileController.php:323 -msgid "Archivos eliminados" -msgstr "Filer slettet" - -#: ../../../modules/web/Controllers/AccountController.php:879 -#: ../../../modules/web/Controllers/AccountController.php:882 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:99 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:102 -#: ../../../modules/web/Controllers/AccountManagerController.php:131 -#: ../../../modules/web/Controllers/AccountManagerController.php:134 -msgid "Cuentas eliminadas" -msgstr "Konti slettet" - -#: ../../../modules/web/Controllers/NotificationController.php:327 -#: ../../../modules/web/Controllers/NotificationController.php:330 -msgid "Notificación creada" -msgstr "Notifikation oprettet" - -#: ../../../modules/web/Controllers/NotificationController.php:251 -#: ../../../modules/web/Controllers/NotificationController.php:254 -msgid "Notificaciones eliminadas" -msgstr "Notifikationer slettet" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:270 -msgid "Usando clave temporal" -msgstr "Anvender midlertidigt kodeord" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:131 -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:181 -msgid "Clave temporal caducada" -msgstr "Midlertidigt kodeord er udløbet" - -#: ../../../../inc/SP/Core/Init.class.php:506 -msgid "Sesión" -msgstr "Session" - -#: ../../../../lib/SP/Services/Install/MySQL.php:361 -msgid "Error al comprobar la base de datos" -msgstr "Fejl under kontrol af databasen" - -#: ../../../../lib/SP/Services/Install/MySQL.php:363 -msgid "Intente de nuevo la instalación" -msgstr "Forsøg venligst at installere igen" - -#: ../../../modules/web/Forms/NotificationForm.php:92 -msgid "Es necesario un componente" -msgstr "En komponent mangler" - -#: ../../../modules/web/Forms/NotificationForm.php:96 -msgid "Es necesario un tipo" -msgstr "En type er påkrævet" - -#: ../../../modules/web/Forms/NotificationForm.php:106 -msgid "Es necesario un destinatario" -msgstr "Et mål er påkrævet" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:167 -msgid "Error procesando línea" -msgstr "Fejl under processering af linje" - -#: ../../../modules/web/Controllers/ConfigImportController.php:76 -msgid "Cuentas importadas" -msgstr "Konti importeret" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:164 -msgid "Archivo no encontrado" -msgstr "Fil ikke fundet" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:80 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:98 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:187 -#: ../../../../lib/SP/Services/UserGroup/UserToUserGroupService.php:57 -msgid "Grupo no encontrado" -msgstr "Gruppe ikke fundet" - -#: ../../../../lib/SP/Services/Notification/NotificationService.php:102 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:121 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:180 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:210 -msgid "Notificación no encontrada" -msgstr "Notifikation ikke fundet" - -#: ../../../../lib/SP/Services/Plugin/PluginService.php:92 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:153 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:186 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:206 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:224 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:241 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:258 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:275 -msgid "Plugin no encontrado" -msgstr "Plugin ikke fundet" - -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:65 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:97 -msgid "Perfil no encontrado" -msgstr "Profil ikke fundet" - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:122 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:145 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:219 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:311 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:346 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:367 -msgid "Enlace no encontrado" -msgstr "Link ikke fundet" - -#: ../../../../lib/SP/Services/Tag/TagService.php:75 -#: ../../../../lib/SP/Services/Tag/TagService.php:94 -#: ../../../../lib/SP/Services/Tag/TagService.php:111 -msgid "Etiqueta no encontrada" -msgstr "Mærke ikke fundet" - -#: ../../../../lib/SP/Services/User/UserService.php:192 -msgid "Usuario no encontrado" -msgstr "Bruger ikke fundet" - -#: ../../../../lib/SP/Storage/Database/Database.php:131 -msgid "Consulta en blanco" -msgstr "Tom forespørgsel" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 -msgid "Cuenta Privada Grupo" -msgstr "Privat konto for gruppen" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 -msgid "Privada Grupo" -msgstr "Privat for gruppen" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 -msgid "Sólo es necesaria para archivos XML de sysPass encriptados." -msgstr "Kun påkrævet for krypterede sysPass-filer." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 -msgid "" -"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " -"la actual." -msgstr "" -"Kun påkrævet for krypterede sysPass-filer der er krypteret med et anden " -"Hoved-kodeord end det nuværende." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 -msgid "Sólo es necesario para archivos CSV." -msgstr "Kun påkrævet for CSV-filer." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 -msgid "" -"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" -"\"notas\"" -msgstr "" -"\"kontonavn\";\"klient\";\"kategori\";\"url\";\"bruger\";\"kodeord\";\"noter" -"\"" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 -msgid "Crear cuenta privada para grupo" -msgstr "Opret privat konto til gruppen" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 -msgid "Notificación global" -msgstr "Global notifikation" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 -msgid "Global" -msgstr "Global" - -#: ../../../../lib/SP/Services/Service.php:115 -msgid "No es posible iniciar una transacción" -msgstr "Kan ikke begynde transaktion" - -#: ../../../../lib/SP/Services/Crypt/MasterPassService.php:101 -#: ../../../../lib/SP/Services/Import/ImportService.php:77 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "No es posible finalizar una transacción" -msgstr "Kan ikke færdiggøre transaktion" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 -msgid "Clave Maestra %s" -msgstr "Hoved-kodeord %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 -msgid "" -"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " -"el siguiente inicio." -msgstr "" -"Et nyt sysPass Hoved-kodeord er genereret, så næste gang du logger på vil du " -"blive bedt om det." - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 -msgid "La nueva clave es: %s" -msgstr "Det nye Hoved-Kodeord er: %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 -msgid "No olvide acceder lo antes posible para guardar los cambios." -msgstr "" -"Glem venligst ikke at logge på så snart som muligt for at gemme ændringerne." - -#: ../../../config/strings.js.inc:84 -msgid "Este proceso puede durar algo de tiempo. Desea continuar?" -msgstr "Denne proces kan tage noget tid. Vil du fortsætte?" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 -msgid "Búsqueda" -msgstr "Søger" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 -msgid "" -"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." -msgstr "" -"Sender en E-mail til alle brugere eller kun de brugere hvis gruppe er valgt." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 -msgid "Enviar correo" -msgstr "Send E-mail" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 -msgid "XML" -msgstr "XML" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 -msgid "CSV" -msgstr "CSV" - -#: ../../../../lib/SP/Services/Account/AccountService.php:163 -#: ../../../../lib/SP/Services/Account/AccountService.php:599 -msgid "Cuenta no encontrada" -msgstr "Konto ikke fundet" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:161 -msgid "Hash de clave maestra actualizado" -msgstr "Hoved-kodeord kontrolsum opdateret" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 -msgid "Error al actualizar el hash de la clave maestra" -msgstr "Fejl under opdatering af Hoved-kodeords kontrolsum" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:210 -#: ../../../config/actions.xml:823 -msgid "Editar Notificación" -msgstr "Tilret notifikation" - -#: ../../../modules/web/Controllers/UserController.php:266 -#: ../../../modules/web/Controllers/UserController.php:269 -msgid "Usuarios eliminados" -msgstr "Brugere slettet" - -#: ../../../modules/web/Controllers/NotificationController.php:360 -#: ../../../modules/web/Controllers/NotificationController.php:363 -msgid "Notificación actualizada" -msgstr "Notifikation opdateret" - -#: ../../../../lib/SP/Storage/Database/Database.php:259 -msgid "Restricción de integridad" -msgstr "Integritetsbegrænsning" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 -msgid "Actualizar hash de clave maestra" -msgstr "Opdater Hoved-kodeords kontrolsum" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 -msgid "Modificada" -msgstr "Modifceret" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 -msgid "Eliminada" -msgstr "Slettet" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 -msgid "Cuentas (H)" -msgstr "Konti (H)" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:194 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:224 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:124 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:148 -msgid "Clave de encriptación incorrecta" -msgstr "Forkert krypteringskodeord" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:7 -msgid "Área de Texto" -msgstr "Tekstfelt" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 -msgid "Devolver las cuentas en las que 'login' es propietario" -msgstr "Find de konti hvor brugeren \"bruger\" er ejer" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 -msgid "Devolver las cuentas con grupo principal 'group_name'" -msgstr "Find de konti hvor hovedgruppen er \"gruppenavn\"" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 -msgid "Devolver las cuentas privadas del usuario actual" -msgstr "Find private konti for den nuværende bruger" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 -msgid "OP Cache" -msgstr "OP Cache" - -#: ../../../modules/web/Controllers/UpgradeController.php:71 -msgid "Código de seguridad incorrecto" -msgstr "Forkert sikkerhedskode" - -#: ../../../modules/web/Controllers/UpgradeController.php:67 -msgid "Es necesario confirmar la actualización" -msgstr "Opdateringen skal bekræftes" - -#: ../../../modules/web/Controllers/UpgradeController.php:92 -msgid "En 5 segundos será redirigido al login" -msgstr "Du vil blive omdirigeret til login indenfor 5 sekunder" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:70 -msgid "Error al aplicar la actualización de la aplicación" -msgstr "Fejl under udførelsen af applikationsopdateringen" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 -msgid "Tamaño máximo de archivo en kilobytes" -msgstr "Maksimal filstørrelse i kilobyte" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 -msgid "Actualización de Aplicación" -msgstr "Applikation opdateret" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 -msgid "" -"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " -"o indique los IDs por defecto para los elementos huérfanos." -msgstr "" -"Visse forældreløse emner er fundet. Tilret dem venligst eller indtast et " -"standard-ID for dem." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 -msgid "Introducir un ID de usuario válido para cuentas" -msgstr "Indtast et gyldigt bruger-ID for kontiene" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 -msgid "Introducir un ID de categoría válido para cuentas" -msgstr "Indtast et gyldigt kategori-ID for kontiene" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 -msgid "Introducir un ID de cliente válido para cuentas" -msgstr "Indtast et gyldigt klient-ID for kontiene" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 -msgid "Introducir un ID de grupo válido para usuarios" -msgstr "Indtast et gyldigt grupp-ID for kontiene" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 -msgid "Introducir un ID de perfil válido para usuarios" -msgstr "Indtast et gyldigt profil-ID for kontiene" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 -msgid "" -"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " -"necesario reencriptar los datos almacenados" -msgstr "" -"Denne opdatering anvender et nyt krypteringsskema, så det vil blive " -"nødvendigt at genkryptere alle krypterede data." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 -msgid "" -"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." -msgstr "Der vil opdateres %s konti, Denne proces kan tage nogen tid." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 -msgid "Para más información consulte: %s" -msgstr "Du kan få mere at vide på: %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 -msgid "Introducir login de usuario válido" -msgstr "Indtast et gyldigt brugenavn" - -#: ../../../../lib/SP/Services/Api/ApiService.php:96 -#: ../../../../lib/SP/Services/Auth/LoginService.php:137 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:103 -#: ../../../modules/web/Controllers/UserPassResetController.php:124 -msgid "Intentos excedidos" -msgstr "Maks. antal forsøg overskredet" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 -msgid "Clave del token" -msgstr "Polettens kodeord" - -#: ../../../../lib/SP/Services/Track/TrackService.php:162 -msgid "Intentos excedidos (%d/%d)" -msgstr "Maks. antal forsøg overskredet (%d/%d)" - -#: ../../../../lib/SP/Http/Address.php:49 -#: ../../../../lib/SP/Http/Address.php:51 -#: ../../../../lib/SP/Http/Address.php:68 -#: ../../../../lib/SP/Http/Address.php:70 -#: ../../../../lib/SP/Http/Address.php:90 -#: ../../../../lib/SP/Http/Address.php:109 -msgid "IP inválida" -msgstr "Ugyldig IP-adresse" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:139 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:277 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:291 -msgid "Token no encontrado" -msgstr "Polet ikke fundet" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:68 -msgid "Error al crear track" -msgstr "Fejl under oprettelsen af spor" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:85 -msgid "Error al eliminar track" -msgstr "Fejl under sletning af spor" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:102 -msgid "Error al actualizar track" -msgstr "Fejl under opdatering af spor" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:146 -msgid "Error al obtener track" -msgstr "Fejl under indlæsning af spor" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:169 -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:202 -msgid "Error al obtener tracks" -msgstr "Fejl under indlæsningen af sporene" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 -#, fuzzy -msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." -msgstr "De eksporterede elementer er Konti, Klienter, Kategorier og Mærker." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 -msgid "Si no se indican los IDs, se crearán nuevos elementos." -msgstr "Hvis elementernes ID ikke er sat, vil de blive genereret." - -#: ../../../../lib/SP/Services/Task/TaskService.php:184 -msgid "Esperando actualización de progreso ..." -msgstr "Afventer status ..." - -#: ../../../../inc/SP/Core/Upgrade/Account.class.php:47 -msgid "Actualizando IDs de cuentas" -msgstr "Opdaterer Konti ID'er" - -#: ../../../../inc/SP/Core/Upgrade/Category.class.php:48 -msgid "Actualizando IDs de categorías" -msgstr "Opdaterer Kategori ID'er" - -#: ../../../../inc/SP/Core/Upgrade/Customer.class.php:48 -msgid "Actualizando IDs de clientes" -msgstr "Opdaterer Klient ID'er" - -#: ../../../../inc/SP/Core/Upgrade/Group.class.php:51 -msgid "Actualizando IDs de grupos" -msgstr "Opdaterer Gruppe ID'er" - -#: ../../../../inc/SP/Core/Upgrade/Profile.class.php:54 -msgid "Actualizando IDs de perfil" -msgstr "Opdaterer Profil ID'er" - -#: ../../../../inc/SP/Core/Upgrade/User.class.php:52 -msgid "Actualizando IDs de usuarios" -msgstr "Opdaterer bruger ID'er" - -#: ../../../config/strings.js.inc:87 -msgid "" -"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." -msgstr "Proces er i gang, luk venligst ikke browser-vinduet eller fanebladet." - -#: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 -msgid "Incluir Letras" -msgstr "Inkludér bogstaver" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 -msgid "Sesión Encriptada" -msgstr "Krypteret session" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 -msgid "Indica si los datos de la sesión están encriptados en el servidor" -msgstr "Angiver hvorvidt sessionsdata er krypterede eller ej" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "Sí" -msgstr "Ja" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "No" -msgstr "Nej" - -#: ../../../config/strings.js.inc:89 -msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." -msgstr "Cookies er slået fra. Applikationen vil ikke fungere korrekt." - -#: ../../../config/strings.js.inc:90 -msgid "Portapapeles no soportado por el navegador." -msgstr "Udklipsholder er ikke understøttet af din webbrowser." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 -msgid "Atributo Login" -msgstr "Loginattribut" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 -msgid "" -"Define el atributo a utilizar para el login del usuario en la importación." -msgstr "Fastsætter attributter for brugerens login ved import." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 -msgid "" -"Habilita el acceso a los usuarios que estén incluidos en los grupos " -"secundarios." -msgstr "" -"Giver adgang til de brugere der er medlem af den sekundære brugergruppe." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 -msgid "" -"Por defecto el usuario de un grupo secundario es permitido si el grupo " -"secundario está establecido como el primario del usuario." -msgstr "" -"Som standard er brugere i en sekundær gruppe givet adgang hvis denne " -"sekundære gruppe er brugerens primærgruppe." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 -msgid "Acceso Grupos Secundarios" -msgstr "Adgang for sekundærgrupper" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 -msgid "Encriptar los datos de la sesión de PHP." -msgstr "Kryptér PHP sessionsdata" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 -msgid "" -"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " -"datos almacenados no serán legibles." -msgstr "" -"Denne funktion forøger PHP sessionens sikkerhed, da gemte data ikke vil " -"kunne læses." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 -msgid "Encriptar Sesión" -msgstr "Kryptér session" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 -msgid "Atributo Nombre" -msgstr "Navneattribut" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 -msgid "" -"Define el atributo a utilizar para el nombre del usuario en la importación." -msgstr "Definerer attributten for brugerens navn under import." - -#: ../../../config/strings.js.inc:92 -msgid "Hay una versión más reciente del plugin {0} ({1})" -msgstr "Der er en nyere version af {0} plugin ({1})" - -#: ../../../../lib/SP/Bootstrap.php:267 -msgid "Versión de PHP requerida >= %s <= %s" -msgstr "Påkrævet PHP version >= %s <= %s" - -#: ../../../../lib/SP/Config/ConfigUtil.php:111 -msgid "Actual: %s - Necesario: 750" -msgstr "Nuværende: %s -Påkrævet: 750" - -#: ../../../../lib/SP/Core/Acl/Actions.php:176 -msgid "Acción no encontrada" -msgstr "Handling ikke fundet" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:103 -#: ../../../../lib/SP/Core/Context/ContextBase.php:126 -msgid "Contexto ya inicializado" -msgstr "Kontekst allerede initialiseret" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:109 -msgid "Contexto inválido" -msgstr "Ugyldig kontekst" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:154 -msgid "Contexto no inicializado" -msgstr "Kontekst ikke initialiseret" - -#: ../../../../lib/SP/Core/UI/Theme.php:193 -msgid "Clase no válida para iconos" -msgstr "Ugyldig ikonklasse" - -#: ../../../../lib/SP/Mvc/Model/QueryCondition.php:71 -msgid "Tipo de filtro inválido" -msgstr "Ugyldig filtertype" - -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:95 -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:157 -msgid "Tipo de objeto incorrecto" -msgstr "Forkert objekttype" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 -msgid "Realizado por: %s (%s)" -msgstr "Udført af: %s (%s)" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 -msgid "Dirección IP: %s" -msgstr "IP-adresse: %s" - -#: ../../../../lib/SP/Providers/Mail/MailProvider.php:91 -msgid "No es posible inicializar" -msgstr "Kan ikke initialisere" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 -#: ../../../modules/web/Controllers/NotificationController.php:267 -#: ../../../modules/web/Controllers/NotificationController.php:298 -msgid "Notificación" -msgstr "Notifikation" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:302 -msgid "Error al eliminar los archivos" -msgstr "Fejl under sletning af filerne" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:292 -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:315 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:501 -#: ../../../../lib/SP/Services/Account/AccountService.php:616 -msgid "Error al eliminar las cuentas" -msgstr "Fejl under sletning af konti" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:253 -msgid "Error al eliminar la categorías" -msgstr "Fejl under sletning af kategorierne" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:264 -#: ../../../../lib/SP/Services/Client/ClientService.php:127 -msgid "Error al eliminar los clientes" -msgstr "Fejl under sletning af klienterne" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:239 -msgid "Error al eliminar los campos personalizados" -msgstr "Fejl under sletning af brugerdefinerede felter" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:61 -msgid "Error al crear el tipo de campo" -msgstr "Fejl ved oprettelse af felttypen" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:97 -msgid "Error al actualizar el tipo de campo" -msgstr "Fej ved opdatering af felttypen" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:179 -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:198 -msgid "Error al eliminar el tipo de campo" -msgstr "Fejl under sletning af felttypen" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:179 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:302 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:140 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:159 -msgid "Error al eliminar las notificaciones" -msgstr "Fejl under sletning af notifikationerne" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:447 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:493 -msgid "El enlace no existe" -msgstr "Linket findes ikke" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:243 -#: ../../../../lib/SP/Services/Tag/TagService.php:126 -msgid "Error al eliminar etiquetas" -msgstr "Fejl under sletning af mærkerne" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:353 -#: ../../../../lib/SP/Services/User/UserService.php:209 -msgid "Error al eliminar los usuarios" -msgstr "Fejl under sletning af brugerne" - -#: ../../../../lib/SP/Services/User/UserPassService.php:256 -#: ../../../../lib/SP/Services/User/UserService.php:123 -#: ../../../../lib/SP/Services/User/UserService.php:154 -#: ../../../../lib/SP/Services/User/UserService.php:173 -msgid "El usuario no existe" -msgstr "Brugeren findes ikke" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:114 -msgid "Error al eliminar los perfiles" -msgstr "Fejl under sletning af profilerne" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 -msgid "Cuentas actualizadas: %d / %d" -msgstr "Konti opdateret: %d / %d" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 -msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" -msgstr "Opdaterede konti: %d / %d -%d%% - ETA: %ds (%.2f/s)" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:145 -msgid "Error al eliminar archivos" -msgstr "Fejl under sletning af filerne" - -#: ../../../../lib/SP/Services/Api/ApiRequest.php:88 -msgid "Fomato incorrecto" -msgstr "Ugyldigt format" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:43 -#: ../../../modules/api/Controllers/Help/TagHelp.php:65 -#: ../../../modules/api/Controllers/Help/TagHelp.php:89 -msgid "Id de etiqueta" -msgstr "Mærke ID" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:158 -msgid "Error al eliminar tokens" -msgstr "Fejl under sletning af poletterne" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:763 -msgid "Exportación" -msgstr "Eksport" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:167 -msgid "Copiando base de datos" -msgstr "Kopierer database" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:303 -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:338 -msgid "Copiando aplicación" -msgstr "Kopierer applikation" - -#: ../../../../lib/SP/Services/Config/ConfigService.php:68 -#: ../../../../lib/SP/Services/Config/ConfigService.php:153 -msgid "Parámetro no encontrado (%s)" -msgstr "Parameter ikke fundet (%s)" - -#: ../../../../lib/SP/Services/Service.php:109 -msgid "Rollback" -msgstr "Rollback" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:160 -msgid "Error al comprobar clave temporal" -msgstr "Fejl under kontrol af midlertidigt kodeord" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:109 -msgid "Campo no encontrado" -msgstr "Felt ikke fundet" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:130 -msgid "Error al eliminar los campos" -msgstr "Fejl under sletning af felterne" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:233 -msgid "Exportando categorías" -msgstr "Eksporterer kategorier" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:345 -msgid "Exportando clientes" -msgstr "Eksporterer klienter" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:391 -msgid "Exportando etiquetas" -msgstr "Eksporterer mærker" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:435 -msgid "Exportando cuentas" -msgstr "Eksporterer konti" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:158 -#: ../../../../lib/SP/Services/Import/KeepassImport.php:103 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:387 -msgid "Cuenta importada" -msgstr "Konto importeret" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:58 -msgid "Importación XML KeePass" -msgstr "KeePass XML import" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:91 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:211 -msgid "Categoría importada" -msgstr "Kategori importeret" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:58 -msgid "Importación XML sysPass" -msgstr "sysPass XML import" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:162 -msgid "Datos desencriptados" -msgstr "Data afkrypteret" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:250 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:290 -msgid "Cliente importado" -msgstr "Klient importeret" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:326 -msgid "Etiqueta importada" -msgstr "Mærke importeret" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:99 -msgid "Formato no detectado" -msgstr "Format ikke detekteret" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:107 -msgid "Not implemented" -msgstr "Ikke implementeret" - -#: ../../../../lib/SP/Services/Install/MySQL.php:135 -msgid "No es posible comprobar el usuario de sysPass (%s)" -msgstr "Kan ikke kontrollere sysPass brugeren (%s)" - -#: ../../../../lib/SP/Services/Install/MySQL.php:213 -#: ../../../../lib/SP/Services/Install/MySQL.php:329 -#: ../../../../lib/SP/Services/Install/MySQL.php:341 -msgid "Error al crear la BBDD ('%s')" -msgstr "Fejl under oprettelsen af databasen ('%s')" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 -msgid "Importado desde LDAP" -msgstr "Importeret fra LDAP" - -#: ../../../../lib/SP/Services/Mail/MailService.php:66 -msgid "Prueba de correo" -msgstr "E-mail test" - -#: ../../../../lib/SP/Services/Mail/MailService.php:67 -msgid "" -"Esto es una prueba de correo para verificar el correcto funcionamiento de la " -"configuración." -msgstr "" -"Dette er en test-E-mail med det formaål at kontrollere at konfigurationen er " -"korrekt." - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:238 -msgid "Error al eliminar los enlaces" -msgstr "Fejl under sletning af links" - -#: ../../../../lib/SP/Services/Task/TaskService.php:81 -msgid "No es posible crear archivo de bloqueo" -msgstr "Kan ikke oprette låse-filen" - -#: ../../../../lib/SP/Services/Track/TrackService.php:163 -msgid "Segundos" -msgstr "Sekunder" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:63 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:86 -msgid "Actualizar Aplicación" -msgstr "Opdatér applikation" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:57 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:59 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:102 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:139 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:171 -msgid "Actualización de campos personalizados" -msgstr "Opdatering af brugerdefinerede felter" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:157 -#: ../../../modules/web/Controllers/CustomFieldController.php:235 -#: ../../../modules/web/Controllers/CustomFieldController.php:272 -msgid "Campo" -msgstr "Felt" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:56 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "Actualización de enlaces públicos" -msgstr "Opdatering af offentlige links" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:90 -#: ../../../modules/web/Controllers/PublicLinkController.php:246 -msgid "Enlace" -msgstr "Link" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:115 -msgid "Error al eliminar los grupos" -msgstr "Fejl under sletning af grupperne" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 -msgid "No es posible leer el archivo (%s)" -msgstr "Kan ikke læse/skrive filen (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:47 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:58 -msgid "Error al leer datos del archivo (%s)" -msgstr "Fejl under læsning af fildata (%s)" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 -#: ../../../../lib/SP/Storage/File/FileCache.php:74 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 -msgid "No es posible crear el directorio (%s)" -msgstr "Kan ikke oprette mappen (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 -msgid "No es posible escribir en el archivo (%s)" -msgstr "Kan ikke læse/skrive filen (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 -msgid "No es posible abrir el archivo (%s)" -msgstr "Kan ikke åbne filen (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:92 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:128 -msgid "Error al eliminar el archivo (%s)" -msgstr "Fejl under sletning af filen (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:54 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:104 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:124 -msgid "No es posible leer/escribir el archivo (%s)" -msgstr "Kan ikke læse/skrive filen (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 -msgid "Error al descomprimir datos del archivo (%s)" -msgstr "Fejl under dekomrṕression af fildata (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 -msgid "Error al obtener los datos" -msgstr "Fejl under indlæsning af dataene" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 -msgid "Error al comprimir datos del archivo (%s)" -msgstr "Fejl under komprimering af dataene (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:112 -msgid "Error al escribir datos en el archivo (%s)" -msgstr "Fejl under skrivning af data til filen (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 -msgid "Datos no cargados" -msgstr "Data ikke indlæst" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 -msgid "No es posible cerrar el archivo (%s)" -msgstr "Kan ikke lukke filen (%s)" - -#: ../../../modules/api/Controllers/AccountController.php:70 -msgid "Cuenta visualizada" -msgstr "Konto vist" - -#: ../../../modules/api/Controllers/AccountController.php:102 -#: ../../../modules/web/Controllers/AccountController.php:554 -#: ../../../modules/web/Controllers/AccountController.php:610 -msgid "Clave visualizada" -msgstr "Kodeord vist" - -#: ../../../modules/api/Controllers/ConfigController.php:82 -#: ../../../modules/web/Controllers/ConfigBackupController.php:92 -msgid "Exportación de sysPass en XML" -msgstr "sysPass XML eksport" - -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:117 -#: ../../../modules/api/Controllers/TagController.php:146 -msgid "Etiqueta" -msgstr "Mærke" - -#: ../../../modules/api/Init.php:135 -msgid "Es necesario actualizar" -msgstr "Opdatering påkrævet" - -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "HTTPS" -msgstr "HTTPS" - -#: ../../../modules/web/Controllers/AccountController.php:649 -#: ../../../modules/web/Controllers/AccountController.php:683 -msgid "Clave copiada" -msgstr "Kodeord kopieret" - -#: ../../../modules/web/Controllers/AccountFileController.php:83 -#: ../../../modules/web/Controllers/AccountFileController.php:96 -msgid "Archivo visualizado" -msgstr "Fil vist" - -#: ../../../modules/web/Controllers/AccountFileController.php:136 -msgid "Archivo descargado" -msgstr "Fil hentet" - -#: ../../../modules/web/Controllers/AccountFileController.php:186 -msgid "Extensión: %s" -msgstr "Udvidelse: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:193 -msgid "Archivo: %s" -msgstr "Fil: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:201 -msgid "Máximo tamaño: %s" -msgstr "Maks. størrelse: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:211 -msgid "Máximo tamaño: %d KB" -msgstr "Maks størrelse: %d KB" - -#: ../../../modules/web/Controllers/AccountFileController.php:334 -msgid "Archivo Eliminado" -msgstr "Fil slettet" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 -#: ../../../modules/web/Controllers/AuthTokenController.php:226 -#: ../../../modules/web/Controllers/AuthTokenController.php:292 -#: ../../../modules/web/Controllers/AuthTokenController.php:301 -#: ../../../modules/web/Controllers/AuthTokenController.php:339 -msgid "Autorización" -msgstr "Autorisation" - -#: ../../../modules/web/Controllers/AuthTokenController.php:338 -msgid "Autorización visualizada" -msgstr "Autorisation vist" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:78 -msgid "Archivos habilitados" -msgstr "Filer aktiveret" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:83 -msgid "Archivos deshabilitados" -msgstr "Filer deaktiveret" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:96 -msgid "Enlaces públicos habilitados" -msgstr "Offentlige links aktiveret" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:101 -msgid "Enlaces públicos deshabilitados" -msgstr "Offentlige links deaktiveret" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 -msgid "Esta clave estará activa hasta: %s" -msgstr "Kodeordet er gyldigt til: %s" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -msgid "Email enviado" -msgstr "E-mail afsendt" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -msgid "Error al enviar email" -msgstr "Fejl under afsendelse af E-mail" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:97 -msgid "Syslog remoto habilitado" -msgstr "Ekstern syslog aktiveret" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:153 -msgid "Auth Basic habilitada" -msgstr "Basal autentificering aktiveret" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:159 -msgid "Auth Basic deshabiltada" -msgstr "Basal autentificering deaktiveret" - -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -msgid "No se importaron cuentas" -msgstr "Der blev ikke importeret nogle konti" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:115 -#: ../../../modules/web/Controllers/ConfigLdapController.php:238 -msgid "Parámetros de LDAP incorrectos" -msgstr "Forkerte LDAP parametre" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:245 -msgid "Importación LDAP" -msgstr "LDAP import" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 -msgid "Usuarios importados: %d / %d" -msgstr "Importerede brugere: %d / %d" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 -msgid "Errores: %d" -msgstr "Fejl: %d" - -#: ../../../modules/web/Controllers/ConfigMailController.php:145 -msgid "Compruebe su buzón de correo" -msgstr "Kontrollér venligst din indbakke" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:99 -msgid "DokuWiki habilitada" -msgstr "DokuWiki aktiveret" - -#: ../../../modules/web/Controllers/CustomFieldController.php:298 -msgid "Ver Campo" -msgstr "Vis felt" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 -#: ../../../config/actions.xml:439 -msgid "Actualizar Enlace Público" -msgstr "Opdatér offentligt link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 -msgid "Nuevo Enlace" -msgstr "Nyt link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 -msgid "No disponible" -msgstr "Ikke disponibel" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 -msgid "Refrescar" -msgstr "Genindlæs" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 -msgid "Sólo Admins" -msgstr "Kun administratorer" - -#: ../../../modules/web/Controllers/PublicLinkController.php:109 -msgid "Nuevo Enlace Público" -msgstr "Nyt offentligt link" - -#: ../../../modules/web/Controllers/PublicLinkController.php:196 -msgid "Editar Enlace Público" -msgstr "Tilret offentligt link" - -#: ../../../modules/web/Controllers/StatusController.php:94 -msgid "Versión no disponible" -msgstr "Version ikke tilgængelig" - -#: ../../../modules/web/Controllers/StatusController.php:142 -msgid "Notificaciones no disponibles" -msgstr "Notifikationer ikke tilgængelige" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 -#: ../../../config/actions.xml:511 -msgid "Ver Etiqueta" -msgstr "Vis mærke" - -#: ../../../modules/web/Controllers/UserPassResetController.php:90 -msgid "Datos incorrectos" -msgstr "Forkerte data" - -#: ../../../modules/web/Controllers/UserPassResetController.php:94 -msgid "No es posible recuperar la clave" -msgstr "Kan ikke nulstille kodeordet" - -#: ../../../modules/web/Forms/PublicLinkForm.php:85 -msgid "Es necesario una cuenta" -msgstr "En konto er påkrævet" - -#: ../../../config/strings.js.inc:91 -msgid "Realizando auto-login" -msgstr "Udfører automatisk login" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 -msgid "Abrir enlace a: %s" -msgstr "Åbn link til: %s" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 -msgid "Cuenta Privada (Grupo)" -msgstr "Privat konto (Gruppe)" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 -msgid "Notes" -msgstr "Noter" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 -msgid "Usar Auth Basic" -msgstr "Basal brugerautentificering" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:26 -msgid "Usar auto-login con Auth Basic" -msgstr "Anvend automatisk login via basal autentificering " - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 -msgid "Dominio" -msgstr "Domæne" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 -msgid "" -"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " -"el de Auth Basic." -msgstr "" -"Domænet vil blive tilføjet til sysPass brugernavnet for kontrol op mod det " -"brugernavn der findes i basal autentificering." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 -msgid "Nombre de dominio" -msgstr "Domænenavn" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 -msgid "" -"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Angiver standard-brugergruppen for nyoprettede SSO-brugere" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 -msgid "" -"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Angiv standard-brugerprofilen for nyoprettede SSO-brugere" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 -msgid "Importación" -msgstr "Importér" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 -msgid "Importar Grupos" -msgstr "Importér grupper" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 -msgid "Atributo Nombre Grupo" -msgstr "Gruppenavnsattribut" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 -msgid "" -"Define el atributo a utilizar para el nombre del grupo en la importación." -msgstr "" -"Definerer attributten for det brugergruppenavn der anvendes ved import." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 -msgid "Filtro" -msgstr "Filter" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 -msgid "Filtro para importar usuarios o grupos de LDAP." -msgstr "Filter til import af LDAP-brugere eller grupper." - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 -msgid "Destinatarios" -msgstr "Modtagere" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 -msgid "Indica si el cliente es visible para todos los usuarios." -msgstr "Angiver hvorvidt klienten kan ses af alle brugere" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 -msgid "" -"Por defecto los clientes asignados a cuentas sólo son visibles para los " -"usuarios con acceso a las cuentas." -msgstr "" -"Som standard vil klienter der er tilhører en konto kun kunne ses af de " -"brugere der har adgang til den konto." - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 -msgid "URL" -msgstr "URL" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 -msgid "Login SSO" -msgstr "SSO Login " - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 -msgid "Login de inicio de sesión con SSO" -msgstr "Sessions login via SSO" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 -msgid "Sólo para administradores de la aplicación" -msgstr "Kun for applikationsadministratorer" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 -msgid "Solo Admins" -msgstr "Kun administratorer" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 -msgid "Para iniciar la actualización introduzca el código de seguridad" -msgstr "Indtast venligst sikkerhedskoden for at begynde opdateringen" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:73 -msgid "No es posible cambiar el valor de la clave" -msgstr "Kan ikke ændre kodeordsværdien" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:345 -msgid "Filtro incorrecto" -msgstr "Forkert filter" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:159 -msgid "El campo personalizado no existe" -msgstr "Brugerdefineret felt ikke fundet" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:212 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:137 -#, fuzzy -msgid "Error al eliminar los plugins" -msgstr "Fejl under sletningen af plugins" - -#: ../../../../lib/SP/Services/Account/AccountService.php:220 -msgid "Clave maestra no establecida" -msgstr "Hoved-kodeord ikke angivet" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:134 -msgid "Error al eliminar las categorías" -msgstr "Fejl under sletning af kategorier" - -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:80 -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:87 -msgid "No es posible restaurar la configuración" -msgstr "Kan ikke genskabe konfigurationen" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldTypeService.php:84 -msgid "Tipo de campo no encontrado" -msgstr "Felttype ikke fundet" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:177 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:176 -msgid "Fallo en la verificación del hash de integridad" -msgstr "Fejl under kontrol af integritetskontrolsum" - -#: ../../../../lib/SP/Services/Install/Installer.php:359 -msgid "Error al crear el usuario 'admin'" -msgstr "Fejl under oprettelsen af 'admin'-brugeren" - -#: ../../../../lib/SP/Services/Install/MySQL.php:309 -#, fuzzy -msgid "Error al seleccionar la BBDD '%s' (%s)" -msgstr "Fejl under valg af databasen '%s' (%s)" - -#: ../../../../lib/SP/Services/Mail/MailService.php:186 -msgid "Servicio de correo no disponible" -msgstr "E-mail-tjenesten er ikke tilgængelig" - -#: ../../../../lib/SP/Services/Service.php:137 -#: ../../../../lib/SP/Services/Service.php:144 -msgid "Error ol obtener la clave maestra del contexto" -msgstr "Fejl under indlæsning af Hoved-kodeord fra kontekst" - -#: ../../../../lib/SP/Services/Service.php:160 -#: ../../../../lib/SP/Services/Service.php:164 -msgid "Error ol establecer la clave maestra en el contexto" -msgstr "Fejl ved indsætning af Hoved-kodeord i kontekst" - -#: ../../../../lib/SP/Services/Track/TrackService.php:87 -#: ../../../../lib/SP/Services/Track/TrackService.php:101 -#: ../../../../lib/SP/Services/Track/TrackService.php:128 -msgid "Track no encontrado" -msgstr "Spor ikke fundet" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:55 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:85 -msgid "Actualización de autorizaciones API" -msgstr "API autorisationsopdatering" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 -msgid "No es posible leer desde el archivo (%s)" -msgstr "Kan ikke læse fra filen (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 -msgid "No es posible escribir el archivo (%s)" -msgstr "Kan ikke skrive i filen (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 -msgid "Archivo no encontrado (%s)" -msgstr "Fil ikke fundet (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 -msgid "No es posible eliminar el archivo (%s)" -msgstr "Kan ikke slette filen (%s)" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:89 -#: ../../../../lib/SP/Storage/File/XmlHandler.php:309 -msgid "El nodo XML no existe" -msgstr "XML-noden findes ikke" - -#: ../../../../lib/SP/Util/ImageUtil.php:65 -msgid "Imagen no válida" -msgstr "Ugyldigt billede" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:117 -msgid "Verificación de datos exportados finalizada" -msgstr "Verifikation af eksporterede data udført" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 -msgid "Encriptado" -msgstr "Krypteret" - -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:173 -msgid "Error al actualizar los datos del campo personalizado" -msgstr "Fejl under opdatering af data i det brugerdefinerede felt" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 -msgid "Enlace Directo" -msgstr "Direkte link" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 -msgid "Parámetros especiales" -msgstr "Specielle parametre" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 -msgid "" -"Es posible utilizar uno o varios parámetros especiales separados por espacios" -msgstr "" -"Du kan anvende en eller flere specielle parametre separeret med mellemrum" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 -msgid "Devolver la cuenta con ID" -msgstr "Returnerer kontoen for det angivne ID" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 -msgid "Operador para los parámetros especiales" -msgstr "Operatør til specielle parametre" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 -msgid "Los datos serán encriptados al guardar" -msgstr "Data krypteres efter lagring" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 -msgid "Los datos serán desencriptados al guardar" -msgstr "Data vil blive dekrypteret ved lagring" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 -msgid "Caducidad clave cuentas" -msgstr "Konti'enes kodeordsudløb" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 -msgid "Habilita la caducidad de la clave de cuentas." -msgstr "Aktiverer udløbsdato for konti" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 -msgid "Tiempo caducidad clave" -msgstr "Udløbsdato for kodeord" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 -msgid "Número de días para la caducidad de la clave de cuenta." -msgstr "Antal dage før kontoen udløber" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 -msgid "Tiempo caducidad (días)" -msgstr "Udløbstid (dage)" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 -msgid "" -"Confirmar el cambio de clave maestra después de haber leído las advertencias " -"anteriores." -msgstr "" -"Bekræft ændringen af hoved-kodeord efter at du har læst alle ovenstående " -"advarsler." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 -msgid "Usar Auth Basic para autorizar los accesos a la aplicación." -msgstr "Brug basal autentifikation til at autorisere adgang til applikationen" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 -msgid "Usar Auth Basic SSO" -msgstr "Brug basal autentifikation SSO" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 -msgid "Usar auto-login con Auth Basic." -msgstr "Brug automatisk login via basal autentifikation" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 -msgid "Usar proxy para comprobación de actualizaciones y notificaciones." -msgstr "" -"Anvend en proxyserver ved søgning efter opdateringer og notifikationer." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 -msgid "Usado en" -msgstr "Anvendt i" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 -msgid "(*) Incluido en grupo" -msgstr "(*) Inkluderet i gruppe" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -msgid "La extensión '%s' no está disponible" -msgstr "'%s' udvidelsen er ikke tilgængelig" - -#: ../../../../lib/SP/Services/Service.php:133 -#: ../../../../lib/SP/Services/Service.php:140 -msgid "Error al obtener la clave maestra del contexto" -msgstr "Fejl under indlæsning af Hoved-kodeord fra kontekst" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 -msgid "Esta extensión es necesaria para mostrar las claves como imágenes" -msgstr "Denne udvidelse er påkrævet for at kunne vise kodeord som billeder" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 -msgid "" -"Esta extensión es necesaria para generar los archivos de copia de seguridad " -"de la aplicación" -msgstr "" -"Denne udvidelser er påkrævet for at generere applikationens backupfiler" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 -msgid "" -"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" -msgstr "" -"Denne udvidelse er påkrævet for at søge efter sysPass opdateringer og " -"notifikationer" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 -msgid "Extensiones no disponibles" -msgstr "Utilgængelige udvidelser" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 -msgid "Esta extensión es necesaria conectar con el servidor de LDAP" -msgstr "Denne udvidelse er påkrævet for at kunne forbinde til en LDAP server" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 -msgid "Esta extensión es necesaria conectar con DokuWiki" -msgstr "Denne udvidelse er påkrævet for at kunne forbinde til DokuWiki" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:31 -msgid "Favoritos" -msgstr "Foretrukne" - #. (itstool) path: action/text #: ../../../config/actions.xml:97 msgid "Gestión Plugins" msgstr "Pluginadministration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:103 +msgid "Usuarios y Accesos" +msgstr "Brugere og rettigheder" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:109 +msgid "Seguridad y Auditoría" +msgstr "Security and Audit" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:115 +msgid "Gestión Usuarios" +msgstr "Brugeradministration" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:121 +msgid "Gestión Grupos" +msgstr "Gruppeadministration" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:127 +msgid "Gestión Perfiles" +msgstr "Profiladministration" + #. (itstool) path: action/text #: ../../../config/actions.xml:139 msgid "Buscar Eventos" @@ -7533,6 +4683,21 @@ msgstr "Søg efter hændelser" msgid "Limpiar Eventos" msgstr "Ryd hændelser" +#. (itstool) path: action/text +#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 +msgid "Ver Cuenta" +msgstr "Vis konto" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:181 +msgid "Editar Clave de Cuenta" +msgstr "Skift konto-kodeord" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 +msgid "Subir Archivo" +msgstr "Upload fil" + #. (itstool) path: action/text #: ../../../config/actions.xml:229 msgid "Buscar Archivos" @@ -7568,11 +4733,6 @@ msgstr "Tilret Wiki" msgid "Eliminar Wiki" msgstr "Slet Wiki" -#. (itstool) path: action/text -#: ../../../config/actions.xml:331 -msgid "Nuevo CLiente" -msgstr "Ny klient" - #. (itstool) path: action/text #: ../../../config/actions.xml:361 msgid "Nuevo Token API" @@ -7624,17 +4784,21 @@ msgid "Buscar Campo Personalizado" msgstr "Søg efter brugerdefineret felt" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 -#: ../../../config/actions.xml:433 -msgid "Eliminar Enlace Público" -msgstr "Slet offentligt link" +#: ../../../config/actions.xml:427 +#, fuzzy +msgid "Ver Enlace Público" +msgstr "Vis offentligt link" #. (itstool) path: action/text #: ../../../config/actions.xml:445 msgid "Buscar Enlace Público" msgstr "Søg efter offentligt link" +#. (itstool) path: action/text +#: ../../../config/actions.xml:535 +msgid "Nuevo Plugin" +msgstr "Ny plugin" + #. (itstool) path: action/text #: ../../../config/actions.xml:553 msgid "Habilitar Plugin" @@ -7715,6 +4879,11 @@ msgstr "XML import" msgid "Configuración Exportación" msgstr "Eksportér konfiguration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:763 +msgid "Exportación" +msgstr "Eksport" + #. (itstool) path: action/text #: ../../../config/actions.xml:769 msgid "Configuración Email" @@ -7725,6 +4894,11 @@ msgstr "E-mailkonfiguration" msgid "Configuración LDAP" msgstr "LDAP konfiguration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:781 +msgid "Sincronización LDAP" +msgstr "LDAP-synkronisering" + #. (itstool) path: action/text #: ../../../config/actions.xml:787 msgid "Gestión de Cuenta (H)" @@ -7735,434 +4909,11 @@ msgstr "Kontoadministration (H)" msgid "Crear Notificación" msgstr "Opret notifikation" -#: ../../../../lib/SP/Services/Import/SyspassImport.php:177 -msgid "" -"Si está importando un archivo exportado desde el mismo origen, los datos " -"pueden estar comprometidos." -msgstr "" -"Hvis du importerer en eksporteret fil af samme oprindelse kan data " -"kompromitteres." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:154 -msgid "El archivo de actualización no contiene datos" -msgstr "Opdateringsfilen indeholder ingen data" - -#: ../../../modules/api/Controllers/CategoryController.php:62 -msgid "Categoría visualizada" -msgstr "Kategori vist" - -#: ../../../modules/api/Controllers/ClientController.php:63 -msgid "Cliente visualizado" -msgstr "Klient vist" - -#: ../../../modules/api/Controllers/ConfigController.php:58 -#: ../../../modules/api/Controllers/ConfigController.php:83 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 -msgid "Ruta" -msgstr "Sti" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 -#, fuzzy -msgid "Array con Ids de etiquetas" -msgstr "Liste med mærke ID'er" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 -#, fuzzy -msgid "Array con Ids de etiquetas a filtrar" -msgstr "Liste med mærke ID'er til filtrering" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 -msgid "Operador de filtrado" -msgstr "Filtreringsoperatør" - -#: ../../../modules/api/Controllers/TagController.php:61 -msgid "Etiqueta visualizada" -msgstr "Mærke vist" - -#: ../../../modules/web/Controllers/AccountFileController.php:387 -msgid "No hay archivos asociados a la cuenta" -msgstr "Der findes ingen filer linket til kontoen" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:76 -msgid "Error al crear permiso" -msgstr "Fejl under oprettelse af rettigheden" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:115 -msgid "Error al actualizar permiso" -msgstr "Fejl under opdatering af rettigheden" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:134 -msgid "Error al eliminar permiso" -msgstr "Fejl under sletning af rettigheden" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:249 -msgid "Error al eliminar los permisos" -msgstr "Fejl under sletning af rettighederne" - -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:84 -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:105 -msgid "Permiso no encontrada" -msgstr "Rettighed ikke fundet" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:71 -#: ../../../config/actions.xml:847 -msgid "Ver Permiso" -msgstr "Se rettighed" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:156 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:157 -#: ../../../config/actions.xml:853 -msgid "Nuevo Permiso" -msgstr "Ny rettighed" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:211 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:174 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:175 -#: ../../../config/actions.xml:859 -msgid "Editar Permiso" -msgstr "Tilret rettighed" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:248 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:251 -msgid "Permisos eliminados" -msgstr "Rettigheder slettet" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:259 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:263 -msgid "Permiso eliminado" -msgstr "Rettighed slettet" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:289 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:293 -msgid "Permiso creado" -msgstr "Rettighed tilføjet" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:325 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:329 -msgid "Permiso actualizado" -msgstr "Rettighed opdateret" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:90 -msgid "Permisos por Defecto" -msgstr "Standardrettigheder" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 -msgid "Prioridad" -msgstr "Prioritet" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 -msgid "Forzado" -msgstr "Tvungen" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:141 -#: ../../../config/actions.xml:841 -msgid "Buscar Permiso" -msgstr "Søg efter rettighed" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:191 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:192 -#: ../../../config/actions.xml:865 -msgid "Eliminar Permiso" -msgstr "Slet rettighed" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:208 -msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" -msgstr "Et element af typen bruger, gruppe eller profil skal angives" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:133 -msgid "No hay permisos definidos" -msgstr "Der findes ingen definerede rettigheder" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:75 -msgid "" -"Prioridad de asignación en caso de coincidir con otros permisos asignados " -"por usuario, grupo o perfil." -msgstr "" -"Tildelingsprioritet hvis rettigheder er identiske med andre tildelt via " -"bruger, gruppe eller profil." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 -msgid "Prioridad de asignación" -msgstr "Tildelingsprioritet" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:107 -msgid "Indica si los permisos serán forzados al crear o modificar la cuenta." -msgstr "" -"Gennemtvinger tildeling af rettigheder ved oprettelse eller opdatering af en " -"konto." - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:109 -msgid "Los permisos serán añadidos a los existentes." -msgstr "Rettigheder vil blive flettet sammen med de eksisterende rettigheder." - -#. (itstool) path: action/text -#: ../../../config/actions.xml:835 -msgid "Gestión Permisos" -msgstr "Rettighedsadministration" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 -msgid "Es necesaria una clave con al menos %d caracteres" -msgstr "Password needs to be %d characters long" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:77 -msgid "La clave no cumple los carácteres requeridos" -msgstr "Password does not contain the required characters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:82 -msgid "Es necesario que la clave contenga letras" -msgstr "Password needs to contain letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:86 -msgid "Es necesario que la clave contenga minúsculas" -msgstr "Password needs to contain lower case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:90 -msgid "Es necesario que la clave contenga mayúsculas" -msgstr "Password needs to contain upper case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:95 -msgid "Es necesario que la clave contenga números" -msgstr "Password needs to contain numbers" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:99 -msgid "Es necesario que la clave contenga símbolos" -msgstr "Password needs to contain symbols" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:301 -msgid "Error al desconectar del servidor de LDAP" -msgstr "Error while disconnecting from LDAP server" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:84 -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:105 -msgid "Valor no encontrada" -msgstr "Value not found" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:188 -msgid "Error al eliminar los valores" -msgstr "Error while deleting the values" - -#: ../../../../lib/SP/Services/Track/TrackService.php:208 -msgid "Dirección IP no establecida" -msgstr "IP address not set" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 -msgid "Valores Predeterminados" -msgstr "Preset Values" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 -#: ../../../config/actions.xml:853 -msgid "Buscar Valor" -msgstr "Search for Value" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 -msgid "Valor de Permiso" -msgstr "Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 -msgid "Nuevo Valor de Permiso" -msgstr "New Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 -msgid "Valor de Cuenta Privada" -msgstr "Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 -msgid "Nuevo Valor de Cuenta Privada" -msgstr "New Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 -msgid "Valor de Timeout de Sesión" -msgstr "Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 -msgid "Nuevo Valor de Timeout de Sesión" -msgstr "New Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 -msgid "Valor de Clave de Cuentas" -msgstr "Account Password Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 -msgid "Nuevo Valor de Clave de Cuentas" -msgstr "New Account Password Preset" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 -#: ../../../config/actions.xml:871 -msgid "Editar Valor" -msgstr "Edit Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 -#: ../../../config/actions.xml:877 -msgid "Eliminar Valor" -msgstr "Delete Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 -#: ../../../config/actions.xml:859 -msgid "Ver Valor" -msgstr "Display Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 -#: ../../../config/actions.xml:865 -msgid "Nuevo Valor" -msgstr "New Value" - -#: ../../../modules/web/Controllers/ItemPresetController.php:266 -#: ../../../modules/web/Controllers/ItemPresetController.php:269 -msgid "Valores eliminados" -msgstr "Values deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:277 -#: ../../../modules/web/Controllers/ItemPresetController.php:281 -msgid "Valor eliminado" -msgstr "Value deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:309 -#: ../../../modules/web/Controllers/ItemPresetController.php:314 -msgid "Valor creado" -msgstr "Value created" - -#: ../../../modules/web/Controllers/ItemPresetController.php:348 -#: ../../../modules/web/Controllers/ItemPresetController.php:353 -msgid "Valor actualizado" -msgstr "Value updated" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:116 -msgid "Tipo de valor no definido o incorrecto" -msgstr "Value type not set or incorrect" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:182 -msgid "Expresión regular inválida" -msgstr "Invalid regular expression" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 -msgid "Habilita la conexión mediante TLS." -msgstr "Enables the connection over TLS" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 -msgid "Puntuación" -msgstr "Score" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 -msgid "Expresión Regular" -msgstr "Regular Expression" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 -msgid "Incluir Minúsculas" -msgstr "Include Lowercase" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 -msgid "Las cuentas sólo serán visibles por el usuario." -msgstr "Accounts will be only visible by the user." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 -msgid "Los administradores no podrán acceder a las cuentas." -msgstr "Administrators won't be able to display the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 -msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." -msgstr "Accounts will be only visible by the user and his/her main group." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 -msgid "Dirección IP" -msgstr "IP Address" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 -msgid "Timeout" -msgstr "Timeout" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 -msgid "" -"Prioridad de asignación en caso de coincidir con otros valores asignados por " -"usuario, grupo o perfil." -msgstr "" -"Assignment priority if values match with others assigned by user, group or " -"profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 -msgid "" -"Indica si los valores serán forzados al crear o modificar los elementos." -msgstr "Enforces the values to be set either on creating or updating an item." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 -msgid "Los valores serán añadidos a los existentes." -msgstr "Values will be merged with the existing ones." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 -msgid "Valores por Defecto" -msgstr "Default Values" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 -msgid "Gestión de Valores por Defecto" -msgstr "Default Values Management" - #. (itstool) path: action/text #: ../../../config/actions.xml:847 msgid "Gestión Valores Predeterminados" msgstr "Preset Values Management" -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:118 -msgid "Error al vaciar tracks" -msgstr "Error while clearing tracks out" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 -msgid "Tracks" -msgstr "Tracks" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 -msgid "Fecha Desbloqueo" -msgstr "Date Unlocked" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 -#: ../../../config/actions.xml:889 -msgid "Buscar Track" -msgstr "Search for track" - -#: ../../../modules/web/Controllers/TrackController.php:110 -msgid "Track desbloqueado" -msgstr "Track unlocked" - -#: ../../../modules/web/Controllers/TrackController.php:135 -msgid "Tracks limpiados" -msgstr "Tracks cleared out" - -#: ../../../config/strings.js.inc:96 -msgid "Vaciar los tracks?" -msgstr "Clear tracks out?" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:109 -msgid "Seguridad y Auditoría" -msgstr "Security and Audit" - #. (itstool) path: action/text #: ../../../config/actions.xml:883 msgid "Gestión de Tracks" @@ -8178,47 +4929,2036 @@ msgstr "Unlock track" msgid "Vaciar tracks" msgstr "Clear tracks out" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 -msgid "Id de grupo" -msgstr "Group Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:4 +msgid "Color" +msgstr "Farve" -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 -msgid "Array con Ids de usuarios" -msgstr "Array with users Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:5 +msgid "Número" +msgstr "Nummer" -#: ../../../modules/api/Controllers/UserGroupController.php:61 -msgid "Grupo visualizado" -msgstr "Group viewed" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:6 +msgid "Teléfono" +msgstr "Telefon" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 -#: ../../../config/actions.xml:493 -msgid "Actualización Masiva" -msgstr "Bulk Update" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:7 +msgid "Área de Texto" +msgstr "Tekstfelt" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 -msgid "Propietario" -msgstr "Owner" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:8 +msgid "Texto" +msgstr "Tekst" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 -msgid "Buscar cuentas por nombre de cliente" -msgstr "Search for accounts by client name" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:9 +msgid "Link" +msgstr "Link" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 -msgid "Buscar cuentas por nombre de categoría" -msgstr "Search for accounts by category name" +#~ msgid "CONSULTA INVÁLIDA" +#~ msgstr "UGYLDIG FORESPØRGSEL" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 -msgid "Eliminar Historial" -msgstr "Delete History" +#~ msgid "La sesión no se ha iniciado o ha caducado" +#~ msgstr "Sessionen er ikke startet eller den er udløbet" + +#~ msgid "Es necesario un nombre de cuenta" +#~ msgstr "Et kontonavn er påkrævet" + +#~ msgid "Es necesario un nombre de cliente" +#~ msgstr "Et klientnavn er påkrævet" + +#~ msgid "Es necesario un usuario" +#~ msgstr "Et brugernavn er påkrævet" + +#~ msgid "Es necesaria una clave" +#~ msgstr "En er påkrævet" + +#~ msgid "Es necesario una categoría" +#~ msgstr "En kategori er påkrævet" + +#~ msgid "Acción Inválida" +#~ msgstr "Ugyldig handling" + +#~ msgid "Las claves no coinciden" +#~ msgstr "Kodeordene er ikke identiske" + +#~ msgid "Error al crear la cuenta" +#~ msgstr "Fejl i oprettelsen af kontoen" + +#~ msgid "Error al modificar la cuenta" +#~ msgstr "Fejl i opdateringen af kontoen" + +#~ msgid "Error al eliminar la cuenta" +#~ msgstr "Fejl i sletning af kontoen" + +#~ msgid "Error al actualizar la clave" +#~ msgstr "Fejl i opdateringen af kodeordet" + +#~ msgid "Cuenta restaurada" +#~ msgstr "Kontoen er genskabt" + +#~ msgid "Error al restaurar cuenta" +#~ msgstr "Fejl i genskabelse af kontoen" + +#, fuzzy +#~ msgid "Es necesario un nombre de usuario" +#~ msgstr "Et brugernavn er påkrævet" + +#~ msgid "Es necesario un login" +#~ msgstr "Et login er påkrævet" + +#~ msgid "Es necesario un perfil" +#~ msgstr "En profil er påkrævet" + +#~ msgid "Es necesario un grupo" +#~ msgstr "En gruppe er påkrævet" + +#~ msgid "Es necesario un email" +#~ msgstr "En e-mailadresse er påkrævet" + +#~ msgid "Ey, esto es una DEMO!!" +#~ msgstr "Øj, dette er en DEMO-version!!" + +#~ msgid "La clave no puede estar en blanco" +#~ msgstr "Kodeordet må ikke være tomt" + +#~ msgid "Usuario creado" +#~ msgstr "Bruger tilføjet" + +#~ msgid "Error al crear el usuario" +#~ msgstr "Fejl under oprettelsen af bruger" + +#~ msgid "Usuario actualizado" +#~ msgstr "Bruger opdateret" + +#~ msgid "Error al actualizar el usuario" +#~ msgstr "Fejl under opdateringen af bruger" + +#~ msgid "Error al modificar la clave" +#~ msgstr "Fejl under opdateringen af kodeordet" + +#~ msgid "No es posible eliminar, usuario en uso" +#~ msgstr "Brugeren er aktiv og kan ikke slettes" + +#~ msgid "Usuario eliminado" +#~ msgstr "Bruger slettet" + +#~ msgid "Error al eliminar el usuario" +#~ msgstr "Fejl under sletning af bruger" + +#~ msgid "Es necesario un nombre de grupo" +#~ msgstr "Et gruppenavn er påkrævet" + +#~ msgid "Nombre de grupo duplicado" +#~ msgstr "Gruppenavnet er allerede i brug" + +#~ msgid "Error al crear el grupo" +#~ msgstr "Fejl under oprettelsen af gruppen" + +#~ msgid "Error al actualizar el grupo" +#~ msgstr "Fejl under opdateringen af gruppen" + +#~ msgid "No es posible eliminar" +#~ msgstr "Kan ikke slette" + +#~ msgid "Error al eliminar el grupo" +#~ msgstr "Fejl under sletning af gruppe" + +#~ msgid "Es necesario un nombre de perfil" +#~ msgstr "Et profilnavn er påkrævet" + +#~ msgid "Nombre de perfil duplicado" +#~ msgstr "Profilnavnet er allerede i brug" + +#~ msgid "Perfil creado" +#~ msgstr "Profil tilføjet" + +#~ msgid "Perfil actualizado" +#~ msgstr "Profil opdateret" + +#~ msgid "Perfil eliminado" +#~ msgstr "Profil slettet" + +#~ msgid "Es necesario un nombre de categoría" +#~ msgstr "Et kategorinavn er påkrævet" + +#~ msgid "Autorización creada" +#~ msgstr "Autorisation tilføjet" + +#~ msgid "Autorización actualizada" +#~ msgstr "Autorisation opdateret" + +#~ msgid "Autorización eliminada" +#~ msgstr "Autorisation slettet" + +#~ msgid "Nombre del campo no indicado" +#~ msgstr "Feltnavn ikke angivet" + +#~ msgid "Tipo del campo no indicado" +#~ msgstr "Felttype ikke angivet" + +#~ msgid "Módulo del campo no indicado" +#~ msgstr "Feltmodul ikke angivet" + +#~ msgid "Campo creado" +#~ msgstr "Felt tilføjet" + +#~ msgid "Campo actualizado" +#~ msgstr "Felt opdateret" + +#~ msgid "Campo eliminado" +#~ msgstr "Felt slettet" + +#~ msgid "Realizar Backup" +#~ msgstr "Udfør backup" + +#~ msgid "Error al realizar el backup" +#~ msgstr "Fejl under udførelsen af backup" + +#~ msgid "Revise el registro de eventos para más detalles" +#~ msgstr "Se venligst hændelsesloggen for yderligere detaljer" + +#~ msgid "Copia de la aplicación y base de datos realizada correctamente" +#~ msgstr "Applikations- og databasebackup blev gennemført korrekt" + +#~ msgid "Error al realizar la exportación de cuentas" +#~ msgstr "Fejl under eksportering af konti" + +#~ msgid "Error al realizar la exportación" +#~ msgstr "Fejl under eksportering" + +#~ msgid "Exportación de cuentas realizada correctamente" +#~ msgstr "Eksportering blev gennemført korrekt" + +#~ msgid "Los parámetros de LDAP no están configurados" +#~ msgstr "LDAP-parametrene er ikke angivet" + +#~ msgid "Conexión a LDAP correcta" +#~ msgstr "LDAP-forbindelsen er OK" + +#~ msgid "Objetos encontrados" +#~ msgstr "Objekter fundet" + +#~ msgid "Modificar Configuración" +#~ msgstr "Tilret konfiguration" + +#~ msgid "El tamaño máximo por archivo es de 16MB" +#~ msgstr "Maksimal tilladt filstørrelse er 16MB" + +#~ msgid "Faltan parámetros de Proxy" +#~ msgstr "Proxy-parametre ikke angivet" + +#~ msgid "Proxy habiltado" +#~ msgstr "Proxy er aktiveret" + +#~ msgid "Proxy deshabilitado" +#~ msgstr "Proxy er deaktiveret" + +#~ msgid "Sección" +#~ msgstr "Sektion" + +#~ msgid "Faltan parámetros de Wiki" +#~ msgstr "Wiki-parametre ikke angivet" + +#~ msgid "Wiki habiltada" +#~ msgstr "Wiki er aktiveret" + +#~ msgid "Wiki deshabilitada" +#~ msgstr "Wiki er deaktiveret" + +#~ msgid "Faltan parámetros de LDAP" +#~ msgstr "LDAP-parametre er ikke angivet" + +#~ msgid "LDAP habiltado" +#~ msgstr "LDAP aktiveret" + +#~ msgid "LDAP deshabilitado" +#~ msgstr "LDAP deaktiveret" + +#~ msgid "Faltan parámetros de Correo" +#~ msgstr "E-mail parametre ikke angivet" + +#~ msgid "Correo habiltado" +#~ msgstr "E-mail er aktiveret" + +#~ msgid "Correo deshabilitado" +#~ msgstr "E-mail er deaktiveret" + +#~ msgid "Configuración actualizada" +#~ msgstr "Konfiguration opdateret" + +#~ msgid "Clave maestra no indicada" +#~ msgstr "Hoved-kodeord skal angives" + +#~ msgid "Se ha de confirmar el cambio de clave" +#~ msgstr "Opdateringen af kodeordet skal bekræftes" + +#~ msgid "Las claves son idénticas" +#~ msgstr "Kodeordene er identiske" + +#~ msgid "Las claves maestras no coinciden" +#~ msgstr "Hoved-kodeordene er ikke identiske" + +#~ msgid "La clave maestra actual no coincide" +#~ msgstr "Det nuværende hoved-kodeord passer ikke" + +#~ msgid "Errores al actualizar las claves de las cuentas" +#~ msgstr "Fejl under opdatering af kontoens kodeord" + +#~ msgid "Errores al actualizar las claves de las cuentas del histórico" +#~ msgstr "Fej under opdatering af kontoens kodeords-historik" + +#~ msgid "Errores al actualizar datos de campos personalizados" +#~ msgstr "Fejl under opdatering af de brugerdefinerede felters indhold" + +#~ msgid "Error al guardar el hash de la clave maestra" +#~ msgstr "Fejl under lagring af Hoved-kodeordets kontrolsum" + +#~ msgid "Generar Clave Temporal" +#~ msgstr "Opret midlertidigt kodeord" + +#~ msgid "Clave Temporal Generada" +#~ msgstr "Midlertidigt kodeord oprettet" + +#~ msgid "Error al generar clave temporal" +#~ msgstr "Fejl under indtastning af midlertidigt kodeord" + +#~ msgid "Usuario/Clave no introducidos" +#~ msgstr "Bruger/Kodeord skal angives" + +#~ msgid "Inicio sesión" +#~ msgstr "Log ind" + +#~ msgid "Error al guardar los datos de LDAP" +#~ msgstr "Fejl under lagring af LDAP brugerdata" + +#~ msgid "Error al actualizar la clave del usuario en la BBDD" +#~ msgstr "Fejl under opdatering af brugerens kodeord i databasen" + +#~ msgid "Login incorrecto" +#~ msgstr "Forkert login" + +#~ msgid "Cuenta expirada" +#~ msgstr "Konto udløbet" + +#~ msgid "El usuario no tiene grupos asociados" +#~ msgstr "Brugeren er ikke associeret med nogle grupper" + +#~ msgid "Usuario deshabilitado" +#~ msgstr "Brugerkonto inaktiv" + +#~ msgid "Error al obtener los datos del usuario de la BBDD" +#~ msgstr "Fejl under indlæsning af brugerens data fra databasen" + +#~ msgid "La clave maestra no ha sido guardada o es incorrecta" +#~ msgstr "Hoved-kodeordet er enten ikke gemt, eller forkert" + +#~ msgid "Clave maestra incorrecta" +#~ msgstr "Forkert Hoved-kodeord" + +#~ msgid "No hay extensiones permitidas" +#~ msgstr "Der findes ingen tilladte filtype-angivelser(endelser)" + +#~ msgid "Tipo de archivo no soportado" +#~ msgstr "Filtype ikke tilladt" + +#~ msgid "Archivo inválido" +#~ msgstr "Ugyldig fil" + +#~ msgid "Error interno al leer el archivo" +#~ msgstr "Intern fejl under læsning af filen" + +#~ msgid "Archivo guardado" +#~ msgstr "Fil gemt" + +#~ msgid "No se pudo guardar el archivo" +#~ msgstr "Fejl under lagring af filen" + +#~ msgid "No es un ID de archivo válido" +#~ msgstr "Ugyldigt fil-ID" + +#~ msgid "El archivo no existe" +#~ msgstr "Filen findes ikke" + +#~ msgid "Archivo eliminado" +#~ msgstr "Fil slettet" + +#~ msgid "Error al eliminar el archivo" +#~ msgstr "Fejl under sletning af fil" + +#~ msgid "Parámetros incorrectos" +#~ msgstr "Forkerte parametre" + +#~ msgid "Recuperación de Clave" +#~ msgstr "Genskabelse af kodeord" + +#~ msgid "Solicitado para" +#~ msgstr "Efterspørges af" + +#~ msgid "Solicitud enviada" +#~ msgstr "Anmodning afsendt" + +#~ msgid "En breve recibirá un correo para completar la solicitud." +#~ msgstr "Du vil snart modtage en e-mail for at gennemføre anmodningen" + +#~ msgid "Modificar Clave Usuario" +#~ msgstr "Skift brugerens kodeord" + +#~ msgid "La clave es incorrecta o no coincide" +#~ msgstr "Forkerte kodeord eller ikke-identiske kodeord" + +#~ msgid "Es necesaria una descripción" +#~ msgstr "En beskrivelse er påkrævet" + +#~ msgid "Solicitud de Modificación de Cuenta" +#~ msgstr "Anmodning om ændring af konto" + +#~ msgid "Solicitante" +#~ msgstr "Ansøger" + +#~ msgid "Error al actualizar preferencias" +#~ msgstr "Fejl under opdatering af foretrukne indstillinger" + +#~ msgid "Preferencias actualizadas" +#~ msgstr "Foretrukne indstillinger opdaterede" + +#~ msgid "La clave maestra no coincide" +#~ msgstr "Hoved-kodeordene er ikke identiske" + +#~ msgid "No es posible acceder directamente a este archivo" +#~ msgstr "Kan ikke tilgå filen" + +#~ msgid "Error al actualizar el historial" +#~ msgstr "Fejl under opdatering af historik" + +#~ msgid "Actualizar Cuenta" +#~ msgstr "Opdater konto" + +#~ msgid "Error al actualizar los grupos secundarios" +#~ msgstr "Fejl under opdatering af sekundære grupper" + +#~ msgid "Error al actualizar los usuarios de la cuenta" +#~ msgstr "Fejl under opdatering af kontoens brugere" + +#~ msgid "No se pudieron obtener los datos de la cuenta" +#~ msgstr "Fejl under indlæsning af kontodata" + +#~ msgid "Error al eliminar grupos asociados a la cuenta" +#~ msgstr "Fejl under sletning af kontoens grupper" + +#~ msgid "Error al eliminar usuarios asociados a la cuenta" +#~ msgstr "Fejl under sletning af kontoens brugere" + +#~ msgid "Error al eliminar archivos asociados a la cuenta" +#~ msgstr "Fejl under sletning af kontoens filer" + +#~ msgid "Inicio" +#~ msgstr "Start" + +#~ msgid "Error en el módulo de encriptación" +#~ msgstr "Fejl i krypteringsmodulet" + +#~ msgid "Error al obtener las claves de las cuentas" +#~ msgstr "Fejl under indlæsning af kontoens kodeord" + +#~ msgid "Fallo al actualizar la clave de la cuenta" +#~ msgstr "Fejl under opdatering af kontoens kodeord" + +#~ msgid "Cuentas actualizadas" +#~ msgstr "Konti opdaterede" + +#~ msgid "No se pudieron obtener los datos de las cuentas" +#~ msgstr "Kan ikke indlæse kontoens data" + +#~ msgid "Actualizar Clave Maestra (H)" +#~ msgstr "Opdater Hoved-kodeord (H)" + +#~ msgid "La clave maestra del registro no coincide" +#~ msgstr "Registreringens Hoved-kodeord passer ikke" + +#~ msgid "Fallo al actualizar la clave del histórico" +#~ msgstr "Fejl under opdateringen af historikkens Hoved-kodeord" + +#~ msgid "Registros actualizados" +#~ msgstr "Registreringerne er opdaterede" + +#~ msgid "Gestión Aplicación" +#~ msgstr "Applikationsadministration" + +#~ msgid "Exportar" +#~ msgstr "Eksport" + +#~ msgid "Acceso no permitido" +#~ msgstr "Uautoriseret adgang" + +#~ msgid "Error de codificación" +#~ msgstr "Krypteringsfejl" + +#~ msgid "La autorización ya existe" +#~ msgstr "Autorisationen er allerede i brug" + +#~ msgid "Actualizar Autorización" +#~ msgstr "Opdater autorisation" + +#~ msgid "Usuario no pertenece al grupo" +#~ msgstr "Brugeren tilhører ikke gruppen" + +#~ msgid "Esta operación sólo es posible en entornos Linux" +#~ msgstr "Denne handling kan kun udføres på Linux-systemer" + +#~ msgid "Error al realizar backup en modo compatibilidad" +#~ msgstr "Fejl under udførelsen af backup i kompatibilitetstilstand" + +#~ msgid "Compruebe los permisos del directorio de backups" +#~ msgstr "Kontroller venligst rettighederne på backup-mappen" + +#~ msgid "Nombre de categoría duplicado" +#~ msgstr "Kategorinavn er allerede i brug" + +#~ msgid "Error al crear la categoría" +#~ msgstr "Fejl under oprettelsen af kategorien" + +#~ msgid "Error al eliminar la categoría" +#~ msgstr "Fejl under sletning af kategorien" + +#~ msgid "Error al actualizar la categoría" +#~ msgstr "Fejl under opdatering af kategorien" + +#~ msgid "Modificar configuración" +#~ msgstr "Opdater konfiguration" + +#~ msgid "Parámetro" +#~ msgstr "Parameter" + +#~ msgid "Valor" +#~ msgstr "Værdi" + +#~ msgid "" +#~ "Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." +#~ msgstr "" +#~ "Hoved-kodeordets kontrolsum er blevet genudregnet. Ingen yderligere " +#~ "handling er påkrævet" + +#~ msgid "No es posible generar las claves RSA" +#~ msgstr "Kan ikke oprette RSA-nøgler" + +#~ msgid "El archivo de clave no existe" +#~ msgstr "Nøglefilen findes ikke" + +#~ msgid "Error importando cuenta" +#~ msgstr "Fejl under importering af konto" + +#~ msgid "Registros no actualizados" +#~ msgstr "Registreringer er ikke opdateret" + +#~ msgid "Cliente duplicado" +#~ msgstr "Duplikeret klient" + +#~ msgid "Error al crear el cliente" +#~ msgstr "Fejl under oprettelsen af klienten" + +#~ msgid "Error al actualizar el cliente" +#~ msgstr "Fejl under opdateringen af klienten" + +#~ msgid "Actualizar Cliente" +#~ msgstr "Opdater klient" + +#~ msgid "Error al eliminar el cliente" +#~ msgstr "Fejl under sletningen af klienten" + +#~ msgid "No es posible conectar con la BD" +#~ msgstr "Kan ikke forbinde til databasen" + +#~ msgid "Compruebe los datos de conexión" +#~ msgstr "Kontroller venligst forbindelsesparametrene" + +#~ msgid "Realizado por" +#~ msgstr "Udført af" + +#~ msgid "Enviar Email" +#~ msgstr "Send E-mail" + +#~ msgid "Correo enviado" +#~ msgstr "E-mail afsendt" + +#~ msgid "Error al enviar correo" +#~ msgstr "Fejl under afsendelse af E-mailen" + +#~ msgid "Destinatario" +#~ msgstr "Modtager" + +#~ msgid "CC" +#~ msgstr "CC" + +#~ msgid "Archivo no subido correctamente" +#~ msgstr "Filen er uploadet" + +#~ msgid "Verifique los permisos del usuario del servidor web" +#~ msgstr "Kontroller venligst webserverens brugertilladelser" + +#~ msgid "Compruebe la extensión del archivo" +#~ msgstr "Kontroller venligst fil-endelsen" + +#~ msgid "Compruebe la configuración de PHP para subir archivos" +#~ msgstr "Kontroller venligst PHP konfigurationen for fil-upload" + +#~ msgid "Compruebe los permisos del directorio temporal" +#~ msgstr "Kontroller venligst tilladelserne på det midlertidige fil-lager" + +#~ msgid "Error al eliminar los usuarios del grupo" +#~ msgstr "Fejl under sletning af gruppens brugere" + +#~ msgid "Compruebe el formato del archivo" +#~ msgstr "Kontroller venligst filformatet" + +#~ msgid "Importación finalizada" +#~ msgstr "Import færdig" + +#~ msgid "La sesión no puede ser inicializada" +#~ msgstr "Sessionen kan ikke initialiseres" + +#~ msgid "El directorio \"/config\" no existe" +#~ msgstr "\"/config\" -mappen findes ikke" + +#~ msgid "No es posible escribir en el directorio \"config\"" +#~ msgstr "Kan ikke skrive i \"/config\" -mappen" + +#~ msgid "Los permisos del directorio \"/config\" son incorrectos" +#~ msgstr "Rettighederne på \"/config\" -mappen er forkerte" + +#~ msgid "Finalizar sesión" +#~ msgstr "Afslut session" + +#~ msgid "Tiempo inactivo" +#~ msgstr "Inaktiv tid" + +#~ msgid "Tiempo total" +#~ msgstr "Total tid" + +#~ msgid "Actualización" +#~ msgstr "Opdatering" + +#~ msgid "Actualización de versión realizada." +#~ msgstr "Versionsopdatering udført." + +#~ msgid "Indicar nombre de usuario admin" +#~ msgstr "Indtast venligst administrator-brugernavnet" + +#~ msgid "Usuario admin para acceso a la aplicación" +#~ msgstr "Administrator-brugeren der logger ind i applikationen" + +#~ msgid "Indicar la clave de admin" +#~ msgstr "Indtast venligst administrator-adgangskoden" + +#~ msgid "Clave del usuario admin de la aplicación" +#~ msgstr "Applikationsadministratorens adgangskode" + +#~ msgid "Indicar la clave maestra" +#~ msgstr "Indtast venligst Hoved-kodeordet" + +#~ msgid "Clave maestra para encriptar las claves" +#~ msgstr "Hoved-kodeord til kryptering af kodeordene" + +#~ msgid "Clave maestra muy corta" +#~ msgstr "Hoved-kodeordet er for kort" + +#~ msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" +#~ msgstr "Hoved-kodeordet skal være mindst 11 tegn" + +#~ msgid "Indicar el usuario de la BBDD" +#~ msgstr "Indtast venligst database-brugernavnet" + +#, fuzzy +#~ msgid "Usuario con permisos de administrador de la Base de Datos" +#~ msgstr "En bruger med administrationsrettigheder på databasen" + +#~ msgid "Indicar el nombre de la BBDD" +#~ msgstr "Indtast venligst databasenavnet" + +#~ msgid "Nombre para la BBDD de la aplicación pej. syspass" +#~ msgstr "Applikationsdatabasenavn, f.eks. syspass" + +#~ msgid "El nombre de la BBDD no puede contener \".\"" +#~ msgstr "Databasenavnet må ikke indeholde \".\"" + +#~ msgid "Elimine los puntos del nombre de la Base de Datos" +#~ msgstr "Fjern venligst punktummer i databasenavnet" + +#~ msgid "Indicar el servidor de la BBDD" +#~ msgstr "Indtast venligst databaseserverens navn/adresse" + +#~ msgid "Servidor donde se instalará la Base de Datos" +#~ msgstr "Serveren som databasen oprettes på" + +#~ msgid "No es posible comprobar el usuario de sysPass" +#~ msgstr "Kan ikke kontrollere sysPass-brugeren" + +#~ msgid "Compruebe los permisos del usuario de conexión a la BD" +#~ msgstr "Kontroller venligst rettighederne for adgang til databasen" + +#~ msgid "La BBDD ya existe" +#~ msgstr "Databasen findes allerede" + +#~ msgid "Indique una nueva Base de Datos o elimine la existente" +#~ msgstr "" +#~ "Indtast venligst et nyt databasenavn eller slet den eksisterende database" + +#~ msgid "Error al crear la BBDD" +#~ msgstr "Fejl under oprettelsen af databasen" + +#~ msgid "Verifique los permisos del usuario de la Base de Datos" +#~ msgstr "Kontroller venligst brugerrettighederne på databasen" + +#~ msgid "El archivo de estructura de la BBDD no existe" +#~ msgstr "Databasens strukturfil findes ikke" + +#~ msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." +#~ msgstr "Kan ikke oprette databasen. Download den venligst igen." + +#~ msgid "Error al seleccionar la BBDD" +#~ msgstr "Fejl under valg af databasen." + +#~ msgid "" +#~ "No es posible usar la Base de Datos para crear la estructura. Compruebe " +#~ "los permisos y que no exista." +#~ msgstr "" +#~ "Kan ikke åbne databasen for at oprette strukturen. Kontroller rettigheder " +#~ "og at den ikke allerede er oprettet." + +#~ msgid "Error al crear la estructura de la Base de Datos." +#~ msgstr "Fejl under oprettelsen af databasestrukturen." + +#~ msgid "Informe al desarrollador" +#~ msgstr "Advarsel til udviklerne" + +#~ msgid "Error al actualizar la clave maestra del usuario \"admin\"" +#~ msgstr "Fejl under opdateringen af Hoved-kodeordet for brugeren \"admin\"" + +#~ msgid "No es posible conectar con el servidor de LDAP" +#~ msgstr "Kan ikke forbinde til LDAP-serveren" + +#~ msgid "Error al conectar (BIND)" +#~ msgstr "Forbindelsesfejl (BIND)" + +#~ msgid "Error al buscar objetos en DN base" +#~ msgstr "Fejl under søgnig efter objekter i 'base DN'" + +#~ msgid "Error al buscar RDN de grupo" +#~ msgstr "Fejl under søgning i gruppen RDN" + +#~ msgid "Error al localizar el usuario en LDAP" +#~ msgstr "Fejl under søgning efter brugeren i LDAP" + +#~ msgid "Error al buscar el grupo de usuarios" +#~ msgstr "Fejl under søgningen i brugergruppen" + +#~ msgid "Usuario verificado en grupo" +#~ msgstr "Bruger verificeret som tilhørende gruppen" + +#~ msgid "Vaciar Eventos" +#~ msgstr "Ryd hændelser" + +#~ msgid "Cliente no encontrado" +#~ msgstr "Klient ikke fundet" + +#~ msgid "Error al obtener los usuarios" +#~ msgstr "Fejl under indlæsning af brugerne" + +#~ msgid "Migrar Perfiles" +#~ msgstr "Migrer profiler" + +#~ msgid "Error al obtener perfiles" +#~ msgstr "Fejl under indlæsning af profilerne" + +#~ msgid "Operación realizada correctamente" +#~ msgstr "Handlingen blev korrekt gennemført" + +#~ msgid "Fallo al realizar la operación" +#~ msgstr "Fejl under udførelse af handlingen" + +#~ msgid "Formato de XML inválido" +#~ msgstr "Ugyldigt XML-format" + +#~ msgid "Error al aplicar la actualización de la Base de Datos" +#~ msgstr "Fejl under opdateringen af databasen" + +#~ msgid "Compruebe el registro de eventos para más detalles" +#~ msgstr "Se venligst hændelsesloggen for yderligere detaljer" + +#~ msgid "Error al aplicar la actualización auxiliar" +#~ msgstr "Fejl under udførelsen af en tillægsopdatering" + +#~ msgid "Actualizar BBDD" +#~ msgstr "Opdater databasen" + +#~ msgid "No es necesario actualizar la Base de Datos." +#~ msgstr "Databaseopdatering ikke påkrævet" + +#~ msgid "Actualización de la Base de Datos realizada correctamente." +#~ msgstr "Databaseopdateringen blev korrekt udført" + +#~ msgid "Actualizar Configuración" +#~ msgstr "Opdater konfigurationen" + +#~ msgid "No se pudo realizar la petición de cambio de clave." +#~ msgstr "Kunne ikke gennemføre forespørgslen om ændring af kodeord" + +#~ msgid "Usuario de LDAP" +#~ msgstr "LDAP-bruger" + +#~ msgid "Activación Cuenta" +#~ msgstr "Kontoaktivering" + +#~ msgid "Su cuenta está pendiente de activación." +#~ msgstr "Din konto afventer aktivering" + +#~ msgid "En breve recibirá un email de confirmación." +#~ msgstr "Du vil snarest modtage en bekræftelses-mail" + +#~ msgid "Nuevo usuario de LDAP" +#~ msgstr "Ny LDAP-bruger" + +#~ msgid "Error al migrar grupo del usuario" +#~ msgstr "Fejl under migrering af brugergruppe" + +#~ msgid "Versión de PHP requerida >= " +#~ msgstr "Påkrævet PHP version >= " + +#~ msgid "" +#~ "Actualice la versión de PHP para que la aplicación funcione correctamente" +#~ msgstr "Opdater venligst din PHP version for at køre sysPass" + +#~ msgid "Exportar XML" +#~ msgstr "XML eksport" + +#~ msgid "Error al crear el archivo XML" +#~ msgstr "Fejl under oprettelsen af XML-filen" + +#~ msgid "No es posible procesar el archivo XML" +#~ msgstr "Kan ikke processere XML-filen" + +#~ msgid "Archivo XML no soportado" +#~ msgstr "XML-filen er ikke understøttet" + +#~ msgid "No es posible detectar la aplicación que exportó los datos" +#~ msgstr "Kan ikke udlede hvilken applikation den stammer fra" + +#~ msgid "Último backup" +#~ msgstr "Sidste backup" + +#~ msgid "Última exportación" +#~ msgstr "Sidste eksportering" + +#~ msgid "Registro de eventos vaciado" +#~ msgstr "Hændelsesloggen ryddet" + +#, fuzzy +#~ msgid "Error al vaciar el registro de eventos" +#~ msgstr "Fejl under rydning af hændelsesloggen" + +#~ msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" +#~ msgstr "" +#~ "Denne PHP-version er følsom overfor NULL byte attack (CVE-2006-7243)" + +#~ msgid "Actualice la versión de PHP para usar sysPass de forma segura" +#~ msgstr "Opdater venligst PHP så sysPass kan afvikles sikkert" + +#~ msgid "No se encuentra el generador de números aleatorios." +#~ msgstr "Kan ikke finde en tilfældighedsgenerator" + +#~ msgid "" +#~ "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" +#~ msgstr "" +#~ "Uden denne funktion kan en angriber overtage din konto hvis du nulstiller " +#~ "kodeordet" + +#~ msgid "Instalación finalizada" +#~ msgstr "Installation færdig" + +#~ msgid "Descargar nueva versión" +#~ msgstr "Download ny version" + +#~ msgid "Token de autorización visualizado" +#~ msgstr "Autorisationspolet vist" + +#~ msgid "Autorizaciones" +#~ msgstr "Autorisationer" + +#~ msgid "Hablitar edición" +#~ msgstr "Aktiver tilretning" + +#~ msgid "Usuarios Secundarios" +#~ msgstr "Sekundære brugere" + +#~ msgid "Grupos Secundarios" +#~ msgstr "Sekundære grupper" + +#~ msgid "Modificar Cuenta" +#~ msgstr "Tilret konto" + +#~ msgid "No hay backups para descargar" +#~ msgstr "Der findes ingen backup til download" + +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "Der findes ingen XML-filer til download" + +#~ msgid "Se permite un máximo de 4 caracteres." +#~ msgstr "Max 4 tegn tilladt" + +#~ msgid "Primera página" +#~ msgstr "Første side" + +#~ msgid "Página anterior" +#~ msgstr "Foregående side" + +#~ msgid "Página siguiente" +#~ msgstr "Næste side" + +#~ msgid "Última página" +#~ msgstr "Sidste side" + +#~ msgid "Comprobar" +#~ msgstr "Kontrollér" + +#~ msgid "Cambiar Clave" +#~ msgstr "Skift kodeord" + +#~ msgid "Añadir" +#~ msgstr "Tilføj" + +#~ msgid "Abrir enlace a" +#~ msgstr "Åbn link til" + +#~ msgid "Limpiar" +#~ msgstr "Ryd" + +#~ msgid "Parámetros especiales:" +#~ msgstr "Specielle parametre" + +#~ msgid "Realizar" +#~ msgstr "Udfør" + +#~ msgid "Extensión" +#~ msgstr "Udvidelse" + +#~ msgid "Tamaño de archivo superado" +#~ msgstr "Max. filstørrelse overskredet" + +#~ msgid "Solicitud no enviada" +#~ msgstr "Forespørgsel ikke sendt" + +#~ msgid "Compruebe datos de usuario o consulte con el administrador" +#~ msgstr "Kontrollér venligst brugerens data eller kontakt administratoren" + +#~ msgid "La cuenta no existe" +#~ msgstr "Kontoen findes ikke" + +#~ msgid "Errores" +#~ msgstr "Fejl" + +#~ msgid "Error al añadir favorito" +#~ msgstr "Fejl under tilføjelse af foretrukken" + +#~ msgid "Error al eliminar favorito" +#~ msgstr "Fejl under sletning af foretrukken" + +#~ msgid "Error al eliminar las etiquetas de la cuenta" +#~ msgstr "Fejl under sletning af kontoens mærker" + +#~ msgid "Método inválido" +#~ msgstr "Ugyldig metode" + +#~ msgid "Datos inválidos" +#~ msgstr "Ugyldige data" + +#~ msgid "Formato incorrecto" +#~ msgstr "Forkert format" + +#~ msgid "Nombre de categoría a buscar" +#~ msgstr "Kategorinavne der skal søges efter" + +#~ msgid "Nombre de cliente a buscar" +#~ msgstr "Klientnavn der skal søges efter" + +#~ msgid "Método ya inicializado" +#~ msgstr "Metoden er allerede initialiseret" + +#~ msgid "Método no disponible" +#~ msgstr "Metoden er ikke tilgængelig" + +#~ msgid "Los parámetros de DokuWiki no están configurados" +#~ msgstr "DokuWiki-parametrene er ikke sat" + +#~ msgid "Error" +#~ msgstr "Fejl" + +#~ msgid "Conexión correcta" +#~ msgstr "Forbindelse oprettet" + +#~ msgid "Error de conexión a DokuWiki" +#~ msgstr "Fejl under forbindelse til DokuWiki" + +#~ msgid "Faltan parámetros de syslog remoto" +#~ msgstr "Der mangler parametre til ekstern syslog " + +#~ msgid "Syslog remoto deshabilitado" +#~ msgstr "Ekstern syslog er deaktiveret" + +#~ msgid "Error al guardar la configuración" +#~ msgstr "Fejl under lagring af konfigurationen" + +#~ msgid "Faltan parámetros de DokuWiki" +#~ msgstr "Manglende DokuWiki-parametre" + +#~ msgid "DokuWiki habiltada" +#~ msgstr "DokuWiki aktiveret" + +#~ msgid "DokuWiki deshabilitada" +#~ msgstr "DokuWiki deaktiveret" + +#~ msgid "Enlace creado" +#~ msgstr "Link oprettet" + +#~ msgid "Enlace actualizado" +#~ msgstr "Link opdateret" + +#~ msgid "Enlace eliminado" +#~ msgstr "Link slettet" + +#~ msgid "Plugin habilitado" +#~ msgstr "Plugin aktiveret" + +#~ msgid "Plugin deshabilitado" +#~ msgstr "Plugin deaktiveret" + +#~ msgid "Plugin restablecido" +#~ msgstr "Plugin nulstillet" + +#~ msgid "Favorito añadido" +#~ msgstr "Foretrukken tilføjet" + +#~ msgid "Favorito eliminado" +#~ msgstr "Foretrukken slettet" + +#~ msgid "Importación de usuarios de LDAP realizada" +#~ msgstr "Import af LDAP-brugere udført" + +#~ msgid "Error al importar usuarios de LDAP" +#~ msgstr "Fejl under import af LDAP-brugere" + +#~ msgid "Notificación leída" +#~ msgstr "Notifikation læst" + +#~ msgid "Notificación eliminada" +#~ msgstr "Notifikation slettet" + +#~ msgid "Solicitud enviada por correo" +#~ msgstr "Forespørgsel er sendt pr. E-mail" + +#~ msgid "Solicitud no enviada por correo" +#~ msgstr "Forespørgsel er ikke sendt pr. E-mail" + +#~ msgid "Solicitud realizada" +#~ msgstr "Forespørgsel udført" + +#~ msgid "Detalles de Plugin" +#~ msgstr "Plugindetaljer" + +#~ msgid "Error al obtener la clave maestra del usuario" +#~ msgstr "Fejl under indlæsning af brugerens Hoved-kodeord" + +#~ msgid "Es necesaria su clave anterior" +#~ msgstr "Dit tidligere kodeord er påkrævet" + +#~ msgid "Servidor LDAP" +#~ msgstr "LDAP-server" + +#~ msgid "Buscar Categorías" +#~ msgstr "Søg efter kategorier" + +#~ msgid "Añadir Categoría" +#~ msgstr "Tilføj kategori" + +#~ msgid "Buscar Clientes" +#~ msgstr "Søg efter klient" + +#~ msgid "Añadir Cliente" +#~ msgstr "Tilføj klient" + +#~ msgid "Observador no inicializado" +#~ msgstr "Observatør ikke initialiseret" + +#~ msgid "Es necesario un objeto" +#~ msgstr "Et objekt er påkrævet" + +#~ msgid "Indicar la clave de la BBDD" +#~ msgstr "Indtast venligst databasekodeordet" + +#~ msgid "Clave del usuario administrador de la Base de Datos" +#~ msgstr "Databaseadministratorens kodeord" + +#~ msgid "Error al crear el usuario de conexión a MySQL '%s'" +#~ msgstr "Fejl under oprettelsen af MySQL forbindelsesbrugeren '%s'" + +#~ msgid "La BBDD no existe" +#~ msgstr "Databasen findes ikke" + +#~ msgid "Es necesario crearla y asignar los permisos necesarios" +#~ msgstr "Du skal oprette den og tilføje de nødvendige rettigheder" + +#~ msgid "Error al actualizar la configuración" +#~ msgstr "Fejl under opdatering af konfigurationen" + +#~ msgid "Usuario no indicado" +#~ msgstr "Bruger ikke valgt" + +#~ msgid "Acción no indicada" +#~ msgstr "Handling ikke valgt" + +#~ msgid "Es necesario un nombre de etiqueta" +#~ msgstr "Et mærkenavn er påkrævet" + +#~ msgid "Respuesta XML-RPC inválida" +#~ msgstr "Ugyldigt XML-RPC-svar" + +#~ msgid "Id de categoría no definido. No es posible importar cuenta." +#~ msgstr "Kategi-ID er ikke valgt. Kontoen kan ikke importeres." + +#~ msgid "Id de cliente no definido. No es posible importar cuenta." +#~ msgstr "Klient-ID er ikke valgt. Kontoen kan ikke importeres." + +#~ msgid "Clave de encriptación no indicada" +#~ msgstr "Krypteringskodeord er ikke sat" + +#~ msgid "Extensión '%s' no cargada" +#~ msgstr "Udvidelsen \"%s\" er ikke indlæst" + +#~ msgid "Categoría duplicada" +#~ msgstr "Kategorien findes allerede" + +#~ msgid "Categoría no encontrada" +#~ msgstr "Kategori ikke fundet" + +#~ msgid "Error al crear el campo personalizado" +#~ msgstr "Fejl under oprettelsen af brugerdefineret felt" + +#~ msgid "Error al eliminar el campo personalizado" +#~ msgstr "Fejl under sletningen af brugerdefineret felt" + +#~ msgid "Error al actualizar el campo personalizado" +#~ msgstr "Fejl under opdatering af brugerdefineret felt" + +#~ msgid "Campo personalizado no encontrado" +#~ msgstr "Brugerdefineret felt ikke fundet" + +#~ msgid "No se encontraron campos personalizados" +#~ msgstr "Brugerdefinerede felter ikke fundet" + +#~ msgid "No hay datos de campos personalizados" +#~ msgstr "Der findes ingen data fra brugerdefinerede felter" + +#~ msgid "Error al migrar campos personalizados" +#~ msgstr "Fejl under migrering af brugerdefinerede felter" + +#~ msgid "Archivo subido" +#~ msgstr "Fil uploadet" + +#~ msgid "Grupo en uso" +#~ msgstr "Gruppen anvendes allerede" + +#~ msgid "Actualizar Grupo" +#~ msgstr "Opdatér gruppe" + +#~ msgid "Error al asignar los usuarios al grupo" +#~ msgstr "Fejl under tilføjelsen af brugerne til gruppen" + +#~ msgid "Error al crear la notificación" +#~ msgstr "Fejl under tilføjelsen af notifikationen" + +#~ msgid "Error al eliminar la notificación" +#~ msgstr "Fejl under sletning af notofikationen" + +#~ msgid "Error al modificar la notificación" +#~ msgstr "Fejl under opdatering af notifikationen" + +#~ msgid "Error al obtener la notificación" +#~ msgstr "Fejl under indlæsning af notifikationen" + +#~ msgid "Error al obtener las notificaciones" +#~ msgstr "Fejl under indlæsning af notifikationerne" + +#~ msgid "Error al crear el plugin" +#~ msgstr "Fejl under tilføjelse af plugin" + +#~ msgid "Error al eliminar el plugin" +#~ msgstr "Fejl under sletning af plugin" + +#~ msgid "Error al actualizar el plugin" +#~ msgstr "Fejl under opdatering af plugin" + +#~ msgid "Habilitado" +#~ msgstr "Aktiveret" + +#~ msgid "Error al crear perfil" +#~ msgstr "Fejl under oprettelsen af profilen" + +#~ msgid "Perfil en uso" +#~ msgstr "Profilen er i brug" + +#~ msgid "Error al eliminar perfil" +#~ msgstr "Fejl under sletning af profilen" + +#~ msgid "Error al modificar perfil" +#~ msgstr "Fejl under opdatering af profilen" + +#~ msgid "Enlace visualizado" +#~ msgstr "Link vist" + +#~ msgid "Error al actualizar enlace" +#~ msgstr "Fejl under opdatering af link" + +#~ msgid "Enlace ya creado" +#~ msgstr "Link allerede oprettet" + +#~ msgid "Error al crear enlace" +#~ msgstr "Fejl under oprettelse af link" + +#~ msgid "Error al eliminar enlace" +#~ msgstr "Fejl under sletning af link" + +#~ msgid "Error al renovar enlace" +#~ msgstr "Fejl under fornyelse af link" + +#~ msgid "Actualizar Enlace" +#~ msgstr "Opdatér link" + +#~ msgid "Error al obtener enlace" +#~ msgstr "Fejl under indlæsning af link" + +#~ msgid "ON" +#~ msgstr "TIL" + +#~ msgid "OFF" +#~ msgstr "FRA" + +#~ msgid "Etiqueta duplicada" +#~ msgstr "Duplikeret mærke" + +#~ msgid "Error al crear etiqueta" +#~ msgstr "Fejl under oprettelsen af mærke" + +#~ msgid "Error al eliminar etiqueta" +#~ msgstr "Fejl under sletning af mærke" + +#~ msgid "Error al actualizar etiqueta" +#~ msgstr "Fejl under opdatering af mærke" + +#~ msgid "Error al obtener etiqueta" +#~ msgstr "Fejl under indlæsning af mærke" + +#~ msgid "Login/email de usuario duplicados" +#~ msgstr "Duplikeret brugerlogin / E-mail" + +#~ msgid "Error al obtener los datos del usuario" +#~ msgstr "Fejl under indlæsning af brugerens data" + +#~ msgid "No se encontraron objetos para sincronizar" +#~ msgstr "Der findes ingen objekter der kan synkroniseres" + +#~ msgid "Sincronización finalizada" +#~ msgstr "Synkronisering udført" + +#~ msgid "Error al migrar cuenta de usuario" +#~ msgstr "Fejl under migrering af brugerkonto" + +#~ msgid "Error al obtener grupo de usuarios" +#~ msgstr "Fejl under indlæsning af brugergruppen" + +#~ msgid "Error en comprobación de hash" +#~ msgstr "Fejl under kontrol af kontrolsum" + +#~ msgid "Hash inválido o expirado" +#~ msgstr "Forkert eller udløbet kontrolsum" + +#~ msgid "Error al generar el hash de recuperación" +#~ msgstr "Fejl under generering af kontrolsum til gendannelse" + +#~ msgid "Actualizando preferencias" +#~ msgstr "Opdaterer præferencer" + +#~ msgid "No es posible leer/escribir el archivo: %s" +#~ msgstr "Kan ikke læse/skrive filen: %s" + +#~ msgid "No hay elementos para guardar" +#~ msgstr "Der findes ingen elementer at gemme" + +#~ msgid "Socket no inicializado" +#~ msgstr "Socket ikke initialiseret" + +#~ msgid "Error al enviar datos" +#~ msgstr "Fejl under afsendelse af data" + +#~ msgid "Respuesta" +#~ msgstr "Svar" + +#~ msgid "Ver Detalles" +#~ msgstr "Vis detaljer" + +#~ msgid "Copiar" +#~ msgstr "Kopiér" + +#~ msgid "Restaurar" +#~ msgstr "Genskab" + +#~ msgid "Descargar" +#~ msgstr "Download" + +#~ msgid "Crítico" +#~ msgstr "Kritisk" + +#~ msgid "Accesos" +#~ msgstr "Adgange" + +#~ msgid "Cuentas Vinculadas" +#~ msgstr "Forbundne konti" + +#~ msgid "Hay %d notificaciones pendientes" +#~ msgstr "Der findes %d ulæste notifikationer" + +#~ msgid "Agente" +#~ msgstr "Agent" + +#~ msgid "Crear Usuario" +#~ msgstr "Tilføj bruger" + +#~ msgid "Actualizar Usuario" +#~ msgstr "Opdatér bruger" + +#~ msgid "Actualizar Clave Usuario" +#~ msgstr "Opdatér brugers kodeord" + +#~ msgid "Crear Grupo" +#~ msgstr "Tilføj gruppe" + +#~ msgid "Crear Perfil" +#~ msgstr "Tilføj profil" + +#~ msgid "Actualizar Perfil" +#~ msgstr "Opdatér profil" + +#~ msgid "Crear Cliente" +#~ msgstr "Tilføj klient" + +#~ msgid "Crear Categoría" +#~ msgstr "Tilføj kategori" + +#~ msgid "Actualizar Categoría" +#~ msgstr "Opdatér kategori" + +#~ msgid "Crear Autorización" +#~ msgstr "Tilføj autorisation" + +#~ msgid "Crear Campo" +#~ msgstr "Tilføj felt" + +#~ msgid "Actualizar Campo" +#~ msgstr "Opdatér felt" + +#~ msgid "Crear Enlace" +#~ msgstr "Opret link" + +#~ msgid "Crear Etiqueta" +#~ msgstr "Tilføj mærke" + +#~ msgid "Actualizar Etiqueta" +#~ msgstr "Opdatér mærke" + +#~ msgid "Actualizar Plugin" +#~ msgstr "Opdatér plugin" + +#~ msgid "Crear Cuenta" +#~ msgstr "Tilføj konto" + +#~ msgid "Usuarios importados" +#~ msgstr "Importerede brugere" + +#~ msgid "Acceso denegado" +#~ msgstr "Adgang nægtet" + +#~ msgid "Error al añadir las etiquetas de la cuenta" +#~ msgstr "Fejl under tilføjelse af mærker til kontoen" + +#~ msgid "Grupos eliminados" +#~ msgstr "Grupper slettet" + +#~ msgid "Perfiles eliminados" +#~ msgstr "Profiler slettet" + +#~ msgid "Clientes eliminados" +#~ msgstr "Klienter slettet" + +#~ msgid "Categorías eliminadas" +#~ msgstr "Kategorier slettet" + +#~ msgid "Autorizaciones eliminadas" +#~ msgstr "Autorisationer slettet" + +#~ msgid "Campos eliminados" +#~ msgstr "Felter slettet" + +#~ msgid "Enlaces eliminados" +#~ msgstr "Links slettet" + +#~ msgid "Etiquetas eliminadas" +#~ msgstr "Mærker slettet" + +#~ msgid "Archivos eliminados" +#~ msgstr "Filer slettet" + +#~ msgid "Cuentas eliminadas" +#~ msgstr "Konti slettet" + +#~ msgid "Notificación creada" +#~ msgstr "Notifikation oprettet" + +#~ msgid "Notificaciones eliminadas" +#~ msgstr "Notifikationer slettet" + +#~ msgid "Usando clave temporal" +#~ msgstr "Anvender midlertidigt kodeord" + +#~ msgid "Clave temporal caducada" +#~ msgstr "Midlertidigt kodeord er udløbet" + +#~ msgid "Sesión" +#~ msgstr "Session" + +#~ msgid "Error al comprobar la base de datos" +#~ msgstr "Fejl under kontrol af databasen" + +#~ msgid "Intente de nuevo la instalación" +#~ msgstr "Forsøg venligst at installere igen" + +#~ msgid "Es necesario un componente" +#~ msgstr "En komponent mangler" + +#~ msgid "Es necesario un tipo" +#~ msgstr "En type er påkrævet" + +#~ msgid "Es necesario un destinatario" +#~ msgstr "Et mål er påkrævet" + +#~ msgid "Error procesando línea" +#~ msgstr "Fejl under processering af linje" + +#~ msgid "Cuentas importadas" +#~ msgstr "Konti importeret" + +#~ msgid "Archivo no encontrado" +#~ msgstr "Fil ikke fundet" + +#~ msgid "Grupo no encontrado" +#~ msgstr "Gruppe ikke fundet" + +#~ msgid "Notificación no encontrada" +#~ msgstr "Notifikation ikke fundet" + +#~ msgid "Plugin no encontrado" +#~ msgstr "Plugin ikke fundet" + +#~ msgid "Perfil no encontrado" +#~ msgstr "Profil ikke fundet" + +#~ msgid "Enlace no encontrado" +#~ msgstr "Link ikke fundet" + +#~ msgid "Etiqueta no encontrada" +#~ msgstr "Mærke ikke fundet" + +#~ msgid "Usuario no encontrado" +#~ msgstr "Bruger ikke fundet" + +#~ msgid "Consulta en blanco" +#~ msgstr "Tom forespørgsel" + +#~ msgid "No es posible iniciar una transacción" +#~ msgstr "Kan ikke begynde transaktion" + +#~ msgid "No es posible finalizar una transacción" +#~ msgstr "Kan ikke færdiggøre transaktion" + +#~ msgid "Cuenta no encontrada" +#~ msgstr "Konto ikke fundet" + +#~ msgid "Hash de clave maestra actualizado" +#~ msgstr "Hoved-kodeord kontrolsum opdateret" + +#~ msgid "Error al actualizar el hash de la clave maestra" +#~ msgstr "Fejl under opdatering af Hoved-kodeords kontrolsum" + +#~ msgid "Usuarios eliminados" +#~ msgstr "Brugere slettet" + +#~ msgid "Notificación actualizada" +#~ msgstr "Notifikation opdateret" + +#~ msgid "Restricción de integridad" +#~ msgstr "Integritetsbegrænsning" + +#~ msgid "Clave de encriptación incorrecta" +#~ msgstr "Forkert krypteringskodeord" + +#~ msgid "Código de seguridad incorrecto" +#~ msgstr "Forkert sikkerhedskode" + +#~ msgid "Es necesario confirmar la actualización" +#~ msgstr "Opdateringen skal bekræftes" + +#~ msgid "En 5 segundos será redirigido al login" +#~ msgstr "Du vil blive omdirigeret til login indenfor 5 sekunder" + +#~ msgid "Error al aplicar la actualización de la aplicación" +#~ msgstr "Fejl under udførelsen af applikationsopdateringen" + +#~ msgid "Intentos excedidos" +#~ msgstr "Maks. antal forsøg overskredet" + +#~ msgid "Token no encontrado" +#~ msgstr "Polet ikke fundet" + +#~ msgid "Error al crear track" +#~ msgstr "Fejl under oprettelsen af spor" + +#~ msgid "Error al eliminar track" +#~ msgstr "Fejl under sletning af spor" + +#~ msgid "Error al actualizar track" +#~ msgstr "Fejl under opdatering af spor" + +#~ msgid "Error al obtener track" +#~ msgstr "Fejl under indlæsning af spor" + +#~ msgid "Error al obtener tracks" +#~ msgstr "Fejl under indlæsningen af sporene" + +#~ msgid "Actualizando IDs de cuentas" +#~ msgstr "Opdaterer Konti ID'er" + +#~ msgid "Actualizando IDs de categorías" +#~ msgstr "Opdaterer Kategori ID'er" + +#~ msgid "Actualizando IDs de clientes" +#~ msgstr "Opdaterer Klient ID'er" + +#~ msgid "Actualizando IDs de grupos" +#~ msgstr "Opdaterer Gruppe ID'er" + +#~ msgid "Actualizando IDs de perfil" +#~ msgstr "Opdaterer Profil ID'er" + +#~ msgid "Actualizando IDs de usuarios" +#~ msgstr "Opdaterer bruger ID'er" + +#~ msgid "Acción no encontrada" +#~ msgstr "Handling ikke fundet" + +#~ msgid "Contexto ya inicializado" +#~ msgstr "Kontekst allerede initialiseret" + +#~ msgid "Contexto inválido" +#~ msgstr "Ugyldig kontekst" + +#~ msgid "Contexto no inicializado" +#~ msgstr "Kontekst ikke initialiseret" + +#~ msgid "Clase no válida para iconos" +#~ msgstr "Ugyldig ikonklasse" + +#~ msgid "Tipo de filtro inválido" +#~ msgstr "Ugyldig filtertype" + +#~ msgid "Tipo de objeto incorrecto" +#~ msgstr "Forkert objekttype" + +#~ msgid "No es posible inicializar" +#~ msgstr "Kan ikke initialisere" + +#~ msgid "Error al eliminar los archivos" +#~ msgstr "Fejl under sletning af filerne" + +#~ msgid "Error al eliminar las cuentas" +#~ msgstr "Fejl under sletning af konti" + +#~ msgid "Error al eliminar la categorías" +#~ msgstr "Fejl under sletning af kategorierne" + +#~ msgid "Error al eliminar los clientes" +#~ msgstr "Fejl under sletning af klienterne" + +#~ msgid "Error al eliminar los campos personalizados" +#~ msgstr "Fejl under sletning af brugerdefinerede felter" + +#~ msgid "Error al crear el tipo de campo" +#~ msgstr "Fejl ved oprettelse af felttypen" + +#~ msgid "Error al actualizar el tipo de campo" +#~ msgstr "Fej ved opdatering af felttypen" + +#~ msgid "Error al eliminar el tipo de campo" +#~ msgstr "Fejl under sletning af felttypen" + +#~ msgid "Error al eliminar las notificaciones" +#~ msgstr "Fejl under sletning af notifikationerne" + +#~ msgid "El enlace no existe" +#~ msgstr "Linket findes ikke" + +#~ msgid "Error al eliminar etiquetas" +#~ msgstr "Fejl under sletning af mærkerne" + +#~ msgid "Error al eliminar los usuarios" +#~ msgstr "Fejl under sletning af brugerne" + +#~ msgid "El usuario no existe" +#~ msgstr "Brugeren findes ikke" + +#~ msgid "Error al eliminar los perfiles" +#~ msgstr "Fejl under sletning af profilerne" + +#~ msgid "Error al eliminar archivos" +#~ msgstr "Fejl under sletning af filerne" + +#~ msgid "Fomato incorrecto" +#~ msgstr "Ugyldigt format" + +#~ msgid "Error al eliminar tokens" +#~ msgstr "Fejl under sletning af poletterne" + +#~ msgid "Copiando base de datos" +#~ msgstr "Kopierer database" + +#~ msgid "Copiando aplicación" +#~ msgstr "Kopierer applikation" + +#~ msgid "Rollback" +#~ msgstr "Rollback" + +#~ msgid "Error al comprobar clave temporal" +#~ msgstr "Fejl under kontrol af midlertidigt kodeord" + +#~ msgid "Campo no encontrado" +#~ msgstr "Felt ikke fundet" + +#~ msgid "Error al eliminar los campos" +#~ msgstr "Fejl under sletning af felterne" + +#~ msgid "Exportando categorías" +#~ msgstr "Eksporterer kategorier" + +#~ msgid "Exportando clientes" +#~ msgstr "Eksporterer klienter" + +#~ msgid "Exportando etiquetas" +#~ msgstr "Eksporterer mærker" + +#~ msgid "Exportando cuentas" +#~ msgstr "Eksporterer konti" + +#~ msgid "Cuenta importada" +#~ msgstr "Konto importeret" + +#~ msgid "Importación XML KeePass" +#~ msgstr "KeePass XML import" + +#~ msgid "Categoría importada" +#~ msgstr "Kategori importeret" + +#~ msgid "Importación XML sysPass" +#~ msgstr "sysPass XML import" + +#~ msgid "Datos desencriptados" +#~ msgstr "Data afkrypteret" + +#~ msgid "Cliente importado" +#~ msgstr "Klient importeret" + +#~ msgid "Etiqueta importada" +#~ msgstr "Mærke importeret" + +#~ msgid "Formato no detectado" +#~ msgstr "Format ikke detekteret" + +#~ msgid "Not implemented" +#~ msgstr "Ikke implementeret" + +#~ msgid "Prueba de correo" +#~ msgstr "E-mail test" + +#~ msgid "" +#~ "Esto es una prueba de correo para verificar el correcto funcionamiento de " +#~ "la configuración." +#~ msgstr "" +#~ "Dette er en test-E-mail med det formaål at kontrollere at konfigurationen " +#~ "er korrekt." + +#~ msgid "Error al eliminar los enlaces" +#~ msgstr "Fejl under sletning af links" + +#~ msgid "Segundos" +#~ msgstr "Sekunder" + +#~ msgid "Actualizar Aplicación" +#~ msgstr "Opdatér applikation" + +#~ msgid "Actualización de campos personalizados" +#~ msgstr "Opdatering af brugerdefinerede felter" + +#~ msgid "Campo" +#~ msgstr "Felt" + +#~ msgid "Actualización de enlaces públicos" +#~ msgstr "Opdatering af offentlige links" + +#~ msgid "Enlace" +#~ msgstr "Link" + +#~ msgid "Error al eliminar los grupos" +#~ msgstr "Fejl under sletning af grupperne" + +#~ msgid "Error al leer datos del archivo (%s)" +#~ msgstr "Fejl under læsning af fildata (%s)" + +#~ msgid "Error al eliminar el archivo (%s)" +#~ msgstr "Fejl under sletning af filen (%s)" + +#~ msgid "No es posible leer/escribir el archivo (%s)" +#~ msgstr "Kan ikke læse/skrive filen (%s)" + +#~ msgid "Error al escribir datos en el archivo (%s)" +#~ msgstr "Fejl under skrivning af data til filen (%s)" + +#~ msgid "Cuenta visualizada" +#~ msgstr "Konto vist" + +#~ msgid "Clave visualizada" +#~ msgstr "Kodeord vist" + +#~ msgid "Exportación de sysPass en XML" +#~ msgstr "sysPass XML eksport" + +#~ msgid "Etiqueta" +#~ msgstr "Mærke" + +#~ msgid "Es necesario actualizar" +#~ msgstr "Opdatering påkrævet" + +#~ msgid "HTTPS" +#~ msgstr "HTTPS" + +#~ msgid "Clave copiada" +#~ msgstr "Kodeord kopieret" + +#~ msgid "Archivo visualizado" +#~ msgstr "Fil vist" + +#~ msgid "Archivo: %s" +#~ msgstr "Fil: %s" + +#~ msgid "Máximo tamaño: %s" +#~ msgstr "Maks. størrelse: %s" + +#~ msgid "Máximo tamaño: %d KB" +#~ msgstr "Maks størrelse: %d KB" + +#~ msgid "Archivo Eliminado" +#~ msgstr "Fil slettet" + +#~ msgid "Autorización" +#~ msgstr "Autorisation" + +#~ msgid "Autorización visualizada" +#~ msgstr "Autorisation vist" + +#~ msgid "Archivos habilitados" +#~ msgstr "Filer aktiveret" + +#~ msgid "Archivos deshabilitados" +#~ msgstr "Filer deaktiveret" + +#~ msgid "Enlaces públicos habilitados" +#~ msgstr "Offentlige links aktiveret" + +#~ msgid "Enlaces públicos deshabilitados" +#~ msgstr "Offentlige links deaktiveret" + +#~ msgid "Email enviado" +#~ msgstr "E-mail afsendt" + +#~ msgid "Error al enviar email" +#~ msgstr "Fejl under afsendelse af E-mail" + +#~ msgid "Syslog remoto habilitado" +#~ msgstr "Ekstern syslog aktiveret" + +#~ msgid "Auth Basic habilitada" +#~ msgstr "Basal autentificering aktiveret" + +#~ msgid "Auth Basic deshabiltada" +#~ msgstr "Basal autentificering deaktiveret" + +#~ msgid "No se importaron cuentas" +#~ msgstr "Der blev ikke importeret nogle konti" + +#~ msgid "Parámetros de LDAP incorrectos" +#~ msgstr "Forkerte LDAP parametre" + +#~ msgid "Importación LDAP" +#~ msgstr "LDAP import" + +#~ msgid "Compruebe su buzón de correo" +#~ msgstr "Kontrollér venligst din indbakke" + +#~ msgid "DokuWiki habilitada" +#~ msgstr "DokuWiki aktiveret" + +#~ msgid "Versión no disponible" +#~ msgstr "Version ikke tilgængelig" + +#~ msgid "Notificaciones no disponibles" +#~ msgstr "Notifikationer ikke tilgængelige" + +#~ msgid "Datos incorrectos" +#~ msgstr "Forkerte data" + +#~ msgid "No es posible recuperar la clave" +#~ msgstr "Kan ikke nulstille kodeordet" + +#~ msgid "Es necesario una cuenta" +#~ msgstr "En konto er påkrævet" + +#~ msgid "Usar auto-login con Auth Basic" +#~ msgstr "Anvend automatisk login via basal autentificering " + +#~ msgid "No es posible cambiar el valor de la clave" +#~ msgstr "Kan ikke ændre kodeordsværdien" + +#~ msgid "Filtro incorrecto" +#~ msgstr "Forkert filter" + +#~ msgid "El campo personalizado no existe" +#~ msgstr "Brugerdefineret felt ikke fundet" + +#, fuzzy +#~ msgid "Error al eliminar los plugins" +#~ msgstr "Fejl under sletningen af plugins" + +#~ msgid "Clave maestra no establecida" +#~ msgstr "Hoved-kodeord ikke angivet" + +#~ msgid "Error al eliminar las categorías" +#~ msgstr "Fejl under sletning af kategorier" + +#~ msgid "No es posible restaurar la configuración" +#~ msgstr "Kan ikke genskabe konfigurationen" + +#~ msgid "Tipo de campo no encontrado" +#~ msgstr "Felttype ikke fundet" + +#~ msgid "Fallo en la verificación del hash de integridad" +#~ msgstr "Fejl under kontrol af integritetskontrolsum" + +#~ msgid "Error al crear el usuario 'admin'" +#~ msgstr "Fejl under oprettelsen af 'admin'-brugeren" + +#~ msgid "Servicio de correo no disponible" +#~ msgstr "E-mail-tjenesten er ikke tilgængelig" + +#~ msgid "Error ol obtener la clave maestra del contexto" +#~ msgstr "Fejl under indlæsning af Hoved-kodeord fra kontekst" + +#~ msgid "Error ol establecer la clave maestra en el contexto" +#~ msgstr "Fejl ved indsætning af Hoved-kodeord i kontekst" + +#~ msgid "Track no encontrado" +#~ msgstr "Spor ikke fundet" + +#~ msgid "Actualización de autorizaciones API" +#~ msgstr "API autorisationsopdatering" + +#~ msgid "El nodo XML no existe" +#~ msgstr "XML-noden findes ikke" + +#~ msgid "Imagen no válida" +#~ msgstr "Ugyldigt billede" + +#~ msgid "Verificación de datos exportados finalizada" +#~ msgstr "Verifikation af eksporterede data udført" + +#~ msgid "Error al actualizar los datos del campo personalizado" +#~ msgstr "Fejl under opdatering af data i det brugerdefinerede felt" + +#~ msgid "Error al obtener la clave maestra del contexto" +#~ msgstr "Fejl under indlæsning af Hoved-kodeord fra kontekst" + +#~ msgid "Nuevo CLiente" +#~ msgstr "Ny klient" + +#~ msgid "" +#~ "Si está importando un archivo exportado desde el mismo origen, los datos " +#~ "pueden estar comprometidos." +#~ msgstr "" +#~ "Hvis du importerer en eksporteret fil af samme oprindelse kan data " +#~ "kompromitteres." + +#~ msgid "Categoría visualizada" +#~ msgstr "Kategori vist" + +#~ msgid "Cliente visualizado" +#~ msgstr "Klient vist" + +#~ msgid "Etiqueta visualizada" +#~ msgstr "Mærke vist" + +#~ msgid "Error al crear permiso" +#~ msgstr "Fejl under oprettelse af rettigheden" + +#~ msgid "Error al actualizar permiso" +#~ msgstr "Fejl under opdatering af rettigheden" + +#~ msgid "Error al eliminar permiso" +#~ msgstr "Fejl under sletning af rettigheden" + +#~ msgid "Error al eliminar los permisos" +#~ msgstr "Fejl under sletning af rettighederne" + +#~ msgid "Permiso no encontrada" +#~ msgstr "Rettighed ikke fundet" + +#~ msgid "Ver Permiso" +#~ msgstr "Se rettighed" + +#~ msgid "Nuevo Permiso" +#~ msgstr "Ny rettighed" + +#~ msgid "Editar Permiso" +#~ msgstr "Tilret rettighed" + +#~ msgid "Permisos eliminados" +#~ msgstr "Rettigheder slettet" + +#~ msgid "Permiso eliminado" +#~ msgstr "Rettighed slettet" + +#~ msgid "Permiso creado" +#~ msgstr "Rettighed tilføjet" + +#~ msgid "Permiso actualizado" +#~ msgstr "Rettighed opdateret" + +#~ msgid "Permisos por Defecto" +#~ msgstr "Standardrettigheder" + +#~ msgid "Buscar Permiso" +#~ msgstr "Søg efter rettighed" + +#~ msgid "Eliminar Permiso" +#~ msgstr "Slet rettighed" + +#~ msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" +#~ msgstr "Et element af typen bruger, gruppe eller profil skal angives" + +#~ msgid "No hay permisos definidos" +#~ msgstr "Der findes ingen definerede rettigheder" + +#~ msgid "" +#~ "Prioridad de asignación en caso de coincidir con otros permisos asignados " +#~ "por usuario, grupo o perfil." +#~ msgstr "" +#~ "Tildelingsprioritet hvis rettigheder er identiske med andre tildelt via " +#~ "bruger, gruppe eller profil." + +#~ msgid "" +#~ "Indica si los permisos serán forzados al crear o modificar la cuenta." +#~ msgstr "" +#~ "Gennemtvinger tildeling af rettigheder ved oprettelse eller opdatering af " +#~ "en konto." + +#~ msgid "Los permisos serán añadidos a los existentes." +#~ msgstr "" +#~ "Rettigheder vil blive flettet sammen med de eksisterende rettigheder." + +#~ msgid "Gestión Permisos" +#~ msgstr "Rettighedsadministration" + +#~ msgid "La clave no cumple los carácteres requeridos" +#~ msgstr "Password does not contain the required characters" + +#~ msgid "Es necesario que la clave contenga letras" +#~ msgstr "Password needs to contain letters" + +#~ msgid "Es necesario que la clave contenga minúsculas" +#~ msgstr "Password needs to contain lower case letters" + +#~ msgid "Es necesario que la clave contenga mayúsculas" +#~ msgstr "Password needs to contain upper case letters" + +#~ msgid "Es necesario que la clave contenga números" +#~ msgstr "Password needs to contain numbers" + +#~ msgid "Es necesario que la clave contenga símbolos" +#~ msgstr "Password needs to contain symbols" + +#~ msgid "Error al desconectar del servidor de LDAP" +#~ msgstr "Error while disconnecting from LDAP server" + +#~ msgid "Valor no encontrada" +#~ msgstr "Value not found" + +#~ msgid "Error al eliminar los valores" +#~ msgstr "Error while deleting the values" + +#~ msgid "Dirección IP no establecida" +#~ msgstr "IP address not set" + +#~ msgid "Valores eliminados" +#~ msgstr "Values deleted" + +#~ msgid "Valor eliminado" +#~ msgstr "Value deleted" + +#~ msgid "Valor creado" +#~ msgstr "Value created" + +#~ msgid "Valor actualizado" +#~ msgstr "Value updated" + +#~ msgid "Tipo de valor no definido o incorrecto" +#~ msgstr "Value type not set or incorrect" + +#~ msgid "Expresión regular inválida" +#~ msgstr "Invalid regular expression" + +#~ msgid "Error al vaciar tracks" +#~ msgstr "Error while clearing tracks out" + +#~ msgid "Track desbloqueado" +#~ msgstr "Track unlocked" + +#~ msgid "Tracks limpiados" +#~ msgstr "Tracks cleared out" + +#~ msgid "Grupo visualizado" +#~ msgstr "Group viewed" + +#~ msgid "Plugin disponible" +#~ msgstr "Plugin available" + +#~ msgid "Plugin no disponible" +#~ msgstr "Plugin unavailable" + +#~ msgid "Plugin cargado" +#~ msgstr "Plugin loaded" diff --git a/app/locales/de_DE/LC_MESSAGES/messages.mo b/app/locales/de_DE/LC_MESSAGES/messages.mo index f305346526675a5d11b0db5371ed09b243931daa..fb8b27781afc90b5f3c9b0abc504a6ca219b4d58 100644 GIT binary patch delta 19666 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 Yr}yk>(?h~cuQnNWa3X^\n" "Language-Team: language@syspass.org\n" -"Language: de_DE\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.11\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -22,7 +23,7 @@ msgstr "" "X-Poedit-SearchPath-1: ../../../../lib\n" "X-Poedit-SearchPath-2: ../../../config\n" -#: ../../../../lib/SP/Bootstrap.php:267 +#: ../../../../lib/SP/Bootstrap.php:278 #, php-format msgid "Versión de PHP requerida >= %s <= %s" msgstr "Erforderliche PHP-Version >= %s <= %s" @@ -46,7 +47,7 @@ msgid "Error al generar datos cifrados" msgstr "Fehler beim Erzeugen der verschlüsselten Daten" #: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:122 +#: ../../../../lib/SP/Mvc/View/Template.php:127 #, php-format msgid "No es posible obtener la plantilla \"%s\" : %s" msgstr "Fehler beim Ermitteln der Vorlage \"%s\" : %s" @@ -61,20 +62,27 @@ msgstr "Ungültige IP" msgid "Es necesaria una clave con al menos %d caracteres" msgstr "Das Passwort muss %d Zeichen lang sein" -#: ../../../../lib/SP/Mvc/View/Template.php:274 -#: ../../../../lib/SP/Mvc/View/Template.php:276 +#: ../../../../lib/SP/Mvc/View/Template.php:302 +#: ../../../../lib/SP/Mvc/View/Template.php:366 #, php-format msgid "No es posible obtener la variable \"%s\"" msgstr "Variable \"%s\" konnte nicht gefunden werden" -#: ../../../../lib/SP/Mvc/View/Template.php:322 -#: ../../../../lib/SP/Mvc/View/Template.php:324 +#: ../../../../lib/SP/Mvc/View/Template.php:335 #, php-format msgid "No es posible destruir la variable \"%s\"" msgstr "Variable \"%s\" konnte nicht entfernt werden" -#: ../../../../lib/SP/Plugin/PluginManager.php:113 -#: ../../../../lib/SP/Plugin/PluginManager.php:256 +#: ../../../../lib/SP/Mvc/View/Template.php:356 +msgid "La plantilla no contiene archivos" +msgstr "Vorlage enthält keine Dateien" + +#: ../../../../lib/SP/Plugin/PluginManager.php:170 +#, php-format +msgid "Versión de plugin no compatible (%s)" +msgstr "Plugin version not compatible (%s)" + +#: ../../../../lib/SP/Plugin/PluginManager.php:192 #, php-format msgid "No es posible cargar el plugin \"%s\"" msgstr "Fehler beim Laden des Plugins \"%s\"" @@ -97,10 +105,10 @@ msgstr "Anfragen" #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 +#: ../../../modules/web/Controllers/ConfigManagerController.php:175 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: ../../../config/actions.xml:13 msgid "Cuentas" msgstr "Konten" @@ -126,7 +134,7 @@ msgstr "" "Konten aktualisiert: %d / %d - %d%% - voraussichtliche Verfügbarkeit: %ds " "(%.2f/s)" -#: ../../../../lib/SP/Services/Auth/LoginService.php:600 +#: ../../../../lib/SP/Services/Auth/LoginService.php:604 msgid "N/D" msgstr "N/A" @@ -135,16 +143,6 @@ msgstr "N/A" msgid "No es posible crear el directorio de backups (\"%s\")" msgstr "Backup-Verzeichnis (\"%s\") kann nicht erstellt werden" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -#, php-format -msgid "La extensión '%s' no está disponible" -msgstr "Die Erweiterung '%s' ist nicht verfügbar" - #: ../../../../lib/SP/Services/Config/ConfigService.php:68 #: ../../../../lib/SP/Services/Config/ConfigService.php:153 #, php-format @@ -185,39 +183,39 @@ msgid "Actualizando datos encriptados" msgstr "Aktualisiere verschlüsselte Daten" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 msgid "Categorías" msgstr "Kategorien" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 msgid "Clientes" msgstr "Kunden" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:104 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 msgid "Usuarios" msgstr "Benutzer" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 msgid "Grupos" msgstr "Gruppen" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:123 #: ../../../../lib/SP/Storage/File/FileCache.php:74 #: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 #, php-format @@ -297,10 +295,10 @@ msgid "El archivo de actualización no contiene datos" msgstr "Die Update-Datei enthält keinerlei Daten" #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 +#: ../../../modules/web/Controllers/UserController.php:235 +#: ../../../modules/web/Controllers/UserController.php:356 +#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Cambio de Clave" msgstr "Passwortänderung" @@ -348,88 +346,88 @@ msgstr "Fehler beim Komprimieren der Dateidaten (%s)" msgid "Datos no cargados" msgstr "Daten nicht geladen" -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 +#: ../../../../lib/SP/Storage/File/FileHandler.php:72 +#: ../../../../lib/SP/Storage/File/FileHandler.php:135 #, php-format msgid "No es posible escribir en el archivo (%s)" msgstr "Fehler beim Lesen/Schreiben der Datei (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 +#: ../../../../lib/SP/Storage/File/FileHandler.php:89 #, php-format msgid "No es posible abrir el archivo (%s)" msgstr "Fehler beim Öffnen der Datei (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 +#: ../../../../lib/SP/Storage/File/FileHandler.php:104 +#: ../../../../lib/SP/Storage/File/FileHandler.php:118 #, php-format msgid "No es posible leer desde el archivo (%s)" msgstr "Lesen von Datei (%s) nicht möglich" -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 +#: ../../../../lib/SP/Storage/File/FileHandler.php:173 #, php-format msgid "No es posible cerrar el archivo (%s)" msgstr "Fehler biem Schließen der Datei (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 +#: ../../../../lib/SP/Storage/File/FileHandler.php:219 #, php-format msgid "No es posible escribir el archivo (%s)" msgstr "Schreiben in Datei (%s) nicht möglich" -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 +#: ../../../../lib/SP/Storage/File/FileHandler.php:234 #, php-format msgid "Archivo no encontrado (%s)" msgstr "Datei (%s) nicht gefunden" -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 +#: ../../../../lib/SP/Storage/File/FileHandler.php:259 +#: ../../../../lib/SP/Storage/File/FileHandler.php:314 #, php-format msgid "No es posible leer el archivo (%s)" msgstr "Fehler beim Lesen/Schreiben der Datei (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 +#: ../../../../lib/SP/Storage/File/FileHandler.php:286 #, php-format msgid "No es posible eliminar el archivo (%s)" msgstr "Entfernen von Datei (%s) nicht möglich" -#: ../../../../lib/SP/Util/ErrorUtil.php:128 +#: ../../../../lib/SP/Util/ErrorUtil.php:148 msgid "Opción no disponible" msgstr "Option nicht verfügbar" -#: ../../../../lib/SP/Util/ErrorUtil.php:129 -#: ../../../../lib/SP/Util/ErrorUtil.php:133 -#: ../../../../lib/SP/Util/ErrorUtil.php:137 -#: ../../../../lib/SP/Util/ErrorUtil.php:141 #: ../../../../lib/SP/Util/ErrorUtil.php:149 -#: ../../../../lib/SP/Util/ErrorUtil.php:156 +#: ../../../../lib/SP/Util/ErrorUtil.php:153 +#: ../../../../lib/SP/Util/ErrorUtil.php:157 +#: ../../../../lib/SP/Util/ErrorUtil.php:161 +#: ../../../../lib/SP/Util/ErrorUtil.php:169 +#: ../../../../lib/SP/Util/ErrorUtil.php:176 #: ../../../modules/web/Controllers/ErrorController.php:124 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Consulte con el administrador" msgstr "Bitte kontaktieren Sie den Administrator" -#: ../../../../lib/SP/Util/ErrorUtil.php:132 +#: ../../../../lib/SP/Util/ErrorUtil.php:152 msgid "No tiene permisos para acceder a esta cuenta" msgstr "Sie sind nicht berechtigt, auf dieses Konto zuzugreifen" -#: ../../../../lib/SP/Util/ErrorUtil.php:136 +#: ../../../../lib/SP/Util/ErrorUtil.php:156 msgid "No tiene permisos para acceder a esta página" msgstr "Sie haben keine Erlaubnis, auf diese Seite zuzugreifen" -#: ../../../../lib/SP/Util/ErrorUtil.php:140 +#: ../../../../lib/SP/Util/ErrorUtil.php:160 msgid "No tiene permisos para realizar esta operación" msgstr "Sie haben keine Erlaubnis für diese Aktion" -#: ../../../../lib/SP/Util/ErrorUtil.php:144 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 +#: ../../../../lib/SP/Util/ErrorUtil.php:164 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 msgid "Clave maestra actualizada" msgstr "Masterpasswort aktualisiert" -#: ../../../../lib/SP/Util/ErrorUtil.php:145 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 +#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 msgid "Reinicie la sesión para cambiarla" msgstr "Bitte starte die Sitzung neu, um sie zu aktualisieren" -#: ../../../../lib/SP/Util/ErrorUtil.php:148 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 +#: ../../../../lib/SP/Util/ErrorUtil.php:168 +#: ../../../../lib/SP/Util/ErrorUtil.php:175 msgid "Se ha producido una excepción" msgstr "Ein Ausnahmefehler ist aufgetreten" @@ -501,55 +499,55 @@ msgstr "Details in der Rückantwort senden" #: ../../../modules/api/Controllers/Help/AccountHelp.php:69 #: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:89 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:92 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:163 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:293 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:170 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:253 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:260 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 #: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:35 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:98 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:27 msgid "Clave" msgstr "Passwort" #: ../../../modules/api/Controllers/Help/AccountHelp.php:70 #: ../../../modules/api/Controllers/Help/AccountHelp.php:91 #: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:114 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:181 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:90 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 msgid "Fecha Caducidad Clave" msgstr "Passwortablaufdatum" #: ../../../modules/api/Controllers/Help/AccountHelp.php:82 #: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:73 msgid "Nombre de cuenta" msgstr "Kontoname" @@ -571,46 +569,46 @@ msgstr "Kunden-ID" #: ../../../modules/api/Controllers/Help/AccountHelp.php:86 #: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 msgid "Usuario de acceso" msgstr "Benutzer für Zugriff" #: ../../../modules/api/Controllers/Help/AccountHelp.php:87 #: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:136 msgid "URL o IP de acceso" msgstr "Auf URL/IP zugreifen" #: ../../../modules/api/Controllers/Help/AccountHelp.php:88 #: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:134 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 msgid "Notas sobre la cuenta" msgstr "Bemerkungen zum Konto" #: ../../../modules/api/Controllers/Help/AccountHelp.php:89 #: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:198 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 msgid "Cuenta Privada" msgstr "Privates Konto" #: ../../../modules/api/Controllers/Help/AccountHelp.php:90 #: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:217 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 msgid "Cuenta Privada Grupo" msgstr "Privates Konto für die Gruppe" #: ../../../modules/api/Controllers/Help/AccountHelp.php:92 #: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:252 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:254 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:13 msgid "Cuenta Vinculada" msgstr "Verknüpftes Konto" @@ -633,7 +631,7 @@ msgstr "Gruppen ID" #: ../../../modules/api/Controllers/Help/ClientHelp.php:81 #: ../../../modules/api/Controllers/Help/TagHelp.php:77 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 msgid "Texto a buscar" msgstr "Suchbegriff" @@ -664,34 +662,34 @@ msgstr "Filter Operator" #: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 #: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:29 msgid "Nombre de la categoría" msgstr "Kategoriename" #: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 #: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:41 msgid "Descripción de la categoría" msgstr "Beschreibung der Kategorie" #: ../../../modules/api/Controllers/Help/ClientHelp.php:54 #: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:30 msgid "Nombre del cliente" msgstr "Kundenname" #: ../../../modules/api/Controllers/Help/ClientHelp.php:55 #: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:43 msgid "Descripción del cliente" msgstr "Beschreibung des Kunden" #: ../../../modules/api/Controllers/Help/ClientHelp.php:56 #: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:99 msgid "Global" msgstr "Global" @@ -708,19 +706,19 @@ msgstr "Tag-ID" #: ../../../modules/api/Controllers/Help/TagHelp.php:54 #: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:29 msgid "Nombre de la etiqueta" msgstr "Tag-Name" #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:31 msgid "Nombre del grupo" msgstr "Gruppenname" #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:44 msgid "Descripción del grupo" msgstr "Beschreibung der Gruppe" @@ -756,234 +754,228 @@ msgstr "Gruppe entfernt" #: ../../../modules/web/Controllers/AccountController.php:149 #: ../../../modules/web/Controllers/AccountController.php:204 -#: ../../../modules/web/Controllers/AccountController.php:474 +#: ../../../modules/web/Controllers/AccountController.php:489 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:56 msgid "Detalles de Cuenta" msgstr "Kontodetails" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:256 -#: ../../../modules/web/Controllers/AccountController.php:300 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:278 +#: ../../../modules/web/Controllers/AccountController.php:261 +#: ../../../modules/web/Controllers/AccountController.php:307 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:275 #: ../../../config/actions.xml:157 msgid "Nueva Cuenta" msgstr "Neues Konto" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:344 +#: ../../../modules/web/Controllers/AccountController.php:353 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 #: ../../../config/actions.xml:163 msgid "Editar Cuenta" msgstr "Konto ändern" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:389 +#: ../../../modules/web/Controllers/AccountController.php:400 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 #: ../../../config/actions.xml:169 ../../../config/actions.xml:487 #: ../../../config/actions.xml:793 msgid "Eliminar Cuenta" msgstr "Konto entfernen" -#: ../../../modules/web/Controllers/AccountController.php:432 +#: ../../../modules/web/Controllers/AccountController.php:445 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 msgid "Modificar Clave de Cuenta" msgstr "Kontopasswort ändern" -#: ../../../modules/web/Controllers/AccountFileController.php:186 +#: ../../../modules/web/Controllers/AccountFileController.php:211 #, php-format msgid "Extensión: %s" msgstr "Dateierweiterung:%s" -#: ../../../modules/web/Controllers/AccountFileController.php:370 +#: ../../../modules/web/Controllers/AccountFileController.php:405 msgid "Gestión de archivos deshabilitada" msgstr "Dateiverwaltung gesperrt" -#: ../../../modules/web/Controllers/AccountFileController.php:387 +#: ../../../modules/web/Controllers/AccountFileController.php:424 msgid "No hay archivos asociados a la cuenta" msgstr "Für das Konto existieren keine verknüpften Dateien" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 +#: ../../../modules/web/Controllers/AccountManagerController.php:216 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 #: ../../../config/actions.xml:493 msgid "Actualización Masiva" msgstr "Bulk Update" -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 +#: ../../../modules/web/Controllers/AuthTokenController.php:114 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 msgid "Nueva Autorización" msgstr "Neue Authentifizierung" -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 +#: ../../../modules/web/Controllers/AuthTokenController.php:179 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 msgid "Editar Autorización" msgstr "Authentifizierung bearbeiten" -#: ../../../modules/web/Controllers/AuthTokenController.php:330 +#: ../../../modules/web/Controllers/AuthTokenController.php:347 msgid "Ver Autorización" msgstr "Authentifizierung anzeigen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 +#: ../../../modules/web/Controllers/CategoryController.php:109 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:118 #: ../../../config/actions.xml:307 msgid "Nueva Categoría" msgstr "Neue Kategorie" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 +#: ../../../modules/web/Controllers/CategoryController.php:173 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 #: ../../../config/actions.xml:313 msgid "Editar Categoría" msgstr "Kategorie ändern" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 +#: ../../../modules/web/Controllers/CategoryController.php:335 #: ../../../config/actions.xml:301 msgid "Ver Categoría" msgstr "Kategorie anzeigen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 +#: ../../../modules/web/Controllers/ClientController.php:110 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:93 #: ../../../config/actions.xml:337 msgid "Nuevo Cliente" msgstr "Neuer Kunde" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 +#: ../../../modules/web/Controllers/ClientController.php:174 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 #: ../../../config/actions.xml:343 msgid "Editar Cliente" msgstr "Kunde ändern" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 +#: ../../../modules/web/Controllers/ClientController.php:326 #: ../../../config/actions.xml:331 msgid "Ver Cliente" msgstr "Kunde anzeigen" -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 +#: ../../../modules/web/Controllers/ConfigLdapController.php:153 +#: ../../../modules/web/Controllers/ConfigLdapController.php:197 msgid "Resultados" msgstr "Ergebnisse" -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 +#: ../../../modules/web/Controllers/ConfigLdapController.php:159 +#: ../../../modules/web/Controllers/ConfigLdapController.php:204 #, php-format msgid "Objetos encontrados: %d" msgstr "Objekte gefunden: %d" -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 +#: ../../../modules/web/Controllers/ConfigLdapController.php:279 #, php-format msgid "Usuarios importados: %d / %d" msgstr "Importierte Benutzer: %d / %d" -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 +#: ../../../modules/web/Controllers/ConfigLdapController.php:280 #, php-format msgid "Errores: %d" msgstr "Fehler: %d" -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 +#: ../../../modules/web/Controllers/ConfigManagerController.php:161 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 msgid "General" msgstr "Allgemein" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 +#: ../../../modules/web/Controllers/ConfigManagerController.php:190 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:29 #: ../../../config/actions.xml:37 msgid "Wiki" msgstr "Wiki" -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 +#: ../../../modules/web/Controllers/ConfigManagerController.php:209 msgid "LDAP" msgstr "LDAP" -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 +#: ../../../modules/web/Controllers/ConfigManagerController.php:235 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:12 msgid "Correo" msgstr "E-Mail" -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 +#: ../../../modules/web/Controllers/ConfigManagerController.php:274 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 msgid "Encriptación" msgstr "Verschlüsselung" -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Letztes Backup" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 +#: ../../../modules/web/Controllers/ConfigManagerController.php:302 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:61 msgid "No se encontraron backups" msgstr "Keine Backups vorhanden" -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "Última exportación" -msgstr "Letzter Export" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 +#: ../../../modules/web/Controllers/ConfigManagerController.php:312 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 msgid "No se encontró archivo de exportación" msgstr "Keine Exportdatei gefunden" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 +#: ../../../modules/web/Controllers/ConfigManagerController.php:315 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:78 #: ../../../config/actions.xml:733 msgid "Copia de Seguridad" msgstr "Sicherung" -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 +#: ../../../modules/web/Controllers/ConfigManagerController.php:332 msgid "Importar Cuentas" msgstr "Importiere Konten" -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 +#: ../../../modules/web/Controllers/ConfigManagerController.php:352 msgid "No instalado" msgstr "Nicht installiert" -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 +#: ../../../modules/web/Controllers/ConfigManagerController.php:357 msgid "Información" msgstr "Information" -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 +#: ../../../modules/web/Controllers/CustomFieldController.php:111 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 msgid "Nuevo Campo" msgstr "Neues Feld" -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 +#: ../../../modules/web/Controllers/CustomFieldController.php:173 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 msgid "Editar Campo" msgstr "Feld bearbeiten" -#: ../../../modules/web/Controllers/CustomFieldController.php:298 +#: ../../../modules/web/Controllers/CustomFieldController.php:317 msgid "Ver Campo" msgstr "Feld anzeigen" @@ -1006,19 +998,19 @@ msgstr "Ansehen" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:360 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:310 +#: ../../../modules/web/themes/material-blue/views/config/general.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:295 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:440 #: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:294 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:194 msgid "Atrás" msgstr "Zurück" @@ -1034,7 +1026,7 @@ msgstr "Kontowiederherstellung von diesem Punkt" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:130 msgid "Guardar" msgstr "Speichern" @@ -1064,7 +1056,7 @@ msgstr "Öffentlichen Link erstellen" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 #: ../../../config/actions.xml:175 ../../../config/actions.xml:265 msgid "Ver Clave" msgstr "Passwort anzeigen" @@ -1083,7 +1075,7 @@ msgstr "Passwort in die Zwischenablage kopieren" msgid "Copiar Cuenta" msgstr "Konto kopieren" -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 #: ../../../config/strings.js.inc:72 msgid "Clave de Cuenta" msgstr "Kontopasswort" @@ -1094,23 +1086,23 @@ msgid "Más Acciones" msgstr "Weitere Aktionen" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:59 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:34 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:40 #: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:32 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 msgid "Cliente" msgstr "Kunde" @@ -1119,32 +1111,32 @@ msgid "Ordenar por Cliente" msgstr "Nach Kunde sortieren" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:43 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:22 msgid "Nombre" msgstr "Name" @@ -1153,17 +1145,17 @@ msgid "Ordenar por Nombre" msgstr "Nach Name sortieren" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:72 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:45 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:51 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:105 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 msgid "Categoría" msgstr "Kategorie" @@ -1172,38 +1164,38 @@ msgid "Ordenar por Categoría" msgstr "Nach Kategorie sortieren" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:141 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:61 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:149 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:233 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:247 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:24 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:94 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:75 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:77 #: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 msgid "Usuario" msgstr "Benutzer" @@ -1213,13 +1205,13 @@ msgid "Ordenar por Usuario" msgstr "Nach Benutzername sortieren" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:56 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:62 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:128 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:79 msgid "URL / IP" msgstr "URL/IP" @@ -1227,8 +1219,8 @@ msgstr "URL/IP" msgid "Ordenar por URL / IP" msgstr "Nach URL/IP sortieren" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 @@ -1241,8 +1233,8 @@ msgstr "Nach URL/IP sortieren" #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 #: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 @@ -1258,181 +1250,181 @@ msgstr "Nach URL/IP sortieren" msgid "Eliminar Seleccionados" msgstr "Ausgewählte entfernen" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:158 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:42 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:44 msgid "Propietario" msgstr "Owner" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:175 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:50 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:52 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 msgid "Grupo Principal" msgstr "Primärgruppe" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 #: ../../../config/actions.xml:499 ../../../config/actions.xml:799 msgid "Buscar Cuenta" msgstr "Konto suchen" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 msgid "Cuentas (H)" msgstr "Konten (H)" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:122 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:55 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:38 msgid "Fecha" msgstr "Datum" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:126 #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 msgid "Estado" msgstr "Status" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 msgid "Modificada" msgstr "Geändert" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 msgid "Eliminada" msgstr "Entfernt" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 #: ../../../config/actions.xml:187 ../../../config/actions.xml:805 msgid "Restaurar Cuenta" msgstr "Kontowiederherstellung" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 msgid "Autorizaciones API" msgstr "API Berechtigungen" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 msgid "Acción" msgstr "Aktion" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 msgid "Buscar Token" msgstr "Token suchen" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 msgid "Ver token de Autorización" msgstr "Zeige Berechtigungstoken" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 msgid "Eliminar Autorización" msgstr "Autorisierung entfernen" -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:37 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 msgid "Descripción" msgstr "Beschreibung" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 #: ../../../config/actions.xml:325 msgid "Buscar Categoría" msgstr "Suche nach Kategorie" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 #: ../../../config/actions.xml:319 msgid "Eliminar Categoría" msgstr "Kategorie entfernen" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 #: ../../../config/strings.js.inc:66 msgid "SI" msgstr "Ja" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 #: ../../../config/strings.js.inc:67 msgid "NO" msgstr "Nein" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 #: ../../../config/actions.xml:355 msgid "Buscar Cliente" msgstr "Suche nach Kunde" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 #: ../../../config/actions.xml:349 msgid "Eliminar Cliente" msgstr "Kunde entfernen" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 msgid "Campos Personalizados" msgstr "Benutzerfelder" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 msgid "Módulo" msgstr "Module" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:30 msgid "Tipo" msgstr "Typ" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:120 msgid "Propiedades" msgstr "Eigenschaften" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 msgid "Encriptado" msgstr "Verschlüsselt" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 msgid "Buscar Campo" msgstr "Feld suchen" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 msgid "Eliminar Campo" msgstr "Feld entfernen" @@ -1444,8 +1436,8 @@ msgid "Registro de Eventos" msgstr "Ereignisprotokoll" #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:99 msgid "ID" msgstr "ID" @@ -1462,9 +1454,9 @@ msgid "Evento" msgstr "Ereignis" #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 msgid "Login" msgstr "Anmeldung" @@ -1472,241 +1464,241 @@ msgstr "Anmeldung" msgid "IP" msgstr "IP" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 msgid "Buscar Evento" msgstr "Suche nach Ereignis" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 msgid "Refrescar" msgstr "Aktualisieren" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:199 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 #, fuzzy msgid "Vaciar registro de eventos" msgstr "Ereignisprotokoll leeren" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:280 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 #: ../../../config/actions.xml:19 msgid "Archivos" msgstr "Dateien" -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:25 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:30 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:23 msgid "Cuenta" msgstr "Konto" -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:110 msgid "Tamaño" msgstr "Größe" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:145 #: ../../../config/actions.xml:475 msgid "Buscar Archivo" msgstr "Suchen nach Datei" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:51 #: ../../../config/actions.xml:205 ../../../config/actions.xml:451 msgid "Ver Archivo" msgstr "Datei ansehen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:42 #: ../../../config/actions.xml:217 ../../../config/actions.xml:457 msgid "Descargar Archivo" msgstr "Datei herunterladen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:34 #: ../../../config/actions.xml:223 ../../../config/actions.xml:463 msgid "Eliminar Archivo" msgstr "Datei entfernen" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 msgid "Valores Predeterminados" msgstr "Vorgabewerte" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:137 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:274 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:277 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:233 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:148 msgid "Grupo" msgstr "Gruppe" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:131 msgid "Perfil" msgstr "Profil" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 msgid "Prioridad" msgstr "Priorität" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 msgid "Forzado" msgstr "Erzwungen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 #: ../../../config/actions.xml:853 msgid "Buscar Valor" msgstr "Nach Wert suchen" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 msgid "Valor de Permiso" msgstr "Vorgabe Berechtigung" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 msgid "Nuevo Valor de Permiso" msgstr "Neue Vorgabe für Berechtigung" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 msgid "Valor de Cuenta Privada" msgstr "Vorgabe Privatkonto" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 msgid "Nuevo Valor de Cuenta Privada" msgstr "Neue Vorgabe für Privatkonto" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 msgid "Valor de Timeout de Sesión" msgstr "Vorgabe Timeout" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 msgid "Nuevo Valor de Timeout de Sesión" msgstr "Neue Vorgabe für Timeout" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 msgid "Valor de Clave de Cuentas" msgstr "Vorgabe Kontopasswort" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 msgid "Nuevo Valor de Clave de Cuentas" msgstr "Neue Vorgabe für Kontopasswort" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: ../../../modules/web/Controllers/ItemPresetController.php:239 #: ../../../config/actions.xml:871 msgid "Editar Valor" msgstr "Wert bearbeiten" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 #: ../../../config/actions.xml:877 msgid "Eliminar Valor" msgstr "Wert löschen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:105 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 #: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 #: ../../../config/actions.xml:679 msgid "Notificaciones" msgstr "Benachrichtigungen" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:42 msgid "Componente" msgstr "Komponente" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:111 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:115 msgid "Leída" msgstr "Lesen" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 msgid "Sólo Admins" msgstr "Nur Administratoren" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:164 #: ../../../config/actions.xml:841 msgid "Buscar Notificación" msgstr "Benachrichtigung suchen" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:180 +#: ../../../modules/web/Controllers/NotificationController.php:194 msgid "Nueva Notificación" msgstr "Neue Benachrichtigung" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:103 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:198 +#: ../../../modules/web/Controllers/NotificationController.php:113 #: ../../../config/actions.xml:811 msgid "Ver Notificación" msgstr "Benachrichtigung anzeigen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:228 #: ../../../config/actions.xml:835 msgid "Marcar Notificación" msgstr "Benachrichtigung überprüfen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:210 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:246 +#: ../../../modules/web/Controllers/NotificationController.php:226 #: ../../../config/actions.xml:823 msgid "Editar Notificación" msgstr "Benachrichtigung bearbeiten" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:263 #: ../../../config/actions.xml:829 msgid "Eliminar Notificación" msgstr "Benachrichtigung entfernen" #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:334 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:331 #: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 msgid "Plugins" msgstr "Plugins" @@ -1728,7 +1720,7 @@ msgstr "Plugin suchen" #. (itstool) path: action/text #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:120 +#: ../../../modules/web/Controllers/PluginController.php:136 #: ../../../config/actions.xml:541 msgid "Ver Plugin" msgstr "Plugin anzeigen" @@ -1748,99 +1740,99 @@ msgstr "Deaktivieren" msgid "Restablecer Datos" msgstr "Daten zurücksetzen" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:49 msgid "Enlaces" msgstr "Links" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:51 msgid "Fecha Creación" msgstr "Erstellungsdatum" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:59 msgid "Fecha Caducidad" msgstr "Ablaufdatum" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:43 msgid "Notificar" msgstr "Benachrichtigen" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:14 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:75 msgid "Visitas" msgstr "Besuche" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:149 msgid "Buscar Enlace" msgstr "Link suchen" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:165 msgid "Nuevo Enlace" msgstr "Neuer link" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:183 +#: ../../../modules/web/Controllers/PublicLinkController.php:357 msgid "Ver Enlace" msgstr "Link anzeigen" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:199 msgid "Renovar Enlace" msgstr "Link erneuern" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:216 msgid "Eliminar Enlace" msgstr "Link entfernen" -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:211 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 msgid "Etiquetas" msgstr "Tags" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:135 #: ../../../config/actions.xml:529 msgid "Buscar Etiqueta" msgstr "Tag suchen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: ../../../modules/web/Controllers/TagController.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:226 #: ../../../config/actions.xml:505 msgid "Nueva Etiqueta" msgstr "Tag hinzufügen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: ../../../modules/web/Controllers/TagController.php:168 #: ../../../config/actions.xml:517 msgid "Editar Etiqueta" msgstr "Tag bearbeiten" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:186 #: ../../../config/actions.xml:523 msgid "Eliminar Etiqueta" msgstr "Tag entfernen" @@ -1864,137 +1856,137 @@ msgid "Buscar Track" msgstr "Suche nach Track" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:156 #: ../../../config/actions.xml:601 msgid "Buscar Usuario" msgstr "Suche nach Benutzer" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:172 +#: ../../../modules/web/Controllers/UserController.php:115 #: ../../../config/actions.xml:577 msgid "Nuevo Usuario" msgstr "Neuer Benutzer" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:190 +#: ../../../modules/web/Controllers/UserController.php:200 #: ../../../config/actions.xml:583 msgid "Editar Usuario" msgstr "Benutzer ändern" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:207 #: ../../../config/actions.xml:589 msgid "Eliminar Usuario" msgstr "Benutzer entfernen" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:224 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:460 msgid "Importar usuarios de LDAP" msgstr "Benutzer aus LDAP importieren" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:242 msgid "Ver Detalles de Usuario" msgstr "Benutzerdetails anzeigen" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:62 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:120 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:126 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:259 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 msgid "Cambiar Clave de Usuario" msgstr "Benutzerpasswort wechseln" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 #: ../../../config/actions.xml:631 msgid "Buscar Grupo" msgstr "Suche nach Gruppe" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: ../../../modules/web/Controllers/UserGroupController.php:117 #: ../../../config/actions.xml:613 msgid "Nuevo Grupo" msgstr "Neue Gruppe" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: ../../../modules/web/Controllers/UserGroupController.php:344 #: ../../../config/actions.xml:607 msgid "Ver Grupo" msgstr "Gruppe anzeigen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: ../../../modules/web/Controllers/UserGroupController.php:188 #: ../../../config/actions.xml:619 msgid "Editar Grupo" msgstr "Gruppe ändern" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 #: ../../../config/actions.xml:625 msgid "Eliminar Grupo" msgstr "Gruppe entfernen" -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 msgid "Perfiles" msgstr "Profile" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 #: ../../../config/actions.xml:661 msgid "Buscar Perfil" msgstr "Suche nach Profil" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: ../../../modules/web/Controllers/UserProfileController.php:110 #: ../../../config/actions.xml:643 msgid "Nuevo Perfil" msgstr "Neues Profil" -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 msgid "Ver Detalles de Perfil" msgstr "Zeige Benutzerdetails" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: ../../../modules/web/Controllers/UserProfileController.php:177 #: ../../../config/actions.xml:649 msgid "Editar Perfil" msgstr "Profil ändern" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 #: ../../../config/actions.xml:655 msgid "Eliminar Perfil" msgstr "Profil entfernen" -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:265 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:262 msgid "Buscar" msgstr "Suchen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:348 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:345 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 #: ../../../config/actions.xml:685 msgid "Configuración" msgstr "Konfiguration" @@ -2008,44 +2000,53 @@ msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Ohne dieses Modul wird die Anwendung nicht korrekt funktionieren." #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 +#: ../../../modules/web/Controllers/ItemPresetController.php:73 #: ../../../config/actions.xml:859 msgid "Ver Valor" msgstr "Wert anzeigen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 +#: ../../../modules/web/Controllers/ItemPresetController.php:207 #: ../../../config/actions.xml:865 msgid "Nuevo Valor" msgstr "Neuer Wert" -#: ../../../modules/web/Controllers/PublicLinkController.php:109 +#: ../../../modules/web/Controllers/ItemsController.php:130 +msgid "No hay no hay notificaciones pendientes" +msgstr "Keine neuen Benachrichtigungen" + +#: ../../../modules/web/Controllers/ItemsController.php:131 +#, php-format +msgid "Hay notificaciones pendientes: %d" +msgstr "There are pending notifications: %d" + +#: ../../../modules/web/Controllers/PublicLinkController.php:114 msgid "Nuevo Enlace Público" msgstr "Neuer öffentlicher Link" -#: ../../../modules/web/Controllers/PublicLinkController.php:196 +#: ../../../modules/web/Controllers/PublicLinkController.php:204 msgid "Editar Enlace Público" msgstr "Öffentlichen Link bearbeiten" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 +#: ../../../modules/web/Controllers/TagController.php:302 #: ../../../config/actions.xml:511 msgid "Ver Etiqueta" msgstr "Tag anzeigen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 +#: ../../../modules/web/Controllers/UserController.php:458 #: ../../../config/actions.xml:571 msgid "Ver Usuario" msgstr "Benutzer anzeigen" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 +#: ../../../modules/web/Controllers/UserProfileController.php:326 #: ../../../config/actions.xml:637 msgid "Ver Perfil" msgstr "Profil anzeigen" -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:89 +#: ../../../modules/web/Controllers/UserSettingsManagerController.php:87 msgid "Preferencias" msgstr "Einstellungen" @@ -2102,8 +2103,8 @@ msgid "Borrar elemento?" msgstr "Element entfernen?" #: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:31 msgid "Página no encontrada" msgstr "Seite nicht gefunden" @@ -2137,47 +2138,47 @@ msgid "Vaciar el registro de eventos?" msgstr "Ereignisprotokoll leeren?" #: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:281 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:253 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:152 msgid "Seleccionar Grupo" msgstr "Gruppe auswählen" #: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:81 msgid "Seleccionar Usuario" msgstr "Benutzer auswählen" #: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:135 msgid "Seleccionar Perfil" msgstr "Profil auswählen" #: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:84 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 msgid "Seleccionar Cliente" msgstr "Kunde auswählen" #: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:41 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 msgid "Seleccionar Categoría" msgstr "Kategorie auswählen" @@ -2210,41 +2211,41 @@ msgid "Mostrar Clave" msgstr "Passwort anzeigen" #: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:24 msgid "Copiar Usuario" msgstr "Benutzername kopieren" #. (itstool) path: action/text #: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:41 #: ../../../config/actions.xml:199 ../../../config/actions.xml:271 msgid "Copiar Clave" msgstr "Passwort kopieren" #: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 msgid "Incluir Números" msgstr "Ziffern einschließen" #: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 msgid "Incluir Mayúsculas" msgstr "Großbuchstaben verwenden" #: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 #, fuzzy msgid "Incluir Símbolos" msgstr "Sonderzeichen einschließen" #: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 msgid "Longitud" msgstr "Länge" #: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 msgid "Seleccionar Acción" msgstr "Aktion auswählen" @@ -2269,13 +2270,13 @@ msgid "Recibir notificaciones?" msgstr "Benachrichtigungen erhalten?" #: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:158 msgid "Marcar Favorito" msgstr "Als Favorit markieren" #. (itstool) path: action/text #: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:148 #: ../../../config/actions.xml:253 msgid "Eliminar Favorito" msgstr "Favorit entfernen" @@ -2285,11 +2286,12 @@ msgid "Limpiar Selección" msgstr "Auswahl aufheben" #: ../../../config/strings.js.inc:77 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:78 msgid "Mostrar Favoritos" msgstr "Favoriten anzeigen" #: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:72 msgid "Mostrar Todos" msgstr "Alle anzeigen" @@ -2331,7 +2333,7 @@ msgid "" msgstr "Führe Aufgabe aus. Bitte das Browserfenster/Tab nicht schließen." #: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 msgid "Incluir Letras" msgstr "Buchstaben einschließen" @@ -2354,12 +2356,12 @@ msgid "Hay una versión más reciente del plugin {0} ({1})" msgstr "Es gibt eine neuere Version des Plugins {0} ({1})" #: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:30 msgid "Actualizado" msgstr "Aktualisiert" #: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:36 msgid "Error al comprobar actualizaciones" msgstr "Fehler bei der Updateprüfung" @@ -2371,7 +2373,11 @@ msgstr "sysPass Neuigkeiten" msgid "Vaciar los tracks?" msgstr "Track-Liste leeren?" -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 +#: ../../../config/strings.js.inc:97 +msgid "Archivo descargado" +msgstr "Datei heruntergeladen" + +#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:21 msgid "Javascript es necesario para el correcto funcionamiento" msgstr "JavaScript muss aktiviert sein" @@ -2381,44 +2387,33 @@ msgstr "JavaScript muss aktiviert sein" #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 msgid "Volver" msgstr "Zurück" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:40 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 -#, php-format -msgid "Hay %d notificaciones pendientes" -msgstr "Es gibt %d ungelesene Benachrichtigungen" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:42 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:112 -msgid "No hay no hay notificaciones pendientes" -msgstr "Keine neuen Benachrichtigungen" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:69 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:131 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 msgid "Preferencias de usuario" msgstr "Benutzereinstellungen" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:76 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:149 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:152 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 msgid "Salir" msgstr "Abmelden" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:165 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:53 msgid "Demo" msgstr "Demo" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 msgid "Indica si la conexión utiliza HTTPS." msgstr "Zeigt, ob die Verbindung über HTTPS aufgebaut wurde." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 msgid "" "Las claves de formularios enviados se encriptan mediante PKI, el resto de " "datos no." @@ -2426,11 +2421,11 @@ msgstr "" "Die aus dem Formular gesendeten Passwörter werden verschlüsselt, andere " "Daten nicht." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:66 msgid "Ayuda :: FAQ :: Changelog" msgstr "Hilfe :: FAQ :: Changelog" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:70 msgid "Un proyecto de cygnux.org" msgstr "Ein cygnux.org Projekt" @@ -2492,323 +2487,332 @@ msgstr "Hole dir die privaten Konten für den aktuellen Benutzer" msgid "Operador para los parámetros especiales" msgstr "Operator für Spezialparameter" -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 +#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:17 msgid "No se encontraron registros" msgstr "Keine Datensätze gefunden" -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:168 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:64 #: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 #: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:38 msgid "Clave (repetir)" msgstr "Passwort (Wiederholung)" -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 msgid "Seleccionar Fecha" msgstr "Datum auswählen" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:19 msgid "Histórico" msgstr "Vergangenheit" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:22 msgid "Detalles" msgstr "Details" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:127 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:200 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:169 msgid "Notas" msgstr "Bemerkungen" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:140 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:142 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:271 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:273 msgid "Historial" msgstr "Verlauf" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:278 msgid "Seleccionar fecha" msgstr "Datum auswählen" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:160 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 msgid "Última Modificación" msgstr "Letzte Änderung" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:23 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:57 msgid "Seleccionar Usuarios" msgstr "Benutzer auswählen" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 msgid "Ver" msgstr "Ansehen" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:132 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:136 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 msgid "Editar" msgstr "Ändern" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 msgid "Seleccionar Grupos" msgstr "Gruppen auswählen" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 msgid "Privada" msgstr "Privat" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:223 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 msgid "Privada Grupo" msgstr "Privat für Gruppe" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:15 msgid "Solicitar Modificación de Cuenta" msgstr "Kontoänderungsanfrage versenden" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 msgid "Petición" msgstr "Anfrage" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:52 msgid "Descripción de la petición" msgstr "Beschreibung der Anfrage" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:74 msgid "Enviar" msgstr "Senden" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 msgid "Permisos" msgstr "Berechtigungen" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:218 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 msgid "Seleccionar Etiquetas" msgstr "Tags auswählen" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:26 msgid "Seleccionar Cuenta" msgstr "Konto auswählen" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Öffentlicher Link" - #: ../../../modules/web/themes/material-blue/views/account/account.inc:301 #: ../../../modules/web/themes/material-blue/views/account/account.inc:303 #: ../../../modules/web/themes/material-blue/views/account/account.inc:306 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:191 +msgid "Enlace Público" +msgstr "Öffentlicher Link" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:314 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:316 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:319 msgid "Enlace Directo" msgstr "Direktlink" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:24 msgid "Fecha Alta" msgstr "Datum hinzugefügt" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:60 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:62 msgid "Fecha Edición" msgstr "Änderungsdatum" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:70 msgid "Editor" msgstr "Bearbeiter" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 msgid "Fecha de Clave" msgstr "Erstelldatum Passwort" -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/files.inc:37 msgid "Soltar archivos aquí (max. 5) o click para seleccionar" msgstr "Dateien hier fallen lassen (max. 5) oder zum selektieren anklicken" -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/files.inc:39 #, php-format msgid "Tamaño máximo de archivo: %d MB" msgstr "Maximale Dateigröße: %d MB" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:35 msgid "Buscar en Wiki" msgstr "Im Wiki suchen" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:82 #, php-format msgid "Abrir enlace a: %s" msgstr "Öffnen Sie den Link zu: %s" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:109 msgid "Clave Caducada" msgstr "Passwort abgelaufen" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:123 msgid "Cuenta Privada (Grupo)" msgstr "Privates Konto (Gruppe)" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:166 msgid "Notes" msgstr "Notizen" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 msgid "Archivos adjuntos" msgstr "Anhänge" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 #: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:218 msgid "Enlace a Wiki" msgstr "Link zum Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:210 msgid "Ver en Wiki" msgstr "Siehe Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 msgid "Búsqueda global" msgstr "Globale Suche" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:83 msgid "Filtrar Favoritos" msgstr "Favoriten filtern" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:98 msgid "Cuentas por página" msgstr "Konten pro Seite" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:104 msgid "Más Filtros" msgstr "Mehr Filter" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:109 msgid "Seleccionar Etiqueta" msgstr "Tag auswählen" -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:22 msgid "Los datos serán encriptados al guardar" msgstr "Daten werden nach dem Speichern verschlüsselt" -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:27 msgid "Los datos serán desencriptados al guardar" msgstr "Daten werden nach dem Speichern entschlüsselt" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:12 +#, php-format +msgid "La extensión '%s' no está disponible" +msgstr "Die Erweiterung '%s' ist nicht verfügbar" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:16 msgid "Esta extensión es necesaria para mostrar las claves como imágenes" msgstr "Diese Erweiterung ist notwendig, um Passwörter als Bilder anzuzeigen" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:30 msgid "Búsqueda" msgstr "Suchen" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:36 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:56 msgid "Resultados por página" msgstr "Treffer pro Seite" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:41 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:61 msgid "Número de resultados por página a mostrar, al realizar una búsqueda." msgstr "Anzahl der Suchresultate pro Seite." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:52 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:72 msgid "Número de resultados por página" msgstr "Ergebnisse pro Seite" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 msgid "Caducidad clave cuentas" msgstr "Ablauf des Kontopassworts" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:71 msgid "Habilita la caducidad de la clave de cuentas." msgstr "Aktiviere Ablaufdatum für Kontopasswörter" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:79 msgid "Tiempo caducidad clave" msgstr "Passwortablaufzeit" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:84 msgid "Número de días para la caducidad de la clave de cuenta." msgstr "Anzahl der Tage bis zum Ablauf des Kontos" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 msgid "Tiempo caducidad (días)" msgstr "Ablaufzeit (Tage)" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:112 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:90 msgid "Nombre de cuenta como enlace" msgstr "Kontoname als Link" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:113 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:92 msgid "" "Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " "de la cuenta." msgstr "Kontonamen als Link zu Kontodetails anzeigen." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:128 msgid "Búsquedas globales" msgstr "Globale Suchen" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:129 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." @@ -2816,44 +2820,44 @@ msgstr "" "Ermöglicht Benutzern über alle Konten zu suchen, auch wenn sie keine Rechte " "haben. Die Kontodetails können sie jedoch nicht sehen." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:144 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 msgid "Imagen para mostrar clave" msgstr "Bild zur Anzeige des Passworts" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 msgid "Generar una imagen con el texto de la clave de la cuenta." msgstr "Bild mit dem Text des Kontopassworts generieren." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." msgstr "" "Nützlich für Umgebungen, in denen das Kopieren eines Passworts in die " "Zwischenablage ein Sicherheitsrisiko darstellt." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:164 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:158 msgid "Resultados en Tarjetas" msgstr "Suchergebnisse als Karten" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:166 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:160 msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." msgstr "Zeigt die Ergebnisse der Kontensuche im Visitenkartenformat an." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:182 msgid "Acceso Grupos Secundarios" msgstr "Sekundärgruppen-Zugriff" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:184 msgid "" "Habilita el acceso a los usuarios que estén incluidos en los grupos " "secundarios." msgstr "Gibt Benutzern der Sekundärgruppe Zugriffsrechte." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:186 msgid "" "Por defecto el usuario de un grupo secundario es permitido si el grupo " "secundario está establecido como el primario del usuario." @@ -2862,17 +2866,17 @@ msgstr "" "die Primärgruppe des Benutzers die Sekundärgruppe ist." #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:197 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 #: ../../../config/actions.xml:73 msgid "Enlaces Públicos" msgstr "Öffentliche Links" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:215 msgid "Habilitar Enlaces Públicos" msgstr "Öffentliche Links aktivieren" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:217 msgid "" "Habilita la posibilidad de generar enlaces públicos para ver los detalles de " "una cuenta." @@ -2880,14 +2884,14 @@ msgstr "" "Ermöglicht die Erstellung öffentlicher Links, um Kontoinformationen " "anzuzeigen" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:219 msgid "" "Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." msgstr "" "Die verknüpften Konten werden für alle sichtbar sein, die im Besitz des " "Links sind" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:221 msgid "" "Para crear enlaces, los usuarios tienen que tener activada la opción en su " "perfl." @@ -2895,43 +2899,43 @@ msgstr "" "Um öffentliche Links erstellen zu können, muss die Option im Benutzerprofil " "aktiviert sein." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:237 msgid "Usar imagen para clave" msgstr "Verwende ein Bild für das Passwort" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:239 msgid "La clave de la cuenta es visualizada como una imagen." msgstr "Das Kontopasswort wird als Bild angezeigt." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:248 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:257 msgid "Tiempo de caducidad" msgstr "Ablaufzeit" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:263 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:272 msgid "Número máximo de visitas" msgstr "Maximale Abrufanzahl" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:298 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 msgid "Gestión de archivos" msgstr "Dateiverwaltung" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:299 msgid "Habilita la subida/descarga de archivos para las cuentas." msgstr "Aktiviert das Hoch-und Herunterladen von Dateien für Konten." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:307 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:320 msgid "Extensiones de archivos permitidas" msgstr "Erlaubte Dateiendungen" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 msgid "Extensiones permitidas para la subida de archivos." msgstr "Erlaubte Dateierweiterungen für Dateiupload." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:315 msgid "" "Escribir extensión y pulsar intro para añadir. Es necesario guardar la " "configuración." @@ -2939,56 +2943,52 @@ msgstr "" "Erweiterung eingeben und Enter zum Hinzufügen drücken. Speichern nicht " "vergessen." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:328 msgid "Tamaño máximo de archivo" msgstr "Maximale Dateigröße" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:333 msgid "Establece el tamaño máximo para subir archivos." msgstr "Maximale Dateigröße beim Hochladen." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:337 msgid "El máximo absuluto es de 16MB." msgstr "Das absolute Maximum ist 16 MB." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:348 msgid "Tamaño máximo de archivo en kilobytes" msgstr "Max. Dateigröße in Kilobytes" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:16 msgid "" "Esta extensión es necesaria para generar los archivos de copia de seguridad " "de la aplicación" msgstr "" "Diese Erweiterung ist notwendig, um Backup-Dateien der Anwendung zu erstellen" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 msgid "Resultado" msgstr "Ergebnis" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:123 msgid "Descargar Actual" msgstr "Herunterladen" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:51 msgid "Copia BBDD" msgstr "Datenbanksicherung" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:58 msgid "Copia sysPass" msgstr "sysPass Sicherung" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 -msgid "No hay backups para descargar" -msgstr "Es sind keine Backups zum Herunterladen vorhanden" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:80 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." @@ -2996,7 +2996,7 @@ msgstr "" "Das Backup erlaubt das Speichern und Herunterladen der sysPass Datenbank, " "von Anwendungsdateien und der Konfiguration." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:82 msgid "" "Con este método es posible guardar todos los datos de sysPass en otro lugar " "o utilizarlos para hacer la aplicación portable." @@ -3005,26 +3005,22 @@ msgstr "" "zu speichern. Sie kann auch dafür verwendet werden, um die Anwendung " "portabel zu machen." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:185 msgid "Exportar Cuentas" msgstr "Konten exportieren" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -msgid "No hay archivos XML para descargar" -msgstr "Keine XML-Daten zum Herunterladen vorhanden" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:139 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:147 msgid "Clave de Exportación" msgstr "Exportpasswort" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:161 msgid "Clave de Exportación (repetir)" msgstr "Exportpasswort (Wiederholung)" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:187 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." @@ -3032,18 +3028,18 @@ msgstr "" "Das Exportieren der Konten ermöglicht das Speichern der Konten und ihren " "Daten im XML-Format, um sie in einer anderen sysPass Instanz zu importieren." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:189 #, fuzzy msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." msgstr "Die exportierten Elemente sind Konten, Kunden, Kategorien und Tags." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:191 msgid "" "Las claves de las cuentas son exportadas de forma encriptada para mayor " "seguridad." msgstr "Die Kontopasswörter werden verschlüsselt exportiert." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:193 msgid "" "Es posible establecer una clave de exportación para guardar todos los datos " "encriptados en el archivo XML." @@ -3051,73 +3047,73 @@ msgstr "" "Es ist möglich, ein Exportpasswort anzugeben, um alle Daten in der XML-Datei " "zu verschlüsseln." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:17 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:167 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:50 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:56 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:57 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:102 msgid "Clave Maestra" msgstr "Masterpasswort" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:27 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:201 msgid "Último cambio" msgstr "Letzte Änderung" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:35 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:43 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:142 msgid "Clave Maestra actual" msgstr "Aktuelles Masterpasswort" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:49 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:57 msgid "Nueva Clave Maestra" msgstr "Neues Masterpasswort" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:63 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:71 msgid "Nueva Clave Maestra (repetir)" msgstr "Neues Masterpasswort (Wiederholung)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:80 msgid "Guarde la nueva clave en un lugar seguro." msgstr "Sie sollten das neue Passwort an einem sicheren Ort aufbewahren." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:84 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "Alle Passwörter der Konten werden neu verschlüsselt." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:88 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "" "Alle Benutzer müssen danach ein neues temporäres Masterpasswort eingeben." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:92 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:130 #, php-format msgid "" "Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." msgstr "Es werden %s Konten aktualisiert. Dies kann etwas dauern." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:109 msgid "No modificar cuentas" msgstr "Konten nicht verändern" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:111 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "Neues Masterpasswort angeben, ohne die Konten neu zu verschlüsseln" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:127 msgid "Confirmar cambio" msgstr "Änderung bestätigen" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:129 msgid "" "Confirmar el cambio de clave maestra después de haber leído las advertencias " "anteriores." @@ -3125,7 +3121,7 @@ msgstr "" "Bestätigen sie die Änderung des Masterpassworts, nachdem sie die Warnungen " "gelesen haben." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:155 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." @@ -3133,7 +3129,7 @@ msgstr "" "Das Masterpasswort wird benutzt, um die sysPass Kontopasswörter zu " "verschlüsseln und diese zu sichern." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:157 #, fuzzy msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " @@ -3142,53 +3138,53 @@ msgstr "" "Es ist ratsam, es von Zeit zu Zeit zu ändern und ein komplexes Passwort mit " "Zahlen, Buchstaben und Sonderzeichen zu nutzen." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:159 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 #, php-format msgid "Para más información consulte: %s" msgstr "Mehr Informationen erhalten Sie hier: %s" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:169 msgid "Actualizar hash de clave maestra" msgstr "Masterpasswort-Hashwert aktualisieren" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:189 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:323 msgid "Clave Temporal" msgstr "Temporäres Passwort" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:203 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:218 msgid "No generada" msgstr "Nicht generiert" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:211 msgid "Válido hasta" msgstr "Gültig bis" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:227 msgid "Intentos" msgstr "Versuche" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:244 msgid "Validez (s)" msgstr "Gültigkeitsdauer (s)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:263 msgid "Enviar correo" msgstr "E-Mail senden" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:265 msgid "" "Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." msgstr "" "Sendet eine E-Mail an alle Benutzer oder nur an diejenigen, deren Gruppe " "ausgewählt ist." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:325 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " @@ -3198,35 +3194,35 @@ msgstr "" "dieses während der Anmeldung eingeben müssen. Somit brauchen Benutzern das " "wahre Masterpasswort nicht zu erfahren." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:332 msgid "Generar" msgstr "Generieren" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:12 msgid "Autentificación" msgstr "Authentifizierung" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:30 msgid "Usar Auth Basic" msgstr "Verwenden Sie Auth Basic" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:31 msgid "Usar Auth Basic para autorizar los accesos a la aplicación." msgstr "Basic Authentication für den Zugriff auf die Anwendung verwenden" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:45 msgid "Usar Auth Basic SSO" msgstr "Auth Basic SSO benutzen" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:46 msgid "Usar auto-login con Auth Basic." msgstr "Auto-Login mit Auth Basic benutzen." -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:54 msgid "Dominio" msgstr "Domain" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:59 msgid "" "El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " "el de Auth Basic." @@ -3234,137 +3230,137 @@ msgstr "" "Die Domäne wird zum Benutzernamen sysPass hinzugefügt, um sie mit Auth Basic " "zu vergleichen." -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:69 msgid "Nombre de dominio" msgstr "Domainname" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:249 msgid "Grupo por Defecto" msgstr "Standardgruppe" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:80 msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." msgstr "Legt die Standardbenutzergruppe für neue SSO-Benutzer fest." -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:264 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:274 msgid "Perfil por Defecto" msgstr "Standard-Profil" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:105 msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." msgstr "Legt das Standardprofil für die neu erstellten SSO-Benutzer fest." -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:98 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:176 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:72 msgid "Eventos" msgstr "Events" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:30 msgid "Habilitar log de eventos" msgstr "Ereignisprotokoll (Audit) aktivieren" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:31 msgid "Guarda las acciones realizadas en la aplicación." msgstr "Speichern Sie die in der Anwendung ausgeführten Aktionen." -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:45 msgid "Habilitar Syslog" msgstr "Syslog aktivieren" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:60 msgid "Habilitar Syslog Remoto" msgstr "Remote Syslog aktivieren" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:94 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:66 msgid "Servidor" msgstr "Server" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:78 msgid "Nombre o dirección IP" msgstr "Hostname oder IP-Adresse" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:84 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:79 msgid "Puerto" msgstr "Port" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:12 msgid "Proxy" msgstr "Proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:30 msgid "Usar Proxy" msgstr "Proxy verwenden" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:31 msgid "Usar proxy para comprobación de actualizaciones y notificaciones." msgstr "Einen Proxy für Updates und Benachrichtigungen benutzen" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:47 msgid "Servidor proxy" msgstr "Proxyserver" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:61 msgid "Puerto del servidor proxy" msgstr "Proxyserver Port" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:75 msgid "Usuario del servidor proxy" msgstr "Proxyserver Benutzer" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:89 msgid "Clave del servidor proxy" msgstr "Proxyserver Passwort" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:16 msgid "" "Esta extensión es necesaria comprobar las actualizaciones y notificaciones" msgstr "" "Diese Erweiterung ist notwendig, um für sysPass Updates und " "Benachrichtigungen zu erhalten" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:24 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:15 msgid "Sitio" msgstr "Seite" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:137 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:139 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:28 msgid "Idioma" msgstr "Sprache" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:35 msgid "" "Establece el idioma global de la aplicación. Es posible establecer un idioma " "por usuario en las preferencias." @@ -3372,7 +3368,7 @@ msgstr "" "Setzen Sie die globale Sprache fest. Jeder Benutzer kann seine eigene " "Sprache in den Benutzereinstellungen wählen." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:39 msgid "" "Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." "com/join/project/fmlsBuugyv" @@ -3380,14 +3376,14 @@ msgstr "" "Um die Übersetzungen zu verbessern / hinzufügen, können Sie sich beteiligen\n" "https://poeditor.com/join/project/fmlsBuugyv" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:67 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:42 msgid "Tema Visual" msgstr "Theme" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:62 msgid "" "Establece el tema visual global de la aplicación. Es posible establecer un " "tema visual por usuario en las preferencias." @@ -3395,34 +3391,34 @@ msgstr "" "Definieren des globalen visuellen Themas. Jeder Benutzer kann sein " "persönliches visuelles Thema in den Benutzereinstellungen wählen." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:89 msgid "Timeout de sesión (s)" msgstr "Ablauf der Sitzung (s)" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:107 msgid "Forzar HTTPS" msgstr "HTTPS erzwingen" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:108 msgid "Fuerza para que todas las conexiones sean a través de HTTPS." msgstr "Erzwingt HTTPS bei allen Verbindungen" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:122 msgid "Habilitar depuración" msgstr "Debugging einschalten" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:123 msgid "" "Muestra información relativa a la configuración de la aplicación y " "rendimiento." msgstr "Zeigt Informationen zu Einstellungen und zur Leistung." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:137 msgid "Modo mantenimiento" msgstr "Wartungsmodus" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:138 msgid "" "En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " "necesario modificar el archivo de configuración." @@ -3430,35 +3426,35 @@ msgstr "" "In diesem Modus kann sich niemand anmelden. Dies kann nur über die " "Konfigurationsdatei geändert werden." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:152 msgid "Comprobar actualizaciones" msgstr "Nach Updates suchen" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:153 msgid "" "Comprobar actualizaciones de la aplicación (sólo para los usuarios " "administradores)." msgstr "Prüft auf Anwendungsaktualisierungen (nur für Administratoren)." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:167 msgid "Comprobar notificaciones" msgstr "Prüft auf Meldungen" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:168 msgid "" "Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " "para los usuarios administradores)." msgstr "Prüft auf sysPass Sicherheitsmeldungen (nur für Administratoren)." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 msgid "Encriptar Sesión" msgstr "Sitzung verschlüsseln" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:184 msgid "Encriptar los datos de la sesión de PHP." msgstr " PHP-Sitzungsdaten verschlüsseln." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:185 msgid "" "Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " "datos almacenados no serán legibles." @@ -3466,33 +3462,33 @@ msgstr "" "Diese Funktionalität erhöht die Sicherheit von PHP-Sitzungen, da die " "gespeicherten Daten nicht lesbar sind." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 msgid "Importar CSV/XML" msgstr "CSV-/XML-Import" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:28 msgid "Usuario por Defecto" msgstr "Standardbenutzer" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:23 msgid "Define el usuario por defecto para las cuentas importadas." msgstr "Definiert den Standardbenutzer für den Kontoimport." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:50 msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Definiert die Standardgruppe für den Kontoimport." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:72 msgid "Archivo" msgstr "Datei" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:75 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Dateien hier fallen lassen oder zum manuellen Selektieren anklicken" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 #, fuzzy msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " @@ -3501,18 +3497,18 @@ msgstr "" "Erlaubt es, Konten, Kategorien und Kunden aus einer XML- oder CSV-Datei zu " "importieren." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "Die unterstützen XML-Dateiformate sind: sysPass, KeePass und KeePassX" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "Datei in die Importzone ziehen oder auf den Pfeil klicken." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " "KeePass o KeePassX y la categoría igual al nombre de los grupos." @@ -3521,11 +3517,11 @@ msgstr "" "\"KeePassX\" lauten und die Kategorienamen werden wie die Gruppennamen " "heißen." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "Die zu importierende CSV-Datei benötigt folgendes Format:" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 msgid "" "\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" "\"notas\"" @@ -3533,7 +3529,7 @@ msgstr "" "\"Kontoname\", \"Kunde\", \"Kategorie\", \"URL\", \"Benutzer\", \"Passwort" "\", \"Notizen\"" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:117 msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " "automáticamente." @@ -3541,21 +3537,21 @@ msgstr "" "In dem Fall, dass der Kunden- oder Kategorienname noch nicht existiert, wird " "dieser automatisch erstellt." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:125 msgid "XML" msgstr "XML" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:131 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:146 msgid "Clave de Importación" msgstr "Import-Passwort" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:136 msgid "Sólo es necesaria para archivos XML de sysPass encriptados." msgstr "" "Es wird nur für sysPass XML-Dateien benötigt, die verschlüsselt wurden." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:157 msgid "" "Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " "la actual." @@ -3563,69 +3559,73 @@ msgstr "" "Es wird nur für sysPass XML-Dateien benötigt, die mit einem anderen " "Masterpasswort als dem aktuellen verschlüsselt wurden." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:174 msgid "CSV" msgstr "CSV" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:195 msgid "Delimitador CSV" msgstr "CSV-Trennzeichen" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:185 msgid "Sólo es necesario para archivos CSV." msgstr "Es wird nur für CSV-Dateien benötigt." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 msgid "Información de la Aplicación" msgstr "Anwendungsinformationen" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:23 msgid "Versión sysPass" msgstr "sysPass Version" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:33 msgid "Base de Datos" msgstr "Datenbank" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:47 msgid "PHP" msgstr "PHP" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:49 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:34 msgid "Versión" msgstr "Version" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:51 msgid "Extensiones" msgstr "Erweiterungen" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 msgid "Extensiones no disponibles" msgstr "Nicht verfügbare Erweiterungen" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:59 msgid "Memoria Usada" msgstr "Verwendeter Speicher" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Tasa de descarga" +msgstr "Download rate" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:66 msgid "OP Cache" msgstr "OP Cache" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:88 msgid "Copia de Configuración" msgstr "Einstellungen sichern" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:100 msgid "Indica si el idioma se encuentra disponible" msgstr "Gibt an, ob die Sprache verfügbar ist oder nicht" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:104 msgid "" "Si no está instalado, es necesario instalar las locales en el sistema " "operativo. Más información en Wiki." @@ -3634,174 +3634,174 @@ msgstr "" "Betriebssystemgebietsschemas installieren. Weitere Informationen finden Sie " "im Wiki." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:116 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:126 msgid "Sesión Encriptada" msgstr "Verschlüsselte Sitzung" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:121 msgid "Indica si los datos de la sesión están encriptados en el servidor" msgstr "" "Zeigt an, ob die Sitzungsdaten auf dem Server verschlüsselt sind oder nicht" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 msgid "Sí" msgstr "Ja" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 msgid "No" msgstr "Nein" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:136 msgid "Plugins Cargados" msgstr "Geladene Plugins" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:16 msgid "Esta extensión es necesaria conectar con el servidor de LDAP" msgstr "" "Diese Erweiterung ist notwendig um, sich zu einem LDAP-Server verbinden zu " "können" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:46 msgid "Habilitar LDAP" msgstr "LDAP verwenden" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:48 msgid "Habilita de autentificación mediante servidor LDAP." msgstr "Aktiviert die Authentifizierung über einen LDAP-Server." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:50 msgid "Este método utilizará MySQL en caso de fallo." msgstr "Diese Methode verwendet im Fehlerfall die Datenbank als Reserve." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:65 msgid "Active Directory" msgstr "Active Directory (AD)" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:67 msgid "Habilita el modo de conexión con LDAP de Active Directory." msgstr "Aktiviert den Active Directory LDAP-Verbindungsmodus." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:84 msgid "Habilita la conexión mediante TLS." msgstr "Aktiviert die Verbindung über TLS" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:99 msgid "Nombre o dirección IP del servidor de LDAP." msgstr "Hostname oder IP-Adresse des LDAP-Servers" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:185 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:219 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:131 msgid "Ejemplos:" msgstr "Beispiele:" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:125 msgid "Usuario de conexión" msgstr "Benutzer für die Verbindung" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:130 msgid "Usuario para conectar con el servicio de LDAP." msgstr "Benutzer für die Verbindung zum LDAP-Service." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:155 msgid "Clave de conexión" msgstr "LDAP-Passwort" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:160 msgid "Clave del usuario de conexión a LDAP." msgstr "LDAP-Verbindungspasswort" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:176 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:200 msgid "Base de búsqueda" msgstr "Suchpräfix" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:181 msgid "Base en la que realizar la búsqueda de usuarios de LDAP." msgstr "Geben Sie die LDAP-Basis für die Benutzersuche an." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:211 msgid "" "Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." msgstr "" "LDAP-Gruppe, zu welcher der Benutzer gehören muss, um sich anmelden zu können" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:215 msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." msgstr "Diese Gruppe muss in der LDAP-Suchbasis platziert werden" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:244 msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Legen Sie die Standardgruppe für neue LDAP-Benutzer fest." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:269 msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Legen Sie das Standardprofil für neue LDAP-Benutzer fest." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:321 msgid "Importación" msgstr "Import" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:337 msgid "Atributo Login" msgstr "Login-Attribut" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:332 msgid "" "Define el atributo a utilizar para el login del usuario en la importación." msgstr "Definiert das Attribut für den Benutzerlogin beim Import." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:350 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:360 msgid "Atributo Nombre" msgstr "Namensattribut" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:355 msgid "" "Define el atributo a utilizar para el nombre del usuario en la importación." msgstr "Definiert das Benutzernamenattribut für den Import." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:385 msgid "Importar Grupos" msgstr "Gruppen importieren" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:394 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:404 msgid "Atributo Nombre Grupo" msgstr "Attributnamengruppe" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:399 msgid "" "Define el atributo a utilizar para el nombre del grupo en la importación." msgstr "" "Definiert das Attribut für den Namen der Benutzergruppe beim Importieren." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:415 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:429 msgid "Filtro" msgstr "Filter" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:420 msgid "Filtro para importar usuarios o grupos de LDAP." msgstr "Filter zum Importieren von LDAP-Benutzern oder -Gruppen" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:34 msgid "Habilitar notificaciones de correo" msgstr "E-Mail-Benachrichtigungen einschalten" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 msgid "Habilitar peticiones por correo" msgstr "Erlaube Anfragen per E-Mail" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:50 msgid "" "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " "cuentas sin permisos." @@ -3809,41 +3809,41 @@ msgstr "" "Ermöglicht Benutzern ohne Berechtigungen, Änderungen oder Zugriff auf Konten " "anzufordern." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:97 msgid "Habilitar Autentificación" msgstr "Authentifizierung aktivieren" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:135 msgid "Seguridad" msgstr "Sicherheit" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:138 msgid "Deshabilitada" msgstr "Inaktiv" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:156 #, fuzzy msgid "Dirección de correo de envío" msgstr "Absender E-Mail-Adresse" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:165 msgid "Destinatarios" msgstr "Empfänger" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:16 msgid "Esta extensión es necesaria conectar con DokuWiki" msgstr "" "Diese Erweiterung ist notwendig, um sich zu einem DokuWiki verbinden zu " "können" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:47 msgid "Habilitar enlaces Wiki" msgstr "Wiki-Links aktivieren" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:48 msgid "" "Habilita la opción de añadir un enlace a Wiki externa para los resultados de " "la búsqueda." @@ -3851,68 +3851,68 @@ msgstr "" "Aktiviert die Option einen Link für Suchresultate zu einem externen Wiki " "hinzuzufügen." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:56 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:83 msgid "URL de búsqueda Wiki" msgstr "Wiki Such-URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:61 #, fuzzy msgid "URL que utiliza la wiki para realizar una búsqueda de una página." msgstr "URL, welche das Wiki zur Inhaltssuche nutzt." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:65 msgid "Como parámetro se utiliza el nombre del cliente." msgstr "Name des Kunden als Parameter benutzen." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:69 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:102 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:187 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:214 msgid "Ejemplo:" msgstr "Beispiel:" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:116 msgid "URL de página en Wiki" msgstr "Wiki URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:94 #, fuzzy msgid "URL que utiliza la wiki para acceder a los detalles de una página." msgstr "" "URL, mit der das Wiki für den Zugriff auf die Eintragsdetails verwendet wird." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:98 msgid "" "El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " "de la Wiki." msgstr "Der Kontoname wird als Parameter der Wiki-Suchvariable benutzt." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:136 msgid "Prefijo para nombre de cuenta" msgstr "Präfix für den Kontonamen" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:127 msgid "" "Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." msgstr "Präfix zur Auswahl der Konten, die einen Link zum Wiki besitzen." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:146 msgid "DokuWiki API" msgstr "DokuWiki API" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:164 msgid "Habilitar API de DokuWiki" msgstr "DokuWiki API aktivieren" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:166 msgid "" "Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." msgstr "Aktiviert DokuWiki XML-RPC API für Wiki-Links." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:168 msgid "" "Para que esta característica funcione, es necesario habilitar los enlaces " "Wiki para el filtrado de cuentas." @@ -3920,155 +3920,155 @@ msgstr "" "Damit diese Funktion funktioniert, müssen Sie Wiki-Links für die " "Kontofilterung aktivieren." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:199 msgid "URL API" msgstr "API URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:183 msgid "URL de la API de DokuWiki." msgstr "DokuWiki API URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:205 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:227 msgid "URL Base" msgstr "Basis-URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:210 msgid "URL base de DokuWiki." msgstr "DokuWiki-Basis-URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:238 #, fuzzy msgid "Usuario para conectar a la API de DokuWiki." msgstr "Benutzer zum Herstellen einer Verbindung mit der DokuWiki API" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:282 msgid "Namespace" msgstr "Namensraum" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:271 msgid "Namespace utilizado para buscar las páginas." msgstr "Namensraum, der verwendet wird, um Seiten zu durchsuchen." #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:170 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:172 msgid "Instalar" msgstr "Installieren" -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 +#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 msgid "Filtro ON" msgstr "Filter eingeschaltet" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:11 #, php-format msgid "Instalación %s" msgstr "Installation %s" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:21 msgid "Admin de sysPass" msgstr "sysPass Administrator" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:29 msgid "Usuario administrador de sysPass" msgstr "sysPass Administrator" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:37 msgid "Login del usuario administrador de sysPass" msgstr "sysPass Administratoranmeldung" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:69 msgid "Configurar BBDD" msgstr "Datenbankkonfiguration" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:79 msgid "Usuario acceso BBDD" msgstr "Datenbankbenutzer" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:87 #, fuzzy msgid "Usuario con permisos de administrador de MySQL" msgstr "Benutzer mit Datenbankadministratorrechten" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:95 msgid "Clave acceso BBDD" msgstr "Datenbankpasswort" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:104 msgid "Nombre BBDD para sysPass" msgstr "sysPass Datenbankname" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:112 msgid "Nombre de la base de datos para sysPass" msgstr "Name der sysPass Datenbank" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:121 msgid "Servidor BBDD para sysPass" msgstr "sysPass Datenbankserver" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:129 msgid "Nombre del servidor para instalar la base de datos de sysPass" msgstr "" "Name oder IP-Adresse des Servers, auf dem die sysPass Datenbank installiert " "werden soll" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:149 msgid "Modo Hosting" msgstr "Hosting-Modus" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:156 msgid "No crea ni verifica los permisos del usuario sobre la BBDD" msgstr "" "Berechtigungen des Benutzers für die Datenbank werden weder erstellt, noch " "überprüft" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 msgid "Otros" msgstr "Andere" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 msgid "Creador" msgstr "Ersteller" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 msgid "Eliminar" msgstr "Entfernen" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 msgid "Eliminar Historial" msgstr "Delete History" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 msgid "Opciones" msgstr "Optionen" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 msgid "Regenerar Autorización" msgstr "Autorisierung erneuern" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 msgid "Token" msgstr "Token" -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:54 msgid "Indica si el cliente es visible para todos los usuarios." msgstr "Legt fest, ob der Kunde für alle Benutzer sichtbar ist." -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:57 msgid "" "Por defecto los clientes asignados a cuentas sólo son visibles para los " "usuarios con acceso a las cuentas." @@ -4076,60 +4076,60 @@ msgstr "" "Standardmäßig sind Kunden, die bereits Konten zugeordnet sind, nur für " "Benutzer mit Zugriff auf diese Konten sichtbar." -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 msgid "Nombre del campo" msgstr "Feldname" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 msgid "Texto Ayuda" msgstr "Hilfetext" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 msgid "Ayuda del campo" msgstr "Feldhilfe" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 msgid "Obligatorio" msgstr "Benötigt" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 msgid "Puntuación" msgstr "Bewertung" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 msgid "Expresión Regular" msgstr "Regulärer Ausdruck" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 msgid "Incluir Minúsculas" msgstr "Kleinbuchstaben einschließen" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 msgid "Las cuentas sólo serán visibles por el usuario." msgstr "Konten sind nur für den Benutzer sichtbar." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 msgid "Los administradores no podrán acceder a las cuentas." msgstr "Administratoren können die Konten nicht anzeigen." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." msgstr "Accounts sind nur für den Benutzer und seine Hauptgruppe sichtbar." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 msgid "Dirección IP" msgstr "IP Adresse" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 msgid "Timeout" msgstr "Timeout" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 msgid "" "Prioridad de asignación en caso de coincidir con otros valores asignados por " "usuario, grupo o perfil." @@ -4137,306 +4137,306 @@ msgstr "" "Priorität der Zuordnung bei Übereinstimmung mit anderen Werten, die von " "Benutzer, Gruppe oder Profil zugewiesen wurden." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 msgid "Prioridad de asignación" msgstr "Zuweisungspriorität" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 msgid "" "Indica si los valores serán forzados al crear o modificar los elementos." msgstr "" "Erzwinge das Setzen von Werten beim Erstellen oder Ändern von Elementen." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 msgid "Los valores serán añadidos a los existentes." msgstr "Die Werte werden mit den vorhandenen Werten zusammengeführt." -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:83 msgid "Hash" msgstr "Hash" -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:91 msgid "URL" msgstr "URL" -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:101 msgid "Uso" msgstr "Benutzen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 msgid "Nombre de usuario completo" msgstr "Vollständiger Benutzername" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:58 msgid "Login de inicio de sesión" msgstr "Sitzungslogin" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:69 msgid "Login SSO" msgstr "SSO-Login" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:77 msgid "Login de inicio de sesión con SSO" msgstr "Sitzungsanmeldung mit SSO" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:84 msgid "Email" msgstr "E-Mail" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:92 msgid "Dirección de correo" msgstr "E-Mail-Adresse" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:200 msgid "Admin Aplicación" msgstr "Anwendungsadministrator" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:202 msgid "Administrador de la aplicación" msgstr "Anwendungsadministrator" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:218 msgid "Admin Cuentas" msgstr "Kontoadministrator" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:220 msgid "Administrador de cuentas" msgstr "Kontoadministrator" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:240 msgid "Forzar cambio de clave" msgstr "Erzwinge Passwortänderung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:257 msgid "Deshabilitado" msgstr "Inaktiv" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 msgid "Entradas" msgstr "Einträge" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 msgid "Último Acceso" msgstr "Letzter Zugriff" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 msgid "Fecha Clave Maestra" msgstr "Erstelldatum des Masterpassworts" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:311 msgid "Usado en" msgstr "Verwendet in" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 msgid "Usado por" msgstr "Verwendet von" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:108 msgid "(*) Incluido en grupo" msgstr "(*) Gelistet in der Gruppe" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 msgid "Gestión" msgstr "Verwaltung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 msgid "Crear" msgstr "Erstellen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 msgid "Crear nueva cuenta" msgstr "Neues Konto erstellen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 msgid "Ver detalles de cuenta" msgstr "Kontodetails anzeigen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 msgid "Ver clave de cuenta" msgstr "Passwort anzeigen" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 #: ../../../config/actions.xml:259 msgid "Ver Historial" msgstr "Verlauf anzeigen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 msgid "Ver historial de cuenta" msgstr "Kontohistorie anzeigen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 msgid "Editar cuenta" msgstr "Konto ändern" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 msgid "Editar Clave" msgstr "Passwort ändern" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 msgid "Editar clave de cuenta" msgstr "Passwort des Kontos ändern" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 msgid "Eliminar cuenta" msgstr "Konto entfernen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 msgid "Ver archivos de cuenta" msgstr "Dateien des Kontos anzeigen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 msgid "Publicar Enlace" msgstr "Teile Link" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 msgid "Publicar enlace a cuenta" msgstr "Teile Link mit Konto" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 msgid "Crear cuenta privada" msgstr "Erstelle privates Konto" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 msgid "Crear cuenta privada para grupo" msgstr "Erstellen Sie ein privates Konto für die Gruppe" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 msgid "Asignar permisos" msgstr "Berechtigungen zuweisen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 msgid "Gestión de usuarios" msgstr "Benutzerverwaltung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 msgid "Gestión de grupos" msgstr "Gruppenverwaltung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 msgid "Gestión de perfiles" msgstr "Profilverwaltung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 msgid "Gestión de categorías" msgstr "Kategorieverwaltung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 msgid "Gestión de etiquetas" msgstr "Tag-Verwaltung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 #, fuzzy msgid "Gestión de clientes" msgstr "Kundenverwaltung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 msgid "Gestión de campos personalizados" msgstr "Spezifische Felderverwaltung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 msgid "Gestión de autorizaciones API" msgstr "API Berechtigungsmanagement" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 msgid "Gestión de enlaces" msgstr "Link-Verwaltung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 msgid "Gestión de cuentas" msgstr "Kontenverwaltung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 msgid "Valores por Defecto" msgstr "Standardwerte" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 msgid "Gestión de Valores por Defecto" msgstr "Verwaltung Vorgabewerte" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 #: ../../../config/actions.xml:691 msgid "Configuración General" msgstr "Allgemeine Einstellungen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 msgid "Opciones de encriptación" msgstr "Verschlüsselungsoptionen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 msgid "Backup" msgstr "Sicherung" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 msgid "Realizar copia de seguridad y exportar" msgstr "Backup erstellen und exportieren" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 msgid "Importar" msgstr "Importieren" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 msgid "Realizar importación de cuentas" msgstr "Kontoimport" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 msgid "Log de Eventos" msgstr "Ereignisprotokoll" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 msgid "Ver log de eventos" msgstr "Ereignisprotokoll ansehen" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 msgid "Nombre del perfil" msgstr "Profilname" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:46 msgid "Clave Anterior" msgstr "Vorheriges Passwort" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:73 msgid "Acceder" msgstr "Anmeldung" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:82 msgid "¿Olvidó su clave?" msgstr "Passwort vergessen?" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 msgid "Aplicación actualizada correctamente" msgstr "Anwendung erfolgreich aktualisiert" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 #, php-format msgid "Actualización %s" msgstr "Aktualisierung %s" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:20 msgid "Actualización de BBDD" msgstr "Datenbank-Update" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:22 msgid "Actualización de Aplicación" msgstr "Anwendungsupdate" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 msgid "Código de Seguridad" msgstr "Sicherheitscode" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 msgid "" "Este código se encuentra en el archivo de configuración de sysPass con la " "etiqueta \"upgradeKey\"" @@ -4444,7 +4444,7 @@ msgstr "" "Diesen Code finden Sie in der sysPass Konfigurationsdatei mit dem Tag-Namen " "\"upgradekey\"" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:47 msgid "" "Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " "o indique los IDs por defecto para los elementos huérfanos." @@ -4452,31 +4452,31 @@ msgstr "" "Einige verwaiste Konten wurden gefunden. Bitte ändern Sie diese Einträge " "oder geben Sie die Standard-IDs für diese ein." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:49 msgid "Si no se indican los IDs, se crearán nuevos elementos." msgstr "Wenn die ID des Objektes nicht gesetzt ist, wird sie erstellt." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:74 msgid "Introducir un ID de usuario válido para cuentas" msgstr "Bitte geben Sie einen gültigen Benutzernamen für die Konten ein" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 msgid "Introducir un ID de categoría válido para cuentas" msgstr "Bitte geben Sie eine gültige Kategorie-ID für die Konten ein" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:96 msgid "Introducir un ID de cliente válido para cuentas" msgstr "Bitte geben Sie eine gültige Kunden-ID für die Konten ein" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 msgid "Introducir un ID de grupo válido para usuarios" msgstr "Bitte geben Sie eine gültige Gruppen-ID für die Benutzer ein" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 msgid "Introducir un ID de perfil válido para usuarios" msgstr "Bitte geben Sie eine gültige Profil-ID für die Benutzer ein" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:128 msgid "" "Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " "necesario reencriptar los datos almacenados" @@ -4484,64 +4484,64 @@ msgstr "" "Das Update verwendet ein neues Verschlüsselungsschema. Es ist erforderlich, " "dass alle verschlüsselten Daten neu verschlüsselt werden." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:150 msgid "Introducir login de usuario válido" msgstr "Bitte einen gültigen Kontonamen angeben" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:162 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 msgid "He realizado una copia de seguridad completa de sysPass" msgstr "Ich habe eine vollständige sysPass Sicherung durchgeführt" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 msgid "Por favor espere mientras el proceso se ejecuta" msgstr "Vorgang läuft. Bitte warten." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:184 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 msgid "Actualizar" msgstr "Aktualisierung" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:186 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 msgid "Iniciar Actualización" msgstr "Aktualisierung starten" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:95 msgid "Notificación global" msgstr "Globale Benachrichtigung" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:103 msgid "Sólo para administradores de la aplicación" msgstr "Nur für Anwendungsadministratoren" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:107 msgid "Solo Admins" msgstr "Nur für Administratoren" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:29 msgid "Nombre del plugin" msgstr "Plugin-Name" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:41 msgid "Versión del plugin" msgstr "Plugin-Version" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:46 msgid "Versión Compatible" msgstr "Kompatible Version" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:53 msgid "Versión de sysPass compatible" msgstr "Kompatible sysPass Version" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:39 msgid "Autor" msgstr "Autor" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:65 msgid "Autor del plugin" msgstr "Plugin-Autor" @@ -4554,7 +4554,7 @@ msgid "Para iniciar la actualización introduzca el código de seguridad" msgstr "Bitte geben Sie den Sicherheitscode ein, um das Upgrade zu starten" #: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:13 msgid "Solicitud de Cambio de Clave" msgstr "Passwortänderungsanfrage versenden" @@ -4562,62 +4562,70 @@ msgstr "Passwortänderungsanfrage versenden" msgid "Email del Usuario" msgstr "Benutzer E-Mail" -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:39 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:49 msgid "Volver a iniciar sesión" msgstr "Zurück zur Anmeldung" -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:46 msgid "Solicitar" msgstr "Anfrage" -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:56 msgid "Cambiar" msgstr "Ändern" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:107 msgid "Ordenar resultados por visitas" msgstr "Suchergebnis nach Aufrufhäufigkeit sortieren" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:109 msgid "" "Ordena los resultados de búsqueda por el número de visitas de las cuentas." msgstr "" "Sortiert das Suchergebnis der Konten anhand der Anzahl der Kontenzugriffe." -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:124 msgid "Barra de navegación superior" msgstr "Obere Navigationsleiste" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:126 msgid "Mostrar una barra de navegación superior en las búsquedas." msgstr "Zeigt eine Navigationsleiste oberhalb der Suchresultate." -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:141 msgid "Mostrar Acciones Ocultas" msgstr "Zeige versteckte Aktionen" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:143 msgid "" "Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." msgstr "" "Ermöglicht es, die versteckten Aktionen der Kontensuchmaske anzuzeigen." +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:175 +msgid "Notificaciones In-App" +msgstr "In-App Notifications" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:177 +msgid "Habilita la consulta de notificaciones activas In-App." +msgstr "Enables the active In-App notifications polling" + #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:16 #: ../../../config/actions.xml:277 msgid "Ver Wiki" msgstr "Wiki anzeigen" -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 #, php-format msgid "Resultados de búsqueda de '%s'" msgstr "Suchergebnisse von '%s'" -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:37 msgid "Página" msgstr "Seite" @@ -5791,6 +5799,12 @@ msgstr "Link" #~ "Die Anwendung, von der die Daten exportiert wurden, kann nicht " #~ "festgestellt werden" +#~ msgid "Último backup" +#~ msgstr "Letztes Backup" + +#~ msgid "Última exportación" +#~ msgstr "Letzter Export" + #~ msgid "Registro de eventos vaciado" #~ msgstr "Ereignisprotokoll entfernt" @@ -5840,6 +5854,12 @@ msgstr "Link" #~ msgid "Modificar Cuenta" #~ msgstr "Konto ändern" +#~ msgid "No hay backups para descargar" +#~ msgstr "Es sind keine Backups zum Herunterladen vorhanden" + +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "Keine XML-Daten zum Herunterladen vorhanden" + #~ msgid "Se permite un máximo de 4 caracteres." #~ msgstr "Maximal 4 Zeichen erlaubt." @@ -6047,9 +6067,6 @@ msgstr "Link" #~ msgid "Es necesario crearla y asignar los permisos necesarios" #~ msgstr "Sie müssen es erstellen und die nötigen Rechte zuweisen" -#~ msgid "La plantilla no contiene archivos" -#~ msgstr "Vorlage enthält keine Dateien" - #~ msgid "Error al actualizar la configuración" #~ msgstr "Es ist ein Fehler beim Aktualisieren der Konfiguration aufgetreten" @@ -6266,6 +6283,9 @@ msgstr "Link" #~ msgid "Cuentas Vinculadas" #~ msgstr "Verbundene Konten" +#~ msgid "Hay %d notificaciones pendientes" +#~ msgstr "Es gibt %d ungelesene Benachrichtigungen" + #~ msgid "Agente" #~ msgstr "Agent" @@ -6702,9 +6722,6 @@ msgstr "Link" #~ msgid "Archivo visualizado" #~ msgstr "Datei angesehen" -#~ msgid "Archivo descargado" -#~ msgstr "Datei heruntergeladen" - #~ msgid "Archivo: %s" #~ msgstr "Datei: %s" @@ -6994,3 +7011,12 @@ msgstr "Link" #~ msgid "Grupo visualizado" #~ msgstr "Gruppe angesehen" + +#~ msgid "Plugin disponible" +#~ msgstr "Plugin available" + +#~ msgid "Plugin no disponible" +#~ msgstr "Plugin unavailable" + +#~ msgid "Plugin cargado" +#~ msgstr "Plugin loaded" diff --git a/app/locales/en_GB/LC_MESSAGES/messages.mo b/app/locales/en_GB/LC_MESSAGES/messages.mo index c92866cb659c5f5655c01e709f5023f0601d64ea..e5bd5a00ac95fbde7fc5e1d513b4940f42d44d96 100644 GIT binary patch delta 30180 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 delta 30341 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 diff --git a/app/locales/en_GB/LC_MESSAGES/messages.po b/app/locales/en_GB/LC_MESSAGES/messages.po index cfecd04f..1e9ccb34 100644 --- a/app/locales/en_GB/LC_MESSAGES/messages.po +++ b/app/locales/en_GB/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-16 01:09+0200\n" -"PO-Revision-Date: 2018-10-16 01:09+0200\n" +"POT-Creation-Date: 2018-10-28 20:00+0100\n" +"PO-Revision-Date: 2018-10-28 20:00+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: nuxsmin@syspass.org\n" "Language: en_GB\n" @@ -53,7 +53,7 @@ msgid "Actual: %s - Necesario: 750" msgstr "Current: %s - Needed: 750" #: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:142 +#: ../../../../lib/SP/Util/ErrorUtil.php:152 #: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:96 msgid "No tiene permisos para acceder a esta cuenta" msgstr "You don't have permission to access to this account" @@ -61,14 +61,14 @@ msgstr "You don't have permission to access to this account" #: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 #: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 #: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:139 -#: ../../../../lib/SP/Util/ErrorUtil.php:143 -#: ../../../../lib/SP/Util/ErrorUtil.php:147 -#: ../../../../lib/SP/Util/ErrorUtil.php:151 -#: ../../../../lib/SP/Util/ErrorUtil.php:159 -#: ../../../../lib/SP/Util/ErrorUtil.php:166 +#: ../../../../lib/SP/Util/ErrorUtil.php:149 +#: ../../../../lib/SP/Util/ErrorUtil.php:153 +#: ../../../../lib/SP/Util/ErrorUtil.php:157 +#: ../../../../lib/SP/Util/ErrorUtil.php:161 +#: ../../../../lib/SP/Util/ErrorUtil.php:169 +#: ../../../../lib/SP/Util/ErrorUtil.php:176 #: ../../../modules/web/Controllers/ErrorController.php:124 -#: ../../../modules/web/Controllers/UserPassResetController.php:94 +#: ../../../modules/web/Controllers/UserPassResetController.php:96 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Consulte con el administrador" msgstr "Please contact to the administrator" @@ -84,9 +84,9 @@ msgid "Acceso denegado" msgstr "Access denied" #: ../../../../lib/SP/Core/Acl/Acl.php:300 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 msgid "Acción" msgstr "Action" @@ -104,44 +104,44 @@ msgstr "Action" #: ../../../../lib/SP/Services/Auth/LoginService.php:608 #: ../../../../lib/SP/Services/Ldap/LdapImportService.php:238 #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/Controllers/LoginController.php:120 -#: ../../../modules/web/Controllers/UserController.php:278 -#: ../../../modules/web/Controllers/UserController.php:312 -#: ../../../modules/web/Controllers/UserController.php:373 -#: ../../../modules/web/Controllers/UserController.php:412 -#: ../../../modules/web/Controllers/UserPassResetController.php:190 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 +#: ../../../modules/web/Controllers/LoginController.php:122 +#: ../../../modules/web/Controllers/UserController.php:287 +#: ../../../modules/web/Controllers/UserController.php:323 +#: ../../../modules/web/Controllers/UserController.php:388 +#: ../../../modules/web/Controllers/UserController.php:429 +#: ../../../modules/web/Controllers/UserPassResetController.php:197 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:141 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:61 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:149 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:233 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:247 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:24 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:94 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:75 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:77 #: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 msgid "Usuario" msgstr "User" @@ -151,100 +151,100 @@ msgid "Acción no encontrada" msgstr "Action not found" #: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Util/ErrorUtil.php:150 -#: ../../../modules/web/Controllers/AccountFileController.php:261 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:59 -#: ../../../modules/web/Controllers/AccountManagerController.php:77 -#: ../../../modules/web/Controllers/AccountManagerController.php:204 -#: ../../../modules/web/Controllers/AuthTokenController.php:68 -#: ../../../modules/web/Controllers/AuthTokenController.php:105 -#: ../../../modules/web/Controllers/AuthTokenController.php:170 -#: ../../../modules/web/Controllers/AuthTokenController.php:200 -#: ../../../modules/web/Controllers/AuthTokenController.php:243 -#: ../../../modules/web/Controllers/AuthTokenController.php:278 -#: ../../../modules/web/Controllers/AuthTokenController.php:327 -#: ../../../modules/web/Controllers/CategoryController.php:66 -#: ../../../modules/web/Controllers/CategoryController.php:100 -#: ../../../modules/web/Controllers/CategoryController.php:164 -#: ../../../modules/web/Controllers/CategoryController.php:194 -#: ../../../modules/web/Controllers/CategoryController.php:237 -#: ../../../modules/web/Controllers/CategoryController.php:277 -#: ../../../modules/web/Controllers/CategoryController.php:317 -#: ../../../modules/web/Controllers/ClientController.php:64 -#: ../../../modules/web/Controllers/ClientController.php:96 -#: ../../../modules/web/Controllers/ClientController.php:160 -#: ../../../modules/web/Controllers/ClientController.php:190 -#: ../../../modules/web/Controllers/ClientController.php:230 -#: ../../../modules/web/Controllers/ClientController.php:268 -#: ../../../modules/web/Controllers/ClientController.php:304 -#: ../../../modules/web/Controllers/CustomFieldController.php:65 -#: ../../../modules/web/Controllers/CustomFieldController.php:97 -#: ../../../modules/web/Controllers/CustomFieldController.php:159 -#: ../../../modules/web/Controllers/CustomFieldController.php:189 -#: ../../../modules/web/Controllers/CustomFieldController.php:221 -#: ../../../modules/web/Controllers/CustomFieldController.php:258 -#: ../../../modules/web/Controllers/CustomFieldController.php:295 -#: ../../../modules/web/Controllers/EventlogController.php:101 -#: ../../../modules/web/Controllers/ItemPresetController.php:67 -#: ../../../modules/web/Controllers/ItemPresetController.php:151 -#: ../../../modules/web/Controllers/ItemPresetController.php:188 -#: ../../../modules/web/Controllers/ItemPresetController.php:226 -#: ../../../modules/web/Controllers/ItemPresetController.php:256 -#: ../../../modules/web/Controllers/ItemPresetController.php:295 -#: ../../../modules/web/Controllers/ItemPresetController.php:334 -#: ../../../modules/web/Controllers/NotificationController.php:102 -#: ../../../modules/web/Controllers/NotificationController.php:164 -#: ../../../modules/web/Controllers/NotificationController.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:210 -#: ../../../modules/web/Controllers/NotificationController.php:241 -#: ../../../modules/web/Controllers/NotificationController.php:292 -#: ../../../modules/web/Controllers/NotificationController.php:319 -#: ../../../modules/web/Controllers/NotificationController.php:352 -#: ../../../modules/web/Controllers/PluginController.php:103 -#: ../../../modules/web/Controllers/PluginController.php:122 -#: ../../../modules/web/Controllers/PublicLinkController.php:71 -#: ../../../modules/web/Controllers/PublicLinkController.php:105 -#: ../../../modules/web/Controllers/PublicLinkController.php:167 -#: ../../../modules/web/Controllers/PublicLinkController.php:193 -#: ../../../modules/web/Controllers/PublicLinkController.php:223 -#: ../../../modules/web/Controllers/PublicLinkController.php:264 -#: ../../../modules/web/Controllers/PublicLinkController.php:296 -#: ../../../modules/web/Controllers/PublicLinkController.php:338 -#: ../../../modules/web/Controllers/TagController.php:65 -#: ../../../modules/web/Controllers/TagController.php:99 -#: ../../../modules/web/Controllers/TagController.php:159 -#: ../../../modules/web/Controllers/TagController.php:189 -#: ../../../modules/web/Controllers/TagController.php:223 -#: ../../../modules/web/Controllers/TagController.php:254 -#: ../../../modules/web/Controllers/TagController.php:285 -#: ../../../modules/web/Controllers/UserController.php:69 -#: ../../../modules/web/Controllers/UserController.php:101 -#: ../../../modules/web/Controllers/UserController.php:186 -#: ../../../modules/web/Controllers/UserController.php:218 -#: ../../../modules/web/Controllers/UserController.php:254 -#: ../../../modules/web/Controllers/UserController.php:296 -#: ../../../modules/web/Controllers/UserController.php:357 -#: ../../../modules/web/Controllers/UserController.php:398 -#: ../../../modules/web/Controllers/UserController.php:435 -#: ../../../modules/web/Controllers/UserGroupController.php:74 -#: ../../../modules/web/Controllers/UserGroupController.php:108 -#: ../../../modules/web/Controllers/UserGroupController.php:179 -#: ../../../modules/web/Controllers/UserGroupController.php:209 -#: ../../../modules/web/Controllers/UserGroupController.php:249 -#: ../../../modules/web/Controllers/UserGroupController.php:288 -#: ../../../modules/web/Controllers/UserGroupController.php:327 -#: ../../../modules/web/Controllers/UserProfileController.php:64 -#: ../../../modules/web/Controllers/UserProfileController.php:96 -#: ../../../modules/web/Controllers/UserProfileController.php:163 -#: ../../../modules/web/Controllers/UserProfileController.php:193 -#: ../../../modules/web/Controllers/UserProfileController.php:233 -#: ../../../modules/web/Controllers/UserProfileController.php:268 -#: ../../../modules/web/Controllers/UserProfileController.php:304 +#: ../../../../lib/SP/Util/ErrorUtil.php:160 +#: ../../../modules/web/Controllers/AccountFileController.php:292 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:64 +#: ../../../modules/web/Controllers/AccountManagerController.php:79 +#: ../../../modules/web/Controllers/AccountManagerController.php:213 +#: ../../../modules/web/Controllers/AuthTokenController.php:71 +#: ../../../modules/web/Controllers/AuthTokenController.php:111 +#: ../../../modules/web/Controllers/AuthTokenController.php:176 +#: ../../../modules/web/Controllers/AuthTokenController.php:209 +#: ../../../modules/web/Controllers/AuthTokenController.php:254 +#: ../../../modules/web/Controllers/AuthTokenController.php:292 +#: ../../../modules/web/Controllers/AuthTokenController.php:344 +#: ../../../modules/web/Controllers/CategoryController.php:69 +#: ../../../modules/web/Controllers/CategoryController.php:106 +#: ../../../modules/web/Controllers/CategoryController.php:170 +#: ../../../modules/web/Controllers/CategoryController.php:203 +#: ../../../modules/web/Controllers/CategoryController.php:248 +#: ../../../modules/web/Controllers/CategoryController.php:290 +#: ../../../modules/web/Controllers/CategoryController.php:332 +#: ../../../modules/web/Controllers/ClientController.php:70 +#: ../../../modules/web/Controllers/ClientController.php:107 +#: ../../../modules/web/Controllers/ClientController.php:171 +#: ../../../modules/web/Controllers/ClientController.php:203 +#: ../../../modules/web/Controllers/ClientController.php:245 +#: ../../../modules/web/Controllers/ClientController.php:285 +#: ../../../modules/web/Controllers/ClientController.php:323 +#: ../../../modules/web/Controllers/CustomFieldController.php:71 +#: ../../../modules/web/Controllers/CustomFieldController.php:108 +#: ../../../modules/web/Controllers/CustomFieldController.php:170 +#: ../../../modules/web/Controllers/CustomFieldController.php:202 +#: ../../../modules/web/Controllers/CustomFieldController.php:236 +#: ../../../modules/web/Controllers/CustomFieldController.php:275 +#: ../../../modules/web/Controllers/CustomFieldController.php:314 +#: ../../../modules/web/Controllers/EventlogController.php:107 +#: ../../../modules/web/Controllers/ItemPresetController.php:70 +#: ../../../modules/web/Controllers/ItemPresetController.php:157 +#: ../../../modules/web/Controllers/ItemPresetController.php:197 +#: ../../../modules/web/Controllers/ItemPresetController.php:236 +#: ../../../modules/web/Controllers/ItemPresetController.php:268 +#: ../../../modules/web/Controllers/ItemPresetController.php:309 +#: ../../../modules/web/Controllers/ItemPresetController.php:350 +#: ../../../modules/web/Controllers/NotificationController.php:110 +#: ../../../modules/web/Controllers/NotificationController.php:173 +#: ../../../modules/web/Controllers/NotificationController.php:191 +#: ../../../modules/web/Controllers/NotificationController.php:223 +#: ../../../modules/web/Controllers/NotificationController.php:255 +#: ../../../modules/web/Controllers/NotificationController.php:308 +#: ../../../modules/web/Controllers/NotificationController.php:337 +#: ../../../modules/web/Controllers/NotificationController.php:372 +#: ../../../modules/web/Controllers/PluginController.php:111 +#: ../../../modules/web/Controllers/PluginController.php:133 +#: ../../../modules/web/Controllers/PublicLinkController.php:74 +#: ../../../modules/web/Controllers/PublicLinkController.php:111 +#: ../../../modules/web/Controllers/PublicLinkController.php:173 +#: ../../../modules/web/Controllers/PublicLinkController.php:201 +#: ../../../modules/web/Controllers/PublicLinkController.php:233 +#: ../../../modules/web/Controllers/PublicLinkController.php:276 +#: ../../../modules/web/Controllers/PublicLinkController.php:310 +#: ../../../modules/web/Controllers/PublicLinkController.php:354 +#: ../../../modules/web/Controllers/TagController.php:68 +#: ../../../modules/web/Controllers/TagController.php:105 +#: ../../../modules/web/Controllers/TagController.php:165 +#: ../../../modules/web/Controllers/TagController.php:197 +#: ../../../modules/web/Controllers/TagController.php:233 +#: ../../../modules/web/Controllers/TagController.php:266 +#: ../../../modules/web/Controllers/TagController.php:299 +#: ../../../modules/web/Controllers/UserController.php:75 +#: ../../../modules/web/Controllers/UserController.php:112 +#: ../../../modules/web/Controllers/UserController.php:197 +#: ../../../modules/web/Controllers/UserController.php:230 +#: ../../../modules/web/Controllers/UserController.php:266 +#: ../../../modules/web/Controllers/UserController.php:308 +#: ../../../modules/web/Controllers/UserController.php:373 +#: ../../../modules/web/Controllers/UserController.php:416 +#: ../../../modules/web/Controllers/UserController.php:455 +#: ../../../modules/web/Controllers/UserGroupController.php:77 +#: ../../../modules/web/Controllers/UserGroupController.php:114 +#: ../../../modules/web/Controllers/UserGroupController.php:185 +#: ../../../modules/web/Controllers/UserGroupController.php:217 +#: ../../../modules/web/Controllers/UserGroupController.php:259 +#: ../../../modules/web/Controllers/UserGroupController.php:300 +#: ../../../modules/web/Controllers/UserGroupController.php:341 +#: ../../../modules/web/Controllers/UserProfileController.php:70 +#: ../../../modules/web/Controllers/UserProfileController.php:107 +#: ../../../modules/web/Controllers/UserProfileController.php:174 +#: ../../../modules/web/Controllers/UserProfileController.php:206 +#: ../../../modules/web/Controllers/UserProfileController.php:248 +#: ../../../modules/web/Controllers/UserProfileController.php:285 +#: ../../../modules/web/Controllers/UserProfileController.php:323 msgid "No tiene permisos para realizar esta operación" msgstr "You don't have permission to do this operation" #: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:146 +#: ../../../../lib/SP/Util/ErrorUtil.php:156 msgid "No tiene permisos para acceder a esta página" msgstr "You don't have permission to access this page" @@ -320,17 +320,17 @@ msgstr "Invalid icons class" #: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 #: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:190 -#: ../../../modules/web/Controllers/AccountController.php:228 +#: ../../../modules/web/Controllers/AccountController.php:229 msgid "ON" msgstr "ON" #: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../modules/web/Controllers/AccountController.php:228 +#: ../../../modules/web/Controllers/AccountController.php:229 msgid "OFF" msgstr "OFF" #: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:126 +#: ../../../../lib/SP/Mvc/View/Template.php:127 #, php-format msgid "No es posible obtener la plantilla \"%s\" : %s" msgstr "Unable to retrieve the \"%s\" template: %s" @@ -352,12 +352,12 @@ msgstr "Encoding error" msgid "Respuesta XML-RPC inválida" msgstr "Invalid XML-RPC response" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:71 +#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:70 msgid "La sesión no se ha iniciado o ha caducado" msgstr "Session not started or timed out" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:119 -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:128 +#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:115 +#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:124 msgid "Acción Inválida" msgstr "Invalid Action" @@ -399,19 +399,18 @@ msgstr "Invalid filter type" msgid "Tipo de objeto incorrecto" msgstr "Wrong object type" -#: ../../../../lib/SP/Mvc/View/Template.php:278 -#: ../../../../lib/SP/Mvc/View/Template.php:280 +#: ../../../../lib/SP/Mvc/View/Template.php:302 +#: ../../../../lib/SP/Mvc/View/Template.php:366 #, php-format msgid "No es posible obtener la variable \"%s\"" msgstr "Unable to retrieve the \"%s\" variable" -#: ../../../../lib/SP/Mvc/View/Template.php:326 -#: ../../../../lib/SP/Mvc/View/Template.php:328 +#: ../../../../lib/SP/Mvc/View/Template.php:335 #, php-format msgid "No es posible destruir la variable \"%s\"" msgstr "Unable to unset the \"%s\" variable" -#: ../../../../lib/SP/Mvc/View/Template.php:345 +#: ../../../../lib/SP/Mvc/View/Template.php:356 msgid "La plantilla no contiene archivos" msgstr "Template does not contain files" @@ -432,8 +431,8 @@ msgstr "Plugin" #: ../../../../lib/SP/Plugin/PluginManager.php:219 #: ../../../../lib/SP/Plugin/PluginManager.php:339 -#: ../../../modules/web/Controllers/PluginController.php:213 -#: ../../../modules/web/Controllers/PluginController.php:216 +#: ../../../modules/web/Controllers/PluginController.php:226 +#: ../../../modules/web/Controllers/PluginController.php:229 msgid "Plugin deshabilitado" msgstr "Plugin disabled" @@ -479,34 +478,34 @@ msgstr "New Plugin" #: ../../../modules/api/Controllers/UserGroupController.php:123 #: ../../../modules/api/Controllers/UserGroupController.php:152 #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/Controllers/UserGroupController.php:265 -#: ../../../modules/web/Controllers/UserGroupController.php:304 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: ../../../modules/web/Controllers/UserGroupController.php:274 +#: ../../../modules/web/Controllers/UserGroupController.php:315 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:43 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:22 msgid "Nombre" msgstr "Name" @@ -530,20 +529,20 @@ msgstr "Error while searching the group RDN" #: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:111 #: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:143 #: ../../../../lib/SP/Services/Ldap/LdapImportService.php:140 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/Controllers/UserGroupController.php:231 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/Controllers/UserGroupController.php:238 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:274 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:277 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:233 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:148 msgid "Grupo" msgstr "Group" @@ -558,8 +557,8 @@ msgid "Error al buscar objetos en DN base" msgstr "Error while searching objects in base DN" #: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:95 -#: ../../../modules/web/Controllers/ConfigLdapController.php:154 -#: ../../../modules/web/Controllers/ConfigLdapController.php:197 +#: ../../../modules/web/Controllers/ConfigLdapController.php:158 +#: ../../../modules/web/Controllers/ConfigLdapController.php:203 msgid "Conexión a LDAP correcta" msgstr "LDAP connection OK" @@ -572,14 +571,14 @@ msgstr "Unable to connect to the LDAP server" #: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:142 #: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:189 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:94 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:66 msgid "Servidor" msgstr "Server" @@ -623,7 +622,7 @@ msgid "No es posible inicializar" msgstr "Unable to initialize" #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 -#: ../../../modules/web/Controllers/AccountController.php:927 +#: ../../../modules/web/Controllers/AccountController.php:965 msgid "Solicitud" msgstr "Request" @@ -631,18 +630,18 @@ msgstr "Request" #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigBackupController.php:120 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 +#: ../../../modules/web/Controllers/ConfigBackupController.php:126 +#: ../../../modules/web/Controllers/ConfigManagerController.php:175 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: ../../../config/actions.xml:13 msgid "Cuentas" msgstr "Accounts" #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 -#: ../../../modules/web/Controllers/NotificationController.php:271 -#: ../../../modules/web/Controllers/NotificationController.php:302 +#: ../../../modules/web/Controllers/NotificationController.php:284 +#: ../../../modules/web/Controllers/NotificationController.php:317 msgid "Notificación" msgstr "Notification" @@ -847,35 +846,36 @@ msgstr "Error while removing the permission" msgid "Error al eliminar los permisos" msgstr "Error while removing the permissions" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:78 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:79 msgid "Error al crear la notificación" msgstr "Error while adding the notification" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:118 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:429 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:119 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:478 msgid "Error al modificar la notificación" msgstr "Error while updating the notification" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:137 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:156 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:138 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:157 msgid "Error al eliminar la notificación" msgstr "Error while deleting the notification" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:179 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:302 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:180 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:303 #: ../../../../lib/SP/Services/Notification/NotificationService.php:140 #: ../../../../lib/SP/Services/Notification/NotificationService.php:159 msgid "Error al eliminar las notificaciones" msgstr "Error while deleting the notifications" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:212 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:213 msgid "Error al obtener la notificación" msgstr "Error while retrieving notification" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:242 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:466 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:499 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:533 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:243 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:515 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:548 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:582 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:615 msgid "Error al obtener las notificaciones" msgstr "Error while retrieving the notifications" @@ -1107,8 +1107,8 @@ msgid "Fallo al actualizar la clave de la cuenta" msgstr "Error while updating the account's password" #: ../../../../lib/SP/Services/Account/AccountCryptService.php:193 -#: ../../../modules/web/Controllers/AccountManagerController.php:185 -#: ../../../modules/web/Controllers/AccountManagerController.php:188 +#: ../../../modules/web/Controllers/AccountManagerController.php:191 +#: ../../../modules/web/Controllers/AccountManagerController.php:194 msgid "Cuentas actualizadas" msgstr "Accounts updated" @@ -1161,7 +1161,7 @@ msgstr "Invalid format" #: ../../../../lib/SP/Services/Api/ApiService.php:96 #: ../../../../lib/SP/Services/Auth/LoginService.php:138 #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:103 -#: ../../../modules/web/Controllers/UserPassResetController.php:124 +#: ../../../modules/web/Controllers/UserPassResetController.php:126 msgid "Intentos excedidos" msgstr "Attempts exceeded" @@ -1203,10 +1203,10 @@ msgstr "Wrong master password" #: ../../../../lib/SP/Services/Auth/LoginService.php:300 #: ../../../../lib/SP/Services/Auth/LoginService.php:324 #: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:154 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 +#: ../../../../lib/SP/Util/ErrorUtil.php:164 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:73 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:147 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 msgid "Clave maestra actualizada" msgstr "Master password updated" @@ -1222,17 +1222,17 @@ msgstr "The Master Password either is not saved or is wrong" #: ../../../../lib/SP/Services/Auth/LoginService.php:518 #: ../../../../lib/SP/Services/Auth/LoginService.php:564 #: ../../../../lib/SP/Services/Auth/LoginService.php:607 -#: ../../../modules/web/Controllers/AccountFileController.php:235 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/Controllers/ItemPresetController.php:310 -#: ../../../modules/web/Controllers/ItemPresetController.php:349 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 +#: ../../../modules/web/Controllers/AccountFileController.php:260 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 +#: ../../../modules/web/Controllers/ItemPresetController.php:323 +#: ../../../modules/web/Controllers/ItemPresetController.php:364 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:30 msgid "Tipo" msgstr "Type" @@ -1252,7 +1252,7 @@ msgid "El usuario no tiene grupos asociados" msgstr "The user has no associated groups" #: ../../../../lib/SP/Services/Auth/LoginService.php:609 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:12 msgid "Autentificación" msgstr "Authentication" @@ -1279,9 +1279,9 @@ msgid "Error al realizar el backup" msgstr "Error while doing the backup" #: ../../../../lib/SP/Services/Backup/FileBackupService.php:114 -#: ../../../../lib/SP/Services/Export/XmlExportService.php:167 -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigImportController.php:83 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:198 +#: ../../../modules/web/Controllers/ConfigImportController.php:82 +#: ../../../modules/web/Controllers/ConfigImportController.php:85 msgid "Revise el registro de eventos para más detalles" msgstr "Please check out the event log for more details" @@ -1294,26 +1294,16 @@ msgstr "Unable to create the backups directory (\"%s\")" msgid "Compruebe los permisos del directorio de backups" msgstr "Please, check the backup directory permissions" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:167 +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:205 msgid "Copiando base de datos" msgstr "Copying database" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -#, php-format -msgid "La extensión '%s' no está disponible" -msgstr "The '%s' extension is unavailable" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:303 -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:338 +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:336 +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:360 msgid "Copiando aplicación" msgstr "Copying application" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:333 +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:355 msgid "Esta operación sólo es posible en entornos Linux" msgstr "This operation is only available on Linux environments" @@ -1411,37 +1401,37 @@ msgid "Errores al actualizar datos de campos personalizados" msgstr "Error while updating the custom fields data" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/ConfigBackupController.php:122 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 +#: ../../../modules/web/Controllers/ConfigBackupController.php:128 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 msgid "Categorías" msgstr "Categories" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/ConfigBackupController.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 +#: ../../../modules/web/Controllers/ConfigBackupController.php:127 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 msgid "Clientes" msgstr "Clients" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:104 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 msgid "Usuarios" msgstr "Users" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 msgid "Grupos" msgstr "Groups" @@ -1457,34 +1447,34 @@ msgstr "Error while deleting the fields" msgid "Tipo de campo no encontrado" msgstr "Field type not found" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:123 #: ../../../../lib/SP/Storage/File/FileCache.php:74 #: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 #, php-format msgid "No es posible crear el directorio (%s)" msgstr "Unable to create the directory (%s)" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:165 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:196 msgid "Error al realizar la exportación" msgstr "Error while exporting" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:233 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:264 msgid "Exportando categorías" msgstr "Exporting categories" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:345 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:376 msgid "Exportando clientes" msgstr "Exporting clients" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:391 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:422 msgid "Exportando etiquetas" msgstr "Exporting tags" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:435 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:466 msgid "Exportando cuentas" msgstr "Exporting accounts" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:545 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:576 msgid "Error al crear el archivo XML" msgstr "Error while creating the XML file" @@ -1535,38 +1525,38 @@ msgstr "Account imported" #: ../../../modules/api/Controllers/AccountController.php:190 #: ../../../modules/api/Controllers/AccountController.php:241 #: ../../../modules/api/Controllers/AccountController.php:316 -#: ../../../modules/web/Controllers/AccountController.php:226 -#: ../../../modules/web/Controllers/AccountController.php:721 -#: ../../../modules/web/Controllers/AccountController.php:766 -#: ../../../modules/web/Controllers/AccountController.php:807 -#: ../../../modules/web/Controllers/AccountController.php:846 -#: ../../../modules/web/Controllers/AccountController.php:896 -#: ../../../modules/web/Controllers/AccountController.php:930 -#: ../../../modules/web/Controllers/AccountFileController.php:234 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:112 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:147 -#: ../../../modules/web/Controllers/AccountManagerController.php:147 -#: ../../../modules/web/Controllers/ClientController.php:213 -#: ../../../modules/web/Controllers/ClientController.php:245 -#: ../../../modules/web/Controllers/ClientController.php:281 +#: ../../../modules/web/Controllers/AccountController.php:227 +#: ../../../modules/web/Controllers/AccountController.php:749 +#: ../../../modules/web/Controllers/AccountController.php:796 +#: ../../../modules/web/Controllers/AccountController.php:839 +#: ../../../modules/web/Controllers/AccountController.php:880 +#: ../../../modules/web/Controllers/AccountController.php:932 +#: ../../../modules/web/Controllers/AccountController.php:968 +#: ../../../modules/web/Controllers/AccountFileController.php:259 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:121 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:158 +#: ../../../modules/web/Controllers/AccountManagerController.php:151 +#: ../../../modules/web/Controllers/ClientController.php:225 +#: ../../../modules/web/Controllers/ClientController.php:259 +#: ../../../modules/web/Controllers/ClientController.php:297 #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:59 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:34 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:40 #: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:32 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 msgid "Cliente" msgstr "Client" @@ -1589,7 +1579,7 @@ msgid "Verifique los permisos del usuario del servidor web" msgstr "Please check the web server user permissions" #: ../../../../lib/SP/Services/Import/FileImport.php:100 -#: ../../../modules/web/Controllers/AccountFileController.php:184 +#: ../../../modules/web/Controllers/AccountFileController.php:209 msgid "Tipo de archivo no soportado" msgstr "File type not allowed" @@ -1598,8 +1588,8 @@ msgid "Compruebe la extensión del archivo" msgstr "Please, check the file extension" #: ../../../../lib/SP/Services/Import/FileImport.php:116 -#: ../../../modules/web/Controllers/AccountFileController.php:199 -#: ../../../modules/web/Controllers/AccountFileController.php:219 +#: ../../../modules/web/Controllers/AccountFileController.php:224 +#: ../../../modules/web/Controllers/AccountFileController.php:244 msgid "Error interno al leer el archivo" msgstr "Internal error while reading the file" @@ -1631,8 +1621,8 @@ msgstr "KeePass XML Import" #: ../../../../lib/SP/Services/Import/KeepassImport.php:77 #: ../../../modules/api/Controllers/ClientController.php:93 #: ../../../modules/api/Controllers/ClientController.php:98 -#: ../../../modules/web/Controllers/ClientController.php:244 -#: ../../../modules/web/Controllers/ClientController.php:248 +#: ../../../modules/web/Controllers/ClientController.php:258 +#: ../../../modules/web/Controllers/ClientController.php:262 msgid "Cliente creado" msgstr "Client added" @@ -1642,21 +1632,21 @@ msgid "Categoría importada" msgstr "Category imported" #: ../../../../lib/SP/Services/Import/KeepassImport.php:104 -#: ../../../modules/web/Controllers/CategoryController.php:220 -#: ../../../modules/web/Controllers/CategoryController.php:254 -#: ../../../modules/web/Controllers/CategoryController.php:294 +#: ../../../modules/web/Controllers/CategoryController.php:228 +#: ../../../modules/web/Controllers/CategoryController.php:264 +#: ../../../modules/web/Controllers/CategoryController.php:306 #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:72 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:45 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:51 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:105 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 msgid "Categoría" msgstr "Category" @@ -1919,13 +1909,13 @@ msgid "Error al enviar correo" msgstr "Error while sending the email" #: ../../../../lib/SP/Services/Mail/MailService.php:141 -#: ../../../modules/web/Controllers/ConfigMailController.php:138 -#: ../../../modules/web/Controllers/ConfigMailController.php:144 +#: ../../../modules/web/Controllers/ConfigMailController.php:146 +#: ../../../modules/web/Controllers/ConfigMailController.php:152 msgid "Correo enviado" msgstr "Email sent" #: ../../../../lib/SP/Services/Mail/MailService.php:142 -#: ../../../modules/web/Controllers/ConfigMailController.php:139 +#: ../../../modules/web/Controllers/ConfigMailController.php:147 msgid "Destinatario" msgstr "Recipient" @@ -2036,17 +2026,17 @@ msgid "Actualización de autorizaciones API" msgstr "API authorizations update" #: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 -#: ../../../modules/web/Controllers/AuthTokenController.php:291 -#: ../../../modules/web/Controllers/AuthTokenController.php:300 -#: ../../../modules/web/Controllers/AuthTokenController.php:307 +#: ../../../modules/web/Controllers/AuthTokenController.php:305 +#: ../../../modules/web/Controllers/AuthTokenController.php:314 +#: ../../../modules/web/Controllers/AuthTokenController.php:321 msgid "Autorización actualizada" msgstr "Authorization updated" #: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 -#: ../../../modules/web/Controllers/AuthTokenController.php:226 -#: ../../../modules/web/Controllers/AuthTokenController.php:292 -#: ../../../modules/web/Controllers/AuthTokenController.php:301 -#: ../../../modules/web/Controllers/AuthTokenController.php:339 +#: ../../../modules/web/Controllers/AuthTokenController.php:234 +#: ../../../modules/web/Controllers/AuthTokenController.php:306 +#: ../../../modules/web/Controllers/AuthTokenController.php:315 +#: ../../../modules/web/Controllers/AuthTokenController.php:356 msgid "Autorización" msgstr "Authorization" @@ -2063,9 +2053,9 @@ msgstr "Parameter" #: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:113 #: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:229 #: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:161 -#: ../../../modules/web/Controllers/ConfigBackupController.php:118 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 +#: ../../../modules/web/Controllers/ConfigBackupController.php:124 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:49 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:34 msgid "Versión" msgstr "Version" @@ -2075,12 +2065,15 @@ msgid "Error al actualizar la configuración" msgstr "Error while updating the configuration" #: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:122 -#: ../../../modules/web/Controllers/AccountFileController.php:84 -#: ../../../modules/web/Controllers/AccountFileController.php:97 -#: ../../../modules/web/Controllers/AccountFileController.php:137 -#: ../../../modules/web/Controllers/AccountFileController.php:232 -#: ../../../modules/web/Controllers/AccountFileController.php:329 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 +#: ../../../modules/web/Controllers/AccountFileController.php:88 +#: ../../../modules/web/Controllers/AccountFileController.php:104 +#: ../../../modules/web/Controllers/AccountFileController.php:141 +#: ../../../modules/web/Controllers/AccountFileController.php:257 +#: ../../../modules/web/Controllers/AccountFileController.php:364 +#: ../../../modules/web/Controllers/ConfigBackupController.php:165 +#: ../../../modules/web/Controllers/ConfigBackupController.php:207 +#: ../../../modules/web/Controllers/ConfigBackupController.php:249 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:72 msgid "Archivo" msgstr "File" @@ -2096,15 +2089,15 @@ msgstr "Custom fields update" #: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:74 #: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:87 #: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:156 -#: ../../../modules/web/Controllers/CustomFieldController.php:271 -#: ../../../modules/web/Controllers/CustomFieldController.php:275 +#: ../../../modules/web/Controllers/CustomFieldController.php:287 +#: ../../../modules/web/Controllers/CustomFieldController.php:291 msgid "Campo actualizado" msgstr "Field updated" #: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:88 #: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:157 -#: ../../../modules/web/Controllers/CustomFieldController.php:235 -#: ../../../modules/web/Controllers/CustomFieldController.php:272 +#: ../../../modules/web/Controllers/CustomFieldController.php:249 +#: ../../../modules/web/Controllers/CustomFieldController.php:288 msgid "Campo" msgstr "Field" @@ -2138,20 +2131,20 @@ msgid "Actualización de enlaces públicos" msgstr "Public links update" #: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:89 -#: ../../../modules/web/Controllers/PublicLinkController.php:175 +#: ../../../modules/web/Controllers/PublicLinkController.php:180 msgid "Enlace actualizado" msgstr "Link updated" #: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:90 -#: ../../../modules/web/Controllers/PublicLinkController.php:246 +#: ../../../modules/web/Controllers/PublicLinkController.php:255 msgid "Enlace" msgstr "Link" #: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 +#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:73 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:147 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 msgid "Reinicie la sesión para cambiarla" msgstr "Please, restart the session for update it" @@ -2178,10 +2171,10 @@ msgid "Error al eliminar los grupos" msgstr "Error while deleting the groups" #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 +#: ../../../modules/web/Controllers/UserController.php:235 +#: ../../../modules/web/Controllers/UserController.php:356 +#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Cambio de Clave" msgstr "Password Change" @@ -2255,45 +2248,45 @@ msgstr "Error while compressing the file data (%s)" msgid "Datos no cargados" msgstr "Data not loaded" -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 +#: ../../../../lib/SP/Storage/File/FileHandler.php:72 +#: ../../../../lib/SP/Storage/File/FileHandler.php:135 #, php-format msgid "No es posible escribir en el archivo (%s)" msgstr "Unable to read/write the file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 +#: ../../../../lib/SP/Storage/File/FileHandler.php:89 #, php-format msgid "No es posible abrir el archivo (%s)" msgstr "Unable to open the file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 +#: ../../../../lib/SP/Storage/File/FileHandler.php:104 +#: ../../../../lib/SP/Storage/File/FileHandler.php:118 #, php-format msgid "No es posible leer desde el archivo (%s)" msgstr "Unable to read from file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 +#: ../../../../lib/SP/Storage/File/FileHandler.php:173 #, php-format msgid "No es posible cerrar el archivo (%s)" msgstr "Unable to close the file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 +#: ../../../../lib/SP/Storage/File/FileHandler.php:219 #, php-format msgid "No es posible escribir el archivo (%s)" msgstr "Unable to write in file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 +#: ../../../../lib/SP/Storage/File/FileHandler.php:234 #, php-format msgid "Archivo no encontrado (%s)" msgstr "File not found (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 +#: ../../../../lib/SP/Storage/File/FileHandler.php:259 +#: ../../../../lib/SP/Storage/File/FileHandler.php:314 #, php-format msgid "No es posible leer el archivo (%s)" msgstr "Unable to read/write the file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 +#: ../../../../lib/SP/Storage/File/FileHandler.php:286 #, php-format msgid "No es posible eliminar el archivo (%s)" msgstr "Unable to delete file (%s)" @@ -2315,12 +2308,12 @@ msgstr "Socket not initialized" msgid "Error al enviar datos" msgstr "Error while sending the data" -#: ../../../../lib/SP/Util/ErrorUtil.php:138 +#: ../../../../lib/SP/Util/ErrorUtil.php:148 msgid "Opción no disponible" msgstr "Option unavailable" -#: ../../../../lib/SP/Util/ErrorUtil.php:158 -#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../../lib/SP/Util/ErrorUtil.php:168 +#: ../../../../lib/SP/Util/ErrorUtil.php:175 msgid "Se ha producido una excepción" msgstr "An exception occured" @@ -2333,44 +2326,44 @@ msgid "Cuenta visualizada" msgstr "Account displayed" #: ../../../modules/api/Controllers/AccountController.php:102 -#: ../../../modules/web/Controllers/AccountController.php:555 -#: ../../../modules/web/Controllers/AccountController.php:611 +#: ../../../modules/web/Controllers/AccountController.php:573 +#: ../../../modules/web/Controllers/AccountController.php:631 msgid "Clave visualizada" msgstr "Password viewed" #: ../../../modules/api/Controllers/AccountController.php:138 #: ../../../modules/api/Controllers/AccountController.php:144 -#: ../../../modules/web/Controllers/AccountController.php:805 -#: ../../../modules/web/Controllers/AccountController.php:816 -#: ../../../modules/web/Controllers/UserController.php:411 -#: ../../../modules/web/Controllers/UserController.php:415 -#: ../../../modules/web/Controllers/UserPassResetController.php:189 -#: ../../../modules/web/Controllers/UserPassResetController.php:193 +#: ../../../modules/web/Controllers/AccountController.php:837 +#: ../../../modules/web/Controllers/AccountController.php:848 +#: ../../../modules/web/Controllers/UserController.php:428 +#: ../../../modules/web/Controllers/UserController.php:432 +#: ../../../modules/web/Controllers/UserPassResetController.php:196 +#: ../../../modules/web/Controllers/UserPassResetController.php:200 msgid "Clave actualizada" msgstr "Password updated" #: ../../../modules/api/Controllers/AccountController.php:188 #: ../../../modules/api/Controllers/AccountController.php:194 -#: ../../../modules/web/Controllers/AccountController.php:719 -#: ../../../modules/web/Controllers/AccountController.php:730 +#: ../../../modules/web/Controllers/AccountController.php:747 +#: ../../../modules/web/Controllers/AccountController.php:758 msgid "Cuenta creada" msgstr "Account added" #: ../../../modules/api/Controllers/AccountController.php:239 #: ../../../modules/api/Controllers/AccountController.php:245 -#: ../../../modules/web/Controllers/AccountController.php:764 -#: ../../../modules/web/Controllers/AccountController.php:775 +#: ../../../modules/web/Controllers/AccountController.php:794 +#: ../../../modules/web/Controllers/AccountController.php:805 msgid "Cuenta actualizada" msgstr "Account updated" #: ../../../modules/api/Controllers/AccountController.php:314 #: ../../../modules/api/Controllers/AccountController.php:320 -#: ../../../modules/web/Controllers/AccountController.php:894 -#: ../../../modules/web/Controllers/AccountController.php:899 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:110 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:115 -#: ../../../modules/web/Controllers/AccountManagerController.php:145 -#: ../../../modules/web/Controllers/AccountManagerController.php:150 +#: ../../../modules/web/Controllers/AccountController.php:930 +#: ../../../modules/web/Controllers/AccountController.php:935 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:119 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:124 +#: ../../../modules/web/Controllers/AccountManagerController.php:149 +#: ../../../modules/web/Controllers/AccountManagerController.php:154 msgid "Cuenta eliminada" msgstr "Account removed" @@ -2380,22 +2373,22 @@ msgstr "Category displayed" #: ../../../modules/api/Controllers/CategoryController.php:91 #: ../../../modules/api/Controllers/CategoryController.php:96 -#: ../../../modules/web/Controllers/CategoryController.php:253 -#: ../../../modules/web/Controllers/CategoryController.php:257 +#: ../../../modules/web/Controllers/CategoryController.php:263 +#: ../../../modules/web/Controllers/CategoryController.php:267 msgid "Categoría creada" msgstr "Category added" #: ../../../modules/api/Controllers/CategoryController.php:121 #: ../../../modules/api/Controllers/CategoryController.php:126 -#: ../../../modules/web/Controllers/CategoryController.php:293 -#: ../../../modules/web/Controllers/CategoryController.php:297 +#: ../../../modules/web/Controllers/CategoryController.php:305 +#: ../../../modules/web/Controllers/CategoryController.php:309 msgid "Categoría actualizada" msgstr "Category updated" #: ../../../modules/api/Controllers/CategoryController.php:150 #: ../../../modules/api/Controllers/CategoryController.php:155 -#: ../../../modules/web/Controllers/CategoryController.php:219 -#: ../../../modules/web/Controllers/CategoryController.php:223 +#: ../../../modules/web/Controllers/CategoryController.php:227 +#: ../../../modules/web/Controllers/CategoryController.php:231 msgid "Categoría eliminada" msgstr "Category deleted" @@ -2405,20 +2398,20 @@ msgstr "Client displayed" #: ../../../modules/api/Controllers/ClientController.php:124 #: ../../../modules/api/Controllers/ClientController.php:129 -#: ../../../modules/web/Controllers/ClientController.php:280 -#: ../../../modules/web/Controllers/ClientController.php:284 +#: ../../../modules/web/Controllers/ClientController.php:296 +#: ../../../modules/web/Controllers/ClientController.php:300 msgid "Cliente actualizado" msgstr "Client updated" #: ../../../modules/api/Controllers/ClientController.php:153 #: ../../../modules/api/Controllers/ClientController.php:158 -#: ../../../modules/web/Controllers/ClientController.php:212 -#: ../../../modules/web/Controllers/ClientController.php:216 +#: ../../../modules/web/Controllers/ClientController.php:224 +#: ../../../modules/web/Controllers/ClientController.php:228 msgid "Cliente eliminado" msgstr "Client deleted" #: ../../../modules/api/Controllers/ConfigController.php:57 -#: ../../../modules/web/Controllers/ConfigBackupController.php:64 +#: ../../../modules/web/Controllers/ConfigBackupController.php:70 msgid "Copia de la aplicación y base de datos realizada correctamente" msgstr "Application and database backup completed successfully" @@ -2430,19 +2423,19 @@ msgid "Ruta" msgstr "Path" #: ../../../modules/api/Controllers/ConfigController.php:61 -#: ../../../modules/web/Controllers/ConfigBackupController.php:67 +#: ../../../modules/web/Controllers/ConfigBackupController.php:73 msgid "Proceso de backup finalizado" msgstr "Backup process finished" #: ../../../modules/api/Controllers/ConfigController.php:82 -#: ../../../modules/web/Controllers/ConfigBackupController.php:92 +#: ../../../modules/web/Controllers/ConfigBackupController.php:98 msgid "Exportación de sysPass en XML" msgstr "sysPass XML export" #: ../../../modules/api/Controllers/ConfigController.php:91 #: ../../../modules/api/Controllers/ConfigController.php:94 -#: ../../../modules/web/Controllers/ConfigBackupController.php:102 -#: ../../../modules/web/Controllers/ConfigBackupController.php:127 +#: ../../../modules/web/Controllers/ConfigBackupController.php:108 +#: ../../../modules/web/Controllers/ConfigBackupController.php:136 msgid "Proceso de exportación finalizado" msgstr "Export process finished" @@ -2466,55 +2459,55 @@ msgstr "Send details in the response" #: ../../../modules/api/Controllers/Help/AccountHelp.php:69 #: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:89 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:92 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:163 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:293 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:170 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:253 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:260 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 #: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:35 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:98 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:27 msgid "Clave" msgstr "Password" #: ../../../modules/api/Controllers/Help/AccountHelp.php:70 #: ../../../modules/api/Controllers/Help/AccountHelp.php:91 #: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:114 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:181 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:90 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 msgid "Fecha Caducidad Clave" msgstr "Password Expiry Date" #: ../../../modules/api/Controllers/Help/AccountHelp.php:82 #: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:73 msgid "Nombre de cuenta" msgstr "Account name" @@ -2536,46 +2529,46 @@ msgstr "Client Id" #: ../../../modules/api/Controllers/Help/AccountHelp.php:86 #: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 msgid "Usuario de acceso" msgstr "Access user" #: ../../../modules/api/Controllers/Help/AccountHelp.php:87 #: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:136 msgid "URL o IP de acceso" msgstr "Access URL or IP" #: ../../../modules/api/Controllers/Help/AccountHelp.php:88 #: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:134 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 msgid "Notas sobre la cuenta" msgstr "Notes about the account" #: ../../../modules/api/Controllers/Help/AccountHelp.php:89 #: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:198 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 msgid "Cuenta Privada" msgstr "Private Account" #: ../../../modules/api/Controllers/Help/AccountHelp.php:90 #: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:217 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 msgid "Cuenta Privada Grupo" msgstr "Private Account for Group" #: ../../../modules/api/Controllers/Help/AccountHelp.php:92 #: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:252 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:254 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:13 msgid "Cuenta Vinculada" msgstr "Linked Account" @@ -2597,7 +2590,7 @@ msgstr "Group Id" #: ../../../modules/api/Controllers/Help/ClientHelp.php:81 #: ../../../modules/api/Controllers/Help/TagHelp.php:77 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 msgid "Texto a buscar" msgstr "Text to search" @@ -2627,34 +2620,34 @@ msgstr "Filtering operator" #: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 #: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:29 msgid "Nombre de la categoría" msgstr "Category name" #: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 #: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:41 msgid "Descripción de la categoría" msgstr "Category description" #: ../../../modules/api/Controllers/Help/ClientHelp.php:54 #: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:30 msgid "Nombre del cliente" msgstr "Client name" #: ../../../modules/api/Controllers/Help/ClientHelp.php:55 #: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:43 msgid "Descripción del cliente" msgstr "Client description" #: ../../../modules/api/Controllers/Help/ClientHelp.php:56 #: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:99 msgid "Global" msgstr "Global" @@ -2666,19 +2659,19 @@ msgstr "Tag Id" #: ../../../modules/api/Controllers/Help/TagHelp.php:54 #: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:29 msgid "Nombre de la etiqueta" msgstr "Tag name" #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:31 msgid "Nombre del grupo" msgstr "Group name" #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:44 msgid "Descripción del grupo" msgstr "Group description" @@ -2693,19 +2686,19 @@ msgstr "Tag displayed" #: ../../../modules/api/Controllers/TagController.php:89 #: ../../../modules/api/Controllers/TagController.php:94 -#: ../../../modules/web/Controllers/TagController.php:234 +#: ../../../modules/web/Controllers/TagController.php:243 msgid "Etiqueta creada" msgstr "Tag added" #: ../../../modules/api/Controllers/TagController.php:118 #: ../../../modules/api/Controllers/TagController.php:123 -#: ../../../modules/web/Controllers/TagController.php:265 +#: ../../../modules/web/Controllers/TagController.php:276 msgid "Etiqueta actualizada" msgstr "Tag updated" #: ../../../modules/api/Controllers/TagController.php:147 #: ../../../modules/api/Controllers/TagController.php:152 -#: ../../../modules/web/Controllers/TagController.php:208 +#: ../../../modules/web/Controllers/TagController.php:215 msgid "Etiqueta eliminada" msgstr "Tag removed" @@ -2715,22 +2708,22 @@ msgstr "Group viewed" #: ../../../modules/api/Controllers/UserGroupController.php:91 #: ../../../modules/api/Controllers/UserGroupController.php:96 -#: ../../../modules/web/Controllers/UserGroupController.php:264 -#: ../../../modules/web/Controllers/UserGroupController.php:268 +#: ../../../modules/web/Controllers/UserGroupController.php:273 +#: ../../../modules/web/Controllers/UserGroupController.php:277 msgid "Grupo creado" msgstr "Group added" #: ../../../modules/api/Controllers/UserGroupController.php:122 #: ../../../modules/api/Controllers/UserGroupController.php:127 -#: ../../../modules/web/Controllers/UserGroupController.php:303 -#: ../../../modules/web/Controllers/UserGroupController.php:307 +#: ../../../modules/web/Controllers/UserGroupController.php:314 +#: ../../../modules/web/Controllers/UserGroupController.php:318 msgid "Grupo actualizado" msgstr "Group updated" #: ../../../modules/api/Controllers/UserGroupController.php:151 #: ../../../modules/api/Controllers/UserGroupController.php:156 -#: ../../../modules/web/Controllers/UserGroupController.php:230 -#: ../../../modules/web/Controllers/UserGroupController.php:234 +#: ../../../modules/web/Controllers/UserGroupController.php:237 +#: ../../../modules/web/Controllers/UserGroupController.php:241 msgid "Grupo eliminado" msgstr "Group deleted" @@ -2738,135 +2731,140 @@ msgstr "Group deleted" msgid "Es necesario actualizar" msgstr "Updating needed" -#: ../../../modules/web/Controllers/AccountController.php:150 -#: ../../../modules/web/Controllers/AccountController.php:205 -#: ../../../modules/web/Controllers/AccountController.php:475 +#: ../../../modules/web/Controllers/AccountController.php:149 +#: ../../../modules/web/Controllers/AccountController.php:204 +#: ../../../modules/web/Controllers/AccountController.php:489 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:56 msgid "Detalles de Cuenta" msgstr "Account Details" -#: ../../../modules/web/Controllers/AccountController.php:224 +#: ../../../modules/web/Controllers/AccountController.php:225 msgid "Enlace visualizado" msgstr "Link viewed" -#: ../../../modules/web/Controllers/AccountController.php:225 -#: ../../../modules/web/Controllers/AccountController.php:556 -#: ../../../modules/web/Controllers/AccountController.php:612 -#: ../../../modules/web/Controllers/AccountController.php:651 -#: ../../../modules/web/Controllers/AccountController.php:685 -#: ../../../modules/web/Controllers/AccountController.php:720 -#: ../../../modules/web/Controllers/AccountController.php:765 -#: ../../../modules/web/Controllers/AccountController.php:806 -#: ../../../modules/web/Controllers/AccountController.php:845 -#: ../../../modules/web/Controllers/AccountController.php:895 -#: ../../../modules/web/Controllers/AccountController.php:929 -#: ../../../modules/web/Controllers/AccountFileController.php:233 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:146 -#: ../../../modules/web/Controllers/AccountManagerController.php:146 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 +#: ../../../modules/web/Controllers/AccountController.php:226 +#: ../../../modules/web/Controllers/AccountController.php:574 +#: ../../../modules/web/Controllers/AccountController.php:632 +#: ../../../modules/web/Controllers/AccountController.php:674 +#: ../../../modules/web/Controllers/AccountController.php:711 +#: ../../../modules/web/Controllers/AccountController.php:748 +#: ../../../modules/web/Controllers/AccountController.php:795 +#: ../../../modules/web/Controllers/AccountController.php:838 +#: ../../../modules/web/Controllers/AccountController.php:879 +#: ../../../modules/web/Controllers/AccountController.php:931 +#: ../../../modules/web/Controllers/AccountController.php:967 +#: ../../../modules/web/Controllers/AccountFileController.php:258 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:120 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:157 +#: ../../../modules/web/Controllers/AccountManagerController.php:150 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:25 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:30 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:23 msgid "Cuenta" msgstr "Account" -#: ../../../modules/web/Controllers/AccountController.php:227 +#: ../../../modules/web/Controllers/AccountController.php:228 msgid "Agente" msgstr "Agent" -#: ../../../modules/web/Controllers/AccountController.php:228 +#: ../../../modules/web/Controllers/AccountController.php:229 msgid "HTTPS" msgstr "HTTPS" +#: ../../../modules/web/Controllers/AccountController.php:230 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 +msgid "IP" +msgstr "IP" + #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:257 -#: ../../../modules/web/Controllers/AccountController.php:301 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:279 +#: ../../../modules/web/Controllers/AccountController.php:261 +#: ../../../modules/web/Controllers/AccountController.php:307 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:275 #: ../../../config/actions.xml:157 msgid "Nueva Cuenta" msgstr "New Account" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:345 +#: ../../../modules/web/Controllers/AccountController.php:353 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 #: ../../../config/actions.xml:163 msgid "Editar Cuenta" msgstr "Edit Account" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:390 +#: ../../../modules/web/Controllers/AccountController.php:400 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 #: ../../../config/actions.xml:169 ../../../config/actions.xml:487 #: ../../../config/actions.xml:793 msgid "Eliminar Cuenta" msgstr "Remove Account" -#: ../../../modules/web/Controllers/AccountController.php:433 +#: ../../../modules/web/Controllers/AccountController.php:445 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 msgid "Modificar Clave de Cuenta" msgstr "Edit Account Password" -#: ../../../modules/web/Controllers/AccountController.php:650 -#: ../../../modules/web/Controllers/AccountController.php:684 +#: ../../../modules/web/Controllers/AccountController.php:673 +#: ../../../modules/web/Controllers/AccountController.php:710 msgid "Clave copiada" msgstr "Password copied" -#: ../../../modules/web/Controllers/AccountController.php:844 -#: ../../../modules/web/Controllers/AccountController.php:855 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:145 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:150 +#: ../../../modules/web/Controllers/AccountController.php:878 +#: ../../../modules/web/Controllers/AccountController.php:889 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:156 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:161 msgid "Cuenta restaurada" msgstr "Account restored" -#: ../../../modules/web/Controllers/AccountController.php:880 -#: ../../../modules/web/Controllers/AccountController.php:883 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:99 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:102 -#: ../../../modules/web/Controllers/AccountManagerController.php:131 -#: ../../../modules/web/Controllers/AccountManagerController.php:134 +#: ../../../modules/web/Controllers/AccountController.php:916 +#: ../../../modules/web/Controllers/AccountController.php:919 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:108 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 +#: ../../../modules/web/Controllers/AccountManagerController.php:135 +#: ../../../modules/web/Controllers/AccountManagerController.php:138 msgid "Cuentas eliminadas" msgstr "Accounts removed" -#: ../../../modules/web/Controllers/AccountController.php:920 +#: ../../../modules/web/Controllers/AccountController.php:958 #: ../../../modules/web/Forms/NotificationForm.php:106 msgid "Es necesaria una descripción" msgstr "A description is needed" -#: ../../../modules/web/Controllers/AccountController.php:928 +#: ../../../modules/web/Controllers/AccountController.php:966 msgid "Solicitante" msgstr "Requester" -#: ../../../modules/web/Controllers/AccountController.php:931 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/AccountController.php:969 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:37 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 msgid "Descripción" msgstr "Description" -#: ../../../modules/web/Controllers/AccountController.php:944 +#: ../../../modules/web/Controllers/AccountController.php:982 msgid "Solicitud realizada" msgstr "Request done" @@ -2878,215 +2876,219 @@ msgstr "Favorite added" msgid "Favorito eliminado" msgstr "Favorite deleted" -#: ../../../modules/web/Controllers/AccountFileController.php:70 -#: ../../../modules/web/Controllers/AccountFileController.php:122 +#: ../../../modules/web/Controllers/AccountFileController.php:74 +#: ../../../modules/web/Controllers/AccountFileController.php:135 msgid "El archivo no existe" msgstr "The file does not exist" -#: ../../../modules/web/Controllers/AccountFileController.php:83 -#: ../../../modules/web/Controllers/AccountFileController.php:96 +#: ../../../modules/web/Controllers/AccountFileController.php:87 +#: ../../../modules/web/Controllers/AccountFileController.php:103 msgid "Archivo visualizado" msgstr "File viewed" -#: ../../../modules/web/Controllers/AccountFileController.php:108 +#: ../../../modules/web/Controllers/AccountFileController.php:115 #: ../../../config/strings.js.inc:40 msgid "Archivo no soportado para visualizar" msgstr "File not supported for preview" -#: ../../../modules/web/Controllers/AccountFileController.php:136 +#: ../../../modules/web/Controllers/AccountFileController.php:140 +#: ../../../modules/web/Controllers/ConfigBackupController.php:164 +#: ../../../modules/web/Controllers/ConfigBackupController.php:206 +#: ../../../modules/web/Controllers/ConfigBackupController.php:248 +#: ../../../config/strings.js.inc:97 msgid "Archivo descargado" msgstr "File downloaded" -#: ../../../modules/web/Controllers/AccountFileController.php:161 +#: ../../../modules/web/Controllers/AccountFileController.php:186 msgid "CONSULTA INVÁLIDA" msgstr "INVALID QUERY" -#: ../../../modules/web/Controllers/AccountFileController.php:167 +#: ../../../modules/web/Controllers/AccountFileController.php:192 msgid "No hay extensiones permitidas" msgstr "There aren't any allowed extensions" -#: ../../../modules/web/Controllers/AccountFileController.php:186 +#: ../../../modules/web/Controllers/AccountFileController.php:211 #, php-format msgid "Extensión: %s" msgstr "Extension: %s" -#: ../../../modules/web/Controllers/AccountFileController.php:191 +#: ../../../modules/web/Controllers/AccountFileController.php:216 msgid "Archivo inválido" msgstr "Invalid file" -#: ../../../modules/web/Controllers/AccountFileController.php:193 +#: ../../../modules/web/Controllers/AccountFileController.php:218 #, php-format msgid "Archivo: %s" msgstr "File: %s" -#: ../../../modules/web/Controllers/AccountFileController.php:201 +#: ../../../modules/web/Controllers/AccountFileController.php:226 #, php-format msgid "Máximo tamaño: %s" msgstr "Maximum size: %s" -#: ../../../modules/web/Controllers/AccountFileController.php:209 +#: ../../../modules/web/Controllers/AccountFileController.php:234 msgid "Tamaño de archivo superado" msgstr "File size exceeded" -#: ../../../modules/web/Controllers/AccountFileController.php:211 +#: ../../../modules/web/Controllers/AccountFileController.php:236 #, php-format msgid "Máximo tamaño: %d KB" msgstr "Maximum size: %d KB" -#: ../../../modules/web/Controllers/AccountFileController.php:231 -#: ../../../modules/web/Controllers/AccountFileController.php:240 +#: ../../../modules/web/Controllers/AccountFileController.php:256 +#: ../../../modules/web/Controllers/AccountFileController.php:265 msgid "Archivo guardado" msgstr "File saved" -#: ../../../modules/web/Controllers/AccountFileController.php:236 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/AccountFileController.php:261 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:110 msgid "Tamaño" msgstr "Size" -#: ../../../modules/web/Controllers/AccountFileController.php:320 -#: ../../../modules/web/Controllers/AccountFileController.php:323 +#: ../../../modules/web/Controllers/AccountFileController.php:355 +#: ../../../modules/web/Controllers/AccountFileController.php:358 msgid "Archivos eliminados" msgstr "Files deleted" -#: ../../../modules/web/Controllers/AccountFileController.php:328 +#: ../../../modules/web/Controllers/AccountFileController.php:363 msgid "Archivo eliminado" msgstr "File deleted" -#: ../../../modules/web/Controllers/AccountFileController.php:334 +#: ../../../modules/web/Controllers/AccountFileController.php:369 msgid "Archivo Eliminado" msgstr "File Deleted" -#: ../../../modules/web/Controllers/AccountFileController.php:370 +#: ../../../modules/web/Controllers/AccountFileController.php:405 msgid "Gestión de archivos deshabilitada" msgstr "Files management disabled" -#: ../../../modules/web/Controllers/AccountFileController.php:387 +#: ../../../modules/web/Controllers/AccountFileController.php:424 msgid "No hay archivos asociados a la cuenta" msgstr "There are no linked files for the account" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 +#: ../../../modules/web/Controllers/AccountManagerController.php:216 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 #: ../../../config/actions.xml:493 msgid "Actualización Masiva" msgstr "Bulk Update" -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 +#: ../../../modules/web/Controllers/AuthTokenController.php:114 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 msgid "Nueva Autorización" msgstr "New Authorization" -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 +#: ../../../modules/web/Controllers/AuthTokenController.php:179 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 msgid "Editar Autorización" msgstr "Edit Authorization" -#: ../../../modules/web/Controllers/AuthTokenController.php:212 -#: ../../../modules/web/Controllers/AuthTokenController.php:215 +#: ../../../modules/web/Controllers/AuthTokenController.php:220 +#: ../../../modules/web/Controllers/AuthTokenController.php:223 msgid "Autorizaciones eliminadas" msgstr "Authorizations deleted" -#: ../../../modules/web/Controllers/AuthTokenController.php:225 -#: ../../../modules/web/Controllers/AuthTokenController.php:229 +#: ../../../modules/web/Controllers/AuthTokenController.php:233 +#: ../../../modules/web/Controllers/AuthTokenController.php:237 msgid "Autorización eliminada" msgstr "Authorization deleted" -#: ../../../modules/web/Controllers/AuthTokenController.php:258 +#: ../../../modules/web/Controllers/AuthTokenController.php:269 msgid "Autorización creada" msgstr "Authorization added" -#: ../../../modules/web/Controllers/AuthTokenController.php:330 +#: ../../../modules/web/Controllers/AuthTokenController.php:347 msgid "Ver Autorización" msgstr "View Authorization" -#: ../../../modules/web/Controllers/AuthTokenController.php:338 +#: ../../../modules/web/Controllers/AuthTokenController.php:355 msgid "Autorización visualizada" msgstr "Authorization viewed" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 +#: ../../../modules/web/Controllers/CategoryController.php:109 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:118 #: ../../../config/actions.xml:307 msgid "Nueva Categoría" msgstr "New Category" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 +#: ../../../modules/web/Controllers/CategoryController.php:173 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 #: ../../../config/actions.xml:313 msgid "Editar Categoría" msgstr "Edit Category" -#: ../../../modules/web/Controllers/CategoryController.php:206 -#: ../../../modules/web/Controllers/CategoryController.php:209 +#: ../../../modules/web/Controllers/CategoryController.php:214 +#: ../../../modules/web/Controllers/CategoryController.php:217 msgid "Categorías eliminadas" msgstr "Categories deleted" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 +#: ../../../modules/web/Controllers/CategoryController.php:335 #: ../../../config/actions.xml:301 msgid "Ver Categoría" msgstr "View Category" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 +#: ../../../modules/web/Controllers/ClientController.php:110 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:93 #: ../../../config/actions.xml:337 msgid "Nuevo Cliente" msgstr "New Client" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 +#: ../../../modules/web/Controllers/ClientController.php:174 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 #: ../../../config/actions.xml:343 msgid "Editar Cliente" msgstr "Edit Client" -#: ../../../modules/web/Controllers/ClientController.php:201 -#: ../../../modules/web/Controllers/ClientController.php:204 +#: ../../../modules/web/Controllers/ClientController.php:213 +#: ../../../modules/web/Controllers/ClientController.php:216 msgid "Clientes eliminados" msgstr "Clients deleted" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 +#: ../../../modules/web/Controllers/ClientController.php:326 #: ../../../config/actions.xml:331 msgid "Ver Cliente" msgstr "View Client" -#: ../../../modules/web/Controllers/ConfigAccountController.php:70 +#: ../../../modules/web/Controllers/ConfigAccountController.php:74 msgid "El tamaño máximo por archivo es de 16MB" msgstr "The maximum size per file is 16MB" -#: ../../../modules/web/Controllers/ConfigAccountController.php:78 +#: ../../../modules/web/Controllers/ConfigAccountController.php:82 msgid "Archivos habilitados" msgstr "Files enabled" -#: ../../../modules/web/Controllers/ConfigAccountController.php:83 +#: ../../../modules/web/Controllers/ConfigAccountController.php:87 msgid "Archivos deshabilitados" msgstr "Files disabled" -#: ../../../modules/web/Controllers/ConfigAccountController.php:96 +#: ../../../modules/web/Controllers/ConfigAccountController.php:100 msgid "Enlaces públicos habilitados" msgstr "Public links enabled" -#: ../../../modules/web/Controllers/ConfigAccountController.php:101 +#: ../../../modules/web/Controllers/ConfigAccountController.php:105 msgid "Enlaces públicos deshabilitados" msgstr "Public links disabled" -#: ../../../modules/web/Controllers/ConfigBackupController.php:53 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:92 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:151 -#: ../../../modules/web/Controllers/ConfigImportController.php:56 -#: ../../../modules/web/Controllers/ConfigLdapController.php:218 +#: ../../../modules/web/Controllers/ConfigBackupController.php:59 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:97 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 +#: ../../../modules/web/Controllers/ConfigImportController.php:59 +#: ../../../modules/web/Controllers/ConfigLdapController.php:226 #: ../../../modules/web/Controllers/Traits/ConfigTrait.php:55 #: ../../../modules/web/Forms/UserForm.php:131 #: ../../../modules/web/Forms/UserForm.php:153 @@ -3094,327 +3096,321 @@ msgstr "Public links disabled" msgid "Ey, esto es una DEMO!!" msgstr "Ey, this is a DEMO!!" -#: ../../../modules/web/Controllers/ConfigBackupController.php:86 -#: ../../../modules/web/Controllers/UserPassResetController.php:176 +#: ../../../modules/web/Controllers/ConfigBackupController.php:92 +#: ../../../modules/web/Controllers/UserPassResetController.php:183 #: ../../../modules/web/Forms/AccountForm.php:135 #: ../../../modules/web/Forms/UserForm.php:161 msgid "Las claves no coinciden" msgstr "The passwords do not match" -#: ../../../modules/web/Controllers/ConfigBackupController.php:117 +#: ../../../modules/web/Controllers/ConfigBackupController.php:123 msgid "Verificación de datos exportados finalizada" msgstr "Verification of exported data finished" -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 +#: ../../../modules/web/Controllers/ConfigBackupController.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 msgid "Encriptado" msgstr "Encrypted" -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 +#: ../../../modules/web/Controllers/ConfigBackupController.php:125 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 msgid "Sí" msgstr "Yes" -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 +#: ../../../modules/web/Controllers/ConfigBackupController.php:125 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 msgid "No" msgstr "No" -#: ../../../modules/web/Controllers/ConfigBackupController.php:123 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 +#: ../../../modules/web/Controllers/ConfigBackupController.php:129 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:211 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 msgid "Etiquetas" msgstr "Tags" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:72 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:77 msgid "Clave maestra no indicada" msgstr "Master password needed" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:76 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:81 msgid "Se ha de confirmar el cambio de clave" msgstr "The password update must be confirmed" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:80 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:85 msgid "Las claves son idénticas" msgstr "The passwords are the same" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:84 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:89 msgid "Las claves maestras no coinciden" msgstr "The master passwords do not match" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:88 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:93 msgid "La clave maestra actual no coincide" msgstr "The current master password does not match" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:138 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:143 msgid "Error al guardar el hash de la clave maestra" msgstr "Error while saving the Master Password's hash" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:161 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:166 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 msgid "Hash de clave maestra actualizado" msgstr "Master password hash updated" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:175 msgid "Error al actualizar el hash de la clave maestra" msgstr "Error while updating the master password hash" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:200 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:199 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:205 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:209 msgid "Clave Temporal Generada" msgstr "Temporary Password Generated" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:199 msgid "Email enviado" msgstr "Email sent" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:205 msgid "Error al enviar email" msgstr "Error while sending the email" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:89 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:93 msgid "Faltan parámetros de syslog remoto" msgstr "Missing remote syslog parameters" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:97 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:101 msgid "Syslog remoto habilitado" msgstr "Remote syslog enabled" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:102 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:106 msgid "Syslog remoto deshabilitado" msgstr "Remote syslog disabled" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:115 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:119 msgid "Faltan parámetros de Proxy" msgstr "Missing Proxy parameters " -#: ../../../modules/web/Controllers/ConfigGeneralController.php:129 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:133 msgid "Proxy habiltado" msgstr "Proxy enabled" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:134 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:138 msgid "Proxy deshabilitado" msgstr "Proxy disabled" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:153 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:157 msgid "Auth Basic habilitada" msgstr "Auth Basic enabled" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:159 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:163 msgid "Auth Basic deshabiltada" msgstr "Auth Basic disabled" -#: ../../../modules/web/Controllers/ConfigImportController.php:76 +#: ../../../modules/web/Controllers/ConfigImportController.php:78 msgid "Cuentas importadas" msgstr "Accounts imported" -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigLdapController.php:260 +#: ../../../modules/web/Controllers/ConfigImportController.php:82 +#: ../../../modules/web/Controllers/ConfigLdapController.php:268 msgid "Importación finalizada" msgstr "Import finished" -#: ../../../modules/web/Controllers/ConfigImportController.php:83 +#: ../../../modules/web/Controllers/ConfigImportController.php:85 msgid "No se importaron cuentas" msgstr "No accounts were imported" -#: ../../../modules/web/Controllers/ConfigLdapController.php:69 -#: ../../../modules/web/Controllers/ConfigLdapController.php:139 -#: ../../../modules/web/Controllers/ConfigLdapController.php:175 +#: ../../../modules/web/Controllers/ConfigLdapController.php:71 +#: ../../../modules/web/Controllers/ConfigLdapController.php:143 +#: ../../../modules/web/Controllers/ConfigLdapController.php:181 msgid "Faltan parámetros de LDAP" msgstr "Missing LDAP parameters" -#: ../../../modules/web/Controllers/ConfigLdapController.php:88 +#: ../../../modules/web/Controllers/ConfigLdapController.php:90 msgid "LDAP habiltado" msgstr "LDAP enabled" -#: ../../../modules/web/Controllers/ConfigLdapController.php:93 +#: ../../../modules/web/Controllers/ConfigLdapController.php:95 msgid "LDAP deshabilitado" msgstr "LDAP disabled" -#: ../../../modules/web/Controllers/ConfigLdapController.php:95 -#: ../../../modules/web/Controllers/ConfigMailController.php:102 +#: ../../../modules/web/Controllers/ConfigLdapController.php:97 +#: ../../../modules/web/Controllers/ConfigMailController.php:106 #: ../../../config/strings.js.inc:80 msgid "Sin cambios" msgstr "No changes" -#: ../../../modules/web/Controllers/ConfigLdapController.php:115 -#: ../../../modules/web/Controllers/ConfigLdapController.php:238 +#: ../../../modules/web/Controllers/ConfigLdapController.php:117 +#: ../../../modules/web/Controllers/ConfigLdapController.php:246 msgid "Parámetros de LDAP incorrectos" msgstr "Wrong LDAP parameters" -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 +#: ../../../modules/web/Controllers/ConfigLdapController.php:153 +#: ../../../modules/web/Controllers/ConfigLdapController.php:197 msgid "Resultados" msgstr "Results" -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 +#: ../../../modules/web/Controllers/ConfigLdapController.php:159 +#: ../../../modules/web/Controllers/ConfigLdapController.php:204 #, php-format msgid "Objetos encontrados: %d" msgstr "Objects found: %d" -#: ../../../modules/web/Controllers/ConfigLdapController.php:245 +#: ../../../modules/web/Controllers/ConfigLdapController.php:253 msgid "Importación LDAP" msgstr "LDAP Import" -#: ../../../modules/web/Controllers/ConfigLdapController.php:264 +#: ../../../modules/web/Controllers/ConfigLdapController.php:272 msgid "No se encontraron objetos para sincronizar" msgstr "There aren't any objects to synchronize" -#: ../../../modules/web/Controllers/ConfigLdapController.php:269 +#: ../../../modules/web/Controllers/ConfigLdapController.php:277 msgid "Importación de usuarios de LDAP realizada" msgstr "LDAP users import finished" -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 +#: ../../../modules/web/Controllers/ConfigLdapController.php:279 #, php-format msgid "Usuarios importados: %d / %d" msgstr "Imported users: %d / %d" -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 +#: ../../../modules/web/Controllers/ConfigLdapController.php:280 #, php-format msgid "Errores: %d" msgstr "Errors: %d" -#: ../../../modules/web/Controllers/ConfigMailController.php:68 -#: ../../../modules/web/Controllers/ConfigMailController.php:125 +#: ../../../modules/web/Controllers/ConfigMailController.php:72 +#: ../../../modules/web/Controllers/ConfigMailController.php:133 msgid "Faltan parámetros de Correo" msgstr "Missing Mail parameters" -#: ../../../modules/web/Controllers/ConfigMailController.php:93 +#: ../../../modules/web/Controllers/ConfigMailController.php:97 msgid "Correo habiltado" msgstr "Mail enabled" -#: ../../../modules/web/Controllers/ConfigMailController.php:100 +#: ../../../modules/web/Controllers/ConfigMailController.php:104 msgid "Correo deshabilitado" msgstr "Mail disabled" -#: ../../../modules/web/Controllers/ConfigMailController.php:145 +#: ../../../modules/web/Controllers/ConfigMailController.php:153 msgid "Compruebe su buzón de correo" msgstr "Please, check your inbox" -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 +#: ../../../modules/web/Controllers/ConfigManagerController.php:161 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 msgid "General" msgstr "General" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 +#: ../../../modules/web/Controllers/ConfigManagerController.php:190 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:29 #: ../../../config/actions.xml:37 msgid "Wiki" msgstr "Wiki" -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 +#: ../../../modules/web/Controllers/ConfigManagerController.php:209 msgid "LDAP" msgstr "LDAP" -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 +#: ../../../modules/web/Controllers/ConfigManagerController.php:235 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:12 msgid "Correo" msgstr "Mail" -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 +#: ../../../modules/web/Controllers/ConfigManagerController.php:274 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 msgid "Encriptación" msgstr "Encryption" -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Last backup" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 +#: ../../../modules/web/Controllers/ConfigManagerController.php:302 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:61 msgid "No se encontraron backups" msgstr "There aren't any backups available" -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "Última exportación" -msgstr "Last export" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 +#: ../../../modules/web/Controllers/ConfigManagerController.php:312 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 msgid "No se encontró archivo de exportación" msgstr "No export file found" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 +#: ../../../modules/web/Controllers/ConfigManagerController.php:315 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:78 #: ../../../config/actions.xml:733 msgid "Copia de Seguridad" msgstr "Backup" -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 +#: ../../../modules/web/Controllers/ConfigManagerController.php:332 msgid "Importar Cuentas" msgstr "Import Accounts" -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 +#: ../../../modules/web/Controllers/ConfigManagerController.php:352 msgid "No instalado" msgstr "Not installed" -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 +#: ../../../modules/web/Controllers/ConfigManagerController.php:357 #: ../../../modules/web/themes/material-blue/inc/Icons.php:63 msgid "Información" msgstr "Information" -#: ../../../modules/web/Controllers/ConfigWikiController.php:59 +#: ../../../modules/web/Controllers/ConfigWikiController.php:63 msgid "Faltan parámetros de Wiki" msgstr "Missing Wiki parameters" -#: ../../../modules/web/Controllers/ConfigWikiController.php:69 +#: ../../../modules/web/Controllers/ConfigWikiController.php:73 msgid "Wiki habiltada" msgstr "Wiki enabled" -#: ../../../modules/web/Controllers/ConfigWikiController.php:74 +#: ../../../modules/web/Controllers/ConfigWikiController.php:78 msgid "Wiki deshabilitada" msgstr "Wiki disabled" -#: ../../../modules/web/Controllers/ConfigWikiController.php:87 +#: ../../../modules/web/Controllers/ConfigWikiController.php:91 msgid "Faltan parámetros de DokuWiki" msgstr "Missing DokuWiki parameters" -#: ../../../modules/web/Controllers/ConfigWikiController.php:99 +#: ../../../modules/web/Controllers/ConfigWikiController.php:103 msgid "DokuWiki habilitada" msgstr "DokuWiki enabled" -#: ../../../modules/web/Controllers/ConfigWikiController.php:104 +#: ../../../modules/web/Controllers/ConfigWikiController.php:108 msgid "DokuWiki deshabilitada" msgstr "DokuWiki disabled" -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 +#: ../../../modules/web/Controllers/CustomFieldController.php:111 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 msgid "Nuevo Campo" msgstr "New Field" -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 +#: ../../../modules/web/Controllers/CustomFieldController.php:173 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 msgid "Editar Campo" msgstr "Edit Field" -#: ../../../modules/web/Controllers/CustomFieldController.php:197 -#: ../../../modules/web/Controllers/CustomFieldController.php:200 +#: ../../../modules/web/Controllers/CustomFieldController.php:209 +#: ../../../modules/web/Controllers/CustomFieldController.php:212 msgid "Campos eliminados" msgstr "Fields deleted" -#: ../../../modules/web/Controllers/CustomFieldController.php:206 +#: ../../../modules/web/Controllers/CustomFieldController.php:218 msgid "Campo eliminado" msgstr "Field deleted" -#: ../../../modules/web/Controllers/CustomFieldController.php:234 -#: ../../../modules/web/Controllers/CustomFieldController.php:238 +#: ../../../modules/web/Controllers/CustomFieldController.php:248 +#: ../../../modules/web/Controllers/CustomFieldController.php:252 msgid "Campo creado" msgstr "Field added" -#: ../../../modules/web/Controllers/CustomFieldController.php:298 +#: ../../../modules/web/Controllers/CustomFieldController.php:317 msgid "Ver Campo" msgstr "View Field" @@ -3430,8 +3426,8 @@ msgstr "It will be running shortly" msgid "Error en la verificación de la base de datos" msgstr "Error while checking the database" -#: ../../../modules/web/Controllers/EventlogController.php:119 -#: ../../../modules/web/Controllers/EventlogController.php:122 +#: ../../../modules/web/Controllers/EventlogController.php:127 +#: ../../../modules/web/Controllers/EventlogController.php:130 msgid "Registro de eventos vaciado" msgstr "Event log cleared" @@ -3442,19 +3438,19 @@ msgstr "View Current" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:360 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:310 +#: ../../../modules/web/themes/material-blue/views/config/general.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:295 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:440 #: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:184 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:294 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:194 msgid "Atrás" msgstr "Back" @@ -3471,7 +3467,7 @@ msgstr "Restore account from this point" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 #: ../../../modules/web/themes/material-blue/inc/Icons.php:51 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:130 msgid "Guardar" msgstr "Save" @@ -3502,7 +3498,7 @@ msgstr "Create Public Link" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 #: ../../../modules/web/themes/material-blue/inc/Icons.php:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 #: ../../../config/actions.xml:175 ../../../config/actions.xml:265 msgid "Ver Clave" msgstr "View password" @@ -3521,7 +3517,7 @@ msgstr "Copy Password to Clipboard" msgid "Copiar Cuenta" msgstr "Copy Account" -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 #: ../../../config/strings.js.inc:72 msgid "Clave de Cuenta" msgstr "Account Password" @@ -3548,13 +3544,13 @@ msgid "Ordenar por Usuario" msgstr "Sort by Username" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:56 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:62 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:128 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:79 msgid "URL / IP" msgstr "URL / IP" @@ -3562,8 +3558,8 @@ msgstr "URL / IP" msgid "Ordenar por URL / IP" msgstr "Sort by URL / IP" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 @@ -3576,8 +3572,8 @@ msgstr "Sort by URL / IP" #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 #: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 @@ -3593,145 +3589,145 @@ msgstr "Sort by URL / IP" msgid "Eliminar Seleccionados" msgstr "Delete Selected" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:158 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:42 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:44 msgid "Propietario" msgstr "Owner" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:175 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:50 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:52 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 msgid "Grupo Principal" msgstr "Main Group" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 #: ../../../config/actions.xml:499 ../../../config/actions.xml:799 msgid "Buscar Cuenta" msgstr "Search for Account" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 msgid "Cuentas (H)" msgstr "Accounts (H)" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:122 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:55 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:38 msgid "Fecha" msgstr "Date" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:126 #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 msgid "Estado" msgstr "Status" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 msgid "Modificada" msgstr "Modified" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 msgid "Eliminada" msgstr "Removed" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 #: ../../../config/actions.xml:187 ../../../config/actions.xml:805 msgid "Restaurar Cuenta" msgstr "Account Restore" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 msgid "Autorizaciones API" msgstr "API Authorizations" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 msgid "Buscar Token" msgstr "Search for Token" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 msgid "Ver token de Autorización" msgstr "View Authorization token" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 msgid "Eliminar Autorización" msgstr "Delete Authorization" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 #: ../../../config/actions.xml:325 msgid "Buscar Categoría" msgstr "Search for Category" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 #: ../../../config/actions.xml:319 msgid "Eliminar Categoría" msgstr "Delete Category" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 #: ../../../config/strings.js.inc:66 msgid "SI" msgstr "YES" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 #: ../../../config/strings.js.inc:67 msgid "NO" msgstr "NO" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 #: ../../../config/actions.xml:355 msgid "Buscar Cliente" msgstr "Search for Client" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 #: ../../../config/actions.xml:349 msgid "Eliminar Cliente" msgstr "Delete Client" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 msgid "Campos Personalizados" msgstr "Custom Fields" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 msgid "Módulo" msgstr "Module" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:120 msgid "Propiedades" msgstr "Properties" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 msgid "Buscar Campo" msgstr "Search for Field" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 msgid "Eliminar Campo" msgstr "Delete Field" @@ -3743,11 +3739,11 @@ msgid "Registro de Eventos" msgstr "Event Log" #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/Controllers/ItemPresetController.php:278 -#: ../../../modules/web/Controllers/ItemPresetController.php:311 -#: ../../../modules/web/Controllers/ItemPresetController.php:350 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 +#: ../../../modules/web/Controllers/ItemPresetController.php:289 +#: ../../../modules/web/Controllers/ItemPresetController.php:324 +#: ../../../modules/web/Controllers/ItemPresetController.php:365 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:99 msgid "ID" msgstr "ID" @@ -3764,223 +3760,219 @@ msgid "Evento" msgstr "Event" #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 msgid "Login" msgstr "Login" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 -msgid "IP" -msgstr "IP" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 msgid "Buscar Evento" msgstr "Search for Events" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 msgid "Refrescar" msgstr "Refresh" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:199 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 msgid "Vaciar registro de eventos" msgstr "Clear the event log out" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:280 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 #: ../../../config/actions.xml:19 msgid "Archivos" msgstr "Files" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:145 #: ../../../config/actions.xml:475 msgid "Buscar Archivo" msgstr "Search for File" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:51 #: ../../../config/actions.xml:205 ../../../config/actions.xml:451 msgid "Ver Archivo" msgstr "View File" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:42 #: ../../../config/actions.xml:217 ../../../config/actions.xml:457 msgid "Descargar Archivo" msgstr "Download File" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:34 #: ../../../config/actions.xml:223 ../../../config/actions.xml:463 msgid "Eliminar Archivo" msgstr "Delete File" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 msgid "Valores Predeterminados" msgstr "Preset Values" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/Controllers/UserProfileController.php:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 +#: ../../../modules/web/Controllers/UserProfileController.php:228 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:131 msgid "Perfil" msgstr "Profile" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 msgid "Prioridad" msgstr "Priority" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 msgid "Forzado" msgstr "Forced" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 #: ../../../config/actions.xml:853 msgid "Buscar Valor" msgstr "Search for Value" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 msgid "Valor de Permiso" msgstr "Permission Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 msgid "Nuevo Valor de Permiso" msgstr "New Permission Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 msgid "Valor de Cuenta Privada" msgstr "Private Account Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 msgid "Nuevo Valor de Cuenta Privada" msgstr "New Private Account Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 msgid "Valor de Timeout de Sesión" msgstr "Session Timeout Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 msgid "Nuevo Valor de Timeout de Sesión" msgstr "New Session Timeout Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 msgid "Valor de Clave de Cuentas" msgstr "Account Password Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 msgid "Nuevo Valor de Clave de Cuentas" msgstr "New Account Password Preset" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: ../../../modules/web/Controllers/ItemPresetController.php:239 #: ../../../config/actions.xml:871 msgid "Editar Valor" msgstr "Edit Value" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 #: ../../../config/actions.xml:877 msgid "Eliminar Valor" msgstr "Delete Value" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:109 #: ../../../modules/web/themes/material-blue/inc/Icons.php:65 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:100 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 #: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 #: ../../../config/actions.xml:679 msgid "Notificaciones" msgstr "Notifications" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:42 msgid "Componente" msgstr "Component" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:111 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:115 msgid "Leída" msgstr "Read" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 msgid "Sólo Admins" msgstr "Only Admins" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:164 #: ../../../config/actions.xml:841 msgid "Buscar Notificación" msgstr "Search for Notification" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:183 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:180 +#: ../../../modules/web/Controllers/NotificationController.php:194 msgid "Nueva Notificación" msgstr "New Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:198 +#: ../../../modules/web/Controllers/NotificationController.php:113 #: ../../../config/actions.xml:811 msgid "Ver Notificación" msgstr "View Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:228 #: ../../../config/actions.xml:835 msgid "Marcar Notificación" msgstr "Checkout Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:214 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:246 +#: ../../../modules/web/Controllers/NotificationController.php:226 #: ../../../config/actions.xml:823 msgid "Editar Notificación" msgstr "Edit Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:263 #: ../../../config/actions.xml:829 msgid "Eliminar Notificación" msgstr "Delete Notification" #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:335 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:331 #: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 msgid "Plugins" msgstr "Plugins" @@ -3998,7 +3990,7 @@ msgstr "Search for Plugin" #. (itstool) path: action/text #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:125 +#: ../../../modules/web/Controllers/PluginController.php:136 #: ../../../config/actions.xml:541 msgid "Ver Plugin" msgstr "View Plugin" @@ -4018,91 +4010,91 @@ msgstr "Disable" msgid "Restablecer Datos" msgstr "Reset Data" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:49 msgid "Enlaces" msgstr "Links" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:51 msgid "Fecha Creación" msgstr "Creation Date" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:59 msgid "Fecha Caducidad" msgstr "Expiry Date " -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:43 msgid "Notificar" msgstr "Notify" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:14 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:75 msgid "Visitas" msgstr "Visits" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:149 msgid "Buscar Enlace" msgstr "Search for Link" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:165 msgid "Nuevo Enlace" msgstr "New Link" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:183 +#: ../../../modules/web/Controllers/PublicLinkController.php:357 msgid "Ver Enlace" msgstr "View Link" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:199 msgid "Renovar Enlace" msgstr "Renew Link" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:216 msgid "Eliminar Enlace" msgstr "Delete Link" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:135 #: ../../../config/actions.xml:529 msgid "Buscar Etiqueta" msgstr "Search for Tag" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: ../../../modules/web/Controllers/TagController.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:226 #: ../../../config/actions.xml:505 msgid "Nueva Etiqueta" msgstr "New Tag" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: ../../../modules/web/Controllers/TagController.php:168 #: ../../../config/actions.xml:517 msgid "Editar Etiqueta" msgstr "Edit Tag" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:186 #: ../../../config/actions.xml:523 msgid "Eliminar Etiqueta" msgstr "Delete Tag" @@ -4126,139 +4118,139 @@ msgid "Buscar Track" msgstr "Search for track" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:156 #: ../../../config/actions.xml:601 msgid "Buscar Usuario" msgstr "Search for User" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:172 +#: ../../../modules/web/Controllers/UserController.php:115 #: ../../../config/actions.xml:577 msgid "Nuevo Usuario" msgstr "New User" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:190 +#: ../../../modules/web/Controllers/UserController.php:200 #: ../../../config/actions.xml:583 msgid "Editar Usuario" msgstr "Edit User" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:207 #: ../../../config/actions.xml:589 msgid "Eliminar Usuario" msgstr "Delete User" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:224 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:460 msgid "Importar usuarios de LDAP" msgstr "Import users from LDAP" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:242 msgid "Ver Detalles de Usuario" msgstr "View User Details" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:57 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:259 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 #: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 msgid "Cambiar Clave de Usuario" msgstr "Change User's Password" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 #: ../../../config/actions.xml:631 msgid "Buscar Grupo" msgstr "Search for Group" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: ../../../modules/web/Controllers/UserGroupController.php:117 #: ../../../config/actions.xml:613 msgid "Nuevo Grupo" msgstr "New Group" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: ../../../modules/web/Controllers/UserGroupController.php:344 #: ../../../config/actions.xml:607 msgid "Ver Grupo" msgstr "View Group" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: ../../../modules/web/Controllers/UserGroupController.php:188 #: ../../../config/actions.xml:619 msgid "Editar Grupo" msgstr "Edit Group" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 #: ../../../config/actions.xml:625 msgid "Eliminar Grupo" msgstr "Delete Group" -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 msgid "Perfiles" msgstr "Profiles" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 #: ../../../config/actions.xml:661 msgid "Buscar Perfil" msgstr "Search for Profile" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: ../../../modules/web/Controllers/UserProfileController.php:110 #: ../../../config/actions.xml:643 msgid "Nuevo Perfil" msgstr "New Profile" -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 msgid "Ver Detalles de Perfil" msgstr "View Profile Details" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: ../../../modules/web/Controllers/UserProfileController.php:177 #: ../../../config/actions.xml:649 msgid "Editar Perfil" msgstr "Edit Profile" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 #: ../../../config/actions.xml:655 msgid "Eliminar Perfil" msgstr "Delete Profile" -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:266 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:262 #: ../../../modules/web/themes/material-blue/inc/Icons.php:58 msgid "Buscar" msgstr "Search" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:349 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:345 #: ../../../modules/web/themes/material-blue/inc/Icons.php:61 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 #: ../../../config/actions.xml:685 msgid "Configuración" msgstr "Configuration" @@ -4276,34 +4268,34 @@ msgid "Instalación finalizada" msgstr "Installation finished" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 +#: ../../../modules/web/Controllers/ItemPresetController.php:73 #: ../../../config/actions.xml:859 msgid "Ver Valor" msgstr "Display Value" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 +#: ../../../modules/web/Controllers/ItemPresetController.php:207 #: ../../../config/actions.xml:865 msgid "Nuevo Valor" msgstr "New Value" -#: ../../../modules/web/Controllers/ItemPresetController.php:266 -#: ../../../modules/web/Controllers/ItemPresetController.php:269 +#: ../../../modules/web/Controllers/ItemPresetController.php:277 +#: ../../../modules/web/Controllers/ItemPresetController.php:280 msgid "Valores eliminados" msgstr "Values deleted" -#: ../../../modules/web/Controllers/ItemPresetController.php:277 -#: ../../../modules/web/Controllers/ItemPresetController.php:281 +#: ../../../modules/web/Controllers/ItemPresetController.php:288 +#: ../../../modules/web/Controllers/ItemPresetController.php:292 msgid "Valor eliminado" msgstr "Value deleted" -#: ../../../modules/web/Controllers/ItemPresetController.php:309 -#: ../../../modules/web/Controllers/ItemPresetController.php:314 +#: ../../../modules/web/Controllers/ItemPresetController.php:322 +#: ../../../modules/web/Controllers/ItemPresetController.php:327 msgid "Valor creado" msgstr "Value created" -#: ../../../modules/web/Controllers/ItemPresetController.php:348 -#: ../../../modules/web/Controllers/ItemPresetController.php:353 +#: ../../../modules/web/Controllers/ItemPresetController.php:363 +#: ../../../modules/web/Controllers/ItemPresetController.php:368 msgid "Valor actualizado" msgstr "Value updated" @@ -4316,73 +4308,73 @@ msgstr "There aren't any pending notifications" msgid "Hay notificaciones pendientes: %d" msgstr "There are pending notifications: %d" -#: ../../../modules/web/Controllers/LoginController.php:119 +#: ../../../modules/web/Controllers/LoginController.php:121 msgid "Finalizar sesión" msgstr "Logout session" -#: ../../../modules/web/Controllers/LoginController.php:121 +#: ../../../modules/web/Controllers/LoginController.php:123 msgid "Tiempo inactivo" msgstr "Inactive time" -#: ../../../modules/web/Controllers/LoginController.php:122 +#: ../../../modules/web/Controllers/LoginController.php:124 msgid "Tiempo total" msgstr "Total time" -#: ../../../modules/web/Controllers/NotificationController.php:255 -#: ../../../modules/web/Controllers/NotificationController.php:258 +#: ../../../modules/web/Controllers/NotificationController.php:268 +#: ../../../modules/web/Controllers/NotificationController.php:271 msgid "Notificaciones eliminadas" msgstr "Notifications deleted" -#: ../../../modules/web/Controllers/NotificationController.php:270 -#: ../../../modules/web/Controllers/NotificationController.php:274 +#: ../../../modules/web/Controllers/NotificationController.php:283 +#: ../../../modules/web/Controllers/NotificationController.php:287 msgid "Notificación eliminada" msgstr "Notification deleted" -#: ../../../modules/web/Controllers/NotificationController.php:301 -#: ../../../modules/web/Controllers/NotificationController.php:305 +#: ../../../modules/web/Controllers/NotificationController.php:316 +#: ../../../modules/web/Controllers/NotificationController.php:320 msgid "Notificación leída" msgstr "Notification read" -#: ../../../modules/web/Controllers/NotificationController.php:331 -#: ../../../modules/web/Controllers/NotificationController.php:334 +#: ../../../modules/web/Controllers/NotificationController.php:348 +#: ../../../modules/web/Controllers/NotificationController.php:351 msgid "Notificación creada" msgstr "Notification created" -#: ../../../modules/web/Controllers/NotificationController.php:364 -#: ../../../modules/web/Controllers/NotificationController.php:367 +#: ../../../modules/web/Controllers/NotificationController.php:383 +#: ../../../modules/web/Controllers/NotificationController.php:386 msgid "Notificación actualizada" msgstr "Notification updated" -#: ../../../modules/web/Controllers/PluginController.php:188 -#: ../../../modules/web/Controllers/PluginController.php:191 +#: ../../../modules/web/Controllers/PluginController.php:199 +#: ../../../modules/web/Controllers/PluginController.php:202 msgid "Plugin habilitado" msgstr "Plugin enabled" -#: ../../../modules/web/Controllers/PluginController.php:238 -#: ../../../modules/web/Controllers/PluginController.php:241 +#: ../../../modules/web/Controllers/PluginController.php:253 +#: ../../../modules/web/Controllers/PluginController.php:256 msgid "Plugin restablecido" msgstr "Plugin reset" -#: ../../../modules/web/Controllers/PublicLinkController.php:109 +#: ../../../modules/web/Controllers/PublicLinkController.php:114 msgid "Nuevo Enlace Público" msgstr "New Public Link" -#: ../../../modules/web/Controllers/PublicLinkController.php:196 +#: ../../../modules/web/Controllers/PublicLinkController.php:204 msgid "Editar Enlace Público" msgstr "Edit Public Link" -#: ../../../modules/web/Controllers/PublicLinkController.php:234 -#: ../../../modules/web/Controllers/PublicLinkController.php:237 +#: ../../../modules/web/Controllers/PublicLinkController.php:243 +#: ../../../modules/web/Controllers/PublicLinkController.php:246 msgid "Enlaces eliminados" msgstr "Links deleted" -#: ../../../modules/web/Controllers/PublicLinkController.php:245 -#: ../../../modules/web/Controllers/PublicLinkController.php:249 +#: ../../../modules/web/Controllers/PublicLinkController.php:254 +#: ../../../modules/web/Controllers/PublicLinkController.php:258 msgid "Enlace eliminado" msgstr "Link deleted" -#: ../../../modules/web/Controllers/PublicLinkController.php:275 -#: ../../../modules/web/Controllers/PublicLinkController.php:310 +#: ../../../modules/web/Controllers/PublicLinkController.php:286 +#: ../../../modules/web/Controllers/PublicLinkController.php:323 msgid "Enlace creado" msgstr "Link created" @@ -4394,21 +4386,21 @@ msgstr "Version unavailable" msgid "Notificaciones no disponibles" msgstr "Notifications not available" -#: ../../../modules/web/Controllers/TagController.php:200 +#: ../../../modules/web/Controllers/TagController.php:207 msgid "Etiquetas eliminadas" msgstr "Tags deleted" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 +#: ../../../modules/web/Controllers/TagController.php:302 #: ../../../config/actions.xml:511 msgid "Ver Etiqueta" msgstr "View Tag" -#: ../../../modules/web/Controllers/TrackController.php:110 +#: ../../../modules/web/Controllers/TrackController.php:115 msgid "Track desbloqueado" msgstr "Track unlocked" -#: ../../../modules/web/Controllers/TrackController.php:135 +#: ../../../modules/web/Controllers/TrackController.php:142 msgid "Tracks limpiados" msgstr "Tracks cleared out" @@ -4433,7 +4425,7 @@ msgid "Código de seguridad incorrecto" msgstr "Wrong security code" #: ../../../modules/web/Controllers/UpgradeController.php:92 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 msgid "Aplicación actualizada correctamente" msgstr "Application successfully updated" @@ -4441,96 +4433,96 @@ msgstr "Application successfully updated" msgid "En 5 segundos será redirigido al login" msgstr "You will be redirected to log in within 5 seconds" -#: ../../../modules/web/Controllers/UserController.php:266 -#: ../../../modules/web/Controllers/UserController.php:269 +#: ../../../modules/web/Controllers/UserController.php:275 +#: ../../../modules/web/Controllers/UserController.php:278 msgid "Usuarios eliminados" msgstr "Users deleted" -#: ../../../modules/web/Controllers/UserController.php:277 -#: ../../../modules/web/Controllers/UserController.php:281 +#: ../../../modules/web/Controllers/UserController.php:286 +#: ../../../modules/web/Controllers/UserController.php:290 msgid "Usuario eliminado" msgstr "User deleted" -#: ../../../modules/web/Controllers/UserController.php:311 -#: ../../../modules/web/Controllers/UserController.php:317 +#: ../../../modules/web/Controllers/UserController.php:322 +#: ../../../modules/web/Controllers/UserController.php:328 msgid "Usuario creado" msgstr "User added" -#: ../../../modules/web/Controllers/UserController.php:372 -#: ../../../modules/web/Controllers/UserController.php:378 +#: ../../../modules/web/Controllers/UserController.php:387 +#: ../../../modules/web/Controllers/UserController.php:393 msgid "Usuario actualizado" msgstr "User updated" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 +#: ../../../modules/web/Controllers/UserController.php:458 #: ../../../config/actions.xml:571 msgid "Ver Usuario" msgstr "View User" -#: ../../../modules/web/Controllers/UserGroupController.php:219 -#: ../../../modules/web/Controllers/UserGroupController.php:222 +#: ../../../modules/web/Controllers/UserGroupController.php:226 +#: ../../../modules/web/Controllers/UserGroupController.php:229 msgid "Grupos eliminados" msgstr "Groups deleted" -#: ../../../modules/web/Controllers/UserPassResetController.php:90 +#: ../../../modules/web/Controllers/UserPassResetController.php:92 msgid "Datos incorrectos" msgstr "Wrong data" -#: ../../../modules/web/Controllers/UserPassResetController.php:94 +#: ../../../modules/web/Controllers/UserPassResetController.php:96 msgid "No es posible recuperar la clave" msgstr "Unable to reset the password" -#: ../../../modules/web/Controllers/UserPassResetController.php:101 +#: ../../../modules/web/Controllers/UserPassResetController.php:103 msgid "Recuperación de Clave" msgstr "Password Recovery" -#: ../../../modules/web/Controllers/UserPassResetController.php:102 +#: ../../../modules/web/Controllers/UserPassResetController.php:104 msgid "Solicitado para" msgstr "Requested for" -#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/Controllers/UserPassResetController.php:109 msgid "Solicitud enviada" msgstr "Request sent" -#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/Controllers/UserPassResetController.php:109 msgid "En breve recibirá un correo para completar la solicitud." msgstr "You will receive an email to complete the request shortly." -#: ../../../modules/web/Controllers/UserPassResetController.php:172 +#: ../../../modules/web/Controllers/UserPassResetController.php:179 #: ../../../modules/web/Forms/AuthTokenForm.php:101 #: ../../../modules/web/Forms/UserForm.php:157 msgid "La clave no puede estar en blanco" msgstr "Password cannot be blank" -#: ../../../modules/web/Controllers/UserProfileController.php:203 -#: ../../../modules/web/Controllers/UserProfileController.php:206 +#: ../../../modules/web/Controllers/UserProfileController.php:215 +#: ../../../modules/web/Controllers/UserProfileController.php:218 msgid "Perfiles eliminados" msgstr "Profiles deleted" -#: ../../../modules/web/Controllers/UserProfileController.php:215 -#: ../../../modules/web/Controllers/UserProfileController.php:219 +#: ../../../modules/web/Controllers/UserProfileController.php:227 +#: ../../../modules/web/Controllers/UserProfileController.php:231 msgid "Perfil eliminado" msgstr "Profile deleted" -#: ../../../modules/web/Controllers/UserProfileController.php:248 +#: ../../../modules/web/Controllers/UserProfileController.php:262 msgid "Perfil creado" msgstr "Profile added" -#: ../../../modules/web/Controllers/UserProfileController.php:284 +#: ../../../modules/web/Controllers/UserProfileController.php:300 msgid "Perfil actualizado" msgstr "Profile updated" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 +#: ../../../modules/web/Controllers/UserProfileController.php:326 #: ../../../config/actions.xml:637 msgid "Ver Perfil" msgstr "View Profile" -#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:71 +#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:73 msgid "Preferencias actualizadas" msgstr "Preferences updated" -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:93 +#: ../../../modules/web/Controllers/UserSettingsManagerController.php:87 msgid "Preferencias" msgstr "Preferences" @@ -4652,25 +4644,25 @@ msgid "Ver Detalles" msgstr "View Details" #: ../../../modules/web/themes/material-blue/inc/Icons.php:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:132 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:136 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 msgid "Editar" msgstr "Edit" #: ../../../modules/web/themes/material-blue/inc/Icons.php:36 #: ../../../modules/web/themes/material-blue/inc/Icons.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 msgid "Eliminar" msgstr "Delete" @@ -4679,12 +4671,12 @@ msgid "Cambiar Clave" msgstr "Change Password" #: ../../../modules/web/themes/material-blue/inc/Icons.php:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:200 msgid "Admin Aplicación" msgstr "Application Admin" #: ../../../modules/web/themes/material-blue/inc/Icons.php:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:218 msgid "Admin Cuentas" msgstr "Accounts Admin" @@ -4693,7 +4685,7 @@ msgid "Usuario de LDAP" msgstr "LDAP User" #: ../../../modules/web/themes/material-blue/inc/Icons.php:41 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:257 msgid "Deshabilitado" msgstr "Disabled" @@ -4702,7 +4694,7 @@ msgid "Habilitado" msgstr "Enabled" #: ../../../modules/web/themes/material-blue/inc/Icons.php:43 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:184 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 msgid "Actualizar" msgstr "Update" @@ -4712,7 +4704,7 @@ msgid "Copiar" msgstr "Copy" #: ../../../modules/web/themes/material-blue/inc/Icons.php:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:84 msgid "Email" msgstr "Email" @@ -4723,8 +4715,8 @@ msgstr "Email" #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 msgid "Volver" msgstr "Back" @@ -4827,8 +4819,8 @@ msgid "Borrar elemento?" msgstr "Delete item?" #: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:31 msgid "Página no encontrada" msgstr "Page not found" @@ -4857,47 +4849,47 @@ msgid "Vaciar el registro de eventos?" msgstr "Clear the event log out?" #: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:281 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:253 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:152 msgid "Seleccionar Grupo" msgstr "Select Group" #: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:81 msgid "Seleccionar Usuario" msgstr "Select User" #: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:135 msgid "Seleccionar Perfil" msgstr "Select Profile" #: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:84 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 msgid "Seleccionar Cliente" msgstr "Select Client" #: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:41 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 msgid "Seleccionar Categoría" msgstr "Select Category" @@ -4930,40 +4922,40 @@ msgid "Mostrar Clave" msgstr "Show Password" #: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:24 msgid "Copiar Usuario" msgstr "Copy Username" #. (itstool) path: action/text #: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:41 #: ../../../config/actions.xml:199 ../../../config/actions.xml:271 msgid "Copiar Clave" msgstr "Copy Password" #: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 msgid "Incluir Números" msgstr "Include Numbers" #: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 msgid "Incluir Mayúsculas" msgstr "Include Uppercase" #: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 msgid "Incluir Símbolos" msgstr "Include Symbols" #: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 msgid "Longitud" msgstr "Length" #: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 msgid "Seleccionar Acción" msgstr "Select Action" @@ -4988,13 +4980,13 @@ msgid "Recibir notificaciones?" msgstr "Send notifies?" #: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:158 msgid "Marcar Favorito" msgstr "Mark as Favorite" #. (itstool) path: action/text #: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:148 #: ../../../config/actions.xml:253 msgid "Eliminar Favorito" msgstr "Delete Favorite" @@ -5004,11 +4996,12 @@ msgid "Limpiar Selección" msgstr "Clear Selection" #: ../../../config/strings.js.inc:77 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:78 msgid "Mostrar Favoritos" msgstr "Show Favorites" #: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:72 msgid "Mostrar Todos" msgstr "Show All" @@ -5036,7 +5029,7 @@ msgid "" msgstr "Performing task. Please, do not close the browser window/tab." #: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 msgid "Incluir Letras" msgstr "Include Letters" @@ -5057,12 +5050,12 @@ msgid "Hay una versión más reciente del plugin {0} ({1})" msgstr "There is a more recent version of {0} plugin ({1})" #: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:30 msgid "Actualizado" msgstr "Updated" #: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:36 msgid "Error al comprobar actualizaciones" msgstr "Error while checking for updates" @@ -5074,43 +5067,43 @@ msgstr "sysPass Notices" msgid "Vaciar los tracks?" msgstr "Clear tracks out?" -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 +#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:21 msgid "Javascript es necesario para el correcto funcionamiento" msgstr "Javascript is needed in order to run correctly" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:64 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:121 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 msgid "Preferencias de usuario" msgstr "User preferences" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:68 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:71 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:139 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:142 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 msgid "Salir" msgstr "Sign Out" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:155 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:53 msgid "Demo" msgstr "Demo" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 msgid "Indica si la conexión utiliza HTTPS." msgstr "Tells whether the connection uses HTTPS or not." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 msgid "" "Las claves de formularios enviados se encriptan mediante PKI, el resto de " "datos no." msgstr "" "The passwords sent from the forms are encrypted with PKI, the other data not." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:66 msgid "Ayuda :: FAQ :: Changelog" msgstr "Help :: FAQ :: Changelog" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:70 msgid "Un proyecto de cygnux.org" msgstr "A cygnux.org project" @@ -5170,311 +5163,320 @@ msgstr "Get the private accounts for the current user" msgid "Operador para los parámetros especiales" msgstr "Operator for special parameters" -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 +#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:17 msgid "No se encontraron registros" msgstr "No records found" -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:168 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:64 #: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 #: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:38 msgid "Clave (repetir)" msgstr "Password (repeat)" -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 msgid "Seleccionar Fecha" msgstr "Select date" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:19 msgid "Histórico" msgstr "History" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:22 msgid "Detalles" msgstr "Details" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:127 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:200 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:169 msgid "Notas" msgstr "Notes" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:140 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:142 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:271 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:273 msgid "Historial" msgstr "History" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:278 msgid "Seleccionar fecha" msgstr "Select date" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:160 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 msgid "Última Modificación" msgstr "Last Modification" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:23 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:57 msgid "Seleccionar Usuarios" msgstr "Select Users" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 msgid "Ver" msgstr "View" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 msgid "Seleccionar Grupos" msgstr "Select Groups" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 msgid "Privada" msgstr "Private" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:223 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 msgid "Privada Grupo" msgstr "Private for Group" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:15 msgid "Solicitar Modificación de Cuenta" msgstr "Request Account Modification" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 msgid "Petición" msgstr "Request" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:52 msgid "Descripción de la petición" msgstr "Request description" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:74 msgid "Enviar" msgstr "Send" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 msgid "Permisos" msgstr "Permissions" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:218 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 msgid "Seleccionar Etiquetas" msgstr "Select Tags" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:26 msgid "Seleccionar Cuenta" msgstr "Select Account" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Public Link" - #: ../../../modules/web/themes/material-blue/views/account/account.inc:301 #: ../../../modules/web/themes/material-blue/views/account/account.inc:303 #: ../../../modules/web/themes/material-blue/views/account/account.inc:306 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:191 +msgid "Enlace Público" +msgstr "Public Link" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:314 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:316 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:319 msgid "Enlace Directo" msgstr "Direct Link" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:24 msgid "Fecha Alta" msgstr "Date Added" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:60 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:62 msgid "Fecha Edición" msgstr "Date Modified" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:70 msgid "Editor" msgstr "Editor" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 msgid "Fecha de Clave" msgstr "Password Date" -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/files.inc:37 msgid "Soltar archivos aquí (max. 5) o click para seleccionar" msgstr "Drop files here (max. 5) or click to select" -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/files.inc:39 #, php-format msgid "Tamaño máximo de archivo: %d MB" msgstr "Maximum file size: %d MB" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:35 msgid "Buscar en Wiki" msgstr "Search in Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:82 #, php-format msgid "Abrir enlace a: %s" msgstr "Open link to: %s" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:109 msgid "Clave Caducada" msgstr "Password Expired" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:123 msgid "Cuenta Privada (Grupo)" msgstr "Private Account (Group)" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:166 msgid "Notes" msgstr "Notes" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 msgid "Archivos adjuntos" msgstr "Attachments" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 #: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:218 msgid "Enlace a Wiki" msgstr "Link to Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:210 msgid "Ver en Wiki" msgstr "View at Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 msgid "Búsqueda global" msgstr "Global searching" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:83 msgid "Filtrar Favoritos" msgstr "Favorites Filtering" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:98 msgid "Cuentas por página" msgstr "Accounts per page" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:104 msgid "Más Filtros" msgstr "More Filters" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:109 msgid "Seleccionar Etiqueta" msgstr "Select Tag" -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:22 msgid "Los datos serán encriptados al guardar" msgstr "Data will be encrypted after saving" -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:27 msgid "Los datos serán desencriptados al guardar" msgstr "Data will be unencrypted after saving" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:12 +#, php-format +msgid "La extensión '%s' no está disponible" +msgstr "The '%s' extension is unavailable" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:16 msgid "Esta extensión es necesaria para mostrar las claves como imágenes" msgstr "This extension is needed to display passwords as images" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:30 msgid "Búsqueda" msgstr "Searching" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:36 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:56 msgid "Resultados por página" msgstr "Results per page" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:41 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:61 msgid "Número de resultados por página a mostrar, al realizar una búsqueda." msgstr "Number of results per page to show when doing searches." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:52 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:72 msgid "Número de resultados por página" msgstr "Results per page" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 msgid "Caducidad clave cuentas" msgstr "Accounts password expiry" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:71 msgid "Habilita la caducidad de la clave de cuentas." msgstr "Enables the accounts password expiry date." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:79 msgid "Tiempo caducidad clave" msgstr "Password expiry time" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:84 msgid "Número de días para la caducidad de la clave de cuenta." msgstr "Number of days for the account expiry date." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 msgid "Tiempo caducidad (días)" msgstr "Expire time (days)" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:112 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:90 msgid "Nombre de cuenta como enlace" msgstr "Account name as link" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:113 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:92 msgid "" "Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " "de la cuenta." msgstr "Enables the account name as a link to account details." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:128 msgid "Búsquedas globales" msgstr "Global searches" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:129 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." @@ -5482,44 +5484,44 @@ msgstr "" "Allows the users to do searches that includes all accounts, if they don't " "have permission they can't view the accounts details." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:144 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 msgid "Imagen para mostrar clave" msgstr "Image to show password" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 msgid "Generar una imagen con el texto de la clave de la cuenta." msgstr "Generate an image with a text of the account password." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." msgstr "" "Useful for environments where copying a password to clipboard is a security " "risk." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:164 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:158 msgid "Resultados en Tarjetas" msgstr "Results like Cards" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:166 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:160 msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." msgstr "Enables to show account's search results on a card like format." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:182 msgid "Acceso Grupos Secundarios" msgstr "Secondary Groups Access" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:184 msgid "" "Habilita el acceso a los usuarios que estén incluidos en los grupos " "secundarios." msgstr "Grants access to the users that are included in the secondary groups." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:186 msgid "" "Por defecto el usuario de un grupo secundario es permitido si el grupo " "secundario está establecido como el primario del usuario." @@ -5528,72 +5530,72 @@ msgstr "" "is set as the user's main group." #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:197 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 #: ../../../config/actions.xml:73 msgid "Enlaces Públicos" msgstr "Public Links" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:215 msgid "Habilitar Enlaces Públicos" msgstr "Enable Public Links" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:217 msgid "" "Habilita la posibilidad de generar enlaces públicos para ver los detalles de " "una cuenta." msgstr "" "Enables the ability to create public links to view an account's details" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:219 msgid "" "Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." msgstr "The linked accounts will be visible by anyone that have the link." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:221 msgid "" "Para crear enlaces, los usuarios tienen que tener activada la opción en su " "perfl." msgstr "" "To create links, the users must have activated the option in their profiles." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:237 msgid "Usar imagen para clave" msgstr "Use an image for password" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:239 msgid "La clave de la cuenta es visualizada como una imagen." msgstr "The account password is shown as image." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:248 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:257 msgid "Tiempo de caducidad" msgstr "Expire time" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:263 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:272 msgid "Número máximo de visitas" msgstr "Maximum visits" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:298 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 msgid "Gestión de archivos" msgstr "Files management" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:299 msgid "Habilita la subida/descarga de archivos para las cuentas." msgstr "Enables the uploading and downloading of accounts files." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:307 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:320 msgid "Extensiones de archivos permitidas" msgstr "Allowed file extensions" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 msgid "Extensiones permitidas para la subida de archivos." msgstr "Allowed file extensions for uploading." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:315 msgid "" "Escribir extensión y pulsar intro para añadir. Es necesario guardar la " "configuración." @@ -5601,55 +5603,51 @@ msgstr "" "Write the extension and press enter to add. Remember to save the " "configuration." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:328 msgid "Tamaño máximo de archivo" msgstr "Maximum file size" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:333 msgid "Establece el tamaño máximo para subir archivos." msgstr "Set the maximum file size for uploading." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:337 msgid "El máximo absuluto es de 16MB." msgstr "The absolute maximum is 16MB." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:348 msgid "Tamaño máximo de archivo en kilobytes" msgstr "Maximum file size in kilobytes" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:16 msgid "" "Esta extensión es necesaria para generar los archivos de copia de seguridad " "de la aplicación" msgstr "This extension is needed to build the application's backup files" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 msgid "Resultado" msgstr "Result" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:123 msgid "Descargar Actual" msgstr "Download Current" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:51 msgid "Copia BBDD" msgstr "DB Backup" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:58 msgid "Copia sysPass" msgstr "sysPass Backup" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 -msgid "No hay backups para descargar" -msgstr "There aren't any backups for download" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:80 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." @@ -5657,7 +5655,7 @@ msgstr "" "The backup allows you to save and download either sysPass database or " "application files and its configuration." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:82 msgid "" "Con este método es posible guardar todos los datos de sysPass en otro lugar " "o utilizarlos para hacer la aplicación portable." @@ -5665,26 +5663,22 @@ msgstr "" "With this method it's possible to either save all sysPass data in another " "place or use it to make the application portable." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:185 msgid "Exportar Cuentas" msgstr "Export Accounts" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -msgid "No hay archivos XML para descargar" -msgstr "There aren't any XML files for download" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:139 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:147 msgid "Clave de Exportación" msgstr "Export Password" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:161 msgid "Clave de Exportación (repetir)" msgstr "Export Password (repeat)" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:187 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." @@ -5692,18 +5686,18 @@ msgstr "" "The accounts export allows you to save the accounts and their data in XML " "format to be imported in another sysPass instance." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:189 msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." msgstr "The exported items are accounts, clients, categories and tags." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:191 msgid "" "Las claves de las cuentas son exportadas de forma encriptada para mayor " "seguridad." msgstr "" "The accounts passwords are exported in an excrypted way for better security." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:193 msgid "" "Es posible establecer una clave de exportación para guardar todos los datos " "encriptados en el archivo XML." @@ -5711,72 +5705,72 @@ msgstr "" "It's possible to set an export password to save all the encrypted data in " "the XML file." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:17 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:167 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:50 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:56 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:57 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:102 msgid "Clave Maestra" msgstr "Master Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:27 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:201 msgid "Último cambio" msgstr "Last change" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:35 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:43 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:142 msgid "Clave Maestra actual" msgstr "Current Master Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:49 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:57 msgid "Nueva Clave Maestra" msgstr "New Master Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:63 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:71 msgid "Nueva Clave Maestra (repetir)" msgstr "New Master Password (repeat)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:80 msgid "Guarde la nueva clave en un lugar seguro." msgstr "You should save the new password on a secure place" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:84 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "All accounts passwords will be encrypted again." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:88 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "Users will need to enter the new Master Password." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:92 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:130 #, php-format msgid "" "Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." msgstr "It will be updated %s accounts. This process could take some time." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:109 msgid "No modificar cuentas" msgstr "Do not modify accounts" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:111 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "Sets a new Master Password without re-encrypting the accounts." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:127 msgid "Confirmar cambio" msgstr "Confirm change" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:129 msgid "" "Confirmar el cambio de clave maestra después de haber leído las advertencias " "anteriores." @@ -5784,7 +5778,7 @@ msgstr "" "Confirm the master password change after you have been read all the above " "warnings." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:155 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." @@ -5792,7 +5786,7 @@ msgstr "" "The Master Password is used to encrypt sysPass accounts passwords and keep " "them safe." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:157 msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " "que incluya números, letras y símbolos." @@ -5800,51 +5794,51 @@ msgstr "" "It's advisable to change it from time to time and use a complex password " "that includes numbers, letters and symbols." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:159 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 #, php-format msgid "Para más información consulte: %s" msgstr "You could get more info on: %s" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:169 msgid "Actualizar hash de clave maestra" msgstr "Update master password hash" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:189 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:323 msgid "Clave Temporal" msgstr "Temporary Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:203 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:218 msgid "No generada" msgstr "Not generated" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:211 msgid "Válido hasta" msgstr "Valid until" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:227 msgid "Intentos" msgstr "Attempts" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:244 msgid "Validez (s)" msgstr "Life (s)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:263 msgid "Enviar correo" msgstr "Send email" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:265 msgid "" "Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." msgstr "Sends an email to all users or only to those whose group is selected." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:325 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " @@ -5854,31 +5848,31 @@ msgstr "" "to enter it during login. By this way there is no need to tell them the real " "Master Password." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:332 msgid "Generar" msgstr "Generate" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:30 msgid "Usar Auth Basic" msgstr "Use Auth Basic" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:31 msgid "Usar Auth Basic para autorizar los accesos a la aplicación." msgstr "Use Auth Basic for authorizing the accesses to the application" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:45 msgid "Usar Auth Basic SSO" msgstr "Use Auth Basic SSO" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:46 msgid "Usar auto-login con Auth Basic." msgstr "Use auto-login through Auth Basic" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:54 msgid "Dominio" msgstr "Domain" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:59 msgid "" "El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " "el de Auth Basic." @@ -5886,124 +5880,124 @@ msgstr "" "The domain will be added to the sysPass user name for checking against the " "Auth Basic one." -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:69 msgid "Nombre de dominio" msgstr "Domain name" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:249 msgid "Grupo por Defecto" msgstr "Default Group" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:80 msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." msgstr "Sets the default users group for newly SSO users" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:264 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:274 msgid "Perfil por Defecto" msgstr "Default Profile" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:105 msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." msgstr "Sets the default profile for the newly created SSO users." -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:98 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:176 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:72 msgid "Eventos" msgstr "Events" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:30 msgid "Habilitar log de eventos" msgstr "Enable event log" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:31 msgid "Guarda las acciones realizadas en la aplicación." msgstr "Saves the actions done by the application." -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:45 msgid "Habilitar Syslog" msgstr "Enable Syslog" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:60 msgid "Habilitar Syslog Remoto" msgstr "Enable Remote Syslog" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:78 msgid "Nombre o dirección IP" msgstr "Hostname or IP address" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:84 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:79 msgid "Puerto" msgstr "Port" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:12 msgid "Proxy" msgstr "Proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:30 msgid "Usar Proxy" msgstr "Use Proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:31 msgid "Usar proxy para comprobación de actualizaciones y notificaciones." msgstr "Use a proxy server for checking out for updates and notifications." -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:47 msgid "Servidor proxy" msgstr "Proxy server" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:61 msgid "Puerto del servidor proxy" msgstr "Proxy server port" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:75 msgid "Usuario del servidor proxy" msgstr "Proxy server user" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:89 msgid "Clave del servidor proxy" msgstr "Proxy server password" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:16 msgid "" "Esta extensión es necesaria comprobar las actualizaciones y notificaciones" msgstr "This extension is needed to check for sysPass updates and notices" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:24 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:15 msgid "Sitio" msgstr "Site" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:137 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:139 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:28 msgid "Idioma" msgstr "Language" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:35 msgid "" "Establece el idioma global de la aplicación. Es posible establecer un idioma " "por usuario en las preferencias." @@ -6011,7 +6005,7 @@ msgstr "" "Set the global app language. You can set a per user language at the user " "preferences." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:39 msgid "" "Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." "com/join/project/fmlsBuugyv" @@ -6019,14 +6013,14 @@ msgstr "" "To improve/add the translations, you can get involved at https://poeditor." "com/join/project/fmlsBuugyv" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:67 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:42 msgid "Tema Visual" msgstr "Visual Theme" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:62 msgid "" "Establece el tema visual global de la aplicación. Es posible establecer un " "tema visual por usuario en las preferencias." @@ -6034,35 +6028,35 @@ msgstr "" "Set the global app visual theme. You can the user's visual theme on the user " "preferences." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:89 msgid "Timeout de sesión (s)" msgstr "Session timeout (s)" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:107 msgid "Forzar HTTPS" msgstr "Force HTTPS" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:108 msgid "Fuerza para que todas las conexiones sean a través de HTTPS." msgstr "It forces the use of HTTPS on all the connections" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:122 msgid "Habilitar depuración" msgstr "Enable debug" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:123 msgid "" "Muestra información relativa a la configuración de la aplicación y " "rendimiento." msgstr "" "Shows some information about application configuration and performance." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:137 msgid "Modo mantenimiento" msgstr "Maintenance mode" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:138 msgid "" "En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " "necesario modificar el archivo de configuración." @@ -6070,21 +6064,21 @@ msgstr "" "In this mode nobody can log into the application. To disable it, you need to " "either modify the configuration file or unset on the site tab." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:152 msgid "Comprobar actualizaciones" msgstr "Check for updates" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:153 msgid "" "Comprobar actualizaciones de la aplicación (sólo para los usuarios " "administradores)." msgstr "Check for application updates (only for administrators)." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:167 msgid "Comprobar notificaciones" msgstr "Check for notices" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:168 msgid "" "Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " "para los usuarios administradores)." @@ -6092,15 +6086,15 @@ msgstr "" "Check if there are either sysPass security or warning notices (only for " "administrators)." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 msgid "Encriptar Sesión" msgstr "Encrypt Session" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:184 msgid "Encriptar los datos de la sesión de PHP." msgstr "Encrypt PHP session data" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:185 msgid "" "Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " "datos almacenados no serán legibles." @@ -6108,47 +6102,47 @@ msgstr "" "This feature increases the PHP sessions security, because the stored data " "won't be readable." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 msgid "Importar CSV/XML" msgstr "CSV/XML Import" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:28 msgid "Usuario por Defecto" msgstr "Default User" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:23 msgid "Define el usuario por defecto para las cuentas importadas." msgstr "Sets the default user for the accounts imported." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:50 msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Sets the default group for the accounts imported." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:75 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Drop files here or click to select" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "archivos XML y CSV." msgstr "" "Allows to import the Accounts, Categories and Clients from XML or CSV files." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "The supported XML file formats are: sysPass, KeePass and KeePassX" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "Drag & Drop the file into the import zone or click over the arrow." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " "KeePass o KeePassX y la categoría igual al nombre de los grupos." @@ -6156,11 +6150,11 @@ msgstr "" "For KeePass or KeePassX files, the client name will be KeePass or KeePassX " "and the category name like groups names." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "The CSV import file requires the following format:" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 msgid "" "\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" "\"notas\"" @@ -6168,7 +6162,7 @@ msgstr "" "\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" "\"notes\"" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:117 msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " "automáticamente." @@ -6176,20 +6170,20 @@ msgstr "" "In all cases, if the client or category do not exist they will be created " "automatically." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:125 msgid "XML" msgstr "XML" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:131 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:146 msgid "Clave de Importación" msgstr "Import Password" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:136 msgid "Sólo es necesaria para archivos XML de sysPass encriptados." msgstr "It's only needed for sysPass XML files that have been encrypted." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:157 msgid "" "Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " "la actual." @@ -6197,64 +6191,68 @@ msgstr "" "It's only needed for sysPass XML files that have been encrypted with a " "different master password from the current one." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:174 msgid "CSV" msgstr "CSV" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:195 msgid "Delimitador CSV" msgstr "CSV delimiter" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:185 msgid "Sólo es necesario para archivos CSV." msgstr "It's only needed for CSV files." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 msgid "Información de la Aplicación" msgstr "Application Information" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:23 msgid "Versión sysPass" msgstr "sysPass version" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:33 msgid "Base de Datos" msgstr "Database" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:47 msgid "PHP" msgstr "PHP" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:51 msgid "Extensiones" msgstr "Extensions" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 msgid "Extensiones no disponibles" msgstr "Unavailable extensions" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:59 msgid "Memoria Usada" msgstr "Used Memory" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Tasa de descarga" +msgstr "Download rate" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:66 msgid "OP Cache" msgstr "OP Cache" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:88 msgid "Copia de Configuración" msgstr "Configuration Backup" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:100 msgid "Indica si el idioma se encuentra disponible" msgstr "Tells whether the language is available or not." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:104 msgid "" "Si no está instalado, es necesario instalar las locales en el sistema " "operativo. Más información en Wiki." @@ -6262,161 +6260,161 @@ msgstr "" "If it is not installed, you would need install the right operating system " "locales. More info at Wiki." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:116 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:126 msgid "Sesión Encriptada" msgstr "Encrypted Session" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:121 msgid "Indica si los datos de la sesión están encriptados en el servidor" msgstr "Tells whether the session data are encrypted in the server or not" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:136 msgid "Plugins Cargados" msgstr "Loaded Plugins" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:16 msgid "Esta extensión es necesaria conectar con el servidor de LDAP" msgstr "This extension is needed to connect to the LDAP server" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:46 msgid "Habilitar LDAP" msgstr "Enable LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:48 msgid "Habilita de autentificación mediante servidor LDAP." msgstr "Enables authentication against an LDAP server." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:50 msgid "Este método utilizará MySQL en caso de fallo." msgstr "This method will use MySQL as fallback." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:65 msgid "Active Directory" msgstr "Active Directory" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:67 msgid "Habilita el modo de conexión con LDAP de Active Directory." msgstr "Enables Active Directory LDAP connection mode." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:84 msgid "Habilita la conexión mediante TLS." msgstr "Enables the connection over TLS" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:99 msgid "Nombre o dirección IP del servidor de LDAP." msgstr "Hostname or IP address of the LDAP server." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:185 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:219 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:131 msgid "Ejemplos:" msgstr "Examples:" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:125 msgid "Usuario de conexión" msgstr "Bind User" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:130 msgid "Usuario para conectar con el servicio de LDAP." msgstr "User to connect to the LDAP service." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:155 msgid "Clave de conexión" msgstr "Bind Password" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:160 msgid "Clave del usuario de conexión a LDAP." msgstr "LDAP connection user password" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:176 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:200 msgid "Base de búsqueda" msgstr "Search base" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:181 msgid "Base en la que realizar la búsqueda de usuarios de LDAP." msgstr "LDAP base to perform the LDAP users searching." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:211 msgid "" "Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." msgstr "LDAP group that the user must belong for granting to log in." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:215 msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." msgstr "This group needs to be placed in the LDAP search base." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:244 msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Sets the default users group for newly LDAP users" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:269 msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Sets the default profile for the newly created LDAP users." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:321 msgid "Importación" msgstr "Import" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:337 msgid "Atributo Login" msgstr "Login Attribute" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:332 msgid "" "Define el atributo a utilizar para el login del usuario en la importación." msgstr "Defines the attribute for the user's login when importing." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:350 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:360 msgid "Atributo Nombre" msgstr "Name Attribute" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:355 msgid "" "Define el atributo a utilizar para el nombre del usuario en la importación." msgstr "Defines the attribute for the user's name when importing." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:385 msgid "Importar Grupos" msgstr "Import Groups" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:394 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:404 msgid "Atributo Nombre Grupo" msgstr "Group Name Attribute" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:399 msgid "" "Define el atributo a utilizar para el nombre del grupo en la importación." msgstr "Defines the attribute for the user group name when importing." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:415 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:429 msgid "Filtro" msgstr "Filter" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:420 msgid "Filtro para importar usuarios o grupos de LDAP." msgstr "Filter for importing LDAP users or groups." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:34 msgid "Habilitar notificaciones de correo" msgstr "Enable email notifications" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 msgid "Habilitar peticiones por correo" msgstr "Enable requests by email" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:50 msgid "" "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " "cuentas sin permisos." @@ -6424,103 +6422,103 @@ msgstr "" "Allows users to request for either modifications to existing accounts or " "access to accounts in which they have no rights." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:97 msgid "Habilitar Autentificación" msgstr "Enable Authentication" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:135 msgid "Seguridad" msgstr "Security" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:138 msgid "Deshabilitada" msgstr "Disabled" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:156 msgid "Dirección de correo de envío" msgstr "Recipient email address" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:165 msgid "Destinatarios" msgstr "Recipients" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:16 msgid "Esta extensión es necesaria conectar con DokuWiki" msgstr "This extension is needed to connect with DokuWiki" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:47 msgid "Habilitar enlaces Wiki" msgstr "Enable Wiki links" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:48 msgid "" "Habilita la opción de añadir un enlace a Wiki externa para los resultados de " "la búsqueda." msgstr "" "Enables the option to add a link to search for results in an external Wiki." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:56 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:83 msgid "URL de búsqueda Wiki" msgstr "Wiki search URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:61 msgid "URL que utiliza la wiki para realizar una búsqueda de una página." msgstr "URL that the Wiki uses for making an entry searching." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:65 msgid "Como parámetro se utiliza el nombre del cliente." msgstr "The client name is used as parameter." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:69 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:102 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:187 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:214 msgid "Ejemplo:" msgstr "Example:" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:116 msgid "URL de página en Wiki" msgstr "Wiki page URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:94 msgid "URL que utiliza la wiki para acceder a los detalles de una página." msgstr "URL that the Wiki uses for accessing to the entry details." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:98 msgid "" "El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " "de la Wiki." msgstr "The account name is used as parameter of Wiki search variable." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:136 msgid "Prefijo para nombre de cuenta" msgstr "Account name prefix" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:127 msgid "" "Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." msgstr "Prefix to determine which accounts have a link to the Wiki." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:146 msgid "DokuWiki API" msgstr "DokuWiki API" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:164 msgid "Habilitar API de DokuWiki" msgstr "Enable DokuWiki API" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:166 msgid "" "Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." msgstr "Enables DokuWiki XML-RPC API for Wiki links." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:168 msgid "" "Para que esta característica funcione, es necesario habilitar los enlaces " "Wiki para el filtrado de cuentas." @@ -6528,141 +6526,141 @@ msgstr "" "In order to get this feature working, you should enable Wiki links for " "accounts filtering" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:199 msgid "URL API" msgstr "API URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:183 msgid "URL de la API de DokuWiki." msgstr "DokuWiki API URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:205 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:227 msgid "URL Base" msgstr "Base URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:210 msgid "URL base de DokuWiki." msgstr "DokuWiki base URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:238 msgid "Usuario para conectar a la API de DokuWiki." msgstr "User for connecting to the DokuWiki API." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:282 msgid "Namespace" msgstr "Namespace" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:271 msgid "Namespace utilizado para buscar las páginas." msgstr "Namespace used to search pages." #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:170 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:172 msgid "Instalar" msgstr "Install" -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 +#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 msgid "Filtro ON" msgstr "Filter ON" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:11 #, php-format msgid "Instalación %s" msgstr "Installation %s" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:21 msgid "Admin de sysPass" msgstr "sysPass Admin" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:29 msgid "Usuario administrador de sysPass" msgstr "sysPass admin user" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:37 msgid "Login del usuario administrador de sysPass" msgstr "sysPass administrator's login" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:69 msgid "Configurar BBDD" msgstr "DB Configuration" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:79 msgid "Usuario acceso BBDD" msgstr "DB access user" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:87 msgid "Usuario con permisos de administrador de MySQL" msgstr "An user with MySQL admin rights" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:95 msgid "Clave acceso BBDD" msgstr "DB access password" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:104 msgid "Nombre BBDD para sysPass" msgstr "sysPass database name" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:112 msgid "Nombre de la base de datos para sysPass" msgstr "sysPass database name" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:121 msgid "Servidor BBDD para sysPass" msgstr "sysPass database server" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:129 msgid "Nombre del servidor para instalar la base de datos de sysPass" msgstr "Server name to install the sysPass database" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:149 msgid "Modo Hosting" msgstr "Hosting Mode" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:156 msgid "No crea ni verifica los permisos del usuario sobre la BBDD" msgstr "It does not create or verify the user's permissions on the DB" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 msgid "Otros" msgstr "Others" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 msgid "Creador" msgstr "Creator" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 msgid "Eliminar Historial" msgstr "Delete History" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 msgid "Opciones" msgstr "Options" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 msgid "Regenerar Autorización" msgstr "Refresh Authorization" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 msgid "Token" msgstr "Token" -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:54 msgid "Indica si el cliente es visible para todos los usuarios." msgstr "Sets whether the client is visible by all users" -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:57 msgid "" "Por defecto los clientes asignados a cuentas sólo son visibles para los " "usuarios con acceso a las cuentas." @@ -6670,60 +6668,60 @@ msgstr "" "By default, the clients assigned to accounts only will be visible to users " "who are granted to access to the accounts." -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 msgid "Nombre del campo" msgstr "Field name" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 msgid "Texto Ayuda" msgstr "Help Text" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 msgid "Ayuda del campo" msgstr "Field help" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 msgid "Obligatorio" msgstr "Required" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 msgid "Puntuación" msgstr "Score" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 msgid "Expresión Regular" msgstr "Regular Expression" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 msgid "Incluir Minúsculas" msgstr "Include Lowercase" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 msgid "Las cuentas sólo serán visibles por el usuario." msgstr "Accounts will be only visible by the user." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 msgid "Los administradores no podrán acceder a las cuentas." msgstr "Administrators won't be able to display the accounts." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." msgstr "Accounts will be only visible by the user and his/her main group." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 msgid "Dirección IP" msgstr "IP Address" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 msgid "Timeout" msgstr "Timeout" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 msgid "" "Prioridad de asignación en caso de coincidir con otros valores asignados por " "usuario, grupo o perfil." @@ -6731,284 +6729,284 @@ msgstr "" "Assignment priority if values match with others assigned by user, group or " "profile." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 msgid "Prioridad de asignación" msgstr "Assignment Priority" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 msgid "" "Indica si los valores serán forzados al crear o modificar los elementos." msgstr "Enforces the values to be set either on creating or updating an item." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 msgid "Los valores serán añadidos a los existentes." msgstr "Values will be merged with the existing ones." -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:83 msgid "Hash" msgstr "Hash" -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:91 msgid "URL" msgstr "URL" -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:101 msgid "Uso" msgstr "Use" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 msgid "Nombre de usuario completo" msgstr "Full username" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:58 msgid "Login de inicio de sesión" msgstr "Session login" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:69 msgid "Login SSO" msgstr "SSO Login " -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:77 msgid "Login de inicio de sesión con SSO" msgstr "Session login with SSO" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:92 msgid "Dirección de correo" msgstr "Email address" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:202 msgid "Administrador de la aplicación" msgstr "Application administrator" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:220 msgid "Administrador de cuentas" msgstr "Accounts administrator" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:240 msgid "Forzar cambio de clave" msgstr "Force password change" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 msgid "Entradas" msgstr "Entries" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 msgid "Último Acceso" msgstr "Last Access" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 msgid "Fecha Clave Maestra" msgstr "Master Password Date" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:311 msgid "Usado en" msgstr "Used in" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 msgid "Usado por" msgstr "Used by" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:108 msgid "(*) Incluido en grupo" msgstr "(*) Listed in group" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 msgid "Gestión" msgstr "Management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 msgid "Crear" msgstr "Add" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 msgid "Crear nueva cuenta" msgstr "Add a new account" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 msgid "Ver detalles de cuenta" msgstr "View account details" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 msgid "Ver clave de cuenta" msgstr "View account password" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 #: ../../../config/actions.xml:259 msgid "Ver Historial" msgstr "View History" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 msgid "Ver historial de cuenta" msgstr "View account history" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 msgid "Editar cuenta" msgstr "Edit account" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 msgid "Editar Clave" msgstr "Edit Password" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 msgid "Editar clave de cuenta" msgstr "Edit account password" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 msgid "Eliminar cuenta" msgstr "Remove account" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 msgid "Ver archivos de cuenta" msgstr "View account files" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 msgid "Publicar Enlace" msgstr "Share Link" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 msgid "Publicar enlace a cuenta" msgstr "Share link to account" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 msgid "Crear cuenta privada" msgstr "Create private account" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 msgid "Crear cuenta privada para grupo" msgstr "Create private account for group" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 msgid "Asignar permisos" msgstr "Assign permissions" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 msgid "Gestión de usuarios" msgstr "Users management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 msgid "Gestión de grupos" msgstr "Groups management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 msgid "Gestión de perfiles" msgstr "Profiles management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 msgid "Gestión de categorías" msgstr "Categories management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 msgid "Gestión de etiquetas" msgstr "Tags management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 msgid "Gestión de clientes" msgstr "Customers management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 msgid "Gestión de campos personalizados" msgstr "Custom fields management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 msgid "Gestión de autorizaciones API" msgstr "API authorizations management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 msgid "Gestión de enlaces" msgstr "Links management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 msgid "Gestión de cuentas" msgstr "Accounts management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 msgid "Valores por Defecto" msgstr "Default Values" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 msgid "Gestión de Valores por Defecto" msgstr "Default Values Management" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 #: ../../../config/actions.xml:691 msgid "Configuración General" msgstr "General Configuration" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 msgid "Opciones de encriptación" msgstr "Encryption options" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 msgid "Backup" msgstr "Backup" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 msgid "Realizar copia de seguridad y exportar" msgstr "Make a backup and export" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 msgid "Importar" msgstr "Import" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 msgid "Realizar importación de cuentas" msgstr "Make accounts import" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 msgid "Log de Eventos" msgstr "Event Log" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 msgid "Ver log de eventos" msgstr "View event log" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 msgid "Nombre del perfil" msgstr "Profile name" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:46 msgid "Clave Anterior" msgstr "Previous Password" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:73 msgid "Acceder" msgstr "Sign in" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:82 msgid "¿Olvidó su clave?" msgstr "Forgot password?" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 #, php-format msgid "Actualización %s" msgstr "Update %s" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:20 msgid "Actualización de BBDD" msgstr "DB Update" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:22 msgid "Actualización de Aplicación" msgstr "Application Update" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 msgid "Código de Seguridad" msgstr "Security Code" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 msgid "" "Este código se encuentra en el archivo de configuración de sysPass con la " "etiqueta \"upgradeKey\"" @@ -7016,7 +7014,7 @@ msgstr "" "This code is set in the sysPass config file within the tag name \"upgradekey" "\"" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:47 msgid "" "Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " "o indique los IDs por defecto para los elementos huérfanos." @@ -7024,31 +7022,31 @@ msgstr "" "Some orphaned items have been found. Please, modify those items or enter the " "default IDs for them." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:49 msgid "Si no se indican los IDs, se crearán nuevos elementos." msgstr "If the items IDs are not set, they will be created." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:74 msgid "Introducir un ID de usuario válido para cuentas" msgstr "Enter a valid user ID for the accounts" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 msgid "Introducir un ID de categoría válido para cuentas" msgstr "Enter a valid category ID for the accounts" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:96 msgid "Introducir un ID de cliente válido para cuentas" msgstr "Enter a valid client ID for the accounts" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 msgid "Introducir un ID de grupo válido para usuarios" msgstr "Enter a valid group ID for the users" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 msgid "Introducir un ID de perfil válido para usuarios" msgstr "Enter a valid profile ID for the users" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:128 msgid "" "Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " "necesario reencriptar los datos almacenados" @@ -7056,59 +7054,59 @@ msgstr "" "This update uses a new encryption schema, so it will be needed to reencrypt " "the whole encrypted data." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:150 msgid "Introducir login de usuario válido" msgstr "Enter a valid user login" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:162 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 msgid "He realizado una copia de seguridad completa de sysPass" msgstr "I've done a full sysPass backup" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 msgid "Por favor espere mientras el proceso se ejecuta" msgstr "Please, wait while the process is running" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:186 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 msgid "Iniciar Actualización" msgstr "Start Update" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:95 msgid "Notificación global" msgstr "Global notification" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:103 msgid "Sólo para administradores de la aplicación" msgstr "Only for application administrators" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:107 msgid "Solo Admins" msgstr "Only Admins" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:29 msgid "Nombre del plugin" msgstr "Plugin name" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:41 msgid "Versión del plugin" msgstr "Plugin version" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:46 msgid "Versión Compatible" msgstr "Compatible Version" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:53 msgid "Versión de sysPass compatible" msgstr "sysPass compatible version" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:39 msgid "Autor" msgstr "Author" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:65 msgid "Autor del plugin" msgstr "Plugin author" @@ -7121,7 +7119,7 @@ msgid "Para iniciar la actualización introduzca el código de seguridad" msgstr "Please enter the security code to start the upgrade" #: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:13 msgid "Solicitud de Cambio de Clave" msgstr "Request Password Change" @@ -7129,68 +7127,68 @@ msgstr "Request Password Change" msgid "Email del Usuario" msgstr "User's Email" -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:39 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:49 msgid "Volver a iniciar sesión" msgstr "Go back to login" -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:46 msgid "Solicitar" msgstr "Request" -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:56 msgid "Cambiar" msgstr "Change" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:107 msgid "Ordenar resultados por visitas" msgstr "Sort search results by views" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:109 msgid "" "Ordena los resultados de búsqueda por el número de visitas de las cuentas." msgstr "Sorts accounts search results by the number of accounts views" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:124 msgid "Barra de navegación superior" msgstr "Navigation bar on top" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:126 msgid "Mostrar una barra de navegación superior en las búsquedas." msgstr "Shows a navigation bar on top of the search results." -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:141 msgid "Mostrar Acciones Ocultas" msgstr "Show Hidden Actions" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:143 msgid "" "Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." msgstr "Always show the hidden actions on the accounts search page." -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:165 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:175 msgid "Notificaciones In-App" msgstr "In-App Notifications" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:177 msgid "Habilita la consulta de notificaciones activas In-App." msgstr "Enables the active In-App notifications polling" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:16 #: ../../../config/actions.xml:277 msgid "Ver Wiki" msgstr "View Wiki" -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 #, php-format msgid "Resultados de búsqueda de '%s'" msgstr "Search results of '%s'" -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:37 msgid "Página" msgstr "Page" @@ -7559,6 +7557,18 @@ msgstr "Text" msgid "Link" msgstr "Link" +#~ msgid "Último backup" +#~ msgstr "Last backup" + +#~ msgid "Última exportación" +#~ msgstr "Last export" + +#~ msgid "No hay backups para descargar" +#~ msgstr "There aren't any backups for download" + +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "There aren't any XML files for download" + #~ msgid "Hay %d notificaciones pendientes" #~ msgstr "There are %d unread notifications" diff --git a/app/locales/en_US/LC_MESSAGES/messages.mo b/app/locales/en_US/LC_MESSAGES/messages.mo index 2b914bb4136f1d5f5b40231fd5186e943dc51ec2..f46f5d146a9cbd8ca5736c6f7df794d055fa96e3 100644 GIT binary patch delta 30180 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 delta 30341 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 diff --git a/app/locales/en_US/LC_MESSAGES/messages.po b/app/locales/en_US/LC_MESSAGES/messages.po index 70718182..7500836a 100644 --- a/app/locales/en_US/LC_MESSAGES/messages.po +++ b/app/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: 2018-10-16 01:07+0200\n" -"PO-Revision-Date: 2018-10-16 01:09+0200\n" +"POT-Creation-Date: 2018-10-28 19:59+0100\n" +"PO-Revision-Date: 2018-10-28 19:59+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: nuxsmin@syspass.org\n" "Language: en_US\n" @@ -53,7 +53,7 @@ msgid "Actual: %s - Necesario: 750" msgstr "Current: %s - Needed: 750" #: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:142 +#: ../../../../lib/SP/Util/ErrorUtil.php:152 #: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:96 msgid "No tiene permisos para acceder a esta cuenta" msgstr "You don't have permission to access to this account" @@ -61,14 +61,14 @@ msgstr "You don't have permission to access to this account" #: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 #: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 #: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:139 -#: ../../../../lib/SP/Util/ErrorUtil.php:143 -#: ../../../../lib/SP/Util/ErrorUtil.php:147 -#: ../../../../lib/SP/Util/ErrorUtil.php:151 -#: ../../../../lib/SP/Util/ErrorUtil.php:159 -#: ../../../../lib/SP/Util/ErrorUtil.php:166 +#: ../../../../lib/SP/Util/ErrorUtil.php:149 +#: ../../../../lib/SP/Util/ErrorUtil.php:153 +#: ../../../../lib/SP/Util/ErrorUtil.php:157 +#: ../../../../lib/SP/Util/ErrorUtil.php:161 +#: ../../../../lib/SP/Util/ErrorUtil.php:169 +#: ../../../../lib/SP/Util/ErrorUtil.php:176 #: ../../../modules/web/Controllers/ErrorController.php:124 -#: ../../../modules/web/Controllers/UserPassResetController.php:94 +#: ../../../modules/web/Controllers/UserPassResetController.php:96 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Consulte con el administrador" msgstr "Please contact to the administrator" @@ -84,9 +84,9 @@ msgid "Acceso denegado" msgstr "Access denied" #: ../../../../lib/SP/Core/Acl/Acl.php:300 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 msgid "Acción" msgstr "Action" @@ -104,44 +104,44 @@ msgstr "Action" #: ../../../../lib/SP/Services/Auth/LoginService.php:608 #: ../../../../lib/SP/Services/Ldap/LdapImportService.php:238 #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/Controllers/LoginController.php:120 -#: ../../../modules/web/Controllers/UserController.php:278 -#: ../../../modules/web/Controllers/UserController.php:312 -#: ../../../modules/web/Controllers/UserController.php:373 -#: ../../../modules/web/Controllers/UserController.php:412 -#: ../../../modules/web/Controllers/UserPassResetController.php:190 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 +#: ../../../modules/web/Controllers/LoginController.php:122 +#: ../../../modules/web/Controllers/UserController.php:287 +#: ../../../modules/web/Controllers/UserController.php:323 +#: ../../../modules/web/Controllers/UserController.php:388 +#: ../../../modules/web/Controllers/UserController.php:429 +#: ../../../modules/web/Controllers/UserPassResetController.php:197 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:141 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:61 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:149 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:233 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:247 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:24 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:94 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:75 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:77 #: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 msgid "Usuario" msgstr "User" @@ -151,100 +151,100 @@ msgid "Acción no encontrada" msgstr "Action not found" #: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Util/ErrorUtil.php:150 -#: ../../../modules/web/Controllers/AccountFileController.php:261 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:59 -#: ../../../modules/web/Controllers/AccountManagerController.php:77 -#: ../../../modules/web/Controllers/AccountManagerController.php:204 -#: ../../../modules/web/Controllers/AuthTokenController.php:68 -#: ../../../modules/web/Controllers/AuthTokenController.php:105 -#: ../../../modules/web/Controllers/AuthTokenController.php:170 -#: ../../../modules/web/Controllers/AuthTokenController.php:200 -#: ../../../modules/web/Controllers/AuthTokenController.php:243 -#: ../../../modules/web/Controllers/AuthTokenController.php:278 -#: ../../../modules/web/Controllers/AuthTokenController.php:327 -#: ../../../modules/web/Controllers/CategoryController.php:66 -#: ../../../modules/web/Controllers/CategoryController.php:100 -#: ../../../modules/web/Controllers/CategoryController.php:164 -#: ../../../modules/web/Controllers/CategoryController.php:194 -#: ../../../modules/web/Controllers/CategoryController.php:237 -#: ../../../modules/web/Controllers/CategoryController.php:277 -#: ../../../modules/web/Controllers/CategoryController.php:317 -#: ../../../modules/web/Controllers/ClientController.php:64 -#: ../../../modules/web/Controllers/ClientController.php:96 -#: ../../../modules/web/Controllers/ClientController.php:160 -#: ../../../modules/web/Controllers/ClientController.php:190 -#: ../../../modules/web/Controllers/ClientController.php:230 -#: ../../../modules/web/Controllers/ClientController.php:268 -#: ../../../modules/web/Controllers/ClientController.php:304 -#: ../../../modules/web/Controllers/CustomFieldController.php:65 -#: ../../../modules/web/Controllers/CustomFieldController.php:97 -#: ../../../modules/web/Controllers/CustomFieldController.php:159 -#: ../../../modules/web/Controllers/CustomFieldController.php:189 -#: ../../../modules/web/Controllers/CustomFieldController.php:221 -#: ../../../modules/web/Controllers/CustomFieldController.php:258 -#: ../../../modules/web/Controllers/CustomFieldController.php:295 -#: ../../../modules/web/Controllers/EventlogController.php:101 -#: ../../../modules/web/Controllers/ItemPresetController.php:67 -#: ../../../modules/web/Controllers/ItemPresetController.php:151 -#: ../../../modules/web/Controllers/ItemPresetController.php:188 -#: ../../../modules/web/Controllers/ItemPresetController.php:226 -#: ../../../modules/web/Controllers/ItemPresetController.php:256 -#: ../../../modules/web/Controllers/ItemPresetController.php:295 -#: ../../../modules/web/Controllers/ItemPresetController.php:334 -#: ../../../modules/web/Controllers/NotificationController.php:102 -#: ../../../modules/web/Controllers/NotificationController.php:164 -#: ../../../modules/web/Controllers/NotificationController.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:210 -#: ../../../modules/web/Controllers/NotificationController.php:241 -#: ../../../modules/web/Controllers/NotificationController.php:292 -#: ../../../modules/web/Controllers/NotificationController.php:319 -#: ../../../modules/web/Controllers/NotificationController.php:352 -#: ../../../modules/web/Controllers/PluginController.php:103 -#: ../../../modules/web/Controllers/PluginController.php:122 -#: ../../../modules/web/Controllers/PublicLinkController.php:71 -#: ../../../modules/web/Controllers/PublicLinkController.php:105 -#: ../../../modules/web/Controllers/PublicLinkController.php:167 -#: ../../../modules/web/Controllers/PublicLinkController.php:193 -#: ../../../modules/web/Controllers/PublicLinkController.php:223 -#: ../../../modules/web/Controllers/PublicLinkController.php:264 -#: ../../../modules/web/Controllers/PublicLinkController.php:296 -#: ../../../modules/web/Controllers/PublicLinkController.php:338 -#: ../../../modules/web/Controllers/TagController.php:65 -#: ../../../modules/web/Controllers/TagController.php:99 -#: ../../../modules/web/Controllers/TagController.php:159 -#: ../../../modules/web/Controllers/TagController.php:189 -#: ../../../modules/web/Controllers/TagController.php:223 -#: ../../../modules/web/Controllers/TagController.php:254 -#: ../../../modules/web/Controllers/TagController.php:285 -#: ../../../modules/web/Controllers/UserController.php:69 -#: ../../../modules/web/Controllers/UserController.php:101 -#: ../../../modules/web/Controllers/UserController.php:186 -#: ../../../modules/web/Controllers/UserController.php:218 -#: ../../../modules/web/Controllers/UserController.php:254 -#: ../../../modules/web/Controllers/UserController.php:296 -#: ../../../modules/web/Controllers/UserController.php:357 -#: ../../../modules/web/Controllers/UserController.php:398 -#: ../../../modules/web/Controllers/UserController.php:435 -#: ../../../modules/web/Controllers/UserGroupController.php:74 -#: ../../../modules/web/Controllers/UserGroupController.php:108 -#: ../../../modules/web/Controllers/UserGroupController.php:179 -#: ../../../modules/web/Controllers/UserGroupController.php:209 -#: ../../../modules/web/Controllers/UserGroupController.php:249 -#: ../../../modules/web/Controllers/UserGroupController.php:288 -#: ../../../modules/web/Controllers/UserGroupController.php:327 -#: ../../../modules/web/Controllers/UserProfileController.php:64 -#: ../../../modules/web/Controllers/UserProfileController.php:96 -#: ../../../modules/web/Controllers/UserProfileController.php:163 -#: ../../../modules/web/Controllers/UserProfileController.php:193 -#: ../../../modules/web/Controllers/UserProfileController.php:233 -#: ../../../modules/web/Controllers/UserProfileController.php:268 -#: ../../../modules/web/Controllers/UserProfileController.php:304 +#: ../../../../lib/SP/Util/ErrorUtil.php:160 +#: ../../../modules/web/Controllers/AccountFileController.php:292 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:64 +#: ../../../modules/web/Controllers/AccountManagerController.php:79 +#: ../../../modules/web/Controllers/AccountManagerController.php:213 +#: ../../../modules/web/Controllers/AuthTokenController.php:71 +#: ../../../modules/web/Controllers/AuthTokenController.php:111 +#: ../../../modules/web/Controllers/AuthTokenController.php:176 +#: ../../../modules/web/Controllers/AuthTokenController.php:209 +#: ../../../modules/web/Controllers/AuthTokenController.php:254 +#: ../../../modules/web/Controllers/AuthTokenController.php:292 +#: ../../../modules/web/Controllers/AuthTokenController.php:344 +#: ../../../modules/web/Controllers/CategoryController.php:69 +#: ../../../modules/web/Controllers/CategoryController.php:106 +#: ../../../modules/web/Controllers/CategoryController.php:170 +#: ../../../modules/web/Controllers/CategoryController.php:203 +#: ../../../modules/web/Controllers/CategoryController.php:248 +#: ../../../modules/web/Controllers/CategoryController.php:290 +#: ../../../modules/web/Controllers/CategoryController.php:332 +#: ../../../modules/web/Controllers/ClientController.php:70 +#: ../../../modules/web/Controllers/ClientController.php:107 +#: ../../../modules/web/Controllers/ClientController.php:171 +#: ../../../modules/web/Controllers/ClientController.php:203 +#: ../../../modules/web/Controllers/ClientController.php:245 +#: ../../../modules/web/Controllers/ClientController.php:285 +#: ../../../modules/web/Controllers/ClientController.php:323 +#: ../../../modules/web/Controllers/CustomFieldController.php:71 +#: ../../../modules/web/Controllers/CustomFieldController.php:108 +#: ../../../modules/web/Controllers/CustomFieldController.php:170 +#: ../../../modules/web/Controllers/CustomFieldController.php:202 +#: ../../../modules/web/Controllers/CustomFieldController.php:236 +#: ../../../modules/web/Controllers/CustomFieldController.php:275 +#: ../../../modules/web/Controllers/CustomFieldController.php:314 +#: ../../../modules/web/Controllers/EventlogController.php:107 +#: ../../../modules/web/Controllers/ItemPresetController.php:70 +#: ../../../modules/web/Controllers/ItemPresetController.php:157 +#: ../../../modules/web/Controllers/ItemPresetController.php:197 +#: ../../../modules/web/Controllers/ItemPresetController.php:236 +#: ../../../modules/web/Controllers/ItemPresetController.php:268 +#: ../../../modules/web/Controllers/ItemPresetController.php:309 +#: ../../../modules/web/Controllers/ItemPresetController.php:350 +#: ../../../modules/web/Controllers/NotificationController.php:110 +#: ../../../modules/web/Controllers/NotificationController.php:173 +#: ../../../modules/web/Controllers/NotificationController.php:191 +#: ../../../modules/web/Controllers/NotificationController.php:223 +#: ../../../modules/web/Controllers/NotificationController.php:255 +#: ../../../modules/web/Controllers/NotificationController.php:308 +#: ../../../modules/web/Controllers/NotificationController.php:337 +#: ../../../modules/web/Controllers/NotificationController.php:372 +#: ../../../modules/web/Controllers/PluginController.php:111 +#: ../../../modules/web/Controllers/PluginController.php:133 +#: ../../../modules/web/Controllers/PublicLinkController.php:74 +#: ../../../modules/web/Controllers/PublicLinkController.php:111 +#: ../../../modules/web/Controllers/PublicLinkController.php:173 +#: ../../../modules/web/Controllers/PublicLinkController.php:201 +#: ../../../modules/web/Controllers/PublicLinkController.php:233 +#: ../../../modules/web/Controllers/PublicLinkController.php:276 +#: ../../../modules/web/Controllers/PublicLinkController.php:310 +#: ../../../modules/web/Controllers/PublicLinkController.php:354 +#: ../../../modules/web/Controllers/TagController.php:68 +#: ../../../modules/web/Controllers/TagController.php:105 +#: ../../../modules/web/Controllers/TagController.php:165 +#: ../../../modules/web/Controllers/TagController.php:197 +#: ../../../modules/web/Controllers/TagController.php:233 +#: ../../../modules/web/Controllers/TagController.php:266 +#: ../../../modules/web/Controllers/TagController.php:299 +#: ../../../modules/web/Controllers/UserController.php:75 +#: ../../../modules/web/Controllers/UserController.php:112 +#: ../../../modules/web/Controllers/UserController.php:197 +#: ../../../modules/web/Controllers/UserController.php:230 +#: ../../../modules/web/Controllers/UserController.php:266 +#: ../../../modules/web/Controllers/UserController.php:308 +#: ../../../modules/web/Controllers/UserController.php:373 +#: ../../../modules/web/Controllers/UserController.php:416 +#: ../../../modules/web/Controllers/UserController.php:455 +#: ../../../modules/web/Controllers/UserGroupController.php:77 +#: ../../../modules/web/Controllers/UserGroupController.php:114 +#: ../../../modules/web/Controllers/UserGroupController.php:185 +#: ../../../modules/web/Controllers/UserGroupController.php:217 +#: ../../../modules/web/Controllers/UserGroupController.php:259 +#: ../../../modules/web/Controllers/UserGroupController.php:300 +#: ../../../modules/web/Controllers/UserGroupController.php:341 +#: ../../../modules/web/Controllers/UserProfileController.php:70 +#: ../../../modules/web/Controllers/UserProfileController.php:107 +#: ../../../modules/web/Controllers/UserProfileController.php:174 +#: ../../../modules/web/Controllers/UserProfileController.php:206 +#: ../../../modules/web/Controllers/UserProfileController.php:248 +#: ../../../modules/web/Controllers/UserProfileController.php:285 +#: ../../../modules/web/Controllers/UserProfileController.php:323 msgid "No tiene permisos para realizar esta operación" msgstr "You don't have permission to do this operation" #: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:146 +#: ../../../../lib/SP/Util/ErrorUtil.php:156 msgid "No tiene permisos para acceder a esta página" msgstr "You don't have permission to access this page" @@ -320,17 +320,17 @@ msgstr "Invalid icons class" #: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 #: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:190 -#: ../../../modules/web/Controllers/AccountController.php:228 +#: ../../../modules/web/Controllers/AccountController.php:229 msgid "ON" msgstr "ON" #: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../modules/web/Controllers/AccountController.php:228 +#: ../../../modules/web/Controllers/AccountController.php:229 msgid "OFF" msgstr "OFF" #: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:126 +#: ../../../../lib/SP/Mvc/View/Template.php:127 #, php-format msgid "No es posible obtener la plantilla \"%s\" : %s" msgstr "Unable to retrieve the \"%s\" template: %s" @@ -352,12 +352,12 @@ msgstr "Encoding error" msgid "Respuesta XML-RPC inválida" msgstr "Invalid XML-RPC response" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:71 +#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:70 msgid "La sesión no se ha iniciado o ha caducado" msgstr "Session not started or timed out" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:119 -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:128 +#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:115 +#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:124 msgid "Acción Inválida" msgstr "Invalid Action" @@ -399,19 +399,18 @@ msgstr "Invalid filter type" msgid "Tipo de objeto incorrecto" msgstr "Wrong object type" -#: ../../../../lib/SP/Mvc/View/Template.php:278 -#: ../../../../lib/SP/Mvc/View/Template.php:280 +#: ../../../../lib/SP/Mvc/View/Template.php:302 +#: ../../../../lib/SP/Mvc/View/Template.php:366 #, php-format msgid "No es posible obtener la variable \"%s\"" msgstr "Unable to retrieve the \"%s\" variable" -#: ../../../../lib/SP/Mvc/View/Template.php:326 -#: ../../../../lib/SP/Mvc/View/Template.php:328 +#: ../../../../lib/SP/Mvc/View/Template.php:335 #, php-format msgid "No es posible destruir la variable \"%s\"" msgstr "Unable to unset the \"%s\" variable" -#: ../../../../lib/SP/Mvc/View/Template.php:345 +#: ../../../../lib/SP/Mvc/View/Template.php:356 msgid "La plantilla no contiene archivos" msgstr "Template does not contain files" @@ -432,8 +431,8 @@ msgstr "Plugin" #: ../../../../lib/SP/Plugin/PluginManager.php:219 #: ../../../../lib/SP/Plugin/PluginManager.php:339 -#: ../../../modules/web/Controllers/PluginController.php:213 -#: ../../../modules/web/Controllers/PluginController.php:216 +#: ../../../modules/web/Controllers/PluginController.php:226 +#: ../../../modules/web/Controllers/PluginController.php:229 msgid "Plugin deshabilitado" msgstr "Plugin disabled" @@ -479,34 +478,34 @@ msgstr "New Plugin" #: ../../../modules/api/Controllers/UserGroupController.php:123 #: ../../../modules/api/Controllers/UserGroupController.php:152 #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/Controllers/UserGroupController.php:265 -#: ../../../modules/web/Controllers/UserGroupController.php:304 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: ../../../modules/web/Controllers/UserGroupController.php:274 +#: ../../../modules/web/Controllers/UserGroupController.php:315 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:43 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:22 msgid "Nombre" msgstr "Name" @@ -530,20 +529,20 @@ msgstr "Error while searching the group RDN" #: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:111 #: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:143 #: ../../../../lib/SP/Services/Ldap/LdapImportService.php:140 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/Controllers/UserGroupController.php:231 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/Controllers/UserGroupController.php:238 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:274 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:277 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:233 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:148 msgid "Grupo" msgstr "Group" @@ -558,8 +557,8 @@ msgid "Error al buscar objetos en DN base" msgstr "Error while searching objects in base DN" #: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:95 -#: ../../../modules/web/Controllers/ConfigLdapController.php:154 -#: ../../../modules/web/Controllers/ConfigLdapController.php:197 +#: ../../../modules/web/Controllers/ConfigLdapController.php:158 +#: ../../../modules/web/Controllers/ConfigLdapController.php:203 msgid "Conexión a LDAP correcta" msgstr "LDAP connection OK" @@ -572,14 +571,14 @@ msgstr "Unable to connect to the LDAP server" #: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:142 #: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:189 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:94 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:66 msgid "Servidor" msgstr "Server" @@ -623,7 +622,7 @@ msgid "No es posible inicializar" msgstr "Unable to initialize" #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 -#: ../../../modules/web/Controllers/AccountController.php:927 +#: ../../../modules/web/Controllers/AccountController.php:965 msgid "Solicitud" msgstr "Request" @@ -631,18 +630,18 @@ msgstr "Request" #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigBackupController.php:120 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 +#: ../../../modules/web/Controllers/ConfigBackupController.php:126 +#: ../../../modules/web/Controllers/ConfigManagerController.php:175 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: ../../../config/actions.xml:13 msgid "Cuentas" msgstr "Accounts" #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 -#: ../../../modules/web/Controllers/NotificationController.php:271 -#: ../../../modules/web/Controllers/NotificationController.php:302 +#: ../../../modules/web/Controllers/NotificationController.php:284 +#: ../../../modules/web/Controllers/NotificationController.php:317 msgid "Notificación" msgstr "Notification" @@ -847,35 +846,36 @@ msgstr "Error while removing the permission" msgid "Error al eliminar los permisos" msgstr "Error while removing the permissions" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:78 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:79 msgid "Error al crear la notificación" msgstr "Error while adding the notification" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:118 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:429 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:119 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:478 msgid "Error al modificar la notificación" msgstr "Error while updating the notification" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:137 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:156 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:138 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:157 msgid "Error al eliminar la notificación" msgstr "Error while deleting the notification" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:179 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:302 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:180 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:303 #: ../../../../lib/SP/Services/Notification/NotificationService.php:140 #: ../../../../lib/SP/Services/Notification/NotificationService.php:159 msgid "Error al eliminar las notificaciones" msgstr "Error while deleting the notifications" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:212 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:213 msgid "Error al obtener la notificación" msgstr "Error while retrieving notification" -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:242 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:466 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:499 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:533 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:243 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:515 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:548 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:582 +#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:615 msgid "Error al obtener las notificaciones" msgstr "Error while retrieving the notifications" @@ -1107,8 +1107,8 @@ msgid "Fallo al actualizar la clave de la cuenta" msgstr "Error while updating the account's password" #: ../../../../lib/SP/Services/Account/AccountCryptService.php:193 -#: ../../../modules/web/Controllers/AccountManagerController.php:185 -#: ../../../modules/web/Controllers/AccountManagerController.php:188 +#: ../../../modules/web/Controllers/AccountManagerController.php:191 +#: ../../../modules/web/Controllers/AccountManagerController.php:194 msgid "Cuentas actualizadas" msgstr "Accounts updated" @@ -1161,7 +1161,7 @@ msgstr "Invalid format" #: ../../../../lib/SP/Services/Api/ApiService.php:96 #: ../../../../lib/SP/Services/Auth/LoginService.php:138 #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:103 -#: ../../../modules/web/Controllers/UserPassResetController.php:124 +#: ../../../modules/web/Controllers/UserPassResetController.php:126 msgid "Intentos excedidos" msgstr "Attempts exceeded" @@ -1203,10 +1203,10 @@ msgstr "Wrong master password" #: ../../../../lib/SP/Services/Auth/LoginService.php:300 #: ../../../../lib/SP/Services/Auth/LoginService.php:324 #: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:154 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 +#: ../../../../lib/SP/Util/ErrorUtil.php:164 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:73 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:147 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 msgid "Clave maestra actualizada" msgstr "Master password updated" @@ -1222,17 +1222,17 @@ msgstr "The Master Password either is not saved or is wrong" #: ../../../../lib/SP/Services/Auth/LoginService.php:518 #: ../../../../lib/SP/Services/Auth/LoginService.php:564 #: ../../../../lib/SP/Services/Auth/LoginService.php:607 -#: ../../../modules/web/Controllers/AccountFileController.php:235 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/Controllers/ItemPresetController.php:310 -#: ../../../modules/web/Controllers/ItemPresetController.php:349 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 +#: ../../../modules/web/Controllers/AccountFileController.php:260 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 +#: ../../../modules/web/Controllers/ItemPresetController.php:323 +#: ../../../modules/web/Controllers/ItemPresetController.php:364 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:30 msgid "Tipo" msgstr "Type" @@ -1252,7 +1252,7 @@ msgid "El usuario no tiene grupos asociados" msgstr "The user has no associated groups" #: ../../../../lib/SP/Services/Auth/LoginService.php:609 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:12 msgid "Autentificación" msgstr "Authentication" @@ -1279,9 +1279,9 @@ msgid "Error al realizar el backup" msgstr "Error while doing the backup" #: ../../../../lib/SP/Services/Backup/FileBackupService.php:114 -#: ../../../../lib/SP/Services/Export/XmlExportService.php:167 -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigImportController.php:83 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:198 +#: ../../../modules/web/Controllers/ConfigImportController.php:82 +#: ../../../modules/web/Controllers/ConfigImportController.php:85 msgid "Revise el registro de eventos para más detalles" msgstr "Please check out the event log for more details" @@ -1294,26 +1294,16 @@ msgstr "Unable to create the backups directory (\"%s\")" msgid "Compruebe los permisos del directorio de backups" msgstr "Please, check the backup directory permissions" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:167 +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:205 msgid "Copiando base de datos" msgstr "Copying database" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -#, php-format -msgid "La extensión '%s' no está disponible" -msgstr "The '%s' extension is unavailable" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:303 -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:338 +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:336 +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:360 msgid "Copiando aplicación" msgstr "Copying application" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:333 +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:355 msgid "Esta operación sólo es posible en entornos Linux" msgstr "This operation is only available on Linux environments" @@ -1411,37 +1401,37 @@ msgid "Errores al actualizar datos de campos personalizados" msgstr "Error while updating the custom fields data" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/ConfigBackupController.php:122 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 +#: ../../../modules/web/Controllers/ConfigBackupController.php:128 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 msgid "Categorías" msgstr "Categories" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/ConfigBackupController.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 +#: ../../../modules/web/Controllers/ConfigBackupController.php:127 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 msgid "Clientes" msgstr "Clients" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:104 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 msgid "Usuarios" msgstr "Users" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 msgid "Grupos" msgstr "Groups" @@ -1457,34 +1447,34 @@ msgstr "Error while deleting the fields" msgid "Tipo de campo no encontrado" msgstr "Field type not found" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:123 #: ../../../../lib/SP/Storage/File/FileCache.php:74 #: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 #, php-format msgid "No es posible crear el directorio (%s)" msgstr "Unable to create the directory (%s)" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:165 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:196 msgid "Error al realizar la exportación" msgstr "Error while exporting" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:233 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:264 msgid "Exportando categorías" msgstr "Exporting categories" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:345 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:376 msgid "Exportando clientes" msgstr "Exporting clients" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:391 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:422 msgid "Exportando etiquetas" msgstr "Exporting tags" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:435 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:466 msgid "Exportando cuentas" msgstr "Exporting accounts" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:545 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:576 msgid "Error al crear el archivo XML" msgstr "Error while creating the XML file" @@ -1535,38 +1525,38 @@ msgstr "Account imported" #: ../../../modules/api/Controllers/AccountController.php:190 #: ../../../modules/api/Controllers/AccountController.php:241 #: ../../../modules/api/Controllers/AccountController.php:316 -#: ../../../modules/web/Controllers/AccountController.php:226 -#: ../../../modules/web/Controllers/AccountController.php:721 -#: ../../../modules/web/Controllers/AccountController.php:766 -#: ../../../modules/web/Controllers/AccountController.php:807 -#: ../../../modules/web/Controllers/AccountController.php:846 -#: ../../../modules/web/Controllers/AccountController.php:896 -#: ../../../modules/web/Controllers/AccountController.php:930 -#: ../../../modules/web/Controllers/AccountFileController.php:234 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:112 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:147 -#: ../../../modules/web/Controllers/AccountManagerController.php:147 -#: ../../../modules/web/Controllers/ClientController.php:213 -#: ../../../modules/web/Controllers/ClientController.php:245 -#: ../../../modules/web/Controllers/ClientController.php:281 +#: ../../../modules/web/Controllers/AccountController.php:227 +#: ../../../modules/web/Controllers/AccountController.php:749 +#: ../../../modules/web/Controllers/AccountController.php:796 +#: ../../../modules/web/Controllers/AccountController.php:839 +#: ../../../modules/web/Controllers/AccountController.php:880 +#: ../../../modules/web/Controllers/AccountController.php:932 +#: ../../../modules/web/Controllers/AccountController.php:968 +#: ../../../modules/web/Controllers/AccountFileController.php:259 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:121 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:158 +#: ../../../modules/web/Controllers/AccountManagerController.php:151 +#: ../../../modules/web/Controllers/ClientController.php:225 +#: ../../../modules/web/Controllers/ClientController.php:259 +#: ../../../modules/web/Controllers/ClientController.php:297 #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:59 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:34 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:40 #: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:32 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 msgid "Cliente" msgstr "Client" @@ -1589,7 +1579,7 @@ msgid "Verifique los permisos del usuario del servidor web" msgstr "Please check the web server user permissions" #: ../../../../lib/SP/Services/Import/FileImport.php:100 -#: ../../../modules/web/Controllers/AccountFileController.php:184 +#: ../../../modules/web/Controllers/AccountFileController.php:209 msgid "Tipo de archivo no soportado" msgstr "File type not allowed" @@ -1598,8 +1588,8 @@ msgid "Compruebe la extensión del archivo" msgstr "Please, check the file extension" #: ../../../../lib/SP/Services/Import/FileImport.php:116 -#: ../../../modules/web/Controllers/AccountFileController.php:199 -#: ../../../modules/web/Controllers/AccountFileController.php:219 +#: ../../../modules/web/Controllers/AccountFileController.php:224 +#: ../../../modules/web/Controllers/AccountFileController.php:244 msgid "Error interno al leer el archivo" msgstr "Internal error while reading the file" @@ -1631,8 +1621,8 @@ msgstr "KeePass XML Import" #: ../../../../lib/SP/Services/Import/KeepassImport.php:77 #: ../../../modules/api/Controllers/ClientController.php:93 #: ../../../modules/api/Controllers/ClientController.php:98 -#: ../../../modules/web/Controllers/ClientController.php:244 -#: ../../../modules/web/Controllers/ClientController.php:248 +#: ../../../modules/web/Controllers/ClientController.php:258 +#: ../../../modules/web/Controllers/ClientController.php:262 msgid "Cliente creado" msgstr "Client added" @@ -1642,21 +1632,21 @@ msgid "Categoría importada" msgstr "Category imported" #: ../../../../lib/SP/Services/Import/KeepassImport.php:104 -#: ../../../modules/web/Controllers/CategoryController.php:220 -#: ../../../modules/web/Controllers/CategoryController.php:254 -#: ../../../modules/web/Controllers/CategoryController.php:294 +#: ../../../modules/web/Controllers/CategoryController.php:228 +#: ../../../modules/web/Controllers/CategoryController.php:264 +#: ../../../modules/web/Controllers/CategoryController.php:306 #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:72 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:45 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:51 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:105 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 msgid "Categoría" msgstr "Category" @@ -1919,13 +1909,13 @@ msgid "Error al enviar correo" msgstr "Error while sending the email" #: ../../../../lib/SP/Services/Mail/MailService.php:141 -#: ../../../modules/web/Controllers/ConfigMailController.php:138 -#: ../../../modules/web/Controllers/ConfigMailController.php:144 +#: ../../../modules/web/Controllers/ConfigMailController.php:146 +#: ../../../modules/web/Controllers/ConfigMailController.php:152 msgid "Correo enviado" msgstr "Email sent" #: ../../../../lib/SP/Services/Mail/MailService.php:142 -#: ../../../modules/web/Controllers/ConfigMailController.php:139 +#: ../../../modules/web/Controllers/ConfigMailController.php:147 msgid "Destinatario" msgstr "Recipient" @@ -2036,17 +2026,17 @@ msgid "Actualización de autorizaciones API" msgstr "API authorizations update" #: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 -#: ../../../modules/web/Controllers/AuthTokenController.php:291 -#: ../../../modules/web/Controllers/AuthTokenController.php:300 -#: ../../../modules/web/Controllers/AuthTokenController.php:307 +#: ../../../modules/web/Controllers/AuthTokenController.php:305 +#: ../../../modules/web/Controllers/AuthTokenController.php:314 +#: ../../../modules/web/Controllers/AuthTokenController.php:321 msgid "Autorización actualizada" msgstr "Authorization updated" #: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 -#: ../../../modules/web/Controllers/AuthTokenController.php:226 -#: ../../../modules/web/Controllers/AuthTokenController.php:292 -#: ../../../modules/web/Controllers/AuthTokenController.php:301 -#: ../../../modules/web/Controllers/AuthTokenController.php:339 +#: ../../../modules/web/Controllers/AuthTokenController.php:234 +#: ../../../modules/web/Controllers/AuthTokenController.php:306 +#: ../../../modules/web/Controllers/AuthTokenController.php:315 +#: ../../../modules/web/Controllers/AuthTokenController.php:356 msgid "Autorización" msgstr "Authorization" @@ -2063,9 +2053,9 @@ msgstr "Parameter" #: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:113 #: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:229 #: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:161 -#: ../../../modules/web/Controllers/ConfigBackupController.php:118 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 +#: ../../../modules/web/Controllers/ConfigBackupController.php:124 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:49 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:34 msgid "Versión" msgstr "Version" @@ -2075,12 +2065,15 @@ msgid "Error al actualizar la configuración" msgstr "Error while updating the configuration" #: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:122 -#: ../../../modules/web/Controllers/AccountFileController.php:84 -#: ../../../modules/web/Controllers/AccountFileController.php:97 -#: ../../../modules/web/Controllers/AccountFileController.php:137 -#: ../../../modules/web/Controllers/AccountFileController.php:232 -#: ../../../modules/web/Controllers/AccountFileController.php:329 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 +#: ../../../modules/web/Controllers/AccountFileController.php:88 +#: ../../../modules/web/Controllers/AccountFileController.php:104 +#: ../../../modules/web/Controllers/AccountFileController.php:141 +#: ../../../modules/web/Controllers/AccountFileController.php:257 +#: ../../../modules/web/Controllers/AccountFileController.php:364 +#: ../../../modules/web/Controllers/ConfigBackupController.php:165 +#: ../../../modules/web/Controllers/ConfigBackupController.php:207 +#: ../../../modules/web/Controllers/ConfigBackupController.php:249 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:72 msgid "Archivo" msgstr "File" @@ -2096,15 +2089,15 @@ msgstr "Custom fields update" #: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:74 #: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:87 #: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:156 -#: ../../../modules/web/Controllers/CustomFieldController.php:271 -#: ../../../modules/web/Controllers/CustomFieldController.php:275 +#: ../../../modules/web/Controllers/CustomFieldController.php:287 +#: ../../../modules/web/Controllers/CustomFieldController.php:291 msgid "Campo actualizado" msgstr "Field updated" #: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:88 #: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:157 -#: ../../../modules/web/Controllers/CustomFieldController.php:235 -#: ../../../modules/web/Controllers/CustomFieldController.php:272 +#: ../../../modules/web/Controllers/CustomFieldController.php:249 +#: ../../../modules/web/Controllers/CustomFieldController.php:288 msgid "Campo" msgstr "Field" @@ -2138,20 +2131,20 @@ msgid "Actualización de enlaces públicos" msgstr "Public links update" #: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:89 -#: ../../../modules/web/Controllers/PublicLinkController.php:175 +#: ../../../modules/web/Controllers/PublicLinkController.php:180 msgid "Enlace actualizado" msgstr "Link updated" #: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:90 -#: ../../../modules/web/Controllers/PublicLinkController.php:246 +#: ../../../modules/web/Controllers/PublicLinkController.php:255 msgid "Enlace" msgstr "Link" #: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 +#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:73 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:147 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 msgid "Reinicie la sesión para cambiarla" msgstr "Please, restart the session for update it" @@ -2178,10 +2171,10 @@ msgid "Error al eliminar los grupos" msgstr "Error while deleting the groups" #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 +#: ../../../modules/web/Controllers/UserController.php:235 +#: ../../../modules/web/Controllers/UserController.php:356 +#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Cambio de Clave" msgstr "Password Change" @@ -2255,45 +2248,45 @@ msgstr "Error while compressing the file data (%s)" msgid "Datos no cargados" msgstr "Data not loaded" -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 +#: ../../../../lib/SP/Storage/File/FileHandler.php:72 +#: ../../../../lib/SP/Storage/File/FileHandler.php:135 #, php-format msgid "No es posible escribir en el archivo (%s)" msgstr "Unable to read/write the file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 +#: ../../../../lib/SP/Storage/File/FileHandler.php:89 #, php-format msgid "No es posible abrir el archivo (%s)" msgstr "Unable to open the file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 +#: ../../../../lib/SP/Storage/File/FileHandler.php:104 +#: ../../../../lib/SP/Storage/File/FileHandler.php:118 #, php-format msgid "No es posible leer desde el archivo (%s)" msgstr "Unable to read from file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 +#: ../../../../lib/SP/Storage/File/FileHandler.php:173 #, php-format msgid "No es posible cerrar el archivo (%s)" msgstr "Unable to close the file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 +#: ../../../../lib/SP/Storage/File/FileHandler.php:219 #, php-format msgid "No es posible escribir el archivo (%s)" msgstr "Unable to write in file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 +#: ../../../../lib/SP/Storage/File/FileHandler.php:234 #, php-format msgid "Archivo no encontrado (%s)" msgstr "File not found (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 +#: ../../../../lib/SP/Storage/File/FileHandler.php:259 +#: ../../../../lib/SP/Storage/File/FileHandler.php:314 #, php-format msgid "No es posible leer el archivo (%s)" msgstr "Unable to read/write the file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 +#: ../../../../lib/SP/Storage/File/FileHandler.php:286 #, php-format msgid "No es posible eliminar el archivo (%s)" msgstr "Unable to delete file (%s)" @@ -2315,12 +2308,12 @@ msgstr "Socket not initialized" msgid "Error al enviar datos" msgstr "Error while sending the data" -#: ../../../../lib/SP/Util/ErrorUtil.php:138 +#: ../../../../lib/SP/Util/ErrorUtil.php:148 msgid "Opción no disponible" msgstr "Option unavailable" -#: ../../../../lib/SP/Util/ErrorUtil.php:158 -#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../../lib/SP/Util/ErrorUtil.php:168 +#: ../../../../lib/SP/Util/ErrorUtil.php:175 msgid "Se ha producido una excepción" msgstr "An exception occured" @@ -2333,44 +2326,44 @@ msgid "Cuenta visualizada" msgstr "Account displayed" #: ../../../modules/api/Controllers/AccountController.php:102 -#: ../../../modules/web/Controllers/AccountController.php:555 -#: ../../../modules/web/Controllers/AccountController.php:611 +#: ../../../modules/web/Controllers/AccountController.php:573 +#: ../../../modules/web/Controllers/AccountController.php:631 msgid "Clave visualizada" msgstr "Password viewed" #: ../../../modules/api/Controllers/AccountController.php:138 #: ../../../modules/api/Controllers/AccountController.php:144 -#: ../../../modules/web/Controllers/AccountController.php:805 -#: ../../../modules/web/Controllers/AccountController.php:816 -#: ../../../modules/web/Controllers/UserController.php:411 -#: ../../../modules/web/Controllers/UserController.php:415 -#: ../../../modules/web/Controllers/UserPassResetController.php:189 -#: ../../../modules/web/Controllers/UserPassResetController.php:193 +#: ../../../modules/web/Controllers/AccountController.php:837 +#: ../../../modules/web/Controllers/AccountController.php:848 +#: ../../../modules/web/Controllers/UserController.php:428 +#: ../../../modules/web/Controllers/UserController.php:432 +#: ../../../modules/web/Controllers/UserPassResetController.php:196 +#: ../../../modules/web/Controllers/UserPassResetController.php:200 msgid "Clave actualizada" msgstr "Password updated" #: ../../../modules/api/Controllers/AccountController.php:188 #: ../../../modules/api/Controllers/AccountController.php:194 -#: ../../../modules/web/Controllers/AccountController.php:719 -#: ../../../modules/web/Controllers/AccountController.php:730 +#: ../../../modules/web/Controllers/AccountController.php:747 +#: ../../../modules/web/Controllers/AccountController.php:758 msgid "Cuenta creada" msgstr "Account added" #: ../../../modules/api/Controllers/AccountController.php:239 #: ../../../modules/api/Controllers/AccountController.php:245 -#: ../../../modules/web/Controllers/AccountController.php:764 -#: ../../../modules/web/Controllers/AccountController.php:775 +#: ../../../modules/web/Controllers/AccountController.php:794 +#: ../../../modules/web/Controllers/AccountController.php:805 msgid "Cuenta actualizada" msgstr "Account updated" #: ../../../modules/api/Controllers/AccountController.php:314 #: ../../../modules/api/Controllers/AccountController.php:320 -#: ../../../modules/web/Controllers/AccountController.php:894 -#: ../../../modules/web/Controllers/AccountController.php:899 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:110 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:115 -#: ../../../modules/web/Controllers/AccountManagerController.php:145 -#: ../../../modules/web/Controllers/AccountManagerController.php:150 +#: ../../../modules/web/Controllers/AccountController.php:930 +#: ../../../modules/web/Controllers/AccountController.php:935 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:119 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:124 +#: ../../../modules/web/Controllers/AccountManagerController.php:149 +#: ../../../modules/web/Controllers/AccountManagerController.php:154 msgid "Cuenta eliminada" msgstr "Account removed" @@ -2380,22 +2373,22 @@ msgstr "Category displayed" #: ../../../modules/api/Controllers/CategoryController.php:91 #: ../../../modules/api/Controllers/CategoryController.php:96 -#: ../../../modules/web/Controllers/CategoryController.php:253 -#: ../../../modules/web/Controllers/CategoryController.php:257 +#: ../../../modules/web/Controllers/CategoryController.php:263 +#: ../../../modules/web/Controllers/CategoryController.php:267 msgid "Categoría creada" msgstr "Category added" #: ../../../modules/api/Controllers/CategoryController.php:121 #: ../../../modules/api/Controllers/CategoryController.php:126 -#: ../../../modules/web/Controllers/CategoryController.php:293 -#: ../../../modules/web/Controllers/CategoryController.php:297 +#: ../../../modules/web/Controllers/CategoryController.php:305 +#: ../../../modules/web/Controllers/CategoryController.php:309 msgid "Categoría actualizada" msgstr "Category updated" #: ../../../modules/api/Controllers/CategoryController.php:150 #: ../../../modules/api/Controllers/CategoryController.php:155 -#: ../../../modules/web/Controllers/CategoryController.php:219 -#: ../../../modules/web/Controllers/CategoryController.php:223 +#: ../../../modules/web/Controllers/CategoryController.php:227 +#: ../../../modules/web/Controllers/CategoryController.php:231 msgid "Categoría eliminada" msgstr "Category deleted" @@ -2405,20 +2398,20 @@ msgstr "Client displayed" #: ../../../modules/api/Controllers/ClientController.php:124 #: ../../../modules/api/Controllers/ClientController.php:129 -#: ../../../modules/web/Controllers/ClientController.php:280 -#: ../../../modules/web/Controllers/ClientController.php:284 +#: ../../../modules/web/Controllers/ClientController.php:296 +#: ../../../modules/web/Controllers/ClientController.php:300 msgid "Cliente actualizado" msgstr "Client updated" #: ../../../modules/api/Controllers/ClientController.php:153 #: ../../../modules/api/Controllers/ClientController.php:158 -#: ../../../modules/web/Controllers/ClientController.php:212 -#: ../../../modules/web/Controllers/ClientController.php:216 +#: ../../../modules/web/Controllers/ClientController.php:224 +#: ../../../modules/web/Controllers/ClientController.php:228 msgid "Cliente eliminado" msgstr "Client deleted" #: ../../../modules/api/Controllers/ConfigController.php:57 -#: ../../../modules/web/Controllers/ConfigBackupController.php:64 +#: ../../../modules/web/Controllers/ConfigBackupController.php:70 msgid "Copia de la aplicación y base de datos realizada correctamente" msgstr "Application and database backup completed successfully" @@ -2430,19 +2423,19 @@ msgid "Ruta" msgstr "Path" #: ../../../modules/api/Controllers/ConfigController.php:61 -#: ../../../modules/web/Controllers/ConfigBackupController.php:67 +#: ../../../modules/web/Controllers/ConfigBackupController.php:73 msgid "Proceso de backup finalizado" msgstr "Backup process finished" #: ../../../modules/api/Controllers/ConfigController.php:82 -#: ../../../modules/web/Controllers/ConfigBackupController.php:92 +#: ../../../modules/web/Controllers/ConfigBackupController.php:98 msgid "Exportación de sysPass en XML" msgstr "sysPass XML export" #: ../../../modules/api/Controllers/ConfigController.php:91 #: ../../../modules/api/Controllers/ConfigController.php:94 -#: ../../../modules/web/Controllers/ConfigBackupController.php:102 -#: ../../../modules/web/Controllers/ConfigBackupController.php:127 +#: ../../../modules/web/Controllers/ConfigBackupController.php:108 +#: ../../../modules/web/Controllers/ConfigBackupController.php:136 msgid "Proceso de exportación finalizado" msgstr "Export process finished" @@ -2466,55 +2459,55 @@ msgstr "Send details in the response" #: ../../../modules/api/Controllers/Help/AccountHelp.php:69 #: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:89 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:92 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:163 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:293 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:170 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:253 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:260 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 #: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:35 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:98 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:27 msgid "Clave" msgstr "Password" #: ../../../modules/api/Controllers/Help/AccountHelp.php:70 #: ../../../modules/api/Controllers/Help/AccountHelp.php:91 #: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:114 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:181 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:90 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 msgid "Fecha Caducidad Clave" msgstr "Password Expiry Date" #: ../../../modules/api/Controllers/Help/AccountHelp.php:82 #: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:73 msgid "Nombre de cuenta" msgstr "Account name" @@ -2536,46 +2529,46 @@ msgstr "Client Id" #: ../../../modules/api/Controllers/Help/AccountHelp.php:86 #: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 msgid "Usuario de acceso" msgstr "Access user" #: ../../../modules/api/Controllers/Help/AccountHelp.php:87 #: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:136 msgid "URL o IP de acceso" msgstr "Access URL or IP" #: ../../../modules/api/Controllers/Help/AccountHelp.php:88 #: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:134 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 msgid "Notas sobre la cuenta" msgstr "Notes about the account" #: ../../../modules/api/Controllers/Help/AccountHelp.php:89 #: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:198 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 msgid "Cuenta Privada" msgstr "Private Account" #: ../../../modules/api/Controllers/Help/AccountHelp.php:90 #: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:217 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 msgid "Cuenta Privada Grupo" msgstr "Private Account for Group" #: ../../../modules/api/Controllers/Help/AccountHelp.php:92 #: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:252 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:254 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:13 msgid "Cuenta Vinculada" msgstr "Linked Account" @@ -2597,7 +2590,7 @@ msgstr "Group Id" #: ../../../modules/api/Controllers/Help/ClientHelp.php:81 #: ../../../modules/api/Controllers/Help/TagHelp.php:77 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 msgid "Texto a buscar" msgstr "Text to search" @@ -2627,34 +2620,34 @@ msgstr "Filtering operator" #: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 #: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:29 msgid "Nombre de la categoría" msgstr "Category name" #: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 #: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:41 msgid "Descripción de la categoría" msgstr "Category description" #: ../../../modules/api/Controllers/Help/ClientHelp.php:54 #: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:30 msgid "Nombre del cliente" msgstr "Client name" #: ../../../modules/api/Controllers/Help/ClientHelp.php:55 #: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:43 msgid "Descripción del cliente" msgstr "Client description" #: ../../../modules/api/Controllers/Help/ClientHelp.php:56 #: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:99 msgid "Global" msgstr "Global" @@ -2666,19 +2659,19 @@ msgstr "Tag Id" #: ../../../modules/api/Controllers/Help/TagHelp.php:54 #: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:29 msgid "Nombre de la etiqueta" msgstr "Tag name" #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:31 msgid "Nombre del grupo" msgstr "Group name" #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:44 msgid "Descripción del grupo" msgstr "Group description" @@ -2693,19 +2686,19 @@ msgstr "Tag displayed" #: ../../../modules/api/Controllers/TagController.php:89 #: ../../../modules/api/Controllers/TagController.php:94 -#: ../../../modules/web/Controllers/TagController.php:234 +#: ../../../modules/web/Controllers/TagController.php:243 msgid "Etiqueta creada" msgstr "Tag added" #: ../../../modules/api/Controllers/TagController.php:118 #: ../../../modules/api/Controllers/TagController.php:123 -#: ../../../modules/web/Controllers/TagController.php:265 +#: ../../../modules/web/Controllers/TagController.php:276 msgid "Etiqueta actualizada" msgstr "Tag updated" #: ../../../modules/api/Controllers/TagController.php:147 #: ../../../modules/api/Controllers/TagController.php:152 -#: ../../../modules/web/Controllers/TagController.php:208 +#: ../../../modules/web/Controllers/TagController.php:215 msgid "Etiqueta eliminada" msgstr "Tag removed" @@ -2715,22 +2708,22 @@ msgstr "Group viewed" #: ../../../modules/api/Controllers/UserGroupController.php:91 #: ../../../modules/api/Controllers/UserGroupController.php:96 -#: ../../../modules/web/Controllers/UserGroupController.php:264 -#: ../../../modules/web/Controllers/UserGroupController.php:268 +#: ../../../modules/web/Controllers/UserGroupController.php:273 +#: ../../../modules/web/Controllers/UserGroupController.php:277 msgid "Grupo creado" msgstr "Group added" #: ../../../modules/api/Controllers/UserGroupController.php:122 #: ../../../modules/api/Controllers/UserGroupController.php:127 -#: ../../../modules/web/Controllers/UserGroupController.php:303 -#: ../../../modules/web/Controllers/UserGroupController.php:307 +#: ../../../modules/web/Controllers/UserGroupController.php:314 +#: ../../../modules/web/Controllers/UserGroupController.php:318 msgid "Grupo actualizado" msgstr "Group updated" #: ../../../modules/api/Controllers/UserGroupController.php:151 #: ../../../modules/api/Controllers/UserGroupController.php:156 -#: ../../../modules/web/Controllers/UserGroupController.php:230 -#: ../../../modules/web/Controllers/UserGroupController.php:234 +#: ../../../modules/web/Controllers/UserGroupController.php:237 +#: ../../../modules/web/Controllers/UserGroupController.php:241 msgid "Grupo eliminado" msgstr "Group deleted" @@ -2738,135 +2731,140 @@ msgstr "Group deleted" msgid "Es necesario actualizar" msgstr "Updating needed" -#: ../../../modules/web/Controllers/AccountController.php:150 -#: ../../../modules/web/Controllers/AccountController.php:205 -#: ../../../modules/web/Controllers/AccountController.php:475 +#: ../../../modules/web/Controllers/AccountController.php:149 +#: ../../../modules/web/Controllers/AccountController.php:204 +#: ../../../modules/web/Controllers/AccountController.php:489 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:56 msgid "Detalles de Cuenta" msgstr "Account Details" -#: ../../../modules/web/Controllers/AccountController.php:224 +#: ../../../modules/web/Controllers/AccountController.php:225 msgid "Enlace visualizado" msgstr "Link viewed" -#: ../../../modules/web/Controllers/AccountController.php:225 -#: ../../../modules/web/Controllers/AccountController.php:556 -#: ../../../modules/web/Controllers/AccountController.php:612 -#: ../../../modules/web/Controllers/AccountController.php:651 -#: ../../../modules/web/Controllers/AccountController.php:685 -#: ../../../modules/web/Controllers/AccountController.php:720 -#: ../../../modules/web/Controllers/AccountController.php:765 -#: ../../../modules/web/Controllers/AccountController.php:806 -#: ../../../modules/web/Controllers/AccountController.php:845 -#: ../../../modules/web/Controllers/AccountController.php:895 -#: ../../../modules/web/Controllers/AccountController.php:929 -#: ../../../modules/web/Controllers/AccountFileController.php:233 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:146 -#: ../../../modules/web/Controllers/AccountManagerController.php:146 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 +#: ../../../modules/web/Controllers/AccountController.php:226 +#: ../../../modules/web/Controllers/AccountController.php:574 +#: ../../../modules/web/Controllers/AccountController.php:632 +#: ../../../modules/web/Controllers/AccountController.php:674 +#: ../../../modules/web/Controllers/AccountController.php:711 +#: ../../../modules/web/Controllers/AccountController.php:748 +#: ../../../modules/web/Controllers/AccountController.php:795 +#: ../../../modules/web/Controllers/AccountController.php:838 +#: ../../../modules/web/Controllers/AccountController.php:879 +#: ../../../modules/web/Controllers/AccountController.php:931 +#: ../../../modules/web/Controllers/AccountController.php:967 +#: ../../../modules/web/Controllers/AccountFileController.php:258 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:120 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:157 +#: ../../../modules/web/Controllers/AccountManagerController.php:150 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:25 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:30 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:23 msgid "Cuenta" msgstr "Account" -#: ../../../modules/web/Controllers/AccountController.php:227 +#: ../../../modules/web/Controllers/AccountController.php:228 msgid "Agente" msgstr "Agent" -#: ../../../modules/web/Controllers/AccountController.php:228 +#: ../../../modules/web/Controllers/AccountController.php:229 msgid "HTTPS" msgstr "HTTPS" +#: ../../../modules/web/Controllers/AccountController.php:230 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 +msgid "IP" +msgstr "IP" + #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:257 -#: ../../../modules/web/Controllers/AccountController.php:301 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:279 +#: ../../../modules/web/Controllers/AccountController.php:261 +#: ../../../modules/web/Controllers/AccountController.php:307 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:275 #: ../../../config/actions.xml:157 msgid "Nueva Cuenta" msgstr "New Account" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:345 +#: ../../../modules/web/Controllers/AccountController.php:353 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 #: ../../../config/actions.xml:163 msgid "Editar Cuenta" msgstr "Edit Account" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:390 +#: ../../../modules/web/Controllers/AccountController.php:400 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 #: ../../../config/actions.xml:169 ../../../config/actions.xml:487 #: ../../../config/actions.xml:793 msgid "Eliminar Cuenta" msgstr "Remove Account" -#: ../../../modules/web/Controllers/AccountController.php:433 +#: ../../../modules/web/Controllers/AccountController.php:445 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 msgid "Modificar Clave de Cuenta" msgstr "Edit Account Password" -#: ../../../modules/web/Controllers/AccountController.php:650 -#: ../../../modules/web/Controllers/AccountController.php:684 +#: ../../../modules/web/Controllers/AccountController.php:673 +#: ../../../modules/web/Controllers/AccountController.php:710 msgid "Clave copiada" msgstr "Password copied" -#: ../../../modules/web/Controllers/AccountController.php:844 -#: ../../../modules/web/Controllers/AccountController.php:855 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:145 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:150 +#: ../../../modules/web/Controllers/AccountController.php:878 +#: ../../../modules/web/Controllers/AccountController.php:889 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:156 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:161 msgid "Cuenta restaurada" msgstr "Account restored" -#: ../../../modules/web/Controllers/AccountController.php:880 -#: ../../../modules/web/Controllers/AccountController.php:883 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:99 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:102 -#: ../../../modules/web/Controllers/AccountManagerController.php:131 -#: ../../../modules/web/Controllers/AccountManagerController.php:134 +#: ../../../modules/web/Controllers/AccountController.php:916 +#: ../../../modules/web/Controllers/AccountController.php:919 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:108 +#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 +#: ../../../modules/web/Controllers/AccountManagerController.php:135 +#: ../../../modules/web/Controllers/AccountManagerController.php:138 msgid "Cuentas eliminadas" msgstr "Accounts removed" -#: ../../../modules/web/Controllers/AccountController.php:920 +#: ../../../modules/web/Controllers/AccountController.php:958 #: ../../../modules/web/Forms/NotificationForm.php:106 msgid "Es necesaria una descripción" msgstr "A description is needed" -#: ../../../modules/web/Controllers/AccountController.php:928 +#: ../../../modules/web/Controllers/AccountController.php:966 msgid "Solicitante" msgstr "Requester" -#: ../../../modules/web/Controllers/AccountController.php:931 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/AccountController.php:969 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:37 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 msgid "Descripción" msgstr "Description" -#: ../../../modules/web/Controllers/AccountController.php:944 +#: ../../../modules/web/Controllers/AccountController.php:982 msgid "Solicitud realizada" msgstr "Request done" @@ -2878,215 +2876,219 @@ msgstr "Favorite added" msgid "Favorito eliminado" msgstr "Favorite deleted" -#: ../../../modules/web/Controllers/AccountFileController.php:70 -#: ../../../modules/web/Controllers/AccountFileController.php:122 +#: ../../../modules/web/Controllers/AccountFileController.php:74 +#: ../../../modules/web/Controllers/AccountFileController.php:135 msgid "El archivo no existe" msgstr "The file does not exist" -#: ../../../modules/web/Controllers/AccountFileController.php:83 -#: ../../../modules/web/Controllers/AccountFileController.php:96 +#: ../../../modules/web/Controllers/AccountFileController.php:87 +#: ../../../modules/web/Controllers/AccountFileController.php:103 msgid "Archivo visualizado" msgstr "File viewed" -#: ../../../modules/web/Controllers/AccountFileController.php:108 +#: ../../../modules/web/Controllers/AccountFileController.php:115 #: ../../../config/strings.js.inc:40 msgid "Archivo no soportado para visualizar" msgstr "File not supported for preview" -#: ../../../modules/web/Controllers/AccountFileController.php:136 +#: ../../../modules/web/Controllers/AccountFileController.php:140 +#: ../../../modules/web/Controllers/ConfigBackupController.php:164 +#: ../../../modules/web/Controllers/ConfigBackupController.php:206 +#: ../../../modules/web/Controllers/ConfigBackupController.php:248 +#: ../../../config/strings.js.inc:97 msgid "Archivo descargado" msgstr "File downloaded" -#: ../../../modules/web/Controllers/AccountFileController.php:161 +#: ../../../modules/web/Controllers/AccountFileController.php:186 msgid "CONSULTA INVÁLIDA" msgstr "INVALID QUERY" -#: ../../../modules/web/Controllers/AccountFileController.php:167 +#: ../../../modules/web/Controllers/AccountFileController.php:192 msgid "No hay extensiones permitidas" msgstr "There aren't any allowed extensions" -#: ../../../modules/web/Controllers/AccountFileController.php:186 +#: ../../../modules/web/Controllers/AccountFileController.php:211 #, php-format msgid "Extensión: %s" msgstr "Extension: %s" -#: ../../../modules/web/Controllers/AccountFileController.php:191 +#: ../../../modules/web/Controllers/AccountFileController.php:216 msgid "Archivo inválido" msgstr "Invalid file" -#: ../../../modules/web/Controllers/AccountFileController.php:193 +#: ../../../modules/web/Controllers/AccountFileController.php:218 #, php-format msgid "Archivo: %s" msgstr "File: %s" -#: ../../../modules/web/Controllers/AccountFileController.php:201 +#: ../../../modules/web/Controllers/AccountFileController.php:226 #, php-format msgid "Máximo tamaño: %s" msgstr "Maximum size: %s" -#: ../../../modules/web/Controllers/AccountFileController.php:209 +#: ../../../modules/web/Controllers/AccountFileController.php:234 msgid "Tamaño de archivo superado" msgstr "File size exceeded" -#: ../../../modules/web/Controllers/AccountFileController.php:211 +#: ../../../modules/web/Controllers/AccountFileController.php:236 #, php-format msgid "Máximo tamaño: %d KB" msgstr "Maximum size: %d KB" -#: ../../../modules/web/Controllers/AccountFileController.php:231 -#: ../../../modules/web/Controllers/AccountFileController.php:240 +#: ../../../modules/web/Controllers/AccountFileController.php:256 +#: ../../../modules/web/Controllers/AccountFileController.php:265 msgid "Archivo guardado" msgstr "File saved" -#: ../../../modules/web/Controllers/AccountFileController.php:236 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/AccountFileController.php:261 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:110 msgid "Tamaño" msgstr "Size" -#: ../../../modules/web/Controllers/AccountFileController.php:320 -#: ../../../modules/web/Controllers/AccountFileController.php:323 +#: ../../../modules/web/Controllers/AccountFileController.php:355 +#: ../../../modules/web/Controllers/AccountFileController.php:358 msgid "Archivos eliminados" msgstr "Files deleted" -#: ../../../modules/web/Controllers/AccountFileController.php:328 +#: ../../../modules/web/Controllers/AccountFileController.php:363 msgid "Archivo eliminado" msgstr "File deleted" -#: ../../../modules/web/Controllers/AccountFileController.php:334 +#: ../../../modules/web/Controllers/AccountFileController.php:369 msgid "Archivo Eliminado" msgstr "File Deleted" -#: ../../../modules/web/Controllers/AccountFileController.php:370 +#: ../../../modules/web/Controllers/AccountFileController.php:405 msgid "Gestión de archivos deshabilitada" msgstr "Files management disabled" -#: ../../../modules/web/Controllers/AccountFileController.php:387 +#: ../../../modules/web/Controllers/AccountFileController.php:424 msgid "No hay archivos asociados a la cuenta" msgstr "There are no linked files for the account" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 +#: ../../../modules/web/Controllers/AccountManagerController.php:216 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 #: ../../../config/actions.xml:493 msgid "Actualización Masiva" msgstr "Bulk Update" -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 +#: ../../../modules/web/Controllers/AuthTokenController.php:114 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 msgid "Nueva Autorización" msgstr "New Authorization" -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 +#: ../../../modules/web/Controllers/AuthTokenController.php:179 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 msgid "Editar Autorización" msgstr "Edit Authorization" -#: ../../../modules/web/Controllers/AuthTokenController.php:212 -#: ../../../modules/web/Controllers/AuthTokenController.php:215 +#: ../../../modules/web/Controllers/AuthTokenController.php:220 +#: ../../../modules/web/Controllers/AuthTokenController.php:223 msgid "Autorizaciones eliminadas" msgstr "Authorizations deleted" -#: ../../../modules/web/Controllers/AuthTokenController.php:225 -#: ../../../modules/web/Controllers/AuthTokenController.php:229 +#: ../../../modules/web/Controllers/AuthTokenController.php:233 +#: ../../../modules/web/Controllers/AuthTokenController.php:237 msgid "Autorización eliminada" msgstr "Authorization deleted" -#: ../../../modules/web/Controllers/AuthTokenController.php:258 +#: ../../../modules/web/Controllers/AuthTokenController.php:269 msgid "Autorización creada" msgstr "Authorization added" -#: ../../../modules/web/Controllers/AuthTokenController.php:330 +#: ../../../modules/web/Controllers/AuthTokenController.php:347 msgid "Ver Autorización" msgstr "View Authorization" -#: ../../../modules/web/Controllers/AuthTokenController.php:338 +#: ../../../modules/web/Controllers/AuthTokenController.php:355 msgid "Autorización visualizada" msgstr "Authorization viewed" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 +#: ../../../modules/web/Controllers/CategoryController.php:109 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:118 #: ../../../config/actions.xml:307 msgid "Nueva Categoría" msgstr "New Category" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 +#: ../../../modules/web/Controllers/CategoryController.php:173 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 #: ../../../config/actions.xml:313 msgid "Editar Categoría" msgstr "Edit Category" -#: ../../../modules/web/Controllers/CategoryController.php:206 -#: ../../../modules/web/Controllers/CategoryController.php:209 +#: ../../../modules/web/Controllers/CategoryController.php:214 +#: ../../../modules/web/Controllers/CategoryController.php:217 msgid "Categorías eliminadas" msgstr "Categories deleted" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 +#: ../../../modules/web/Controllers/CategoryController.php:335 #: ../../../config/actions.xml:301 msgid "Ver Categoría" msgstr "View Category" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 +#: ../../../modules/web/Controllers/ClientController.php:110 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:93 #: ../../../config/actions.xml:337 msgid "Nuevo Cliente" msgstr "New Client" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 +#: ../../../modules/web/Controllers/ClientController.php:174 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 #: ../../../config/actions.xml:343 msgid "Editar Cliente" msgstr "Edit Client" -#: ../../../modules/web/Controllers/ClientController.php:201 -#: ../../../modules/web/Controllers/ClientController.php:204 +#: ../../../modules/web/Controllers/ClientController.php:213 +#: ../../../modules/web/Controllers/ClientController.php:216 msgid "Clientes eliminados" msgstr "Clients deleted" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 +#: ../../../modules/web/Controllers/ClientController.php:326 #: ../../../config/actions.xml:331 msgid "Ver Cliente" msgstr "View Client" -#: ../../../modules/web/Controllers/ConfigAccountController.php:70 +#: ../../../modules/web/Controllers/ConfigAccountController.php:74 msgid "El tamaño máximo por archivo es de 16MB" msgstr "The maximum size per file is 16MB" -#: ../../../modules/web/Controllers/ConfigAccountController.php:78 +#: ../../../modules/web/Controllers/ConfigAccountController.php:82 msgid "Archivos habilitados" msgstr "Files enabled" -#: ../../../modules/web/Controllers/ConfigAccountController.php:83 +#: ../../../modules/web/Controllers/ConfigAccountController.php:87 msgid "Archivos deshabilitados" msgstr "Files disabled" -#: ../../../modules/web/Controllers/ConfigAccountController.php:96 +#: ../../../modules/web/Controllers/ConfigAccountController.php:100 msgid "Enlaces públicos habilitados" msgstr "Public links enabled" -#: ../../../modules/web/Controllers/ConfigAccountController.php:101 +#: ../../../modules/web/Controllers/ConfigAccountController.php:105 msgid "Enlaces públicos deshabilitados" msgstr "Public links disabled" -#: ../../../modules/web/Controllers/ConfigBackupController.php:53 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:92 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:151 -#: ../../../modules/web/Controllers/ConfigImportController.php:56 -#: ../../../modules/web/Controllers/ConfigLdapController.php:218 +#: ../../../modules/web/Controllers/ConfigBackupController.php:59 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:97 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 +#: ../../../modules/web/Controllers/ConfigImportController.php:59 +#: ../../../modules/web/Controllers/ConfigLdapController.php:226 #: ../../../modules/web/Controllers/Traits/ConfigTrait.php:55 #: ../../../modules/web/Forms/UserForm.php:131 #: ../../../modules/web/Forms/UserForm.php:153 @@ -3094,327 +3096,321 @@ msgstr "Public links disabled" msgid "Ey, esto es una DEMO!!" msgstr "Ey, this is a DEMO!!" -#: ../../../modules/web/Controllers/ConfigBackupController.php:86 -#: ../../../modules/web/Controllers/UserPassResetController.php:176 +#: ../../../modules/web/Controllers/ConfigBackupController.php:92 +#: ../../../modules/web/Controllers/UserPassResetController.php:183 #: ../../../modules/web/Forms/AccountForm.php:135 #: ../../../modules/web/Forms/UserForm.php:161 msgid "Las claves no coinciden" msgstr "The passwords do not match" -#: ../../../modules/web/Controllers/ConfigBackupController.php:117 +#: ../../../modules/web/Controllers/ConfigBackupController.php:123 msgid "Verificación de datos exportados finalizada" msgstr "Verification of exported data finished" -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 +#: ../../../modules/web/Controllers/ConfigBackupController.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 msgid "Encriptado" msgstr "Encrypted" -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 +#: ../../../modules/web/Controllers/ConfigBackupController.php:125 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 msgid "Sí" msgstr "Yes" -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 +#: ../../../modules/web/Controllers/ConfigBackupController.php:125 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 msgid "No" msgstr "No" -#: ../../../modules/web/Controllers/ConfigBackupController.php:123 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 +#: ../../../modules/web/Controllers/ConfigBackupController.php:129 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:211 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 msgid "Etiquetas" msgstr "Tags" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:72 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:77 msgid "Clave maestra no indicada" msgstr "Master password needed" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:76 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:81 msgid "Se ha de confirmar el cambio de clave" msgstr "The password update must be confirmed" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:80 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:85 msgid "Las claves son idénticas" msgstr "The passwords are the same" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:84 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:89 msgid "Las claves maestras no coinciden" msgstr "The master passwords do not match" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:88 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:93 msgid "La clave maestra actual no coincide" msgstr "The current master password does not match" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:138 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:143 msgid "Error al guardar el hash de la clave maestra" msgstr "Error while saving the Master Password's hash" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:161 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:166 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 msgid "Hash de clave maestra actualizado" msgstr "Master password hash updated" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:175 msgid "Error al actualizar el hash de la clave maestra" msgstr "Error while updating the master password hash" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:200 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:199 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:205 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:209 msgid "Clave Temporal Generada" msgstr "Temporary Password Generated" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:199 msgid "Email enviado" msgstr "Email sent" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 +#: ../../../modules/web/Controllers/ConfigEncryptionController.php:205 msgid "Error al enviar email" msgstr "Error while sending the email" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:89 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:93 msgid "Faltan parámetros de syslog remoto" msgstr "Missing remote syslog parameters" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:97 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:101 msgid "Syslog remoto habilitado" msgstr "Remote syslog enabled" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:102 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:106 msgid "Syslog remoto deshabilitado" msgstr "Remote syslog disabled" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:115 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:119 msgid "Faltan parámetros de Proxy" msgstr "Missing Proxy parameters " -#: ../../../modules/web/Controllers/ConfigGeneralController.php:129 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:133 msgid "Proxy habiltado" msgstr "Proxy enabled" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:134 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:138 msgid "Proxy deshabilitado" msgstr "Proxy disabled" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:153 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:157 msgid "Auth Basic habilitada" msgstr "Auth Basic enabled" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:159 +#: ../../../modules/web/Controllers/ConfigGeneralController.php:163 msgid "Auth Basic deshabiltada" msgstr "Auth Basic disabled" -#: ../../../modules/web/Controllers/ConfigImportController.php:76 +#: ../../../modules/web/Controllers/ConfigImportController.php:78 msgid "Cuentas importadas" msgstr "Accounts imported" -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigLdapController.php:260 +#: ../../../modules/web/Controllers/ConfigImportController.php:82 +#: ../../../modules/web/Controllers/ConfigLdapController.php:268 msgid "Importación finalizada" msgstr "Import finished" -#: ../../../modules/web/Controllers/ConfigImportController.php:83 +#: ../../../modules/web/Controllers/ConfigImportController.php:85 msgid "No se importaron cuentas" msgstr "No accounts were imported" -#: ../../../modules/web/Controllers/ConfigLdapController.php:69 -#: ../../../modules/web/Controllers/ConfigLdapController.php:139 -#: ../../../modules/web/Controllers/ConfigLdapController.php:175 +#: ../../../modules/web/Controllers/ConfigLdapController.php:71 +#: ../../../modules/web/Controllers/ConfigLdapController.php:143 +#: ../../../modules/web/Controllers/ConfigLdapController.php:181 msgid "Faltan parámetros de LDAP" msgstr "Missing LDAP parameters" -#: ../../../modules/web/Controllers/ConfigLdapController.php:88 +#: ../../../modules/web/Controllers/ConfigLdapController.php:90 msgid "LDAP habiltado" msgstr "LDAP enabled" -#: ../../../modules/web/Controllers/ConfigLdapController.php:93 +#: ../../../modules/web/Controllers/ConfigLdapController.php:95 msgid "LDAP deshabilitado" msgstr "LDAP disabled" -#: ../../../modules/web/Controllers/ConfigLdapController.php:95 -#: ../../../modules/web/Controllers/ConfigMailController.php:102 +#: ../../../modules/web/Controllers/ConfigLdapController.php:97 +#: ../../../modules/web/Controllers/ConfigMailController.php:106 #: ../../../config/strings.js.inc:80 msgid "Sin cambios" msgstr "No changes" -#: ../../../modules/web/Controllers/ConfigLdapController.php:115 -#: ../../../modules/web/Controllers/ConfigLdapController.php:238 +#: ../../../modules/web/Controllers/ConfigLdapController.php:117 +#: ../../../modules/web/Controllers/ConfigLdapController.php:246 msgid "Parámetros de LDAP incorrectos" msgstr "Wrong LDAP parameters" -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 +#: ../../../modules/web/Controllers/ConfigLdapController.php:153 +#: ../../../modules/web/Controllers/ConfigLdapController.php:197 msgid "Resultados" msgstr "Results" -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 +#: ../../../modules/web/Controllers/ConfigLdapController.php:159 +#: ../../../modules/web/Controllers/ConfigLdapController.php:204 #, php-format msgid "Objetos encontrados: %d" msgstr "Objects found: %d" -#: ../../../modules/web/Controllers/ConfigLdapController.php:245 +#: ../../../modules/web/Controllers/ConfigLdapController.php:253 msgid "Importación LDAP" msgstr "LDAP Import" -#: ../../../modules/web/Controllers/ConfigLdapController.php:264 +#: ../../../modules/web/Controllers/ConfigLdapController.php:272 msgid "No se encontraron objetos para sincronizar" msgstr "There aren't any objects to synchronize" -#: ../../../modules/web/Controllers/ConfigLdapController.php:269 +#: ../../../modules/web/Controllers/ConfigLdapController.php:277 msgid "Importación de usuarios de LDAP realizada" msgstr "LDAP users import finished" -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 +#: ../../../modules/web/Controllers/ConfigLdapController.php:279 #, php-format msgid "Usuarios importados: %d / %d" msgstr "Imported users: %d / %d" -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 +#: ../../../modules/web/Controllers/ConfigLdapController.php:280 #, php-format msgid "Errores: %d" msgstr "Errors: %d" -#: ../../../modules/web/Controllers/ConfigMailController.php:68 -#: ../../../modules/web/Controllers/ConfigMailController.php:125 +#: ../../../modules/web/Controllers/ConfigMailController.php:72 +#: ../../../modules/web/Controllers/ConfigMailController.php:133 msgid "Faltan parámetros de Correo" msgstr "Missing Mail parameters" -#: ../../../modules/web/Controllers/ConfigMailController.php:93 +#: ../../../modules/web/Controllers/ConfigMailController.php:97 msgid "Correo habiltado" msgstr "Mail enabled" -#: ../../../modules/web/Controllers/ConfigMailController.php:100 +#: ../../../modules/web/Controllers/ConfigMailController.php:104 msgid "Correo deshabilitado" msgstr "Mail disabled" -#: ../../../modules/web/Controllers/ConfigMailController.php:145 +#: ../../../modules/web/Controllers/ConfigMailController.php:153 msgid "Compruebe su buzón de correo" msgstr "Please, check your inbox" -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 +#: ../../../modules/web/Controllers/ConfigManagerController.php:161 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 msgid "General" msgstr "General" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 +#: ../../../modules/web/Controllers/ConfigManagerController.php:190 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:29 #: ../../../config/actions.xml:37 msgid "Wiki" msgstr "Wiki" -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 +#: ../../../modules/web/Controllers/ConfigManagerController.php:209 msgid "LDAP" msgstr "LDAP" -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 +#: ../../../modules/web/Controllers/ConfigManagerController.php:235 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:12 msgid "Correo" msgstr "Mail" -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 +#: ../../../modules/web/Controllers/ConfigManagerController.php:274 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 msgid "Encriptación" msgstr "Encryption" -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Last backup" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 +#: ../../../modules/web/Controllers/ConfigManagerController.php:302 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:61 msgid "No se encontraron backups" msgstr "There aren't any backups available" -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "Última exportación" -msgstr "Last export" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 +#: ../../../modules/web/Controllers/ConfigManagerController.php:312 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 msgid "No se encontró archivo de exportación" msgstr "No export file found" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 +#: ../../../modules/web/Controllers/ConfigManagerController.php:315 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:78 #: ../../../config/actions.xml:733 msgid "Copia de Seguridad" msgstr "Backup" -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 +#: ../../../modules/web/Controllers/ConfigManagerController.php:332 msgid "Importar Cuentas" msgstr "Import Accounts" -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 +#: ../../../modules/web/Controllers/ConfigManagerController.php:352 msgid "No instalado" msgstr "Not installed" -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 +#: ../../../modules/web/Controllers/ConfigManagerController.php:357 #: ../../../modules/web/themes/material-blue/inc/Icons.php:63 msgid "Información" msgstr "Information" -#: ../../../modules/web/Controllers/ConfigWikiController.php:59 +#: ../../../modules/web/Controllers/ConfigWikiController.php:63 msgid "Faltan parámetros de Wiki" msgstr "Missing Wiki parameters" -#: ../../../modules/web/Controllers/ConfigWikiController.php:69 +#: ../../../modules/web/Controllers/ConfigWikiController.php:73 msgid "Wiki habiltada" msgstr "Wiki enabled" -#: ../../../modules/web/Controllers/ConfigWikiController.php:74 +#: ../../../modules/web/Controllers/ConfigWikiController.php:78 msgid "Wiki deshabilitada" msgstr "Wiki disabled" -#: ../../../modules/web/Controllers/ConfigWikiController.php:87 +#: ../../../modules/web/Controllers/ConfigWikiController.php:91 msgid "Faltan parámetros de DokuWiki" msgstr "Missing DokuWiki parameters" -#: ../../../modules/web/Controllers/ConfigWikiController.php:99 +#: ../../../modules/web/Controllers/ConfigWikiController.php:103 msgid "DokuWiki habilitada" msgstr "DokuWiki enabled" -#: ../../../modules/web/Controllers/ConfigWikiController.php:104 +#: ../../../modules/web/Controllers/ConfigWikiController.php:108 msgid "DokuWiki deshabilitada" msgstr "DokuWiki disabled" -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 +#: ../../../modules/web/Controllers/CustomFieldController.php:111 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 msgid "Nuevo Campo" msgstr "New Field" -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 +#: ../../../modules/web/Controllers/CustomFieldController.php:173 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 msgid "Editar Campo" msgstr "Edit Field" -#: ../../../modules/web/Controllers/CustomFieldController.php:197 -#: ../../../modules/web/Controllers/CustomFieldController.php:200 +#: ../../../modules/web/Controllers/CustomFieldController.php:209 +#: ../../../modules/web/Controllers/CustomFieldController.php:212 msgid "Campos eliminados" msgstr "Fields deleted" -#: ../../../modules/web/Controllers/CustomFieldController.php:206 +#: ../../../modules/web/Controllers/CustomFieldController.php:218 msgid "Campo eliminado" msgstr "Field deleted" -#: ../../../modules/web/Controllers/CustomFieldController.php:234 -#: ../../../modules/web/Controllers/CustomFieldController.php:238 +#: ../../../modules/web/Controllers/CustomFieldController.php:248 +#: ../../../modules/web/Controllers/CustomFieldController.php:252 msgid "Campo creado" msgstr "Field added" -#: ../../../modules/web/Controllers/CustomFieldController.php:298 +#: ../../../modules/web/Controllers/CustomFieldController.php:317 msgid "Ver Campo" msgstr "View Field" @@ -3430,8 +3426,8 @@ msgstr "It will be running shortly" msgid "Error en la verificación de la base de datos" msgstr "Error while checking the database" -#: ../../../modules/web/Controllers/EventlogController.php:119 -#: ../../../modules/web/Controllers/EventlogController.php:122 +#: ../../../modules/web/Controllers/EventlogController.php:127 +#: ../../../modules/web/Controllers/EventlogController.php:130 msgid "Registro de eventos vaciado" msgstr "Event log cleared" @@ -3442,19 +3438,19 @@ msgstr "View Current" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:360 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:310 +#: ../../../modules/web/themes/material-blue/views/config/general.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:295 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:440 #: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:184 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:294 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:194 msgid "Atrás" msgstr "Back" @@ -3471,7 +3467,7 @@ msgstr "Restore account from this point" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 #: ../../../modules/web/themes/material-blue/inc/Icons.php:51 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:130 msgid "Guardar" msgstr "Save" @@ -3502,7 +3498,7 @@ msgstr "Create Public Link" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 #: ../../../modules/web/themes/material-blue/inc/Icons.php:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 #: ../../../config/actions.xml:175 ../../../config/actions.xml:265 msgid "Ver Clave" msgstr "View password" @@ -3521,7 +3517,7 @@ msgstr "Copy Password to Clipboard" msgid "Copiar Cuenta" msgstr "Copy Account" -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 #: ../../../config/strings.js.inc:72 msgid "Clave de Cuenta" msgstr "Account Password" @@ -3548,13 +3544,13 @@ msgid "Ordenar por Usuario" msgstr "Sort by Username" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:56 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:62 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:128 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:79 msgid "URL / IP" msgstr "URL / IP" @@ -3562,8 +3558,8 @@ msgstr "URL / IP" msgid "Ordenar por URL / IP" msgstr "Sort by URL / IP" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 @@ -3576,8 +3572,8 @@ msgstr "Sort by URL / IP" #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 #: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 @@ -3593,145 +3589,145 @@ msgstr "Sort by URL / IP" msgid "Eliminar Seleccionados" msgstr "Delete Selected" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:158 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:42 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:44 msgid "Propietario" msgstr "Owner" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:175 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:50 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:52 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 msgid "Grupo Principal" msgstr "Main Group" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 #: ../../../config/actions.xml:499 ../../../config/actions.xml:799 msgid "Buscar Cuenta" msgstr "Search for Account" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 msgid "Cuentas (H)" msgstr "Accounts (H)" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:122 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:55 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:38 msgid "Fecha" msgstr "Date" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:126 #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 msgid "Estado" msgstr "Status" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 msgid "Modificada" msgstr "Modified" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 msgid "Eliminada" msgstr "Removed" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 #: ../../../config/actions.xml:187 ../../../config/actions.xml:805 msgid "Restaurar Cuenta" msgstr "Account Restore" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 msgid "Autorizaciones API" msgstr "API Authorizations" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 msgid "Buscar Token" msgstr "Search for Token" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 msgid "Ver token de Autorización" msgstr "View Authorization token" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 msgid "Eliminar Autorización" msgstr "Delete Authorization" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 #: ../../../config/actions.xml:325 msgid "Buscar Categoría" msgstr "Search for Category" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 #: ../../../config/actions.xml:319 msgid "Eliminar Categoría" msgstr "Delete Category" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 #: ../../../config/strings.js.inc:66 msgid "SI" msgstr "YES" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 #: ../../../config/strings.js.inc:67 msgid "NO" msgstr "NO" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 #: ../../../config/actions.xml:355 msgid "Buscar Cliente" msgstr "Search for Client" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 #: ../../../config/actions.xml:349 msgid "Eliminar Cliente" msgstr "Delete Client" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 msgid "Campos Personalizados" msgstr "Custom Fields" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 msgid "Módulo" msgstr "Module" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:120 msgid "Propiedades" msgstr "Properties" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 msgid "Buscar Campo" msgstr "Search for Field" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 msgid "Eliminar Campo" msgstr "Delete Field" @@ -3743,11 +3739,11 @@ msgid "Registro de Eventos" msgstr "Event Log" #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/Controllers/ItemPresetController.php:278 -#: ../../../modules/web/Controllers/ItemPresetController.php:311 -#: ../../../modules/web/Controllers/ItemPresetController.php:350 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 +#: ../../../modules/web/Controllers/ItemPresetController.php:289 +#: ../../../modules/web/Controllers/ItemPresetController.php:324 +#: ../../../modules/web/Controllers/ItemPresetController.php:365 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:99 msgid "ID" msgstr "ID" @@ -3764,223 +3760,219 @@ msgid "Evento" msgstr "Event" #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 msgid "Login" msgstr "Login" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 -msgid "IP" -msgstr "IP" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 msgid "Buscar Evento" msgstr "Search for Events" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 msgid "Refrescar" msgstr "Refresh" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:199 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 msgid "Vaciar registro de eventos" msgstr "Clear the event log out" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:280 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 #: ../../../config/actions.xml:19 msgid "Archivos" msgstr "Files" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:145 #: ../../../config/actions.xml:475 msgid "Buscar Archivo" msgstr "Search for File" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:51 #: ../../../config/actions.xml:205 ../../../config/actions.xml:451 msgid "Ver Archivo" msgstr "View File" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:42 #: ../../../config/actions.xml:217 ../../../config/actions.xml:457 msgid "Descargar Archivo" msgstr "Download File" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:34 #: ../../../config/actions.xml:223 ../../../config/actions.xml:463 msgid "Eliminar Archivo" msgstr "Delete File" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 msgid "Valores Predeterminados" msgstr "Preset Values" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/Controllers/UserProfileController.php:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 +#: ../../../modules/web/Controllers/UserProfileController.php:228 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:131 msgid "Perfil" msgstr "Profile" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 msgid "Prioridad" msgstr "Priority" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 msgid "Forzado" msgstr "Forced" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 #: ../../../config/actions.xml:853 msgid "Buscar Valor" msgstr "Search for Value" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 msgid "Valor de Permiso" msgstr "Permission Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 msgid "Nuevo Valor de Permiso" msgstr "New Permission Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 msgid "Valor de Cuenta Privada" msgstr "Private Account Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 msgid "Nuevo Valor de Cuenta Privada" msgstr "New Private Account Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 msgid "Valor de Timeout de Sesión" msgstr "Session Timeout Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 msgid "Nuevo Valor de Timeout de Sesión" msgstr "New Session Timeout Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 msgid "Valor de Clave de Cuentas" msgstr "Account Password Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 msgid "Nuevo Valor de Clave de Cuentas" msgstr "New Account Password Preset" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: ../../../modules/web/Controllers/ItemPresetController.php:239 #: ../../../config/actions.xml:871 msgid "Editar Valor" msgstr "Edit Value" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 #: ../../../config/actions.xml:877 msgid "Eliminar Valor" msgstr "Delete Value" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:109 #: ../../../modules/web/themes/material-blue/inc/Icons.php:65 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:100 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 #: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 #: ../../../config/actions.xml:679 msgid "Notificaciones" msgstr "Notifications" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:42 msgid "Componente" msgstr "Component" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:111 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:115 msgid "Leída" msgstr "Read" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 msgid "Sólo Admins" msgstr "Only Admins" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:164 #: ../../../config/actions.xml:841 msgid "Buscar Notificación" msgstr "Search for Notification" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:183 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:180 +#: ../../../modules/web/Controllers/NotificationController.php:194 msgid "Nueva Notificación" msgstr "New Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:198 +#: ../../../modules/web/Controllers/NotificationController.php:113 #: ../../../config/actions.xml:811 msgid "Ver Notificación" msgstr "View Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:228 #: ../../../config/actions.xml:835 msgid "Marcar Notificación" msgstr "Checkout Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:214 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:246 +#: ../../../modules/web/Controllers/NotificationController.php:226 #: ../../../config/actions.xml:823 msgid "Editar Notificación" msgstr "Edit Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:263 #: ../../../config/actions.xml:829 msgid "Eliminar Notificación" msgstr "Delete Notification" #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:335 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:331 #: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 msgid "Plugins" msgstr "Plugins" @@ -3998,7 +3990,7 @@ msgstr "Search for Plugin" #. (itstool) path: action/text #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:125 +#: ../../../modules/web/Controllers/PluginController.php:136 #: ../../../config/actions.xml:541 msgid "Ver Plugin" msgstr "View Plugin" @@ -4018,91 +4010,91 @@ msgstr "Disable" msgid "Restablecer Datos" msgstr "Reset Data" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:49 msgid "Enlaces" msgstr "Links" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:51 msgid "Fecha Creación" msgstr "Creation Date" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:59 msgid "Fecha Caducidad" msgstr "Expiry Date " -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:43 msgid "Notificar" msgstr "Notify" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:14 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:75 msgid "Visitas" msgstr "Visits" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:149 msgid "Buscar Enlace" msgstr "Search for Link" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:165 msgid "Nuevo Enlace" msgstr "New Link" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:183 +#: ../../../modules/web/Controllers/PublicLinkController.php:357 msgid "Ver Enlace" msgstr "View Link" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:199 msgid "Renovar Enlace" msgstr "Renew Link" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:216 msgid "Eliminar Enlace" msgstr "Delete Link" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:135 #: ../../../config/actions.xml:529 msgid "Buscar Etiqueta" msgstr "Search for Tag" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: ../../../modules/web/Controllers/TagController.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:226 #: ../../../config/actions.xml:505 msgid "Nueva Etiqueta" msgstr "New Tag" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: ../../../modules/web/Controllers/TagController.php:168 #: ../../../config/actions.xml:517 msgid "Editar Etiqueta" msgstr "Edit Tag" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:186 #: ../../../config/actions.xml:523 msgid "Eliminar Etiqueta" msgstr "Delete Tag" @@ -4126,139 +4118,139 @@ msgid "Buscar Track" msgstr "Search for track" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:156 #: ../../../config/actions.xml:601 msgid "Buscar Usuario" msgstr "Search for User" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:172 +#: ../../../modules/web/Controllers/UserController.php:115 #: ../../../config/actions.xml:577 msgid "Nuevo Usuario" msgstr "New User" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:190 +#: ../../../modules/web/Controllers/UserController.php:200 #: ../../../config/actions.xml:583 msgid "Editar Usuario" msgstr "Edit User" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:207 #: ../../../config/actions.xml:589 msgid "Eliminar Usuario" msgstr "Delete User" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:224 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:460 msgid "Importar usuarios de LDAP" msgstr "Import users from LDAP" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:242 msgid "Ver Detalles de Usuario" msgstr "View User Details" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:57 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:259 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 #: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 msgid "Cambiar Clave de Usuario" msgstr "Change User's Password" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 #: ../../../config/actions.xml:631 msgid "Buscar Grupo" msgstr "Search for Group" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: ../../../modules/web/Controllers/UserGroupController.php:117 #: ../../../config/actions.xml:613 msgid "Nuevo Grupo" msgstr "New Group" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: ../../../modules/web/Controllers/UserGroupController.php:344 #: ../../../config/actions.xml:607 msgid "Ver Grupo" msgstr "View Group" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: ../../../modules/web/Controllers/UserGroupController.php:188 #: ../../../config/actions.xml:619 msgid "Editar Grupo" msgstr "Edit Group" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 #: ../../../config/actions.xml:625 msgid "Eliminar Grupo" msgstr "Delete Group" -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 msgid "Perfiles" msgstr "Profiles" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 #: ../../../config/actions.xml:661 msgid "Buscar Perfil" msgstr "Search for Profile" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: ../../../modules/web/Controllers/UserProfileController.php:110 #: ../../../config/actions.xml:643 msgid "Nuevo Perfil" msgstr "New Profile" -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 msgid "Ver Detalles de Perfil" msgstr "View Profile Details" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: ../../../modules/web/Controllers/UserProfileController.php:177 #: ../../../config/actions.xml:649 msgid "Editar Perfil" msgstr "Edit Profile" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 #: ../../../config/actions.xml:655 msgid "Eliminar Perfil" msgstr "Delete Profile" -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:266 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:262 #: ../../../modules/web/themes/material-blue/inc/Icons.php:58 msgid "Buscar" msgstr "Search" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:349 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:345 #: ../../../modules/web/themes/material-blue/inc/Icons.php:61 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 #: ../../../config/actions.xml:685 msgid "Configuración" msgstr "Configuration" @@ -4276,34 +4268,34 @@ msgid "Instalación finalizada" msgstr "Installation finished" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 +#: ../../../modules/web/Controllers/ItemPresetController.php:73 #: ../../../config/actions.xml:859 msgid "Ver Valor" msgstr "Display Value" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 +#: ../../../modules/web/Controllers/ItemPresetController.php:207 #: ../../../config/actions.xml:865 msgid "Nuevo Valor" msgstr "New Value" -#: ../../../modules/web/Controllers/ItemPresetController.php:266 -#: ../../../modules/web/Controllers/ItemPresetController.php:269 +#: ../../../modules/web/Controllers/ItemPresetController.php:277 +#: ../../../modules/web/Controllers/ItemPresetController.php:280 msgid "Valores eliminados" msgstr "Values deleted" -#: ../../../modules/web/Controllers/ItemPresetController.php:277 -#: ../../../modules/web/Controllers/ItemPresetController.php:281 +#: ../../../modules/web/Controllers/ItemPresetController.php:288 +#: ../../../modules/web/Controllers/ItemPresetController.php:292 msgid "Valor eliminado" msgstr "Value deleted" -#: ../../../modules/web/Controllers/ItemPresetController.php:309 -#: ../../../modules/web/Controllers/ItemPresetController.php:314 +#: ../../../modules/web/Controllers/ItemPresetController.php:322 +#: ../../../modules/web/Controllers/ItemPresetController.php:327 msgid "Valor creado" msgstr "Value created" -#: ../../../modules/web/Controllers/ItemPresetController.php:348 -#: ../../../modules/web/Controllers/ItemPresetController.php:353 +#: ../../../modules/web/Controllers/ItemPresetController.php:363 +#: ../../../modules/web/Controllers/ItemPresetController.php:368 msgid "Valor actualizado" msgstr "Value updated" @@ -4316,73 +4308,73 @@ msgstr "There aren't any pending notifications" msgid "Hay notificaciones pendientes: %d" msgstr "There are pending notifications: %d" -#: ../../../modules/web/Controllers/LoginController.php:119 +#: ../../../modules/web/Controllers/LoginController.php:121 msgid "Finalizar sesión" msgstr "Logout session" -#: ../../../modules/web/Controllers/LoginController.php:121 +#: ../../../modules/web/Controllers/LoginController.php:123 msgid "Tiempo inactivo" msgstr "Inactive time" -#: ../../../modules/web/Controllers/LoginController.php:122 +#: ../../../modules/web/Controllers/LoginController.php:124 msgid "Tiempo total" msgstr "Total time" -#: ../../../modules/web/Controllers/NotificationController.php:255 -#: ../../../modules/web/Controllers/NotificationController.php:258 +#: ../../../modules/web/Controllers/NotificationController.php:268 +#: ../../../modules/web/Controllers/NotificationController.php:271 msgid "Notificaciones eliminadas" msgstr "Notifications deleted" -#: ../../../modules/web/Controllers/NotificationController.php:270 -#: ../../../modules/web/Controllers/NotificationController.php:274 +#: ../../../modules/web/Controllers/NotificationController.php:283 +#: ../../../modules/web/Controllers/NotificationController.php:287 msgid "Notificación eliminada" msgstr "Notification deleted" -#: ../../../modules/web/Controllers/NotificationController.php:301 -#: ../../../modules/web/Controllers/NotificationController.php:305 +#: ../../../modules/web/Controllers/NotificationController.php:316 +#: ../../../modules/web/Controllers/NotificationController.php:320 msgid "Notificación leída" msgstr "Notification read" -#: ../../../modules/web/Controllers/NotificationController.php:331 -#: ../../../modules/web/Controllers/NotificationController.php:334 +#: ../../../modules/web/Controllers/NotificationController.php:348 +#: ../../../modules/web/Controllers/NotificationController.php:351 msgid "Notificación creada" msgstr "Notification created" -#: ../../../modules/web/Controllers/NotificationController.php:364 -#: ../../../modules/web/Controllers/NotificationController.php:367 +#: ../../../modules/web/Controllers/NotificationController.php:383 +#: ../../../modules/web/Controllers/NotificationController.php:386 msgid "Notificación actualizada" msgstr "Notification updated" -#: ../../../modules/web/Controllers/PluginController.php:188 -#: ../../../modules/web/Controllers/PluginController.php:191 +#: ../../../modules/web/Controllers/PluginController.php:199 +#: ../../../modules/web/Controllers/PluginController.php:202 msgid "Plugin habilitado" msgstr "Plugin enabled" -#: ../../../modules/web/Controllers/PluginController.php:238 -#: ../../../modules/web/Controllers/PluginController.php:241 +#: ../../../modules/web/Controllers/PluginController.php:253 +#: ../../../modules/web/Controllers/PluginController.php:256 msgid "Plugin restablecido" msgstr "Plugin reset" -#: ../../../modules/web/Controllers/PublicLinkController.php:109 +#: ../../../modules/web/Controllers/PublicLinkController.php:114 msgid "Nuevo Enlace Público" msgstr "New Public Link" -#: ../../../modules/web/Controllers/PublicLinkController.php:196 +#: ../../../modules/web/Controllers/PublicLinkController.php:204 msgid "Editar Enlace Público" msgstr "Edit Public Link" -#: ../../../modules/web/Controllers/PublicLinkController.php:234 -#: ../../../modules/web/Controllers/PublicLinkController.php:237 +#: ../../../modules/web/Controllers/PublicLinkController.php:243 +#: ../../../modules/web/Controllers/PublicLinkController.php:246 msgid "Enlaces eliminados" msgstr "Links deleted" -#: ../../../modules/web/Controllers/PublicLinkController.php:245 -#: ../../../modules/web/Controllers/PublicLinkController.php:249 +#: ../../../modules/web/Controllers/PublicLinkController.php:254 +#: ../../../modules/web/Controllers/PublicLinkController.php:258 msgid "Enlace eliminado" msgstr "Link deleted" -#: ../../../modules/web/Controllers/PublicLinkController.php:275 -#: ../../../modules/web/Controllers/PublicLinkController.php:310 +#: ../../../modules/web/Controllers/PublicLinkController.php:286 +#: ../../../modules/web/Controllers/PublicLinkController.php:323 msgid "Enlace creado" msgstr "Link created" @@ -4394,21 +4386,21 @@ msgstr "Version unavailable" msgid "Notificaciones no disponibles" msgstr "Notifications not available" -#: ../../../modules/web/Controllers/TagController.php:200 +#: ../../../modules/web/Controllers/TagController.php:207 msgid "Etiquetas eliminadas" msgstr "Tags deleted" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 +#: ../../../modules/web/Controllers/TagController.php:302 #: ../../../config/actions.xml:511 msgid "Ver Etiqueta" msgstr "View Tag" -#: ../../../modules/web/Controllers/TrackController.php:110 +#: ../../../modules/web/Controllers/TrackController.php:115 msgid "Track desbloqueado" msgstr "Track unlocked" -#: ../../../modules/web/Controllers/TrackController.php:135 +#: ../../../modules/web/Controllers/TrackController.php:142 msgid "Tracks limpiados" msgstr "Tracks cleared out" @@ -4433,7 +4425,7 @@ msgid "Código de seguridad incorrecto" msgstr "Wrong security code" #: ../../../modules/web/Controllers/UpgradeController.php:92 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 msgid "Aplicación actualizada correctamente" msgstr "Application successfully updated" @@ -4441,96 +4433,96 @@ msgstr "Application successfully updated" msgid "En 5 segundos será redirigido al login" msgstr "You will be redirected to log in within 5 seconds" -#: ../../../modules/web/Controllers/UserController.php:266 -#: ../../../modules/web/Controllers/UserController.php:269 +#: ../../../modules/web/Controllers/UserController.php:275 +#: ../../../modules/web/Controllers/UserController.php:278 msgid "Usuarios eliminados" msgstr "Users deleted" -#: ../../../modules/web/Controllers/UserController.php:277 -#: ../../../modules/web/Controllers/UserController.php:281 +#: ../../../modules/web/Controllers/UserController.php:286 +#: ../../../modules/web/Controllers/UserController.php:290 msgid "Usuario eliminado" msgstr "User deleted" -#: ../../../modules/web/Controllers/UserController.php:311 -#: ../../../modules/web/Controllers/UserController.php:317 +#: ../../../modules/web/Controllers/UserController.php:322 +#: ../../../modules/web/Controllers/UserController.php:328 msgid "Usuario creado" msgstr "User added" -#: ../../../modules/web/Controllers/UserController.php:372 -#: ../../../modules/web/Controllers/UserController.php:378 +#: ../../../modules/web/Controllers/UserController.php:387 +#: ../../../modules/web/Controllers/UserController.php:393 msgid "Usuario actualizado" msgstr "User updated" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 +#: ../../../modules/web/Controllers/UserController.php:458 #: ../../../config/actions.xml:571 msgid "Ver Usuario" msgstr "View User" -#: ../../../modules/web/Controllers/UserGroupController.php:219 -#: ../../../modules/web/Controllers/UserGroupController.php:222 +#: ../../../modules/web/Controllers/UserGroupController.php:226 +#: ../../../modules/web/Controllers/UserGroupController.php:229 msgid "Grupos eliminados" msgstr "Groups deleted" -#: ../../../modules/web/Controllers/UserPassResetController.php:90 +#: ../../../modules/web/Controllers/UserPassResetController.php:92 msgid "Datos incorrectos" msgstr "Wrong data" -#: ../../../modules/web/Controllers/UserPassResetController.php:94 +#: ../../../modules/web/Controllers/UserPassResetController.php:96 msgid "No es posible recuperar la clave" msgstr "Unable to reset the password" -#: ../../../modules/web/Controllers/UserPassResetController.php:101 +#: ../../../modules/web/Controllers/UserPassResetController.php:103 msgid "Recuperación de Clave" msgstr "Password Recovery" -#: ../../../modules/web/Controllers/UserPassResetController.php:102 +#: ../../../modules/web/Controllers/UserPassResetController.php:104 msgid "Solicitado para" msgstr "Requested for" -#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/Controllers/UserPassResetController.php:109 msgid "Solicitud enviada" msgstr "Request sent" -#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/Controllers/UserPassResetController.php:109 msgid "En breve recibirá un correo para completar la solicitud." msgstr "You will receive an email to complete the request shortly." -#: ../../../modules/web/Controllers/UserPassResetController.php:172 +#: ../../../modules/web/Controllers/UserPassResetController.php:179 #: ../../../modules/web/Forms/AuthTokenForm.php:101 #: ../../../modules/web/Forms/UserForm.php:157 msgid "La clave no puede estar en blanco" msgstr "Password cannot be blank" -#: ../../../modules/web/Controllers/UserProfileController.php:203 -#: ../../../modules/web/Controllers/UserProfileController.php:206 +#: ../../../modules/web/Controllers/UserProfileController.php:215 +#: ../../../modules/web/Controllers/UserProfileController.php:218 msgid "Perfiles eliminados" msgstr "Profiles deleted" -#: ../../../modules/web/Controllers/UserProfileController.php:215 -#: ../../../modules/web/Controllers/UserProfileController.php:219 +#: ../../../modules/web/Controllers/UserProfileController.php:227 +#: ../../../modules/web/Controllers/UserProfileController.php:231 msgid "Perfil eliminado" msgstr "Profile deleted" -#: ../../../modules/web/Controllers/UserProfileController.php:248 +#: ../../../modules/web/Controllers/UserProfileController.php:262 msgid "Perfil creado" msgstr "Profile added" -#: ../../../modules/web/Controllers/UserProfileController.php:284 +#: ../../../modules/web/Controllers/UserProfileController.php:300 msgid "Perfil actualizado" msgstr "Profile updated" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 +#: ../../../modules/web/Controllers/UserProfileController.php:326 #: ../../../config/actions.xml:637 msgid "Ver Perfil" msgstr "View Profile" -#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:71 +#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:73 msgid "Preferencias actualizadas" msgstr "Preferences updated" -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:93 +#: ../../../modules/web/Controllers/UserSettingsManagerController.php:87 msgid "Preferencias" msgstr "Preferences" @@ -4652,25 +4644,25 @@ msgid "Ver Detalles" msgstr "View Details" #: ../../../modules/web/themes/material-blue/inc/Icons.php:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:132 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:136 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 msgid "Editar" msgstr "Edit" #: ../../../modules/web/themes/material-blue/inc/Icons.php:36 #: ../../../modules/web/themes/material-blue/inc/Icons.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 msgid "Eliminar" msgstr "Delete" @@ -4679,12 +4671,12 @@ msgid "Cambiar Clave" msgstr "Change Password" #: ../../../modules/web/themes/material-blue/inc/Icons.php:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:200 msgid "Admin Aplicación" msgstr "Application Admin" #: ../../../modules/web/themes/material-blue/inc/Icons.php:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:218 msgid "Admin Cuentas" msgstr "Accounts Admin" @@ -4693,7 +4685,7 @@ msgid "Usuario de LDAP" msgstr "LDAP User" #: ../../../modules/web/themes/material-blue/inc/Icons.php:41 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:257 msgid "Deshabilitado" msgstr "Disabled" @@ -4702,7 +4694,7 @@ msgid "Habilitado" msgstr "Enabled" #: ../../../modules/web/themes/material-blue/inc/Icons.php:43 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:184 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 msgid "Actualizar" msgstr "Update" @@ -4712,7 +4704,7 @@ msgid "Copiar" msgstr "Copy" #: ../../../modules/web/themes/material-blue/inc/Icons.php:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:84 msgid "Email" msgstr "Email" @@ -4723,8 +4715,8 @@ msgstr "Email" #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 msgid "Volver" msgstr "Back" @@ -4827,8 +4819,8 @@ msgid "Borrar elemento?" msgstr "Delete item?" #: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:31 msgid "Página no encontrada" msgstr "Page not found" @@ -4857,47 +4849,47 @@ msgid "Vaciar el registro de eventos?" msgstr "Clear the event log out?" #: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:281 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:253 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:152 msgid "Seleccionar Grupo" msgstr "Select Group" #: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:81 msgid "Seleccionar Usuario" msgstr "Select User" #: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:135 msgid "Seleccionar Perfil" msgstr "Select Profile" #: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:84 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 msgid "Seleccionar Cliente" msgstr "Select Client" #: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:41 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 msgid "Seleccionar Categoría" msgstr "Select Category" @@ -4930,40 +4922,40 @@ msgid "Mostrar Clave" msgstr "Show Password" #: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:24 msgid "Copiar Usuario" msgstr "Copy Username" #. (itstool) path: action/text #: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:41 #: ../../../config/actions.xml:199 ../../../config/actions.xml:271 msgid "Copiar Clave" msgstr "Copy Password" #: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 msgid "Incluir Números" msgstr "Include Numbers" #: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 msgid "Incluir Mayúsculas" msgstr "Include Uppercase" #: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 msgid "Incluir Símbolos" msgstr "Include Symbols" #: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 msgid "Longitud" msgstr "Length" #: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 msgid "Seleccionar Acción" msgstr "Select Action" @@ -4988,13 +4980,13 @@ msgid "Recibir notificaciones?" msgstr "Send notifies?" #: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:158 msgid "Marcar Favorito" msgstr "Mark as Favorite" #. (itstool) path: action/text #: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:148 #: ../../../config/actions.xml:253 msgid "Eliminar Favorito" msgstr "Delete Favorite" @@ -5004,11 +4996,12 @@ msgid "Limpiar Selección" msgstr "Clear Selection" #: ../../../config/strings.js.inc:77 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:78 msgid "Mostrar Favoritos" msgstr "Show Favorites" #: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:72 msgid "Mostrar Todos" msgstr "Show All" @@ -5036,7 +5029,7 @@ msgid "" msgstr "Performing task. Please, do not close the browser window/tab." #: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 msgid "Incluir Letras" msgstr "Include Letters" @@ -5057,12 +5050,12 @@ msgid "Hay una versión más reciente del plugin {0} ({1})" msgstr "There is a more recent version of {0} plugin ({1})" #: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:30 msgid "Actualizado" msgstr "Updated" #: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:36 msgid "Error al comprobar actualizaciones" msgstr "Error while checking for updates" @@ -5074,43 +5067,43 @@ msgstr "sysPass Notices" msgid "Vaciar los tracks?" msgstr "Clear tracks out?" -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 +#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:21 msgid "Javascript es necesario para el correcto funcionamiento" msgstr "Javascript is needed in order to run correctly" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:64 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:121 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 msgid "Preferencias de usuario" msgstr "User preferences" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:68 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:71 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:139 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:142 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 msgid "Salir" msgstr "Sign Out" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:155 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:53 msgid "Demo" msgstr "Demo" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 msgid "Indica si la conexión utiliza HTTPS." msgstr "Tells whether the connection uses HTTPS or not." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 msgid "" "Las claves de formularios enviados se encriptan mediante PKI, el resto de " "datos no." msgstr "" "The passwords sent from the forms are encrypted with PKI, the other data not." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:66 msgid "Ayuda :: FAQ :: Changelog" msgstr "Help :: FAQ :: Changelog" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:70 msgid "Un proyecto de cygnux.org" msgstr "A cygnux.org project" @@ -5170,311 +5163,320 @@ msgstr "Get the private accounts for the current user" msgid "Operador para los parámetros especiales" msgstr "Operator for special parameters" -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 +#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:17 msgid "No se encontraron registros" msgstr "No records found" -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:168 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:64 #: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 #: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:38 msgid "Clave (repetir)" msgstr "Password (repeat)" -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 msgid "Seleccionar Fecha" msgstr "Select date" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:19 msgid "Histórico" msgstr "History" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:22 msgid "Detalles" msgstr "Details" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:127 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:200 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:169 msgid "Notas" msgstr "Notes" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:140 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:142 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:271 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:273 msgid "Historial" msgstr "History" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:278 msgid "Seleccionar fecha" msgstr "Select date" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:160 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 msgid "Última Modificación" msgstr "Last Modification" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:23 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:57 msgid "Seleccionar Usuarios" msgstr "Select Users" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 msgid "Ver" msgstr "View" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 msgid "Seleccionar Grupos" msgstr "Select Groups" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 msgid "Privada" msgstr "Private" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:223 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 msgid "Privada Grupo" msgstr "Private for Group" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:15 msgid "Solicitar Modificación de Cuenta" msgstr "Request Account Modification" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 msgid "Petición" msgstr "Request" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:52 msgid "Descripción de la petición" msgstr "Request description" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:74 msgid "Enviar" msgstr "Send" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 msgid "Permisos" msgstr "Permissions" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:218 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 msgid "Seleccionar Etiquetas" msgstr "Select Tags" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:26 msgid "Seleccionar Cuenta" msgstr "Select Account" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Public Link" - #: ../../../modules/web/themes/material-blue/views/account/account.inc:301 #: ../../../modules/web/themes/material-blue/views/account/account.inc:303 #: ../../../modules/web/themes/material-blue/views/account/account.inc:306 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:191 +msgid "Enlace Público" +msgstr "Public Link" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:314 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:316 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:319 msgid "Enlace Directo" msgstr "Direct Link" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:24 msgid "Fecha Alta" msgstr "Date Added" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:60 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:62 msgid "Fecha Edición" msgstr "Date Modified" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:70 msgid "Editor" msgstr "Editor" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 msgid "Fecha de Clave" msgstr "Password Date" -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/files.inc:37 msgid "Soltar archivos aquí (max. 5) o click para seleccionar" msgstr "Drop files here (max. 5) or click to select" -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/files.inc:39 #, php-format msgid "Tamaño máximo de archivo: %d MB" msgstr "Maximum file size: %d MB" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:35 msgid "Buscar en Wiki" msgstr "Search in Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:82 #, php-format msgid "Abrir enlace a: %s" msgstr "Open link to: %s" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:109 msgid "Clave Caducada" msgstr "Password Expired" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:123 msgid "Cuenta Privada (Grupo)" msgstr "Private Account (Group)" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:166 msgid "Notes" msgstr "Notes" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 msgid "Archivos adjuntos" msgstr "Attachments" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 #: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:218 msgid "Enlace a Wiki" msgstr "Link to Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:210 msgid "Ver en Wiki" msgstr "View at Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 msgid "Búsqueda global" msgstr "Global searching" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:83 msgid "Filtrar Favoritos" msgstr "Favorites Filtering" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:98 msgid "Cuentas por página" msgstr "Accounts per page" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:104 msgid "Más Filtros" msgstr "More Filters" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:109 msgid "Seleccionar Etiqueta" msgstr "Select Tag" -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:22 msgid "Los datos serán encriptados al guardar" msgstr "Data will be encrypted after saving" -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:27 msgid "Los datos serán desencriptados al guardar" msgstr "Data will be unencrypted after saving" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:12 +#, php-format +msgid "La extensión '%s' no está disponible" +msgstr "The '%s' extension is unavailable" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:16 msgid "Esta extensión es necesaria para mostrar las claves como imágenes" msgstr "This extension is needed to display passwords as images" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:30 msgid "Búsqueda" msgstr "Searching" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:36 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:56 msgid "Resultados por página" msgstr "Results per page" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:41 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:61 msgid "Número de resultados por página a mostrar, al realizar una búsqueda." msgstr "Number of results per page to show when doing searches." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:52 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:72 msgid "Número de resultados por página" msgstr "Results per page" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 msgid "Caducidad clave cuentas" msgstr "Accounts password expiry" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:71 msgid "Habilita la caducidad de la clave de cuentas." msgstr "Enables the accounts password expiry date." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:79 msgid "Tiempo caducidad clave" msgstr "Password expiry time" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:84 msgid "Número de días para la caducidad de la clave de cuenta." msgstr "Number of days for the account expiry date." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 msgid "Tiempo caducidad (días)" msgstr "Expire time (days)" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:112 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:90 msgid "Nombre de cuenta como enlace" msgstr "Account name as link" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:113 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:92 msgid "" "Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " "de la cuenta." msgstr "Enables the account name as a link to account details." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:128 msgid "Búsquedas globales" msgstr "Global searches" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:129 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." @@ -5482,44 +5484,44 @@ msgstr "" "Allows the users to do searches that includes all accounts, if they don't " "have permission they can't view the accounts details." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:144 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 msgid "Imagen para mostrar clave" msgstr "Image to show password" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 msgid "Generar una imagen con el texto de la clave de la cuenta." msgstr "Generate an image with a text of the account password." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." msgstr "" "Useful for environments where copying a password to clipboard is a security " "risk." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:164 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:158 msgid "Resultados en Tarjetas" msgstr "Results like Cards" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:166 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:160 msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." msgstr "Enables to show account's search results on a card like format." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:182 msgid "Acceso Grupos Secundarios" msgstr "Secondary Groups Access" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:184 msgid "" "Habilita el acceso a los usuarios que estén incluidos en los grupos " "secundarios." msgstr "Grants access to the users that are included in the secondary groups." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:186 msgid "" "Por defecto el usuario de un grupo secundario es permitido si el grupo " "secundario está establecido como el primario del usuario." @@ -5528,72 +5530,72 @@ msgstr "" "is set as the user's main group." #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:197 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 #: ../../../config/actions.xml:73 msgid "Enlaces Públicos" msgstr "Public Links" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:215 msgid "Habilitar Enlaces Públicos" msgstr "Enable Public Links" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:217 msgid "" "Habilita la posibilidad de generar enlaces públicos para ver los detalles de " "una cuenta." msgstr "" "Enables the ability to create public links to view an account's details" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:219 msgid "" "Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." msgstr "The linked accounts will be visible by anyone that have the link." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:221 msgid "" "Para crear enlaces, los usuarios tienen que tener activada la opción en su " "perfl." msgstr "" "To create links, the users must have activated the option in their profiles." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:237 msgid "Usar imagen para clave" msgstr "Use an image for password" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:239 msgid "La clave de la cuenta es visualizada como una imagen." msgstr "The account password is shown as image." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:248 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:257 msgid "Tiempo de caducidad" msgstr "Expire time" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:263 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:272 msgid "Número máximo de visitas" msgstr "Maximum visits" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:298 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 msgid "Gestión de archivos" msgstr "Files management" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:299 msgid "Habilita la subida/descarga de archivos para las cuentas." msgstr "Enables the uploading and downloading of accounts files." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:307 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:320 msgid "Extensiones de archivos permitidas" msgstr "Allowed file extensions" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 msgid "Extensiones permitidas para la subida de archivos." msgstr "Allowed file extensions for uploading." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:315 msgid "" "Escribir extensión y pulsar intro para añadir. Es necesario guardar la " "configuración." @@ -5601,55 +5603,51 @@ msgstr "" "Write the extension and press enter to add. Remember to save the " "configuration." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:328 msgid "Tamaño máximo de archivo" msgstr "Maximum file size" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:333 msgid "Establece el tamaño máximo para subir archivos." msgstr "Set the maximum file size for uploading." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:337 msgid "El máximo absuluto es de 16MB." msgstr "The absolute maximum is 16MB." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:348 msgid "Tamaño máximo de archivo en kilobytes" msgstr "Maximum file size in kilobytes" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:16 msgid "" "Esta extensión es necesaria para generar los archivos de copia de seguridad " "de la aplicación" msgstr "This extension is needed to build the application's backup files" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 msgid "Resultado" msgstr "Result" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:123 msgid "Descargar Actual" msgstr "Download Current" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:51 msgid "Copia BBDD" msgstr "DB Backup" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:58 msgid "Copia sysPass" msgstr "sysPass Backup" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 -msgid "No hay backups para descargar" -msgstr "There aren't any backups for download" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:80 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." @@ -5657,7 +5655,7 @@ msgstr "" "The backup allows you to save and download either sysPass database or " "application files and its configuration." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:82 msgid "" "Con este método es posible guardar todos los datos de sysPass en otro lugar " "o utilizarlos para hacer la aplicación portable." @@ -5665,26 +5663,22 @@ msgstr "" "With this method it's possible to either save all sysPass data in another " "place or use it to make the application portable." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:185 msgid "Exportar Cuentas" msgstr "Export Accounts" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -msgid "No hay archivos XML para descargar" -msgstr "There aren't any XML files for download" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:139 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:147 msgid "Clave de Exportación" msgstr "Export Password" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:161 msgid "Clave de Exportación (repetir)" msgstr "Export Password (repeat)" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:187 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." @@ -5692,18 +5686,18 @@ msgstr "" "The accounts export allows you to save the accounts and their data in XML " "format to be imported in another sysPass instance." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:189 msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." msgstr "The exported items are accounts, clients, categories and tags." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:191 msgid "" "Las claves de las cuentas son exportadas de forma encriptada para mayor " "seguridad." msgstr "" "The accounts passwords are exported in an excrypted way for better security." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:193 msgid "" "Es posible establecer una clave de exportación para guardar todos los datos " "encriptados en el archivo XML." @@ -5711,72 +5705,72 @@ msgstr "" "It's possible to set an export password to save all the encrypted data in " "the XML file." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:17 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:167 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:50 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:56 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:57 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:102 msgid "Clave Maestra" msgstr "Master Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:27 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:201 msgid "Último cambio" msgstr "Last change" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:35 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:43 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:142 msgid "Clave Maestra actual" msgstr "Current Master Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:49 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:57 msgid "Nueva Clave Maestra" msgstr "New Master Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:63 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:71 msgid "Nueva Clave Maestra (repetir)" msgstr "New Master Password (repeat)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:80 msgid "Guarde la nueva clave en un lugar seguro." msgstr "You should save the new password on a secure place" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:84 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "All accounts passwords will be encrypted again." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:88 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "Users will need to enter the new Master Password." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:92 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:130 #, php-format msgid "" "Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." msgstr "It will be updated %s accounts. This process could take some time." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:109 msgid "No modificar cuentas" msgstr "Do not modify accounts" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:111 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "Sets a new Master Password without re-encrypting the accounts." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:127 msgid "Confirmar cambio" msgstr "Confirm change" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:129 msgid "" "Confirmar el cambio de clave maestra después de haber leído las advertencias " "anteriores." @@ -5784,7 +5778,7 @@ msgstr "" "Confirm the master password change after you have been read all the above " "warnings." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:155 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." @@ -5792,7 +5786,7 @@ msgstr "" "The Master Password is used to encrypt sysPass accounts passwords and keep " "them safe." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:157 msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " "que incluya números, letras y símbolos." @@ -5800,51 +5794,51 @@ msgstr "" "It's advisable to change it from time to time and use a complex password " "that includes numbers, letters and symbols." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:159 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 #, php-format msgid "Para más información consulte: %s" msgstr "You could get more info on: %s" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:169 msgid "Actualizar hash de clave maestra" msgstr "Update master password hash" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:189 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:323 msgid "Clave Temporal" msgstr "Temporary Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:203 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:218 msgid "No generada" msgstr "Not generated" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:211 msgid "Válido hasta" msgstr "Valid until" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:227 msgid "Intentos" msgstr "Attempts" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:244 msgid "Validez (s)" msgstr "Life (s)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:263 msgid "Enviar correo" msgstr "Send email" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:265 msgid "" "Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." msgstr "Sends an email to all users or only to those whose group is selected." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:325 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " @@ -5854,31 +5848,31 @@ msgstr "" "to enter it during login. By this way there is no need to tell them the real " "Master Password." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:332 msgid "Generar" msgstr "Generate" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:30 msgid "Usar Auth Basic" msgstr "Use Auth Basic" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:31 msgid "Usar Auth Basic para autorizar los accesos a la aplicación." msgstr "Use Auth Basic for authorizing the accesses to the application" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:45 msgid "Usar Auth Basic SSO" msgstr "Use Auth Basic SSO" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:46 msgid "Usar auto-login con Auth Basic." msgstr "Use auto-login through Auth Basic" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:54 msgid "Dominio" msgstr "Domain" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:59 msgid "" "El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " "el de Auth Basic." @@ -5886,124 +5880,124 @@ msgstr "" "The domain will be added to the sysPass user name for checking against the " "Auth Basic one." -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:69 msgid "Nombre de dominio" msgstr "Domain name" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:249 msgid "Grupo por Defecto" msgstr "Default Group" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:80 msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." msgstr "Sets the default users group for newly SSO users" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:264 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:274 msgid "Perfil por Defecto" msgstr "Default Profile" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:105 msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." msgstr "Sets the default profile for the newly created SSO users." -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:98 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:176 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:72 msgid "Eventos" msgstr "Events" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:30 msgid "Habilitar log de eventos" msgstr "Enable event log" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:31 msgid "Guarda las acciones realizadas en la aplicación." msgstr "Saves the actions done by the application." -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:45 msgid "Habilitar Syslog" msgstr "Enable Syslog" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:60 msgid "Habilitar Syslog Remoto" msgstr "Enable Remote Syslog" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:78 msgid "Nombre o dirección IP" msgstr "Hostname or IP address" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:84 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:79 msgid "Puerto" msgstr "Port" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:12 msgid "Proxy" msgstr "Proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:30 msgid "Usar Proxy" msgstr "Use Proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:31 msgid "Usar proxy para comprobación de actualizaciones y notificaciones." msgstr "Use a proxy server for checking out for updates and notifications." -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:47 msgid "Servidor proxy" msgstr "Proxy server" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:61 msgid "Puerto del servidor proxy" msgstr "Proxy server port" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:75 msgid "Usuario del servidor proxy" msgstr "Proxy server user" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:89 msgid "Clave del servidor proxy" msgstr "Proxy server password" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:16 msgid "" "Esta extensión es necesaria comprobar las actualizaciones y notificaciones" msgstr "This extension is needed to check for sysPass updates and notices" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:24 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:15 msgid "Sitio" msgstr "Site" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:137 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:139 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:28 msgid "Idioma" msgstr "Language" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:35 msgid "" "Establece el idioma global de la aplicación. Es posible establecer un idioma " "por usuario en las preferencias." @@ -6011,7 +6005,7 @@ msgstr "" "Set the global app language. You can set a per user language at the user " "preferences." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:39 msgid "" "Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." "com/join/project/fmlsBuugyv" @@ -6019,14 +6013,14 @@ msgstr "" "To improve/add the translations, you can get involved at https://poeditor." "com/join/project/fmlsBuugyv" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:67 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:42 msgid "Tema Visual" msgstr "Visual Theme" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:62 msgid "" "Establece el tema visual global de la aplicación. Es posible establecer un " "tema visual por usuario en las preferencias." @@ -6034,35 +6028,35 @@ msgstr "" "Set the global app visual theme. You can the user's visual theme on the user " "preferences." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:89 msgid "Timeout de sesión (s)" msgstr "Session timeout (s)" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:107 msgid "Forzar HTTPS" msgstr "Force HTTPS" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:108 msgid "Fuerza para que todas las conexiones sean a través de HTTPS." msgstr "It forces the use of HTTPS on all the connections" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:122 msgid "Habilitar depuración" msgstr "Enable debug" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:123 msgid "" "Muestra información relativa a la configuración de la aplicación y " "rendimiento." msgstr "" "Shows some information about application configuration and performance." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:137 msgid "Modo mantenimiento" msgstr "Maintenance mode" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:138 msgid "" "En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " "necesario modificar el archivo de configuración." @@ -6070,21 +6064,21 @@ msgstr "" "In this mode nobody can log into the application. To disable it, you need to " "either modify the configuration file or unset on the site tab." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:152 msgid "Comprobar actualizaciones" msgstr "Check for updates" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:153 msgid "" "Comprobar actualizaciones de la aplicación (sólo para los usuarios " "administradores)." msgstr "Check for application updates (only for administrators)." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:167 msgid "Comprobar notificaciones" msgstr "Check for notices" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:168 msgid "" "Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " "para los usuarios administradores)." @@ -6092,15 +6086,15 @@ msgstr "" "Check if there are either sysPass security or warning notices (only for " "administrators)." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 msgid "Encriptar Sesión" msgstr "Encrypt Session" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:184 msgid "Encriptar los datos de la sesión de PHP." msgstr "Encrypt PHP session data" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:185 msgid "" "Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " "datos almacenados no serán legibles." @@ -6108,47 +6102,47 @@ msgstr "" "This feature increases the PHP sessions security, because the stored data " "won't be readable." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 msgid "Importar CSV/XML" msgstr "CSV/XML Import" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:28 msgid "Usuario por Defecto" msgstr "Default User" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:23 msgid "Define el usuario por defecto para las cuentas importadas." msgstr "Sets the default user for the accounts imported." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:50 msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Sets the default group for the accounts imported." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:75 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Drop files here or click to select" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "archivos XML y CSV." msgstr "" "Allows to import the Accounts, Categories and Clients from XML or CSV files." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "The supported XML file formats are: sysPass, KeePass and KeePassX" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "Drag & Drop the file into the import zone or click over the arrow." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " "KeePass o KeePassX y la categoría igual al nombre de los grupos." @@ -6156,11 +6150,11 @@ msgstr "" "For KeePass or KeePassX files, the client name will be KeePass or KeePassX " "and the category name like groups names." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "The CSV import file requires the following format:" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 msgid "" "\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" "\"notas\"" @@ -6168,7 +6162,7 @@ msgstr "" "\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" "\"notes\"" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:117 msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " "automáticamente." @@ -6176,20 +6170,20 @@ msgstr "" "In all cases, if the client or category do not exist they will be created " "automatically." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:125 msgid "XML" msgstr "XML" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:131 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:146 msgid "Clave de Importación" msgstr "Import Password" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:136 msgid "Sólo es necesaria para archivos XML de sysPass encriptados." msgstr "It's only needed for sysPass XML files that have been encrypted." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:157 msgid "" "Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " "la actual." @@ -6197,64 +6191,68 @@ msgstr "" "It's only needed for sysPass XML files that have been encrypted with a " "different master password from the current one." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:174 msgid "CSV" msgstr "CSV" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:195 msgid "Delimitador CSV" msgstr "CSV delimiter" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:185 msgid "Sólo es necesario para archivos CSV." msgstr "It's only needed for CSV files." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 msgid "Información de la Aplicación" msgstr "Application Information" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:23 msgid "Versión sysPass" msgstr "sysPass version" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:33 msgid "Base de Datos" msgstr "Database" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:47 msgid "PHP" msgstr "PHP" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:51 msgid "Extensiones" msgstr "Extensions" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 msgid "Extensiones no disponibles" msgstr "Unavailable extensions" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:59 msgid "Memoria Usada" msgstr "Used Memory" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Tasa de descarga" +msgstr "Download rate" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:66 msgid "OP Cache" msgstr "OP Cache" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:88 msgid "Copia de Configuración" msgstr "Configuration Backup" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:100 msgid "Indica si el idioma se encuentra disponible" msgstr "Tells whether the language is available or not." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:104 msgid "" "Si no está instalado, es necesario instalar las locales en el sistema " "operativo. Más información en Wiki." @@ -6262,161 +6260,161 @@ msgstr "" "If it is not installed, you would need install the right operating system " "locales. More info at Wiki." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:116 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:126 msgid "Sesión Encriptada" msgstr "Encrypted Session" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:121 msgid "Indica si los datos de la sesión están encriptados en el servidor" msgstr "Tells whether the session data are encrypted in the server or not" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:136 msgid "Plugins Cargados" msgstr "Loaded Plugins" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:16 msgid "Esta extensión es necesaria conectar con el servidor de LDAP" msgstr "This extension is needed to connect to the LDAP server" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:46 msgid "Habilitar LDAP" msgstr "Enable LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:48 msgid "Habilita de autentificación mediante servidor LDAP." msgstr "Enables authentication against an LDAP server." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:50 msgid "Este método utilizará MySQL en caso de fallo." msgstr "This method will use MySQL as fallback." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:65 msgid "Active Directory" msgstr "Active Directory" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:67 msgid "Habilita el modo de conexión con LDAP de Active Directory." msgstr "Enables Active Directory LDAP connection mode." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:84 msgid "Habilita la conexión mediante TLS." msgstr "Enables the connection over TLS" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:99 msgid "Nombre o dirección IP del servidor de LDAP." msgstr "Hostname or IP address of the LDAP server." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:185 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:219 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:131 msgid "Ejemplos:" msgstr "Examples:" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:125 msgid "Usuario de conexión" msgstr "Bind User" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:130 msgid "Usuario para conectar con el servicio de LDAP." msgstr "User to connect to the LDAP service." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:155 msgid "Clave de conexión" msgstr "Bind Password" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:160 msgid "Clave del usuario de conexión a LDAP." msgstr "LDAP connection user password" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:176 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:200 msgid "Base de búsqueda" msgstr "Search base" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:181 msgid "Base en la que realizar la búsqueda de usuarios de LDAP." msgstr "LDAP base to perform the LDAP users searching." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:211 msgid "" "Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." msgstr "LDAP group that the user must belong for granting to log in." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:215 msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." msgstr "This group needs to be placed in the LDAP search base." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:244 msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Sets the default users group for newly LDAP users" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:269 msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Sets the default profile for the newly created LDAP users." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:321 msgid "Importación" msgstr "Import" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:337 msgid "Atributo Login" msgstr "Login Attribute" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:332 msgid "" "Define el atributo a utilizar para el login del usuario en la importación." msgstr "Defines the attribute for the user's login when importing." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:350 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:360 msgid "Atributo Nombre" msgstr "Name Attribute" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:355 msgid "" "Define el atributo a utilizar para el nombre del usuario en la importación." msgstr "Defines the attribute for the user's name when importing." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:385 msgid "Importar Grupos" msgstr "Import Groups" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:394 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:404 msgid "Atributo Nombre Grupo" msgstr "Group Name Attribute" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:399 msgid "" "Define el atributo a utilizar para el nombre del grupo en la importación." msgstr "Defines the attribute for the user group name when importing." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:415 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:429 msgid "Filtro" msgstr "Filter" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:420 msgid "Filtro para importar usuarios o grupos de LDAP." msgstr "Filter for importing LDAP users or groups." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:34 msgid "Habilitar notificaciones de correo" msgstr "Enable email notifications" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 msgid "Habilitar peticiones por correo" msgstr "Enable requests by email" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:50 msgid "" "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " "cuentas sin permisos." @@ -6424,103 +6422,103 @@ msgstr "" "Allows users to request for either modifications to existing accounts or " "access to accounts in which they have no rights." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:97 msgid "Habilitar Autentificación" msgstr "Enable Authentication" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:135 msgid "Seguridad" msgstr "Security" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:138 msgid "Deshabilitada" msgstr "Disabled" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:156 msgid "Dirección de correo de envío" msgstr "Recipient email address" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:165 msgid "Destinatarios" msgstr "Recipients" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:16 msgid "Esta extensión es necesaria conectar con DokuWiki" msgstr "This extension is needed to connect with DokuWiki" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:47 msgid "Habilitar enlaces Wiki" msgstr "Enable Wiki links" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:48 msgid "" "Habilita la opción de añadir un enlace a Wiki externa para los resultados de " "la búsqueda." msgstr "" "Enables the option to add a link to search for results in an external Wiki." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:56 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:83 msgid "URL de búsqueda Wiki" msgstr "Wiki search URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:61 msgid "URL que utiliza la wiki para realizar una búsqueda de una página." msgstr "URL that the Wiki uses for making an entry searching." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:65 msgid "Como parámetro se utiliza el nombre del cliente." msgstr "The client name is used as parameter." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:69 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:102 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:187 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:214 msgid "Ejemplo:" msgstr "Example:" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:116 msgid "URL de página en Wiki" msgstr "Wiki page URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:94 msgid "URL que utiliza la wiki para acceder a los detalles de una página." msgstr "URL that the Wiki uses for accessing to the entry details." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:98 msgid "" "El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " "de la Wiki." msgstr "The account name is used as parameter of Wiki search variable." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:136 msgid "Prefijo para nombre de cuenta" msgstr "Account name prefix" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:127 msgid "" "Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." msgstr "Prefix to determine which accounts have a link to the Wiki." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:146 msgid "DokuWiki API" msgstr "DokuWiki API" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:164 msgid "Habilitar API de DokuWiki" msgstr "Enable DokuWiki API" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:166 msgid "" "Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." msgstr "Enables DokuWiki XML-RPC API for Wiki links." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:168 msgid "" "Para que esta característica funcione, es necesario habilitar los enlaces " "Wiki para el filtrado de cuentas." @@ -6528,141 +6526,141 @@ msgstr "" "In order to get this feature working, you should enable Wiki links for " "accounts filtering" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:199 msgid "URL API" msgstr "API URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:183 msgid "URL de la API de DokuWiki." msgstr "DokuWiki API URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:205 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:227 msgid "URL Base" msgstr "Base URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:210 msgid "URL base de DokuWiki." msgstr "DokuWiki base URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:238 msgid "Usuario para conectar a la API de DokuWiki." msgstr "User for connecting to the DokuWiki API." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:282 msgid "Namespace" msgstr "Namespace" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:271 msgid "Namespace utilizado para buscar las páginas." msgstr "Namespace used to search pages." #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:170 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:172 msgid "Instalar" msgstr "Install" -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 +#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 msgid "Filtro ON" msgstr "Filter ON" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:11 #, php-format msgid "Instalación %s" msgstr "Installation %s" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:21 msgid "Admin de sysPass" msgstr "sysPass Admin" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:29 msgid "Usuario administrador de sysPass" msgstr "sysPass admin user" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:37 msgid "Login del usuario administrador de sysPass" msgstr "sysPass administrator's login" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:69 msgid "Configurar BBDD" msgstr "DB Configuration" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:79 msgid "Usuario acceso BBDD" msgstr "DB access user" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:87 msgid "Usuario con permisos de administrador de MySQL" msgstr "An user with MySQL admin rights" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:95 msgid "Clave acceso BBDD" msgstr "DB access password" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:104 msgid "Nombre BBDD para sysPass" msgstr "sysPass database name" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:112 msgid "Nombre de la base de datos para sysPass" msgstr "sysPass database name" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:121 msgid "Servidor BBDD para sysPass" msgstr "sysPass database server" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:129 msgid "Nombre del servidor para instalar la base de datos de sysPass" msgstr "Server name to install the sysPass database" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:149 msgid "Modo Hosting" msgstr "Hosting Mode" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:156 msgid "No crea ni verifica los permisos del usuario sobre la BBDD" msgstr "It does not create or verify the user's permissions on the DB" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 msgid "Otros" msgstr "Others" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 msgid "Creador" msgstr "Creator" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 msgid "Eliminar Historial" msgstr "Delete History" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 msgid "Opciones" msgstr "Options" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 msgid "Regenerar Autorización" msgstr "Refresh Authorization" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 msgid "Token" msgstr "Token" -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:54 msgid "Indica si el cliente es visible para todos los usuarios." msgstr "Sets whether the client is visible by all users" -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:57 msgid "" "Por defecto los clientes asignados a cuentas sólo son visibles para los " "usuarios con acceso a las cuentas." @@ -6670,60 +6668,60 @@ msgstr "" "By default, the clients assigned to accounts only will be visible to users " "who are granted to access to the accounts." -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 msgid "Nombre del campo" msgstr "Field name" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 msgid "Texto Ayuda" msgstr "Help Text" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 msgid "Ayuda del campo" msgstr "Field help" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 msgid "Obligatorio" msgstr "Required" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 msgid "Puntuación" msgstr "Score" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 msgid "Expresión Regular" msgstr "Regular Expression" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 msgid "Incluir Minúsculas" msgstr "Include Lowercase" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 msgid "Las cuentas sólo serán visibles por el usuario." msgstr "Accounts will be only visible by the user." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 msgid "Los administradores no podrán acceder a las cuentas." msgstr "Administrators won't be able to display the accounts." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." msgstr "Accounts will be only visible by the user and his/her main group." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 msgid "Dirección IP" msgstr "IP Address" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 msgid "Timeout" msgstr "Timeout" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 msgid "" "Prioridad de asignación en caso de coincidir con otros valores asignados por " "usuario, grupo o perfil." @@ -6731,284 +6729,284 @@ msgstr "" "Assignment priority if values match with others assigned by user, group or " "profile." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 msgid "Prioridad de asignación" msgstr "Assignment Priority" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 msgid "" "Indica si los valores serán forzados al crear o modificar los elementos." msgstr "Enforces the values to be set either on creating or updating an item." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 msgid "Los valores serán añadidos a los existentes." msgstr "Values will be merged with the existing ones." -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:83 msgid "Hash" msgstr "Hash" -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:91 msgid "URL" msgstr "URL" -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:101 msgid "Uso" msgstr "Use" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 msgid "Nombre de usuario completo" msgstr "Full username" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:58 msgid "Login de inicio de sesión" msgstr "Session login" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:69 msgid "Login SSO" msgstr "SSO Login " -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:77 msgid "Login de inicio de sesión con SSO" msgstr "Session login with SSO" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:92 msgid "Dirección de correo" msgstr "Email address" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:202 msgid "Administrador de la aplicación" msgstr "Application administrator" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:220 msgid "Administrador de cuentas" msgstr "Accounts administrator" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:240 msgid "Forzar cambio de clave" msgstr "Force password change" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 msgid "Entradas" msgstr "Entries" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 msgid "Último Acceso" msgstr "Last Access" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 msgid "Fecha Clave Maestra" msgstr "Master Password Date" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:311 msgid "Usado en" msgstr "Used in" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 msgid "Usado por" msgstr "Used by" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:108 msgid "(*) Incluido en grupo" msgstr "(*) Listed in group" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 msgid "Gestión" msgstr "Management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 msgid "Crear" msgstr "Add" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 msgid "Crear nueva cuenta" msgstr "Add a new account" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 msgid "Ver detalles de cuenta" msgstr "View account details" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 msgid "Ver clave de cuenta" msgstr "View account password" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 #: ../../../config/actions.xml:259 msgid "Ver Historial" msgstr "View History" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 msgid "Ver historial de cuenta" msgstr "View account history" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 msgid "Editar cuenta" msgstr "Edit account" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 msgid "Editar Clave" msgstr "Edit Password" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 msgid "Editar clave de cuenta" msgstr "Edit account password" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 msgid "Eliminar cuenta" msgstr "Remove account" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 msgid "Ver archivos de cuenta" msgstr "View account files" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 msgid "Publicar Enlace" msgstr "Share Link" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 msgid "Publicar enlace a cuenta" msgstr "Share link to account" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 msgid "Crear cuenta privada" msgstr "Create private account" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 msgid "Crear cuenta privada para grupo" msgstr "Create private account for group" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 msgid "Asignar permisos" msgstr "Assign permissions" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 msgid "Gestión de usuarios" msgstr "Users management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 msgid "Gestión de grupos" msgstr "Groups management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 msgid "Gestión de perfiles" msgstr "Profiles management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 msgid "Gestión de categorías" msgstr "Categories management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 msgid "Gestión de etiquetas" msgstr "Tags management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 msgid "Gestión de clientes" msgstr "Customers management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 msgid "Gestión de campos personalizados" msgstr "Custom fields management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 msgid "Gestión de autorizaciones API" msgstr "API authorizations management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 msgid "Gestión de enlaces" msgstr "Links management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 msgid "Gestión de cuentas" msgstr "Accounts management" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 msgid "Valores por Defecto" msgstr "Default Values" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 msgid "Gestión de Valores por Defecto" msgstr "Default Values Management" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 #: ../../../config/actions.xml:691 msgid "Configuración General" msgstr "General Configuration" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 msgid "Opciones de encriptación" msgstr "Encryption options" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 msgid "Backup" msgstr "Backup" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 msgid "Realizar copia de seguridad y exportar" msgstr "Make a backup and export" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 msgid "Importar" msgstr "Import" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 msgid "Realizar importación de cuentas" msgstr "Make accounts import" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 msgid "Log de Eventos" msgstr "Event Log" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 msgid "Ver log de eventos" msgstr "View event log" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 msgid "Nombre del perfil" msgstr "Profile name" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:46 msgid "Clave Anterior" msgstr "Previous Password" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:73 msgid "Acceder" msgstr "Sign in" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:82 msgid "¿Olvidó su clave?" msgstr "Forgot password?" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 #, php-format msgid "Actualización %s" msgstr "Update %s" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:20 msgid "Actualización de BBDD" msgstr "DB Update" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:22 msgid "Actualización de Aplicación" msgstr "Application Update" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 msgid "Código de Seguridad" msgstr "Security Code" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 msgid "" "Este código se encuentra en el archivo de configuración de sysPass con la " "etiqueta \"upgradeKey\"" @@ -7016,7 +7014,7 @@ msgstr "" "This code is set in the sysPass config file within the tag name \"upgradekey" "\"" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:47 msgid "" "Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " "o indique los IDs por defecto para los elementos huérfanos." @@ -7024,31 +7022,31 @@ msgstr "" "Some orphaned items have been found. Please, modify those items or enter the " "default IDs for them." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:49 msgid "Si no se indican los IDs, se crearán nuevos elementos." msgstr "If the items IDs are not set, they will be created." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:74 msgid "Introducir un ID de usuario válido para cuentas" msgstr "Enter a valid user ID for the accounts" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 msgid "Introducir un ID de categoría válido para cuentas" msgstr "Enter a valid category ID for the accounts" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:96 msgid "Introducir un ID de cliente válido para cuentas" msgstr "Enter a valid client ID for the accounts" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 msgid "Introducir un ID de grupo válido para usuarios" msgstr "Enter a valid group ID for the users" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 msgid "Introducir un ID de perfil válido para usuarios" msgstr "Enter a valid profile ID for the users" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:128 msgid "" "Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " "necesario reencriptar los datos almacenados" @@ -7056,59 +7054,59 @@ msgstr "" "This update uses a new encryption schema, so it will be needed to reencrypt " "the whole encrypted data." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:150 msgid "Introducir login de usuario válido" msgstr "Enter a valid user login" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:162 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 msgid "He realizado una copia de seguridad completa de sysPass" msgstr "I've done a full sysPass backup" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 msgid "Por favor espere mientras el proceso se ejecuta" msgstr "Please, wait while the process is running" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:186 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 msgid "Iniciar Actualización" msgstr "Start Update" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:95 msgid "Notificación global" msgstr "Global notification" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:103 msgid "Sólo para administradores de la aplicación" msgstr "Only for application administrators" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:107 msgid "Solo Admins" msgstr "Only Admins" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:29 msgid "Nombre del plugin" msgstr "Plugin name" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:41 msgid "Versión del plugin" msgstr "Plugin version" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:46 msgid "Versión Compatible" msgstr "Compatible Version" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:53 msgid "Versión de sysPass compatible" msgstr "sysPass compatible version" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:39 msgid "Autor" msgstr "Author" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:65 msgid "Autor del plugin" msgstr "Plugin author" @@ -7121,7 +7119,7 @@ msgid "Para iniciar la actualización introduzca el código de seguridad" msgstr "Please enter the security code to start the upgrade" #: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:13 msgid "Solicitud de Cambio de Clave" msgstr "Request Password Change" @@ -7129,68 +7127,68 @@ msgstr "Request Password Change" msgid "Email del Usuario" msgstr "User's Email" -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:39 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:49 msgid "Volver a iniciar sesión" msgstr "Go back to login" -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:46 msgid "Solicitar" msgstr "Request" -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:56 msgid "Cambiar" msgstr "Change" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:107 msgid "Ordenar resultados por visitas" msgstr "Sort search results by views" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:109 msgid "" "Ordena los resultados de búsqueda por el número de visitas de las cuentas." msgstr "Sorts accounts search results by the number of accounts views" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:124 msgid "Barra de navegación superior" msgstr "Navigation bar on top" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:126 msgid "Mostrar una barra de navegación superior en las búsquedas." msgstr "Shows a navigation bar on top of the search results." -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:141 msgid "Mostrar Acciones Ocultas" msgstr "Show Hidden Actions" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:143 msgid "" "Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." msgstr "Always show the hidden actions on the accounts search page." -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:165 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:175 msgid "Notificaciones In-App" msgstr "In-App Notifications" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:177 msgid "Habilita la consulta de notificaciones activas In-App." msgstr "Enables the active In-App notifications polling" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:16 #: ../../../config/actions.xml:277 msgid "Ver Wiki" msgstr "View Wiki" -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 #, php-format msgid "Resultados de búsqueda de '%s'" msgstr "Search results of '%s'" -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:37 msgid "Página" msgstr "Page" @@ -7559,6 +7557,18 @@ msgstr "Text" msgid "Link" msgstr "Link" +#~ msgid "Último backup" +#~ msgstr "Last backup" + +#~ msgid "Última exportación" +#~ msgstr "Last export" + +#~ msgid "No hay backups para descargar" +#~ msgstr "There aren't any backups for download" + +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "There aren't any XML files for download" + #~ msgid "Hay %d notificaciones pendientes" #~ msgstr "There are %d unread notifications" diff --git a/app/locales/fr_FR/LC_MESSAGES/messages.mo b/app/locales/fr_FR/LC_MESSAGES/messages.mo index ea9c62c5f1d097ea73e4cc456496499a9f004a61..1f9a910ef90ea7788d1d5580d5f93262f680727e 100644 GIT binary patch delta 18944 zcmZA82YilK!^iPUfk>hgcMSnmJAZ zhH@f__>xf%Lop70us;Ul5M)lyN9d2sF$}k0K0JedcndY~GgLd@=8jVg!!ZXo#!}b< zwa`K6#rVz?BAVe0)IiHH9QU9%UPldd-^E^Rn&ktZTdNCAkR3{aZyx96)-o}MGX*#+S>N09T|k`XB4Xc zPf+a^+58RYQp0^jH1i)(Ge3*!_!eqMo}xMmYH2!-K-I5o(~Xd`blRcX_p|xKQT0B= z+&BY+a3N}fn_9B}itM!&en!pkqD|jNb@0Nb{aQIrEa}2n0b8N&=}6R(t;5oI(xzXa z+LvtYIJqzu1F<%8-<`It+5dt>I+EdqDX7bniCW1N)EUl2-Gwal!ELA&??>&-dDP18 zp)clWW6n4qs-J?G2TNP4qK>MG%Vs2?9~pyDJ1`nGz*JPn%TOI`M-6z`dLI2r-$PB* zX=`qM0aUsw>g-#h7WOtq;BeF>bj>HC881PtY#r*dZNtuZ64kImJKlYK17mO_j>7Ax ziS=#oIK^=&YT~m|6JLXR-M&YC9$d2J&rRCp1a&ZH5{+uu*rvOqR+ffuq6@WUXRt9o zK~1<$M{|VDFo1L~)J|q#ZXAP}z(+QJC2GQ3FsI)C14MN8KcTkdSJc*>!$ABCgV3v! z+1e1)K($eCPa9N+oly%&Le+m4^Ws!g{e`HBeS;cr5Blo;|AB~B_A6G$N2r0L*nf4@ z5c6Rd2`6RopQ^_HOeU2pUEq28WfP&;uBbyx0nWB&^g z3E+UMV0o;Hy)ha;Lk(~UwF9S6J8}ax&`Z=-=I(BeA_!Gp1XUi5g|QB*eOH^`A60Ky zclKW^nM{TTT7*ikLv7IkR7a;!4X&cj4`M!`rP_8>Q?VSo!O75jxVA*cx=;NZ=3Q^)C6Ks?HZz1-VW98 z+o*QwsJCp4$#*&9iRg?z!;!cF)iAo3dB5wTI%tk%usdpi4^SO`imJaDbr;s7>VJ#c znZu~9KY^-u7WEe0z%qLOtHwJ{2{L+NF?=73;vy`MyHH1T$CelEZ7&t7URR93p{P4D z7c1a;)PNUJcj6Al;4>V64$ z3eGfag!geUR_Vi+5L|{DuwY+4@3A@7#oeeK$<~kepG7&|L>gj$tca_yIiABBSUTCP zEFQJxLs56)L(GMrp*mcIUbq7FHmpb8iJhqWM^QU*8B5^ZWcFWYAJE^dtO6D!-3xWb z!%?3P<1rU5z#O;|HNZOb!5yfH9mM>28g<+6+I&y;TN4RH^&4)jG=TlrWobx;R?rbO zP+b1Dp07XukF4N7b*2nm`Zq+X5!K;vREHm-I$B`eh}y9qP)BkcwSZHo1zgA6_zdIFE6tR5K$RyT?Oo0g zA~9sVi`wGV7=;_L3|>VI>_3PvoEVPnup8FGmDmmczzWzP-CW)@)Z4QKtKvE2!_^5I zZ0e_D4ZZ(A5YcOtBg341BI?qmqAuqI)R`^9Jh&6{;t}fw)DGT5?U;9_Ihs(^CuyYU;TF^{DvLy zIkv)f@AAzU=VJ_BLv4BRduHc~q28j3sEIVR`AuC!w1r(zuTdY=%2H65W;~X~6{wY; zK+XKT%?}!7z8BQPX5{z9TDTUY@D}P06k(w{>T>9Z_0b1i`VFMB?1nmm4Ae|VV=zuf zHTW9y;kPz@81-JC!P*!xnm;@-0UP2*RJ*6Be!a$+*E6`PZl&+>GjHKi0%Us0rj4Ywk#(wHoRUbjMi6cSaM@S!Y?# zpe|Fk_s!N;L6!HkjzfJgt;9$?fhF(-mdE1bO#RlV2@XNs`Y~7iPz7KeIk5-|jappI@Ds=vip5D%kE zXK{syF5NR!!~Elo5vYdMtj)0w>F%i4^E1@M)?yAkhwAULO+Q5)%}bk~XM#DBaMWdt zoxuL<%$t&-50G}K2_)I{P%KJ%5^Bqqp*sA=mVb}h;!~)dyMn6s0yPoeiKe_bD!+oY zChDzdI+6X?CFx=-CSfts>8OFHqE@;Fi{n1@!s}QA@1g3Kon*>eU{lg5SOhnqHy%Z8 z`DxUI@7w(6E+X3Eoc}Q^2u9637PUpqFcN!WOZ*Tup`TH&=?zr9=cpYFm~7sT2+T>k z3F>HCq9?Y;CfFJEy1Kp~(tyZa?1M2=%wbG z|2dQR;e&-fw!h3!?V?aSSOqz1ms5ubud34;2jEexh_yd4zcf-XH|g1^l`cVT<+s=d zkE147VyYRaKI$!Kfm%=kYQRINqdty$D=uOQz5maN_>vJe%~&3_W!2Fi>!Lbrjaorp z)MZOWwVQw%;8WDmeStcn^)`JFo0GnP5m;ur`6|~Ib1}Y?PDCpjiGesB^?|Y!^WY)W zK&LSuUc~@>jCs-LQ*-%>U@p>iP+Q*=bvfIkCN$VO5wny25?vldmJrd3mtikljj`xI zgTL*uA?mgtMh%d2rs*&*29hpq)3s0&YmY&ggxZl2sEL1KU5Ki;VJ7>p$bK@^(HT_3 zJGP?dEOWW?qduTQQ9Dut)vlSfJL!1n8y&ck3_g#~aQ zYNyYk#&g}b1y50zBJUUGb;^(GuoCLl*FdePKI(mMjOw73O?N__^;_0V)Iuhq7P100 zfxW1sJBx+%{@*2{4s*>lD+)lpb|I*lmdDyyA9btWLv=g>)!{O1h&xde^q6NRmJ`)J z4~Ah0)Fo_$I{QvoSnq#-B2i>~fNHP-HK79-g2zxZzJpCM+kEp8+Z>hO4|V1vQAaTm zS(!5fb(hwlj%+^`!BaN>AqKk0$o-|6c^GPi;i!%(qGntRb=Iv=9d<#TZ5k?n6sp|> z)Q(I?)mwqe-;KJ2KcXgj2G#C5x|H#Nhz4>Nm<9pXqNwsn)P$;{8a71jP)pQ+olrZM zV$-8h^=F|bvIw859z#jDM{Qj?>avYRUB*eMTRjyu z!4;^>yBT!{wxf1v7wS?TwdrfP*MomyMUA_43Hz@Z{X{t`$y2 zZQXoS!*5Y%dj>VYRa@@6%e+N#o9=?{gHR-OL@T|Cnz6Ie zbW{+PE{p1*0cr*9QAaZX)$Tpi1gF{bYSch`tiRg)o2Y)AugwnTL-&9GD@UXm`L(eT zet^yKAXdh}RpwGP!xE$iqE_$;`rtCufLW;9zaKTxAJ7Z0U>M#)-66l#X2&AYr3!V4 zsG~PfD{hDCupeq`-$h@XhPiPbYJip2?@>E(4$I&JR6ikWOnxQQgqxw>u3o4e8?lD{ zSHVm&VsN#scoEgX6V#0T*P7R+ENb9(sE+!h1{{ZVaW!f|w^0*)gt^dTof$AUwj~{D z)9t0nfUKlqM3r!F(_8ip5FKLv7J_s1=_@b@&Ja(fb>-@(|QS-$2#th z^_q@G?eut5`}r7zt}G%Yi5$TEcnj6QW25Of7i#4NQNInNP zqv}t_YPcNp;w98V9$*2+cXDhpw>|`GQqT));2fKO0(EAEHkTR2fc^KdMf{4y!C2FQSQCoS~`U~o;&Y}js zkJ|c|sDblsGv(o^bPd!cYl)ih04#_j(ES?Q{CVj9_rFy(W4HAfYC;!LGku7B9e0>tpBbo*rdsEqR=Nba zEY2qM$0Mi-o=5G>1Js#&?KBe$M(spt)Q;6e_0tSh?@e^?%ubi-c!VvOit2EoO>aV7 zmIJ7xIgi@Ho2UsqMs?`>o!N;H)JjWX5v+$U?2c;p8)|`npeA(RMMR(Jp1Vwi2-J*Y zQ8TQMIk1gQcS3D>BI=F|L``G}Cg4P@iMO#lM(#F$sB}W5-^V(*7Ig%!J4C7xslLa2 z0U3l^!F-IwEm#Eo#S<@UM% zBy%|(h{TXF12w>YtdB2H6RWr1{B1W3N0PpR4YAh&R*j3WH5NK(KDhc}0_iktfIp-9 z&3}jsi7in(v=IGuIOmAyY;L2r{wZchuOG~9&W$?zf|wJ-QFo*q>XOw*AMAj|@GaD3 z9fj_NVKC|asQxdacK8mu|Ni$rYz7QK_duwM;iyXzYi*1nq&wSm2CCi%s3Vz1#6K$k6u{#i1}zO zfyGHTLVe&Qp(gU4bt-DdmY{ZI^AYx6kz-_NMmJDf_Y&2xz)$A&DvR2QTBxmSg{t2d zHQ>8g0_WNEF4P1rqx$&=)!zT8>905{KlUi+ugDu@Xd-W-b|k|(0`rm{gX&-!=E23- z2D30PdLA@3(HE1jIi_Ph+=}_|9~Ti-^gC|0v=QpoyHFK3VOe~PF<9bf zbICelMbep=gp08=`ut-4gGD?JB>fd?LP00YLPJombF|eJM?_oI2mNpqYK4B%)|<~9Cep|wf>GC`f$8$BF;V3R{e#6_!2`g z@K^JhAB+0rYlyn6aj2Db#ZuS{b#xzM5KckWUx*rbCF-a)TK8js-v3j!!cA01f1@T4 za>`5~8g*7}Q2Ftw50D|Kw`DEH;tA}5-lxr1xg^wrR$@`ygoRWO{qZik-~X3HG{anH z%z#0tEv$q(<1QGDrMj zG?9Gg%~{sKG}67Wt16&ALd#q*mv8`Tz?rBcn1i|-%WVD*)I#=P0X%{^@G1u2P1H`j zz+xD3k^R>h)xK!nf+naV7>U|}1=t?b6s4#%U;a3<=~eTBLktI!j7 zS@)toIS*nK{*0>camCz?TrMKovium1VW^2TL0!7`=!uEg5&PNl?O2lZAq>Ym*1)Ug zGFHcOtIrLkIsafH)hLKSHFyj4+6~7XxD0i+t8IEW zs-pv_0Z*a^xM|Z*(3`a1O>@Z#pxT#5?Ld8u#GaUk@tqHe_~H!ItzLi{U=!-r?nMo7 z(w1LFt^BFg`<6);M74`Ry$zKy7dAy5Njub;4@8YK0bRoQel93g3KSzV%MT7}D!d3%%?j zqOG})p_t<@^V)=?Zh2qSR*%L&oQNH8F6s>LV<37xG&@uTwX)in8@r+|agucaYJ%zL ze*ec3$xg;xREG;u4K~~S9jFF-P-poI2H{P78=XgH;9jT?q%r7&OHgmqT2#A3SQam# zKj!}1y^}5{gorLn1Zu{0Q3J-IE@KbWmQO%+JPnKET+}7ni2-;4wU7s>JMkDb&_CD* zeIJ{@69%L1#4fC-_rK&5({Tc-qg2$^k3qe!pQ9$Y3AOT{umE1M{$tAno|+YxMb&SN zYTpBOwC|wW%|_j=H5kSC&L$$d4A(FpKD6e1W_}$9V@L8QU>!V%+My!FD>|Ow5JlNpHtWcmwrzguXCGRtgJ~Zi=O`_Y3x4XE})s?ZDTl*X>)I-iNx3zu5E{ z)NQ|xI;wwBEB1eB^21SETOGC4^-(*~1vOv~RDa`86PxtXWmYtm46SGes)MgkTeli@ zB%3fl9>g%bfU3`b4RV_gi;yaTnowO-KOIn)x;tv({ZJEs7wh83E+U1996{~Gb<|9K zvSoAs`iwhLlKSW8#VENP!sUVZrTMQ z^<7Sc&8UpJWN+AXXH>&}s4dMz?bJln=fNUW{Z*&|x1;JGw)v+}6TEKopILL}F!cj4 zFXKDKiD>4rsE+HSR@wq}roC-?6lzCiq9(G`mhZCV=TK+<2z4aSu>|JLX{?00{hd+e z>FCAy&Nw2vjgwI;nr>Z$+QKZkOJuK{5Wp^okFoGtSuZx;2xz^0Vl#}cG>Q|?JPO?oRq zPYmh#HXcXa{G^jf_sgdJ=Q-^DX?_%@U>OzG+q~KM4(S<$zbLza2MBt4xqtHOl>DBA z*Pr4fw5z$OTa!Us5Vn&phB@%G z$g7Rl2yYVpro27sxre+}?myY)VVuc!3eiSSHu~*N{%+!*<9CFelm!qX2+hcMufH9M zYHGoAjL?;|o^mw!i+B&>{>1-7{3{H`cL^U6^qeAiGuTMf8=&VigHxCMx2dN$Mo%f) z>uE)PJ`cuUL&hU2Oegpd2AFcE5c!J<`q+GgEhzhxu#5N;TtWUvwytc7A%SQ!Htd_M6vJXrq*A{Pl22*1$kF246#2kPiLd12(u#U{3FKKXr#dy$u& zaGi8s(&Y(d8GyIaX@>=HFy+Mv_X)3_yNYQ4KO{4i@C_AxZH4d2e@40i4#C#s&%&lS zn^27W#-w}Wt7jOIy{{7JMfomlj;#r|Y*_~F2iv&o00nwh5e~XzYzuiMsPqFtPYqVF z80Xk@F3Mxb)8tFySykd`M7#%OKM?AfEN2*TJ;!M~!bF{g#G4Rq>HMeJPWMpwlCXsa z6>OuiwoL6B+ISf8B+4&gBMcxsrfegQ!JD?;1YAU&IP&%AcfnJ_2TJf9cIRseuRTRr z!AYBrzU2a6^DE_p$?gS`JxzYczf_X)=+TSJ;(3GP3~ z$#Qa#PH^$#)e~joC#e)oN0&+WBP^uCCW0?{KfJ1J-GDv+U*2ibR|rdNfAwhhgmhif z_3;V)>zRT2cSiTqkV^V`9fo@JHR&dyGL6!0M^|W2hrFVsKgJRGHhEo%@5X^Rk?09t|27hhNUb4!Nq9=SAPooD#$-7maY@fX4+LKbCHsZ*8m3B;EY_LCpz$@nLT=$S!i?~d^X;8)~7w`FhQ zo8*Ps^3HVd2A$O>yhU73JzMvCj3WPn$#(y2%TKV#rcUWfXBNS|)=RW^|LcXW1=@DJg4(j8GxXM^N= zRSAEmqzbkoeTuHmlb%I9lK2hc*-_t{Ul3N1A4qx^>KR8|PX&W>&E|iLC2hO}ee3B& z-P`09@?=-Kk&(|99HHPx(no9qRbEZrho~wWi03DAj(BccXA{0pC}q=2ts|-Xz{VZx zB-(vQ{$Hr)6MZX4A>#uDDn-)y3gUXs82x``G*f#ETOjhb3tfO1vgvl`TI+ zo*#=?Z__JDccJcB{MY9FL0Zoeg8Qv#L&jM`B{J$`b;1_HOr>q3?)Wu%2guuqdVV7B zZ(FXk2l1Rbp4am9chpQAM!pS>?iLA z>7v9l?IaRx{b+1S-V4Ge+twQsY+ThUQP!FX*7$E8>+eV+iNZJ51yW{<)_&`!fakJ zxLO6LnNN*r11qvn-^n6Kvf8s%ezNBm0opKl2 zAI->{Lisl8{;qzA@3Z}>%0@y?(m%hJH^jyd>RZ7i5|gQvhmM{SA4CUw_F%M)m#1tl z@%K%U`)3Q%;|WJdEyCrr^`PEJ+qo*;ApiBJBISD4**d@K^IuOz!ZIqCC5$GVB~&ML zA^!p<(x587dVVB6oy0NnM`Nwm%3jq8qHH1gB?*Oze~a%ErVy{pM1H1XIeicMluSKm z@D^b$@eWjKi9>Cf%3nQ8$cxCT(6p^bzQm-Ag!sXI;}g@I27?p&B@dl`bV~lLPnt(W zmPtrU%@~rB86TFI6qcHnncOEiAwD5FEj1}4EIuJKd1!n_So72h4F(O$T9!V+qv-#u zGAJoEF*zwUGby8HSgFLUmYES=p<#nk;!`t|Q&QsTFpT~)sgV>G?;bcUD|O^d@9Cw- z70v2BuD_?RdmuZ&uJMfm{o^y-Q+YMxERQ*RauyntGNf;Es_Aavp!m$>-YH38k)<-q zOy9g8IetB1wL){LoEE;?rV>4imKrK>BQZBg&(eHQf$ZpwTH z$7iMut{K)gEh#ZMGb|>mdQ?nI)_038dj_&UNrS^O_bgA@vpk_6+qP$U)|X3T%2jNV z8qc^HVVV6{jrJzVZq0u;E|ZPR2pg1^l9HU-H|yx}RURcf_DdS9#V3Wi_bRpT|5kQy z+u{=kyh?@*OiSFejCHYBcGEJ$2C@Ad42PmgW%WCE$b0%**J@^ce=XC~%WPX%R@oar z1^P8k88 zsZ>_Ej#IvlJF~8#`le>}AtqtdlVd`Li%Du0*xlkLu?v=EJ)f#88e;UB~ew zBNRih82Vy8%!MtGIXOv~87E>G&d02{3j^>tYTz_fyL%XlUh$5T9>cK^7DX+zF?ut; z^AQmZFc8D>bM(P&r~&rb^3%5b9%|)T>X`wHVkXiRQ4_3(T4@{1fXS$d4Mt65f=y4w zK*o2zv;|vG1MaZtqo{#SqdLBe>gWafqhEb9KrYmlhN5<&GOC~YsI6~@YL{&DN1-M* z6J4750wNk<4XWdvs2w?k>gXD(3ygUj@fh?mL`20OJJS^2E)3jBO8GcxZI|Xq1r#hjQAF_VaA4z z!##KMVNT57kp1^2Qh^Lzn(C;Pv_YL=FVtNaiM}`ywc=T*o%tHIvc2esKcmk0H&j12 zFcUtpdNwjg6^P1@b`c36QWdoW38(?uqdFdls`wdd!1>m%F*E7CsEM9H-S*#Y+Ox4a z``oC7701FDhnip?)P!9rM6|LIsLM7HTjFw5!xz{Wvo&#?QaBn%;5O96K4{7|VolV< z6HyZ%j(W|eqrL+hZ23`}zJ?r$%Xw`JvNkhk6p5K>Pzl>$1Jvzag|+Y?YQnzF%^Bvv zK++{pJ6R3=u_0;#ZEgM#)P%>OZvSj_zyDtl(Uz=0ZRJ|bhTma!Jd4`eKTrc@Y+*VG zMs-*awer%a`tg_r+oS6DMNRBe)Lr`=we|BbpWgo!M9Sm$sDWRiI?BvBWW{jg&2!2j zufFps@*+4VkZ+Nb=Rdp&*cH{!dQ`nzsPa;+948isp?3Bg)HsJwpL!>ahz7cXn)xG} z_GoRkGCS%B@?#KIMXji%wJU1NQ&1hdZ2nBt+p`q46Khd-WiRH&E3G;IvP7PfQ4ULT z;L+F(HNafd#8#qqWIJl0w)~DQe~o#__ibz17ecj*LG@D$wUE|r*?$d` zY%@lnwrDo0!AewvEvR~jQ9E=Fb@sPV^`4^6)Z;_baVAv#LZ}IrLG45=>Vs4hqcFim zq$82xs7v-MYG$vIO>wffGhenO3?@AX)j=w%!@Z~p9YVFcfSTBSRQ=beBgxa=EG)`e z1#^+_YDh#|+}%19)xjjxnJqwdydJePKiKqHTYe8Ufj6jjnLC)3hoJf`j%rs0^_DfX z`OT3dayi|I45MHaYRg`u-fzE-rh_0XLOK#PKvPtQoly1rq3(hUHQ;#E&df(`{W4U& zHK?~}JE}j=PL5N6@tqPxLdj^1`7jxa<5Y~o-M0KLx-V5{Q?C#fro1NVj`YG3=t2#+ z9(5;nV<|k0z419V#KbO+(~9w(twbU*psVB5!E#s-N1$fB3`^sEtc>{+`M6*Qtcm+D z1wFd)TM`aL4R`~GU{H6qAE#jkJc+EuIft$qL}GgI>fy&2k8804K0&Q4s;AlVny5R` z3^QUkRENpvje}8dg9~*hCZp;vLhZyREP#7ZJ9(ui`>&O~AR{N1=w;404)uX(ju|lt zb$N!M1{i_9I0_<6p7l2(x?tQ zqgFNqHSkE(+b{)n6f11`b?aT!LLQ@b(6^7djI}T?=>!bHo~WIj;3A?GEJDp_J!;0^ z+Vp7*BYhp!!1E(Bfn2DSmPAdoCTgo&qb_qFRQ<`QEnkWn_y^37zoRDVO3#f^NBOL! zP#wmhI&6#TD9Jh+wPW*8NAe|V0V`1p*oOXi80+I%TOQWelt-i5*FY|*%ZVqVEgptZ zI2w!K7SzC(@dJE>O|Wn>ziQ(U)E9CqmcUH?%;l|wdV9tpA5mv5s-Aa>Ig(DOw`U<{ z)cgN}h%TE~e{(BCP-j&EGhqwVk#w~VL~Y$T)J`o%-HENJPwFw$mft`fh4%pZ#t00< z;#dX~FoyA+QABk4cA_sHKo2}={Ry?DXHgTmhI)M-qb3+I(7ay3n3;4WYKzOG7FHG2 zzBOjYZs>!<(4~SgMAY$g>oQbFsi^V;sE$sf2E2>e@VPZ$kZGSE%adOki(zjpgmY0J zs=XMG=?0sA>knrCbt_wu5rl(L6Pb#d;g{Ccs1wOtfro~&{|ksT``CQT?_({}Irxc`1KVITOvVKK0c&I6aPx_6joRu- zs2!Vufw&Acfo(Q_7i#B@qTZTIs0Ced5z%FNfkiRjCuZe!Q8R9W${&vrxCQHC8dk)D zBg|XV0X2cCs54%S0ho%qQ~OazcpP=4w@?#x{Y@knkqqpF8iZn2EMe1CQSWgAR>Jw% z6whM~EHcux>x1g}W7O+B9<_th&=XgpF7+DJWnYIS^!|TCL|bwLHPgG+rx-%o8D(yF zC~6Cfp*o7iSgeei_z=|H7-wCJI{TAY8vn+^Sol+80+!MHKY)m~cC{@yZT%PZAqp97 zemvL30;Kz4ah!$fa6kIt9b5hcb?bAEF~28NM)ltowL_y(NAx*XVti*M5uMF-%!{v3 z4RVb&168wrglw6!0Cnq+pf2At)DgZ#y*;_cncw}2ppLROs=rp46Gx(sW*)k93pWr^ z!ym0_sD}5fudy=e%;U{#ntOrU-`xI603)BSG*z#{}{xR!C)Z1|rHKC`demp0# z|Di-OPc#FUM16=7Fh6!hZybjea4M?)5nFx->yY;S%p6@)^dX&u+Umimfu`B~g{Ylf zfm*;fE+U%wY19_o!bp6H4KRF?nNUB}`#J$tZy{<6H=*8=A20*{jyjUN=!p+84xgZ2 z+t|tcLk^sR-OzQ4NI@dyrtnJxwm}`iVbo6CM0NZMH3845W`#l4P~?A3B!BqgcFc(1 zquL!u?cf>IQU8LxiO!$cTkn6;G;^ENuowltpPMr+hgxY()K<2_MwpD6;CHBjenZ{< zJE#?4&z6V5!-EGRc-V|=F+5zQbTojahIt z>T>Qxb@&Tv>u;hi=R?$lvdl6@pcm;X=z%p+3$Bf>jzk&|DUIuKB3?z^_Fl8i04q=( zZoq7K(55e;CiW1sqvss6Be_r$kFr)n)oW@^MD;Ud4(G3ilWoPNsMjYI^djGZTzMt-K9t=Q_?~|8o-QMTWNYQ(LeC zb!j%BIy{CY@B+qQ`uXM;j>@P@mV|oUhNC}@#8x;3^;7c}7Q%uH%$GABb%zGIi0I5l zU>;nI5x5gIp=+p_dM-2*2|%qNw@rtlR#*&kVJrq=Gt?IMLJc&+=8r?&g+-{h$hC}! zI{XfG+Yg~uasqV}KcPBEv+3)YgY-RXx-ZNEa-tRxgPK57)RFbX+&CQ7-yGC}zC_+O zm$Qb5X1WtA;R)1j_FZH;&VlN%EY`pVs0mI(O>8Er{Xz`Gji}3a8g;j>qbBw*Mq%J$ zQ@=X;Fuv1*NH7KMQ8ONfb#N+%;CY+>6m`}JC*xy`If6FDBajQK$*d zM@@V^YJr>4&qZVp5zY7rYHQL^9o|5l?JJw_x5PBef!dKURJ|BfhmBB|uMKLV-BJAw zv}qS=oGGaKU!qHqwM5il8|tOJ1T_i(i`3LF}K0@8*XQ+u~U1n}=C~6DCQ9Bcfx{NWXvre%2 zovrlBf64ibQ>N2i#5z*HEf;yYWs1Yqatk%_2dJZYi(weJ+8#+6BHFq-sEQw=wzd!Ib`Qf0I2*MiU)c0| zo8F3Az(LfVxs2MeTc{7sTbuS;V-}VV)lV_>(fePCh*lPddTkop3Vl#J@(Jp4O+%ga zD%48$qS~Fd`M;n#euUZykF};<5NaV&sD;)=O}HHf>ir*JGsdGjSd3c1Ms&ZHsD^2% z2|loCzpu?eVb%}OJpihocBp}qYYxP~nsFa2jN?%Q zZ$Nc)7&YKEtb%@<%!=!wCfXD;Vh7ZKJ+U#4wdwQNm-J&SiJdp|D>%;B%>D-uiP>US z7KfTp8`RG9Lrr9?EnjTYsWyEa11Y~|ePZ=aHD9*E|nt^5q?HT@NJ1UFFaUtxC4vd#ROUkG*7@u>Q) z4n)*(H`K}ppne)oLfwVcsJCD%X2L_L%XZF||B9;r2gYEAZ_Mqlf?7x;RKJ~3w|*$b z;$Ezv_y3tKD81dB*&tMf!>9%xJIv4h+NiUih?(&SX2FZ756vH_yKo=F@FnKJ;GJe6 zrBM^Dg352}&gcC55y?r$C+-Zsbf}dsMeWQc)K>39t>`co#5C0F`UdM`!Chv;eNhWY zMZIqKQT;tf9f{9wGtpr5*85*X5iEr|s|u)r8=|)UL)5@YwtSRL&q4hdU4t6n2x=i0 z(ES?Q{FkVHefOApq1GsLzyFnqXr@h2m+3=P$K6mJk45dkEL*+^Reu%ghtU>ngBLM3 zmf34ez8q#aJvsdW%h8#mb}uzBfluA7e<*#wa|2T7c^nkw_vz2h1n9DwZSN1~swi zs2MN82waC_@GLgQ)<5uW<66v*0SC?Bd`hC~Pr&N92}|K)RR7_J9H*K#tt}DF>vq6}FMq3|H4CYS+WMC0 zr9rxCRoodskQ8T`dI+BOzzP+eBk^Q)ta3pG=lBg}NfU1{l%g3TW z>B$(5^U?k9|Mn5_B_rJl(}6##LJ(HOis+4lF$`U(vtEMw;CzpoNSgINYR5cInjOhu zjY3VR4r=Ej@Ks8i9tx)azp!yqO z^QT#tqmF1h>WELDV*eGnK!zIphU(w}X2Nu*`RHI4RC!0#%KD*pWDJ(Y$>@jQV?3V3 zs+j91(_br8yMAo}#wc|D5?%tR!mdTcU375RAZ2 z@B>_lB`^(jhkVW(v!Ms+5Nm$a4uzwRDjGu=->F3;GZ|gb2m7OL>2TD_CSoC+jykIC zm>u__>YqUkd>OOgZR;}(B%SesDGx^V6M>pQ0*2`Q??fak86$1M4Ah6?E7V(X4NGH& zi`-bOfN?knwW7llriU@Wp?Ck_i@S1if+&IBUSxWoE~HBXw^ z^7>ee^2S&WhvQvL#jkMjFTBebci9}(6|6=&-LK}TYG7Z|y|5LgVRbC?8~b0B$Uq`G z+a;*2Ux_(zi_JfRTEPhn!i$(5AE37QDdt0;E9TM`MjcIUEQ^g$TR#@H@~^Qep1Q*R zS0hs3s<}j6Py_|=2 z5qCr#(IlH*gGETY&Jrm^@L>a1_t@+YXfk@F9;#lE$@iVCJ#C25t`>1}s?s0h;-w7n50ScljM57wkwzjZ#MK$b?dMid@ zMx2E@ip8k2--YVuoK4?DZ_*k5G)J2W!$`-X`}hC0L@JZf7d7yD)C%{Y20Dlt@FJ?C zE0_~+qrL}kQ9BUym#JSALrGW0IBbX7x#bvuJ5c=|`iuS7%rB70ShM?|7 zA=ITQf=w~ergvZ`(oaxd(3TIl={O$M?;X@YUJp%wIZ^2l)HtOcvj2WWDv+@V<4{}r zyRGmSYUNLD`W0p&?e&O{6z0GvT!j&M9!udH)Jmfto1LkGdK;Re-j;r-%e~b_L|c6V zwT0)g8Qw*mVU@p4esc^X-2=6q zYLEqWmiaL|md6g5fMK{E3*t%i#mA`E=ryWc&Zp)>6NUPMwnpt_Pt;xMkDBl#)Oho- zn124RA)<=sP#s^v{CF32iTwXDXI31wlB%dXQ42LtUF?Rfupxenx)YiHHNROUqx#*1 zfw&vB^(Qe{@BeKgImz&PW>y}IL8MDr>!Qj#pjJHCrl+Ic_cf@qJ%nm^6Lq;>q3(v) zb8{EUU{=!At!`bP8#Td)s2%fp zY4Rhn5b08=Z~uR=A`Zk_xEWnli2OrD1C)Jbwl)rRM)BAW+n^?P9E+pxYxAGq#Gu}e z-l!u>!8|w%^)_s@`4>=c*>luek^YUjgxTJ(|H{ZsMmCHIlJ10> z&?l&lW}t5K0@TD;q5E=S71Ad$HwHNA+&dG2nrJ+_-+$CZwz`ODYxZI^{)nph0@Y!G zbm`o;wJZjcZiq#&H|or1qb9N*Lva^shte<^AEAz{vqw7jil?C#xD>VXt}R5=(RZkZ z7g1aDz^2oAnu@tF6ZwTvTVED6@mSOZYNOgULv@^J)BRC*YphMrMzvdo?5N90C8Di5 zg8B|zM>Y5pHQ*~$13xd5pA$7u1S-FRH4at332KEMQ4{Hh>eq!@=tR_!E_J6}Y&{V* zIER|ZEnC4!ZyE%n&in(^kyJwcqS6R;+f!`*6jZ$>s7tsSwUCY0Z&5pU3UxWpqWkav z7l~-=Z=qK3+UlRdy+ux5Oh3Cya=;IRkZL7_>HF59#d4 zcgp=#w{2#UYC!xob^Qpti60^_R^NX;Uy|9IkekL|U_-({@{i)XCz{B1!VfgoEBNlY zWCy8F+g{ZFK$7A7rDOl~ z`Fu>GE`>7)-x7a{YsjBsD~lK8SI6Fj8^qr|8;Fmf{!6@$WiT^?FCwmI3;sqZPB=sQ zPaOW=_V)a5kr_(nLab#A7gM<#aWC@H5pI*tOu85$f&q9-odnE*$&?2Z?i1cU_ibbh zd3^|})bp|B2PpfObTy4XfJg&d5QlRJA>`L2zmx4m3?lsSUYgH>^Bw8Bm_WE^%lgs2 zpN$_PU(Y(i5qFGVa>)y&&W{B5`pdD398Ob8q%;M zVG!v{1U)6m|C79|xQD#Y$g70k;zPnI%Jd%^cws@(dOS#XBD{M_*!WrMl%St$q`PTF zOR4bNh7yk!1P=6>6uemzPhUWfd`#3L~qvmbBEOXAOjD}>FIeNLS+ zDkr{@aFF~gq|cz9S%fC;nE6ZT3i4lgaQ=E)k!WqA?mt`5K}{N0CbT22r;6?9dn`u& zZzkLQXCwVdz0pt_^HBcoS!3I+vi;N`J&Cvnb#A(d9Iypy@Hb%#;V_lf<4M9?+rbHI z4I1tu|2aXwfV_Kd*?ua&*WYa7IqYOQQt=9*9C@{EBiBwk&1fq`5MM;W87j0QMA%B+ zl-HyzJ9)`AZ!qe&oBxnsfb!wQ%h<98xRo%S`g-nB#a{zq0TU6 z@H8_x<+c95DQJi(1b^Ew6Y=WAk5E>EcnIqGl0nZAUJ}pY&f&Kw(j6#IPxzX=>4aK@ zN4AZseMKltdZ7~UJu{b7^>TSJ&=d-z@fwAtu|DbZbo?vn*~BA=|3TanGa`SLb5@fd zNcvmUGn%-b;s)mi`TGAWumi(volw$xnp5{4c|o3>K`Syc*@EK~94CF;Hc;htsPkXEmP(+vgv6wenH+e!a?%xkj_Uu#SYxr)-Q?m$a_iHX4`sWXB$_w z(v;O>g6034$NHO*=t|*4oNEi-;t=v;X;2qGB3*}gJYfLoeT2pYJsIe*DEWU8)>3Z- z;WQyP=_B|PVF2;wg#N@o!f4D$(ElZk`-vj61Q~i(656?Ad}5Wy0GlaqPc(>hSK>v< ztBp@cKeO%1lGbyOaDz~paEG#GCXPE6YjrdgJ zUsGod29Umr8{X?k^>^qGp0@AhC)qyo*}PnoN4{51(&helGivyN%Hd2VuM#{dq?=JW zguME;qk*LFP&SfKki0gecN20F&xLx#ctTDkcpeZwa>w{Jp2A1e{oMBFzJFC1K+ll> zX7ZEH#&ziv&q?bn@`H&F$4D20-=y#x z5>IfNt)vG1-ivRtohknS@hHkZBjhE%m%LY4jPM(I4e7HBd6!AQd%hsjpHPZ$k^KDB z%a88+_kpe0ToovoK+v<8{GPKZ!+b(sC$+0mi!-Vf2y*L;7R(Y z_wxGN_+kAHFoDD*D*4gTKg9dm!S`cH8!tlHLgJsQNBhK+9!EGqdMU1=?OVc7f}VnS zoBa2m;&uTWZJl%Peg}-A)>l+6LeM8UjSxd zR?3!;Ux1L4_zwJ(Fo}36Ch{{Cir&b@0Od z8D_R$Hr1z7SmKc6z9|D{URf5D>A-?M1A2bcH_SAj`D9rmzfz^cqD#d_#}tb$J+tBR zeE%msXnAMP4z-)kytuqwYU34GJyUD1jw+VA;>n7)0|zCtUi$z4<*7|>kM&HwcXxlb)Ln0ede3c{A>GVkW|>Z{#FQlU WTfIw{1FQR+\n" "Language-Team: language@syspass.org\n" -"Language: fr_FR\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.11\n" "X-Poedit-KeywordsList: _;gettext;gettext_noop;__\n" "X-Poedit-Basepath: .\n" "X-Poedit-SourceCharset: UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" "X-Poedit-SearchPath-1: ../../../../lib\n" "X-Poedit-SearchPath-2: ../../../config\n" -#: ../../../../lib/SP/Bootstrap.php:267 +#: ../../../../lib/SP/Bootstrap.php:278 #, php-format msgid "Versión de PHP requerida >= %s <= %s" msgstr "Version de PHP requise >= %s <= %s" @@ -44,7 +45,7 @@ msgid "Error al generar datos cifrados" msgstr "Erreur pendant la création des données de chiffrement" #: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:122 +#: ../../../../lib/SP/Mvc/View/Template.php:127 #, php-format msgid "No es posible obtener la plantilla \"%s\" : %s" msgstr "Impossible d'obtenir le modèle \"%s\" : %s" @@ -59,20 +60,27 @@ msgstr "IP invalide" msgid "Es necesaria una clave con al menos %d caracteres" msgstr "Password needs to be %d characters long" -#: ../../../../lib/SP/Mvc/View/Template.php:274 -#: ../../../../lib/SP/Mvc/View/Template.php:276 +#: ../../../../lib/SP/Mvc/View/Template.php:302 +#: ../../../../lib/SP/Mvc/View/Template.php:366 #, php-format msgid "No es posible obtener la variable \"%s\"" msgstr "Impossible d'obtenir la variable \"%s\"" -#: ../../../../lib/SP/Mvc/View/Template.php:322 -#: ../../../../lib/SP/Mvc/View/Template.php:324 +#: ../../../../lib/SP/Mvc/View/Template.php:335 #, php-format msgid "No es posible destruir la variable \"%s\"" msgstr "Impossible de détruire la variable \"%s\"" -#: ../../../../lib/SP/Plugin/PluginManager.php:113 -#: ../../../../lib/SP/Plugin/PluginManager.php:256 +#: ../../../../lib/SP/Mvc/View/Template.php:356 +msgid "La plantilla no contiene archivos" +msgstr "Le modèle ne contient pas de fichiers" + +#: ../../../../lib/SP/Plugin/PluginManager.php:170 +#, php-format +msgid "Versión de plugin no compatible (%s)" +msgstr "Plugin version not compatible (%s)" + +#: ../../../../lib/SP/Plugin/PluginManager.php:192 #, php-format msgid "No es posible cargar el plugin \"%s\"" msgstr "Impossible de charger le plugin \"%s\"" @@ -95,10 +103,10 @@ msgstr "Requête" #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 +#: ../../../modules/web/Controllers/ConfigManagerController.php:175 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: ../../../config/actions.xml:13 msgid "Cuentas" msgstr "Comptes" @@ -122,7 +130,7 @@ msgstr "Comptes actualisés: %d / %d" msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" msgstr "Comtpes actualisés: %d / %d - %d%% - ETA: %ds (%.2f/s)" -#: ../../../../lib/SP/Services/Auth/LoginService.php:600 +#: ../../../../lib/SP/Services/Auth/LoginService.php:604 msgid "N/D" msgstr "N/A" @@ -131,16 +139,6 @@ msgstr "N/A" msgid "No es posible crear el directorio de backups (\"%s\")" msgstr "Impossible de créer le répertoire de sauvegarde (\"%s\")" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -#, php-format -msgid "La extensión '%s' no está disponible" -msgstr "The '%s' extension is unavailable" - #: ../../../../lib/SP/Services/Config/ConfigService.php:68 #: ../../../../lib/SP/Services/Config/ConfigService.php:153 #, php-format @@ -179,40 +177,40 @@ msgid "Actualizando datos encriptados" msgstr "Actualisation des données chiffrées" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 msgid "Categorías" msgstr "Catégories" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 #, fuzzy msgid "Clientes" msgstr "Clients" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:104 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 msgid "Usuarios" msgstr "Utilisateurs" #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 msgid "Grupos" msgstr "Groupes" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 +#: ../../../../lib/SP/Services/Export/XmlExportService.php:123 #: ../../../../lib/SP/Storage/File/FileCache.php:74 #: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 #, php-format @@ -293,10 +291,10 @@ msgid "El archivo de actualización no contiene datos" msgstr "The update file does not contain data" #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 +#: ../../../modules/web/Controllers/UserController.php:235 +#: ../../../modules/web/Controllers/UserController.php:356 +#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Cambio de Clave" msgstr "Changement de Mot de Passe" @@ -345,89 +343,89 @@ msgstr "Erreur lors de la compression des données du fichier (%s)" msgid "Datos no cargados" msgstr "Données non chargées" -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 +#: ../../../../lib/SP/Storage/File/FileHandler.php:72 +#: ../../../../lib/SP/Storage/File/FileHandler.php:135 #, php-format msgid "No es posible escribir en el archivo (%s)" msgstr "Impossible de lire/écrire le fichier (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 +#: ../../../../lib/SP/Storage/File/FileHandler.php:89 #, php-format msgid "No es posible abrir el archivo (%s)" msgstr "Impossible d'ouvrir le fichier (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 +#: ../../../../lib/SP/Storage/File/FileHandler.php:104 +#: ../../../../lib/SP/Storage/File/FileHandler.php:118 #, php-format msgid "No es posible leer desde el archivo (%s)" msgstr "Unable to read from file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 +#: ../../../../lib/SP/Storage/File/FileHandler.php:173 #, php-format msgid "No es posible cerrar el archivo (%s)" msgstr "Impossible de fermer le fichier (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 +#: ../../../../lib/SP/Storage/File/FileHandler.php:219 #, php-format msgid "No es posible escribir el archivo (%s)" msgstr "Unable to write in file (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 +#: ../../../../lib/SP/Storage/File/FileHandler.php:234 #, php-format msgid "Archivo no encontrado (%s)" msgstr "File not found (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 +#: ../../../../lib/SP/Storage/File/FileHandler.php:259 +#: ../../../../lib/SP/Storage/File/FileHandler.php:314 #, php-format msgid "No es posible leer el archivo (%s)" msgstr "Impossible de lire/écrire le fichier (%s)" -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 +#: ../../../../lib/SP/Storage/File/FileHandler.php:286 #, php-format msgid "No es posible eliminar el archivo (%s)" msgstr "Unable to delete file (%s)" -#: ../../../../lib/SP/Util/ErrorUtil.php:128 +#: ../../../../lib/SP/Util/ErrorUtil.php:148 msgid "Opción no disponible" msgstr "Option indisponible" -#: ../../../../lib/SP/Util/ErrorUtil.php:129 -#: ../../../../lib/SP/Util/ErrorUtil.php:133 -#: ../../../../lib/SP/Util/ErrorUtil.php:137 -#: ../../../../lib/SP/Util/ErrorUtil.php:141 #: ../../../../lib/SP/Util/ErrorUtil.php:149 -#: ../../../../lib/SP/Util/ErrorUtil.php:156 +#: ../../../../lib/SP/Util/ErrorUtil.php:153 +#: ../../../../lib/SP/Util/ErrorUtil.php:157 +#: ../../../../lib/SP/Util/ErrorUtil.php:161 +#: ../../../../lib/SP/Util/ErrorUtil.php:169 +#: ../../../../lib/SP/Util/ErrorUtil.php:176 #: ../../../modules/web/Controllers/ErrorController.php:124 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Consulte con el administrador" msgstr "Veuillez contacter votre administrateur" -#: ../../../../lib/SP/Util/ErrorUtil.php:132 +#: ../../../../lib/SP/Util/ErrorUtil.php:152 msgid "No tiene permisos para acceder a esta cuenta" msgstr "Vous n'avez pas les permissions pour accéder à ce compte" -#: ../../../../lib/SP/Util/ErrorUtil.php:136 +#: ../../../../lib/SP/Util/ErrorUtil.php:156 msgid "No tiene permisos para acceder a esta página" msgstr "Vous n'avez pas les permissions pour accéder à cette page" -#: ../../../../lib/SP/Util/ErrorUtil.php:140 +#: ../../../../lib/SP/Util/ErrorUtil.php:160 msgid "No tiene permisos para realizar esta operación" msgstr "Vous n'avez pas les permissions pour effectuer cette opération" -#: ../../../../lib/SP/Util/ErrorUtil.php:144 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 +#: ../../../../lib/SP/Util/ErrorUtil.php:164 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 #, fuzzy msgid "Clave maestra actualizada" msgstr "Mot de Passe Maître actualisé" -#: ../../../../lib/SP/Util/ErrorUtil.php:145 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 +#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 msgid "Reinicie la sesión para cambiarla" msgstr "Redémarrez la session pour mettre à jour" -#: ../../../../lib/SP/Util/ErrorUtil.php:148 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 +#: ../../../../lib/SP/Util/ErrorUtil.php:168 +#: ../../../../lib/SP/Util/ErrorUtil.php:175 #, fuzzy msgid "Se ha producido una excepción" msgstr "Une erreur est survenue" @@ -505,55 +503,55 @@ msgstr "Envoyer les détails de la réponse" #: ../../../modules/api/Controllers/Help/AccountHelp.php:69 #: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:89 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:92 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:163 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:293 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:170 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:253 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:260 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 #: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:35 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:98 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:27 msgid "Clave" msgstr "Mot de passe" #: ../../../modules/api/Controllers/Help/AccountHelp.php:70 #: ../../../modules/api/Controllers/Help/AccountHelp.php:91 #: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:114 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:181 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:90 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 msgid "Fecha Caducidad Clave" msgstr "Date d'Expiration" #: ../../../modules/api/Controllers/Help/AccountHelp.php:82 #: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:73 msgid "Nombre de cuenta" msgstr "Nom du compte" @@ -576,46 +574,46 @@ msgstr "ID du client" #: ../../../modules/api/Controllers/Help/AccountHelp.php:86 #: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 msgid "Usuario de acceso" msgstr "Login de connexion" #: ../../../modules/api/Controllers/Help/AccountHelp.php:87 #: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:136 msgid "URL o IP de acceso" msgstr "Adresse du site (URL ou IP)" #: ../../../modules/api/Controllers/Help/AccountHelp.php:88 #: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:134 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 msgid "Notas sobre la cuenta" msgstr "Notes sur le compte" #: ../../../modules/api/Controllers/Help/AccountHelp.php:89 #: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:198 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 msgid "Cuenta Privada" msgstr "Compte Privé" #: ../../../modules/api/Controllers/Help/AccountHelp.php:90 #: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:217 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 msgid "Cuenta Privada Grupo" msgstr "Compte Privé pour le Groupe" #: ../../../modules/api/Controllers/Help/AccountHelp.php:92 #: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:252 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:254 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:13 msgid "Cuenta Vinculada" msgstr "Compte Lié" @@ -637,7 +635,7 @@ msgstr "Group Id" #: ../../../modules/api/Controllers/Help/ClientHelp.php:81 #: ../../../modules/api/Controllers/Help/TagHelp.php:77 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 msgid "Texto a buscar" msgstr "Texte à rechercher" @@ -668,36 +666,36 @@ msgstr "Filtering operator" #: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 #: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:29 msgid "Nombre de la categoría" msgstr "Nom de la catégorie" #: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 #: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:41 msgid "Descripción de la categoría" msgstr "Description de la catégorie" #: ../../../modules/api/Controllers/Help/ClientHelp.php:54 #: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:30 #, fuzzy msgid "Nombre del cliente" msgstr "Nom du client" #: ../../../modules/api/Controllers/Help/ClientHelp.php:55 #: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:43 #, fuzzy msgid "Descripción del cliente" msgstr "Description du client" #: ../../../modules/api/Controllers/Help/ClientHelp.php:56 #: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:99 msgid "Global" msgstr "Global" @@ -714,19 +712,19 @@ msgstr "Id d'étiquette" #: ../../../modules/api/Controllers/Help/TagHelp.php:54 #: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:29 msgid "Nombre de la etiqueta" msgstr "Nom de tag" #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:31 msgid "Nombre del grupo" msgstr "Nom du groupe" #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 #: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:44 msgid "Descripción del grupo" msgstr "Description du groupe" @@ -761,237 +759,231 @@ msgstr "Groupe supprimé" #: ../../../modules/web/Controllers/AccountController.php:149 #: ../../../modules/web/Controllers/AccountController.php:204 -#: ../../../modules/web/Controllers/AccountController.php:474 +#: ../../../modules/web/Controllers/AccountController.php:489 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:56 msgid "Detalles de Cuenta" msgstr "Détails du Compte" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:256 -#: ../../../modules/web/Controllers/AccountController.php:300 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:278 +#: ../../../modules/web/Controllers/AccountController.php:261 +#: ../../../modules/web/Controllers/AccountController.php:307 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:275 #: ../../../config/actions.xml:157 msgid "Nueva Cuenta" msgstr "Nouveau Compte" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:344 +#: ../../../modules/web/Controllers/AccountController.php:353 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 #: ../../../config/actions.xml:163 msgid "Editar Cuenta" msgstr "Éditer Compte" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:389 +#: ../../../modules/web/Controllers/AccountController.php:400 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 #: ../../../config/actions.xml:169 ../../../config/actions.xml:487 #: ../../../config/actions.xml:793 msgid "Eliminar Cuenta" msgstr "Supprimer Compte" -#: ../../../modules/web/Controllers/AccountController.php:432 +#: ../../../modules/web/Controllers/AccountController.php:445 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 msgid "Modificar Clave de Cuenta" msgstr "Modifier Mot de Passe du Compte" -#: ../../../modules/web/Controllers/AccountFileController.php:186 +#: ../../../modules/web/Controllers/AccountFileController.php:211 #, php-format msgid "Extensión: %s" msgstr "Extension: %s" -#: ../../../modules/web/Controllers/AccountFileController.php:370 +#: ../../../modules/web/Controllers/AccountFileController.php:405 msgid "Gestión de archivos deshabilitada" msgstr "Gestion des fichiers désactivée" -#: ../../../modules/web/Controllers/AccountFileController.php:387 +#: ../../../modules/web/Controllers/AccountFileController.php:424 msgid "No hay archivos asociados a la cuenta" msgstr "There are no linked files for the account" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 +#: ../../../modules/web/Controllers/AccountManagerController.php:216 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 #: ../../../config/actions.xml:493 msgid "Actualización Masiva" msgstr "Bulk Update" -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 +#: ../../../modules/web/Controllers/AuthTokenController.php:114 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 msgid "Nueva Autorización" msgstr "Nouvelle Autorisation" -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 +#: ../../../modules/web/Controllers/AuthTokenController.php:179 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 msgid "Editar Autorización" msgstr "Éditer Autorisation" -#: ../../../modules/web/Controllers/AuthTokenController.php:330 +#: ../../../modules/web/Controllers/AuthTokenController.php:347 msgid "Ver Autorización" msgstr "Voir Autorisation" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 +#: ../../../modules/web/Controllers/CategoryController.php:109 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:118 #: ../../../config/actions.xml:307 msgid "Nueva Categoría" msgstr "Nouvelle Catégorie" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 +#: ../../../modules/web/Controllers/CategoryController.php:173 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 #: ../../../config/actions.xml:313 msgid "Editar Categoría" msgstr "Éditer Catégorie" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 +#: ../../../modules/web/Controllers/CategoryController.php:335 #: ../../../config/actions.xml:301 msgid "Ver Categoría" msgstr "Voir Catégorie" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 +#: ../../../modules/web/Controllers/ClientController.php:110 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:93 #: ../../../config/actions.xml:337 #, fuzzy msgid "Nuevo Cliente" msgstr "Nouveau Client" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 +#: ../../../modules/web/Controllers/ClientController.php:174 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 #: ../../../config/actions.xml:343 #, fuzzy msgid "Editar Cliente" msgstr "Éditer Client" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 +#: ../../../modules/web/Controllers/ClientController.php:326 #: ../../../config/actions.xml:331 #, fuzzy msgid "Ver Cliente" msgstr "Voir Client" -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 +#: ../../../modules/web/Controllers/ConfigLdapController.php:153 +#: ../../../modules/web/Controllers/ConfigLdapController.php:197 msgid "Resultados" msgstr "Résultats" -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 +#: ../../../modules/web/Controllers/ConfigLdapController.php:159 +#: ../../../modules/web/Controllers/ConfigLdapController.php:204 #, php-format msgid "Objetos encontrados: %d" msgstr "Objet trouvé : %d" -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 +#: ../../../modules/web/Controllers/ConfigLdapController.php:279 #, php-format msgid "Usuarios importados: %d / %d" msgstr "Utilisateurs importés: %d / %d" -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 +#: ../../../modules/web/Controllers/ConfigLdapController.php:280 #, php-format msgid "Errores: %d" msgstr "Erreurs: %d" -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 +#: ../../../modules/web/Controllers/ConfigManagerController.php:161 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 msgid "General" msgstr "Générale" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 +#: ../../../modules/web/Controllers/ConfigManagerController.php:190 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:29 #: ../../../config/actions.xml:37 msgid "Wiki" msgstr "Wiki" -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 +#: ../../../modules/web/Controllers/ConfigManagerController.php:209 msgid "LDAP" msgstr "LDAP" -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 +#: ../../../modules/web/Controllers/ConfigManagerController.php:235 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:12 msgid "Correo" msgstr "Courriel" -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 +#: ../../../modules/web/Controllers/ConfigManagerController.php:274 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 msgid "Encriptación" msgstr "Chiffrement" -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Dernière sauvegarde" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 +#: ../../../modules/web/Controllers/ConfigManagerController.php:302 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:61 msgid "No se encontraron backups" msgstr "Il n'y a pas de sauvegardes disponible" -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "Última exportación" -msgstr "Dernier export" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 +#: ../../../modules/web/Controllers/ConfigManagerController.php:312 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 msgid "No se encontró archivo de exportación" msgstr "Aucun fichier d'export trouvé" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 +#: ../../../modules/web/Controllers/ConfigManagerController.php:315 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:78 #: ../../../config/actions.xml:733 msgid "Copia de Seguridad" msgstr "Sauvegarde de sécurité" -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 +#: ../../../modules/web/Controllers/ConfigManagerController.php:332 msgid "Importar Cuentas" msgstr "Importer comptes" -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 +#: ../../../modules/web/Controllers/ConfigManagerController.php:352 msgid "No instalado" msgstr "Non installé" -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 +#: ../../../modules/web/Controllers/ConfigManagerController.php:357 msgid "Información" msgstr "Information" -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 +#: ../../../modules/web/Controllers/CustomFieldController.php:111 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 msgid "Nuevo Campo" msgstr "Nouveau champ" -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 +#: ../../../modules/web/Controllers/CustomFieldController.php:173 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 msgid "Editar Campo" msgstr "Éditer Champ" -#: ../../../modules/web/Controllers/CustomFieldController.php:298 +#: ../../../modules/web/Controllers/CustomFieldController.php:317 msgid "Ver Campo" msgstr "Voir le champ" @@ -1014,19 +1006,19 @@ msgstr "Voir Actuel" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:360 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:310 +#: ../../../modules/web/themes/material-blue/views/config/general.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:295 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:440 #: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:294 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:194 msgid "Atrás" msgstr "Retour" @@ -1042,7 +1034,7 @@ msgstr "Restaurer les comptes à partir de ce point" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:130 msgid "Guardar" msgstr "Sauvegarder" @@ -1072,7 +1064,7 @@ msgstr "Créer un Lien Publique" #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 #: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 #: ../../../config/actions.xml:175 ../../../config/actions.xml:265 msgid "Ver Clave" msgstr "Voir Mot de Passe" @@ -1091,7 +1083,7 @@ msgstr "Copier Mot de Passe dans le Presse-Papier" msgid "Copiar Cuenta" msgstr "Copier Compte" -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 #: ../../../config/strings.js.inc:72 msgid "Clave de Cuenta" msgstr "Mot de Passe du Compte" @@ -1102,23 +1094,23 @@ msgid "Más Acciones" msgstr "Plus d'Actions" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:59 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:34 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:40 #: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:32 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 #, fuzzy msgid "Cliente" msgstr "Client" @@ -1129,32 +1121,32 @@ msgid "Ordenar por Cliente" msgstr "Trier par Client" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:43 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:22 msgid "Nombre" msgstr "Nom" @@ -1163,17 +1155,17 @@ msgid "Ordenar por Nombre" msgstr "Trier par Nom" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:72 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:45 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:51 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:105 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 msgid "Categoría" msgstr "Catégorie" @@ -1182,38 +1174,38 @@ msgid "Ordenar por Categoría" msgstr "Trier par Catégorie" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:141 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:61 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:149 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:233 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:247 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:24 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:94 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:75 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:77 #: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 msgid "Usuario" msgstr "Utilisateur" @@ -1223,13 +1215,13 @@ msgid "Ordenar por Usuario" msgstr "Trier par Nom d'Utilisateur" #: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:56 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:62 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:128 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:79 msgid "URL / IP" msgstr "Adresse URL / IP" @@ -1237,8 +1229,8 @@ msgstr "Adresse URL / IP" msgid "Ordenar por URL / IP" msgstr "Trier par URL / IP" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 @@ -1251,8 +1243,8 @@ msgstr "Trier par URL / IP" #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 #: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 @@ -1268,183 +1260,183 @@ msgstr "Trier par URL / IP" msgid "Eliminar Seleccionados" msgstr "Supprimer Sélection" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:158 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:42 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:44 msgid "Propietario" msgstr "Owner" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:175 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:50 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:52 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 msgid "Grupo Principal" msgstr "Groupe Principal" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 #: ../../../config/actions.xml:499 ../../../config/actions.xml:799 msgid "Buscar Cuenta" msgstr "Rechercher un Compte" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 msgid "Cuentas (H)" msgstr "Comptes (H)" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:122 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:55 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:38 msgid "Fecha" msgstr "Date" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:126 #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 msgid "Estado" msgstr "Status" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 msgid "Modificada" msgstr "Modifié" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 msgid "Eliminada" msgstr "Supprimer" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 #: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 #: ../../../config/actions.xml:187 ../../../config/actions.xml:805 msgid "Restaurar Cuenta" msgstr "Restaurer Compte" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 msgid "Autorizaciones API" msgstr "Autorisations des APIs" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 msgid "Acción" msgstr "Action" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 msgid "Buscar Token" msgstr "Rechercher un Token" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 msgid "Ver token de Autorización" msgstr "Voir Token Autorisation" -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 #: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 msgid "Eliminar Autorización" msgstr "Supprimer Autorisation" -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:37 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 msgid "Descripción" msgstr "Description" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 #: ../../../config/actions.xml:325 msgid "Buscar Categoría" msgstr "Rechercher une Catégorie" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 #: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 #: ../../../config/actions.xml:319 msgid "Eliminar Categoría" msgstr "Supprimer Catégorie" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 #: ../../../config/strings.js.inc:66 msgid "SI" msgstr "OUI" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 #: ../../../config/strings.js.inc:67 msgid "NO" msgstr "NON" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 #: ../../../config/actions.xml:355 #, fuzzy msgid "Buscar Cliente" msgstr "Rechercher un Client" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 #: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 #: ../../../config/actions.xml:349 #, fuzzy msgid "Eliminar Cliente" msgstr "Supprimer Client" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 msgid "Campos Personalizados" msgstr "Champs personnalisés" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 msgid "Módulo" msgstr "Module" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:30 msgid "Tipo" msgstr "Type" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:120 msgid "Propiedades" msgstr "Propriétés" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 msgid "Encriptado" msgstr "Encrypted" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 msgid "Buscar Campo" msgstr "Rechercher un Champ" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 #: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 msgid "Eliminar Campo" msgstr "Supprimer Champ" @@ -1456,8 +1448,8 @@ msgid "Registro de Eventos" msgstr "Journal d'évènements" #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:99 msgid "ID" msgstr "ID" @@ -1474,9 +1466,9 @@ msgid "Evento" msgstr "Evènement" #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 msgid "Login" msgstr "Login" @@ -1484,241 +1476,241 @@ msgstr "Login" msgid "IP" msgstr "IP" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 msgid "Buscar Evento" msgstr "Recherche d'Évènements" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 #: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 msgid "Refrescar" msgstr "Actualiser" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:199 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 #, fuzzy msgid "Vaciar registro de eventos" msgstr "Nettoyer le journal d'évènements" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:280 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 #: ../../../config/actions.xml:19 msgid "Archivos" msgstr "Fichiers" -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:25 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:30 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:23 msgid "Cuenta" msgstr "Compte" -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:110 msgid "Tamaño" msgstr "Taille" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:145 #: ../../../config/actions.xml:475 msgid "Buscar Archivo" msgstr "Rechercher un Fichier" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 #: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:51 #: ../../../config/actions.xml:205 ../../../config/actions.xml:451 msgid "Ver Archivo" msgstr "Voir Fichier" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:42 #: ../../../config/actions.xml:217 ../../../config/actions.xml:457 msgid "Descargar Archivo" msgstr "Télécharger Fichier" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:34 #: ../../../config/actions.xml:223 ../../../config/actions.xml:463 msgid "Eliminar Archivo" msgstr "Supprimer Fichier" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 msgid "Valores Predeterminados" msgstr "Preset Values" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:137 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:274 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:277 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:233 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:148 msgid "Grupo" msgstr "Groupe" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 #: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:131 msgid "Perfil" msgstr "Profil" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 msgid "Prioridad" msgstr "Priority" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 msgid "Forzado" msgstr "Forced" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 #: ../../../config/actions.xml:853 msgid "Buscar Valor" msgstr "Search for Value" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 msgid "Valor de Permiso" msgstr "Permission Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 msgid "Nuevo Valor de Permiso" msgstr "New Permission Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 msgid "Valor de Cuenta Privada" msgstr "Private Account Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 msgid "Nuevo Valor de Cuenta Privada" msgstr "New Private Account Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 msgid "Valor de Timeout de Sesión" msgstr "Session Timeout Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 msgid "Nuevo Valor de Timeout de Sesión" msgstr "New Session Timeout Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 #: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 msgid "Valor de Clave de Cuentas" msgstr "Account Password Preset" -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 msgid "Nuevo Valor de Clave de Cuentas" msgstr "New Account Password Preset" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: ../../../modules/web/Controllers/ItemPresetController.php:239 #: ../../../config/actions.xml:871 msgid "Editar Valor" msgstr "Edit Value" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 #: ../../../config/actions.xml:877 msgid "Eliminar Valor" msgstr "Delete Value" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:105 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 #: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 #: ../../../config/actions.xml:679 msgid "Notificaciones" msgstr "Notifications" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 #: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:42 msgid "Componente" msgstr "Composant" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:111 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:115 msgid "Leída" msgstr "Lire" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 msgid "Sólo Admins" msgstr "Admins seulement" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:164 #: ../../../config/actions.xml:841 msgid "Buscar Notificación" msgstr "Rechercher une Notification" -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:180 +#: ../../../modules/web/Controllers/NotificationController.php:194 msgid "Nueva Notificación" msgstr "Nouvelle Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:103 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:198 +#: ../../../modules/web/Controllers/NotificationController.php:113 #: ../../../config/actions.xml:811 msgid "Ver Notificación" msgstr "Voir Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:228 #: ../../../config/actions.xml:835 msgid "Marcar Notificación" msgstr "Marquer Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:210 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:246 +#: ../../../modules/web/Controllers/NotificationController.php:226 #: ../../../config/actions.xml:823 msgid "Editar Notificación" msgstr "Éditer Notification" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 #: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:263 #: ../../../config/actions.xml:829 msgid "Eliminar Notificación" msgstr "Supprimer Notification" #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:334 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:331 #: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 msgid "Plugins" msgstr "Plugins" @@ -1740,7 +1732,7 @@ msgstr "Recherche un Plugin" #. (itstool) path: action/text #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 #: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:120 +#: ../../../modules/web/Controllers/PluginController.php:136 #: ../../../config/actions.xml:541 msgid "Ver Plugin" msgstr "Voir Plugin" @@ -1760,99 +1752,99 @@ msgstr "Désactiver" msgid "Restablecer Datos" msgstr "Réinitialiser Données" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:49 msgid "Enlaces" msgstr "Liens" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:51 msgid "Fecha Creación" msgstr "Date de Création" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:59 msgid "Fecha Caducidad" msgstr "Date d'Expiration" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:43 msgid "Notificar" msgstr "Notifier" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:14 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:75 msgid "Visitas" msgstr "Visites" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:149 msgid "Buscar Enlace" msgstr "Rechercher un Lien" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:165 msgid "Nuevo Enlace" msgstr "Nouveau lien" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:183 +#: ../../../modules/web/Controllers/PublicLinkController.php:357 msgid "Ver Enlace" msgstr "Voir Lien" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:199 msgid "Renovar Enlace" msgstr "Renouveler Lien" -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 #: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:216 msgid "Eliminar Enlace" msgstr "Supprimer Lien" -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:211 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 msgid "Etiquetas" msgstr "Tags" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:135 #: ../../../config/actions.xml:529 msgid "Buscar Etiqueta" msgstr "Recherche un Tag" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: ../../../modules/web/Controllers/TagController.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:226 #: ../../../config/actions.xml:505 msgid "Nueva Etiqueta" msgstr "Nouveau Tag" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: ../../../modules/web/Controllers/TagController.php:168 #: ../../../config/actions.xml:517 msgid "Editar Etiqueta" msgstr "Éditer Tag" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 #: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:186 #: ../../../config/actions.xml:523 msgid "Eliminar Etiqueta" msgstr "Supprimer Tag" @@ -1876,137 +1868,137 @@ msgid "Buscar Track" msgstr "Search for track" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:156 #: ../../../config/actions.xml:601 msgid "Buscar Usuario" msgstr "Rechercher un Utilisateur" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:172 +#: ../../../modules/web/Controllers/UserController.php:115 #: ../../../config/actions.xml:577 msgid "Nuevo Usuario" msgstr "Nouvel Utilisateur" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:190 +#: ../../../modules/web/Controllers/UserController.php:200 #: ../../../config/actions.xml:583 msgid "Editar Usuario" msgstr "Éditer Utilisateur" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:207 #: ../../../config/actions.xml:589 msgid "Eliminar Usuario" msgstr "Supprimer Utilisateur" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:224 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:460 msgid "Importar usuarios de LDAP" msgstr "Importer des utilisateurs depuis LDAP" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:242 msgid "Ver Detalles de Usuario" msgstr "Voir Détails Utilisateur" -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:62 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:120 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:126 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:259 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 msgid "Cambiar Clave de Usuario" msgstr "Changer Mot de Passe Utilisateur" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 #: ../../../config/actions.xml:631 msgid "Buscar Grupo" msgstr "Rechercher un Groupe" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: ../../../modules/web/Controllers/UserGroupController.php:117 #: ../../../config/actions.xml:613 msgid "Nuevo Grupo" msgstr "Nouveau Groupe" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: ../../../modules/web/Controllers/UserGroupController.php:344 #: ../../../config/actions.xml:607 msgid "Ver Grupo" msgstr "Voir Groupe" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: ../../../modules/web/Controllers/UserGroupController.php:188 #: ../../../config/actions.xml:619 msgid "Editar Grupo" msgstr "Éditer Groupe" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 #: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 #: ../../../config/actions.xml:625 msgid "Eliminar Grupo" msgstr "Supprimer Groupe" -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 msgid "Perfiles" msgstr "Profils" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 #: ../../../config/actions.xml:661 msgid "Buscar Perfil" msgstr "Rechercher un Profil" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: ../../../modules/web/Controllers/UserProfileController.php:110 #: ../../../config/actions.xml:643 msgid "Nuevo Perfil" msgstr "Nouveau Profil" -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 msgid "Ver Detalles de Perfil" msgstr "Voir Détails Profil" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: ../../../modules/web/Controllers/UserProfileController.php:177 #: ../../../config/actions.xml:649 msgid "Editar Perfil" msgstr "Éditer Profil" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 #: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 #: ../../../config/actions.xml:655 msgid "Eliminar Perfil" msgstr "Supprimer Profil" -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:265 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:262 msgid "Buscar" msgstr "Rechercher" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:348 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:345 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 #: ../../../config/actions.xml:685 msgid "Configuración" msgstr "Configuration" @@ -2020,44 +2012,53 @@ msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Sans ce module, l'application ne peut pas fonctionner correctement." #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 +#: ../../../modules/web/Controllers/ItemPresetController.php:73 #: ../../../config/actions.xml:859 msgid "Ver Valor" msgstr "Display Value" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 +#: ../../../modules/web/Controllers/ItemPresetController.php:207 #: ../../../config/actions.xml:865 msgid "Nuevo Valor" msgstr "New Value" -#: ../../../modules/web/Controllers/PublicLinkController.php:109 +#: ../../../modules/web/Controllers/ItemsController.php:130 +msgid "No hay no hay notificaciones pendientes" +msgstr "Il n'y a pas de notifications en attente" + +#: ../../../modules/web/Controllers/ItemsController.php:131 +#, php-format +msgid "Hay notificaciones pendientes: %d" +msgstr "There are pending notifications: %d" + +#: ../../../modules/web/Controllers/PublicLinkController.php:114 msgid "Nuevo Enlace Público" msgstr "Nouveau lien publique" -#: ../../../modules/web/Controllers/PublicLinkController.php:196 +#: ../../../modules/web/Controllers/PublicLinkController.php:204 msgid "Editar Enlace Público" msgstr "Editer le lien publique" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 +#: ../../../modules/web/Controllers/TagController.php:302 #: ../../../config/actions.xml:511 msgid "Ver Etiqueta" msgstr "Voir étiquette" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 +#: ../../../modules/web/Controllers/UserController.php:458 #: ../../../config/actions.xml:571 msgid "Ver Usuario" msgstr "Voir Utilisateur" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 +#: ../../../modules/web/Controllers/UserProfileController.php:326 #: ../../../config/actions.xml:637 msgid "Ver Perfil" msgstr "Voir Profil" -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:89 +#: ../../../modules/web/Controllers/UserSettingsManagerController.php:87 msgid "Preferencias" msgstr "Préférences" @@ -2115,8 +2116,8 @@ msgid "Borrar elemento?" msgstr "Supprimer élément ?" #: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:31 msgid "Página no encontrada" msgstr "Page introuvable" @@ -2150,48 +2151,48 @@ msgid "Vaciar el registro de eventos?" msgstr "Nettoyer journal d’événements ?" #: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:281 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:253 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:152 msgid "Seleccionar Grupo" msgstr "Sélectionner un Groupe" #: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:81 msgid "Seleccionar Usuario" msgstr "Sélectionner un Utilisateur" #: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:135 msgid "Seleccionar Perfil" msgstr "Sélectionner un Profil" #: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:84 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 #, fuzzy msgid "Seleccionar Cliente" msgstr "Sélectionner un Client" #: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:41 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 msgid "Seleccionar Categoría" msgstr "Sélectionner une Catégorie" @@ -2224,41 +2225,41 @@ msgid "Mostrar Clave" msgstr "Afficher Mot de Passe" #: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:24 msgid "Copiar Usuario" msgstr "Copier Nom d'Utilisateur" #. (itstool) path: action/text #: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:41 #: ../../../config/actions.xml:199 ../../../config/actions.xml:271 msgid "Copiar Clave" msgstr "Copier Mot de Passe" #: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 msgid "Incluir Números" msgstr "Inclure des Nombres" #: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 msgid "Incluir Mayúsculas" msgstr "Inclure des Lettres Majuscules" #: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 #, fuzzy msgid "Incluir Símbolos" msgstr "Inclure des Symboles" #: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 msgid "Longitud" msgstr "Longueur" #: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 msgid "Seleccionar Acción" msgstr "Sélectionner une Action" @@ -2284,13 +2285,13 @@ msgid "Recibir notificaciones?" msgstr "Envoyer notification ?" #: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:158 msgid "Marcar Favorito" msgstr "Marquer comme Favoris" #. (itstool) path: action/text #: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:148 #: ../../../config/actions.xml:253 msgid "Eliminar Favorito" msgstr "Supprimer Favoris" @@ -2300,11 +2301,12 @@ msgid "Limpiar Selección" msgstr "Effacer la Sélection" #: ../../../config/strings.js.inc:77 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:78 msgid "Mostrar Favoritos" msgstr "Montrer les Favoris" #: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:72 msgid "Mostrar Todos" msgstr "Montrer Tous" @@ -2349,7 +2351,7 @@ msgstr "" "l'onglet du navigateur." #: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 msgid "Incluir Letras" msgstr "Inclure des Lettres" @@ -2370,12 +2372,12 @@ msgid "Hay una versión más reciente del plugin {0} ({1})" msgstr "Il y a une version plus récente du {0} plugin ({1})" #: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:30 msgid "Actualizado" msgstr "Mis à jour" #: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:36 msgid "Error al comprobar actualizaciones" msgstr "Erreur pendant la recherche de mises à jour" @@ -2387,7 +2389,11 @@ msgstr "Notifications de sysPass" msgid "Vaciar los tracks?" msgstr "Clear tracks out?" -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 +#: ../../../config/strings.js.inc:97 +msgid "Archivo descargado" +msgstr "Fichier téléchargé" + +#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:21 #, fuzzy msgid "Javascript es necesario para el correcto funcionamiento" msgstr "Javascript est requis pour fonctionner correctement" @@ -2398,44 +2404,33 @@ msgstr "Javascript est requis pour fonctionner correctement" #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 msgid "Volver" msgstr "Retour" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:40 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 -#, php-format -msgid "Hay %d notificaciones pendientes" -msgstr "Il y a %d de notification(s) non-lue(s)" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:42 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:112 -msgid "No hay no hay notificaciones pendientes" -msgstr "Il n'y a pas de notifications en attente" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:69 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:131 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 msgid "Preferencias de usuario" msgstr "Préférences de l'utilisateur" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:76 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:149 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:152 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 msgid "Salir" msgstr "Se déconnecter" -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:165 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:53 msgid "Demo" msgstr "Demo" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 msgid "Indica si la conexión utiliza HTTPS." msgstr "Indique si la connexion utilise le protocol HTTPS." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 msgid "" "Las claves de formularios enviados se encriptan mediante PKI, el resto de " "datos no." @@ -2443,11 +2438,11 @@ msgstr "" "Les mots de passe envoyés à partir du formulaire sont chiffrés avec PKI, les " "autres données ne le sont pas." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:66 msgid "Ayuda :: FAQ :: Changelog" msgstr "Aide :: FAQ :: Changelog" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:70 msgid "Un proyecto de cygnux.org" msgstr "Un projet cygnux.org" @@ -2510,325 +2505,334 @@ msgstr "Rechercher les comptes privés pour l'utilisateur courant." msgid "Operador para los parámetros especiales" msgstr "Operator for special parameters" -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 +#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:17 msgid "No se encontraron registros" msgstr "Aucun enregistrement trouvé" -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:168 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:64 #: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 #: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:38 msgid "Clave (repetir)" msgstr "Mot de passe (confirmer)" -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 msgid "Seleccionar Fecha" msgstr "Sélectionner une date" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:19 msgid "Histórico" msgstr "Historique" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:22 msgid "Detalles" msgstr "Détails" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:127 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:200 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:169 msgid "Notas" msgstr "Notes" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:140 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:142 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:271 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:273 msgid "Historial" msgstr "Historique" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:278 msgid "Seleccionar fecha" msgstr "Sélectionner une date" -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:160 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 msgid "Última Modificación" msgstr "Dernière Modification" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:23 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:57 msgid "Seleccionar Usuarios" msgstr "Sélectionner des Utilisateurs" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 msgid "Ver" msgstr "Voir" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:132 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:136 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 msgid "Editar" msgstr "Éditer" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 msgid "Seleccionar Grupos" msgstr "Sélectionner des Groupes" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 msgid "Privada" msgstr "Restreint (Personnel)" -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:223 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 msgid "Privada Grupo" msgstr "Restreint au Groupe" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:15 msgid "Solicitar Modificación de Cuenta" msgstr "Demander Modification de Compte" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 msgid "Petición" msgstr "Demande" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:52 #, fuzzy msgid "Descripción de la petición" msgstr "Description de la Demande" -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:74 msgid "Enviar" msgstr "Envoyer" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 msgid "Permisos" msgstr "Permissions" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:218 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 msgid "Seleccionar Etiquetas" msgstr "Sélectionner des Tags" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:26 msgid "Seleccionar Cuenta" msgstr "Sélectionner un Compte" -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Lien Publique" - #: ../../../modules/web/themes/material-blue/views/account/account.inc:301 #: ../../../modules/web/themes/material-blue/views/account/account.inc:303 #: ../../../modules/web/themes/material-blue/views/account/account.inc:306 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:191 +msgid "Enlace Público" +msgstr "Lien Publique" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:314 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:316 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:319 msgid "Enlace Directo" msgstr "Direct Link" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:24 msgid "Fecha Alta" msgstr "Date Ajoutée" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:60 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:62 msgid "Fecha Edición" msgstr "Date Modifiée" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:70 msgid "Editor" msgstr "Éditeur" -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 msgid "Fecha de Clave" msgstr "Date du Mot de Passe" -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/files.inc:37 msgid "Soltar archivos aquí (max. 5) o click para seleccionar" msgstr "Déposer les fichier ici (max. 5) ou cliquez pour les sélectionner." -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/files.inc:39 #, php-format msgid "Tamaño máximo de archivo: %d MB" msgstr "Taille maximum du fichier : %d MB" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:35 msgid "Buscar en Wiki" msgstr "Rechercher dans le Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:82 #, php-format msgid "Abrir enlace a: %s" msgstr "Ouvrir le lien vers: %s" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:109 msgid "Clave Caducada" msgstr "Mot de Passe Expiré" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:123 msgid "Cuenta Privada (Grupo)" msgstr "Compte privé (groupe)" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:166 msgid "Notes" msgstr "Notes" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 msgid "Archivos adjuntos" msgstr "Fichiers joints" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 #: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:218 msgid "Enlace a Wiki" msgstr "Lien vers Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:210 msgid "Ver en Wiki" msgstr "Voir sur le Wiki" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 #, fuzzy msgid "Búsqueda global" msgstr "Recherche globale" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:83 msgid "Filtrar Favoritos" msgstr "Filtrer les Favoris" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:98 msgid "Cuentas por página" msgstr "Comptes par page" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:104 msgid "Más Filtros" msgstr "Plus de Filtres" -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:109 msgid "Seleccionar Etiqueta" msgstr "Sélectionner un Tag" -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:22 msgid "Los datos serán encriptados al guardar" msgstr "Data will be encrypted after saving" -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:27 msgid "Los datos serán desencriptados al guardar" msgstr "Data will be unencrypted after saving" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:12 +#, php-format +msgid "La extensión '%s' no está disponible" +msgstr "The '%s' extension is unavailable" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:16 msgid "Esta extensión es necesaria para mostrar las claves como imágenes" msgstr "This extension is needed to display passwords as images" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:30 msgid "Búsqueda" msgstr "Rechercher" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:36 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:56 msgid "Resultados por página" msgstr "Resultats par page" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:41 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:61 msgid "Número de resultados por página a mostrar, al realizar una búsqueda." msgstr "Nombre de résultats à afficher par page pour une recherche." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:52 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:72 msgid "Número de resultados por página" msgstr "Résultats par page" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 msgid "Caducidad clave cuentas" msgstr "Accounts password expiry" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:71 msgid "Habilita la caducidad de la clave de cuentas." msgstr "Enables the accounts password expiry date." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:79 msgid "Tiempo caducidad clave" msgstr "Password expiry time" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:84 msgid "Número de días para la caducidad de la clave de cuenta." msgstr "Number of days for the account expiry date." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 msgid "Tiempo caducidad (días)" msgstr "Expire time (days)" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:112 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:90 msgid "Nombre de cuenta como enlace" msgstr "Nom du compte comme lien" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:113 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:92 msgid "" "Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " "de la cuenta." msgstr "Active le nom du compte comme lien vers les détails du compte." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:128 msgid "Búsquedas globales" msgstr "Recherches globales" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:129 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." @@ -2837,44 +2841,44 @@ msgstr "" "comptes, s'ils n'ont pas la permission ils ne peuvent pas voir les détails " "des comptes." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:144 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 msgid "Imagen para mostrar clave" msgstr "Image pour visualiser le mot de passe" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 msgid "Generar una imagen con el texto de la clave de la cuenta." msgstr "Génère une image avec le texte du mot de passe du compte." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." msgstr "" "Utile pour les environnements où copier le mot de passe dans le presse-" "papier est un risque pour la sécurité." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:164 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:158 msgid "Resultados en Tarjetas" msgstr "Résultats sous forme de cartes" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:166 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:160 msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." msgstr "Active l'affichage des résultats de recherche comme format carte." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:182 msgid "Acceso Grupos Secundarios" msgstr "Accès groupes secondaire" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:184 msgid "" "Habilita el acceso a los usuarios que estén incluidos en los grupos " "secundarios." msgstr "Donner accès aux utilisateurs inclus le groupe secondaire." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:186 msgid "" "Por defecto el usuario de un grupo secundario es permitido si el grupo " "secundario está establecido como el primario del usuario." @@ -2883,17 +2887,17 @@ msgstr "" "secondaire est paramétré comme groupe principal pour l'utilisateur" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:197 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 #: ../../../config/actions.xml:73 msgid "Enlaces Públicos" msgstr "Liens Publique" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:215 msgid "Habilitar Enlaces Públicos" msgstr "Activer les Liens Publique" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:217 msgid "" "Habilita la posibilidad de generar enlaces públicos para ver los detalles de " "una cuenta." @@ -2901,14 +2905,14 @@ msgstr "" "Activé la possibilité de créer des liens publique pour voir le détail des " "comptes." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:219 msgid "" "Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." msgstr "" "Les comptes avec lien seront visible par n'importe quelle personne ayant " "accès au lien." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:221 msgid "" "Para crear enlaces, los usuarios tienen que tener activada la opción en su " "perfl." @@ -2916,43 +2920,43 @@ msgstr "" "Pour créer des liens, les utilisateurs doivent activer l'option dans leur " "profil." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:237 msgid "Usar imagen para clave" msgstr "Utiliser une image pour le mot de passe" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:239 msgid "La clave de la cuenta es visualizada como una imagen." msgstr "Le mot de passe du compte est montré comme une image." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:248 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:257 msgid "Tiempo de caducidad" msgstr "Durée d'expiration" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:263 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:272 msgid "Número máximo de visitas" msgstr "Visite maximum" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:298 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 msgid "Gestión de archivos" msgstr "Gestion des fichiers" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:299 msgid "Habilita la subida/descarga de archivos para las cuentas." msgstr "Active l'envoi et le téléchargement des fichiers pour les comptes." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:307 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:320 msgid "Extensiones de archivos permitidas" msgstr "Extensions de fichiers permises" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 msgid "Extensiones permitidas para la subida de archivos." msgstr "Extensions de fichiers autorisées au chargement." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:315 msgid "" "Escribir extensión y pulsar intro para añadir. Es necesario guardar la " "configuración." @@ -2960,55 +2964,51 @@ msgstr "" "Ecrire l'extension et appuyez sur Entrée pour l'ajouter. Vous devez " "sauvegarder la configuration." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:328 msgid "Tamaño máximo de archivo" msgstr "Taille maximale de fichier" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:333 msgid "Establece el tamaño máximo para subir archivos." msgstr "Définir la taille maximale d'un fichier pour le téléchargement." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:337 msgid "El máximo absuluto es de 16MB." msgstr "Le grand maximum est 16MB" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:348 msgid "Tamaño máximo de archivo en kilobytes" msgstr "Taille maximale de fichier en kilobytes" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:16 msgid "" "Esta extensión es necesaria para generar los archivos de copia de seguridad " "de la aplicación" msgstr "This extension is needed to build the application's backup files" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 msgid "Resultado" msgstr "Résultat" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:123 msgid "Descargar Actual" msgstr "Télécharger l'élément actuel" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:51 msgid "Copia BBDD" msgstr "Sauvegarde de la base de données" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:58 msgid "Copia sysPass" msgstr "Sauvegarde sysPass" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 -msgid "No hay backups para descargar" -msgstr "Il n'y a pas de sauvegarde à télécharger" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:80 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." @@ -3017,7 +3017,7 @@ msgstr "" "base de données sysPass et les fichiers de l'application ainsi que la " "configuration." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:82 msgid "" "Con este método es posible guardar todos los datos de sysPass en otro lugar " "o utilizarlos para hacer la aplicación portable." @@ -3026,26 +3026,22 @@ msgstr "" "sysPass sur un autre emplacement ou de l'utiliser pour en faire une " "application portable." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:185 msgid "Exportar Cuentas" msgstr "Exporter les comptes" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -msgid "No hay archivos XML para descargar" -msgstr "Il n'y a aucun fichier XML à télécharger" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:139 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:147 msgid "Clave de Exportación" msgstr "Mot de Passe d'exportation" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:161 msgid "Clave de Exportación (repetir)" msgstr "Mot de Passe d'exportation (confirmer)" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:187 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." @@ -3053,12 +3049,12 @@ msgstr "" "L'exportation des comptes permet de sauvegarder ces derniers ainsi que leurs " "données au format XML afin de les importer dans une autre instance sysPass." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:189 #, fuzzy msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." msgstr "Les objets exportés sont des comptes, clients, catégories et tags." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:191 #, fuzzy msgid "" "Las claves de las cuentas son exportadas de forma encriptada para mayor " @@ -3067,7 +3063,7 @@ msgstr "" "Les mots de passes des comptes sont chiffrés lors de l'export pour une " "meilleure sécurité." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:193 msgid "" "Es posible establecer una clave de exportación para guardar todos los datos " "encriptados en el archivo XML." @@ -3075,75 +3071,75 @@ msgstr "" "Il est possible de définir un mot de passe d'exportation pour enregistrer " "les données entièrement chiffrées dans un fichier XML." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:17 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:167 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:50 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:56 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:57 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:102 msgid "Clave Maestra" msgstr "Mot de Passe Maître" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:27 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:201 #, fuzzy msgid "Último cambio" msgstr "Dernier Changement" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:35 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:43 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:142 msgid "Clave Maestra actual" msgstr "Mot de Passe Maître actuel" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:49 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:57 msgid "Nueva Clave Maestra" msgstr "Nouveau Mot de Passe Maître" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:63 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:71 msgid "Nueva Clave Maestra (repetir)" msgstr "Nouveau Mot de Passe Maître (confirmer)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:80 msgid "Guarde la nueva clave en un lugar seguro." msgstr "Vous devriez sauvegarder le mot de passe dans un endroit sûre." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:84 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "Tous les mots de passe des comptes seront de nouveau chiffrés." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:88 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "Les utilisateurs devront saisir un nouveau Mot de Passe Maître." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:92 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:130 #, fuzzy, php-format msgid "" "Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." msgstr "Cette action va mettre à jour %s comptes. Ceci peut prendre un moment." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:109 msgid "No modificar cuentas" msgstr "Ne pas modifier les comptes" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:111 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "" "Définir un nouveau Mot de Passe Maître sans chiffrer à nouveau les comptes." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:127 #, fuzzy msgid "Confirmar cambio" msgstr "Confirmer Changement" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:129 msgid "" "Confirmar el cambio de clave maestra después de haber leído las advertencias " "anteriores." @@ -3151,7 +3147,7 @@ msgstr "" "Confirm the master password change after you have been read all the above " "warnings." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:155 #, fuzzy msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " @@ -3160,7 +3156,7 @@ msgstr "" "Le Mot de Passe Maître est utilisé pour chiffrer les mots de passe des " "comptes sysPass afin de les garder en sécurité." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:157 #, fuzzy msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " @@ -3171,53 +3167,53 @@ msgstr "" "même conseillé de changer les mots de passe de temps en temps ou " "périodiquement." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:159 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 #, php-format msgid "Para más información consulte: %s" msgstr "Vous pouvez obtenir plus d'informations sur : %s" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:169 msgid "Actualizar hash de clave maestra" msgstr "Mettre à jour le hash du Mot de Passe Maître" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:189 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:323 msgid "Clave Temporal" msgstr "Mot de Passe Temporaire" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:203 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:218 msgid "No generada" msgstr "Pas généré" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:211 msgid "Válido hasta" msgstr "Vailde jusqu'à" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:227 msgid "Intentos" msgstr "Tentatives" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:244 msgid "Validez (s)" msgstr "Validité (s)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:263 msgid "Enviar correo" msgstr "Envoyer un courriel" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:265 msgid "" "Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." msgstr "" "Envoyer un courriel à tous les utilisateurs ou seulement à ceux dont le " "groupe est sélectionné." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:325 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " @@ -3227,35 +3223,35 @@ msgstr "" "utilisateurs qui ont besoin de le saisir pendant le login. De cette manière, " "il n'est pas nécessaire de leur communiquer le véritable Mot de Passe Maître." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:332 msgid "Generar" msgstr "Générer" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:12 msgid "Autentificación" msgstr "Authentification" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:30 msgid "Usar Auth Basic" msgstr "Utiliser Auth Basic" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:31 msgid "Usar Auth Basic para autorizar los accesos a la aplicación." msgstr "Use Auth Basic for authorizing the accesses to the application" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:45 msgid "Usar Auth Basic SSO" msgstr "Use Auth Basic SSO" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:46 msgid "Usar auto-login con Auth Basic." msgstr "Use auto-login through Auth Basic" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:54 msgid "Dominio" msgstr "Domaine" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:59 msgid "" "El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " "el de Auth Basic." @@ -3263,137 +3259,137 @@ msgstr "" "Le domaine sera ajouté au nom de l'utilisateur sysPass pour vérifier celui " "de Auth Basic" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:69 msgid "Nombre de dominio" msgstr "Nom de domaine" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:249 msgid "Grupo por Defecto" msgstr "Groupe par Défaut" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:80 msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." msgstr "" "Définie le groupe d'utilisateurs par défaut pour les nouveaux utilisateurs " "SSO" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:264 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:274 msgid "Perfil por Defecto" msgstr "Profil par Défaut" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:105 msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." msgstr "Définie le profile par défaut pour les nouveaux utilisateurs SSO" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:98 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:176 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:72 msgid "Eventos" msgstr "Évènements" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:30 msgid "Habilitar log de eventos" msgstr "Active le journal des évènements" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:31 msgid "Guarda las acciones realizadas en la aplicación." msgstr "Sauvegarde les actions effectuées par l'application." -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:45 msgid "Habilitar Syslog" msgstr "Activer Syslog" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:60 msgid "Habilitar Syslog Remoto" msgstr "Activer Syslog Distant" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:94 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:66 msgid "Servidor" msgstr "Serveur" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:78 msgid "Nombre o dirección IP" msgstr "Nom d'hôte ou adresse IP" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:84 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:79 msgid "Puerto" msgstr "Port" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:12 msgid "Proxy" msgstr "Proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:30 msgid "Usar Proxy" msgstr "Utiliser un serveur Proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:31 msgid "Usar proxy para comprobación de actualizaciones y notificaciones." msgstr "Use a proxy server for checking out for updates and notifications." -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:47 msgid "Servidor proxy" msgstr "Serveur proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:61 msgid "Puerto del servidor proxy" msgstr "Port du serveur proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:75 msgid "Usuario del servidor proxy" msgstr "Utilisateur du serveur proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:89 msgid "Clave del servidor proxy" msgstr "Mot de passe utilisateur du serveur proxy" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:16 msgid "" "Esta extensión es necesaria comprobar las actualizaciones y notificaciones" msgstr "This extension is needed to check for sysPass updates and notices" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:24 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:15 msgid "Sitio" msgstr "Site" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:137 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:139 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:28 msgid "Idioma" msgstr "Langage" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:35 msgid "" "Establece el idioma global de la aplicación. Es posible establecer un idioma " "por usuario en las preferencias." @@ -3401,7 +3397,7 @@ msgstr "" "Définis la langue globale de l'application. Vous pouvez également définir la " "langue dans les préférences utilisateurs." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:39 msgid "" "Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." "com/join/project/fmlsBuugyv" @@ -3409,14 +3405,14 @@ msgstr "" "Pour améliorer la traduction, vous pouvez aller sur https://poeditor.com/" "join/project/fmlsBuugyv" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:67 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:42 msgid "Tema Visual" msgstr "Thème Visuel" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:62 msgid "" "Establece el tema visual global de la aplicación. Es posible establecer un " "tema visual por usuario en las preferencias." @@ -3424,24 +3420,24 @@ msgstr "" "Définis le thème visuel global de l'application. Vous pouvez définir le " "thème dans les préférences utilisateur." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:89 msgid "Timeout de sesión (s)" msgstr "Timeout de session (s)" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:107 msgid "Forzar HTTPS" msgstr "Forcer HTTPS" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:108 msgid "Fuerza para que todas las conexiones sean a través de HTTPS." msgstr "Force l'utilisation du protocole HTTPS pour toutes les connexions." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:122 msgid "Habilitar depuración" msgstr "Activer le mode debug" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:123 msgid "" "Muestra información relativa a la configuración de la aplicación y " "rendimiento." @@ -3449,11 +3445,11 @@ msgstr "" "Afficher des informations sur la configuration de l'application et sur la " "performance." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:137 msgid "Modo mantenimiento" msgstr "Mode maintenance" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:138 msgid "" "En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " "necesario modificar el archivo de configuración." @@ -3461,11 +3457,11 @@ msgstr "" "Dans ce mode, personne ne peut accéder à l'application. Pour le désactiver, " "vous devez modifier le fichier de configuration." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:152 msgid "Comprobar actualizaciones" msgstr "Vérifier les mises à jour" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:153 msgid "" "Comprobar actualizaciones de la aplicación (sólo para los usuarios " "administradores)." @@ -3473,11 +3469,11 @@ msgstr "" "Vérifier les mises à jour d'application (uniquement pour les " "administrateurs)." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:167 msgid "Comprobar notificaciones" msgstr "Vérifier les notifications" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:168 msgid "" "Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " "para los usuarios administradores)." @@ -3485,15 +3481,15 @@ msgstr "" "Vérifier s'il existe des notifications ou alertes de sécurité sysPass " "(uniquement pour les administrateurs)." -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 msgid "Encriptar Sesión" msgstr "Session chiffrée" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:184 msgid "Encriptar los datos de la sesión de PHP." msgstr "Données de session PHP chiffrées" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:185 msgid "" "Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " "datos almacenados no serán legibles." @@ -3501,33 +3497,33 @@ msgstr "" "Cette fonctionnalité augmente la sécurité des sessions PHP, les données " "stockées ne seront pas lisible." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 msgid "Importar CSV/XML" msgstr "Importer CSV/XML" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:28 msgid "Usuario por Defecto" msgstr "Utilisateur par Défaut" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:23 msgid "Define el usuario por defecto para las cuentas importadas." msgstr "Définis l'utilisateur par défaut pour les comptes importés." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:50 msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Définis le groupe par défaut pour les comptes importés." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:72 msgid "Archivo" msgstr "Fichier" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:75 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Déposer les fichiers ici ou cliquer pour les sélectionner" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 #, fuzzy msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " @@ -3536,14 +3532,14 @@ msgstr "" "Permet de réaliser l'importation des comptes, catégories et clients depuis " "un fichier archive XML ou CSV." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "" "Les formats de fichier archives XML supportés sont: sysPass, KeePass et " "KeePassX." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 #, fuzzy msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " @@ -3552,7 +3548,7 @@ msgstr "" "Glisser-déposer les fichiers à la zone d'importation ou cliquez sur la " "flèche." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 #, fuzzy msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " @@ -3561,11 +3557,11 @@ msgstr "" "Pour les archives KeePass ou KeePassX, le nom du client sera celui de " "KeePass ou de KeePassX et la catégorie sera celle du nom des groupes." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "L'importation des archives CSV nécessite les formats suivants :" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 #, fuzzy msgid "" "\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" @@ -3574,7 +3570,7 @@ msgstr "" "\"account_name\";\"customer\";\"category\";\"url\";\"user\";\"password\";" "\"notes\"" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:117 #, fuzzy msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " @@ -3583,20 +3579,20 @@ msgstr "" "Dans tous les cas, si le client ou la catégorie n'existent pas ils sont " "automatiquement créés." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:125 msgid "XML" msgstr "XML" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:131 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:146 msgid "Clave de Importación" msgstr "Importer un Mot de Passe" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:136 msgid "Sólo es necesaria para archivos XML de sysPass encriptados." msgstr "Seulement nécessaire pour les fichier XML sysPass chiffrés." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:157 msgid "" "Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " "la actual." @@ -3604,69 +3600,73 @@ msgstr "" "Seulement nécessaire pour les fichier XML sysPass chiffrés avec un Mot de " "Passe Maître différent de l'actuel." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:174 msgid "CSV" msgstr "CSV" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:195 msgid "Delimitador CSV" msgstr "Délimiteur CSV" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:185 msgid "Sólo es necesario para archivos CSV." msgstr "Seulement nécessaire pour les fichiers CSV." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 msgid "Información de la Aplicación" msgstr "Information sur l'Application" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:23 msgid "Versión sysPass" msgstr "Version de sysPass" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:33 msgid "Base de Datos" msgstr "Base de données" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:47 msgid "PHP" msgstr "PHP" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:49 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:34 msgid "Versión" msgstr "Version" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:51 msgid "Extensiones" msgstr "Extensions" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 msgid "Extensiones no disponibles" msgstr "Unavailable extensions" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:59 msgid "Memoria Usada" msgstr "Mémoire Utilisée" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Tasa de descarga" +msgstr "Download rate" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:66 msgid "OP Cache" msgstr "OP Cache" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:88 msgid "Copia de Configuración" msgstr "Configuration de Sauvegarde" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:100 msgid "Indica si el idioma se encuentra disponible" msgstr "Indique si la langue est disponible." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:104 msgid "" "Si no está instalado, es necesario instalar las locales en el sistema " "operativo. Más información en Wiki." @@ -3674,174 +3674,174 @@ msgstr "" "Si non installé, vous devez configurer les bon droits sur le système " "d'exploitation. Plus d'info sur le Wiki." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:116 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:126 msgid "Sesión Encriptada" msgstr "Session Chiffrée" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:121 msgid "Indica si los datos de la sesión están encriptados en el servidor" msgstr "" "Indique si les données de session sont chiffrées sur le serveur ou si elles " "ne le sont pas" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 msgid "Sí" msgstr "Oui" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 msgid "No" msgstr "Non" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:136 msgid "Plugins Cargados" msgstr "Plugins Chargés" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:16 msgid "Esta extensión es necesaria conectar con el servidor de LDAP" msgstr "This extension is needed to connect to the LDAP server" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:46 msgid "Habilitar LDAP" msgstr "Activer l'annuaire LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:48 msgid "Habilita de autentificación mediante servidor LDAP." msgstr "Active l'authentification couplé à un serveur LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:50 msgid "Este método utilizará MySQL en caso de fallo." msgstr "Cette méthode utilisera MySQL en cas de défaillance." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:65 msgid "Active Directory" msgstr "Active Directory" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:67 msgid "Habilita el modo de conexión con LDAP de Active Directory." msgstr "Permet le mode de connexion actif avec l'annuaire LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:84 msgid "Habilita la conexión mediante TLS." msgstr "Enables the connection over TLS" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:99 msgid "Nombre o dirección IP del servidor de LDAP." msgstr "Le nom d'hôte ou l'adresse IP du serveur LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:185 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:219 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:131 msgid "Ejemplos:" msgstr "Exemples :" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:125 msgid "Usuario de conexión" msgstr "Utilisateur de Connexion" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:130 msgid "Usuario para conectar con el servicio de LDAP." msgstr "Utilisateur de connexion au service LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:155 msgid "Clave de conexión" msgstr "Mot de passe de connexion" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:160 msgid "Clave del usuario de conexión a LDAP." msgstr "Mot de passe de l'utilisateur de connexion à l'annuaire LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:176 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:200 msgid "Base de búsqueda" msgstr "Base de recherche" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:181 #, fuzzy msgid "Base en la que realizar la búsqueda de usuarios de LDAP." msgstr "Base dans laquelle se fera la recherche des utilisateurs LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:211 msgid "" "Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." msgstr "" "Groupe LDAP auquel l'utilisateur doit appartenir afin d'autoriser sa " "connexion." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:215 msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." msgstr "Ce groupe a besoin d'être placé dans la base de recherche LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:244 msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Définis le groupe par défaut pour les nouveaux utilisateurs LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:269 msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Définis le profil par défaut pour les nouveaux utilisateurs LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:321 msgid "Importación" msgstr "Import" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:337 msgid "Atributo Login" msgstr "Login Attribué" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:332 msgid "" "Define el atributo a utilizar para el login del usuario en la importación." msgstr "Définir l'attribut pour le login utilisateur durant l'importation." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:350 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:360 msgid "Atributo Nombre" msgstr "Nom d'attribut" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:355 msgid "" "Define el atributo a utilizar para el nombre del usuario en la importación." msgstr "Définir l'attribut pour les noms utilisateurs importés." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:385 msgid "Importar Grupos" msgstr "Import des groupes" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:394 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:404 msgid "Atributo Nombre Grupo" msgstr "Attribut de nom de groupe" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:399 msgid "" "Define el atributo a utilizar para el nombre del grupo en la importación." msgstr "Définie l'attribut pour le nom de groupe lors de l'import" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:415 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:429 msgid "Filtro" msgstr "Filtre" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:420 msgid "Filtro para importar usuarios o grupos de LDAP." msgstr "Filtre pour l'import d'utilisateurs ou de groupes LDAP" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:34 msgid "Habilitar notificaciones de correo" msgstr "Activer les notifications par courriel" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 msgid "Habilitar peticiones por correo" msgstr "Activer les demandes par courriel" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:50 msgid "" "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " "cuentas sin permisos." @@ -3849,39 +3849,39 @@ msgstr "" "Autorise les utilisateurs à effectuer des demandes par courriel d'accès ou " "de modifications à des comptes." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:97 msgid "Habilitar Autentificación" msgstr "Activer l'Authentification" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:135 msgid "Seguridad" msgstr "Sécurité" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:138 msgid "Deshabilitada" msgstr "Désactivé" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:156 #, fuzzy msgid "Dirección de correo de envío" msgstr "Adresse courriel du destinataire" -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:165 msgid "Destinatarios" msgstr "Destinataires" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:16 msgid "Esta extensión es necesaria conectar con DokuWiki" msgstr "This extension is needed to connect with DokuWiki" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:47 msgid "Habilitar enlaces Wiki" msgstr "Activer les liens Wiki" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:48 msgid "" "Habilita la opción de añadir un enlace a Wiki externa para los resultados de " "la búsqueda." @@ -3889,69 +3889,69 @@ msgstr "" "Permet la possibilité d'ajouter un lien pour obtenir des résultats de " "recherche à un Wiki externe." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:56 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:83 msgid "URL de búsqueda Wiki" msgstr "URL de recherche Wiki" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:61 #, fuzzy msgid "URL que utiliza la wiki para realizar una búsqueda de una página." msgstr "URL que le Wiki utilise pour faire une recherche d'entrée." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:65 #, fuzzy msgid "Como parámetro se utiliza el nombre del cliente." msgstr "Le nom du client est utilisée comme paramètre." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:69 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:102 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:187 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:214 msgid "Ejemplo:" msgstr "Exemple :" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:116 msgid "URL de página en Wiki" msgstr "URL de page Wiki" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:94 #, fuzzy msgid "URL que utiliza la wiki para acceder a los detalles de una página." msgstr "URL qu'utilise Wiki pour accéder aux détails d'une page." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:98 msgid "" "El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " "de la Wiki." msgstr "" "Le nom du compte est utilisé comme paramètre lors de la recherche Wiki." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:136 msgid "Prefijo para nombre de cuenta" msgstr "Préfix de nom du compte" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:127 msgid "" "Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." msgstr "Préfix déterminant quels comptes ont un lien vers une page Wiki." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:146 msgid "DokuWiki API" msgstr "DokuWiki API" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:164 msgid "Habilitar API de DokuWiki" msgstr "Active DokuWiki API" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:166 msgid "" "Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." msgstr "Active DokuWiki XML-RPC API pour les liens Wiki." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:168 msgid "" "Para que esta característica funcione, es necesario habilitar los enlaces " "Wiki para el filtrado de cuentas." @@ -3959,212 +3959,212 @@ msgstr "" "Pour utiliser cette fonctionnalité, vous devez activer les liens Wiki pour " "les comptes filtrés" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:199 msgid "URL API" msgstr "API URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:183 msgid "URL de la API de DokuWiki." msgstr "DokuWiki API URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:205 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:227 msgid "URL Base" msgstr "Base URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:210 msgid "URL base de DokuWiki." msgstr "DokuWiki base URL" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:238 #, fuzzy msgid "Usuario para conectar a la API de DokuWiki." msgstr "Utilisateur à connecter au DokuWiki API." -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:282 msgid "Namespace" msgstr "Namespace" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:271 msgid "Namespace utilizado para buscar las páginas." msgstr "Namespace utilisé dans la recherche de pages." #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:170 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:172 msgid "Instalar" msgstr "Installer" -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 +#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 msgid "Filtro ON" msgstr "Filtre ON" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:11 #, php-format msgid "Instalación %s" msgstr "Installation %s" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:21 msgid "Admin de sysPass" msgstr "sysPass Admin" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:29 msgid "Usuario administrador de sysPass" msgstr "Utilisateur \"administrateur\" de Syspass" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:37 msgid "Login del usuario administrador de sysPass" msgstr "Login administrateur de sysPass" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:69 msgid "Configurar BBDD" msgstr "Configuration base de données" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:79 msgid "Usuario acceso BBDD" msgstr "Utilisateur pour accéder à la base de données" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:87 #, fuzzy msgid "Usuario con permisos de administrador de MySQL" msgstr "Utilisateur avec les droits administrateur MySQL" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:95 msgid "Clave acceso BBDD" msgstr "Mot de passe pour accéder à la base de données" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:104 msgid "Nombre BBDD para sysPass" msgstr "Nom de la base de données sysPass" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:112 msgid "Nombre de la base de datos para sysPass" msgstr "Nom de la base de données sysPass" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:121 msgid "Servidor BBDD para sysPass" msgstr "Adresse du serveur de base de données sysPass" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:129 msgid "Nombre del servidor para instalar la base de datos de sysPass" msgstr "Nom du serveur ou installer la base de données sysPass" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:149 msgid "Modo Hosting" msgstr "Mode Hébergé" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:156 msgid "No crea ni verifica los permisos del usuario sobre la BBDD" msgstr "" "Ne créer pas ou vérifier les permissions de l'utilisateur dans la base de " "données" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 msgid "Otros" msgstr "Autres" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 #: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 msgid "Creador" msgstr "Créateur" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 msgid "Eliminar" msgstr "Supprimer" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 msgid "Eliminar Historial" msgstr "Delete History" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 msgid "Opciones" msgstr "Options" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 msgid "Regenerar Autorización" msgstr "Actualiser l'Autorisation" -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 msgid "Token" msgstr "Token" -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:54 msgid "Indica si el cliente es visible para todos los usuarios." msgstr "Indique si le client est visible par tous les utilisateurs" -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:57 msgid "" "Por defecto los clientes asignados a cuentas sólo son visibles para los " "usuarios con acceso a las cuentas." msgstr "Par défaut, les clients assignés aux comptes" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 msgid "Nombre del campo" msgstr "Nom du champ" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 msgid "Texto Ayuda" msgstr "Notice d'Aide" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 msgid "Ayuda del campo" msgstr "Aide du champ" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 msgid "Obligatorio" msgstr "Requis" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 msgid "Puntuación" msgstr "Score" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 msgid "Expresión Regular" msgstr "Regular Expression" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 msgid "Incluir Minúsculas" msgstr "Include Lowercase" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 msgid "Las cuentas sólo serán visibles por el usuario." msgstr "Accounts will be only visible by the user." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 msgid "Los administradores no podrán acceder a las cuentas." msgstr "Administrators won't be able to display the accounts." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." msgstr "Accounts will be only visible by the user and his/her main group." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 msgid "Dirección IP" msgstr "IP Address" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 msgid "Timeout" msgstr "Timeout" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 msgid "" "Prioridad de asignación en caso de coincidir con otros valores asignados por " "usuario, grupo o perfil." @@ -4172,307 +4172,307 @@ msgstr "" "Assignment priority if values match with others assigned by user, group or " "profile." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 msgid "Prioridad de asignación" msgstr "Assignment Priority" -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 msgid "" "Indica si los valores serán forzados al crear o modificar los elementos." msgstr "Enforces the values to be set either on creating or updating an item." -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 msgid "Los valores serán añadidos a los existentes." msgstr "Values will be merged with the existing ones." -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:83 msgid "Hash" msgstr "Hash" -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:91 msgid "URL" msgstr "URL" -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:101 msgid "Uso" msgstr "Utiliser" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 msgid "Nombre de usuario completo" msgstr "Nom complet d'utilisateur" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:58 msgid "Login de inicio de sesión" msgstr "Login de connexion" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:69 #, fuzzy msgid "Login SSO" msgstr "Identification SSO" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:77 msgid "Login de inicio de sesión con SSO" msgstr "Ouverture de session avec SSO" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:84 msgid "Email" msgstr "Courriel" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:92 msgid "Dirección de correo" msgstr "Adresse de courriel" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:200 msgid "Admin Aplicación" msgstr "Admin de l'Application" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:202 msgid "Administrador de la aplicación" msgstr "Administrateur de l'application" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:218 msgid "Admin Cuentas" msgstr "Admin des Comptes" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:220 msgid "Administrador de cuentas" msgstr "Administrateur des comptes" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:240 msgid "Forzar cambio de clave" msgstr "Forcer le changement de mot de passe" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:257 msgid "Deshabilitado" msgstr "Utilisateur Désactivé" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 msgid "Entradas" msgstr "Entrées" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 msgid "Último Acceso" msgstr "Dernier Accès" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 msgid "Fecha Clave Maestra" msgstr "Date du Mot de Passe Maître" -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:311 msgid "Usado en" msgstr "Used in" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 msgid "Usado por" msgstr "Utilisé par" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:108 msgid "(*) Incluido en grupo" msgstr "(*) Listed in group" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 msgid "Gestión" msgstr "Gestion" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 msgid "Crear" msgstr "Créer" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 msgid "Crear nueva cuenta" msgstr "Créer nouveau compte" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 msgid "Ver detalles de cuenta" msgstr "Voir détails du compte" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 msgid "Ver clave de cuenta" msgstr "Voir mot de passe du compte" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 #: ../../../config/actions.xml:259 msgid "Ver Historial" msgstr "Voir Historique" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 msgid "Ver historial de cuenta" msgstr "Voir historique du compte" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 msgid "Editar cuenta" msgstr "Éditer compte" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 msgid "Editar Clave" msgstr "Éditer Mot de Passe" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 msgid "Editar clave de cuenta" msgstr "Éditer mot de passe du compte" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 msgid "Eliminar cuenta" msgstr "Supprimer compte" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 msgid "Ver archivos de cuenta" msgstr "Voir fichiers du compte" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 msgid "Publicar Enlace" msgstr "Partager le Lien" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 msgid "Publicar enlace a cuenta" msgstr "Partager le lien au compte" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 msgid "Crear cuenta privada" msgstr "Créer compte privé" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 msgid "Crear cuenta privada para grupo" msgstr "Créer compte privé pour le groupe" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 msgid "Asignar permisos" msgstr "Définir permissions" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 msgid "Gestión de usuarios" msgstr "Gestion des utilisateurs" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 msgid "Gestión de grupos" msgstr "Gestion des groupes" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 msgid "Gestión de perfiles" msgstr "Gestion des profils" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 msgid "Gestión de categorías" msgstr "Gestion des catégories" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 msgid "Gestión de etiquetas" msgstr "Gestion des tags" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 #, fuzzy msgid "Gestión de clientes" msgstr "Gestion des clients" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 msgid "Gestión de campos personalizados" msgstr "Gestion des champs personnalisés" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 msgid "Gestión de autorizaciones API" msgstr "Gestion des autorisations des APIs" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 msgid "Gestión de enlaces" msgstr "Gestion des liens" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 msgid "Gestión de cuentas" msgstr "Gestion des comptes" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 msgid "Valores por Defecto" msgstr "Default Values" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 msgid "Gestión de Valores por Defecto" msgstr "Default Values Management" #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 #: ../../../config/actions.xml:691 msgid "Configuración General" msgstr "Configuration Générale" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 msgid "Opciones de encriptación" msgstr "Options de chiffrement" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 msgid "Backup" msgstr "Sauvegarde" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 msgid "Realizar copia de seguridad y exportar" msgstr "Faire une sauvegarde et exporter" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 msgid "Importar" msgstr "Importer" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 msgid "Realizar importación de cuentas" msgstr "Effectuer l'importation des comptes" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 msgid "Log de Eventos" msgstr "Journal d'évènements" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 msgid "Ver log de eventos" msgstr "Voir journal d'évènements" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 msgid "Nombre del perfil" msgstr "Nom du profil" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:46 msgid "Clave Anterior" msgstr "Mot de Passe Précédent" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:73 msgid "Acceder" msgstr "Se connecter" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:82 #, fuzzy msgid "¿Olvidó su clave?" msgstr "Mot de passe oublié ?" -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 msgid "Aplicación actualizada correctamente" msgstr "Application mise à jour avec succès" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 #, php-format msgid "Actualización %s" msgstr "Mise à jour %s" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:20 msgid "Actualización de BBDD" msgstr "Actualisation de la base de données" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:22 msgid "Actualización de Aplicación" msgstr "Mise à jour de l'Application" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 msgid "Código de Seguridad" msgstr "Code de Sécurité" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 msgid "" "Este código se encuentra en el archivo de configuración de sysPass con la " "etiqueta \"upgradeKey\"" @@ -4480,7 +4480,7 @@ msgstr "" "Le code est paramétré dans le fichier de configuration de sysPass avec le " "nom de tag \"upgradekey\"" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:47 msgid "" "Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " "o indique los IDs por defecto para los elementos huérfanos." @@ -4488,32 +4488,32 @@ msgstr "" "Des objets orphelins ont été trouvé. Modifiez ces objets ou saisissez leurs " "un ID par défaut." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:49 msgid "Si no se indican los IDs, se crearán nuevos elementos." msgstr "Si les ID objets ne sont pas paramétrés, ils seront créés" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:74 msgid "Introducir un ID de usuario válido para cuentas" msgstr "Saisir un ID utilisateur valide pour les comptes" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 msgid "Introducir un ID de categoría válido para cuentas" msgstr "Saisir un ID catégorie valide pour les comptes" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:96 #, fuzzy msgid "Introducir un ID de cliente válido para cuentas" msgstr "Saisir un ID client valide pour les comptes" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 msgid "Introducir un ID de grupo válido para usuarios" msgstr "Saisir un ID groupe valide pour les utilisateurs" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 msgid "Introducir un ID de perfil válido para usuarios" msgstr "Saisir un ID profil valide pour les utilisateurs" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:128 #, fuzzy msgid "" "Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " @@ -4522,65 +4522,65 @@ msgstr "" "Cette mise à jour utilise un nouveau schéma de chiffrement, il sera " "nécessaire de chiffrer à nouveau toutes les données déjà chiffrées." -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:150 msgid "Introducir login de usuario válido" msgstr "Saisir un login de connexion valide" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:162 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 msgid "He realizado una copia de seguridad completa de sysPass" msgstr "Effectuer une sauvegarde complète de sysPass" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 msgid "Por favor espere mientras el proceso se ejecuta" msgstr "Veuillez patienter pendant le processus" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:184 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 msgid "Actualizar" msgstr "Mise à jour" -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:186 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 msgid "Iniciar Actualización" msgstr "Démarrer la Mise à jour" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:95 msgid "Notificación global" msgstr "Notification globale" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:103 msgid "Sólo para administradores de la aplicación" msgstr "Seulement pour les administrateurs de l'application" -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:107 msgid "Solo Admins" msgstr "Seulement les administrateurs" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:29 msgid "Nombre del plugin" msgstr "Nom du plugin" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:41 #, fuzzy msgid "Versión del plugin" msgstr "Version du Plugin" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:46 msgid "Versión Compatible" msgstr "Version Compatible" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:53 msgid "Versión de sysPass compatible" msgstr "Version sysPass compatible" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:39 msgid "Autor" msgstr "Auteur" -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:65 msgid "Autor del plugin" msgstr "Auteur du plugin" @@ -4593,7 +4593,7 @@ msgid "Para iniciar la actualización introduzca el código de seguridad" msgstr "Entrer le code de sécurité pour commencer la mise à jour" #: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:13 msgid "Solicitud de Cambio de Clave" msgstr "Demande de Changement de Mot de Passe" @@ -4601,61 +4601,69 @@ msgstr "Demande de Changement de Mot de Passe" msgid "Email del Usuario" msgstr "Courriel de l'Utilisateur" -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:39 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:49 msgid "Volver a iniciar sesión" msgstr "Retour au login" -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:46 msgid "Solicitar" msgstr "Demander" -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:56 msgid "Cambiar" msgstr "Changer" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:107 msgid "Ordenar resultados por visitas" msgstr "Trier les résultats par visites" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:109 msgid "" "Ordena los resultados de búsqueda por el número de visitas de las cuentas." msgstr "Trie les résultats de recherche sur le nombre de visite des comptes." -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:124 msgid "Barra de navegación superior" msgstr "Barre de navigation en haut" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:126 msgid "Mostrar una barra de navegación superior en las búsquedas." msgstr "Montrer une barre de navigation en haut lors des recherches." -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:141 msgid "Mostrar Acciones Ocultas" msgstr "Montrer les actions cachées" -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:143 msgid "" "Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." msgstr "" "Montrer les actions cachées pour les éléments de la recherche des comptes." +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:175 +msgid "Notificaciones In-App" +msgstr "In-App Notifications" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:177 +msgid "Habilita la consulta de notificaciones activas In-App." +msgstr "Enables the active In-App notifications polling" + #. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:16 #: ../../../config/actions.xml:277 msgid "Ver Wiki" msgstr "Voir Wiki" -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 #, php-format msgid "Resultados de búsqueda de '%s'" msgstr "Rechercher les résultats de '%s'" -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:37 msgid "Página" msgstr "Page" @@ -5857,6 +5865,12 @@ msgstr "Lien" #~ "Impossible de détecter l'application depuis laquelle les données ont été " #~ "exportés" +#~ msgid "Último backup" +#~ msgstr "Dernière sauvegarde" + +#~ msgid "Última exportación" +#~ msgstr "Dernier export" + #~ msgid "Registro de eventos vaciado" #~ msgstr "Journal d'évènements nettoyé" @@ -5906,6 +5920,12 @@ msgstr "Lien" #~ msgid "Modificar Cuenta" #~ msgstr "Modifier Compte" +#~ msgid "No hay backups para descargar" +#~ msgstr "Il n'y a pas de sauvegarde à télécharger" + +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "Il n'y a aucun fichier XML à télécharger" + #~ msgid "Se permite un máximo de 4 caracteres." #~ msgstr "4 caractères maximum autorisés." @@ -6115,9 +6135,6 @@ msgstr "Lien" #~ msgid "Es necesario crearla y asignar los permisos necesarios" #~ msgstr "Vous devez créer et définir les permissions nécessaires" -#~ msgid "La plantilla no contiene archivos" -#~ msgstr "Le modèle ne contient pas de fichiers" - #~ msgid "Error al actualizar la configuración" #~ msgstr "Erreur durant la mise à jour de la configuration" @@ -6335,6 +6352,9 @@ msgstr "Lien" #~ msgid "Cuentas Vinculadas" #~ msgstr "Comptes Liés" +#~ msgid "Hay %d notificaciones pendientes" +#~ msgstr "Il y a %d de notification(s) non-lue(s)" + #~ msgid "Agente" #~ msgstr "Agent" @@ -6776,9 +6796,6 @@ msgstr "Lien" #~ msgid "Archivo visualizado" #~ msgstr "Fichier affiché" -#~ msgid "Archivo descargado" -#~ msgstr "Fichier téléchargé" - #~ msgid "Archivo: %s" #~ msgstr "Fichier: %s" @@ -7066,3 +7083,12 @@ msgstr "Lien" #~ msgid "Grupo visualizado" #~ msgstr "Group viewed" + +#~ msgid "Plugin disponible" +#~ msgstr "Plugin available" + +#~ msgid "Plugin no disponible" +#~ msgstr "Plugin unavailable" + +#~ msgid "Plugin cargado" +#~ msgstr "Plugin loaded" diff --git a/app/locales/hu_HU/LC_MESSAGES/messages.mo b/app/locales/hu_HU/LC_MESSAGES/messages.mo index 97f75ddf7d9969b79f2f1b695d5a6cd349fc0b44..9e5d01a0b0495bc628597579c00ae38569cf41ed 100644 GIT binary patch delta 18384 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\n" "Language-Team: \n" @@ -21,1647 +21,281 @@ msgstr "" "X-Poedit-SearchPath-1: ../../../../lib\n" "X-Poedit-SearchPath-2: ../../../config\n" -#: ../../../modules/web/Controllers/AccountFileController.php:161 -msgid "CONSULTA INVÁLIDA" -msgstr "Érvénytelen lekérdezés" +#: ../../../../lib/SP/Bootstrap.php:278 +#, php-format +msgid "Versión de PHP requerida >= %s <= %s" +msgstr "Required PHP version >= %s <= %s" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:64 -msgid "La sesión no se ha iniciado o ha caducado" -msgstr "A munkamenet nem indult el, vagy idõtúllépés miatt bezáródott" +#: ../../../../lib/SP/Config/ConfigUtil.php:111 +#, php-format +msgid "Actual: %s - Necesario: 750" +msgstr "Current: %s - Needed: 750" -#: ../../../modules/web/Forms/AccountForm.php:171 -msgid "Es necesario un nombre de cuenta" -msgstr "Fiók név szükséges" +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +msgid "Error interno" +msgstr "Belsõ hiba" -#: ../../../modules/web/Forms/AccountForm.php:175 -#: ../../../modules/web/Forms/ClientForm.php:84 +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +msgid "No se puede usar el módulo de encriptación" +msgstr "A Crypto modul nem tölthetõ be" + +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 #, fuzzy -msgid "Es necesario un nombre de cliente" -msgstr "Ügyfél név szükséges" +msgid "Error al generar datos cifrados" +msgstr "Hiba a titkosítási folyamat közben" -#: ../../../modules/web/Forms/AccountForm.php:161 -#, fuzzy -msgid "Es necesario un usuario" -msgstr "Felhasználónév szükséges" +#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 +#: ../../../../lib/SP/Mvc/View/Template.php:127 +#, fuzzy, php-format +msgid "No es posible obtener la plantilla \"%s\" : %s" +msgstr "Ügyfél létrehozása meghiusúlt" -#: ../../../modules/web/Forms/AccountForm.php:131 -#, fuzzy -msgid "Es necesaria una clave" -msgstr "Jelszó szükséges" +#: ../../../../lib/SP/Http/Address.php:49 +#: ../../../../lib/SP/Http/Address.php:68 +msgid "IP inválida" +msgstr "Invalid IP" -#: ../../../modules/web/Forms/AccountForm.php:179 -#, fuzzy -msgid "Es necesario una categoría" -msgstr "Jelszó szükséges" +#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 +#, php-format +msgid "Es necesaria una clave con al menos %d caracteres" +msgstr "Password needs to be %d characters long" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:114 -msgid "Acción Inválida" -msgstr "Érvénytelen Akció" +#: ../../../../lib/SP/Mvc/View/Template.php:302 +#: ../../../../lib/SP/Mvc/View/Template.php:366 +#, fuzzy, php-format +msgid "No es posible obtener la variable \"%s\"" +msgstr "Ügyfél létrehozása meghiusúlt" -#: ../../../modules/web/Controllers/ConfigBackupController.php:86 -#: ../../../modules/web/Controllers/UserPassResetController.php:173 -#: ../../../modules/web/Forms/AccountForm.php:135 -#: ../../../modules/web/Forms/UserForm.php:161 -msgid "Las claves no coinciden" -msgstr "A jelszó nem egyezik" +#: ../../../../lib/SP/Mvc/View/Template.php:335 +#, fuzzy, php-format +msgid "No es posible destruir la variable \"%s\"" +msgstr "Ügyfél létrehozása meghiusúlt" -#: ../../../modules/api/Controllers/AccountController.php:184 -#: ../../../modules/api/Controllers/AccountController.php:190 -#: ../../../modules/web/Controllers/AccountController.php:718 -#: ../../../modules/web/Controllers/AccountController.php:729 -msgid "Cuenta creada" -msgstr "Fiók hozzáadva" +#: ../../../../lib/SP/Mvc/View/Template.php:356 +msgid "La plantilla no contiene archivos" +msgstr "Template does not contain files" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:200 -#, fuzzy -msgid "Error al crear la cuenta" -msgstr "Hiba a fiók létrehozása közben" +#: ../../../../lib/SP/Plugin/PluginManager.php:170 +#, php-format +msgid "Versión de plugin no compatible (%s)" +msgstr "Plugin version not compatible (%s)" -#: ../../../modules/web/Controllers/ConfigLdapController.php:95 -#: ../../../modules/web/Controllers/ConfigMailController.php:102 -#: ../../../config/strings.js.inc:80 -msgid "Sin cambios" -msgstr "Nincsenek változások" +#: ../../../../lib/SP/Plugin/PluginManager.php:192 +#, php-format +msgid "No es posible cargar el plugin \"%s\"" +msgstr "Unable to load the \"%s\" plugin" -#: ../../../modules/api/Controllers/AccountController.php:234 -#: ../../../modules/api/Controllers/AccountController.php:240 -#: ../../../modules/web/Controllers/AccountController.php:763 -#: ../../../modules/web/Controllers/AccountController.php:774 -msgid "Cuenta actualizada" -msgstr "Fiók frissítve" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 +#, php-format +msgid "Realizado por: %s (%s)" +msgstr "Performed by: %s (%s)" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:382 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:431 -#, fuzzy -msgid "Error al modificar la cuenta" -msgstr "Hiba a fiók frissítése közben" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 +#, php-format +msgid "Dirección IP: %s" +msgstr "IP Address: %s" -#: ../../../modules/api/Controllers/AccountController.php:309 -#: ../../../modules/api/Controllers/AccountController.php:315 -#: ../../../modules/web/Controllers/AccountController.php:893 -#: ../../../modules/web/Controllers/AccountController.php:898 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:110 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:115 -#: ../../../modules/web/Controllers/AccountManagerController.php:145 -#: ../../../modules/web/Controllers/AccountManagerController.php:150 -#, fuzzy -msgid "Cuenta eliminada" -msgstr "Fiók törölve" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:162 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:321 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:192 -#, fuzzy -msgid "Error al eliminar la cuenta" -msgstr "Hiba a fiók törlése közben" - -#: ../../../modules/api/Controllers/AccountController.php:138 -#: ../../../modules/api/Controllers/AccountController.php:144 -#: ../../../modules/web/Controllers/AccountController.php:804 -#: ../../../modules/web/Controllers/AccountController.php:815 -#: ../../../modules/web/Controllers/UserController.php:411 -#: ../../../modules/web/Controllers/UserController.php:415 -#: ../../../modules/web/Controllers/UserPassResetController.php:186 -#: ../../../modules/web/Controllers/UserPassResetController.php:190 -msgid "Clave actualizada" -msgstr "Jelszó frissítve" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:436 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:235 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:260 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:233 -#, fuzzy -msgid "Error al actualizar la clave" -msgstr "Hiba a jelszó frissítése közben" - -#: ../../../modules/web/Controllers/AccountController.php:843 -#: ../../../modules/web/Controllers/AccountController.php:854 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:145 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:150 -msgid "Cuenta restaurada" -msgstr "Fiók restaurált" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:301 -#: ../../../../lib/SP/Services/Account/AccountService.php:582 -#, fuzzy -msgid "Error al restaurar cuenta" -msgstr "Hiba történt helyreállítása számla" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 -#: ../../../config/actions.xml:571 -#, fuzzy -msgid "Ver Usuario" -msgstr "Felhasználó részletek" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 -#: ../../../config/actions.xml:583 -msgid "Editar Usuario" -msgstr "Felhasználó módosítás" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 -#: ../../../config/actions.xml:577 -msgid "Nuevo Usuario" -msgstr "Új felhasználó" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 -#: ../../../config/actions.xml:607 -#, fuzzy -msgid "Ver Grupo" -msgstr "Nézet" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 -#: ../../../config/actions.xml:619 -msgid "Editar Grupo" -msgstr "Csoport módosítás" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 -#: ../../../config/actions.xml:613 -msgid "Nuevo Grupo" -msgstr "Új csoport" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 -#: ../../../config/actions.xml:637 -#, fuzzy -msgid "Ver Perfil" -msgstr "Nézet" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 -#: ../../../config/actions.xml:649 -msgid "Editar Perfil" -msgstr "Profil módosítás" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 -#: ../../../config/actions.xml:643 -msgid "Nuevo Perfil" -msgstr "Új profil" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 -#: ../../../config/actions.xml:331 -#, fuzzy -msgid "Ver Cliente" -msgstr "Nézet" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 -#: ../../../config/actions.xml:343 -#, fuzzy -msgid "Editar Cliente" -msgstr "Ügyfél módosítás" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 -#: ../../../config/actions.xml:337 -#, fuzzy -msgid "Nuevo Cliente" -msgstr "Új ügyfél" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 -#: ../../../config/actions.xml:301 -#, fuzzy -msgid "Ver Categoría" -msgstr "Nézet" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 -#: ../../../config/actions.xml:313 -msgid "Editar Categoría" -msgstr "Kategória módosítás" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 -#: ../../../config/actions.xml:307 -msgid "Nueva Categoría" -msgstr "Új Kategória" - -#: ../../../modules/web/Controllers/AuthTokenController.php:330 -#, fuzzy -msgid "Ver Autorización" -msgstr "Nézet" - -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 -#, fuzzy -msgid "Nueva Autorización" -msgstr "Új Kategória" - -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 -#, fuzzy -msgid "Editar Autorización" -msgstr "Módosítás" - -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 -#, fuzzy -msgid "Nuevo Campo" -msgstr "Új felhasználó" - -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 -#, fuzzy -msgid "Editar Campo" -msgstr "Módosítás" - -#: ../../../modules/web/Forms/UserForm.php:111 -#, fuzzy -msgid "Es necesario un nombre de usuario" -msgstr "Felhasználónév szükséges" - -#: ../../../modules/web/Forms/UserForm.php:115 -msgid "Es necesario un login" -msgstr "Bejelentkezés szükséges" - -#: ../../../modules/web/Forms/UserForm.php:119 -msgid "Es necesario un perfil" -msgstr "Profil szükséges" - -#: ../../../modules/web/Forms/UserForm.php:123 -msgid "Es necesario un grupo" -msgstr "Csoport szükséges" - -#: ../../../modules/web/Forms/UserForm.php:127 -msgid "Es necesario un email" -msgstr "Email szükséges" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:53 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:92 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:151 -#: ../../../modules/web/Controllers/ConfigImportController.php:56 -#: ../../../modules/web/Controllers/ConfigLdapController.php:218 -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:55 -#: ../../../modules/web/Forms/UserForm.php:131 -#: ../../../modules/web/Forms/UserForm.php:153 -#: ../../../modules/web/Forms/UserForm.php:171 -msgid "Ey, esto es una DEMO!!" -msgstr "Aj, ez egy próbaverzió" - -#: ../../../modules/web/Controllers/UserPassResetController.php:169 -#: ../../../modules/web/Forms/AuthTokenForm.php:101 -#: ../../../modules/web/Forms/UserForm.php:157 -msgid "La clave no puede estar en blanco" -msgstr "A jelszó nem lehet üres" - -#: ../../../modules/web/Controllers/UserController.php:311 -#: ../../../modules/web/Controllers/UserController.php:317 -msgid "Usuario creado" -msgstr "Felhasználó hozzáadva" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:474 -#, fuzzy -msgid "Error al crear el usuario" -msgstr "Hiba a felhasználó létrehozása közben" - -#: ../../../modules/web/Controllers/UserController.php:372 -#: ../../../modules/web/Controllers/UserController.php:378 -msgid "Usuario actualizado" -msgstr "Felhasználó frissítve" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:100 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:677 -#: ../../../../lib/SP/Services/User/UserService.php:310 -#, fuzzy -msgid "Error al actualizar el usuario" -msgstr "Hiba a felhasználó frissítése közben" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:165 -#: ../../../../lib/SP/Services/User/UserService.php:331 -#, fuzzy -msgid "Error al modificar la clave" -msgstr "Hiba a jelszó frissítése közben" - -#: ../../../modules/web/Forms/UserForm.php:179 -msgid "No es posible eliminar, usuario en uso" -msgstr "Nem lehet törölni, a felhaszánáló használatban van" - -#: ../../../modules/web/Controllers/UserController.php:277 -#: ../../../modules/web/Controllers/UserController.php:281 -msgid "Usuario eliminado" -msgstr "Felhasználó törölve" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:184 -#, fuzzy -msgid "Error al eliminar el usuario" -msgstr "Hiba a felhasználó törlése közben" - -#: ../../../modules/web/Forms/UserGroupForm.php:84 -msgid "Es necesario un nombre de grupo" -msgstr "Csoport név szükséges" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:306 -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:351 -msgid "Nombre de grupo duplicado" -msgstr "Kettõzött csoport név" - -#: ../../../modules/api/Controllers/UserGroupController.php:91 -#: ../../../modules/api/Controllers/UserGroupController.php:96 -#: ../../../modules/web/Controllers/UserGroupController.php:264 -#: ../../../modules/web/Controllers/UserGroupController.php:268 -msgid "Grupo creado" -msgstr "Csoport hozzáadva" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:315 -#, fuzzy -msgid "Error al crear el grupo" -msgstr "Hiba a csoport létrehozása közben" - -#: ../../../modules/api/Controllers/UserGroupController.php:122 -#: ../../../modules/api/Controllers/UserGroupController.php:127 -#: ../../../modules/web/Controllers/UserGroupController.php:303 -#: ../../../modules/web/Controllers/UserGroupController.php:307 -msgid "Grupo actualizado" -msgstr "Csoport frissítve" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:361 -#, fuzzy -msgid "Error al actualizar el grupo" -msgstr "Hiba a csoport frissítése közben" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 -msgid "Usuarios" -msgstr "Felhasználók" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 +msgid "Solicitud" +msgstr "Request" #. (itstool) path: action/text #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigBackupController.php:120 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 +#: ../../../modules/web/Controllers/ConfigManagerController.php:175 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: ../../../config/actions.xml:13 msgid "Cuentas" msgstr "Fiókok" -#: ../../../../inc/SP/Mgmt/Customers/Customer.class.php:115 -msgid "No es posible eliminar" -msgstr "Nem lehet törölni" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 +msgid "Notificación" +msgstr "Notification" -#: ../../../modules/api/Controllers/UserGroupController.php:151 -#: ../../../modules/api/Controllers/UserGroupController.php:156 -#: ../../../modules/web/Controllers/UserGroupController.php:230 -#: ../../../modules/web/Controllers/UserGroupController.php:234 -msgid "Grupo eliminado" -msgstr "Csoport törölve" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:62 -#, fuzzy -msgid "Error al eliminar el grupo" -msgstr "Hiba a csoport törlése közben" - -#: ../../../modules/web/Forms/UserProfileForm.php:116 -msgid "Es necesario un nombre de perfil" -msgstr "Profil név szükséges" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:230 -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:275 -msgid "Nombre de perfil duplicado" -msgstr "Kettözõtt profil név" - -#: ../../../modules/web/Controllers/UserProfileController.php:248 -msgid "Perfil creado" -msgstr "Profil hozzáadva" - -#: ../../../modules/web/Controllers/UserProfileController.php:284 -msgid "Perfil actualizado" -msgstr "Profil frissítve" - -#: ../../../modules/web/Controllers/UserProfileController.php:215 -#: ../../../modules/web/Controllers/UserProfileController.php:219 -msgid "Perfil eliminado" -msgstr "Profil törölve" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:77 -#: ../../../modules/api/Controllers/ClientController.php:93 -#: ../../../modules/api/Controllers/ClientController.php:98 -#: ../../../modules/web/Controllers/ClientController.php:244 -#: ../../../modules/web/Controllers/ClientController.php:248 -#, fuzzy -msgid "Cliente creado" -msgstr "Ügyfél hozzáadva" - -#: ../../../modules/api/Controllers/ClientController.php:124 -#: ../../../modules/api/Controllers/ClientController.php:129 -#: ../../../modules/web/Controllers/ClientController.php:280 -#: ../../../modules/web/Controllers/ClientController.php:284 -#, fuzzy -msgid "Cliente actualizado" -msgstr "Ügyfél frissítve" - -#: ../../../modules/api/Controllers/ClientController.php:153 -#: ../../../modules/api/Controllers/ClientController.php:158 -#: ../../../modules/web/Controllers/ClientController.php:212 -#: ../../../modules/web/Controllers/ClientController.php:216 -#, fuzzy -msgid "Cliente eliminado" -msgstr "Ügyfél törölve" - -#: ../../../modules/web/Forms/CategoryForm.php:83 -msgid "Es necesario un nombre de categoría" -msgstr "Kategória név szükséges" - -#: ../../../modules/api/Controllers/CategoryController.php:91 -#: ../../../modules/api/Controllers/CategoryController.php:96 -#: ../../../modules/web/Controllers/CategoryController.php:253 -#: ../../../modules/web/Controllers/CategoryController.php:257 -msgid "Categoría creada" -msgstr "Kategória hozzáadva" - -#: ../../../modules/api/Controllers/CategoryController.php:121 -#: ../../../modules/api/Controllers/CategoryController.php:126 -#: ../../../modules/web/Controllers/CategoryController.php:293 -#: ../../../modules/web/Controllers/CategoryController.php:297 -msgid "Categoría actualizada" -msgstr "Kategória frissítve" - -#: ../../../modules/api/Controllers/CategoryController.php:150 -#: ../../../modules/api/Controllers/CategoryController.php:155 -#: ../../../modules/web/Controllers/CategoryController.php:219 -#: ../../../modules/web/Controllers/CategoryController.php:223 -msgid "Categoría eliminada" -msgstr "Kategória törölve" - -#: ../../../modules/web/Controllers/AuthTokenController.php:258 -#, fuzzy -msgid "Autorización creada" -msgstr "Fiók hozzáadva" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 -#: ../../../modules/web/Controllers/AuthTokenController.php:291 -#: ../../../modules/web/Controllers/AuthTokenController.php:300 -#: ../../../modules/web/Controllers/AuthTokenController.php:307 -#, fuzzy -msgid "Autorización actualizada" -msgstr "Fiók frissítve" - -#: ../../../modules/web/Controllers/AuthTokenController.php:225 -#: ../../../modules/web/Controllers/AuthTokenController.php:229 -#, fuzzy -msgid "Autorización eliminada" -msgstr "Fiók törölve" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:87 -#, fuzzy -msgid "Nombre del campo no indicado" -msgstr "Ügyfél név" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:91 -#, fuzzy -msgid "Tipo del campo no indicado" -msgstr "Fájltípus nem engedélyezett" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:95 -msgid "Módulo del campo no indicado" -msgstr "Field module not set" - -#: ../../../modules/web/Controllers/CustomFieldController.php:234 -#: ../../../modules/web/Controllers/CustomFieldController.php:238 -#, fuzzy -msgid "Campo creado" -msgstr "Felhasználó hozzáadva" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:74 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:87 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:156 -#: ../../../modules/web/Controllers/CustomFieldController.php:271 -#: ../../../modules/web/Controllers/CustomFieldController.php:275 -#, fuzzy -msgid "Campo actualizado" -msgstr "Frissítve" - -#: ../../../modules/web/Controllers/CustomFieldController.php:206 -#, fuzzy -msgid "Campo eliminado" -msgstr "Felhasználó törölve" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:94 -msgid "Realizar Backup" -msgstr "Archívum készítés" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:112 -#, fuzzy -msgid "Error al realizar el backup" -msgstr "Hiba Archiválás közben" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:114 -#: ../../../../lib/SP/Services/Export/XmlExportService.php:167 -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -#, fuzzy -msgid "Revise el registro de eventos para más detalles" -msgstr "Részletes leírást az esemény naplóban olvashat" - -#: ../../../modules/api/Controllers/ConfigController.php:57 -#: ../../../modules/web/Controllers/ConfigBackupController.php:64 -#, fuzzy -msgid "Copia de la aplicación y base de datos realizada correctamente" -msgstr "Application and database backup successfully done" - -#: ../../../modules/api/Controllers/ConfigController.php:61 -#: ../../../modules/web/Controllers/ConfigBackupController.php:67 -msgid "Proceso de backup finalizado" -msgstr "Archiválás kész" - -#: ../../../../inc/SP/Core/XmlExport.class.php:146 -#, fuzzy -msgid "Error al realizar la exportación de cuentas" -msgstr "Hiba a fiók fájlok létrehozása közben" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:165 -#, fuzzy -msgid "Error al realizar la exportación" -msgstr "Hiba Archiválás közben" - -#: ../../../../inc/SP/Core/XmlExport.class.php:155 -#, fuzzy -msgid "Exportación de cuentas realizada correctamente" -msgstr "A beállítások elmentve" - -#: ../../../modules/api/Controllers/ConfigController.php:91 -#: ../../../modules/api/Controllers/ConfigController.php:94 -#: ../../../modules/web/Controllers/ConfigBackupController.php:102 -#: ../../../modules/web/Controllers/ConfigBackupController.php:127 -#, fuzzy -msgid "Proceso de exportación finalizado" -msgstr "Archiválás kész" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:169 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:171 -#, fuzzy -msgid "Los parámetros de LDAP no están configurados" -msgstr "LDAP paraméterek nem lettek elmentve" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:95 -#: ../../../modules/web/Controllers/ConfigLdapController.php:154 -#: ../../../modules/web/Controllers/ConfigLdapController.php:197 -msgid "Conexión a LDAP correcta" -msgstr "LDAP kapcsolat" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:109 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:196 -msgid "Objetos encontrados" -msgstr "Objektum találatok" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:257 -msgid "Modificar Configuración" -msgstr "Konfiguráció szerkesztése" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:70 -#, fuzzy -msgid "El tamaño máximo por archivo es de 16MB" -msgstr "Maximálisan feltölthetõ fájl mérete 16MB" - -#: ../../../config/strings.js.inc:45 -msgid "Extensión no permitida" -msgstr "A kiterjesztés nem engedélyezett" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:115 -#, fuzzy -msgid "Faltan parámetros de Proxy" -msgstr "Hiányzó Wiki paraméter" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:129 -#, fuzzy -msgid "Proxy habiltado" -msgstr "Felhasználó letiltva" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:134 -#, fuzzy -msgid "Proxy deshabilitado" -msgstr "Felhasználó letiltva" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:223 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:309 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:375 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:422 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:475 -#, fuzzy -msgid "Sección" -msgstr "Akció" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 -msgid "General" -msgstr "Általános" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:59 -msgid "Faltan parámetros de Wiki" -msgstr "Hiányzó Wiki paraméter" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:69 -#, fuzzy -msgid "Wiki habiltada" -msgstr "Inaktív" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:74 -#, fuzzy -msgid "Wiki deshabilitada" -msgstr "Inaktív" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 -#: ../../../config/actions.xml:37 -msgid "Wiki" -msgstr "Wiki" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:69 -#: ../../../modules/web/Controllers/ConfigLdapController.php:139 -#: ../../../modules/web/Controllers/ConfigLdapController.php:175 -msgid "Faltan parámetros de LDAP" -msgstr "Hiányzó LDAP paraméter" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:88 -#, fuzzy -msgid "LDAP habiltado" -msgstr "Inaktív" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:93 -#, fuzzy -msgid "LDAP deshabilitado" -msgstr "Inaktív" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 -msgid "LDAP" -msgstr "LDAP" - -#: ../../../modules/web/Controllers/ConfigMailController.php:68 -#: ../../../modules/web/Controllers/ConfigMailController.php:125 -msgid "Faltan parámetros de Correo" -msgstr "Hiányzó mail paraméter" - -#: ../../../modules/web/Controllers/ConfigMailController.php:93 -#, fuzzy -msgid "Correo habiltado" -msgstr "Email elküldve" - -#: ../../../modules/web/Controllers/ConfigMailController.php:100 -#, fuzzy -msgid "Correo deshabilitado" -msgstr "Felhasználó letiltva" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 -msgid "Correo" -msgstr "Mail" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:68 -msgid "Configuración actualizada" -msgstr "Beállítások frissítve" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:297 -#: ../../../../lib/SP/Services/Auth/LoginService.php:321 -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:144 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -#, fuzzy -msgid "Clave maestra actualizada" -msgstr "A mester jelszó frissítve" - -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:145 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -#, fuzzy -msgid "Reinicie la sesión para cambiarla" -msgstr "Indítsa újra a munkamenetot a frissítéshez" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:72 -#, fuzzy -msgid "Clave maestra no indicada" -msgstr "Mester jelszó szükséges" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:76 -msgid "Se ha de confirmar el cambio de clave" -msgstr "A jelszó frissítéshez megerõsítés szükséges" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:80 -msgid "Las claves son idénticas" -msgstr "A jelszó megegyezik" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:84 -msgid "Las claves maestras no coinciden" -msgstr "A mester jelszó nem egyezik" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:88 -msgid "La clave maestra actual no coincide" -msgstr "A jelenlegi mester jelszó nem egyezik" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:89 -#, fuzzy -msgid "Errores al actualizar las claves de las cuentas" -msgstr "Hiba a fiókok jelszavainak frissítése közben" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:233 -#, fuzzy -msgid "Errores al actualizar las claves de las cuentas del histórico" -msgstr "Hiba a fiókok jelszavainak frissítése közben" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:136 -#, fuzzy -msgid "Errores al actualizar datos de campos personalizados" -msgstr "Hiba a fiókok jelszavainak frissítése közben" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:71 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:77 #: ../../../../lib/SP/Services/Account/AccountCryptService.php:138 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:67 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:75 #: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:83 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:108 msgid "Actualizar Clave Maestra" msgstr "Frissítse a mester jelszót" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:138 -#, fuzzy -msgid "Error al guardar el hash de la clave maestra" -msgstr "Hiba a mester jelszó hash-ének elmentése közben" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 +#, php-format +msgid "Cuentas actualizadas: %d / %d" +msgstr "Accounts updated: %d / %d" -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:103 -#, fuzzy -msgid "Generar Clave Temporal" -msgstr "Generate Temporary Password" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 +#, php-format +msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" +msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 -msgid "Clave" -msgstr "Jelszó" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:200 -#, fuzzy -msgid "Clave Temporal Generada" -msgstr "Generált Jelszó" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:110 -#, fuzzy -msgid "Error al generar clave temporal" -msgstr "Generate Temporary Password" - -#: ../../../../inc/SP/Controller/LoginController.class.php:124 -msgid "Usuario/Clave no introducidos" -msgstr "Felhasználó/jelszó nem lett kitöltve" - -#: ../../../../inc/SP/Controller/LoginController.class.php:108 -#, fuzzy -msgid "Inicio sesión" -msgstr "munkamenet elindult (LDAP)" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:114 -#, fuzzy -msgid "Error al guardar los datos de LDAP" -msgstr "Hiba az LDAP felhasználók adatainak elmentése közben" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:59 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:154 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:244 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:334 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:389 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:417 -#: ../../../../lib/SP/Services/Account/AccountService.php:227 -#: ../../../../lib/SP/Services/Account/AccountService.php:232 -#: ../../../../lib/SP/Services/Api/ApiService.php:129 -#: ../../../../lib/SP/Services/Api/ApiService.php:227 -#: ../../../../lib/SP/Services/Api/ApiService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:187 -#: ../../../../lib/SP/Services/Auth/LoginService.php:351 -#: ../../../../lib/SP/Services/Auth/LoginService.php:500 -#: ../../../../lib/SP/Services/Auth/LoginService.php:505 -#: ../../../../lib/SP/Services/Auth/LoginService.php:537 -#: ../../../../lib/SP/Services/Auth/LoginService.php:644 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:311 -#: ../../../../lib/SP/Services/CustomField/CustomFieldService.php:203 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:108 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:79 -#: ../../../../lib/SP/Services/User/UserPassService.php:232 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:122 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:177 -msgid "Error interno" -msgstr "Belsõ hiba" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:224 -#, fuzzy -msgid "Error al actualizar la clave del usuario en la BBDD" -msgstr "Adatbázis Hiba a felhasználói jelszó frissítése közben" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:157 -#: ../../../../lib/SP/Services/Auth/LoginService.php:456 -#: ../../../../lib/SP/Services/Auth/LoginService.php:463 -#: ../../../../lib/SP/Services/Auth/LoginService.php:571 -#: ../../../../lib/SP/Services/Auth/LoginService.php:576 -#: ../../../../lib/SP/Services/Auth/LoginService.php:615 -#: ../../../../lib/SP/Services/Auth/LoginService.php:620 -#, fuzzy -msgid "Login incorrecto" -msgstr "Hibás felhasználónév vagy jelszó" - -#: ../../../../lib/SP/Core/Acl/Acl.php:301 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:112 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:155 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:110 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:142 -#: ../../../../lib/SP/Services/Auth/LoginService.php:217 -#: ../../../../lib/SP/Services/Auth/LoginService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:386 -#: ../../../../lib/SP/Services/Auth/LoginService.php:453 -#: ../../../../lib/SP/Services/Auth/LoginService.php:561 #: ../../../../lib/SP/Services/Auth/LoginService.php:604 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:238 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/Controllers/LoginController.php:102 -#: ../../../modules/web/Controllers/UserController.php:278 -#: ../../../modules/web/Controllers/UserController.php:312 -#: ../../../modules/web/Controllers/UserController.php:373 -#: ../../../modules/web/Controllers/UserController.php:412 -#: ../../../modules/web/Controllers/UserPassResetController.php:187 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 -msgid "Usuario" -msgstr "Felhasználó" +msgid "N/D" +msgstr "n.a." -#: ../../../../lib/SP/Services/Auth/LoginService.php:471 -#: ../../../../lib/SP/Services/Auth/LoginService.php:476 +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 +#, php-format +msgid "No es posible crear el directorio de backups (\"%s\")" +msgstr "Unable to create the backups directory (\"%s\")" + +#: ../../../../lib/SP/Services/Config/ConfigService.php:68 +#: ../../../../lib/SP/Services/Config/ConfigService.php:153 +#, php-format +msgid "Parámetro no encontrado (%s)" +msgstr "Parameter not found (%s)" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 +#, php-format +msgid "Clave Maestra %s" +msgstr "Master Password %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 +msgid "" +"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " +"el siguiente inicio." +msgstr "" +"A new sysPass master password has been generated, so the next time you log " +"into the application it will be requested." + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 +#, php-format +msgid "La nueva clave es: %s" +msgstr "The new Master Password is: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 +#, php-format +msgid "Esta clave estará activa hasta: %s" +msgstr "This password will be valid until: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 +msgid "No olvide acceder lo antes posible para guardar los cambios." +msgstr "" +"Please, don't forget to log in as soon as possible to save the changes." + +#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 +msgid "Actualizando datos encriptados" +msgstr "Updating encrypted data" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 +msgid "Categorías" +msgstr "Kategóriák" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 #, fuzzy -msgid "Cuenta expirada" -msgstr "Fiók" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:484 -#: ../../../../lib/SP/Services/Auth/LoginService.php:489 -msgid "El usuario no tiene grupos asociados" -msgstr "a felhasználó nincs csoporthoz társítva" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:605 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 -#, fuzzy -msgid "Autentificación" -msgstr "Engedélyezése Hitelesítés" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:216 -#: ../../../../lib/SP/Services/Auth/LoginService.php:223 -msgid "Usuario deshabilitado" -msgstr "Felhasználó letiltva" - -#: ../../../../inc/SP/Controller/LoginController.class.php:246 -#, fuzzy -msgid "Error al obtener los datos del usuario de la BBDD" -msgstr "Hiba a felhasználói adatok adatbázisból való betöltése közben" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:339 -#, fuzzy -msgid "La clave maestra no ha sido guardada o es incorrecta" -msgstr "A mester jelszó nem lett elmentve, vagy helytelen" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:282 -#: ../../../../lib/SP/Services/Auth/LoginService.php:288 -#: ../../../../lib/SP/Services/Auth/LoginService.php:306 -#: ../../../../lib/SP/Services/Auth/LoginService.php:312 -#, fuzzy -msgid "Clave maestra incorrecta" -msgstr "Érvénytelen mester jelszó" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/Controllers/UserProfileController.php:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 -msgid "Perfil" -msgstr "Profil" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:120 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:146 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:156 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:143 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:140 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/Controllers/UserGroupController.php:231 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:137 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 -msgid "Grupo" -msgstr "Csoport" - -#: ../../../modules/web/Controllers/AccountFileController.php:370 -msgid "Gestión de archivos deshabilitada" -msgstr "Fálj menedzsment inaktív" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 -msgid "Subir Archivo" -msgstr "Fájl feltöltés" - -#: ../../../modules/web/Controllers/AccountFileController.php:167 -#, fuzzy -msgid "No hay extensiones permitidas" -msgstr "Tiltott kiterjesztések" - -#: ../../../../lib/SP/Services/Import/FileImport.php:100 -#: ../../../modules/web/Controllers/AccountFileController.php:184 -msgid "Tipo de archivo no soportado" -msgstr "Fájltípus nem engedélyezett" - -#: ../../../modules/web/Controllers/AccountFileController.php:191 -msgid "Archivo inválido" -msgstr "Érvénytelen fájl" - -#: ../../../../lib/SP/Services/Import/FileImport.php:116 -#: ../../../modules/web/Controllers/AccountFileController.php:199 -#: ../../../modules/web/Controllers/AccountFileController.php:219 -#, fuzzy -msgid "Error interno al leer el archivo" -msgstr "Belsõ hiba a fájl olvasása közben" - -#: ../../../modules/web/Controllers/AccountFileController.php:231 -#: ../../../modules/web/Controllers/AccountFileController.php:240 -msgid "Archivo guardado" -msgstr "Fájl elmentve" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:77 -msgid "No se pudo guardar el archivo" -msgstr "Hiba a fájl mentése közben" - -#: ../../../../ajax/ajax_filesMgmt.php:154 -#: ../../../../ajax/ajax_filesMgmt.php:198 -msgid "No es un ID de archivo válido" -msgstr "Helytelen fájl ID" - -#: ../../../modules/web/Controllers/AccountFileController.php:70 -#: ../../../modules/web/Controllers/AccountFileController.php:122 -msgid "El archivo no existe" -msgstr "A fájl nem létezik" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 -#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 -msgid "Descargar Archivo" -msgstr "Fájl letöltés" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/Controllers/ItemPresetController.php:278 -#: ../../../modules/web/Controllers/ItemPresetController.php:311 -#: ../../../modules/web/Controllers/ItemPresetController.php:350 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 -msgid "ID" -msgstr "ID" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:122 -#: ../../../modules/web/Controllers/AccountFileController.php:84 -#: ../../../modules/web/Controllers/AccountFileController.php:97 -#: ../../../modules/web/Controllers/AccountFileController.php:137 -#: ../../../modules/web/Controllers/AccountFileController.php:232 -#: ../../../modules/web/Controllers/AccountFileController.php:329 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 -msgid "Archivo" -msgstr "Fájl" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:451 -#: ../../../../lib/SP/Services/Auth/LoginService.php:514 -#: ../../../../lib/SP/Services/Auth/LoginService.php:560 -#: ../../../../lib/SP/Services/Auth/LoginService.php:603 -#: ../../../modules/web/Controllers/AccountFileController.php:235 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/Controllers/ItemPresetController.php:310 -#: ../../../modules/web/Controllers/ItemPresetController.php:349 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 -msgid "Tipo" -msgstr "Típus" - -#: ../../../modules/web/Controllers/AccountFileController.php:236 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 -msgid "Tamaño" -msgstr "Méret" - -#: ../../../modules/web/Controllers/AccountFileController.php:328 -msgid "Archivo eliminado" -msgstr "Fájl törölve" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:279 -#, fuzzy -msgid "Error al eliminar el archivo" -msgstr "Hiba a fájlok törlése közben" - -#: ../../../../lib/SP/Services/Api/ApiService.php:152 -#, fuzzy -msgid "Parámetros incorrectos" -msgstr "Helytelen paraméter" - -#: ../../../modules/web/Controllers/UserPassResetController.php:101 -msgid "Recuperación de Clave" -msgstr "Jelszó visszaállítás" - -#: ../../../modules/web/Controllers/UserPassResetController.php:102 -msgid "Solicitado para" -msgstr "Kért, hogy" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "Solicitud enviada" -msgstr "Kérést elküldve" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "En breve recibirá un correo para completar la solicitud." -msgstr "A kérés befejezéséhez email értesítõt küldünk" - -#: ../../../../ajax/ajax_passReset.php:86 -#: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:329 -msgid "Modificar Clave Usuario" -msgstr "Felhasználó jelszavának szerkesztése" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 -msgid "Login" -msgstr "Belépés" - -#: ../../../../ajax/ajax_passReset.php:107 -#, fuzzy -msgid "La clave es incorrecta o no coincide" -msgstr "A jelszó helytelen, vagy nem egyezik" - -#: ../../../modules/web/Controllers/AccountController.php:919 -#: ../../../modules/web/Forms/NotificationForm.php:100 -msgid "Es necesaria una descripción" -msgstr "Leírás szükséges" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1173 -msgid "Solicitud de Modificación de Cuenta" -msgstr "Kérés fiók módosításához" - -#: ../../../modules/web/Controllers/AccountController.php:927 -msgid "Solicitante" -msgstr "Kérõ" - -#: ../../../modules/web/Controllers/AccountController.php:224 -#: ../../../modules/web/Controllers/AccountController.php:555 -#: ../../../modules/web/Controllers/AccountController.php:611 -#: ../../../modules/web/Controllers/AccountController.php:650 -#: ../../../modules/web/Controllers/AccountController.php:684 -#: ../../../modules/web/Controllers/AccountController.php:719 -#: ../../../modules/web/Controllers/AccountController.php:764 -#: ../../../modules/web/Controllers/AccountController.php:805 -#: ../../../modules/web/Controllers/AccountController.php:844 -#: ../../../modules/web/Controllers/AccountController.php:894 -#: ../../../modules/web/Controllers/AccountController.php:928 -#: ../../../modules/web/Controllers/AccountFileController.php:233 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:146 -#: ../../../modules/web/Controllers/AccountManagerController.php:146 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 -msgid "Cuenta" -msgstr "Fiók" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:159 -#: ../../../modules/api/Controllers/AccountController.php:72 -#: ../../../modules/api/Controllers/AccountController.php:104 -#: ../../../modules/api/Controllers/AccountController.php:140 -#: ../../../modules/api/Controllers/AccountController.php:186 -#: ../../../modules/api/Controllers/AccountController.php:236 -#: ../../../modules/api/Controllers/AccountController.php:311 -#: ../../../modules/web/Controllers/AccountController.php:225 -#: ../../../modules/web/Controllers/AccountController.php:720 -#: ../../../modules/web/Controllers/AccountController.php:765 -#: ../../../modules/web/Controllers/AccountController.php:806 -#: ../../../modules/web/Controllers/AccountController.php:845 -#: ../../../modules/web/Controllers/AccountController.php:895 -#: ../../../modules/web/Controllers/AccountController.php:929 -#: ../../../modules/web/Controllers/AccountFileController.php:234 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:112 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:147 -#: ../../../modules/web/Controllers/AccountManagerController.php:147 -#: ../../../modules/web/Controllers/ClientController.php:213 -#: ../../../modules/web/Controllers/ClientController.php:245 -#: ../../../modules/web/Controllers/ClientController.php:281 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 -#, fuzzy -msgid "Cliente" +msgid "Clientes" msgstr "Ügyfél" -#: ../../../modules/web/Controllers/AccountController.php:930 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 -msgid "Descripción" -msgstr "Leírás" +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:104 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 +msgid "Usuarios" +msgstr "Felhasználók" -#: ../../../../lib/SP/Repositories/User/UserRepository.php:697 -#, fuzzy -msgid "Error al actualizar preferencias" -msgstr "Hiba a jelszó frissítése közben" +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 +msgid "Grupos" +msgstr "Csoportok" -#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:70 -#, fuzzy -msgid "Preferencias actualizadas" -msgstr "Fiókok frissítve" +#: ../../../../lib/SP/Services/Export/XmlExportService.php:123 +#: ../../../../lib/SP/Storage/File/FileCache.php:74 +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 +#, php-format +msgid "No es posible crear el directorio (%s)" +msgstr "Unable to create the directory (%s)" -#: ../../../../inc/SP/Controller/ItemShowController.class.php:509 -msgid "La clave maestra no coincide" -msgstr "A mester jelszó nem egyezik" +#: ../../../../lib/SP/Services/Import/CsvImport.php:50 +#, php-format +msgid "Formato detectado: %s" +msgstr "Detected format: %s" -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:132 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:96 -msgid "No tiene permisos para acceder a esta cuenta" -msgstr "Nincs jogosultságod belépni ebbe a fiókba" +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 +#, fuzzy, php-format +msgid "El número de campos es incorrecto (%d)" +msgstr "A mezõk száma helytelen" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 -#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 -msgid "Ver Clave" -msgstr "Jelszó" +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 +#, fuzzy, php-format +msgid "Compruebe el formato del archivo CSV en línea %s" +msgstr "Kérem, ellenõrizze a CSV fájl kiterjesztését" -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 -#: ../../../config/strings.js.inc:72 -#, fuzzy -msgid "Clave de Cuenta" -msgstr "Fiók jelszavának szerkesztése" +#: ../../../../lib/SP/Services/Import/ImportService.php:89 +#, php-format +msgid "Tipo mime no soportado (\"%s\")" +msgstr "Mime type not supported (\"%s\")" -#: ../../../../inc/SP/Http/Request.class.php:55 -#, fuzzy -msgid "No es posible acceder directamente a este archivo" -msgstr "A fájl közvetlen elérése meghiúsult" +#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 +#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 +#, php-format +msgid "El nodo \"%s\" no existe" +msgstr "The \"%s\" node doesn't exist" -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:143 -msgid "Error al actualizar el historial" -msgstr "Hiba az elõzmények frissítése közben" +#: ../../../../lib/SP/Services/Install/MySQL.php:135 +#, php-format +msgid "No es posible comprobar el usuario de sysPass (%s)" +msgstr "Unable to check the sysPass user (%s)" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -msgid "Actualizar Cuenta" -msgstr "Frissítés Számla" +#: ../../../../lib/SP/Services/Install/MySQL.php:213 +#: ../../../../lib/SP/Services/Install/MySQL.php:329 +#: ../../../../lib/SP/Services/Install/MySQL.php:341 +#, php-format +msgid "Error al crear la BBDD ('%s')" +msgstr "Error while creating the DB ('%s')" -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:164 -#, fuzzy -msgid "Error al actualizar los grupos secundarios" -msgstr "Hiba a másodlagos csoportok frissítése közben" +#: ../../../../lib/SP/Services/Install/MySQL.php:237 +#, php-format +msgid "Error al establecer permisos de la BBDD ('%s')" +msgstr "Error while setting the database permissions ('%s')" -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:103 -#, fuzzy -msgid "Error al actualizar los usuarios de la cuenta" -msgstr "Hiba a fiók felhasználóinak frissítése közben" +#: ../../../../lib/SP/Services/Install/MySQL.php:309 +#, php-format +msgid "Error al seleccionar la BBDD '%s' (%s)" +msgstr "Error while selecting '%s' database (%s)" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 -#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 -msgid "Restaurar Cuenta" -msgstr "Restore Számla" +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 +msgid "Importado desde LDAP" +msgstr "Imported from LDAP" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:451 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:623 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:75 -#, fuzzy -msgid "No se pudieron obtener los datos de la cuenta" -msgstr "Hiba a fiókok jelszavainak betöltése közben" +#: ../../../../lib/SP/Services/Task/TaskService.php:81 +msgid "No es posible crear archivo de bloqueo" +msgstr "Unable to create the lock file" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:256 -#: ../../../modules/web/Controllers/AccountController.php:300 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:278 -#: ../../../config/actions.xml:157 -msgid "Nueva Cuenta" -msgstr "Új fiók" +#: ../../../../lib/SP/Services/Task/TaskService.php:184 +msgid "Esperando actualización de progreso ..." +msgstr "Waiting for progress updating ..." -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:389 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 -#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 -#: ../../../config/actions.xml:793 -#, fuzzy -msgid "Eliminar Cuenta" -msgstr "Fiók törlése" +#: ../../../../lib/SP/Services/Track/TrackService.php:162 +#, php-format +msgid "Intentos excedidos (%d/%d)" +msgstr "Attempts exceeded (%d/%d)" -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:106 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:139 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:191 -#, fuzzy -msgid "Error al eliminar grupos asociados a la cuenta" -msgstr "Hiba a felhasználó csoportok törlése közben" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:76 -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:132 -#, fuzzy -msgid "Error al eliminar usuarios asociados a la cuenta" -msgstr "Hiba a fiók felhasználók törlése közben" - -#: ../../../../inc/SP/Mgmt/Files/FileUtil.class.php:102 -#, fuzzy -msgid "Error al eliminar archivos asociados a la cuenta" -msgstr "Hiba a fiók fájljainak törlése közben" - -#: ../../../../inc/SP/Account/AccountCrypt.class.php:70 -#: ../../../../inc/SP/Account/AccountCrypt.class.php:200 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:73 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:208 -msgid "Inicio" -msgstr "Start" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:81 -#, fuzzy -msgid "Error en el módulo de encriptación" -msgstr "Titkosító modul hiba" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:115 -#, fuzzy -msgid "Error al obtener las claves de las cuentas" -msgstr "Hiba a fiókok jelszavainak betöltése közben" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:183 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:188 -#, fuzzy -msgid "Fallo al actualizar la clave de la cuenta" -msgstr "Hiba a fiók jelszavának frissítése közben" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:193 -#: ../../../modules/web/Controllers/AccountManagerController.php:185 -#: ../../../modules/web/Controllers/AccountManagerController.php:188 -#, fuzzy -msgid "Cuentas actualizadas" -msgstr "Fiókok frissítve" - -#: ../../../../inc/SP/Account/AccountUtil.class.php:132 -#, fuzzy -msgid "No se pudieron obtener los datos de las cuentas" -msgstr "Hiba a fiókok jelszavainak betöltése közben" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:212 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:218 -msgid "Actualizar Clave Maestra (H)" -msgstr "Frissítse a mester jelszót (H)" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:158 -msgid "La clave maestra del registro no coincide" -msgstr "A rekord mester jelszava nem egyezik" - -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:157 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:160 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:283 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:286 -#, fuzzy -msgid "Fallo al actualizar la clave del histórico" -msgstr "Hiba a elõzmények mester jelszavának frissítése közben" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:109 -#, fuzzy -msgid "Registros actualizados" -msgstr "Rekordok frissítve" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:7 -#, fuzzy -msgid "Buscar Cuentas" -msgstr "Keresés" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 -#, fuzzy -msgid "Ver Cuenta" -msgstr "Fiók adatok" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 -#: ../../../config/actions.xml:193 -msgid "Copiar Cuenta" -msgstr "Fiók másolása" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:344 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 -#: ../../../config/actions.xml:163 -msgid "Editar Cuenta" -msgstr "Fiók módosítás" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:181 -#, fuzzy -msgid "Editar Clave de Cuenta" -msgstr "fiók jelszavának módosításe" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 -#: ../../../config/actions.xml:259 -msgid "Ver Historial" -msgstr "Elõzmények" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 -#: ../../../config/actions.xml:19 -msgid "Archivos" -msgstr "Fájlok" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:25 -#, fuzzy -msgid "Peticiones" -msgstr "Email kérések engedélyezése" - -#: ../../../../inc/SP/Core/Acl.class.php:196 -#, fuzzy -msgid "Gestión Aplicación" -msgstr "Menedzsment" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:49 -#, fuzzy -msgid "Gestión Categorías" -msgstr "Kategória Menedzsment" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:55 -#, fuzzy -msgid "Gestión Clientes" -msgstr "Ügyfél Menedzsment" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:67 -#, fuzzy -msgid "Gestión Campos Personalizados" -msgstr "Menedzsment" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:61 -#, fuzzy -msgid "Gestión Autorizaciones API" -msgstr "Menedzsment" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:115 -#, fuzzy -msgid "Gestión Usuarios" -msgstr "Felhasználó Menedzsment" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:121 -#, fuzzy -msgid "Gestión Grupos" -msgstr "Csoport Menedzsment" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:127 -#, fuzzy -msgid "Gestión Perfiles" -msgstr "Profil Menedzsment" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:348 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:61 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 -#: ../../../config/actions.xml:685 -msgid "Configuración" -msgstr "LDAP kapcsolat rendben" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 -#: ../../../config/actions.xml:691 -#, fuzzy -msgid "Configuración General" -msgstr "Általános beállítások" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 -#, fuzzy -msgid "Encriptación" -msgstr "A Crypto modul nem tölthetõ be" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 -#: ../../../config/actions.xml:733 -msgid "Copia de Seguridad" -msgstr "Archiválás" - -#: ../../../../inc/SP/Core/Acl.class.php:220 -msgid "Exportar" -msgstr "Exportálás" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 -#, fuzzy -msgid "Importar" -msgstr "Fiókok importálása" - -#: ../../../../lib/SP/Services/Api/ApiService.php:186 -#: ../../../modules/api/Controllers/ControllerBase.php:146 -#, fuzzy -msgid "Acceso no permitido" -msgstr "Belépés megtagadva" - -#: ../../../../lib/SP/Http/Json.php:179 -#, fuzzy -msgid "Error de codificación" -msgstr "LDAP kapcsolódási hiba" - -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:221 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:309 -#, fuzzy -msgid "La autorización ya existe" -msgstr "Az adatbázis már létezik" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 -#, fuzzy -msgid "Actualizar Autorización" -msgstr "Frissítés Számla" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 -#, fuzzy -msgid "Eliminar Autorización" -msgstr "Profil törlése" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:141 -#, fuzzy -msgid "Usuario no pertenece al grupo" -msgstr "a felhasználó nincs csoporthoz társítva" +#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 +msgid "El archivo de actualización no contiene datos" +msgstr "The update file does not contain data" #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 +#: ../../../modules/web/Controllers/UserController.php:235 +#: ../../../modules/web/Controllers/UserController.php:356 +#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Cambio de Clave" msgstr "Jelszó változtatás" @@ -1677,501 +311,688 @@ msgstr "A folyamat befejezéséhez látogass el a következõ oldalra:" msgid "Si no ha solicitado esta acción, ignore este mensaje." msgstr "Amennyiben nincs szüksége erre a folyamatra, zárja be ezt az üzenetet" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:333 -msgid "Esta operación sólo es posible en entornos Linux" -msgstr "Ez a mûvelet csak Linux környezetben érhetõ el" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 +msgid "Fallo de autentificación" +msgstr "Authentication error" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:101 -#, fuzzy -msgid "Error al realizar backup en modo compatibilidad" -msgstr "Error while doing backup in compatibility mode" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 +msgid "Error al realizar la consulta" +msgstr "Error while doing the query" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:138 -#, fuzzy -msgid "Compruebe los permisos del directorio de backups" -msgstr "Ellenõrizze az archiválás mappa jogosultságait" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 +msgid "URL de conexión no establecida" +msgstr "Connection URL not set" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:107 -msgid "Nombre de categoría duplicado" -msgstr "Kategória neve duplázva" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 +#, php-format +msgid "Error al descomprimir datos del archivo (%s)" +msgstr "Error while decompressing the file data (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:68 -#, fuzzy -msgid "Error al crear la categoría" -msgstr "Hiba a kategória létrehozása közben" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 +msgid "Error al obtener los datos" +msgstr "Error while retrieving the data" -#: ../../../../lib/SP/Services/Import/KeepassImport.php:104 -#: ../../../modules/web/Controllers/CategoryController.php:220 -#: ../../../modules/web/Controllers/CategoryController.php:254 -#: ../../../modules/web/Controllers/CategoryController.php:294 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 -msgid "Categoría" -msgstr "Kategória" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 +#, php-format +msgid "Error al comprimir datos del archivo (%s)" +msgstr "Error while compressing the file data (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:275 -#, fuzzy -msgid "Error al eliminar la categoría" -msgstr "Hiba a kategória törlése közben" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 +msgid "Datos no cargados" +msgstr "Data not loaded" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 -#: ../../../config/actions.xml:319 -msgid "Eliminar Categoría" -msgstr "Kategória törlése" +#: ../../../../lib/SP/Storage/File/FileHandler.php:72 +#: ../../../../lib/SP/Storage/File/FileHandler.php:135 +#, php-format +msgid "No es posible escribir en el archivo (%s)" +msgstr "Unable to read/write the file (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:125 -#, fuzzy -msgid "Error al actualizar la categoría" -msgstr "Hiba a kategória frissítése közben" +#: ../../../../lib/SP/Storage/File/FileHandler.php:89 +#, php-format +msgid "No es posible abrir el archivo (%s)" +msgstr "Unable to open the file (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:108 -#: ../../../../inc/SP/Config/ConfigDB.class.php:148 -msgid "Modificar configuración" -msgstr "Konfiguráció frissítése" +#: ../../../../lib/SP/Storage/File/FileHandler.php:104 +#: ../../../../lib/SP/Storage/File/FileHandler.php:118 +#, php-format +msgid "No es posible leer desde el archivo (%s)" +msgstr "Unable to read from file (%s)" -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:82 -msgid "Parámetro" -msgstr "Paraméter" +#: ../../../../lib/SP/Storage/File/FileHandler.php:173 +#, php-format +msgid "No es posible cerrar el archivo (%s)" +msgstr "Unable to close the file (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:152 -msgid "Valor" -msgstr "Érték" +#: ../../../../lib/SP/Storage/File/FileHandler.php:219 +#, php-format +msgid "No es posible escribir el archivo (%s)" +msgstr "Unable to write in file (%s)" -#: ../../../../lib/SP/Util/ErrorUtil.php:128 +#: ../../../../lib/SP/Storage/File/FileHandler.php:234 +#, php-format +msgid "Archivo no encontrado (%s)" +msgstr "File not found (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:259 +#: ../../../../lib/SP/Storage/File/FileHandler.php:314 +#, php-format +msgid "No es posible leer el archivo (%s)" +msgstr "Unable to read/write the file (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:286 +#, php-format +msgid "No es posible eliminar el archivo (%s)" +msgstr "Unable to delete file (%s)" + +#: ../../../../lib/SP/Util/ErrorUtil.php:148 msgid "Opción no disponible" msgstr "Beállítás nem elérhetõ" -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:129 -#: ../../../../lib/SP/Util/ErrorUtil.php:133 -#: ../../../../lib/SP/Util/ErrorUtil.php:137 -#: ../../../../lib/SP/Util/ErrorUtil.php:141 #: ../../../../lib/SP/Util/ErrorUtil.php:149 -#: ../../../../lib/SP/Util/ErrorUtil.php:156 +#: ../../../../lib/SP/Util/ErrorUtil.php:153 +#: ../../../../lib/SP/Util/ErrorUtil.php:157 +#: ../../../../lib/SP/Util/ErrorUtil.php:161 +#: ../../../../lib/SP/Util/ErrorUtil.php:169 +#: ../../../../lib/SP/Util/ErrorUtil.php:176 #: ../../../modules/web/Controllers/ErrorController.php:124 -#: ../../../modules/web/Controllers/UserPassResetController.php:94 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Consulte con el administrador" msgstr "Kérem, keresse a rendszergazdát" -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:136 +#: ../../../../lib/SP/Util/ErrorUtil.php:152 +msgid "No tiene permisos para acceder a esta cuenta" +msgstr "Nincs jogosultságod belépni ebbe a fiókba" + +#: ../../../../lib/SP/Util/ErrorUtil.php:156 msgid "No tiene permisos para acceder a esta página" msgstr "Nincs jogosultságod belépni ebbe az oldalba" -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Util/ErrorUtil.php:140 -#: ../../../modules/web/Controllers/AccountFileController.php:261 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:59 -#: ../../../modules/web/Controllers/AccountManagerController.php:77 -#: ../../../modules/web/Controllers/AccountManagerController.php:204 -#: ../../../modules/web/Controllers/AuthTokenController.php:68 -#: ../../../modules/web/Controllers/AuthTokenController.php:105 -#: ../../../modules/web/Controllers/AuthTokenController.php:170 -#: ../../../modules/web/Controllers/AuthTokenController.php:200 -#: ../../../modules/web/Controllers/AuthTokenController.php:243 -#: ../../../modules/web/Controllers/AuthTokenController.php:278 -#: ../../../modules/web/Controllers/AuthTokenController.php:327 -#: ../../../modules/web/Controllers/CategoryController.php:66 -#: ../../../modules/web/Controllers/CategoryController.php:100 -#: ../../../modules/web/Controllers/CategoryController.php:164 -#: ../../../modules/web/Controllers/CategoryController.php:194 -#: ../../../modules/web/Controllers/CategoryController.php:237 -#: ../../../modules/web/Controllers/CategoryController.php:277 -#: ../../../modules/web/Controllers/CategoryController.php:317 -#: ../../../modules/web/Controllers/ClientController.php:64 -#: ../../../modules/web/Controllers/ClientController.php:96 -#: ../../../modules/web/Controllers/ClientController.php:160 -#: ../../../modules/web/Controllers/ClientController.php:190 -#: ../../../modules/web/Controllers/ClientController.php:230 -#: ../../../modules/web/Controllers/ClientController.php:268 -#: ../../../modules/web/Controllers/ClientController.php:304 -#: ../../../modules/web/Controllers/CustomFieldController.php:65 -#: ../../../modules/web/Controllers/CustomFieldController.php:97 -#: ../../../modules/web/Controllers/CustomFieldController.php:159 -#: ../../../modules/web/Controllers/CustomFieldController.php:189 -#: ../../../modules/web/Controllers/CustomFieldController.php:221 -#: ../../../modules/web/Controllers/CustomFieldController.php:258 -#: ../../../modules/web/Controllers/CustomFieldController.php:295 -#: ../../../modules/web/Controllers/EventlogController.php:101 -#: ../../../modules/web/Controllers/ItemPresetController.php:67 -#: ../../../modules/web/Controllers/ItemPresetController.php:151 -#: ../../../modules/web/Controllers/ItemPresetController.php:188 -#: ../../../modules/web/Controllers/ItemPresetController.php:226 -#: ../../../modules/web/Controllers/ItemPresetController.php:256 -#: ../../../modules/web/Controllers/ItemPresetController.php:295 -#: ../../../modules/web/Controllers/ItemPresetController.php:334 -#: ../../../modules/web/Controllers/NotificationController.php:100 -#: ../../../modules/web/Controllers/NotificationController.php:160 -#: ../../../modules/web/Controllers/NotificationController.php:175 -#: ../../../modules/web/Controllers/NotificationController.php:206 -#: ../../../modules/web/Controllers/NotificationController.php:237 -#: ../../../modules/web/Controllers/NotificationController.php:288 -#: ../../../modules/web/Controllers/NotificationController.php:315 -#: ../../../modules/web/Controllers/NotificationController.php:348 -#: ../../../modules/web/Controllers/PluginController.php:98 -#: ../../../modules/web/Controllers/PluginController.php:117 -#: ../../../modules/web/Controllers/PublicLinkController.php:71 -#: ../../../modules/web/Controllers/PublicLinkController.php:105 -#: ../../../modules/web/Controllers/PublicLinkController.php:167 -#: ../../../modules/web/Controllers/PublicLinkController.php:193 -#: ../../../modules/web/Controllers/PublicLinkController.php:223 -#: ../../../modules/web/Controllers/PublicLinkController.php:264 -#: ../../../modules/web/Controllers/PublicLinkController.php:296 -#: ../../../modules/web/Controllers/PublicLinkController.php:338 -#: ../../../modules/web/Controllers/TagController.php:65 -#: ../../../modules/web/Controllers/TagController.php:99 -#: ../../../modules/web/Controllers/TagController.php:159 -#: ../../../modules/web/Controllers/TagController.php:189 -#: ../../../modules/web/Controllers/TagController.php:223 -#: ../../../modules/web/Controllers/TagController.php:254 -#: ../../../modules/web/Controllers/TagController.php:285 -#: ../../../modules/web/Controllers/UserController.php:69 -#: ../../../modules/web/Controllers/UserController.php:101 -#: ../../../modules/web/Controllers/UserController.php:186 -#: ../../../modules/web/Controllers/UserController.php:218 -#: ../../../modules/web/Controllers/UserController.php:254 -#: ../../../modules/web/Controllers/UserController.php:296 -#: ../../../modules/web/Controllers/UserController.php:357 -#: ../../../modules/web/Controllers/UserController.php:398 -#: ../../../modules/web/Controllers/UserController.php:435 -#: ../../../modules/web/Controllers/UserGroupController.php:74 -#: ../../../modules/web/Controllers/UserGroupController.php:108 -#: ../../../modules/web/Controllers/UserGroupController.php:179 -#: ../../../modules/web/Controllers/UserGroupController.php:209 -#: ../../../modules/web/Controllers/UserGroupController.php:249 -#: ../../../modules/web/Controllers/UserGroupController.php:288 -#: ../../../modules/web/Controllers/UserGroupController.php:327 -#: ../../../modules/web/Controllers/UserProfileController.php:64 -#: ../../../modules/web/Controllers/UserProfileController.php:96 -#: ../../../modules/web/Controllers/UserProfileController.php:163 -#: ../../../modules/web/Controllers/UserProfileController.php:193 -#: ../../../modules/web/Controllers/UserProfileController.php:233 -#: ../../../modules/web/Controllers/UserProfileController.php:268 -#: ../../../modules/web/Controllers/UserProfileController.php:304 +#: ../../../../lib/SP/Util/ErrorUtil.php:160 msgid "No tiene permisos para realizar esta operación" msgstr "Nincs jogosultságod végrehajtani ezt a mûveletet" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:56 -#: ../../../config/strings.js.inc:85 -msgid "Aviso" -msgstr "Figyelem" +#: ../../../../lib/SP/Util/ErrorUtil.php:164 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 +#, fuzzy +msgid "Clave maestra actualizada" +msgstr "A mester jelszó frissítve" -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:105 -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:116 -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." +#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 +#, fuzzy +msgid "Reinicie la sesión para cambiarla" +msgstr "Indítsa újra a munkamenetot a frissítéshez" -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -msgid "No se puede usar el módulo de encriptación" +#: ../../../../lib/SP/Util/ErrorUtil.php:168 +#: ../../../../lib/SP/Util/ErrorUtil.php:175 +msgid "Se ha producido una excepción" +msgstr "An exception occured" + +#: ../../../modules/api/Controllers/AccountController.php:144 +msgid "Clave actualizada" +msgstr "Jelszó frissítve" + +#: ../../../modules/api/Controllers/AccountController.php:194 +msgid "Cuenta creada" +msgstr "Fiók hozzáadva" + +#: ../../../modules/api/Controllers/AccountController.php:245 +msgid "Cuenta actualizada" +msgstr "Fiók frissítve" + +#: ../../../modules/api/Controllers/AccountController.php:320 +#, fuzzy +msgid "Cuenta eliminada" +msgstr "Fiók törölve" + +#: ../../../modules/api/Controllers/CategoryController.php:96 +msgid "Categoría creada" +msgstr "Kategória hozzáadva" + +#: ../../../modules/api/Controllers/CategoryController.php:126 +msgid "Categoría actualizada" +msgstr "Kategória frissítve" + +#: ../../../modules/api/Controllers/CategoryController.php:155 +msgid "Categoría eliminada" +msgstr "Kategória törölve" + +#: ../../../modules/api/Controllers/ClientController.php:98 +#, fuzzy +msgid "Cliente creado" +msgstr "Ügyfél hozzáadva" + +#: ../../../modules/api/Controllers/ClientController.php:129 +#, fuzzy +msgid "Cliente actualizado" +msgstr "Ügyfél frissítve" + +#: ../../../modules/api/Controllers/ClientController.php:158 +#, fuzzy +msgid "Cliente eliminado" +msgstr "Ügyfél törölve" + +#: ../../../modules/api/Controllers/ConfigController.php:61 +msgid "Proceso de backup finalizado" +msgstr "Archiválás kész" + +#: ../../../modules/api/Controllers/ConfigController.php:94 +#, fuzzy +msgid "Proceso de exportación finalizado" +msgstr "Archiválás kész" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 +msgid "Id de la cuenta" +msgstr "Account Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 +msgid "Clave del token" +msgstr "Token's password" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 +msgid "Devolver detalles en la respuesta" +msgstr "Send details in the response" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:89 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:92 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:163 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:293 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:170 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:253 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:260 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:35 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:98 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:27 +msgid "Clave" +msgstr "Jelszó" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:114 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:181 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:90 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 +msgid "Fecha Caducidad Clave" +msgstr "Password Expiry Date" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:73 +msgid "Nombre de cuenta" +msgstr "Fiók név" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 +msgid "Id de categoría" +msgstr "Category Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 +msgid "Id de cliente" +msgstr "Client Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 +msgid "Usuario de acceso" +msgstr "Felhasználó elérése" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:136 +msgid "URL o IP de acceso" +msgstr "URL vagy IP elérés" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:134 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 +msgid "Notas sobre la cuenta" +msgstr "Jegyzetek a fiókokról" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:198 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 +msgid "Cuenta Privada" +msgstr "Private Account" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:217 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 +msgid "Cuenta Privada Grupo" +msgstr "Private Account for Group" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:252 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:254 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:13 +msgid "Cuenta Vinculada" +msgstr "Linked Account" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 +msgid "Array con Ids de etiquetas" +msgstr "Array with tags id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 +msgid "Id de grupo" +msgstr "Group Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 +#: ../../../modules/api/Controllers/Help/TagHelp.php:77 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 +msgid "Texto a buscar" +msgstr "Keresendõ szöveg" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 +#: ../../../modules/api/Controllers/Help/TagHelp.php:78 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 +msgid "Número de resultados a mostrar" +msgstr "Number of results to show" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 +msgid "Id de categoría a filtrar" +msgstr "Category Id to filter on" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 +msgid "Id de cliente a filtrar" +msgstr "Client Id to filter on" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 +msgid "Array con Ids de etiquetas a filtrar" +msgstr "Array with tags id for filtering" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 +msgid "Operador de filtrado" +msgstr "Filtering operator" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:29 +msgid "Nombre de la categoría" +msgstr "Kategória név" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:41 +msgid "Descripción de la categoría" +msgstr "Kategória leírás" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:30 +#, fuzzy +msgid "Nombre del cliente" +msgstr "Ügyfél név" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:43 +#, fuzzy +msgid "Descripción del cliente" +msgstr "Ügyfél leírás" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:99 +msgid "Global" +msgstr "Global" + +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 +msgid "Ruta" +msgstr "Path" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:43 +#: ../../../modules/api/Controllers/Help/TagHelp.php:65 +#: ../../../modules/api/Controllers/Help/TagHelp.php:89 +msgid "Id de etiqueta" +msgstr "Tag Id" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:54 +#: ../../../modules/api/Controllers/Help/TagHelp.php:66 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:29 +msgid "Nombre de la etiqueta" +msgstr "Tag name" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:31 +msgid "Nombre del grupo" +msgstr "Csoport név" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:44 +msgid "Descripción del grupo" +msgstr "Csoport leírás" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 +msgid "Array con Ids de usuarios" +msgstr "Array with users Id" + +#: ../../../modules/api/Controllers/TagController.php:94 +msgid "Etiqueta creada" +msgstr "Tag added" + +#: ../../../modules/api/Controllers/TagController.php:123 +msgid "Etiqueta actualizada" +msgstr "Tag updated" + +#: ../../../modules/api/Controllers/TagController.php:152 +msgid "Etiqueta eliminada" +msgstr "Tag removed" + +#: ../../../modules/api/Controllers/UserGroupController.php:96 +msgid "Grupo creado" +msgstr "Csoport hozzáadva" + +#: ../../../modules/api/Controllers/UserGroupController.php:127 +msgid "Grupo actualizado" +msgstr "Csoport frissítve" + +#: ../../../modules/api/Controllers/UserGroupController.php:156 +msgid "Grupo eliminado" +msgstr "Csoport törölve" + +#: ../../../modules/web/Controllers/AccountController.php:149 +#: ../../../modules/web/Controllers/AccountController.php:204 +#: ../../../modules/web/Controllers/AccountController.php:489 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:56 +msgid "Detalles de Cuenta" +msgstr "Fiók adatok" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:261 +#: ../../../modules/web/Controllers/AccountController.php:307 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:275 +#: ../../../config/actions.xml:157 +msgid "Nueva Cuenta" +msgstr "Új fiók" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:353 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 +#: ../../../config/actions.xml:163 +msgid "Editar Cuenta" +msgstr "Fiók módosítás" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:400 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 +#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 +#: ../../../config/actions.xml:793 +#, fuzzy +msgid "Eliminar Cuenta" +msgstr "Fiók törlése" + +#: ../../../modules/web/Controllers/AccountController.php:445 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 +msgid "Modificar Clave de Cuenta" +msgstr "Fiók jelszavának szerkesztése" + +#: ../../../modules/web/Controllers/AccountFileController.php:211 +#, php-format +msgid "Extensión: %s" +msgstr "Extension: %s" + +#: ../../../modules/web/Controllers/AccountFileController.php:405 +msgid "Gestión de archivos deshabilitada" +msgstr "Fálj menedzsment inaktív" + +#: ../../../modules/web/Controllers/AccountFileController.php:424 +msgid "No hay archivos asociados a la cuenta" +msgstr "There are no linked files for the account" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountManagerController.php:216 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 +#: ../../../config/actions.xml:493 +msgid "Actualización Masiva" +msgstr "Bulk Update" + +#: ../../../modules/web/Controllers/AuthTokenController.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 +#, fuzzy +msgid "Nueva Autorización" +msgstr "Új Kategória" + +#: ../../../modules/web/Controllers/AuthTokenController.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 +#, fuzzy +msgid "Editar Autorización" +msgstr "Módosítás" + +#: ../../../modules/web/Controllers/AuthTokenController.php:347 +#, fuzzy +msgid "Ver Autorización" +msgstr "Nézet" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:118 +#: ../../../config/actions.xml:307 +msgid "Nueva Categoría" +msgstr "Új Kategória" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 +#: ../../../config/actions.xml:313 +msgid "Editar Categoría" +msgstr "Kategória módosítás" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:335 +#: ../../../config/actions.xml:301 +#, fuzzy +msgid "Ver Categoría" +msgstr "Nézet" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:93 +#: ../../../config/actions.xml:337 +#, fuzzy +msgid "Nuevo Cliente" +msgstr "Új ügyfél" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:174 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 +#: ../../../config/actions.xml:343 +#, fuzzy +msgid "Editar Cliente" +msgstr "Ügyfél módosítás" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:326 +#: ../../../config/actions.xml:331 +#, fuzzy +msgid "Ver Cliente" +msgstr "Nézet" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:153 +#: ../../../modules/web/Controllers/ConfigLdapController.php:197 +msgid "Resultados" +msgstr "Results" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:159 +#: ../../../modules/web/Controllers/ConfigLdapController.php:204 +#, php-format +msgid "Objetos encontrados: %d" +msgstr "Objects found: %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:279 +#, php-format +msgid "Usuarios importados: %d / %d" +msgstr "Imported users: %d / %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:280 +#, php-format +msgid "Errores: %d" +msgstr "Errors: %d" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:161 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 +msgid "General" +msgstr "Általános" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:190 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:29 +#: ../../../config/actions.xml:37 +msgid "Wiki" +msgstr "Wiki" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:209 +msgid "LDAP" +msgstr "LDAP" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:235 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:12 +msgid "Correo" +msgstr "Mail" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:274 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 +#, fuzzy +msgid "Encriptación" msgstr "A Crypto modul nem tölthetõ be" -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +#: ../../../modules/web/Controllers/ConfigManagerController.php:302 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:61 #, fuzzy -msgid "Error al generar datos cifrados" -msgstr "Hiba a titkosítási folyamat közben" +msgid "No se encontraron backups" +msgstr "Nincsenek elérhetõ Archívumok" -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:102 +#: ../../../modules/web/Controllers/ConfigManagerController.php:312 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 #, fuzzy -msgid "No es posible generar las claves RSA" -msgstr "Ügyfél létrehozása meghiusúlt" +msgid "No se encontró archivo de exportación" +msgstr "Nem lehet a konfigurációs fájlba írni" -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:135 -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:168 -#, fuzzy -msgid "El archivo de clave no existe" -msgstr "A fájl nem létezik" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:315 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:78 +#: ../../../config/actions.xml:733 +msgid "Copia de Seguridad" +msgstr "Archiválás" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 -#, fuzzy -msgid "El número de campos es incorrecto (%d)" -msgstr "A mezõk száma helytelen" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 -#, fuzzy -msgid "Compruebe el formato del archivo CSV en línea %s" -msgstr "Kérem, ellenõrizze a CSV fájl kiterjesztését" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 +#: ../../../modules/web/Controllers/ConfigManagerController.php:332 msgid "Importar Cuentas" msgstr "Fiókok importálása" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:166 +#: ../../../modules/web/Controllers/ConfigManagerController.php:352 +msgid "No instalado" +msgstr "Not installed" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:357 #, fuzzy -msgid "Error importando cuenta" -msgstr "Hiba a fiók importálása közben" +msgid "Información" +msgstr "Mutat néhány információt az alkalmazásról és a teljesítményrõl" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 -msgid "Campos Personalizados" -msgstr "Custom Fields" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:76 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 -msgid "Actualizando datos encriptados" -msgstr "Updating encrypted data" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:110 +#: ../../../modules/web/Controllers/CustomFieldController.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 #, fuzzy -msgid "Registros no actualizados" -msgstr "Rekordok frissítve" +msgid "Nuevo Campo" +msgstr "Új felhasználó" -#. (itstool) path: strings/text -#: ../../../config/strings.xml:8 +#: ../../../modules/web/Controllers/CustomFieldController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 #, fuzzy -msgid "Texto" -msgstr "Keresendõ szöveg" +msgid "Editar Campo" +msgstr "Módosítás" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 -#, fuzzy -msgid "Fecha" -msgstr "Dátum hozzáadva" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:5 -msgid "Número" -msgstr "Szám" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 -msgid "Email" -msgstr "Email" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:6 -msgid "Teléfono" -msgstr "Telefon" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:9 -msgid "Link" -msgstr "Link" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:4 -msgid "Color" -msgstr "Szín" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/ConfigBackupController.php:122 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 -msgid "Categorías" -msgstr "Kategóriák" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/ConfigBackupController.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 -#, fuzzy -msgid "Clientes" -msgstr "Ügyfél" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 -msgid "Grupos" -msgstr "Csoportok" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:62 -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:116 -#, fuzzy -msgid "Cliente duplicado" -msgstr "Kettõzött ügyfél" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:80 -#, fuzzy -msgid "Error al crear el cliente" -msgstr "Hiba az ügyfél létrehozása közben" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:136 -#, fuzzy -msgid "Error al actualizar el cliente" -msgstr "Hiba az ügyfél frissítése közben" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 -msgid "Actualizar Cliente" -msgstr "Frissítse az ügyfelet" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:283 -#, fuzzy -msgid "Error al eliminar el cliente" -msgstr "Hiba az ügyfél törlése közben" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 -#: ../../../config/actions.xml:349 -#, fuzzy -msgid "Eliminar Cliente" -msgstr "Ügyfél törlése" - -#: ../../../../lib/SP/Services/Install/MySQL.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:97 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:117 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:164 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:176 -msgid "No es posible conectar con la BD" -msgstr "Csatlakozás a DB-hez meghiusúlt" - -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:166 -#, fuzzy -msgid "Compruebe los datos de conexión" -msgstr "Please, check connection parameters" - -#. Not available -#: ../../../../lib/SP/Core/Acl/Acl.php:294 -#: ../../../../lib/SP/Services/Auth/LoginService.php:600 -msgid "N/D" -msgstr "n.a." - -#: ../../../../lib/SP/Core/Acl/Acl.php:300 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 -msgid "Acción" -msgstr "Akció" - -#: ../../../../inc/SP/Log/Email.class.php:64 -msgid "Realizado por" -msgstr "Által végrehajtva" - -#: ../../../../inc/SP/Log/Email.class.php:76 -#: ../../../../inc/SP/Log/Email.class.php:191 -msgid "Enviar Email" -msgstr "Email küldése" - -#: ../../../../lib/SP/Services/Mail/MailService.php:141 -#: ../../../modules/web/Controllers/ConfigMailController.php:138 -#: ../../../modules/web/Controllers/ConfigMailController.php:144 -msgid "Correo enviado" -msgstr "Email elküldve" - -#: ../../../../lib/SP/Services/Mail/MailService.php:81 -#: ../../../../lib/SP/Services/Mail/MailService.php:151 -#, fuzzy -msgid "Error al enviar correo" -msgstr "Hiba az email küldése közben" - -#: ../../../../lib/SP/Services/Mail/MailService.php:142 -#: ../../../modules/web/Controllers/ConfigMailController.php:139 -msgid "Destinatario" -msgstr "Címzett" - -#: ../../../../inc/SP/Log/Email.class.php:85 -msgid "CC" -msgstr "CC" - -#: ../../../../lib/SP/Services/Import/FileImport.php:67 -#: ../../../../lib/SP/Services/Import/FileImport.php:88 -msgid "Archivo no subido correctamente" -msgstr "A fájl feltöltése sikeres" - -#: ../../../../lib/SP/Services/Import/FileImport.php:69 -#: ../../../../lib/SP/Services/Import/FileImport.php:90 -#, fuzzy -msgid "Verifique los permisos del usuario del servidor web" -msgstr "Kérem, ellenõrizze az webszerver felhasználójának jogosultságait" - -#: ../../../../lib/SP/Services/Import/FileImport.php:102 -#, fuzzy -msgid "Compruebe la extensión del archivo" -msgstr "Kérem, ellenõrizze a fájl kiterjesztését" - -#: ../../../../lib/SP/Services/Import/FileImport.php:118 -#, fuzzy -msgid "Compruebe la configuración de PHP para subir archivos" -msgstr "Kérem, tekintse meg a PHP konfigurációt fájlok feltötése elõtt" - -#: ../../../../lib/SP/Services/Import/FileImport.php:157 -#: ../../../../lib/SP/Services/Import/FileImport.php:183 -#, fuzzy -msgid "Compruebe los permisos del directorio temporal" -msgstr "Kérem, ellenõrizze az ideiglenes mappa jogosultságait" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 -#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 -msgid "Eliminar Archivo" -msgstr "Fájl törlése" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 -#: ../../../config/actions.xml:625 -msgid "Eliminar Grupo" -msgstr "Csoport törlése" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:108 -#, fuzzy -msgid "Error al eliminar los usuarios del grupo" -msgstr "Hiba a felhasználó törlése közben" - -#: ../../../../lib/SP/Services/Import/ImportService.php:91 -#, fuzzy -msgid "Compruebe el formato del archivo" -msgstr "Kérem, ellenõrizze a CSV fájl kiterjesztését" - -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigLdapController.php:260 -msgid "Importación finalizada" -msgstr "Importálás kész" - -#: ../../../modules/web/Controllers/ErrorController.php:123 -#, fuzzy -msgid "Error en la verificación de la base de datos" -msgstr "Hiba az adatbázis ellenõrzése közben" - -#: ../../../../lib/SP/Core/Context/SessionContext.php:547 -msgid "La sesión no puede ser inicializada" -msgstr "A munkamenetot nem lehet elindítani" - -#: ../../../../lib/SP/Config/ConfigUtil.php:94 -msgid "El directorio \"/config\" no existe" -msgstr "\"/config\" mappa nem létezik" - -#: ../../../../lib/SP/Config/ConfigUtil.php:100 -msgid "No es posible escribir en el directorio \"config\"" -msgstr "Nem lehet a \"/config\" mappába írni" - -#: ../../../../lib/SP/Config/ConfigUtil.php:109 -#, fuzzy -msgid "Los permisos del directorio \"/config\" son incorrectos" -msgstr "\"/config\" mappa jogosultságai helytelenek" +#: ../../../modules/web/Controllers/CustomFieldController.php:317 +msgid "Ver Campo" +msgstr "View Field" #: ../../../modules/web/Controllers/ErrorController.php:107 msgid "Aplicación en mantenimiento" @@ -2181,394 +1002,1022 @@ msgstr "Az alkalmazás fut" msgid "En breve estará operativa" msgstr "Hamar végezni fog" -#: ../../../modules/web/Controllers/LoginController.php:101 -msgid "Finalizar sesión" -msgstr "Kijelentkezés" - -#: ../../../modules/web/Controllers/LoginController.php:103 -msgid "Tiempo inactivo" -msgstr "Idõ kikapcsolása" - -#: ../../../modules/web/Controllers/LoginController.php:104 -msgid "Tiempo total" -msgstr "Teljes idõ" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 -msgid "La aplicación necesita actualizarse" -msgstr "Frissítsd az alkalmazást" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:43 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 +#: ../../../modules/web/Controllers/ErrorController.php:123 #, fuzzy -msgid "Actualizar" -msgstr "Frissítés Számla" +msgid "Error en la verificación de la base de datos" +msgstr "Hiba az adatbázis ellenõrzése közben" -#: ../../../../lib/SP/Controller/MainActionController.php:91 -#: ../../../../lib/SP/Controller/MainActionController.php:148 -msgid "Actualización" -msgstr "Frissítés" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 +msgid "Ver Actual" +msgstr "Általános" -#: ../../../../lib/SP/Controller/MainActionController.php:149 -msgid "Actualización de versión realizada." -msgstr "Verzió frissítés kész" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:360 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:310 +#: ../../../modules/web/themes/material-blue/views/config/general.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:295 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:440 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:294 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:194 +msgid "Atrás" +msgstr "Vissza" -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:113 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:229 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:161 -#: ../../../modules/web/Controllers/ConfigBackupController.php:118 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 -msgid "Versión" -msgstr "Verzió" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 +msgid "Solicitar Modificación" +msgstr "Kérés módosítás" -#: ../../../../lib/SP/Services/Install/Installer.php:106 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 +msgid "Restaurar cuenta desde este punto" +msgstr "Restore véve ezen a ponton" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:130 +msgid "Guardar" +msgstr "Mentés" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 +#: ../../../config/actions.xml:439 +msgid "Actualizar Enlace Público" +msgstr "Update Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 +#: ../../../config/actions.xml:433 +msgid "Eliminar Enlace Público" +msgstr "Delete Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 +#: ../../../config/actions.xml:421 +msgid "Crear Enlace Público" +msgstr "Create Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 +#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 +msgid "Ver Clave" +msgstr "Jelszó" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 #, fuzzy -msgid "Indicar nombre de usuario admin" -msgstr "Írd be az admin felhasználó nevét" +msgid "Copiar Clave en Portapapeles" +msgstr "A jelszó nem lehet üres" -#: ../../../../lib/SP/Services/Install/Installer.php:108 +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 +#: ../../../config/actions.xml:193 +msgid "Copiar Cuenta" +msgstr "Fiók másolása" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 +#: ../../../config/strings.js.inc:72 #, fuzzy -msgid "Usuario admin para acceso a la aplicación" -msgstr "Rendszergazda felhasználó bejelentkezés" +msgid "Clave de Cuenta" +msgstr "Fiók jelszavának szerkesztése" -#: ../../../../lib/SP/Services/Install/Installer.php:113 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 +msgid "Más Acciones" +msgstr "Több akció" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:59 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:34 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:40 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 #, fuzzy -msgid "Indicar la clave de admin" -msgstr "Írd be az admin jelszót" +msgid "Cliente" +msgstr "Ügyfél" -#: ../../../../lib/SP/Services/Install/Installer.php:115 -msgid "Clave del usuario admin de la aplicación" -msgstr "Az alkalmazás rendszergazdai jelszava" - -#: ../../../../lib/SP/Services/Install/Installer.php:120 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 #, fuzzy -msgid "Indicar la clave maestra" -msgstr "Írd be a mester jelszót" +msgid "Ordenar por Cliente" +msgstr "Rendezés Ügyfél szerint" -#: ../../../../lib/SP/Services/Install/Installer.php:122 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:43 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:22 +msgid "Nombre" +msgstr "Név" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 +msgid "Ordenar por Nombre" +msgstr "Rendezés Név szerint" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:72 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:45 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:51 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:105 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 +msgid "Categoría" +msgstr "Kategória" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 +msgid "Ordenar por Categoría" +msgstr "Rendezés Kategória szerint" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:141 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:61 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:149 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:233 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:247 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:24 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:94 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:75 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:77 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 +msgid "Usuario" +msgstr "Felhasználó" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 +msgid "Ordenar por Usuario" +msgstr "Rendezés Felhasználónév szerint" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:56 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:62 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:128 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:79 +msgid "URL / IP" +msgstr "URL / IP" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 +msgid "Ordenar por URL / IP" +msgstr "Rendezés URL / IP szerint" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 +msgid "Eliminar Seleccionados" +msgstr "Delete Selected" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:158 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:42 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:44 +msgid "Propietario" +msgstr "Owner" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:175 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:50 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 +msgid "Grupo Principal" +msgstr "Fõcsoport" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 +#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 +msgid "Buscar Cuenta" +msgstr "Search for Account" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 +msgid "Cuentas (H)" +msgstr "Accounts (H)" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:122 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:55 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:38 #, fuzzy -msgid "Clave maestra para encriptar las claves" -msgstr "Mester jelszó szükséges a jelszavak titkosításához" +msgid "Fecha" +msgstr "Dátum hozzáadva" -#: ../../../../lib/SP/Services/Install/Installer.php:127 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:126 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 +msgid "Estado" +msgstr "Status" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +msgid "Modificada" +msgstr "Modified" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 +msgid "Eliminada" +msgstr "Removed" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 +#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 +msgid "Restaurar Cuenta" +msgstr "Restore Számla" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 +msgid "Autorizaciones API" +msgstr "API Authorizations" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 +msgid "Acción" +msgstr "Akció" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 +msgid "Buscar Token" +msgstr "Search for Token" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 #, fuzzy -msgid "Clave maestra muy corta" -msgstr "Túl rövid a mester jelszó" +msgid "Ver token de Autorización" +msgstr "Felhasználó részletek" -#: ../../../../lib/SP/Services/Install/Installer.php:129 -msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" -msgstr "A mester jelszó legaláb 11 karakterbõl kell, hogy álljon" - -#: ../../../../lib/SP/Services/Install/Installer.php:134 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 #, fuzzy -msgid "Indicar el usuario de la BBDD" -msgstr "Írd be az adatbázis felhasználót" +msgid "Eliminar Autorización" +msgstr "Profil törlése" -#: ../../../../lib/SP/Services/Install/Installer.php:136 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 +msgid "Descripción" +msgstr "Leírás" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 +#: ../../../config/actions.xml:325 +msgid "Buscar Categoría" +msgstr "Search for Category" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 +#: ../../../config/actions.xml:319 +msgid "Eliminar Categoría" +msgstr "Kategória törlése" + +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:66 +msgid "SI" +msgstr "Igen" + +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:67 +msgid "NO" +msgstr "Nem" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 +#: ../../../config/actions.xml:355 +msgid "Buscar Cliente" +msgstr "Search for Client" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 +#: ../../../config/actions.xml:349 #, fuzzy -msgid "Usuario con permisos de administrador de la Base de Datos" -msgstr "Adatbázis rendszergazdai jogokkal rendelkezõ felhasználó" +msgid "Eliminar Cliente" +msgstr "Ügyfél törlése" -#: ../../../../lib/SP/Services/Install/Installer.php:148 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 +msgid "Campos Personalizados" +msgstr "Custom Fields" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 #, fuzzy -msgid "Indicar el nombre de la BBDD" -msgstr "Írd be az adatbázis nevét" +msgid "Módulo" +msgstr "Modul nem elérhetõ" -#: ../../../../lib/SP/Services/Install/Installer.php:150 -msgid "Nombre para la BBDD de la aplicación pej. syspass" -msgstr "Az alkalmazás neve. Pl.: syspass" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:30 +msgid "Tipo" +msgstr "Típus" -#: ../../../../lib/SP/Services/Install/Installer.php:155 -msgid "El nombre de la BBDD no puede contener \".\"" -msgstr "Az adatbázis neve nem tartalmazhat: \".\"" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:120 +msgid "Propiedades" +msgstr "Beállítások" -#: ../../../../lib/SP/Services/Install/Installer.php:157 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 +msgid "Encriptado" +msgstr "Encrypted" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 +msgid "Buscar Campo" +msgstr "Search for Field" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 #, fuzzy -msgid "Elimine los puntos del nombre de la Base de Datos" -msgstr "Kérem, törölje a pontokat az adatbázis nevébõl" +msgid "Eliminar Campo" +msgstr "Profil törlése" -#: ../../../../lib/SP/Services/Install/Installer.php:162 -#, fuzzy -msgid "Indicar el servidor de la BBDD" -msgstr "Írd be az adatbázis szervert" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 +#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 +#: ../../../config/actions.xml:133 +msgid "Registro de Eventos" +msgstr "Esemény napló" -#: ../../../../lib/SP/Services/Install/Installer.php:164 -msgid "Servidor donde se instalará la Base de Datos" -msgstr "Szerver, ahová az adatbázis telepítve lesz" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:99 +msgid "ID" +msgstr "ID" -#: ../../../../inc/SP/Core/Installer.class.php:238 -#, fuzzy -msgid "No es posible comprobar el usuario de sysPass" -msgstr "Nem lehet törölni, a felhaszánáló használatban van" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 +msgid "Fecha / Hora" +msgstr "Dátum / Idõ" -#: ../../../../lib/SP/Services/Install/MySQL.php:137 -#, fuzzy -msgid "Compruebe los permisos del usuario de conexión a la BD" -msgstr "Kérem, ellenõrizze a 'config' mappa jogosultságait" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 +msgid "Nivel" +msgstr "Level" -#: ../../../../lib/SP/Services/Install/MySQL.php:201 -msgid "La BBDD ya existe" -msgstr "Az adatbázis már létezik" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 +msgid "Evento" +msgstr "Esemény" -#: ../../../../lib/SP/Services/Install/MySQL.php:203 -#, fuzzy -msgid "Indique una nueva Base de Datos o elimine la existente" -msgstr "Írd be az új adatbázist, vagy töröld a jelenlegit" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 +msgid "Login" +msgstr "Belépés" -#: ../../../../inc/SP/Core/Installer.class.php:316 -#: ../../../../inc/SP/Core/Installer.class.php:419 -#, fuzzy -msgid "Error al crear la BBDD" -msgstr "Hiba az adatbázis létrehozása közben" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 +msgid "IP" +msgstr "IP" -#: ../../../../lib/SP/Services/Install/MySQL.php:215 -#: ../../../../lib/SP/Services/Install/MySQL.php:239 -#, fuzzy -msgid "Verifique los permisos del usuario de la Base de Datos" -msgstr "Kérem, ellenõrizze az adatbázis felhasználó jogosultságait" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 +msgid "Buscar Evento" +msgstr "Search for Events" -#: ../../../../lib/SP/Services/Install/MySQL.php:305 -msgid "El archivo de estructura de la BBDD no existe" -msgstr "Adatbázis fájl nem létezik" - -#: ../../../../lib/SP/Services/Install/MySQL.php:307 -msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." -msgstr "Az adatbázis létrehozása meghiúsult. Kérem, töltse le újra" - -#: ../../../../lib/SP/Services/Install/MySQL.php:290 -#, fuzzy -msgid "Error al seleccionar la BBDD" -msgstr "Hiba az adatbázis kiválasztása közben" - -#: ../../../../lib/SP/Services/Install/MySQL.php:311 -msgid "" -"No es posible usar la Base de Datos para crear la estructura. Compruebe los " -"permisos y que no exista." -msgstr "" -"Új elem létrehozás aaz adatbázisban meghiúsult. Ellenõrizze a " -"jogosultságokat és hogy valóban létezik az adatbázis" - -#: ../../../../lib/SP/Services/Install/MySQL.php:331 -msgid "Error al crear la estructura de la Base de Datos." -msgstr "Hiba az adatbázis létrehozása közben" - -#: ../../../../lib/SP/Services/Install/Installer.php:318 -#: ../../../../lib/SP/Services/Install/Installer.php:369 -msgid "Informe al desarrollador" -msgstr "Figyelmeztetsd a fejlesztõt" - -#: ../../../../inc/SP/Core/Installer.class.php:484 -#, fuzzy -msgid "Error al actualizar la clave maestra del usuario \"admin\"" -msgstr "Hiba a mester jelszó frissítése közben" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:141 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:188 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:193 -msgid "No es posible conectar con el servidor de LDAP" -msgstr "Csatlakozás az LDAP szerverhez meghiúsult" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:231 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:237 -msgid "Error al conectar (BIND)" -msgstr "Kapcsolat hiba (BIND)" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:249 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:254 -msgid "Error al buscar objetos en DN base" -msgstr "Hiba a keresés közben" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:119 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:125 -#, fuzzy -msgid "Error al buscar RDN de grupo" -msgstr "Hiba az RDN csoport keresése közben" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:200 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:204 -#, fuzzy -msgid "Error al localizar el usuario en LDAP" -msgstr "Hiba az LDAP felhasználók keresése közben" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:139 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:120 -msgid "Error al buscar el grupo de usuarios" -msgstr "Hiba a keresése közben" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:109 -#, fuzzy -msgid "Usuario verificado en grupo" -msgstr "Csoportot használja a:" - -#: ../../../../inc/SP/Controller/EventlogController.class.php:102 -msgid "Vaciar Eventos" -msgstr "Események törlése" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 +msgid "Refrescar" +msgstr "Refresh" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:199 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 #, fuzzy msgid "Vaciar registro de eventos" msgstr "Esemény napló törlése" -#: ../../../../lib/SP/Services/Client/ClientService.php:76 -#: ../../../../lib/SP/Services/Client/ClientService.php:95 -#: ../../../../lib/SP/Services/Client/ClientService.php:110 -#, fuzzy -msgid "Cliente no encontrado" -msgstr "Nincs ügyfél találat" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:280 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 +#: ../../../config/actions.xml:19 +msgid "Archivos" +msgstr "Fájlok" -#: ../../../../inc/SP/Mgmt/Users/User.class.php:246 -#, fuzzy -msgid "Error al obtener los usuarios" -msgstr "Hiba a felhasználók betöltése közben" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:25 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:30 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:23 +msgid "Cuenta" +msgstr "Fiók" -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:52 -#, fuzzy -msgid "Migrar Perfiles" -msgstr "Profilok" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:82 -#, fuzzy -msgid "Error al obtener perfiles" -msgstr "Hiba a fiókok betöltése közben" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:144 -#, fuzzy -msgid "Operación realizada correctamente" -msgstr "Az alkalmazás frissítése sikeres" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:149 -#, fuzzy -msgid "Fallo al realizar la operación" -msgstr "Hiba a elõzmények mester jelszavának frissítése közben" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:110 +msgid "Tamaño" +msgstr "Méret" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 -#: ../../../config/actions.xml:655 -msgid "Eliminar Perfil" -msgstr "Profil törlése" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:119 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:68 -#, fuzzy -msgid "Formato de XML inválido" -msgstr "Érvénytelen Id" - -#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:122 -#, fuzzy -msgid "No es posible obtener la plantilla \"%s\" : %s" -msgstr "Ügyfél létrehozása meghiusúlt" - -#: ../../../../lib/SP/Mvc/View/Template.php:274 -#: ../../../../lib/SP/Mvc/View/Template.php:276 -#, fuzzy -msgid "No es posible obtener la variable \"%s\"" -msgstr "Ügyfél létrehozása meghiusúlt" - -#: ../../../../lib/SP/Mvc/View/Template.php:322 -#: ../../../../lib/SP/Mvc/View/Template.php:324 -#, fuzzy -msgid "No es posible destruir la variable \"%s\"" -msgstr "Ügyfél létrehozása meghiusúlt" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:175 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:179 -#, fuzzy -msgid "Error al aplicar la actualización de la Base de Datos" -msgstr "Hiba az adatbázis frissítése közben" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:72 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:98 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:106 -msgid "Compruebe el registro de eventos para más detalles" -msgstr "Részletes leírást az esemény naplóban olvashat" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 -msgid "Acceder" -msgstr "Belépés" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:96 -#, fuzzy -msgid "Error al aplicar la actualización auxiliar" -msgstr "Hiba az adatbázis frissítése közben" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:89 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:120 -msgid "Actualizar BBDD" -msgstr "Frissítse az adatbázist" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:155 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:159 -msgid "No es necesario actualizar la Base de Datos." -msgstr "Az adatbázis frissítése nem szükséges" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 -msgid "Actualización de la Base de Datos realizada correctamente." -msgstr "Az adatbázis frissítés sikeresen megtörtént" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:70 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:202 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:228 -msgid "Actualizar Configuración" -msgstr "Konfiguráció frissítése" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:240 -#, fuzzy -msgid "No se pudo realizar la petición de cambio de clave." -msgstr "Nem sikerült végrehajtani a jelszócsere kérelmet." +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:145 +#: ../../../config/actions.xml:475 +msgid "Buscar Archivo" +msgstr "Search for File" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:51 +#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 +msgid "Ver Archivo" +msgstr "Fájl megtekintése" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:42 +#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 +msgid "Descargar Archivo" +msgstr "Fájl letöltés" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:34 +#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 +msgid "Eliminar Archivo" +msgstr "Fájl törlése" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 +msgid "Valores Predeterminados" +msgstr "Preset Values" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:274 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:277 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:233 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:148 +msgid "Grupo" +msgstr "Csoport" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:131 +msgid "Perfil" +msgstr "Profil" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 +msgid "Prioridad" +msgstr "Priority" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 +msgid "Forzado" +msgstr "Forced" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 +#: ../../../config/actions.xml:853 +msgid "Buscar Valor" +msgstr "Search for Value" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 +msgid "Valor de Permiso" +msgstr "Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 +msgid "Nuevo Valor de Permiso" +msgstr "New Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 +msgid "Valor de Cuenta Privada" +msgstr "Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 +msgid "Nuevo Valor de Cuenta Privada" +msgstr "New Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 +msgid "Valor de Timeout de Sesión" +msgstr "Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 +msgid "Nuevo Valor de Timeout de Sesión" +msgstr "New Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 +msgid "Valor de Clave de Cuentas" +msgstr "Account Password Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 +msgid "Nuevo Valor de Clave de Cuentas" +msgstr "New Account Password Preset" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: ../../../modules/web/Controllers/ItemPresetController.php:239 +#: ../../../config/actions.xml:871 +msgid "Editar Valor" +msgstr "Edit Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 +#: ../../../config/actions.xml:877 +msgid "Eliminar Valor" +msgstr "Delete Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 +#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 +#: ../../../config/actions.xml:679 +msgid "Notificaciones" +msgstr "Notifications" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:42 +msgid "Componente" +msgstr "Component" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:111 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:115 +msgid "Leída" +msgstr "Read" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 +msgid "Sólo Admins" +msgstr "Only Admins" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:164 +#: ../../../config/actions.xml:841 +msgid "Buscar Notificación" +msgstr "Search for Notification" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:180 +#: ../../../modules/web/Controllers/NotificationController.php:194 +msgid "Nueva Notificación" +msgstr "New Notification" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:198 +#: ../../../modules/web/Controllers/NotificationController.php:113 +#: ../../../config/actions.xml:811 +msgid "Ver Notificación" +msgstr "View Notification" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:228 +#: ../../../config/actions.xml:835 +msgid "Marcar Notificación" +msgstr "Checkout Notification" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:246 +#: ../../../modules/web/Controllers/NotificationController.php:226 +#: ../../../config/actions.xml:823 +msgid "Editar Notificación" +msgstr "Edit Notification" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:263 +#: ../../../config/actions.xml:829 +msgid "Eliminar Notificación" +msgstr "Delete Notification" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:331 +#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 +msgid "Plugins" +msgstr "Plugins" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 +msgid "Plugin" +msgstr "Plugin" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 +msgid "No disponible" +msgstr "Unavailable" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 +#: ../../../config/actions.xml:547 +msgid "Buscar Plugin" +msgstr "Search for Plugin" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 +#: ../../../modules/web/Controllers/PluginController.php:136 +#: ../../../config/actions.xml:541 +msgid "Ver Plugin" +msgstr "View Plugin" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 +msgid "Habilitar" +msgstr "Enable" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 +msgid "Deshabilitar" +msgstr "Disable" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 +msgid "Restablecer Datos" +msgstr "Reset Data" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:49 +msgid "Enlaces" +msgstr "Links" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:51 +msgid "Fecha Creación" +msgstr "Creation Date" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:59 +msgid "Fecha Caducidad" +msgstr "Expiry Date " + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:43 +msgid "Notificar" +msgstr "Notify" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:14 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:75 +msgid "Visitas" +msgstr "Látogatók" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:149 +msgid "Buscar Enlace" +msgstr "Search for Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:165 +msgid "Nuevo Enlace" +msgstr "New Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:183 +#: ../../../modules/web/Controllers/PublicLinkController.php:357 +msgid "Ver Enlace" +msgstr "View Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:199 +msgid "Renovar Enlace" +msgstr "Renew Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:216 +msgid "Eliminar Enlace" +msgstr "Delete Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:211 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 +msgid "Etiquetas" +msgstr "Cimkék" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:135 +#: ../../../config/actions.xml:529 +msgid "Buscar Etiqueta" +msgstr "Cimke keresése" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: ../../../modules/web/Controllers/TagController.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:226 +#: ../../../config/actions.xml:505 +msgid "Nueva Etiqueta" +msgstr "Új cimke" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: ../../../modules/web/Controllers/TagController.php:168 +#: ../../../config/actions.xml:517 +msgid "Editar Etiqueta" +msgstr "Cimke javítás" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:186 +#: ../../../config/actions.xml:523 +msgid "Eliminar Etiqueta" +msgstr "Cimke törlés" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 +msgid "Tracks" +msgstr "Tracks" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 +msgid "Fecha Desbloqueo" +msgstr "Date Unlocked" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 +msgid "Origen" +msgstr "Source" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 +#: ../../../config/actions.xml:889 +msgid "Buscar Track" +msgstr "Search for track" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:156 +#: ../../../config/actions.xml:601 +msgid "Buscar Usuario" +msgstr "Search for User" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:172 +#: ../../../modules/web/Controllers/UserController.php:115 +#: ../../../config/actions.xml:577 +msgid "Nuevo Usuario" +msgstr "Új felhasználó" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:190 +#: ../../../modules/web/Controllers/UserController.php:200 +#: ../../../config/actions.xml:583 +msgid "Editar Usuario" +msgstr "Felhasználó módosítás" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:207 #: ../../../config/actions.xml:589 msgid "Eliminar Usuario" msgstr "felhasználó törlése" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:40 -msgid "Usuario de LDAP" -msgstr "LDAP felhasználó" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:224 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:460 +msgid "Importar usuarios de LDAP" +msgstr "Import users from LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:122 -msgid "Activación Cuenta" -msgstr "Fiók Aktiválás" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:242 +msgid "Ver Detalles de Usuario" +msgstr "Felhasználó részletek" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:123 -msgid "Su cuenta está pendiente de activación." -msgstr "Az ön fiók aktiválása függõben van" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:259 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 +msgid "Cambiar Clave de Usuario" +msgstr "Változás felhasználói jelszó" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:124 -msgid "En breve recibirá un email de confirmación." -msgstr "Hamarosan megerõsítésre váró emailt küldünk" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 +#: ../../../config/actions.xml:631 +msgid "Buscar Grupo" +msgstr "Search for Group" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:131 +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: ../../../modules/web/Controllers/UserGroupController.php:117 +#: ../../../config/actions.xml:613 +msgid "Nuevo Grupo" +msgstr "Új csoport" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: ../../../modules/web/Controllers/UserGroupController.php:344 +#: ../../../config/actions.xml:607 #, fuzzy -msgid "Nuevo usuario de LDAP" -msgstr "LDAP felhasználó" +msgid "Ver Grupo" +msgstr "Nézet" -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:152 -#, fuzzy -msgid "Error al migrar grupo del usuario" -msgstr "Hiba a DN felhasználó keresése közben" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: ../../../modules/web/Controllers/UserGroupController.php:188 +#: ../../../config/actions.xml:619 +msgid "Editar Grupo" +msgstr "Csoport módosítás" -#: ../../../modules/web/Controllers/InstallController.php:62 -#, fuzzy -msgid "Versión de PHP requerida >= " -msgstr "Szükséges PHP verzió> = 5.1" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 +#: ../../../config/actions.xml:625 +msgid "Eliminar Grupo" +msgstr "Csoport törlése" -#: ../../../../lib/SP/Bootstrap.php:269 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 +msgid "Perfiles" +msgstr "Profilok" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 +#: ../../../config/actions.xml:661 +msgid "Buscar Perfil" +msgstr "Search for Profile" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: ../../../modules/web/Controllers/UserProfileController.php:110 +#: ../../../config/actions.xml:643 +msgid "Nuevo Perfil" +msgstr "Új profil" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 #, fuzzy -msgid "" -"Actualice la versión de PHP para que la aplicación funcione correctamente" -msgstr "Kérem, frissítse a PHP verziót, hogy a sysPass biztonságos legyen" +msgid "Ver Detalles de Perfil" +msgstr "Felhasználó részletek" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: ../../../modules/web/Controllers/UserProfileController.php:177 +#: ../../../config/actions.xml:649 +msgid "Editar Perfil" +msgstr "Profil módosítás" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 +#: ../../../config/actions.xml:655 +msgid "Eliminar Perfil" +msgstr "Profil törlése" + +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:262 +msgid "Buscar" +msgstr "Keresés" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:345 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 +#: ../../../config/actions.xml:685 +msgid "Configuración" +msgstr "LDAP kapcsolat rendben" #: ../../../modules/web/Controllers/InstallController.php:59 msgid "Módulo no disponible" @@ -2578,33 +2027,59 @@ msgstr "Modul nem elérhetõ" msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "E modul nélkül az alkalmazás nem futtatható megfelelõen" -#: ../../../../inc/SP/Core/XmlExport.class.php:133 -#, fuzzy -msgid "Exportar XML" -msgstr "Fiókok importálása" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:73 +#: ../../../config/actions.xml:859 +msgid "Ver Valor" +msgstr "Display Value" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:545 -#, fuzzy -msgid "Error al crear el archivo XML" -msgstr "Hiba az ügyfél létrehozása közben" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:207 +#: ../../../config/actions.xml:865 +msgid "Nuevo Valor" +msgstr "New Value" -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:110 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:81 -#, fuzzy -msgid "No es posible procesar el archivo XML" -msgstr "Nem lehet a konfigurációs fájlba írni" +#: ../../../modules/web/Controllers/ItemsController.php:130 +msgid "No hay no hay notificaciones pendientes" +msgstr "There aren't any pending notifications" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:105 -#, fuzzy -msgid "Archivo XML no soportado" -msgstr "Fájltípus nem engedélyezett" +#: ../../../modules/web/Controllers/ItemsController.php:131 +#, php-format +msgid "Hay notificaciones pendientes: %d" +msgstr "There are pending notifications: %d" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:107 -#, fuzzy -msgid "No es posible detectar la aplicación que exportó los datos" -msgstr "Unable to detect the application the data was exported from" +#: ../../../modules/web/Controllers/PublicLinkController.php:114 +msgid "Nuevo Enlace Público" +msgstr "New Public Link" + +#: ../../../modules/web/Controllers/PublicLinkController.php:204 +msgid "Editar Enlace Público" +msgstr "Edit Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/TagController.php:302 +#: ../../../config/actions.xml:511 +msgid "Ver Etiqueta" +msgstr "View Tag" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserController.php:458 +#: ../../../config/actions.xml:571 +#, fuzzy +msgid "Ver Usuario" +msgstr "Felhasználó részletek" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserProfileController.php:326 +#: ../../../config/actions.xml:637 +#, fuzzy +msgid "Ver Perfil" +msgstr "Nézet" + +#: ../../../modules/web/Controllers/UserSettingsManagerController.php:87 +msgid "Preferencias" +msgstr "Beállítások" -#: ../../../../lib/SP/Storage/Database/QueryData.php:354 #: ../../../config/strings.js.inc:26 #, fuzzy msgid "Error en la consulta" @@ -2659,12 +2134,11 @@ msgid "Borrar elemento?" msgstr "Törlöd a tételt?" #: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:31 msgid "Página no encontrada" msgstr "Oldal nem található" -#: ../../../modules/web/Controllers/AccountFileController.php:108 #: ../../../config/strings.js.inc:40 msgid "Archivo no soportado para visualizar" msgstr "A fájlnak nincs elönézete" @@ -2686,55 +2160,59 @@ msgstr "Túl sok fájl" msgid "Tamaño de archivo no permitido" msgstr "Fájltípus nem engedélyezett" +#: ../../../config/strings.js.inc:45 +msgid "Extensión no permitida" +msgstr "A kiterjesztés nem engedélyezett" + #: ../../../config/strings.js.inc:46 #, fuzzy msgid "Vaciar el registro de eventos?" msgstr "Törlöd az esemény naplót?" #: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:281 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:253 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:152 msgid "Seleccionar Grupo" msgstr "Válassz csoportot" #: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:81 #, fuzzy msgid "Seleccionar Usuario" msgstr "Válassz dátumot" #: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:135 msgid "Seleccionar Perfil" msgstr "Válassz profilt" #: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:84 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 #, fuzzy msgid "Seleccionar Cliente" msgstr "Válassz ügyfelet" #: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:41 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 msgid "Seleccionar Categoría" msgstr "Válassz kategóriát" @@ -2769,57 +2247,47 @@ msgid "Mostrar Clave" msgstr "Show Password" #: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:24 #, fuzzy msgid "Copiar Usuario" msgstr "Fiók másolása" #. (itstool) path: action/text #: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:41 #: ../../../config/actions.xml:199 ../../../config/actions.xml:271 #, fuzzy msgid "Copiar Clave" msgstr "Fiók másolása" #: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 msgid "Incluir Números" msgstr "Include Numbers" #: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 msgid "Incluir Mayúsculas" msgstr "Include Uppercase" #: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 msgid "Incluir Símbolos" msgstr "Include Symbols" #: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 #, fuzzy msgid "Longitud" msgstr "A mester jelszó legaláb 11 karakterbõl kell, hogy álljon" #: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 #, fuzzy msgid "Seleccionar Acción" msgstr "Akció" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:66 -msgid "SI" -msgstr "Igen" - -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:67 -msgid "NO" -msgstr "Nem" - #: ../../../config/strings.js.inc:68 msgid "Aceptar" msgstr "Accept" @@ -2838,695 +2306,557 @@ msgstr "Hiba a jelszó frissítése közben" msgid "Error al copiar al portapapeles" msgstr "Hiba a jelszó frissítése közben" -#: ../../../modules/web/Controllers/AccountController.php:149 -#: ../../../modules/web/Controllers/AccountController.php:204 -#: ../../../modules/web/Controllers/AccountController.php:474 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 -msgid "Detalles de Cuenta" -msgstr "Fiók adatok" +#: ../../../config/strings.js.inc:73 +msgid "Recibir notificaciones?" +msgstr "Send notifies?" -#: ../../../modules/web/Controllers/AccountController.php:432 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 -msgid "Modificar Clave de Cuenta" -msgstr "Fiók jelszavának szerkesztése" - -#: ../../../../lib/SP/Plugin/PluginManager.php:246 -#: ../../../modules/api/Controllers/AccountController.php:71 -#: ../../../modules/api/Controllers/AccountController.php:103 -#: ../../../modules/api/Controllers/AccountController.php:139 -#: ../../../modules/api/Controllers/AccountController.php:185 -#: ../../../modules/api/Controllers/AccountController.php:235 -#: ../../../modules/api/Controllers/AccountController.php:310 -#: ../../../modules/api/Controllers/CategoryController.php:63 -#: ../../../modules/api/Controllers/CategoryController.php:92 -#: ../../../modules/api/Controllers/CategoryController.php:122 -#: ../../../modules/api/Controllers/CategoryController.php:151 -#: ../../../modules/api/Controllers/ClientController.php:64 -#: ../../../modules/api/Controllers/ClientController.php:94 -#: ../../../modules/api/Controllers/ClientController.php:125 -#: ../../../modules/api/Controllers/ClientController.php:154 -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:90 -#: ../../../modules/api/Controllers/TagController.php:119 -#: ../../../modules/api/Controllers/TagController.php:148 -#: ../../../modules/api/Controllers/UserGroupController.php:62 -#: ../../../modules/api/Controllers/UserGroupController.php:92 -#: ../../../modules/api/Controllers/UserGroupController.php:123 -#: ../../../modules/api/Controllers/UserGroupController.php:152 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/Controllers/UserGroupController.php:265 -#: ../../../modules/web/Controllers/UserGroupController.php:304 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 -msgid "Nombre" -msgstr "Név" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 -#, fuzzy -msgid "Módulo" -msgstr "Modul nem elérhetõ" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 -#, fuzzy -msgid "Eliminar Campo" -msgstr "Profil törlése" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Utolsó Archiválás" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -#, fuzzy -msgid "No se encontraron backups" -msgstr "Nincsenek elérhetõ Archívumok" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -#, fuzzy -msgid "Última exportación" -msgstr "Utolsó oldal" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -#, fuzzy -msgid "No se encontró archivo de exportación" -msgstr "Nem lehet a konfigurációs fájlba írni" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:63 -#, fuzzy -msgid "Información" -msgstr "Mutat néhány információt az alkalmazásról és a teljesítményrõl" - -#: ../../../modules/web/Controllers/EventlogController.php:119 -#: ../../../modules/web/Controllers/EventlogController.php:122 -msgid "Registro de eventos vaciado" -msgstr "Esemény napló törölve" - -#: ../../../../lib/SP/Repositories/EventLog/EventlogRepository.php:53 -#, fuzzy -msgid "Error al vaciar el registro de eventos" -msgstr "Hiba az esemény napló törlése közben" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 -msgid "Admin Aplicación" -msgstr "Admin alkalmazás" - -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:265 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:58 -msgid "Buscar" -msgstr "Keresés" +#: ../../../config/strings.js.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:158 +msgid "Marcar Favorito" +msgstr "Mark as Favorite" #. (itstool) path: action/text -#: ../../../config/actions.xml:103 +#: ../../../config/strings.js.inc:75 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:148 +#: ../../../config/actions.xml:253 +msgid "Eliminar Favorito" +msgstr "Delete Favorite" + +#: ../../../config/strings.js.inc:76 +msgid "Limpiar Selección" +msgstr "Clear Selection" + +#: ../../../config/strings.js.inc:77 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:78 +msgid "Mostrar Favoritos" +msgstr "Show Favorites" + +#: ../../../config/strings.js.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:72 +msgid "Mostrar Todos" +msgstr "Show All" + +#: ../../../config/strings.js.inc:79 #, fuzzy -msgid "Usuarios y Accesos" -msgstr "Felhasználó elérése" +msgid "Ayuda" +msgstr "Segítség :: GYIK :: Változások Listája" -#. (itstool) path: action/text -#: ../../../config/actions.xml:43 -#, fuzzy -msgid "Elementos y Personalización" -msgstr "Profil törlése" +#: ../../../config/strings.js.inc:80 +msgid "Sin cambios" +msgstr "Nincsenek változások" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 -#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 -#: ../../../config/actions.xml:133 -msgid "Registro de Eventos" -msgstr "Esemény napló" +#: ../../../config/strings.js.inc:81 +msgid "Ahora" +msgstr "Now" -#: ../../../modules/web/Controllers/InstallController.php:82 -msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" -msgstr "" -"Ez a PHP verzió sérülékeny a NULL Byte támadásokkal szemben (CVE-2006-7243)" - -#: ../../../modules/web/Controllers/InstallController.php:83 -msgid "Actualice la versión de PHP para usar sysPass de forma segura" -msgstr "Kérem, frissítse a PHP verziót, hogy a sysPass biztonságos legyen" - -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "No se encuentra el generador de números aleatorios." -msgstr "Nem találom a véletlen szám generátort" - -#: ../../../modules/web/Controllers/InstallController.php:90 +#: ../../../config/strings.js.inc:82 msgid "" -"Sin esta función un atacante puede utilizar su cuenta al resetear la clave" -msgstr "E funkció nélkül egy támadó alapállapotba állíthatja jelszavát" +"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" +msgstr "" +"This process will import the detected LDAP users. Would you like to continue?" -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "Instalación finalizada" -msgstr "A telepítés befejezõdött" +#: ../../../config/strings.js.inc:83 +msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" +msgstr "This action will reset all plugin data. Do you want to continue?" -#: ../../../../inc/SP/Controller/MainController.class.php:492 -msgid "Descargar nueva versión" -msgstr "Új verzió letöltése" +#: ../../../config/strings.js.inc:84 +msgid "Este proceso puede durar algo de tiempo. Desea continuar?" +msgstr "This process could long some time. Do you wish to continue?" + +#: ../../../config/strings.js.inc:85 +msgid "Aviso" +msgstr "Figyelem" + +#: ../../../config/strings.js.inc:87 +msgid "" +"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." +msgstr "Performing task. Please, do not close the browser window/tab." + +#: ../../../config/strings.js.inc:88 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 +msgid "Incluir Letras" +msgstr "Include Letters" + +#: ../../../config/strings.js.inc:89 +msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." +msgstr "Cookies disabled. The application won't work properly." + +#: ../../../config/strings.js.inc:90 +msgid "Portapapeles no soportado por el navegador." +msgstr "Clipboard not supported by your browser." + +#: ../../../config/strings.js.inc:91 +msgid "Realizando auto-login" +msgstr "Performing auto-login" + +#: ../../../config/strings.js.inc:92 +msgid "Hay una versión más reciente del plugin {0} ({1})" +msgstr "There is a more recent version of {0} plugin ({1})" + +#: ../../../config/strings.js.inc:93 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:30 +msgid "Actualizado" +msgstr "Frissítve" + +#: ../../../config/strings.js.inc:94 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:36 +#, fuzzy +msgid "Error al comprobar actualizaciones" +msgstr "Frissítések keresése" #: ../../../config/strings.js.inc:95 msgid "Avisos de sysPass" msgstr "sysPass Notices" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 +#: ../../../config/strings.js.inc:96 +msgid "Vaciar los tracks?" +msgstr "Clear tracks out?" + +#: ../../../config/strings.js.inc:97 +msgid "Archivo descargado" +msgstr "File downloaded" + +#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:21 #, fuzzy -msgid "Ordenar por Cliente" -msgstr "Rendezés Ügyfél szerint" +msgid "Javascript es necesario para el correcto funcionamiento" +msgstr "Java szkript szükséges a megfelelõ mûködéshez" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 -msgid "Ordenar por Nombre" -msgstr "Rendezés Név szerint" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 -msgid "Ordenar por Categoría" -msgstr "Rendezés Kategória szerint" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 -msgid "Ordenar por Usuario" -msgstr "Rendezés Felhasználónév szerint" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 -msgid "Ordenar por URL / IP" -msgstr "Rendezés URL / IP szerint" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 -msgid "URL / IP" -msgstr "URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 -msgid "Propiedades" -msgstr "Beállítások" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 -#, fuzzy -msgid "Admin Cuentas" -msgstr "Admin Fiók" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:41 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 -msgid "Deshabilitado" -msgstr "Inaktív" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 -msgid "Ver Detalles de Usuario" -msgstr "Felhasználó részletek" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:62 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:120 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:126 -msgid "Cambiar Clave de Usuario" -msgstr "Változás felhasználói jelszó" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 -#, fuzzy -msgid "Ver Detalles de Perfil" -msgstr "Felhasználó részletek" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 -#, fuzzy -msgid "Ver token de Autorización" -msgstr "Felhasználó részletek" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:409 -#, fuzzy -msgid "Token de autorización visualizado" -msgstr "Beállítások frissítve" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:407 -msgid "Autorizaciones" -msgstr "Authorizations" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 -msgid "Seguridad" -msgstr "Biztonság" - -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:89 -msgid "Preferencias" -msgstr "Beállítások" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 -msgid "Nombre de cuenta" -msgstr "Fiók név" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 -msgid "URL o IP de acceso" -msgstr "URL vagy IP elérés" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 -msgid "Usuario de acceso" -msgstr "Felhasználó elérése" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 -msgid "Clave (repetir)" -msgstr "Jelszó (ismét)" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 -msgid "Notas" -msgstr "Jegyzetek" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 -msgid "Notas sobre la cuenta" -msgstr "Jegyzetek a fiókokról" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 -msgid "Permisos" -msgstr "Jofosultságok" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:53 -msgid "Hablitar edición" -msgstr "Szerkesztés engedélyezése" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 -msgid "Grupo Principal" -msgstr "Fõcsoport" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Soltar archivos aquí (max. 5) o click para seleccionar" -msgstr "Dobja el a fájlokat (max. 5) vagy kattintson a választáshoz" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 -msgid "Tamaño máximo de archivo" -msgstr "Maximális fájl méret" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 -msgid "Historial" -msgstr "Elõzmények" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 -msgid "Seleccionar fecha" -msgstr "Válassz dátumot" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 -msgid "Última Modificación" -msgstr "Utoljára módosítva" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 -msgid "Visitas" -msgstr "Látogatók" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 -msgid "Fecha Alta" -msgstr "Dátum hozzáadva" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 -msgid "Creador" -msgstr "Készítõ" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Usuarios Secundarios" -msgstr "Másodlagos felhasználók" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 -msgid "Grupos Secundarios" -msgstr "Másodlagos csoportok" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Fecha Edición" -msgstr "Adat módosítva" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 -msgid "Editor" -msgstr "Szerkesztõ" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 -msgid "Restaurar cuenta desde este punto" -msgstr "Restore véve ezen a ponton" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 -#, fuzzy -msgid "Copiar Clave en Portapapeles" -msgstr "A jelszó nem lehet üres" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 -msgid "Ver Actual" -msgstr "Általános" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:49 #: ../../../modules/web/themes/material-blue/views/_partials/error.inc:14 #: ../../../modules/web/themes/material-blue/views/_partials/error.inc:15 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 msgid "Volver" msgstr "Vissza" -#: ../../../../inc/themes/material-blue/views/account/actions.inc:146 -msgid "Modificar Cuenta" -msgstr "Fiók módosítás" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 -msgid "Solicitar Modificación" -msgstr "Kérés módosítás" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:51 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 -msgid "Guardar" -msgstr "Mentés" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 -msgid "Resultado" -msgstr "Eredmény" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 -msgid "Descargar Actual" -msgstr "Aktuális letöltés" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 #, fuzzy -msgid "No hay backups para descargar" -msgstr "Nincsenek letölthetõ Archívumok" +msgid "Preferencias de usuario" +msgstr "Dupla felhasználó bejelentkezés" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:52 -#: ../../../config/strings.js.inc:79 -#, fuzzy -msgid "Ayuda" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 +msgid "Salir" +msgstr "Kijelentkezés" + +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:53 +msgid "Demo" +msgstr "Demo" + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 +msgid "Indica si la conexión utiliza HTTPS." +msgstr "Tells whether the connection uses HTTPS or not." + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 +msgid "" +"Las claves de formularios enviados se encriptan mediante PKI, el resto de " +"datos no." +msgstr "" +"The passwords sent from the forms are encrypted with PKI, the other data not." + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:66 +msgid "Ayuda :: FAQ :: Changelog" msgstr "Segítség :: GYIK :: Változások Listája" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:70 +msgid "Un proyecto de cygnux.org" +msgstr "A cygnux.org projekt" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 +msgid "Parámetros especiales" +msgstr "Special parameters" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 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." +"Es posible utilizar uno o varios parámetros especiales separados por espacios" msgstr "" -"The backup allows you to save and download either sysPass database or " -"application files and its configuration." +"You could use either one or several special parameters separated by blank " +"spaces" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 -msgid "" -"Con este método es posible guardar todos los datos de sysPass en otro lugar " -"o utilizarlos para hacer la aplicación portable." -msgstr "" -"With this method it's possible to either save all sysPass data in another " -"place or use it to make the application portable." +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 +msgid "Buscar cuentas a las que 'login' tenga acceso" +msgstr "Search for accounts which 'login' has access rights" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 -#, fuzzy -msgid "Exportar Cuentas" -msgstr "Fiókok" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 +msgid "Devolver las cuentas en las que 'login' es propietario" +msgstr "Get the accounts in which the user login \"login\" is the owner" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -#, fuzzy -msgid "No hay archivos XML para descargar" -msgstr "Nincsenek letölthetõ Archívumok" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 +msgid "Buscar cuentas a las que 'group_name' tenga acceso" +msgstr "Search for accounts which 'group_name' has access rights" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 -#, fuzzy -msgid "Clave de Exportación" -msgstr "Változás felhasználói jelszó" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 +msgid "Devolver las cuentas con grupo principal 'group_name'" +msgstr "Get the accounts which have the main group name \"group_name\"" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 -#, fuzzy -msgid "Clave de Exportación (repetir)" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 +msgid "Buscar cuentas con archivos con el nombre 'file_name'" +msgstr "Search for accounts which contains a file with the name 'file_name'" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 +msgid "Buscar cuentas por nombre de cliente" +msgstr "Search for accounts by client name" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 +msgid "Buscar cuentas por nombre de categoría" +msgstr "Search for accounts by category name" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 +msgid "Devolver la cuenta con ID" +msgstr "Returns the account for the given ID" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 +msgid "Buscar cuentas con la clave caducada" +msgstr "Search for accounts with expired password" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 +msgid "Devolver las cuentas privadas del usuario actual" +msgstr "Get the private accounts for the current user" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 +msgid "Operador para los parámetros especiales" +msgstr "Operator for special parameters" + +#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:17 +msgid "No se encontraron registros" +msgstr "Nem találtam rekordokat" + +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:168 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:38 +msgid "Clave (repetir)" msgstr "Jelszó (ismét)" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 -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 you to save the accounts and their data in XML " -"format to be imported in another sysPass instance." +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 +msgid "Seleccionar Fecha" +msgstr "Select date" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 -msgid "" -"Las claves de las cuentas son exportadas de forma encriptada para mayor " -"seguridad." -msgstr "" -"The accounts passwords are exported in an excrypted way for better security." - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 -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 all the encrypted data in " -"the XML file." - -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:19 #, fuzzy -msgid "Javascript es necesario para el correcto funcionamiento" -msgstr "Java szkript szükséges a megfelelõ mûködéshez" +msgid "Histórico" +msgstr "Fiók elõzmények importálása" -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 -msgid "Nombre de la categoría" -msgstr "Kategória név" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:22 +msgid "Detalles" +msgstr "Details" -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 -msgid "Descripción de la categoría" -msgstr "Kategória leírás" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:127 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:200 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:169 +msgid "Notas" +msgstr "Jegyzetek" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 -msgid "Sitio" -msgstr "Oldal" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:140 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:142 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:271 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:273 +msgid "Historial" +msgstr "Elõzmények" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 -msgid "Idioma" -msgstr "Nyelv" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:278 +msgid "Seleccionar fecha" +msgstr "Válassz dátumot" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 -msgid "" -"Establece el idioma global de la aplicación. Es posible establecer un idioma " -"por usuario en las preferencias." -msgstr "" -"Set the global app language. You can set a per user language at the user " -"preferences." +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:160 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 +msgid "Última Modificación" +msgstr "Utoljára módosítva" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 -msgid "Tema Visual" -msgstr "Visual Theme" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:23 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:57 +msgid "Seleccionar Usuarios" +msgstr "Select Users" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 -msgid "" -"Establece el tema visual global de la aplicación. Es posible establecer un " -"tema visual por usuario en las preferencias." -msgstr "" -"Set the global app visual theme. You can the user's visual theme on the user " -"preferences." +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 +msgid "Ver" +msgstr "Nézet" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 -msgid "Timeout de sesión (s)" -msgstr "Munkamenet idõ" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:132 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:136 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 +msgid "Editar" +msgstr "Módosítás" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 -msgid "Habilitar log de eventos" -msgstr "Esemény napló engedélyezése" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 +msgid "Seleccionar Grupos" +msgstr "Select Groups" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 +msgid "Privada" +msgstr "Private" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:223 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 +msgid "Privada Grupo" +msgstr "Private for Group" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:15 +msgid "Solicitar Modificación de Cuenta" +msgstr "Kérés fiók módosítás" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 +msgid "Petición" +msgstr "Kérés" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:52 #, fuzzy -msgid "Guarda las acciones realizadas en la aplicación." -msgstr "Ez elmenti az akciók kimenetét" +msgid "Descripción de la petición" +msgstr "Kérés leírás" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 -msgid "Habilitar depuración" -msgstr "Nyomkövetés engedélyezése" +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:74 +msgid "Enviar" +msgstr "Küldés" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 +msgid "Permisos" +msgstr "Jofosultságok" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:218 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 +msgid "Seleccionar Etiquetas" +msgstr "Select Tags" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:26 +msgid "Seleccionar Cuenta" +msgstr "Select Account" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:191 +msgid "Enlace Público" +msgstr "Public Link" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:314 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:316 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:319 +msgid "Enlace Directo" +msgstr "Direct Link" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:24 +msgid "Fecha Alta" +msgstr "Dátum hozzáadva" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:60 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:62 +msgid "Fecha Edición" +msgstr "Adat módosítva" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:70 +msgid "Editor" +msgstr "Szerkesztõ" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 +msgid "Fecha de Clave" +msgstr "Password Date" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:37 +msgid "Soltar archivos aquí (max. 5) o click para seleccionar" +msgstr "Dobja el a fájlokat (max. 5) vagy kattintson a választáshoz" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:39 +#, php-format +msgid "Tamaño máximo de archivo: %d MB" +msgstr "Maximum file size: %d MB" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:35 +msgid "Buscar en Wiki" +msgstr "Keresés a Wikiben" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:82 +#, php-format +msgid "Abrir enlace a: %s" +msgstr "Open link to: %s" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:109 +msgid "Clave Caducada" +msgstr "Password Expired" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:123 +msgid "Cuenta Privada (Grupo)" +msgstr "Private Account (Group)" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:166 +msgid "Notes" +msgstr "Notes" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 +msgid "Archivos adjuntos" +msgstr "Csatolmányok" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:218 +msgid "Enlace a Wiki" +msgstr "Wiki link" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:210 +msgid "Ver en Wiki" +msgstr "View at Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 #, fuzzy -msgid "" -"Muestra información relativa a la configuración de la aplicación y " -"rendimiento." -msgstr "Mutat néhány információt az alkalmazásról és a teljesítményrõl" +msgid "Búsqueda global" +msgstr "Globális keresés" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 -msgid "Modo mantenimiento" -msgstr "Fenntartás mód" +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:83 +msgid "Filtrar Favoritos" +msgstr "Favorites Filtering" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:98 +msgid "Cuentas por página" +msgstr "Fiók/oldal" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:104 +msgid "Más Filtros" +msgstr "More Filters" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:109 +msgid "Seleccionar Etiqueta" +msgstr "Select Tag" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:22 +msgid "Los datos serán encriptados al guardar" +msgstr "Data will be encrypted after saving" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:27 +msgid "Los datos serán desencriptados al guardar" +msgstr "Data will be unencrypted after saving" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:12 +#, php-format +msgid "La extensión '%s' no está disponible" +msgstr "The '%s' extension is unavailable" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:16 +msgid "Esta extensión es necesaria para mostrar las claves como imágenes" +msgstr "This extension is needed to display passwords as images" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:30 +msgid "Búsqueda" +msgstr "Searching" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:36 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:56 +msgid "Resultados por página" +msgstr "Eredmény / oldal" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:41 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:61 #, fuzzy -msgid "" -"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " -"necesario modificar el archivo de configuración." -msgstr "" -"Ezen a módon nem tudsz bejelentkezni az alkalmazásba. Hogy kikapcsold, " -"módosítanod kell a konfigurációs fájlt" +msgid "Número de resultados por página a mostrar, al realizar una búsqueda." +msgstr "Keresési találok száma oldalanként" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 -msgid "Comprobar actualizaciones" -msgstr "Frissítések keresése" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:52 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:72 #, fuzzy -msgid "" -"Comprobar actualizaciones de la aplicación (sólo para los usuarios " -"administradores)." -msgstr "Azlkalmazás frissítések keresése (csak rendszergazda esetén)" +msgid "Número de resultados por página" +msgstr "Keresési találok száma oldalanként" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 -#, fuzzy -msgid "Comprobar notificaciones" -msgstr "Ellenõrzés" +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 +msgid "Caducidad clave cuentas" +msgstr "Accounts password expiry" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 -#, fuzzy -msgid "" -"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " -"para los usuarios administradores)." -msgstr "Azlkalmazás frissítések keresése (csak rendszergazda esetén)" +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:71 +msgid "Habilita la caducidad de la clave de cuentas." +msgstr "Enables the accounts password expiry date." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:79 +msgid "Tiempo caducidad clave" +msgstr "Password expiry time" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:84 +msgid "Número de días para la caducidad de la clave de cuenta." +msgstr "Number of days for the account expiry date." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 +msgid "Tiempo caducidad (días)" +msgstr "Expire time (days)" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:112 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:90 msgid "Nombre de cuenta como enlace" msgstr "Fiók neve linkként" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:113 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:92 #, fuzzy msgid "" "Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " "de la cuenta." msgstr "Fiók nevére való keresés engedélyezése" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 -msgid "Gestión de archivos" -msgstr "Fájl menedzsment" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 -#, fuzzy -msgid "Habilita la subida/descarga de archivos para las cuentas." -msgstr "Fájlok Fel/Letöltésének engedélyezése" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:128 msgid "Búsquedas globales" msgstr "Gblobális Keresések" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:129 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." @@ -3534,164 +2864,313 @@ msgstr "" "Allows the users to do searches that includes all accounts, if they don't " "have permission they can't view the accounts details." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:144 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 +#, fuzzy +msgid "Imagen para mostrar clave" +msgstr "Mester jelszó szükséges a jelszavak titkosításához" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 +#, fuzzy +msgid "Generar una imagen con el texto de la clave de la cuenta." +msgstr "Hiba a fiókok jelszavainak betöltése közben" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 +msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." +msgstr "" +"Useful for environments where copying a password to clipboard is a security " +"risk." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:164 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:158 +#, fuzzy +msgid "Resultados en Tarjetas" +msgstr "Nincsenek eredmények" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:166 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:160 +#, fuzzy +msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." +msgstr "Enables to show account's search results like a card format." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:182 +msgid "Acceso Grupos Secundarios" +msgstr "Secondary Groups Access" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:184 +msgid "" +"Habilita el acceso a los usuarios que estén incluidos en los grupos " +"secundarios." +msgstr "Grants access to the users that are included in the secondary groups." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:186 +msgid "" +"Por defecto el usuario de un grupo secundario es permitido si el grupo " +"secundario está establecido como el primario del usuario." +msgstr "" +"By default, the user in a secondary group is granted if the secondary group " +"is set as the user's main group." + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:197 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 +#: ../../../config/actions.xml:73 +msgid "Enlaces Públicos" +msgstr "Public Links" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:215 +msgid "Habilitar Enlaces Públicos" +msgstr "Enable Public Links" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:217 +msgid "" +"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " +"una cuenta." +msgstr "" +"Enables the ability to create public links to view an account's details" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:219 +msgid "" +"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." +msgstr "The linked accounts will be visible by anyone that have the link." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:221 +msgid "" +"Para crear enlaces, los usuarios tienen que tener activada la opción en su " +"perfl." +msgstr "" +"To create links, the users must have activated the option in their profiles." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:237 +msgid "Usar imagen para clave" +msgstr "Use an image for password" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:239 +msgid "La clave de la cuenta es visualizada como una imagen." +msgstr "The account password is shown as image." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:248 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:257 +msgid "Tiempo de caducidad" +msgstr "Expire time" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:263 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:272 +msgid "Número máximo de visitas" +msgstr "Maximum visits" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:298 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 +msgid "Gestión de archivos" +msgstr "Fájl menedzsment" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:299 +#, fuzzy +msgid "Habilita la subida/descarga de archivos para las cuentas." +msgstr "Fájlok Fel/Letöltésének engedélyezése" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:307 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:320 msgid "Extensiones de archivos permitidas" msgstr "Engedélyezett fájl kiterjesztés" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 #, fuzzy msgid "Extensiones permitidas para la subida de archivos." msgstr "Fájlok Fel/Letöltésének engedélyezése" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:267 -#, fuzzy -msgid "Se permite un máximo de 4 caracteres." -msgstr "A kiterjesztések hossza maximum 4 karakter lehet" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:315 #, fuzzy msgid "" "Escribir extensión y pulsar intro para añadir. Es necesario guardar la " "configuración." msgstr "Írj kiterjesztést, majd nyomj entert a hozzáadáshoz" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:328 +msgid "Tamaño máximo de archivo" +msgstr "Maximális fájl méret" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:333 #, fuzzy msgid "Establece el tamaño máximo para subir archivos." msgstr "A feltölthetõ fájlméret maximális értékének beállítása" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:337 #, fuzzy msgid "El máximo absuluto es de 16MB." msgstr "A maximum 16MB" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 -msgid "Resultados por página" -msgstr "Eredmény / oldal" +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:348 +msgid "Tamaño máximo de archivo en kilobytes" +msgstr "Maximum file size in kilobytes" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 -#, fuzzy -msgid "Número de resultados por página a mostrar, al realizar una búsqueda." -msgstr "Keresési találok száma oldalanként" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:16 +msgid "" +"Esta extensión es necesaria para generar los archivos de copia de seguridad " +"de la aplicación" +msgstr "This extension is needed to build the application's backup files" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 -#, fuzzy -msgid "Resultados en Tarjetas" -msgstr "Nincsenek eredmények" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 +msgid "Resultado" +msgstr "Eredmény" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 -#, fuzzy -msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." -msgstr "Enables to show account's search results like a card format." +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:123 +msgid "Descargar Actual" +msgstr "Aktuális letöltés" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 -#, fuzzy -msgid "Imagen para mostrar clave" -msgstr "Mester jelszó szükséges a jelszavak titkosításához" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:51 +msgid "Copia BBDD" +msgstr "DB Backup" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 -#, fuzzy -msgid "Generar una imagen con el texto de la clave de la cuenta." -msgstr "Hiba a fiókok jelszavainak betöltése közben" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:58 +msgid "Copia sysPass" +msgstr "sysPass Backup" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 -msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:80 +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 "" -"Useful for environments where copying a password to clipboard is a security " -"risk." +"The backup allows you to save and download either sysPass database or " +"application files and its configuration." -#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:82 +msgid "" +"Con este método es posible guardar todos los datos de sysPass en otro lugar " +"o utilizarlos para hacer la aplicación portable." +msgstr "" +"With this method it's possible to either save all sysPass data in another " +"place or use it to make the application portable." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:185 #, fuzzy -msgid "Nombre del cliente" -msgstr "Ügyfél név" +msgid "Exportar Cuentas" +msgstr "Fiókok" -#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:139 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:147 #, fuzzy -msgid "Descripción del cliente" -msgstr "Ügyfél leírás" +msgid "Clave de Exportación" +msgstr "Változás felhasználói jelszó" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:161 #, fuzzy -msgid "Texto Ayuda" -msgstr "Keresendõ szöveg" +msgid "Clave de Exportación (repetir)" +msgstr "Jelszó (ismét)" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 -msgid "Obligatorio" -msgstr "Kötelező" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:187 +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 you to save the accounts and their data in XML " +"format to be imported in another sysPass instance." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:189 +msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." +msgstr "The exported items are accounts, clients, categories and tags." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:191 +msgid "" +"Las claves de las cuentas son exportadas de forma encriptada para mayor " +"seguridad." +msgstr "" +"The accounts passwords are exported in an excrypted way for better security." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:193 +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 all the encrypted data in " +"the XML file." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:17 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:167 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:50 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:56 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:57 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:102 msgid "Clave Maestra" msgstr "Mester jelszó" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:27 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:201 #, fuzzy msgid "Último cambio" msgstr "Utolsó változtatás" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:35 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:43 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:142 msgid "Clave Maestra actual" msgstr "Jelenlegki mester jelszó" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:49 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:57 msgid "Nueva Clave Maestra" msgstr "Új mester jelszó" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:63 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:71 msgid "Nueva Clave Maestra (repetir)" msgstr "Új mester jelszó (megerõsítés)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:80 +msgid "Guarde la nueva clave en un lugar seguro." +msgstr "Tárold biztonságos helyen az új jelszót" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:84 +msgid "Se volverán a encriptar las claves de todas las cuentas." +msgstr "Minden fiók jelszó újra titkosítva lesz" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:88 +msgid "Los usuarios deberán de introducir la nueva clave maestra." +msgstr "Minden felhasználónak úrja be kell írnia az új mester jelszót" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:92 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:130 +#, php-format +msgid "" +"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." +msgstr "It will be updated %s accounts. This process could take some time." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:109 msgid "No modificar cuentas" msgstr "Ne módosítsa a fiókokat" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:111 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "Új mester jelszó beállítása a fiók újratitkosítása nélkül" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:127 #, fuzzy msgid "Confirmar cambio" msgstr "Változás megerõsítése" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 -msgid "Guarde la nueva clave en un lugar seguro." -msgstr "Tárold biztonságos helyen az új jelszót" +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:129 +msgid "" +"Confirmar el cambio de clave maestra después de haber leído las advertencias " +"anteriores." +msgstr "" +"Confirm the master password change after you have been read all the above " +"warnings." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 -msgid "Se volverán a encriptar las claves de todas las cuentas." -msgstr "Minden fiók jelszó újra titkosítva lesz" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 -msgid "Los usuarios deberán de introducir la nueva clave maestra." -msgstr "Minden felhasználónak úrja be kell írnia az új mester jelszót" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:155 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." @@ -3699,7 +3178,7 @@ msgstr "" "The Master Password is used to encrypt sysPass accounts passwords and keep " "them safe." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:157 msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " "que incluya números, letras y símbolos." @@ -3707,30 +3186,54 @@ msgstr "" "It's advisable to change it from time to time and use a complex password " "that includes numbers, letters and symbols." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:159 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#, php-format +msgid "Para más información consulte: %s" +msgstr "You could get more info on: %s" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:169 +msgid "Actualizar hash de clave maestra" +msgstr "Update master password hash" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:189 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:323 #, fuzzy msgid "Clave Temporal" msgstr "Generate Temporary Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:203 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:218 #, fuzzy msgid "No generada" msgstr "Generált Jelszó" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:211 msgid "Válido hasta" msgstr "Érvényes" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:227 +msgid "Intentos" +msgstr "Attempts" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:244 #, fuzzy msgid "Validez (s)" msgstr "Munkamenet idõ" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:263 +msgid "Enviar correo" +msgstr "Send email" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:265 +msgid "" +"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." +msgstr "Sends an email to all users or only to those whose group is selected." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:325 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " @@ -3740,149 +3243,333 @@ msgstr "" "to enter it during login. By this way there is no need to tell them the real " "Master Password." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:332 #, fuzzy msgid "Generar" msgstr "Generate Temporary Password" -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 -msgid "No se encontraron registros" -msgstr "Nem találtam rekordokat" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:12 +#, fuzzy +msgid "Autentificación" +msgstr "Engedélyezése Hitelesítés" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 -msgid "Fecha / Hora" -msgstr "Dátum / Idõ" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:30 +msgid "Usar Auth Basic" +msgstr "Use Auth Basic" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 -msgid "Evento" -msgstr "Esemény" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:31 +msgid "Usar Auth Basic para autorizar los accesos a la aplicación." +msgstr "Use Auth Basic for authorizing the accesses to the application" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 -msgid "IP" -msgstr "IP" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:45 +msgid "Usar Auth Basic SSO" +msgstr "Use Auth Basic SSO" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:69 -msgid "Primera página" -msgstr "Elsõ oldal" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:46 +msgid "Usar auto-login con Auth Basic." +msgstr "Use auto-login through Auth Basic" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:67 -msgid "Página anterior" -msgstr "Elõzõ oldal" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:54 +msgid "Dominio" +msgstr "Domain" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:68 -msgid "Página siguiente" -msgstr "Következõ oldal" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:70 -msgid "Última página" -msgstr "Utolsó oldal" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 -#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 -msgid "Ver Archivo" -msgstr "Fájl megtekintése" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 -msgid "Indica si la conexión utiliza HTTPS." -msgstr "Tells whether the connection uses HTTPS or not." - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:59 msgid "" -"Las claves de formularios enviados se encriptan mediante PKI, el resto de " -"datos no." +"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " +"el de Auth Basic." msgstr "" -"The passwords sent from the forms are encrypted with PKI, the other data not." +"The domain will be added to the sysPass user name for checking against the " +"Auth Basic one." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 -msgid "Ayuda :: FAQ :: Changelog" -msgstr "Segítség :: GYIK :: Változások Listája" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:69 +msgid "Nombre de dominio" +msgstr "Domain name" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 -msgid "Un proyecto de cygnux.org" -msgstr "A cygnux.org projekt" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 -msgid "Nombre del grupo" -msgstr "Csoport név" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 -msgid "Descripción del grupo" -msgstr "Csoport leírás" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 -#, fuzzy -msgid "Importar CSV/XML" -msgstr "Import CSV/XML" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 -#, fuzzy -msgid "Usuario por Defecto" -msgstr "Rendezés Felhasználónév szerint" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 -#, fuzzy -msgid "Define el usuario por defecto para las cuentas importadas." -msgstr "Define the default users profile for new LDAP users" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:249 #, fuzzy msgid "Grupo por Defecto" msgstr "Csoportot használja a:" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:80 +msgid "" +"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Sets the default users group for newly SSO users" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:264 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:274 +#, fuzzy +msgid "Perfil por Defecto" +msgstr "A profilt használja:" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:105 +msgid "" +"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Sets the default profile for the newly created SSO users." + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:98 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:176 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:72 +msgid "Eventos" +msgstr "Events" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:30 +msgid "Habilitar log de eventos" +msgstr "Esemény napló engedélyezése" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:31 +#, fuzzy +msgid "Guarda las acciones realizadas en la aplicación." +msgstr "Ez elmenti az akciók kimenetét" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:45 +msgid "Habilitar Syslog" +msgstr "Enable Syslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:60 +msgid "Habilitar Syslog Remoto" +msgstr "Enable Remote Syslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:94 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:66 +msgid "Servidor" +msgstr "Szerver" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:78 +msgid "Nombre o dirección IP" +msgstr "Hostname or IP address" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:84 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:79 +msgid "Puerto" +msgstr "Port" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:12 +msgid "Proxy" +msgstr "Proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:30 +msgid "Usar Proxy" +msgstr "Use Proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:31 +msgid "Usar proxy para comprobación de actualizaciones y notificaciones." +msgstr "Use a proxy server for checking out for updates and notifications." + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:47 +#, fuzzy +msgid "Servidor proxy" +msgstr "Szerver" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:61 +msgid "Puerto del servidor proxy" +msgstr "Proxy server port" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:75 +#, fuzzy +msgid "Usuario del servidor proxy" +msgstr "Felhasználó elérése" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:89 +msgid "Clave del servidor proxy" +msgstr "Proxy server password" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:16 +msgid "" +"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" +msgstr "This extension is needed to check for sysPass updates and notices" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:24 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:15 +msgid "Sitio" +msgstr "Oldal" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:137 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:139 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:28 +msgid "Idioma" +msgstr "Nyelv" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:35 +msgid "" +"Establece el idioma global de la aplicación. Es posible establecer un idioma " +"por usuario en las preferencias." +msgstr "" +"Set the global app language. You can set a per user language at the user " +"preferences." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:39 +msgid "" +"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." +"com/join/project/fmlsBuugyv" +msgstr "" +"To improve/add the translations, you can get involved at https://poeditor." +"com/join/project/fmlsBuugyv" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:67 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:42 +msgid "Tema Visual" +msgstr "Visual Theme" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:62 +msgid "" +"Establece el tema visual global de la aplicación. Es posible establecer un " +"tema visual por usuario en las preferencias." +msgstr "" +"Set the global app visual theme. You can the user's visual theme on the user " +"preferences." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:89 +msgid "Timeout de sesión (s)" +msgstr "Munkamenet idõ" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:107 +msgid "Forzar HTTPS" +msgstr "Force HTTPS" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:108 +msgid "Fuerza para que todas las conexiones sean a través de HTTPS." +msgstr "It forces the use of HTTPS on all the connections" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:122 +msgid "Habilitar depuración" +msgstr "Nyomkövetés engedélyezése" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:123 +#, fuzzy +msgid "" +"Muestra información relativa a la configuración de la aplicación y " +"rendimiento." +msgstr "Mutat néhány információt az alkalmazásról és a teljesítményrõl" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:137 +msgid "Modo mantenimiento" +msgstr "Fenntartás mód" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:138 +#, fuzzy +msgid "" +"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " +"necesario modificar el archivo de configuración." +msgstr "" +"Ezen a módon nem tudsz bejelentkezni az alkalmazásba. Hogy kikapcsold, " +"módosítanod kell a konfigurációs fájlt" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:152 +msgid "Comprobar actualizaciones" +msgstr "Frissítések keresése" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:153 +#, fuzzy +msgid "" +"Comprobar actualizaciones de la aplicación (sólo para los usuarios " +"administradores)." +msgstr "Azlkalmazás frissítések keresése (csak rendszergazda esetén)" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:167 +#, fuzzy +msgid "Comprobar notificaciones" +msgstr "Ellenõrzés" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:168 +#, fuzzy +msgid "" +"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " +"para los usuarios administradores)." +msgstr "Azlkalmazás frissítések keresése (csak rendszergazda esetén)" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 +msgid "Encriptar Sesión" +msgstr "Encrypt Session" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:184 +msgid "Encriptar los datos de la sesión de PHP." +msgstr "Encrypt PHP session data" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:185 +msgid "" +"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " +"datos almacenados no serán legibles." +msgstr "" +"This feature increases the PHP sessions security, because the stored data " +"won't be readable." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +#, fuzzy +msgid "Importar CSV/XML" +msgstr "Import CSV/XML" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:28 +#, fuzzy +msgid "Usuario por Defecto" +msgstr "Rendezés Felhasználónév szerint" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:23 +#, fuzzy +msgid "Define el usuario por defecto para las cuentas importadas." +msgstr "Define the default users profile for new LDAP users" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:50 #, fuzzy msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Define the default users group for new LDAP users" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 -#, fuzzy -msgid "Clave de Importación" -msgstr "Fiók importálás megerõsítése" +#: ../../../modules/web/themes/material-blue/views/config/import.inc:72 +msgid "Archivo" +msgstr "Fájl" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 -msgid "Delimitador CSV" -msgstr "CSV delimiter" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:75 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Dobja el a fájlokat vagy kattintson a választáshoz" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "archivos XML y CSV." msgstr "" "Allows to import the Accounts, Categories and Clients from XML or CSV files." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "The supported XML file formats are: sysPass, KeePass and KeePassX" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "Drag & Drop the file into the import zone or click over the arrow." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 #, fuzzy msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " @@ -3891,12 +3578,20 @@ msgstr "" "Import from KeePass or KeePassX. The customer name will be KeePass or " "KeePassX." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 #, fuzzy msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "Forma importálása a CSV fájl formátumával együtt" #: ../../../modules/web/themes/material-blue/views/config/import.inc:115 +msgid "" +"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" +"\"notas\"" +msgstr "" +"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" +"\"notes\"" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:117 #, fuzzy msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " @@ -3905,777 +3600,282 @@ msgstr "" "Amennyiben az ügyfél vagy a kategória nem létezik, automatikusan lesznek " "létrehozva" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:125 +msgid "XML" +msgstr "XML" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:131 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:146 +#, fuzzy +msgid "Clave de Importación" +msgstr "Fiók importálás megerõsítése" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:136 +msgid "Sólo es necesaria para archivos XML de sysPass encriptados." +msgstr "It's only needed for sysPass XML files that have been encrypted." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:157 +msgid "" +"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " +"la actual." +msgstr "" +"It's only needed for sysPass XML files that have been encrypted with a " +"different master password from the current one." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:174 +msgid "CSV" +msgstr "CSV" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:195 +msgid "Delimitador CSV" +msgstr "CSV delimiter" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:185 +msgid "Sólo es necesario para archivos CSV." +msgstr "It's only needed for CSV files." + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 #, fuzzy msgid "Información de la Aplicación" msgstr "Kérés leírás" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:23 #, fuzzy msgid "Versión sysPass" msgstr "Verzió" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:33 #, fuzzy msgid "Base de Datos" msgstr "Az adatbázis frissítése nem szükséges" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:47 #, fuzzy msgid "PHP" msgstr "Kérem, tekintse meg a PHP konfigurációt fájlok feltötése elõtt" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:49 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:34 +msgid "Versión" +msgstr "Verzió" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:51 #, fuzzy msgid "Extensiones" msgstr "Tiltott kiterjesztések" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 +msgid "Extensiones no disponibles" +msgstr "Unavailable extensions" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:59 msgid "Memoria Usada" msgstr "Felhasznált memória" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:142 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:189 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 -msgid "Servidor" -msgstr "Szerver" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Tasa de descarga" +msgstr "Download rate" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 -#, fuzzy -msgid "Login del usuario administrador de sysPass" -msgstr "sysPass administrator's login" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:66 +msgid "OP Cache" +msgstr "OP Cache" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 -msgid "Configurar BBDD" -msgstr "Adatbázis beállítások" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:88 +msgid "Copia de Configuración" +msgstr "Configuration Backup" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 -#, fuzzy -msgid "Nombre de la base de datos para sysPass" -msgstr "Írd be a phpPMS adatbázis nevét" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:100 +msgid "Indica si el idioma se encuentra disponible" +msgstr "Tells whether the language is available or not." -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 -msgid "Modo Hosting" -msgstr "Hosting mód" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:104 +msgid "" +"Si no está instalado, es necesario instalar las locales en el sistema " +"operativo. Más información en Wiki." +msgstr "" +"If it is not installed, you would need install the right operating system " +"locales. More info at Wiki." -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 -msgid "No crea ni verifica los permisos del usuario sobre la BBDD" -msgstr "Ez nem hozza létre, illetve erõsíti meg az adatbázis jogosultságokat" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:116 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:126 +msgid "Sesión Encriptada" +msgstr "Encrypted Session" -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 -msgid "Instalar" -msgstr "Telepítés" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:121 +msgid "Indica si los datos de la sesión están encriptados en el servidor" +msgstr "Tells whether the session data are encrypted in the server or not" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "Sí" +msgstr "Yes" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "No" +msgstr "No" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:136 +msgid "Plugins Cargados" +msgstr "Loaded Plugins" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:16 +msgid "Esta extensión es necesaria conectar con el servidor de LDAP" +msgstr "This extension is needed to connect to the LDAP server" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:46 msgid "Habilitar LDAP" msgstr "LDAP engedélyezése" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:48 #, fuzzy msgid "Habilita de autentificación mediante servidor LDAP." msgstr "LDAP hitelesítés engedélyezése" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:50 #, fuzzy msgid "Este método utilizará MySQL en caso de fallo." msgstr "Ez a metódus hibát okoz a MySQL-ben" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:65 +#, fuzzy +msgid "Active Directory" +msgstr "Active Directory" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:67 +#, fuzzy +msgid "Habilita el modo de conexión con LDAP de Active Directory." +msgstr "Enables Active Directory LDAP connection mode." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:84 +msgid "Habilita la conexión mediante TLS." +msgstr "Enables the connection over TLS" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:99 #, fuzzy msgid "Nombre o dirección IP del servidor de LDAP." msgstr "LDAP szerver hosztnév vagy IP cím" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:185 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:219 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:131 #, fuzzy msgid "Ejemplos:" msgstr "Példák" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:125 msgid "Usuario de conexión" msgstr "Bind felhasználó" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:130 #, fuzzy msgid "Usuario para conectar con el servicio de LDAP." msgstr "Felhasználó az LDAP szerverhez való kapcsolódáshoz" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:155 msgid "Clave de conexión" msgstr "Bind jelszó" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:160 +#, fuzzy +msgid "Clave del usuario de conexión a LDAP." +msgstr "LDAP bind felhasználói jelszó" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:176 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:200 msgid "Base de búsqueda" msgstr "Keresés" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:181 #, fuzzy msgid "Base en la que realizar la búsqueda de usuarios de LDAP." msgstr "LDAP bázis a felhasználó keresésekhez" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:211 #, fuzzy msgid "" "Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." msgstr "LDAP csoport felhasználóinak belépési jgosultságia" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:215 msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." msgstr "This group needs to be placed in the LDAP search base." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:244 #, fuzzy msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Define the default users group for new LDAP users" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 -#, fuzzy -msgid "Perfil por Defecto" -msgstr "A profilt használja:" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:269 #, fuzzy msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Define the default users profile for new LDAP users" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 -#, fuzzy -msgid "Active Directory" -msgstr "Active Directory" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:321 +msgid "Importación" +msgstr "Import" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 -#, fuzzy -msgid "Habilita el modo de conexión con LDAP de Active Directory." -msgstr "Enables Active Directory LDAP connection mode." +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:337 +msgid "Atributo Login" +msgstr "Login Attribute" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:57 -msgid "Comprobar" -msgstr "Ellenõrzés" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:332 +msgid "" +"Define el atributo a utilizar para el login del usuario en la importación." +msgstr "Defines the attribute for the user's login when importing." -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 -#, fuzzy -msgid "¿Olvidó su clave?" -msgstr "Elvesztette jelszavát?" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:350 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:360 +msgid "Atributo Nombre" +msgstr "Name Attribute" -#: ../../../modules/web/Controllers/UpgradeController.php:92 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 -msgid "Aplicación actualizada correctamente" -msgstr "Az alkalmazás frissítése sikeres" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:355 +msgid "" +"Define el atributo a utilizar para el nombre del usuario en la importación." +msgstr "Defines the attribute for the user's name when importing." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:385 +msgid "Importar Grupos" +msgstr "Import Groups" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:394 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:404 +msgid "Atributo Nombre Grupo" +msgstr "Group Name Attribute" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:399 +msgid "" +"Define el atributo a utilizar para el nombre del grupo en la importación." +msgstr "Defines the attribute for the user group name when importing." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:415 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:429 +msgid "Filtro" +msgstr "Filter" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:420 +msgid "Filtro para importar usuarios o grupos de LDAP." +msgstr "Filter for importing LDAP users or groups." + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:34 msgid "Habilitar notificaciones de correo" msgstr "Email értesítés engedélyezése" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 -msgid "Puerto" -msgstr "Port" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 -msgid "Habilitar Autentificación" -msgstr "Engedélyezése Hitelesítés" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 -msgid "Deshabilitada" -msgstr "Inaktív" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 -#, fuzzy -msgid "Dirección de correo de envío" -msgstr "Címzett email címe" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 msgid "Habilitar peticiones por correo" msgstr "Email kérések engedélyezése" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 -msgid "Más Acciones" -msgstr "Több akció" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 -msgid "Solicitud de Cambio de Clave" -msgstr "Kérés jelszó módosítás" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 -msgid "Email del Usuario" -msgstr "Felhasználó Email" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 -msgid "Volver a iniciar sesión" -msgstr "Vissza a bejelentkezéshez" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 -msgid "Solicitar" -msgstr "Kérés" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 -msgid "Cambiar" -msgstr "Változtatás" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:37 -#, fuzzy -msgid "Cambiar Clave" -msgstr "Változtatsd meg a jelszót" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 -#, fuzzy -msgid "Ordenar resultados por visitas" -msgstr "Keresési találok száma oldalanként" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 -#, fuzzy -msgid "" -"Ordena los resultados de búsqueda por el número de visitas de las cuentas." -msgstr "Enables to show account's search results like a card format." - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 -msgid "Barra de navegación superior" -msgstr "Navigation bar on top" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 -msgid "Mostrar una barra de navegación superior en las búsquedas." -msgstr "Shows a navigation bar on top of the search results." - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 -msgid "Mostrar Acciones Ocultas" -msgstr "Show Hidden Actions" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 -msgid "" -"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." -msgstr "Always show the hidden actions on the accounts search page." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 -msgid "Nombre del perfil" -msgstr "Profil név" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 -msgid "Ver detalles de cuenta" -msgstr "Fiók adatok" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 -msgid "Ver" -msgstr "Nézet" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 -msgid "Ver clave de cuenta" -msgstr "Fiók jelszó" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 -msgid "Ver historial de cuenta" -msgstr "Fiók elõzmények" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 -msgid "Editar cuenta" -msgstr "fiók" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 -msgid "Editar" -msgstr "Módosítás" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 -msgid "Editar clave de cuenta" -msgstr "fiók jelszavának módosításe" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 -msgid "Editar Clave" -msgstr "Jelszó módosítás" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:32 -msgid "Añadir" -msgstr "Hozzáad" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 -msgid "Ver archivos de cuenta" -msgstr "Fiók fáljok" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 -msgid "Backup" -msgstr "Archiválás" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 -#, fuzzy -msgid "Realizar importación de cuentas" -msgstr "Fiók importálás megerõsítése" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 -msgid "Gestión" -msgstr "Menedzsment" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 -msgid "Gestión de usuarios" -msgstr "Felhasználó menedzsment" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 -msgid "Gestión de grupos" -msgstr "Csoport menedzsment" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 -msgid "Gestión de perfiles" -msgstr "Profil menedzsment" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 -msgid "Perfiles" -msgstr "Profilok" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 -msgid "Gestión de categorías" -msgstr "Kategória Menedzsment" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 -#, fuzzy -msgid "Gestión de clientes" -msgstr "Ügyfél Menedzsment" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 -#, fuzzy -msgid "Gestión de campos personalizados" -msgstr "A mezõk száma helytelen" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 -#, fuzzy -msgid "Gestión de autorizaciones API" -msgstr "Fálj menedzsment inaktív" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 -msgid "Autorizaciones API" -msgstr "API Authorizations" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 -msgid "Otros" -msgstr "Egyebek" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 -msgid "Ver log de eventos" -msgstr "Esemény napló" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 -msgid "Log de Eventos" -msgstr "Esemény napló" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 -#, fuzzy -msgid "Usado por" -msgstr "által" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 -msgid "Solicitar Modificación de Cuenta" -msgstr "Kérés fiók módosítás" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 -msgid "Petición" -msgstr "Kérés" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 -#, fuzzy -msgid "Descripción de la petición" -msgstr "Kérés leírás" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 -msgid "Atrás" -msgstr "Vissza" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 -msgid "Enviar" -msgstr "Küldés" - -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 -msgid "Filtro ON" -msgstr "Szûrõ bekapcsolva" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 -msgid "Buscar en Wiki" -msgstr "Keresés a Wikiben" - -#: ../../../../inc/themes/material-blue/views/accountsearch/rows.inc:71 -msgid "Abrir enlace a" -msgstr "Nyissa meg a linket, hogy" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 -msgid "Archivos adjuntos" -msgstr "Csatolmányok" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 -msgid "Enlace a Wiki" -msgstr "Wiki link" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:53 -msgid "Limpiar" -msgstr "Tiszta" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 -#: ../../../modules/api/Controllers/Help/TagHelp.php:77 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 -msgid "Texto a buscar" -msgstr "Keresendõ szöveg" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:23 -#, fuzzy -msgid "Parámetros especiales:" -msgstr "Helytelen paraméter" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 -msgid "Buscar cuentas a las que 'login' tenga acceso" -msgstr "Search for accounts which 'login' has access rights" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 -msgid "Buscar cuentas a las que 'group_name' tenga acceso" -msgstr "Search for accounts which 'group_name' has access rights" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 -msgid "Buscar cuentas con archivos con el nombre 'file_name'" -msgstr "Search for accounts which contains a file with the name 'file_name'" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 -#, fuzzy -msgid "Búsqueda global" -msgstr "Globális keresés" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 -msgid "Cuentas por página" -msgstr "Fiók/oldal" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:76 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:149 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:152 -msgid "Salir" -msgstr "Kijelentkezés" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 -msgid "Opciones" -msgstr "Beállítások" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 -#, fuzzy -msgid "Regenerar Autorización" -msgstr "Start Update" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 -msgid "Token" -msgstr "Token" - -#: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 -msgid "Actualizado" -msgstr "Frissítve" - -#: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 -#, fuzzy -msgid "Error al comprobar actualizaciones" -msgstr "Frissítések keresése" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 -#, fuzzy -msgid "Actualización de BBDD" -msgstr "Verzió frissítés kész" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 -#, fuzzy -msgid "Código de Seguridad" -msgstr "Archiválás" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 -#, fuzzy -msgid "Iniciar Actualización" -msgstr "Start" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 -msgid "Nombre de usuario completo" -msgstr "Teljes felhasznlónév" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 -msgid "Login de inicio de sesión" -msgstr "Bejelentkezési munkamenet " - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 -msgid "Dirección de correo" -msgstr "Email cím" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 -msgid "Administrador de la aplicación" -msgstr "Rendszergazda" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 -msgid "Administrador de cuentas" -msgstr "Fiókok adminja" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 -msgid "Forzar cambio de clave" -msgstr "Jelszó változtatásának erõltetése" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 -msgid "Entradas" -msgstr "Belépések" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 -msgid "Último Acceso" -msgstr "Utolsó belépés" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 -msgid "Fecha Clave Maestra" -msgstr "Mester jelszó dátum" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 -msgid "Habilitar enlaces Wiki" -msgstr "Wiki linkek engedélyezése" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 -#, fuzzy -msgid "" -"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " -"la búsqueda." -msgstr "Külsõ Wiki forrásokban való keresés engedélyezése" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 -msgid "URL de búsqueda Wiki" -msgstr "Wiki keresés URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 -#, fuzzy -msgid "URL que utiliza la wiki para realizar una búsqueda de una página." -msgstr "Wiki oldal keresõje" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 -#, fuzzy -msgid "Como parámetro se utiliza el nombre del cliente." -msgstr "Az ügyfelet paraméterként használja" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 -#, fuzzy -msgid "Ejemplo:" -msgstr "Példa" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 -msgid "URL de página en Wiki" -msgstr "Wiki oldal URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 -#, fuzzy -msgid "URL que utiliza la wiki para acceder a los detalles de una página." -msgstr "Wiki oldal adatainak elérése" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 -#, fuzzy -msgid "" -"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " -"de la Wiki." -msgstr "A fiók neve wiki keresési paraméterként való használata" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 -msgid "Prefijo para nombre de cuenta" -msgstr "Fiók név elõtag" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 -#, fuzzy -msgid "" -"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." -msgstr "Elõtag választás a fiókok tartalmaznak-e wiki linket" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 -#, fuzzy -msgid "Histórico" -msgstr "Fiók elõzmények importálása" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:54 -#, fuzzy -msgid "Realizar" -msgstr "Archívum készítés" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 -msgid "Forzar HTTPS" -msgstr "Force HTTPS" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 -msgid "Fuerza para que todas las conexiones sean a través de HTTPS." -msgstr "It forces the use of HTTPS on all the connections" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 -#, fuzzy -msgid "Número de resultados por página" -msgstr "Keresési találok száma oldalanként" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 -msgid "Proxy" -msgstr "Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 -msgid "Usar Proxy" -msgstr "Use Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 -#, fuzzy -msgid "Servidor proxy" -msgstr "Szerver" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 -msgid "Puerto del servidor proxy" -msgstr "Proxy server port" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 -#, fuzzy -msgid "Usuario del servidor proxy" -msgstr "Felhasználó elérése" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 -msgid "Clave del servidor proxy" -msgstr "Proxy server password" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 -#, fuzzy -msgid "Nombre del campo" -msgstr "Ügyfél név" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 -#, fuzzy -msgid "Ayuda del campo" -msgstr "Segítség :: GYIK :: Változások Listája" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 -msgid "Intentos" -msgstr "Attempts" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:69 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:131 -#, fuzzy -msgid "Preferencias de usuario" -msgstr "Dupla felhasználó bejelentkezés" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 -#, fuzzy -msgid "Usuario administrador de sysPass" -msgstr "sysPass administrator's login" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 -#, fuzzy -msgid "Usuario acceso BBDD" -msgstr "Felhasználó elérése" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 -#, fuzzy -msgid "Usuario con permisos de administrador de MySQL" -msgstr "User login with with database administrative rights" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 -#, fuzzy -msgid "Clave acceso BBDD" -msgstr "Adatbázis jelszó" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 -#, fuzzy -msgid "Nombre BBDD para sysPass" -msgstr "ÍsysPass database name" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 -#, fuzzy -msgid "Servidor BBDD para sysPass" -msgstr "DB szerver" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 -#, fuzzy -msgid "Nombre del servidor para instalar la base de datos de sysPass" -msgstr "sysPass database server name" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 -#, fuzzy -msgid "Clave del usuario de conexión a LDAP." -msgstr "LDAP bind felhasználói jelszó" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:50 msgid "" "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " "cuentas sin permisos." @@ -4683,563 +3883,896 @@ msgstr "" "Allows users to request for either modifications to existing accounts or " "access to accounts in which they have no rights." -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 -#, fuzzy -msgid "Crear nueva cuenta" -msgstr "Új fiók" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:97 +msgid "Habilitar Autentificación" +msgstr "Engedélyezése Hitelesítés" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 -#, fuzzy -msgid "Crear" -msgstr "Hiba a profil létrehozása közben" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:135 +msgid "Seguridad" +msgstr "Biztonság" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 -#, fuzzy -msgid "Eliminar cuenta" -msgstr "Fiók törlése" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:138 +msgid "Deshabilitada" +msgstr "Inaktív" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:36 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:156 +#, fuzzy +msgid "Dirección de correo de envío" +msgstr "Címzett email címe" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:165 +msgid "Destinatarios" +msgstr "Recipients" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:16 +msgid "Esta extensión es necesaria conectar con DokuWiki" +msgstr "This extension is needed to connect with DokuWiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:47 +msgid "Habilitar enlaces Wiki" +msgstr "Wiki linkek engedélyezése" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:48 +#, fuzzy +msgid "" +"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " +"la búsqueda." +msgstr "Külsõ Wiki forrásokban való keresés engedélyezése" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:56 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:83 +msgid "URL de búsqueda Wiki" +msgstr "Wiki keresés URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:61 +#, fuzzy +msgid "URL que utiliza la wiki para realizar una búsqueda de una página." +msgstr "Wiki oldal keresõje" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:65 +#, fuzzy +msgid "Como parámetro se utiliza el nombre del cliente." +msgstr "Az ügyfelet paraméterként használja" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:69 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:102 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:187 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:214 +#, fuzzy +msgid "Ejemplo:" +msgstr "Példa" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:116 +msgid "URL de página en Wiki" +msgstr "Wiki oldal URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:94 +#, fuzzy +msgid "URL que utiliza la wiki para acceder a los detalles de una página." +msgstr "Wiki oldal adatainak elérése" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:98 +#, fuzzy +msgid "" +"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " +"de la Wiki." +msgstr "A fiók neve wiki keresési paraméterként való használata" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:136 +msgid "Prefijo para nombre de cuenta" +msgstr "Fiók név elõtag" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:127 +#, fuzzy +msgid "" +"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." +msgstr "Elõtag választás a fiókok tartalmaznak-e wiki linket" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:146 +msgid "DokuWiki API" +msgstr "DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:164 +msgid "Habilitar API de DokuWiki" +msgstr "Enable DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:166 +msgid "" +"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." +msgstr "Enables DokuWiki XML-RPC API for Wiki links." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:168 +msgid "" +"Para que esta característica funcione, es necesario habilitar los enlaces " +"Wiki para el filtrado de cuentas." +msgstr "" +"In order to get this feature working, you should enable Wiki links for " +"accounts filtering" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:199 +msgid "URL API" +msgstr "API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:183 +msgid "URL de la API de DokuWiki." +msgstr "DokuWiki API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:205 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:227 +msgid "URL Base" +msgstr "Base URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:210 +msgid "URL base de DokuWiki." +msgstr "DokuWiki base URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:238 +msgid "Usuario para conectar a la API de DokuWiki." +msgstr "User for connecting to the DokuWiki API." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:282 +msgid "Namespace" +msgstr "Namespace" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:271 +msgid "Namespace utilizado para buscar las páginas." +msgstr "Namespace used to search pages." + +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:170 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:172 +msgid "Instalar" +msgstr "Telepítés" + +#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 +msgid "Filtro ON" +msgstr "Szûrõ bekapcsolva" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:11 +#, php-format +msgid "Instalación %s" +msgstr "Installation %s" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:21 +msgid "Admin de sysPass" +msgstr "sysPass Admin" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:29 +#, fuzzy +msgid "Usuario administrador de sysPass" +msgstr "sysPass administrator's login" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:37 +#, fuzzy +msgid "Login del usuario administrador de sysPass" +msgstr "sysPass administrator's login" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:69 +msgid "Configurar BBDD" +msgstr "Adatbázis beállítások" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:79 +#, fuzzy +msgid "Usuario acceso BBDD" +msgstr "Felhasználó elérése" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:87 +#, fuzzy +msgid "Usuario con permisos de administrador de MySQL" +msgstr "User login with with database administrative rights" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:95 +#, fuzzy +msgid "Clave acceso BBDD" +msgstr "Adatbázis jelszó" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:104 +#, fuzzy +msgid "Nombre BBDD para sysPass" +msgstr "ÍsysPass database name" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:112 +#, fuzzy +msgid "Nombre de la base de datos para sysPass" +msgstr "Írd be a phpPMS adatbázis nevét" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:121 +#, fuzzy +msgid "Servidor BBDD para sysPass" +msgstr "DB szerver" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:129 +#, fuzzy +msgid "Nombre del servidor para instalar la base de datos de sysPass" +msgstr "sysPass database server name" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:149 +msgid "Modo Hosting" +msgstr "Hosting mód" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:156 +msgid "No crea ni verifica los permisos del usuario sobre la BBDD" +msgstr "Ez nem hozza létre, illetve erõsíti meg az adatbázis jogosultságokat" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 +msgid "Otros" +msgstr "Egyebek" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 +msgid "Creador" +msgstr "Készítõ" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 #, fuzzy msgid "Eliminar" msgstr "Profil törlése" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 +msgid "Eliminar Historial" +msgstr "Delete History" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 +msgid "Opciones" +msgstr "Beállítások" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 +#, fuzzy +msgid "Regenerar Autorización" +msgstr "Start Update" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 +msgid "Token" +msgstr "Token" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:54 +msgid "Indica si el cliente es visible para todos los usuarios." +msgstr "Sets whether the client is visible by all users" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:57 +msgid "" +"Por defecto los clientes asignados a cuentas sólo son visibles para los " +"usuarios con acceso a las cuentas." +msgstr "" +"By default, the clients assigned to accounts only will be visible to users " +"who are granted to access to the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 +#, fuzzy +msgid "Nombre del campo" +msgstr "Ügyfél név" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 +#, fuzzy +msgid "Texto Ayuda" +msgstr "Keresendõ szöveg" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 +#, fuzzy +msgid "Ayuda del campo" +msgstr "Segítség :: GYIK :: Változások Listája" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 +msgid "Obligatorio" +msgstr "Kötelező" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 +msgid "Puntuación" +msgstr "Score" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 +msgid "Expresión Regular" +msgstr "Regular Expression" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 +msgid "Incluir Minúsculas" +msgstr "Include Lowercase" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 +msgid "Las cuentas sólo serán visibles por el usuario." +msgstr "Accounts will be only visible by the user." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 +msgid "Los administradores no podrán acceder a las cuentas." +msgstr "Administrators won't be able to display the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 +msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." +msgstr "Accounts will be only visible by the user and his/her main group." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 +msgid "Dirección IP" +msgstr "IP Address" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 +msgid "Timeout" +msgstr "Timeout" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 +msgid "" +"Prioridad de asignación en caso de coincidir con otros valores asignados por " +"usuario, grupo o perfil." +msgstr "" +"Assignment priority if values match with others assigned by user, group or " +"profile." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 +msgid "Prioridad de asignación" +msgstr "Assignment Priority" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 +msgid "" +"Indica si los valores serán forzados al crear o modificar los elementos." +msgstr "Enforces the values to be set either on creating or updating an item." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 +msgid "Los valores serán añadidos a los existentes." +msgstr "Values will be merged with the existing ones." + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:83 +msgid "Hash" +msgstr "Hash" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:91 +msgid "URL" +msgstr "URL" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:101 +msgid "Uso" +msgstr "Use" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 +msgid "Nombre de usuario completo" +msgstr "Teljes felhasznlónév" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:58 +msgid "Login de inicio de sesión" +msgstr "Bejelentkezési munkamenet " + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:69 +msgid "Login SSO" +msgstr "SSO Login " + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:77 +msgid "Login de inicio de sesión con SSO" +msgstr "Session login with SSO" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:84 +msgid "Email" +msgstr "Email" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:92 +msgid "Dirección de correo" +msgstr "Email cím" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:200 +msgid "Admin Aplicación" +msgstr "Admin alkalmazás" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:202 +msgid "Administrador de la aplicación" +msgstr "Rendszergazda" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:218 +#, fuzzy +msgid "Admin Cuentas" +msgstr "Admin Fiók" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:220 +msgid "Administrador de cuentas" +msgstr "Fiókok adminja" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:240 +msgid "Forzar cambio de clave" +msgstr "Jelszó változtatásának erõltetése" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:257 +msgid "Deshabilitado" +msgstr "Inaktív" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 +msgid "Entradas" +msgstr "Belépések" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 +msgid "Último Acceso" +msgstr "Utolsó belépés" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 +msgid "Fecha Clave Maestra" +msgstr "Mester jelszó dátum" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:311 +msgid "Usado en" +msgstr "Used in" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 +#, fuzzy +msgid "Usado por" +msgstr "által" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:108 +msgid "(*) Incluido en grupo" +msgstr "(*) Listed in group" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 +msgid "Gestión" +msgstr "Menedzsment" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 +#, fuzzy +msgid "Crear" +msgstr "Hiba a profil létrehozása közben" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 +#, fuzzy +msgid "Crear nueva cuenta" +msgstr "Új fiók" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 +msgid "Ver detalles de cuenta" +msgstr "Fiók adatok" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 +msgid "Ver clave de cuenta" +msgstr "Fiók jelszó" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 +#: ../../../config/actions.xml:259 +msgid "Ver Historial" +msgstr "Elõzmények" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 +msgid "Ver historial de cuenta" +msgstr "Fiók elõzmények" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 +msgid "Editar cuenta" +msgstr "fiók" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 +msgid "Editar Clave" +msgstr "Jelszó módosítás" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 +msgid "Editar clave de cuenta" +msgstr "fiók jelszavának módosításe" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 +#, fuzzy +msgid "Eliminar cuenta" +msgstr "Fiók törlése" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 +msgid "Ver archivos de cuenta" +msgstr "Fiók fáljok" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 +msgid "Publicar Enlace" +msgstr "Share Link" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 +msgid "Publicar enlace a cuenta" +msgstr "Share link to account" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 +msgid "Crear cuenta privada" +msgstr "Create private account" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 +msgid "Crear cuenta privada para grupo" +msgstr "Create private account for group" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 +msgid "Asignar permisos" +msgstr "Assign permissions" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 +msgid "Gestión de usuarios" +msgstr "Felhasználó menedzsment" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 +msgid "Gestión de grupos" +msgstr "Csoport menedzsment" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 +msgid "Gestión de perfiles" +msgstr "Profil menedzsment" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 +msgid "Gestión de categorías" +msgstr "Kategória Menedzsment" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 +msgid "Gestión de etiquetas" +msgstr "Tags management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 +#, fuzzy +msgid "Gestión de clientes" +msgstr "Ügyfél Menedzsment" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 +#, fuzzy +msgid "Gestión de campos personalizados" +msgstr "A mezõk száma helytelen" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 +#, fuzzy +msgid "Gestión de autorizaciones API" +msgstr "Fálj menedzsment inaktív" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 +msgid "Gestión de enlaces" +msgstr "Links management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 +msgid "Gestión de cuentas" +msgstr "Accounts management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 +msgid "Valores por Defecto" +msgstr "Default Values" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 +msgid "Gestión de Valores por Defecto" +msgstr "Default Values Management" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 +#: ../../../config/actions.xml:691 +#, fuzzy +msgid "Configuración General" +msgstr "Általános beállítások" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 #, fuzzy msgid "Opciones de encriptación" msgstr "Beállítások" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 +msgid "Backup" +msgstr "Archiválás" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 #, fuzzy msgid "Realizar copia de seguridad y exportar" msgstr "archívum készítés" -#: ../../../../ajax/ajax_filesMgmt.php:97 -msgid "Extensión" -msgstr "Extension" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 +#, fuzzy +msgid "Importar" +msgstr "Fiókok importálása" -#: ../../../modules/web/Controllers/AccountFileController.php:209 -msgid "Tamaño de archivo superado" -msgstr "File size exceeded" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 +#, fuzzy +msgid "Realizar importación de cuentas" +msgstr "Fiók importálás megerõsítése" -#: ../../../../ajax/ajax_passReset.php:77 -msgid "Solicitud no enviada" -msgstr "Request not sent" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 +msgid "Log de Eventos" +msgstr "Esemény napló" -#: ../../../../ajax/ajax_passReset.php:78 -msgid "Compruebe datos de usuario o consulte con el administrador" -msgstr "Please, check the user data or contact to the administrator" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 +msgid "Ver log de eventos" +msgstr "Esemény napló" -#: ../../../../lib/SP/Services/Account/AccountService.php:283 -#: ../../../../lib/SP/Services/Account/AccountService.php:672 -#: ../../../../lib/SP/Services/Account/AccountService.php:727 -msgid "La cuenta no existe" -msgstr "The account doesn't exist" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 +msgid "Nombre del perfil" +msgstr "Profil név" -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:194 -msgid "Errores" -msgstr "Errors" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:46 +msgid "Clave Anterior" +msgstr "Previous Password" -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:71 -msgid "Error al añadir favorito" -msgstr "Error while adding favorite" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:73 +msgid "Acceder" +msgstr "Belépés" -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:91 -msgid "Error al eliminar favorito" -msgstr "Error while deleting favorite" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:82 +#, fuzzy +msgid "¿Olvidó su clave?" +msgstr "Elvesztette jelszavát?" -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:94 -msgid "Error al eliminar las etiquetas de la cuenta" -msgstr "Error while removing the account's tags" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 +msgid "Aplicación actualizada correctamente" +msgstr "Az alkalmazás frissítése sikeres" -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:107 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:78 -msgid "Método inválido" -msgstr "Invalid Method" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 +#, php-format +msgid "Actualización %s" +msgstr "Update %s" -#: ../../../../lib/SP/Services/Api/ApiRequest.php:79 -#: ../../../../lib/SP/Services/Api/ApiRequest.php:113 -#: ../../../../lib/SP/Services/Api/ApiService.php:229 -msgid "Datos inválidos" -msgstr "Invalid data" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:20 +#, fuzzy +msgid "Actualización de BBDD" +msgstr "Verzió frissítés kész" -#: ../../../../inc/SP/Api/ApiRequest.class.php:211 -msgid "Formato incorrecto" -msgstr "Wrong format" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:22 +msgid "Actualización de Aplicación" +msgstr "Application Update" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 -msgid "Id de la cuenta" -msgstr "Account Id" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 +#, fuzzy +msgid "Código de Seguridad" +msgstr "Archiválás" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 -msgid "Devolver detalles en la respuesta" -msgstr "Send details in the response" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 +msgid "" +"Este código se encuentra en el archivo de configuración de sysPass con la " +"etiqueta \"upgradeKey\"" +msgstr "" +"This code is set in the sysPass config file within the tag name \"upgradekey" +"\"" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 -#: ../../../modules/api/Controllers/Help/TagHelp.php:78 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 -msgid "Número de resultados a mostrar" -msgstr "Number of results to show" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:47 +msgid "" +"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " +"o indique los IDs por defecto para los elementos huérfanos." +msgstr "" +"Some orphaned items have been found. Please, modify those items or enter the " +"default IDs for them." -#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 -msgid "Id de categoría a filtrar" -msgstr "Category Id to filter on" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:49 +msgid "Si no se indican los IDs, se crearán nuevos elementos." +msgstr "If the items IDs are not set, they will be created." -#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 -msgid "Id de cliente a filtrar" -msgstr "Client Id to filter on" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:74 +msgid "Introducir un ID de usuario válido para cuentas" +msgstr "Enter a valid user ID for the accounts" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 -msgid "Id de categoría" -msgstr "Category Id" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 +msgid "Introducir un ID de categoría válido para cuentas" +msgstr "Enter a valid category ID for the accounts" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 -msgid "Id de cliente" -msgstr "Client Id" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:96 +msgid "Introducir un ID de cliente válido para cuentas" +msgstr "Enter a valid client ID for the accounts" -#: ../../../../lib/SP/Api/SyspassApi.php:511 -msgid "Nombre de categoría a buscar" -msgstr "Category name to search for" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 +msgid "Introducir un ID de grupo válido para usuarios" +msgstr "Enter a valid group ID for the users" -#: ../../../../lib/SP/Api/SyspassApi.php:531 -msgid "Nombre de cliente a buscar" -msgstr "Client name to search for" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 +msgid "Introducir un ID de perfil válido para usuarios" +msgstr "Enter a valid profile ID for the users" -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:212 -msgid "Método ya inicializado" -msgstr "Method already initialized" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:128 +msgid "" +"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " +"necesario reencriptar los datos almacenados" +msgstr "" +"This update uses a new encryption schema, so it will be needed to reencrypt " +"the whole encrypted data." -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:208 -msgid "Método no disponible" -msgstr "Method unavailable" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:150 +msgid "Introducir login de usuario válido" +msgstr "Enter a valid user login" -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 -msgid "Objetos encontrados: %d" -msgstr "Objects found: %d" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:162 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 +msgid "He realizado una copia de seguridad completa de sysPass" +msgstr "I've done a full sysPass backup" -#: ../../../../lib/SP/Controller/ChecksController.php:127 -msgid "Los parámetros de DokuWiki no están configurados" -msgstr "The DokuWiki parameters are not set" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 +msgid "Por favor espere mientras el proceso se ejecuta" +msgstr "Please, wait while the process is running" -#: ../../../../lib/SP/Controller/ChecksController.php:135 -#: ../../../../lib/SP/Util/Wiki/DokuWikiApiBase.php:214 -msgid "Error" -msgstr "Error" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:184 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 +#, fuzzy +msgid "Actualizar" +msgstr "Frissítés Számla" -#: ../../../../lib/SP/Controller/ChecksController.php:137 -msgid "Conexión correcta" -msgstr "Connection successful" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:186 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 +#, fuzzy +msgid "Iniciar Actualización" +msgstr "Start" -#: ../../../../lib/SP/Controller/ChecksController.php:141 -msgid "Error de conexión a DokuWiki" -msgstr "Error while connecting to DokuWiki" +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:95 +msgid "Notificación global" +msgstr "Global notification" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:89 -msgid "Faltan parámetros de syslog remoto" -msgstr "Missing remote syslog parameters" +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:103 +msgid "Sólo para administradores de la aplicación" +msgstr "Only for application administrators" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:102 -msgid "Syslog remoto deshabilitado" -msgstr "Remote syslog disabled" +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:107 +msgid "Solo Admins" +msgstr "Only Admins" -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:72 -msgid "Error al guardar la configuración" -msgstr "Error while saving the configuration" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:29 +msgid "Nombre del plugin" +msgstr "Plugin name" -#: ../../../modules/web/Controllers/ConfigWikiController.php:87 -msgid "Faltan parámetros de DokuWiki" -msgstr "Missing DokuWiki parameters" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:41 +msgid "Versión del plugin" +msgstr "Plugin version" -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:368 -msgid "DokuWiki habiltada" -msgstr "DokuWiki enabled" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:46 +msgid "Versión Compatible" +msgstr "Compatible Version" -#: ../../../modules/web/Controllers/ConfigWikiController.php:104 -msgid "DokuWiki deshabilitada" -msgstr "DokuWiki disabled" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:53 +msgid "Versión de sysPass compatible" +msgstr "sysPass compatible version" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 -msgid "Buscar Evento" -msgstr "Search for Events" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:39 +msgid "Autor" +msgstr "Author" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:65 +msgid "Autor del plugin" +msgstr "Plugin author" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 +msgid "La aplicación necesita actualizarse" +msgstr "Frissítsd az alkalmazást" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 +msgid "Para iniciar la actualización introduzca el código de seguridad" +msgstr "Please enter the security code to start the upgrade" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:13 +msgid "Solicitud de Cambio de Clave" +msgstr "Kérés jelszó módosítás" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 +msgid "Email del Usuario" +msgstr "Felhasználó Email" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:39 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:49 +msgid "Volver a iniciar sesión" +msgstr "Vissza a bejelentkezéshez" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:46 +msgid "Solicitar" +msgstr "Kérés" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:56 +msgid "Cambiar" +msgstr "Változtatás" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:107 +#, fuzzy +msgid "Ordenar resultados por visitas" +msgstr "Keresési találok száma oldalanként" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:109 +#, fuzzy +msgid "" +"Ordena los resultados de búsqueda por el número de visitas de las cuentas." +msgstr "Enables to show account's search results like a card format." + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:124 +msgid "Barra de navegación superior" +msgstr "Navigation bar on top" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:126 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "Shows a navigation bar on top of the search results." + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:141 +msgid "Mostrar Acciones Ocultas" +msgstr "Show Hidden Actions" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:143 +msgid "" +"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." +msgstr "Always show the hidden actions on the accounts search page." + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:175 +msgid "Notificaciones In-App" +msgstr "In-App Notifications" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:177 +msgid "Habilita la consulta de notificaciones activas In-App." +msgstr "Enables the active In-App notifications polling" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 -#: ../../../config/actions.xml:325 -msgid "Buscar Categoría" -msgstr "Search for Category" +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:16 +#: ../../../config/actions.xml:277 +msgid "Ver Wiki" +msgstr "View Wiki" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +#, php-format +msgid "Resultados de búsqueda de '%s'" +msgstr "Search results of '%s'" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:37 +msgid "Página" +msgstr "Page" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 -#: ../../../config/actions.xml:355 -msgid "Buscar Cliente" -msgstr "Search for Client" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 -msgid "Buscar Campo" -msgstr "Search for Field" +#: ../../../config/actions.xml:7 +#, fuzzy +msgid "Buscar Cuentas" +msgstr "Keresés" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 -#: ../../../config/actions.xml:475 -msgid "Buscar Archivo" -msgstr "Search for File" +#: ../../../config/actions.xml:25 +#, fuzzy +msgid "Peticiones" +msgstr "Email kérések engedélyezése" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 -#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 -msgid "Buscar Cuenta" -msgstr "Search for Account" +#: ../../../config/actions.xml:31 +msgid "Favoritos" +msgstr "Favorites" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 -#: ../../../config/actions.xml:601 -msgid "Buscar Usuario" -msgstr "Search for User" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 -msgid "Importar usuarios de LDAP" -msgstr "Import users from LDAP" +#: ../../../config/actions.xml:43 +#, fuzzy +msgid "Elementos y Personalización" +msgstr "Profil törlése" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 -#: ../../../config/actions.xml:631 -msgid "Buscar Grupo" -msgstr "Search for Group" +#: ../../../config/actions.xml:49 +#, fuzzy +msgid "Gestión Categorías" +msgstr "Kategória Menedzsment" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 -#: ../../../config/actions.xml:661 -msgid "Buscar Perfil" -msgstr "Search for Profile" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 -msgid "Buscar Token" -msgstr "Search for Token" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 -msgid "Fecha Creación" -msgstr "Creation Date" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 -msgid "Fecha Caducidad" -msgstr "Expiry Date " - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 -msgid "Notificar" -msgstr "Notify" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 -msgid "Enlaces" -msgstr "Links" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 -msgid "Buscar Enlace" -msgstr "Search for Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 -msgid "Ver Enlace" -msgstr "View Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 -msgid "Renovar Enlace" -msgstr "Renew Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 -msgid "Eliminar Enlace" -msgstr "Delete Link" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:123 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 -msgid "Etiquetas" -msgstr "Cimkék" +#: ../../../config/actions.xml:55 +#, fuzzy +msgid "Gestión Clientes" +msgstr "Ügyfél Menedzsment" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 -#: ../../../config/actions.xml:529 -msgid "Buscar Etiqueta" -msgstr "Cimke keresése" +#: ../../../config/actions.xml:61 +#, fuzzy +msgid "Gestión Autorizaciones API" +msgstr "Menedzsment" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 -#: ../../../config/actions.xml:505 -msgid "Nueva Etiqueta" -msgstr "Új cimke" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 -#: ../../../config/actions.xml:517 -msgid "Editar Etiqueta" -msgstr "Cimke javítás" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 -#: ../../../config/actions.xml:523 -msgid "Eliminar Etiqueta" -msgstr "Cimke törlés" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 -msgid "Plugin" -msgstr "Plugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 -msgid "Estado" -msgstr "Status" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:334 -#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 -msgid "Plugins" -msgstr "Plugins" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 -#: ../../../config/actions.xml:547 -msgid "Buscar Plugin" -msgstr "Search for Plugin" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:120 -#: ../../../config/actions.xml:541 -msgid "Ver Plugin" -msgstr "View Plugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 -msgid "Habilitar" -msgstr "Enable" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 -msgid "Deshabilitar" -msgstr "Disable" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 -msgid "Restablecer Datos" -msgstr "Reset Data" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 -msgid "Componente" -msgstr "Component" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 -msgid "Leída" -msgstr "Read" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:65 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:105 -#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 -#: ../../../config/actions.xml:679 -msgid "Notificaciones" -msgstr "Notifications" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 -#: ../../../config/actions.xml:841 -msgid "Buscar Notificación" -msgstr "Search for Notification" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:103 -#: ../../../config/actions.xml:811 -msgid "Ver Notificación" -msgstr "View Notification" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 -#: ../../../config/actions.xml:835 -msgid "Marcar Notificación" -msgstr "Checkout Notification" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 -#: ../../../config/actions.xml:829 -msgid "Eliminar Notificación" -msgstr "Delete Notification" - -#: ../../../modules/web/Controllers/PublicLinkController.php:275 -#: ../../../modules/web/Controllers/PublicLinkController.php:310 -msgid "Enlace creado" -msgstr "Link created" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:89 -#: ../../../modules/web/Controllers/PublicLinkController.php:175 -msgid "Enlace actualizado" -msgstr "Link updated" - -#: ../../../modules/web/Controllers/PublicLinkController.php:245 -#: ../../../modules/web/Controllers/PublicLinkController.php:249 -msgid "Enlace eliminado" -msgstr "Link deleted" - -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:94 -#: ../../../modules/web/Controllers/TagController.php:234 -msgid "Etiqueta creada" -msgstr "Tag added" - -#: ../../../modules/api/Controllers/TagController.php:118 -#: ../../../modules/api/Controllers/TagController.php:123 -#: ../../../modules/web/Controllers/TagController.php:265 -msgid "Etiqueta actualizada" -msgstr "Tag updated" - -#: ../../../modules/api/Controllers/TagController.php:147 -#: ../../../modules/api/Controllers/TagController.php:152 -#: ../../../modules/web/Controllers/TagController.php:208 -msgid "Etiqueta eliminada" -msgstr "Tag removed" - -#: ../../../modules/web/Controllers/PluginController.php:181 -#: ../../../modules/web/Controllers/PluginController.php:184 -msgid "Plugin habilitado" -msgstr "Plugin enabled" - -#: ../../../modules/web/Controllers/PluginController.php:206 -#: ../../../modules/web/Controllers/PluginController.php:209 -msgid "Plugin deshabilitado" -msgstr "Plugin disabled" - -#: ../../../modules/web/Controllers/PluginController.php:231 -#: ../../../modules/web/Controllers/PluginController.php:234 -msgid "Plugin restablecido" -msgstr "Plugin reset" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:55 -msgid "Favorito añadido" -msgstr "Favorite added" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:73 -msgid "Favorito eliminado" -msgstr "Favorite deleted" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:269 -msgid "Importación de usuarios de LDAP realizada" -msgstr "LDAP users import finished" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1096 -msgid "Error al importar usuarios de LDAP" -msgstr "Error while importing the LDAP users" - -#: ../../../modules/web/Controllers/NotificationController.php:297 -#: ../../../modules/web/Controllers/NotificationController.php:301 -msgid "Notificación leída" -msgstr "Notification read" - -#: ../../../modules/web/Controllers/NotificationController.php:266 -#: ../../../modules/web/Controllers/NotificationController.php:270 -msgid "Notificación eliminada" -msgstr "Notification deleted" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1192 -msgid "Solicitud enviada por correo" -msgstr "Request sent by email" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 -msgid "Solicitud no enviada por correo" -msgstr "Request not sent by email" - -#: ../../../modules/web/Controllers/AccountController.php:943 -msgid "Solicitud realizada" -msgstr "Request done" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:427 -msgid "Ver Enlace Público" -msgstr "Show Public Link" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:233 -msgid "Detalles de Plugin" -msgstr "Plugin Details" - -#: ../../../../inc/SP/Controller/LoginController.class.php:375 -msgid "Error al obtener la clave maestra del usuario" -msgstr "Error while retrieving the user's Master Pass" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:327 -msgid "Es necesaria su clave anterior" -msgstr "Your previous password is needed" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:452 -#: ../../../../lib/SP/Services/Auth/LoginService.php:515 -msgid "Servidor LDAP" -msgstr "LDAP Server" - -#: ../../../../inc/SP/Core/Acl.class.php:198 -msgid "Buscar Categorías" -msgstr "Search for Categories" - -#: ../../../../inc/SP/Core/Acl.class.php:199 -msgid "Añadir Categoría" -msgstr "Add Category" - -#: ../../../../inc/SP/Core/Acl.class.php:203 -msgid "Buscar Clientes" -msgstr "Search for Client" - -#: ../../../../inc/SP/Core/Acl.class.php:204 -msgid "Añadir Cliente" -msgstr "Add Client" +#: ../../../config/actions.xml:67 +#, fuzzy +msgid "Gestión Campos Personalizados" +msgstr "Menedzsment" #. (itstool) path: action/text #: ../../../config/actions.xml:79 @@ -5256,2581 +4789,40 @@ msgstr "Accounts Management" msgid "Gestión de Etiquetas" msgstr "Tags Management" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 -msgid "No es posible crear el directorio de backups (\"%s\")" -msgstr "Unable to create the backups directory (\"%s\")" - -#: ../../../../lib/SP/Core/Events/EventDispatcherBase.php:85 -msgid "Observador no inicializado" -msgstr "Observer not initialized" - -#: ../../../../lib/SP/Core/Events/Event.php:56 -msgid "Es necesario un objeto" -msgstr "An object is needed" - -#: ../../../../lib/SP/Services/Install/Installer.php:141 -msgid "Indicar la clave de la BBDD" -msgstr "Please, enter the database password" - -#: ../../../../lib/SP/Services/Install/Installer.php:143 -msgid "Clave del usuario administrador de la Base de Datos" -msgstr "Database administrator's password" - -#: ../../../../lib/SP/Services/Install/MySQL.php:181 -msgid "Error al crear el usuario de conexión a MySQL '%s'" -msgstr "Error while creating the MySQL connection user '%s'" - -#: ../../../../lib/SP/Services/Install/MySQL.php:251 -msgid "La BBDD no existe" -msgstr "The database does not exist" - -#: ../../../../lib/SP/Services/Install/MySQL.php:253 -msgid "Es necesario crearla y asignar los permisos necesarios" -msgstr "You need to create it and assign the needed permissions" - -#: ../../../../lib/SP/Services/Install/MySQL.php:237 -msgid "Error al establecer permisos de la BBDD ('%s')" -msgstr "Error while setting the database permissions ('%s')" - -#: ../../../../lib/SP/Plugin/PluginManager.php:113 -#: ../../../../lib/SP/Plugin/PluginManager.php:256 -msgid "No es posible cargar el plugin \"%s\"" -msgstr "Unable to load the \"%s\" plugin" - -#: ../../../../lib/SP/Mvc/View/Template.php:341 -msgid "La plantilla no contiene archivos" -msgstr "Template does not contain files" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:121 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:125 -msgid "Error al actualizar la configuración" -msgstr "Error while updating the configuration" - -#: ../../../modules/web/Forms/AuthTokenForm.php:91 -msgid "Usuario no indicado" -msgstr "User not set" - -#: ../../../modules/web/Forms/AuthTokenForm.php:95 -msgid "Acción no indicada" -msgstr "Action not set" - -#: ../../../modules/web/Forms/TagForm.php:82 -msgid "Es necesario un nombre de etiqueta" -msgstr "A tag name is needed" - -#: ../../../../lib/SP/Http/XMLRPCResponseParse.php:69 -msgid "Respuesta XML-RPC inválida" -msgstr "Invalid XML-RPC response" - -#: ../../../../lib/SP/Services/Import/ImportService.php:89 -msgid "Tipo mime no soportado (\"%s\")" -msgstr "Mime type not supported (\"%s\")" - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:106 -msgid "Id de categoría no definido. No es posible importar cuenta." -msgstr "Category Id not set. Unable to import the account." - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:110 -msgid "Id de cliente no definido. No es posible importar cuenta." -msgstr "Client Id not set. Unable to import the account." - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:69 -msgid "Clave de encriptación no indicada" -msgstr "Encryption password not set" - -#: ../../../../lib/SP/Services/Import/CsvImport.php:50 -msgid "Formato detectado: %s" -msgstr "Detected format: %s" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 -msgid "El nodo \"%s\" no existe" -msgstr "The \"%s\" node doesn't exist" - -#: ../../../../lib/SP/Util/ImageUtil.php:48 -#: ../../../../lib/SP/Util/ImageUtil.php:99 -#: ../../../../lib/SP/Util/Util.php:180 ../../../../lib/SP/Util/Util.php:182 -msgid "Extensión '%s' no cargada" -msgstr "Extension '%s' not loaded" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:58 -msgid "Categoría duplicada" -msgstr "Duplicated category" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:77 -#: ../../../../lib/SP/Services/Category/CategoryService.php:98 -#: ../../../../lib/SP/Services/Category/CategoryService.php:115 -msgid "Categoría no encontrada" -msgstr "Category not found" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:75 -msgid "Error al crear el campo personalizado" -msgstr "Error while creating the custom field" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:259 -msgid "Error al eliminar el campo personalizado" -msgstr "Error while removing the custom field" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:118 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:165 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:193 -msgid "Error al actualizar el campo personalizado" -msgstr "Error while updating the custom field" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:162 -msgid "Campo personalizado no encontrado" -msgstr "Custom field not found" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:215 -msgid "No se encontraron campos personalizados" -msgstr "Custom fields not found" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:68 -msgid "No hay datos de campos personalizados" -msgstr "There aren't any data from custom fields" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldsUtil.php:263 -msgid "Error al migrar campos personalizados" -msgstr "Error while migrating the custom fields" - -#: ../../../../inc/SP/Mgmt/Files/File.class.php:103 -msgid "Archivo subido" -msgstr "File uploaded" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:55 -msgid "Grupo en uso" -msgstr "Group in use" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 -msgid "Actualizar Grupo" -msgstr "Update Group" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:140 -msgid "Error al asignar los usuarios al grupo" -msgstr "Error while setting users in the group" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:78 -msgid "Error al crear la notificación" -msgstr "Error while adding the notification" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:137 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:156 -msgid "Error al eliminar la notificación" -msgstr "Error while deleting the notification" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:118 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:429 -msgid "Error al modificar la notificación" -msgstr "Error while updating the notification" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:212 -msgid "Error al obtener la notificación" -msgstr "Error while retrieving notification" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:242 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:466 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:499 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:533 -msgid "Error al obtener las notificaciones" -msgstr "Error while retrieving the notifications" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:70 -msgid "Error al crear el plugin" -msgstr "Error while adding the plugin" - -#. (itstool) path: action/text -#: ../../../../lib/SP/Plugin/PluginManager.php:245 -#: ../../../config/actions.xml:535 -msgid "Nuevo Plugin" -msgstr "New Plugin" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:232 -msgid "Error al eliminar el plugin" -msgstr "Error while deleting the plugin" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:104 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:348 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:368 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:388 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:408 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:427 -msgid "Error al actualizar el plugin" -msgstr "Error while updating the plugin" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:42 -msgid "Habilitado" -msgstr "Enabled" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:239 -msgid "Error al crear perfil" -msgstr "Error while creating the profile" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:73 -msgid "Perfil en uso" -msgstr "Profile in use" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:79 -msgid "Error al eliminar perfil" -msgstr "Error while removing the profile" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:141 -msgid "Error al modificar perfil" -msgstr "Error while updating the profile" - -#: ../../../modules/web/Controllers/AccountController.php:223 -msgid "Enlace visualizado" -msgstr "Link viewed" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:341 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:389 -msgid "Error al actualizar enlace" -msgstr "Error while updating the link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:255 -msgid "Enlace ya creado" -msgstr "Link already created" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:282 -msgid "Error al crear enlace" -msgstr "Error while creating the link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:63 -msgid "Error al eliminar enlace" -msgstr "Error while removing the link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:424 -msgid "Error al renovar enlace" -msgstr "Error while renewing link" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:741 -#: ../../../../inc/themes/material-blue/views/account/actions.inc:69 -msgid "Actualizar Enlace" -msgstr "Update Link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:466 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:507 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:528 -msgid "Error al obtener enlace" -msgstr "Error while retrieving the link" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:190 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "ON" -msgstr "ON" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "OFF" -msgstr "OFF" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:60 -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:108 -msgid "Etiqueta duplicada" -msgstr "Duplicated tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:69 -msgid "Error al crear etiqueta" -msgstr "Error while creating the tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:262 -msgid "Error al eliminar etiqueta" -msgstr "Error while removing the tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:118 -msgid "Error al actualizar etiqueta" -msgstr "Error while updating the tag" - -#: ../../../../inc/SP/Mgmt/Tags/Tag.class.php:181 -msgid "Error al obtener etiqueta" -msgstr "Error while retrieving the tag" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:63 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:430 -msgid "Login/email de usuario duplicados" -msgstr "Duplicated user login/email" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:234 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:551 -msgid "Error al obtener los datos del usuario" -msgstr "Error while retrieving the user's data" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:781 -msgid "Sincronización LDAP" -msgstr "LDAP synchronization" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:264 -msgid "No se encontraron objetos para sincronizar" -msgstr "There aren't any objects to synchronize" - -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:128 -msgid "Sincronización finalizada" -msgstr "Synchronization finished" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:97 -msgid "Error al migrar cuenta de usuario" -msgstr "Error while migrating the user account" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:137 -msgid "Error al obtener grupo de usuarios" -msgstr "Error while retrieving the users group" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:112 -msgid "Error en comprobación de hash" -msgstr "Error while checking hash" - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:87 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:155 -msgid "Hash inválido o expirado" -msgstr "Wrong hash or expired" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:86 -msgid "Error al generar el hash de recuperación" -msgstr "Error while generating the recovering hash" - -#: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:57 -msgid "Actualizando preferencias" -msgstr "Updating preferences" - -#: ../../../../lib/SP/Storage/XmlHandler.php:79 -msgid "No es posible leer/escribir el archivo: %s" -msgstr "Unable to read/write the file: %s" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:167 -msgid "No hay elementos para guardar" -msgstr "There aren't any items to save" - -#: ../../../../lib/SP/Util/Connection.php:157 -msgid "Socket no inicializado" -msgstr "Socket not initialized" - -#: ../../../../lib/SP/Util/Connection.php:164 -msgid "Error al enviar datos" -msgstr "Error while sending the data" - -#: ../../../../lib/SP/Util/Util.php:243 -msgid "Respuesta" -msgstr "Response" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 -msgid "Fallo de autentificación" -msgstr "Authentication error" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 -msgid "Error al realizar la consulta" -msgstr "Error while doing the query" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 -msgid "URL de conexión no establecida" -msgstr "Connection URL not set" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:33 -msgid "Ver Detalles" -msgstr "View Details" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:44 -msgid "Copiar" -msgstr "Copy" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:50 -msgid "Restaurar" -msgstr "Restore" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:55 -msgid "Descargar" -msgstr "Download" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:64 -msgid "Crítico" -msgstr "Critical" - -#: ../../../config/strings.js.inc:73 -msgid "Recibir notificaciones?" -msgstr "Send notifies?" - -#: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 -msgid "Marcar Favorito" -msgstr "Mark as Favorite" - -#. (itstool) path: action/text -#: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 -#: ../../../config/actions.xml:253 -msgid "Eliminar Favorito" -msgstr "Delete Favorite" - -#: ../../../config/strings.js.inc:76 -msgid "Limpiar Selección" -msgstr "Clear Selection" - -#: ../../../config/strings.js.inc:77 -msgid "Mostrar Favoritos" -msgstr "Show Favorites" - -#: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 -msgid "Mostrar Todos" -msgstr "Show All" - -#: ../../../config/strings.js.inc:81 -msgid "Ahora" -msgstr "Now" - -#: ../../../config/strings.js.inc:82 -msgid "" -"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" -msgstr "" -"This process will import the detected LDAP users. Would you like to continue?" - -#: ../../../config/strings.js.inc:83 -msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" -msgstr "This action will reset all plugin data. Do you want to continue?" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 -msgid "Fecha Caducidad Clave" -msgstr "Password Expiry Date" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 -msgid "Seleccionar Fecha" -msgstr "Select date" - -#: ../../../../inc/themes/material-blue/views/account/account-permissions.inc:9 -msgid "Accesos" -msgstr "Accesses" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 -msgid "Seleccionar Usuarios" -msgstr "Select Users" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 -msgid "Seleccionar Grupos" -msgstr "Select Groups" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 -msgid "Cuenta Privada" -msgstr "Private Account" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 -msgid "Privada" -msgstr "Private" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 -msgid "Seleccionar Etiquetas" -msgstr "Select Tags" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 -msgid "Cuenta Vinculada" -msgstr "Linked Account" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 -msgid "Seleccionar Cuenta" -msgstr "Select Account" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Public Link" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 -#: ../../../config/actions.xml:421 -msgid "Crear Enlace Público" -msgstr "Create Public Link" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 -msgid "Detalles" -msgstr "Details" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 -msgid "Fecha de Clave" -msgstr "Password Date" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Tamaño máximo de archivo: %d MB" -msgstr "Maximum file size: %d MB" - -#: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:3 -msgid "Cuentas Vinculadas" -msgstr "Linked Accounts" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 -msgid "Clave Caducada" -msgstr "Password Expired" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 -msgid "Ver en Wiki" -msgstr "View at Wiki" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 -msgid "Buscar cuentas con la clave caducada" -msgstr "Search for accounts with expired password" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 -msgid "Filtrar Favoritos" -msgstr "Favorites Filtering" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 -msgid "Más Filtros" -msgstr "More Filters" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 -msgid "Seleccionar Etiqueta" -msgstr "Select Tag" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 -msgid "Copia BBDD" -msgstr "DB Backup" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 -msgid "Copia sysPass" -msgstr "sysPass Backup" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 -msgid "Eventos" -msgstr "Events" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 -msgid "Habilitar Syslog" -msgstr "Enable Syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 -msgid "Habilitar Syslog Remoto" -msgstr "Enable Remote Syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 -msgid "Nombre o dirección IP" -msgstr "Hostname or IP address" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 -#: ../../../config/actions.xml:73 -msgid "Enlaces Públicos" -msgstr "Public Links" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 -msgid "Habilitar Enlaces Públicos" -msgstr "Enable Public Links" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 -msgid "" -"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " -"una cuenta." -msgstr "" -"Enables the ability to create public links to view an account's details" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 -msgid "" -"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." -msgstr "The linked accounts will be visible by anyone that have the link." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 -msgid "" -"Para crear enlaces, los usuarios tienen que tener activada la opción en su " -"perfl." -msgstr "" -"To create links, the users must have activated the option in their profiles." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 -msgid "Tiempo de caducidad" -msgstr "Expire time" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 -msgid "Número máximo de visitas" -msgstr "Maximum visits" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 -msgid "Usar imagen para clave" -msgstr "Use an image for password" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 -msgid "La clave de la cuenta es visualizada como una imagen." -msgstr "The account password is shown as image." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 -msgid "Copia de Configuración" -msgstr "Configuration Backup" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 -msgid "Plugins Cargados" -msgstr "Loaded Plugins" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 -msgid "Resultados" -msgstr "Results" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 -msgid "DokuWiki API" -msgstr "DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 -msgid "Habilitar API de DokuWiki" -msgstr "Enable DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 -msgid "" -"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." -msgstr "Enables DokuWiki XML-RPC API for Wiki links." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 -msgid "" -"Para que esta característica funcione, es necesario habilitar los enlaces " -"Wiki para el filtrado de cuentas." -msgstr "" -"In order to get this feature working, you should enable Wiki links for " -"accounts filtering" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 -msgid "URL API" -msgstr "API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 -msgid "URL de la API de DokuWiki." -msgstr "DokuWiki API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 -msgid "URL Base" -msgstr "Base URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 -msgid "URL base de DokuWiki." -msgstr "DokuWiki base URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 -msgid "Usuario para conectar a la API de DokuWiki." -msgstr "User for connecting to the DokuWiki API." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 -msgid "Namespace" -msgstr "Namespace" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 -msgid "Namespace utilizado para buscar las páginas." -msgstr "Namespace used to search pages." - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 -msgid "Nivel" -msgstr "Level" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 -msgid "Eliminar Seleccionados" -msgstr "Delete Selected" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 -msgid "Nombre del plugin" -msgstr "Plugin name" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 -msgid "Versión del plugin" -msgstr "Plugin version" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 -msgid "Versión Compatible" -msgstr "Compatible Version" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 -msgid "Versión de sysPass compatible" -msgstr "sysPass compatible version" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 -msgid "Autor" -msgstr "Author" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 -msgid "Autor del plugin" -msgstr "Plugin author" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 -msgid "Publicar enlace a cuenta" -msgstr "Share link to account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 -msgid "Publicar Enlace" -msgstr "Share Link" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 -msgid "Crear cuenta privada" -msgstr "Create private account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 -msgid "Asignar permisos" -msgstr "Assign permissions" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 -msgid "Gestión de enlaces" -msgstr "Links management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 -msgid "Gestión de cuentas" -msgstr "Accounts management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 -msgid "Gestión de etiquetas" -msgstr "Tags management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 -msgid "Hash" -msgstr "Hash" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 -msgid "Uso" -msgstr "Use" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:54 -#: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 -msgid "Nombre de la etiqueta" -msgstr "Tag name" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:40 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 -msgid "Hay %d notificaciones pendientes" -msgstr "There are %d unread notifications" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:165 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 -msgid "Demo" -msgstr "Demo" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 -msgid "Instalación %s" -msgstr "Installation %s" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 -msgid "Admin de sysPass" -msgstr "sysPass Admin" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 -msgid "Clave Anterior" -msgstr "Previous Password" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 -msgid "Actualización %s" -msgstr "Update %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 -msgid "" -"Este código se encuentra en el archivo de configuración de sysPass con la " -"etiqueta \"upgradeKey\"" -msgstr "" -"This code is set in the sysPass config file within the tag name \"upgradekey" -"\"" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 -#: ../../../config/actions.xml:277 -msgid "Ver Wiki" -msgstr "View Wiki" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 -msgid "Resultados de búsqueda de '%s'" -msgstr "Search results of '%s'" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 -msgid "Página" -msgstr "Page" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 -msgid "No instalado" -msgstr "Not installed" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 -msgid "Origen" -msgstr "Source" - -#: ../../../modules/web/Controllers/AccountController.php:226 -msgid "Agente" -msgstr "Agent" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 -msgid "" -"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." -"com/join/project/fmlsBuugyv" -msgstr "" -"To improve/add the translations, you can get involved at https://poeditor." -"com/join/project/fmlsBuugyv" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 -msgid "Indica si el idioma se encuentra disponible" -msgstr "Tells whether the language is available or not." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 -msgid "" -"Si no está instalado, es necesario instalar las locales en el sistema " -"operativo. Más información en Wiki." -msgstr "" -"If it is not installed, you would need install the right operating system " -"locales. More info at Wiki." - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:42 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:112 -msgid "No hay no hay notificaciones pendientes" -msgstr "There aren't any pending notifications" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 -msgid "He realizado una copia de seguridad completa de sysPass" -msgstr "I've done a full sysPass backup" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 -msgid "Por favor espere mientras el proceso se ejecuta" -msgstr "Please, wait while the process is running" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 -msgid "Crear Usuario" -msgstr "Add User" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 -msgid "Actualizar Usuario" -msgstr "Update User" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:284 -msgid "Actualizar Clave Usuario" -msgstr "Update User's Password" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 -msgid "Crear Grupo" -msgstr "Add Group" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 -msgid "Crear Perfil" -msgstr "Add Profile" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 -msgid "Actualizar Perfil" -msgstr "Update Profile" - -#: ../../../../lib/SP/Api/SyspassApi.php:368 -msgid "Crear Cliente" -msgstr "Add Client" - -#: ../../../../lib/SP/Api/SyspassApi.php:279 -msgid "Crear Categoría" -msgstr "Add Category" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 -msgid "Actualizar Categoría" -msgstr "Update Category" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:623 -msgid "Crear Autorización" -msgstr "Add Authorization" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -msgid "Crear Campo" -msgstr "Add Field" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 -msgid "Actualizar Campo" -msgstr "Update Field" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:731 -msgid "Crear Enlace" -msgstr "Create Link" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -msgid "Crear Etiqueta" -msgstr "Add Tag" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 -msgid "Actualizar Etiqueta" -msgstr "Update Tag" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:890 -msgid "Actualizar Plugin" -msgstr "Update Plugin" - -#: ../../../../lib/SP/Api/SyspassApi.php:188 -msgid "Crear Cuenta" -msgstr "Add Account" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1091 -msgid "Usuarios importados" -msgstr "Imported users" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 -#: ../../../modules/web/Controllers/AccountController.php:926 -msgid "Solicitud" -msgstr "Request" - -#: ../../../../lib/SP/Core/Acl/Acl.php:299 -msgid "Acceso denegado" -msgstr "Access denied" - -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:115 -msgid "Error al añadir las etiquetas de la cuenta" -msgstr "Error while adding the account's tags" - -#: ../../../../lib/SP/Util/ErrorUtil.php:148 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 -msgid "Se ha producido una excepción" -msgstr "An exception occured" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:179 -msgid "Nueva Notificación" -msgstr "New Notification" - -#: ../../../modules/web/Controllers/UserGroupController.php:219 -#: ../../../modules/web/Controllers/UserGroupController.php:222 -msgid "Grupos eliminados" -msgstr "Groups deleted" - -#: ../../../modules/web/Controllers/UserProfileController.php:203 -#: ../../../modules/web/Controllers/UserProfileController.php:206 -msgid "Perfiles eliminados" -msgstr "Profiles deleted" - -#: ../../../modules/web/Controllers/ClientController.php:201 -#: ../../../modules/web/Controllers/ClientController.php:204 -msgid "Clientes eliminados" -msgstr "Clients deleted" - -#: ../../../modules/web/Controllers/CategoryController.php:206 -#: ../../../modules/web/Controllers/CategoryController.php:209 -msgid "Categorías eliminadas" -msgstr "Categories deleted" - -#: ../../../modules/web/Controllers/AuthTokenController.php:212 -#: ../../../modules/web/Controllers/AuthTokenController.php:215 -msgid "Autorizaciones eliminadas" -msgstr "Authorizations deleted" - -#: ../../../modules/web/Controllers/CustomFieldController.php:197 -#: ../../../modules/web/Controllers/CustomFieldController.php:200 -msgid "Campos eliminados" -msgstr "Fields deleted" - -#: ../../../modules/web/Controllers/PublicLinkController.php:234 -#: ../../../modules/web/Controllers/PublicLinkController.php:237 -msgid "Enlaces eliminados" -msgstr "Links deleted" - -#: ../../../modules/web/Controllers/TagController.php:200 -msgid "Etiquetas eliminadas" -msgstr "Tags deleted" - -#: ../../../modules/web/Controllers/AccountFileController.php:320 -#: ../../../modules/web/Controllers/AccountFileController.php:323 -msgid "Archivos eliminados" -msgstr "Files deleted" - -#: ../../../modules/web/Controllers/AccountController.php:879 -#: ../../../modules/web/Controllers/AccountController.php:882 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:99 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:102 -#: ../../../modules/web/Controllers/AccountManagerController.php:131 -#: ../../../modules/web/Controllers/AccountManagerController.php:134 -msgid "Cuentas eliminadas" -msgstr "Accounts removed" - -#: ../../../modules/web/Controllers/NotificationController.php:327 -#: ../../../modules/web/Controllers/NotificationController.php:330 -msgid "Notificación creada" -msgstr "Notification created" - -#: ../../../modules/web/Controllers/NotificationController.php:251 -#: ../../../modules/web/Controllers/NotificationController.php:254 -msgid "Notificaciones eliminadas" -msgstr "Notifications deleted" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:270 -msgid "Usando clave temporal" -msgstr "Using temporary password" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:131 -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:181 -msgid "Clave temporal caducada" -msgstr "Temporary password expired" - -#: ../../../../inc/SP/Core/Init.class.php:506 -msgid "Sesión" -msgstr "Session" - -#: ../../../../lib/SP/Services/Install/MySQL.php:361 -msgid "Error al comprobar la base de datos" -msgstr "Error while checking the database" - -#: ../../../../lib/SP/Services/Install/MySQL.php:363 -msgid "Intente de nuevo la instalación" -msgstr "Please, try the installation again" - -#: ../../../modules/web/Forms/NotificationForm.php:92 -msgid "Es necesario un componente" -msgstr "A component is needed" - -#: ../../../modules/web/Forms/NotificationForm.php:96 -msgid "Es necesario un tipo" -msgstr "A type is needed" - -#: ../../../modules/web/Forms/NotificationForm.php:106 -msgid "Es necesario un destinatario" -msgstr "A target is needed" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:167 -msgid "Error procesando línea" -msgstr "Error while processing line" - -#: ../../../modules/web/Controllers/ConfigImportController.php:76 -msgid "Cuentas importadas" -msgstr "Accounts imported" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:164 -msgid "Archivo no encontrado" -msgstr "File not found" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:80 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:98 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:187 -#: ../../../../lib/SP/Services/UserGroup/UserToUserGroupService.php:57 -msgid "Grupo no encontrado" -msgstr "Group not found" - -#: ../../../../lib/SP/Services/Notification/NotificationService.php:102 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:121 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:180 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:210 -msgid "Notificación no encontrada" -msgstr "Notification not found" - -#: ../../../../lib/SP/Services/Plugin/PluginService.php:92 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:153 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:186 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:206 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:224 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:241 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:258 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:275 -msgid "Plugin no encontrado" -msgstr "Plugin not found" - -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:65 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:97 -msgid "Perfil no encontrado" -msgstr "Profile not found" - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:122 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:145 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:219 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:311 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:346 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:367 -msgid "Enlace no encontrado" -msgstr "Link not found" - -#: ../../../../lib/SP/Services/Tag/TagService.php:75 -#: ../../../../lib/SP/Services/Tag/TagService.php:94 -#: ../../../../lib/SP/Services/Tag/TagService.php:111 -msgid "Etiqueta no encontrada" -msgstr "Tag not found" - -#: ../../../../lib/SP/Services/User/UserService.php:192 -msgid "Usuario no encontrado" -msgstr "User not found" - -#: ../../../../lib/SP/Storage/Database/Database.php:131 -msgid "Consulta en blanco" -msgstr "Blank query" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 -msgid "Cuenta Privada Grupo" -msgstr "Private Account for Group" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 -msgid "Privada Grupo" -msgstr "Private for Group" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 -msgid "Sólo es necesaria para archivos XML de sysPass encriptados." -msgstr "It's only needed for sysPass XML files that have been encrypted." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 -msgid "" -"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " -"la actual." -msgstr "" -"It's only needed for sysPass XML files that have been encrypted with a " -"different master password from the current one." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 -msgid "Sólo es necesario para archivos CSV." -msgstr "It's only needed for CSV files." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 -msgid "" -"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" -"\"notas\"" -msgstr "" -"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" -"\"notes\"" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 -msgid "Crear cuenta privada para grupo" -msgstr "Create private account for group" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 -msgid "Notificación global" -msgstr "Global notification" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 -msgid "Global" -msgstr "Global" - -#: ../../../../lib/SP/Services/Service.php:115 -msgid "No es posible iniciar una transacción" -msgstr "Unable to start a transaction" - -#: ../../../../lib/SP/Services/Crypt/MasterPassService.php:101 -#: ../../../../lib/SP/Services/Import/ImportService.php:77 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "No es posible finalizar una transacción" -msgstr "Unable to finish a transaction" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 -msgid "Clave Maestra %s" -msgstr "Master Password %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 -msgid "" -"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " -"el siguiente inicio." -msgstr "" -"A new sysPass master password has been generated, so the next time you log " -"into the application it will be requested." - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 -msgid "La nueva clave es: %s" -msgstr "The new Master Password is: %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 -msgid "No olvide acceder lo antes posible para guardar los cambios." -msgstr "" -"Please, don't forget to log in as soon as possible to save the changes." - -#: ../../../config/strings.js.inc:84 -msgid "Este proceso puede durar algo de tiempo. Desea continuar?" -msgstr "This process could long some time. Do you wish to continue?" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 -msgid "Búsqueda" -msgstr "Searching" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 -msgid "" -"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." -msgstr "Sends an email to all users or only to those whose group is selected." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 -msgid "Enviar correo" -msgstr "Send email" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 -msgid "XML" -msgstr "XML" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 -msgid "CSV" -msgstr "CSV" - -#: ../../../../lib/SP/Services/Account/AccountService.php:163 -#: ../../../../lib/SP/Services/Account/AccountService.php:599 -msgid "Cuenta no encontrada" -msgstr "Account not found" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:161 -msgid "Hash de clave maestra actualizado" -msgstr "Master password hash updated" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 -msgid "Error al actualizar el hash de la clave maestra" -msgstr "Error while updating the master password hash" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:210 -#: ../../../config/actions.xml:823 -msgid "Editar Notificación" -msgstr "Edit Notification" - -#: ../../../modules/web/Controllers/UserController.php:266 -#: ../../../modules/web/Controllers/UserController.php:269 -msgid "Usuarios eliminados" -msgstr "Users deleted" - -#: ../../../modules/web/Controllers/NotificationController.php:360 -#: ../../../modules/web/Controllers/NotificationController.php:363 -msgid "Notificación actualizada" -msgstr "Notification updated" - -#: ../../../../lib/SP/Storage/Database/Database.php:259 -msgid "Restricción de integridad" -msgstr "Integrity constraint" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 -msgid "Actualizar hash de clave maestra" -msgstr "Update master password hash" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 -msgid "Modificada" -msgstr "Modified" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 -msgid "Eliminada" -msgstr "Removed" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 -msgid "Cuentas (H)" -msgstr "Accounts (H)" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:194 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:224 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:124 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:148 -msgid "Clave de encriptación incorrecta" -msgstr "Wrong encryption password" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:7 -msgid "Área de Texto" -msgstr "Text Area" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 -msgid "Devolver las cuentas en las que 'login' es propietario" -msgstr "Get the accounts in which the user login \"login\" is the owner" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 -msgid "Devolver las cuentas con grupo principal 'group_name'" -msgstr "Get the accounts which have the main group name \"group_name\"" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 -msgid "Devolver las cuentas privadas del usuario actual" -msgstr "Get the private accounts for the current user" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 -msgid "OP Cache" -msgstr "OP Cache" - -#: ../../../modules/web/Controllers/UpgradeController.php:71 -msgid "Código de seguridad incorrecto" -msgstr "Wrong security code" - -#: ../../../modules/web/Controllers/UpgradeController.php:67 -msgid "Es necesario confirmar la actualización" -msgstr "The updating need to be confirmed" - -#: ../../../modules/web/Controllers/UpgradeController.php:92 -msgid "En 5 segundos será redirigido al login" -msgstr "You will be redirected to log in within 5 seconds" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:70 -msgid "Error al aplicar la actualización de la aplicación" -msgstr "Error while applying the application update" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 -msgid "Tamaño máximo de archivo en kilobytes" -msgstr "Maximum file size in kilobytes" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 -msgid "Actualización de Aplicación" -msgstr "Application Update" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 -msgid "" -"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " -"o indique los IDs por defecto para los elementos huérfanos." -msgstr "" -"Some orphaned items have been found. Please, modify those items or enter the " -"default IDs for them." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 -msgid "Introducir un ID de usuario válido para cuentas" -msgstr "Enter a valid user ID for the accounts" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 -msgid "Introducir un ID de categoría válido para cuentas" -msgstr "Enter a valid category ID for the accounts" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 -msgid "Introducir un ID de cliente válido para cuentas" -msgstr "Enter a valid client ID for the accounts" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 -msgid "Introducir un ID de grupo válido para usuarios" -msgstr "Enter a valid group ID for the users" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 -msgid "Introducir un ID de perfil válido para usuarios" -msgstr "Enter a valid profile ID for the users" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 -msgid "" -"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " -"necesario reencriptar los datos almacenados" -msgstr "" -"This update uses a new encryption schema, so it will be needed to reencrypt " -"the whole encrypted data." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 -msgid "" -"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." -msgstr "It will be updated %s accounts. This process could take some time." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 -msgid "Para más información consulte: %s" -msgstr "You could get more info on: %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 -msgid "Introducir login de usuario válido" -msgstr "Enter a valid user login" - -#: ../../../../lib/SP/Services/Api/ApiService.php:96 -#: ../../../../lib/SP/Services/Auth/LoginService.php:137 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:103 -#: ../../../modules/web/Controllers/UserPassResetController.php:124 -msgid "Intentos excedidos" -msgstr "Attempts exceeded" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 -msgid "Clave del token" -msgstr "Token's password" - -#: ../../../../lib/SP/Services/Track/TrackService.php:162 -msgid "Intentos excedidos (%d/%d)" -msgstr "Attempts exceeded (%d/%d)" - -#: ../../../../lib/SP/Http/Address.php:49 -#: ../../../../lib/SP/Http/Address.php:51 -#: ../../../../lib/SP/Http/Address.php:68 -#: ../../../../lib/SP/Http/Address.php:70 -#: ../../../../lib/SP/Http/Address.php:90 -#: ../../../../lib/SP/Http/Address.php:109 -msgid "IP inválida" -msgstr "Invalid IP" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:139 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:277 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:291 -msgid "Token no encontrado" -msgstr "Token not found" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:68 -msgid "Error al crear track" -msgstr "Error while creating track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:85 -msgid "Error al eliminar track" -msgstr "Error while removing the track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:102 -msgid "Error al actualizar track" -msgstr "Error while updating the track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:146 -msgid "Error al obtener track" -msgstr "Error while retrieving the track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:169 -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:202 -msgid "Error al obtener tracks" -msgstr "Error while retrieving the tracks" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 -msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." -msgstr "The exported items are accounts, clients, categories and tags." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 -msgid "Si no se indican los IDs, se crearán nuevos elementos." -msgstr "If the items IDs are not set, they will be created." - -#: ../../../../lib/SP/Services/Task/TaskService.php:184 -msgid "Esperando actualización de progreso ..." -msgstr "Waiting for progress updating ..." - -#: ../../../../inc/SP/Core/Upgrade/Account.class.php:47 -msgid "Actualizando IDs de cuentas" -msgstr "Updating account IDs" - -#: ../../../../inc/SP/Core/Upgrade/Category.class.php:48 -msgid "Actualizando IDs de categorías" -msgstr "Updating category IDs" - -#: ../../../../inc/SP/Core/Upgrade/Customer.class.php:48 -msgid "Actualizando IDs de clientes" -msgstr "Updating Client IDs" - -#: ../../../../inc/SP/Core/Upgrade/Group.class.php:51 -msgid "Actualizando IDs de grupos" -msgstr "Updating group IDs" - -#: ../../../../inc/SP/Core/Upgrade/Profile.class.php:54 -msgid "Actualizando IDs de perfil" -msgstr "Updating profile IDs" - -#: ../../../../inc/SP/Core/Upgrade/User.class.php:52 -msgid "Actualizando IDs de usuarios" -msgstr "Updating user IDs" - -#: ../../../config/strings.js.inc:87 -msgid "" -"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." -msgstr "Performing task. Please, do not close the browser window/tab." - -#: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 -msgid "Incluir Letras" -msgstr "Include Letters" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 -msgid "Sesión Encriptada" -msgstr "Encrypted Session" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 -msgid "Indica si los datos de la sesión están encriptados en el servidor" -msgstr "Tells whether the session data are encrypted in the server or not" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "Sí" -msgstr "Yes" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "No" -msgstr "No" - -#: ../../../config/strings.js.inc:89 -msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." -msgstr "Cookies disabled. The application won't work properly." - -#: ../../../config/strings.js.inc:90 -msgid "Portapapeles no soportado por el navegador." -msgstr "Clipboard not supported by your browser." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 -msgid "Atributo Login" -msgstr "Login Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 -msgid "" -"Define el atributo a utilizar para el login del usuario en la importación." -msgstr "Defines the attribute for the user's login when importing." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 -msgid "" -"Habilita el acceso a los usuarios que estén incluidos en los grupos " -"secundarios." -msgstr "Grants access to the users that are included in the secondary groups." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 -msgid "" -"Por defecto el usuario de un grupo secundario es permitido si el grupo " -"secundario está establecido como el primario del usuario." -msgstr "" -"By default, the user in a secondary group is granted if the secondary group " -"is set as the user's main group." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 -msgid "Acceso Grupos Secundarios" -msgstr "Secondary Groups Access" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 -msgid "Encriptar los datos de la sesión de PHP." -msgstr "Encrypt PHP session data" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 -msgid "" -"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " -"datos almacenados no serán legibles." -msgstr "" -"This feature increases the PHP sessions security, because the stored data " -"won't be readable." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 -msgid "Encriptar Sesión" -msgstr "Encrypt Session" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 -msgid "Atributo Nombre" -msgstr "Name Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 -msgid "" -"Define el atributo a utilizar para el nombre del usuario en la importación." -msgstr "Defines the attribute for the user's name when importing." - -#: ../../../config/strings.js.inc:92 -msgid "Hay una versión más reciente del plugin {0} ({1})" -msgstr "There is a more recent version of {0} plugin ({1})" - -#: ../../../../lib/SP/Bootstrap.php:267 -msgid "Versión de PHP requerida >= %s <= %s" -msgstr "Required PHP version >= %s <= %s" - -#: ../../../../lib/SP/Config/ConfigUtil.php:111 -msgid "Actual: %s - Necesario: 750" -msgstr "Current: %s - Needed: 750" - -#: ../../../../lib/SP/Core/Acl/Actions.php:176 -msgid "Acción no encontrada" -msgstr "Action not found" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:103 -#: ../../../../lib/SP/Core/Context/ContextBase.php:126 -msgid "Contexto ya inicializado" -msgstr "Context already initialized" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:109 -msgid "Contexto inválido" -msgstr "Invalid context" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:154 -msgid "Contexto no inicializado" -msgstr "Context not initialized" - -#: ../../../../lib/SP/Core/UI/Theme.php:193 -msgid "Clase no válida para iconos" -msgstr "Invalid icons class" - -#: ../../../../lib/SP/Mvc/Model/QueryCondition.php:71 -msgid "Tipo de filtro inválido" -msgstr "Invalid filter type" - -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:95 -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:157 -msgid "Tipo de objeto incorrecto" -msgstr "Wrong object type" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 -msgid "Realizado por: %s (%s)" -msgstr "Performed by: %s (%s)" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 -msgid "Dirección IP: %s" -msgstr "IP Address: %s" - -#: ../../../../lib/SP/Providers/Mail/MailProvider.php:91 -msgid "No es posible inicializar" -msgstr "Unable to initialize" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 -#: ../../../modules/web/Controllers/NotificationController.php:267 -#: ../../../modules/web/Controllers/NotificationController.php:298 -msgid "Notificación" -msgstr "Notification" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:302 -msgid "Error al eliminar los archivos" -msgstr "Error while deleting the files" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:292 -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:315 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:501 -#: ../../../../lib/SP/Services/Account/AccountService.php:616 -msgid "Error al eliminar las cuentas" -msgstr "Error while deleting the accounts" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:253 -msgid "Error al eliminar la categorías" -msgstr "Error while deleting the categories" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:264 -#: ../../../../lib/SP/Services/Client/ClientService.php:127 -msgid "Error al eliminar los clientes" -msgstr "Error while deleting the clients" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:239 -msgid "Error al eliminar los campos personalizados" -msgstr "Error while removing the custom fields" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:61 -msgid "Error al crear el tipo de campo" -msgstr "Error while creating the field type" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:97 -msgid "Error al actualizar el tipo de campo" -msgstr "Error while updating the field type" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:179 -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:198 -msgid "Error al eliminar el tipo de campo" -msgstr "Error while deleting the field type" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:179 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:302 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:140 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:159 -msgid "Error al eliminar las notificaciones" -msgstr "Error while deleting the notifications" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:447 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:493 -msgid "El enlace no existe" -msgstr "The link does not exist" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:243 -#: ../../../../lib/SP/Services/Tag/TagService.php:126 -msgid "Error al eliminar etiquetas" -msgstr "Error while removing the tags" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:353 -#: ../../../../lib/SP/Services/User/UserService.php:209 -msgid "Error al eliminar los usuarios" -msgstr "Error while deleting the users" - -#: ../../../../lib/SP/Services/User/UserPassService.php:256 -#: ../../../../lib/SP/Services/User/UserService.php:123 -#: ../../../../lib/SP/Services/User/UserService.php:154 -#: ../../../../lib/SP/Services/User/UserService.php:173 -msgid "El usuario no existe" -msgstr "The user does not exist" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:114 -msgid "Error al eliminar los perfiles" -msgstr "Error while removing the profiles" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 -msgid "Cuentas actualizadas: %d / %d" -msgstr "Accounts updated: %d / %d" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 -msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" -msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:145 -msgid "Error al eliminar archivos" -msgstr "Error while deleting the files" - -#: ../../../../lib/SP/Services/Api/ApiRequest.php:88 -msgid "Fomato incorrecto" -msgstr "Invalid format" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:43 -#: ../../../modules/api/Controllers/Help/TagHelp.php:65 -#: ../../../modules/api/Controllers/Help/TagHelp.php:89 -msgid "Id de etiqueta" -msgstr "Tag Id" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:158 -msgid "Error al eliminar tokens" -msgstr "Error while removing the tokens" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:763 -msgid "Exportación" -msgstr "Export" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:167 -msgid "Copiando base de datos" -msgstr "Copying database" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:303 -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:338 -msgid "Copiando aplicación" -msgstr "Copying application" - -#: ../../../../lib/SP/Services/Config/ConfigService.php:68 -#: ../../../../lib/SP/Services/Config/ConfigService.php:153 -msgid "Parámetro no encontrado (%s)" -msgstr "Parameter not found (%s)" - -#: ../../../../lib/SP/Services/Service.php:109 -msgid "Rollback" -msgstr "Rollback" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:160 -msgid "Error al comprobar clave temporal" -msgstr "Error while checking the temporary password" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:109 -msgid "Campo no encontrado" -msgstr "Field not found" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:130 -msgid "Error al eliminar los campos" -msgstr "Error while deleting the fields" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:233 -msgid "Exportando categorías" -msgstr "Exporting categories" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:345 -msgid "Exportando clientes" -msgstr "Exporting clients" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:391 -msgid "Exportando etiquetas" -msgstr "Exporting tags" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:435 -msgid "Exportando cuentas" -msgstr "Exporting accounts" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:158 -#: ../../../../lib/SP/Services/Import/KeepassImport.php:103 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:387 -msgid "Cuenta importada" -msgstr "Account imported" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:58 -msgid "Importación XML KeePass" -msgstr "KeePass XML Import" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:91 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:211 -msgid "Categoría importada" -msgstr "Category imported" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:58 -msgid "Importación XML sysPass" -msgstr "sysPass XML Import" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:162 -msgid "Datos desencriptados" -msgstr "Data unencrypted" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:250 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:290 -msgid "Cliente importado" -msgstr "Client imported" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:326 -msgid "Etiqueta importada" -msgstr "Tag imported" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:99 -msgid "Formato no detectado" -msgstr "Format not detected" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:107 -msgid "Not implemented" -msgstr "Not implemented" - -#: ../../../../lib/SP/Services/Install/MySQL.php:135 -msgid "No es posible comprobar el usuario de sysPass (%s)" -msgstr "Unable to check the sysPass user (%s)" - -#: ../../../../lib/SP/Services/Install/MySQL.php:213 -#: ../../../../lib/SP/Services/Install/MySQL.php:329 -#: ../../../../lib/SP/Services/Install/MySQL.php:341 -msgid "Error al crear la BBDD ('%s')" -msgstr "Error while creating the DB ('%s')" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 -msgid "Importado desde LDAP" -msgstr "Imported from LDAP" - -#: ../../../../lib/SP/Services/Mail/MailService.php:66 -msgid "Prueba de correo" -msgstr "Mail test" - -#: ../../../../lib/SP/Services/Mail/MailService.php:67 -msgid "" -"Esto es una prueba de correo para verificar el correcto funcionamiento de la " -"configuración." -msgstr "" -"This is a test email in order to verify that the configuration is working " -"right." - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:238 -msgid "Error al eliminar los enlaces" -msgstr "Error while removing the links" - -#: ../../../../lib/SP/Services/Task/TaskService.php:81 -msgid "No es posible crear archivo de bloqueo" -msgstr "Unable to create the lock file" - -#: ../../../../lib/SP/Services/Track/TrackService.php:163 -msgid "Segundos" -msgstr "Seconds" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:63 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:86 -msgid "Actualizar Aplicación" -msgstr "Update Application" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:57 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:59 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:102 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:139 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:171 -msgid "Actualización de campos personalizados" -msgstr "Custom fields update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:157 -#: ../../../modules/web/Controllers/CustomFieldController.php:235 -#: ../../../modules/web/Controllers/CustomFieldController.php:272 -msgid "Campo" -msgstr "Field" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:56 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "Actualización de enlaces públicos" -msgstr "Public links update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:90 -#: ../../../modules/web/Controllers/PublicLinkController.php:246 -msgid "Enlace" -msgstr "Link" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:115 -msgid "Error al eliminar los grupos" -msgstr "Error while deleting the groups" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 -msgid "No es posible leer el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:47 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:58 -msgid "Error al leer datos del archivo (%s)" -msgstr "Error while reading file data (%s)" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 -#: ../../../../lib/SP/Storage/File/FileCache.php:74 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 -msgid "No es posible crear el directorio (%s)" -msgstr "Unable to create the directory (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 -msgid "No es posible escribir en el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 -msgid "No es posible abrir el archivo (%s)" -msgstr "Unable to open the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:92 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:128 -msgid "Error al eliminar el archivo (%s)" -msgstr "Error while deleting the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:54 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:104 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:124 -msgid "No es posible leer/escribir el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 -msgid "Error al descomprimir datos del archivo (%s)" -msgstr "Error while decompressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 -msgid "Error al obtener los datos" -msgstr "Error while retrieving the data" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 -msgid "Error al comprimir datos del archivo (%s)" -msgstr "Error while compressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:112 -msgid "Error al escribir datos en el archivo (%s)" -msgstr "Error while writing data to file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 -msgid "Datos no cargados" -msgstr "Data not loaded" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 -msgid "No es posible cerrar el archivo (%s)" -msgstr "Unable to close the file (%s)" - -#: ../../../modules/api/Controllers/AccountController.php:70 -msgid "Cuenta visualizada" -msgstr "Account displayed" - -#: ../../../modules/api/Controllers/AccountController.php:102 -#: ../../../modules/web/Controllers/AccountController.php:554 -#: ../../../modules/web/Controllers/AccountController.php:610 -msgid "Clave visualizada" -msgstr "Password viewed" - -#: ../../../modules/api/Controllers/ConfigController.php:82 -#: ../../../modules/web/Controllers/ConfigBackupController.php:92 -msgid "Exportación de sysPass en XML" -msgstr "sysPass XML export" - -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:117 -#: ../../../modules/api/Controllers/TagController.php:146 -msgid "Etiqueta" -msgstr "Tag" - -#: ../../../modules/api/Init.php:135 -msgid "Es necesario actualizar" -msgstr "Updating needed" - -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "HTTPS" -msgstr "HTTPS" - -#: ../../../modules/web/Controllers/AccountController.php:649 -#: ../../../modules/web/Controllers/AccountController.php:683 -msgid "Clave copiada" -msgstr "Password copied" - -#: ../../../modules/web/Controllers/AccountFileController.php:83 -#: ../../../modules/web/Controllers/AccountFileController.php:96 -msgid "Archivo visualizado" -msgstr "File viewed" - -#: ../../../modules/web/Controllers/AccountFileController.php:136 -msgid "Archivo descargado" -msgstr "File downloaded" - -#: ../../../modules/web/Controllers/AccountFileController.php:186 -msgid "Extensión: %s" -msgstr "Extension: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:193 -msgid "Archivo: %s" -msgstr "File: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:201 -msgid "Máximo tamaño: %s" -msgstr "Maximum size: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:211 -msgid "Máximo tamaño: %d KB" -msgstr "Maximum size: %d KB" - -#: ../../../modules/web/Controllers/AccountFileController.php:334 -msgid "Archivo Eliminado" -msgstr "File Deleted" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 -#: ../../../modules/web/Controllers/AuthTokenController.php:226 -#: ../../../modules/web/Controllers/AuthTokenController.php:292 -#: ../../../modules/web/Controllers/AuthTokenController.php:301 -#: ../../../modules/web/Controllers/AuthTokenController.php:339 -msgid "Autorización" -msgstr "Authorization" - -#: ../../../modules/web/Controllers/AuthTokenController.php:338 -msgid "Autorización visualizada" -msgstr "Authorization viewed" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:78 -msgid "Archivos habilitados" -msgstr "Files enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:83 -msgid "Archivos deshabilitados" -msgstr "Files disabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:96 -msgid "Enlaces públicos habilitados" -msgstr "Public links enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:101 -msgid "Enlaces públicos deshabilitados" -msgstr "Public links disabled" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 -msgid "Esta clave estará activa hasta: %s" -msgstr "This password will be valid until: %s" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -msgid "Email enviado" -msgstr "Email sent" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -msgid "Error al enviar email" -msgstr "Error while sending the email" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:97 -msgid "Syslog remoto habilitado" -msgstr "Remote syslog enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:153 -msgid "Auth Basic habilitada" -msgstr "Auth Basic enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:159 -msgid "Auth Basic deshabiltada" -msgstr "Auth Basic disabled" - -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -msgid "No se importaron cuentas" -msgstr "No accounts were imported" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:115 -#: ../../../modules/web/Controllers/ConfigLdapController.php:238 -msgid "Parámetros de LDAP incorrectos" -msgstr "Wrong LDAP parameters" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:245 -msgid "Importación LDAP" -msgstr "LDAP Import" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 -msgid "Usuarios importados: %d / %d" -msgstr "Imported users: %d / %d" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 -msgid "Errores: %d" -msgstr "Errors: %d" - -#: ../../../modules/web/Controllers/ConfigMailController.php:145 -msgid "Compruebe su buzón de correo" -msgstr "Please, check your inbox" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:99 -msgid "DokuWiki habilitada" -msgstr "DokuWiki enabled" - -#: ../../../modules/web/Controllers/CustomFieldController.php:298 -msgid "Ver Campo" -msgstr "View Field" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 -#: ../../../config/actions.xml:439 -msgid "Actualizar Enlace Público" -msgstr "Update Public Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 -msgid "Nuevo Enlace" -msgstr "New Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 -msgid "No disponible" -msgstr "Unavailable" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 -msgid "Refrescar" -msgstr "Refresh" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 -msgid "Sólo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/Controllers/PublicLinkController.php:109 -msgid "Nuevo Enlace Público" -msgstr "New Public Link" - -#: ../../../modules/web/Controllers/PublicLinkController.php:196 -msgid "Editar Enlace Público" -msgstr "Edit Public Link" - -#: ../../../modules/web/Controllers/StatusController.php:94 -msgid "Versión no disponible" -msgstr "Version unavailable" - -#: ../../../modules/web/Controllers/StatusController.php:142 -msgid "Notificaciones no disponibles" -msgstr "Notifications not available" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 -#: ../../../config/actions.xml:511 -msgid "Ver Etiqueta" -msgstr "View Tag" - -#: ../../../modules/web/Controllers/UserPassResetController.php:90 -msgid "Datos incorrectos" -msgstr "Wrong data" - -#: ../../../modules/web/Controllers/UserPassResetController.php:94 -msgid "No es posible recuperar la clave" -msgstr "Unable to reset the password" - -#: ../../../modules/web/Forms/PublicLinkForm.php:85 -msgid "Es necesario una cuenta" -msgstr "An account is needed" - -#: ../../../config/strings.js.inc:91 -msgid "Realizando auto-login" -msgstr "Performing auto-login" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 -msgid "Abrir enlace a: %s" -msgstr "Open link to: %s" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 -msgid "Cuenta Privada (Grupo)" -msgstr "Private Account (Group)" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 -msgid "Notes" -msgstr "Notes" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 -msgid "Usar Auth Basic" -msgstr "Use Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:26 -msgid "Usar auto-login con Auth Basic" -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 -msgid "Dominio" -msgstr "Domain" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 -msgid "" -"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " -"el de Auth Basic." -msgstr "" -"The domain will be added to the sysPass user name for checking against the " -"Auth Basic one." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 -msgid "Nombre de dominio" -msgstr "Domain name" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 -msgid "" -"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default users group for newly SSO users" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 -msgid "" -"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default profile for the newly created SSO users." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 -msgid "Importación" -msgstr "Import" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 -msgid "Importar Grupos" -msgstr "Import Groups" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 -msgid "Atributo Nombre Grupo" -msgstr "Group Name Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 -msgid "" -"Define el atributo a utilizar para el nombre del grupo en la importación." -msgstr "Defines the attribute for the user group name when importing." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 -msgid "Filtro" -msgstr "Filter" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 -msgid "Filtro para importar usuarios o grupos de LDAP." -msgstr "Filter for importing LDAP users or groups." - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 -msgid "Destinatarios" -msgstr "Recipients" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 -msgid "Indica si el cliente es visible para todos los usuarios." -msgstr "Sets whether the client is visible by all users" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 -msgid "" -"Por defecto los clientes asignados a cuentas sólo son visibles para los " -"usuarios con acceso a las cuentas." -msgstr "" -"By default, the clients assigned to accounts only will be visible to users " -"who are granted to access to the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 -msgid "URL" -msgstr "URL" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 -msgid "Login SSO" -msgstr "SSO Login " - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 -msgid "Login de inicio de sesión con SSO" -msgstr "Session login with SSO" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 -msgid "Sólo para administradores de la aplicación" -msgstr "Only for application administrators" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 -msgid "Solo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 -msgid "Para iniciar la actualización introduzca el código de seguridad" -msgstr "Please enter the security code to start the upgrade" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:73 -msgid "No es posible cambiar el valor de la clave" -msgstr "Unable to change password value" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:345 -msgid "Filtro incorrecto" -msgstr "Wrong filter" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:159 -msgid "El campo personalizado no existe" -msgstr "Custom field not found" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:212 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:137 -msgid "Error al eliminar los plugins" -msgstr "Error while deleting the plugins" - -#: ../../../../lib/SP/Services/Account/AccountService.php:220 -msgid "Clave maestra no establecida" -msgstr "Master password not set" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:134 -msgid "Error al eliminar las categorías" -msgstr "Error while deleting categories" - -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:80 -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:87 -msgid "No es posible restaurar la configuración" -msgstr "Unable to restore configuration" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldTypeService.php:84 -msgid "Tipo de campo no encontrado" -msgstr "Field type not found" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:177 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:176 -msgid "Fallo en la verificación del hash de integridad" -msgstr "Error while checking integrity hash" - -#: ../../../../lib/SP/Services/Install/Installer.php:359 -msgid "Error al crear el usuario 'admin'" -msgstr "Error while creating 'admin' user" - -#: ../../../../lib/SP/Services/Install/MySQL.php:309 -msgid "Error al seleccionar la BBDD '%s' (%s)" -msgstr "Error while selecting '%s' database (%s)" - -#: ../../../../lib/SP/Services/Mail/MailService.php:186 -msgid "Servicio de correo no disponible" -msgstr "Mail service unavailable" - -#: ../../../../lib/SP/Services/Service.php:137 -#: ../../../../lib/SP/Services/Service.php:144 -msgid "Error ol obtener la clave maestra del contexto" -msgstr "Error while retrieving master pass from context" - -#: ../../../../lib/SP/Services/Service.php:160 -#: ../../../../lib/SP/Services/Service.php:164 -msgid "Error ol establecer la clave maestra en el contexto" -msgstr "Error while setting master password in context" - -#: ../../../../lib/SP/Services/Track/TrackService.php:87 -#: ../../../../lib/SP/Services/Track/TrackService.php:101 -#: ../../../../lib/SP/Services/Track/TrackService.php:128 -msgid "Track no encontrado" -msgstr "Track not found" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:55 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:85 -msgid "Actualización de autorizaciones API" -msgstr "API authorizations update" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 -msgid "No es posible leer desde el archivo (%s)" -msgstr "Unable to read from file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 -msgid "No es posible escribir el archivo (%s)" -msgstr "Unable to write in file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 -msgid "Archivo no encontrado (%s)" -msgstr "File not found (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 -msgid "No es posible eliminar el archivo (%s)" -msgstr "Unable to delete file (%s)" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:89 -#: ../../../../lib/SP/Storage/File/XmlHandler.php:309 -msgid "El nodo XML no existe" -msgstr "The XML node does not exist" - -#: ../../../../lib/SP/Util/ImageUtil.php:65 -msgid "Imagen no válida" -msgstr "Invalid image" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:117 -msgid "Verificación de datos exportados finalizada" -msgstr "Verification of exported data finished" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 -msgid "Encriptado" -msgstr "Encrypted" - -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:173 -msgid "Error al actualizar los datos del campo personalizado" -msgstr "Error while updating custom field's data" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 -msgid "Enlace Directo" -msgstr "Direct Link" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 -msgid "Parámetros especiales" -msgstr "Special parameters" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 -msgid "" -"Es posible utilizar uno o varios parámetros especiales separados por espacios" -msgstr "" -"You could use either one or several special parameters separated by blank " -"spaces" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 -msgid "Devolver la cuenta con ID" -msgstr "Returns the account for the given ID" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 -msgid "Operador para los parámetros especiales" -msgstr "Operator for special parameters" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 -msgid "Los datos serán encriptados al guardar" -msgstr "Data will be encrypted after saving" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 -msgid "Los datos serán desencriptados al guardar" -msgstr "Data will be unencrypted after saving" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 -msgid "Caducidad clave cuentas" -msgstr "Accounts password expiry" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 -msgid "Habilita la caducidad de la clave de cuentas." -msgstr "Enables the accounts password expiry date." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 -msgid "Tiempo caducidad clave" -msgstr "Password expiry time" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 -msgid "Número de días para la caducidad de la clave de cuenta." -msgstr "Number of days for the account expiry date." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 -msgid "Tiempo caducidad (días)" -msgstr "Expire time (days)" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 -msgid "" -"Confirmar el cambio de clave maestra después de haber leído las advertencias " -"anteriores." -msgstr "" -"Confirm the master password change after you have been read all the above " -"warnings." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 -msgid "Usar Auth Basic para autorizar los accesos a la aplicación." -msgstr "Use Auth Basic for authorizing the accesses to the application" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 -msgid "Usar Auth Basic SSO" -msgstr "Use Auth Basic SSO" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 -msgid "Usar auto-login con Auth Basic." -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 -msgid "Usar proxy para comprobación de actualizaciones y notificaciones." -msgstr "Use a proxy server for checking out for updates and notifications." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 -msgid "Usado en" -msgstr "Used in" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 -msgid "(*) Incluido en grupo" -msgstr "(*) Listed in group" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -msgid "La extensión '%s' no está disponible" -msgstr "The '%s' extension is unavailable" - -#: ../../../../lib/SP/Services/Service.php:133 -#: ../../../../lib/SP/Services/Service.php:140 -msgid "Error al obtener la clave maestra del contexto" -msgstr "Error while retrieving master password from context" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 -msgid "Esta extensión es necesaria para mostrar las claves como imágenes" -msgstr "This extension is needed to display passwords as images" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 -msgid "" -"Esta extensión es necesaria para generar los archivos de copia de seguridad " -"de la aplicación" -msgstr "This extension is needed to build the application's backup files" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 -msgid "" -"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" -msgstr "This extension is needed to check for sysPass updates and notices" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 -msgid "Extensiones no disponibles" -msgstr "Unavailable extensions" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 -msgid "Esta extensión es necesaria conectar con el servidor de LDAP" -msgstr "This extension is needed to connect to the LDAP server" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 -msgid "Esta extensión es necesaria conectar con DokuWiki" -msgstr "This extension is needed to connect with DokuWiki" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:31 -msgid "Favoritos" -msgstr "Favorites" - #. (itstool) path: action/text #: ../../../config/actions.xml:97 msgid "Gestión Plugins" msgstr "Plugins Management" +#. (itstool) path: action/text +#: ../../../config/actions.xml:103 +#, fuzzy +msgid "Usuarios y Accesos" +msgstr "Felhasználó elérése" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:109 +msgid "Seguridad y Auditoría" +msgstr "Security and Audit" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:115 +#, fuzzy +msgid "Gestión Usuarios" +msgstr "Felhasználó Menedzsment" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:121 +#, fuzzy +msgid "Gestión Grupos" +msgstr "Csoport Menedzsment" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:127 +#, fuzzy +msgid "Gestión Perfiles" +msgstr "Profil Menedzsment" + #. (itstool) path: action/text #: ../../../config/actions.xml:139 msgid "Buscar Eventos" @@ -7841,6 +4833,23 @@ msgstr "Search for Events" msgid "Limpiar Eventos" msgstr "Clear Events" +#. (itstool) path: action/text +#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 +#, fuzzy +msgid "Ver Cuenta" +msgstr "Fiók adatok" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:181 +#, fuzzy +msgid "Editar Clave de Cuenta" +msgstr "fiók jelszavának módosításe" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 +msgid "Subir Archivo" +msgstr "Fájl feltöltés" + #. (itstool) path: action/text #: ../../../config/actions.xml:229 msgid "Buscar Archivos" @@ -7876,11 +4885,6 @@ msgstr "Edit Wiki" msgid "Eliminar Wiki" msgstr "Delete Wiki" -#. (itstool) path: action/text -#: ../../../config/actions.xml:331 -msgid "Nuevo CLiente" -msgstr "New Client" - #. (itstool) path: action/text #: ../../../config/actions.xml:361 msgid "Nuevo Token API" @@ -7932,17 +4936,20 @@ msgid "Buscar Campo Personalizado" msgstr "Search for Custom Field" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 -#: ../../../config/actions.xml:433 -msgid "Eliminar Enlace Público" -msgstr "Delete Public Link" +#: ../../../config/actions.xml:427 +msgid "Ver Enlace Público" +msgstr "Show Public Link" #. (itstool) path: action/text #: ../../../config/actions.xml:445 msgid "Buscar Enlace Público" msgstr "Search for Public Link" +#. (itstool) path: action/text +#: ../../../config/actions.xml:535 +msgid "Nuevo Plugin" +msgstr "New Plugin" + #. (itstool) path: action/text #: ../../../config/actions.xml:553 msgid "Habilitar Plugin" @@ -8023,6 +5030,11 @@ msgstr "XML Import" msgid "Configuración Exportación" msgstr "Export Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:763 +msgid "Exportación" +msgstr "Export" + #. (itstool) path: action/text #: ../../../config/actions.xml:769 msgid "Configuración Email" @@ -8033,6 +5045,11 @@ msgstr "Email Configuration" msgid "Configuración LDAP" msgstr "LDAP Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:781 +msgid "Sincronización LDAP" +msgstr "LDAP synchronization" + #. (itstool) path: action/text #: ../../../config/actions.xml:787 msgid "Gestión de Cuenta (H)" @@ -8043,432 +5060,11 @@ msgstr "Account Management (H)" msgid "Crear Notificación" msgstr "Create Notification" -#: ../../../../lib/SP/Services/Import/SyspassImport.php:177 -msgid "" -"Si está importando un archivo exportado desde el mismo origen, los datos " -"pueden estar comprometidos." -msgstr "" -"If you are importing an exported file from the same origin, the data could " -"be compromised." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:154 -msgid "El archivo de actualización no contiene datos" -msgstr "The update file does not contain data" - -#: ../../../modules/api/Controllers/CategoryController.php:62 -msgid "Categoría visualizada" -msgstr "Category displayed" - -#: ../../../modules/api/Controllers/ClientController.php:63 -msgid "Cliente visualizado" -msgstr "Client displayed" - -#: ../../../modules/api/Controllers/ConfigController.php:58 -#: ../../../modules/api/Controllers/ConfigController.php:83 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 -msgid "Ruta" -msgstr "Path" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 -msgid "Array con Ids de etiquetas" -msgstr "Array with tags id" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 -msgid "Array con Ids de etiquetas a filtrar" -msgstr "Array with tags id for filtering" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 -msgid "Operador de filtrado" -msgstr "Filtering operator" - -#: ../../../modules/api/Controllers/TagController.php:61 -msgid "Etiqueta visualizada" -msgstr "Tag displayed" - -#: ../../../modules/web/Controllers/AccountFileController.php:387 -msgid "No hay archivos asociados a la cuenta" -msgstr "There are no linked files for the account" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:76 -msgid "Error al crear permiso" -msgstr "Error while creating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:115 -msgid "Error al actualizar permiso" -msgstr "Error while updating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:134 -msgid "Error al eliminar permiso" -msgstr "Error while removing the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:249 -msgid "Error al eliminar los permisos" -msgstr "Error while removing the permissions" - -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:84 -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:105 -msgid "Permiso no encontrada" -msgstr "Permission not found" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:71 -#: ../../../config/actions.xml:847 -msgid "Ver Permiso" -msgstr "View Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:156 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:157 -#: ../../../config/actions.xml:853 -msgid "Nuevo Permiso" -msgstr "New Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:211 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:174 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:175 -#: ../../../config/actions.xml:859 -msgid "Editar Permiso" -msgstr "Edit Permission" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:248 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:251 -msgid "Permisos eliminados" -msgstr "Permissions deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:259 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:263 -msgid "Permiso eliminado" -msgstr "Permission deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:289 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:293 -msgid "Permiso creado" -msgstr "Permission added" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:325 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:329 -msgid "Permiso actualizado" -msgstr "Permission updated" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:90 -msgid "Permisos por Defecto" -msgstr "Default Permissions" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 -msgid "Prioridad" -msgstr "Priority" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 -msgid "Forzado" -msgstr "Forced" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:141 -#: ../../../config/actions.xml:841 -msgid "Buscar Permiso" -msgstr "Search for Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:191 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:192 -#: ../../../config/actions.xml:865 -msgid "Eliminar Permiso" -msgstr "Delete Permission" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:208 -msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" -msgstr "An element of type user, group or profile need to be set" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:133 -msgid "No hay permisos definidos" -msgstr "There aren't any defined permissions" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:75 -msgid "" -"Prioridad de asignación en caso de coincidir con otros permisos asignados " -"por usuario, grupo o perfil." -msgstr "" -"Assignment priority if permissions match with others assigned by user, group " -"or profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 -msgid "Prioridad de asignación" -msgstr "Assignment Priority" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:107 -msgid "Indica si los permisos serán forzados al crear o modificar la cuenta." -msgstr "" -"Enforces the permissions to be set either on creating or updating an " -"account ." - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:109 -msgid "Los permisos serán añadidos a los existentes." -msgstr "Permissions will be merged with the existing ones." - -#. (itstool) path: action/text -#: ../../../config/actions.xml:835 -msgid "Gestión Permisos" -msgstr "Permissions Management" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 -msgid "Es necesaria una clave con al menos %d caracteres" -msgstr "Password needs to be %d characters long" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:77 -msgid "La clave no cumple los carácteres requeridos" -msgstr "Password does not contain the required characters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:82 -msgid "Es necesario que la clave contenga letras" -msgstr "Password needs to contain letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:86 -msgid "Es necesario que la clave contenga minúsculas" -msgstr "Password needs to contain lower case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:90 -msgid "Es necesario que la clave contenga mayúsculas" -msgstr "Password needs to contain upper case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:95 -msgid "Es necesario que la clave contenga números" -msgstr "Password needs to contain numbers" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:99 -msgid "Es necesario que la clave contenga símbolos" -msgstr "Password needs to contain symbols" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:301 -msgid "Error al desconectar del servidor de LDAP" -msgstr "Error while disconnecting from LDAP server" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:84 -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:105 -msgid "Valor no encontrada" -msgstr "Value not found" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:188 -msgid "Error al eliminar los valores" -msgstr "Error while deleting the values" - -#: ../../../../lib/SP/Services/Track/TrackService.php:208 -msgid "Dirección IP no establecida" -msgstr "IP address not set" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 -msgid "Valores Predeterminados" -msgstr "Preset Values" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 -#: ../../../config/actions.xml:853 -msgid "Buscar Valor" -msgstr "Search for Value" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 -msgid "Valor de Permiso" -msgstr "Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 -msgid "Nuevo Valor de Permiso" -msgstr "New Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 -msgid "Valor de Cuenta Privada" -msgstr "Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 -msgid "Nuevo Valor de Cuenta Privada" -msgstr "New Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 -msgid "Valor de Timeout de Sesión" -msgstr "Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 -msgid "Nuevo Valor de Timeout de Sesión" -msgstr "New Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 -msgid "Valor de Clave de Cuentas" -msgstr "Account Password Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 -msgid "Nuevo Valor de Clave de Cuentas" -msgstr "New Account Password Preset" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 -#: ../../../config/actions.xml:871 -msgid "Editar Valor" -msgstr "Edit Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 -#: ../../../config/actions.xml:877 -msgid "Eliminar Valor" -msgstr "Delete Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 -#: ../../../config/actions.xml:859 -msgid "Ver Valor" -msgstr "Display Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 -#: ../../../config/actions.xml:865 -msgid "Nuevo Valor" -msgstr "New Value" - -#: ../../../modules/web/Controllers/ItemPresetController.php:266 -#: ../../../modules/web/Controllers/ItemPresetController.php:269 -msgid "Valores eliminados" -msgstr "Values deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:277 -#: ../../../modules/web/Controllers/ItemPresetController.php:281 -msgid "Valor eliminado" -msgstr "Value deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:309 -#: ../../../modules/web/Controllers/ItemPresetController.php:314 -msgid "Valor creado" -msgstr "Value created" - -#: ../../../modules/web/Controllers/ItemPresetController.php:348 -#: ../../../modules/web/Controllers/ItemPresetController.php:353 -msgid "Valor actualizado" -msgstr "Value updated" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:116 -msgid "Tipo de valor no definido o incorrecto" -msgstr "Value type not set or incorrect" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:182 -msgid "Expresión regular inválida" -msgstr "Invalid regular expression" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 -msgid "Habilita la conexión mediante TLS." -msgstr "Enables the connection over TLS" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 -msgid "Puntuación" -msgstr "Score" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 -msgid "Expresión Regular" -msgstr "Regular Expression" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 -msgid "Incluir Minúsculas" -msgstr "Include Lowercase" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 -msgid "Las cuentas sólo serán visibles por el usuario." -msgstr "Accounts will be only visible by the user." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 -msgid "Los administradores no podrán acceder a las cuentas." -msgstr "Administrators won't be able to display the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 -msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." -msgstr "Accounts will be only visible by the user and his/her main group." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 -msgid "Dirección IP" -msgstr "IP Address" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 -msgid "Timeout" -msgstr "Timeout" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 -msgid "" -"Prioridad de asignación en caso de coincidir con otros valores asignados por " -"usuario, grupo o perfil." -msgstr "" -"Assignment priority if values match with others assigned by user, group or " -"profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 -msgid "" -"Indica si los valores serán forzados al crear o modificar los elementos." -msgstr "Enforces the values to be set either on creating or updating an item." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 -msgid "Los valores serán añadidos a los existentes." -msgstr "Values will be merged with the existing ones." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 -msgid "Valores por Defecto" -msgstr "Default Values" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 -msgid "Gestión de Valores por Defecto" -msgstr "Default Values Management" - #. (itstool) path: action/text #: ../../../config/actions.xml:847 msgid "Gestión Valores Predeterminados" msgstr "Preset Values Management" -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:118 -msgid "Error al vaciar tracks" -msgstr "Error while clearing tracks out" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 -msgid "Tracks" -msgstr "Tracks" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 -msgid "Fecha Desbloqueo" -msgstr "Date Unlocked" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 -#: ../../../config/actions.xml:889 -msgid "Buscar Track" -msgstr "Search for track" - -#: ../../../modules/web/Controllers/TrackController.php:110 -msgid "Track desbloqueado" -msgstr "Track unlocked" - -#: ../../../modules/web/Controllers/TrackController.php:135 -msgid "Tracks limpiados" -msgstr "Tracks cleared out" - -#: ../../../config/strings.js.inc:96 -msgid "Vaciar los tracks?" -msgstr "Clear tracks out?" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:109 -msgid "Seguridad y Auditoría" -msgstr "Security and Audit" - #. (itstool) path: action/text #: ../../../config/actions.xml:883 msgid "Gestión de Tracks" @@ -8484,47 +5080,2187 @@ msgstr "Unlock track" msgid "Vaciar tracks" msgstr "Clear tracks out" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 -msgid "Id de grupo" -msgstr "Group Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:4 +msgid "Color" +msgstr "Szín" -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 -msgid "Array con Ids de usuarios" -msgstr "Array with users Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:5 +msgid "Número" +msgstr "Szám" -#: ../../../modules/api/Controllers/UserGroupController.php:61 -msgid "Grupo visualizado" -msgstr "Group viewed" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:6 +msgid "Teléfono" +msgstr "Telefon" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 -#: ../../../config/actions.xml:493 -msgid "Actualización Masiva" -msgstr "Bulk Update" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:7 +msgid "Área de Texto" +msgstr "Text Area" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 -msgid "Propietario" -msgstr "Owner" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:8 +#, fuzzy +msgid "Texto" +msgstr "Keresendõ szöveg" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 -msgid "Buscar cuentas por nombre de cliente" -msgstr "Search for accounts by client name" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:9 +msgid "Link" +msgstr "Link" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 -msgid "Buscar cuentas por nombre de categoría" -msgstr "Search for accounts by category name" +#~ msgid "CONSULTA INVÁLIDA" +#~ msgstr "Érvénytelen lekérdezés" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 -msgid "Eliminar Historial" -msgstr "Delete History" +#~ msgid "La sesión no se ha iniciado o ha caducado" +#~ msgstr "A munkamenet nem indult el, vagy idõtúllépés miatt bezáródott" + +#~ msgid "Es necesario un nombre de cuenta" +#~ msgstr "Fiók név szükséges" + +#, fuzzy +#~ msgid "Es necesario un nombre de cliente" +#~ msgstr "Ügyfél név szükséges" + +#, fuzzy +#~ msgid "Es necesario un usuario" +#~ msgstr "Felhasználónév szükséges" + +#, fuzzy +#~ msgid "Es necesaria una clave" +#~ msgstr "Jelszó szükséges" + +#, fuzzy +#~ msgid "Es necesario una categoría" +#~ msgstr "Jelszó szükséges" + +#~ msgid "Acción Inválida" +#~ msgstr "Érvénytelen Akció" + +#~ msgid "Las claves no coinciden" +#~ msgstr "A jelszó nem egyezik" + +#, fuzzy +#~ msgid "Error al crear la cuenta" +#~ msgstr "Hiba a fiók létrehozása közben" + +#, fuzzy +#~ msgid "Error al modificar la cuenta" +#~ msgstr "Hiba a fiók frissítése közben" + +#, fuzzy +#~ msgid "Error al eliminar la cuenta" +#~ msgstr "Hiba a fiók törlése közben" + +#, fuzzy +#~ msgid "Error al actualizar la clave" +#~ msgstr "Hiba a jelszó frissítése közben" + +#~ msgid "Cuenta restaurada" +#~ msgstr "Fiók restaurált" + +#, fuzzy +#~ msgid "Error al restaurar cuenta" +#~ msgstr "Hiba történt helyreállítása számla" + +#, fuzzy +#~ msgid "Es necesario un nombre de usuario" +#~ msgstr "Felhasználónév szükséges" + +#~ msgid "Es necesario un login" +#~ msgstr "Bejelentkezés szükséges" + +#~ msgid "Es necesario un perfil" +#~ msgstr "Profil szükséges" + +#~ msgid "Es necesario un grupo" +#~ msgstr "Csoport szükséges" + +#~ msgid "Es necesario un email" +#~ msgstr "Email szükséges" + +#~ msgid "Ey, esto es una DEMO!!" +#~ msgstr "Aj, ez egy próbaverzió" + +#~ msgid "La clave no puede estar en blanco" +#~ msgstr "A jelszó nem lehet üres" + +#~ msgid "Usuario creado" +#~ msgstr "Felhasználó hozzáadva" + +#, fuzzy +#~ msgid "Error al crear el usuario" +#~ msgstr "Hiba a felhasználó létrehozása közben" + +#~ msgid "Usuario actualizado" +#~ msgstr "Felhasználó frissítve" + +#, fuzzy +#~ msgid "Error al actualizar el usuario" +#~ msgstr "Hiba a felhasználó frissítése közben" + +#, fuzzy +#~ msgid "Error al modificar la clave" +#~ msgstr "Hiba a jelszó frissítése közben" + +#~ msgid "No es posible eliminar, usuario en uso" +#~ msgstr "Nem lehet törölni, a felhaszánáló használatban van" + +#~ msgid "Usuario eliminado" +#~ msgstr "Felhasználó törölve" + +#, fuzzy +#~ msgid "Error al eliminar el usuario" +#~ msgstr "Hiba a felhasználó törlése közben" + +#~ msgid "Es necesario un nombre de grupo" +#~ msgstr "Csoport név szükséges" + +#~ msgid "Nombre de grupo duplicado" +#~ msgstr "Kettõzött csoport név" + +#, fuzzy +#~ msgid "Error al crear el grupo" +#~ msgstr "Hiba a csoport létrehozása közben" + +#, fuzzy +#~ msgid "Error al actualizar el grupo" +#~ msgstr "Hiba a csoport frissítése közben" + +#~ msgid "No es posible eliminar" +#~ msgstr "Nem lehet törölni" + +#, fuzzy +#~ msgid "Error al eliminar el grupo" +#~ msgstr "Hiba a csoport törlése közben" + +#~ msgid "Es necesario un nombre de perfil" +#~ msgstr "Profil név szükséges" + +#~ msgid "Nombre de perfil duplicado" +#~ msgstr "Kettözõtt profil név" + +#~ msgid "Perfil creado" +#~ msgstr "Profil hozzáadva" + +#~ msgid "Perfil actualizado" +#~ msgstr "Profil frissítve" + +#~ msgid "Perfil eliminado" +#~ msgstr "Profil törölve" + +#~ msgid "Es necesario un nombre de categoría" +#~ msgstr "Kategória név szükséges" + +#, fuzzy +#~ msgid "Autorización creada" +#~ msgstr "Fiók hozzáadva" + +#, fuzzy +#~ msgid "Autorización actualizada" +#~ msgstr "Fiók frissítve" + +#, fuzzy +#~ msgid "Autorización eliminada" +#~ msgstr "Fiók törölve" + +#, fuzzy +#~ msgid "Nombre del campo no indicado" +#~ msgstr "Ügyfél név" + +#, fuzzy +#~ msgid "Tipo del campo no indicado" +#~ msgstr "Fájltípus nem engedélyezett" + +#~ msgid "Módulo del campo no indicado" +#~ msgstr "Field module not set" + +#, fuzzy +#~ msgid "Campo creado" +#~ msgstr "Felhasználó hozzáadva" + +#, fuzzy +#~ msgid "Campo actualizado" +#~ msgstr "Frissítve" + +#, fuzzy +#~ msgid "Campo eliminado" +#~ msgstr "Felhasználó törölve" + +#~ msgid "Realizar Backup" +#~ msgstr "Archívum készítés" + +#, fuzzy +#~ msgid "Error al realizar el backup" +#~ msgstr "Hiba Archiválás közben" + +#, fuzzy +#~ msgid "Revise el registro de eventos para más detalles" +#~ msgstr "Részletes leírást az esemény naplóban olvashat" + +#, fuzzy +#~ msgid "Copia de la aplicación y base de datos realizada correctamente" +#~ msgstr "Application and database backup successfully done" + +#, fuzzy +#~ msgid "Error al realizar la exportación de cuentas" +#~ msgstr "Hiba a fiók fájlok létrehozása közben" + +#, fuzzy +#~ msgid "Error al realizar la exportación" +#~ msgstr "Hiba Archiválás közben" + +#, fuzzy +#~ msgid "Exportación de cuentas realizada correctamente" +#~ msgstr "A beállítások elmentve" + +#, fuzzy +#~ msgid "Los parámetros de LDAP no están configurados" +#~ msgstr "LDAP paraméterek nem lettek elmentve" + +#~ msgid "Conexión a LDAP correcta" +#~ msgstr "LDAP kapcsolat" + +#~ msgid "Objetos encontrados" +#~ msgstr "Objektum találatok" + +#~ msgid "Modificar Configuración" +#~ msgstr "Konfiguráció szerkesztése" + +#, fuzzy +#~ msgid "El tamaño máximo por archivo es de 16MB" +#~ msgstr "Maximálisan feltölthetõ fájl mérete 16MB" + +#, fuzzy +#~ msgid "Faltan parámetros de Proxy" +#~ msgstr "Hiányzó Wiki paraméter" + +#, fuzzy +#~ msgid "Proxy habiltado" +#~ msgstr "Felhasználó letiltva" + +#, fuzzy +#~ msgid "Proxy deshabilitado" +#~ msgstr "Felhasználó letiltva" + +#, fuzzy +#~ msgid "Sección" +#~ msgstr "Akció" + +#~ msgid "Faltan parámetros de Wiki" +#~ msgstr "Hiányzó Wiki paraméter" + +#, fuzzy +#~ msgid "Wiki habiltada" +#~ msgstr "Inaktív" + +#, fuzzy +#~ msgid "Wiki deshabilitada" +#~ msgstr "Inaktív" + +#~ msgid "Faltan parámetros de LDAP" +#~ msgstr "Hiányzó LDAP paraméter" + +#, fuzzy +#~ msgid "LDAP habiltado" +#~ msgstr "Inaktív" + +#, fuzzy +#~ msgid "LDAP deshabilitado" +#~ msgstr "Inaktív" + +#~ msgid "Faltan parámetros de Correo" +#~ msgstr "Hiányzó mail paraméter" + +#, fuzzy +#~ msgid "Correo habiltado" +#~ msgstr "Email elküldve" + +#, fuzzy +#~ msgid "Correo deshabilitado" +#~ msgstr "Felhasználó letiltva" + +#~ msgid "Configuración actualizada" +#~ msgstr "Beállítások frissítve" + +#, fuzzy +#~ msgid "Clave maestra no indicada" +#~ msgstr "Mester jelszó szükséges" + +#~ msgid "Se ha de confirmar el cambio de clave" +#~ msgstr "A jelszó frissítéshez megerõsítés szükséges" + +#~ msgid "Las claves son idénticas" +#~ msgstr "A jelszó megegyezik" + +#~ msgid "Las claves maestras no coinciden" +#~ msgstr "A mester jelszó nem egyezik" + +#~ msgid "La clave maestra actual no coincide" +#~ msgstr "A jelenlegi mester jelszó nem egyezik" + +#, fuzzy +#~ msgid "Errores al actualizar las claves de las cuentas" +#~ msgstr "Hiba a fiókok jelszavainak frissítése közben" + +#, fuzzy +#~ msgid "Errores al actualizar las claves de las cuentas del histórico" +#~ msgstr "Hiba a fiókok jelszavainak frissítése közben" + +#, fuzzy +#~ msgid "Errores al actualizar datos de campos personalizados" +#~ msgstr "Hiba a fiókok jelszavainak frissítése közben" + +#, fuzzy +#~ msgid "Error al guardar el hash de la clave maestra" +#~ msgstr "Hiba a mester jelszó hash-ének elmentése közben" + +#, fuzzy +#~ msgid "Generar Clave Temporal" +#~ msgstr "Generate Temporary Password" + +#, fuzzy +#~ msgid "Clave Temporal Generada" +#~ msgstr "Generált Jelszó" + +#, fuzzy +#~ msgid "Error al generar clave temporal" +#~ msgstr "Generate Temporary Password" + +#~ msgid "Usuario/Clave no introducidos" +#~ msgstr "Felhasználó/jelszó nem lett kitöltve" + +#, fuzzy +#~ msgid "Inicio sesión" +#~ msgstr "munkamenet elindult (LDAP)" + +#, fuzzy +#~ msgid "Error al guardar los datos de LDAP" +#~ msgstr "Hiba az LDAP felhasználók adatainak elmentése közben" + +#, fuzzy +#~ msgid "Error al actualizar la clave del usuario en la BBDD" +#~ msgstr "Adatbázis Hiba a felhasználói jelszó frissítése közben" + +#, fuzzy +#~ msgid "Login incorrecto" +#~ msgstr "Hibás felhasználónév vagy jelszó" + +#, fuzzy +#~ msgid "Cuenta expirada" +#~ msgstr "Fiók" + +#~ msgid "El usuario no tiene grupos asociados" +#~ msgstr "a felhasználó nincs csoporthoz társítva" + +#~ msgid "Usuario deshabilitado" +#~ msgstr "Felhasználó letiltva" + +#, fuzzy +#~ msgid "Error al obtener los datos del usuario de la BBDD" +#~ msgstr "Hiba a felhasználói adatok adatbázisból való betöltése közben" + +#, fuzzy +#~ msgid "La clave maestra no ha sido guardada o es incorrecta" +#~ msgstr "A mester jelszó nem lett elmentve, vagy helytelen" + +#, fuzzy +#~ msgid "Clave maestra incorrecta" +#~ msgstr "Érvénytelen mester jelszó" + +#, fuzzy +#~ msgid "No hay extensiones permitidas" +#~ msgstr "Tiltott kiterjesztések" + +#~ msgid "Tipo de archivo no soportado" +#~ msgstr "Fájltípus nem engedélyezett" + +#~ msgid "Archivo inválido" +#~ msgstr "Érvénytelen fájl" + +#, fuzzy +#~ msgid "Error interno al leer el archivo" +#~ msgstr "Belsõ hiba a fájl olvasása közben" + +#~ msgid "Archivo guardado" +#~ msgstr "Fájl elmentve" + +#~ msgid "No se pudo guardar el archivo" +#~ msgstr "Hiba a fájl mentése közben" + +#~ msgid "No es un ID de archivo válido" +#~ msgstr "Helytelen fájl ID" + +#~ msgid "El archivo no existe" +#~ msgstr "A fájl nem létezik" + +#~ msgid "Archivo eliminado" +#~ msgstr "Fájl törölve" + +#, fuzzy +#~ msgid "Error al eliminar el archivo" +#~ msgstr "Hiba a fájlok törlése közben" + +#, fuzzy +#~ msgid "Parámetros incorrectos" +#~ msgstr "Helytelen paraméter" + +#~ msgid "Recuperación de Clave" +#~ msgstr "Jelszó visszaállítás" + +#~ msgid "Solicitado para" +#~ msgstr "Kért, hogy" + +#~ msgid "Solicitud enviada" +#~ msgstr "Kérést elküldve" + +#~ msgid "En breve recibirá un correo para completar la solicitud." +#~ msgstr "A kérés befejezéséhez email értesítõt küldünk" + +#~ msgid "Modificar Clave Usuario" +#~ msgstr "Felhasználó jelszavának szerkesztése" + +#, fuzzy +#~ msgid "La clave es incorrecta o no coincide" +#~ msgstr "A jelszó helytelen, vagy nem egyezik" + +#~ msgid "Es necesaria una descripción" +#~ msgstr "Leírás szükséges" + +#~ msgid "Solicitud de Modificación de Cuenta" +#~ msgstr "Kérés fiók módosításához" + +#~ msgid "Solicitante" +#~ msgstr "Kérõ" + +#, fuzzy +#~ msgid "Error al actualizar preferencias" +#~ msgstr "Hiba a jelszó frissítése közben" + +#, fuzzy +#~ msgid "Preferencias actualizadas" +#~ msgstr "Fiókok frissítve" + +#~ msgid "La clave maestra no coincide" +#~ msgstr "A mester jelszó nem egyezik" + +#, fuzzy +#~ msgid "No es posible acceder directamente a este archivo" +#~ msgstr "A fájl közvetlen elérése meghiúsult" + +#~ msgid "Error al actualizar el historial" +#~ msgstr "Hiba az elõzmények frissítése közben" + +#~ msgid "Actualizar Cuenta" +#~ msgstr "Frissítés Számla" + +#, fuzzy +#~ msgid "Error al actualizar los grupos secundarios" +#~ msgstr "Hiba a másodlagos csoportok frissítése közben" + +#, fuzzy +#~ msgid "Error al actualizar los usuarios de la cuenta" +#~ msgstr "Hiba a fiók felhasználóinak frissítése közben" + +#, fuzzy +#~ msgid "No se pudieron obtener los datos de la cuenta" +#~ msgstr "Hiba a fiókok jelszavainak betöltése közben" + +#, fuzzy +#~ msgid "Error al eliminar grupos asociados a la cuenta" +#~ msgstr "Hiba a felhasználó csoportok törlése közben" + +#, fuzzy +#~ msgid "Error al eliminar usuarios asociados a la cuenta" +#~ msgstr "Hiba a fiók felhasználók törlése közben" + +#, fuzzy +#~ msgid "Error al eliminar archivos asociados a la cuenta" +#~ msgstr "Hiba a fiók fájljainak törlése közben" + +#~ msgid "Inicio" +#~ msgstr "Start" + +#, fuzzy +#~ msgid "Error en el módulo de encriptación" +#~ msgstr "Titkosító modul hiba" + +#, fuzzy +#~ msgid "Error al obtener las claves de las cuentas" +#~ msgstr "Hiba a fiókok jelszavainak betöltése közben" + +#, fuzzy +#~ msgid "Fallo al actualizar la clave de la cuenta" +#~ msgstr "Hiba a fiók jelszavának frissítése közben" + +#, fuzzy +#~ msgid "Cuentas actualizadas" +#~ msgstr "Fiókok frissítve" + +#, fuzzy +#~ msgid "No se pudieron obtener los datos de las cuentas" +#~ msgstr "Hiba a fiókok jelszavainak betöltése közben" + +#~ msgid "Actualizar Clave Maestra (H)" +#~ msgstr "Frissítse a mester jelszót (H)" + +#~ msgid "La clave maestra del registro no coincide" +#~ msgstr "A rekord mester jelszava nem egyezik" + +#, fuzzy +#~ msgid "Fallo al actualizar la clave del histórico" +#~ msgstr "Hiba a elõzmények mester jelszavának frissítése közben" + +#, fuzzy +#~ msgid "Registros actualizados" +#~ msgstr "Rekordok frissítve" + +#, fuzzy +#~ msgid "Gestión Aplicación" +#~ msgstr "Menedzsment" + +#~ msgid "Exportar" +#~ msgstr "Exportálás" + +#, fuzzy +#~ msgid "Acceso no permitido" +#~ msgstr "Belépés megtagadva" + +#, fuzzy +#~ msgid "Error de codificación" +#~ msgstr "LDAP kapcsolódási hiba" + +#, fuzzy +#~ msgid "La autorización ya existe" +#~ msgstr "Az adatbázis már létezik" + +#, fuzzy +#~ msgid "Actualizar Autorización" +#~ msgstr "Frissítés Számla" + +#, fuzzy +#~ msgid "Usuario no pertenece al grupo" +#~ msgstr "a felhasználó nincs csoporthoz társítva" + +#~ msgid "Esta operación sólo es posible en entornos Linux" +#~ msgstr "Ez a mûvelet csak Linux környezetben érhetõ el" + +#, fuzzy +#~ msgid "Error al realizar backup en modo compatibilidad" +#~ msgstr "Error while doing backup in compatibility mode" + +#, fuzzy +#~ msgid "Compruebe los permisos del directorio de backups" +#~ msgstr "Ellenõrizze az archiválás mappa jogosultságait" + +#~ msgid "Nombre de categoría duplicado" +#~ msgstr "Kategória neve duplázva" + +#, fuzzy +#~ msgid "Error al crear la categoría" +#~ msgstr "Hiba a kategória létrehozása közben" + +#, fuzzy +#~ msgid "Error al eliminar la categoría" +#~ msgstr "Hiba a kategória törlése közben" + +#, fuzzy +#~ msgid "Error al actualizar la categoría" +#~ msgstr "Hiba a kategória frissítése közben" + +#~ msgid "Modificar configuración" +#~ msgstr "Konfiguráció frissítése" + +#~ msgid "Parámetro" +#~ msgstr "Paraméter" + +#~ msgid "Valor" +#~ msgstr "Érték" + +#~ 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." + +#, fuzzy +#~ msgid "No es posible generar las claves RSA" +#~ msgstr "Ügyfél létrehozása meghiusúlt" + +#, fuzzy +#~ msgid "El archivo de clave no existe" +#~ msgstr "A fájl nem létezik" + +#, fuzzy +#~ msgid "Error importando cuenta" +#~ msgstr "Hiba a fiók importálása közben" + +#, fuzzy +#~ msgid "Registros no actualizados" +#~ msgstr "Rekordok frissítve" + +#, fuzzy +#~ msgid "Cliente duplicado" +#~ msgstr "Kettõzött ügyfél" + +#, fuzzy +#~ msgid "Error al crear el cliente" +#~ msgstr "Hiba az ügyfél létrehozása közben" + +#, fuzzy +#~ msgid "Error al actualizar el cliente" +#~ msgstr "Hiba az ügyfél frissítése közben" + +#~ msgid "Actualizar Cliente" +#~ msgstr "Frissítse az ügyfelet" + +#, fuzzy +#~ msgid "Error al eliminar el cliente" +#~ msgstr "Hiba az ügyfél törlése közben" + +#~ msgid "No es posible conectar con la BD" +#~ msgstr "Csatlakozás a DB-hez meghiusúlt" + +#, fuzzy +#~ msgid "Compruebe los datos de conexión" +#~ msgstr "Please, check connection parameters" + +#~ msgid "Realizado por" +#~ msgstr "Által végrehajtva" + +#~ msgid "Enviar Email" +#~ msgstr "Email küldése" + +#~ msgid "Correo enviado" +#~ msgstr "Email elküldve" + +#, fuzzy +#~ msgid "Error al enviar correo" +#~ msgstr "Hiba az email küldése közben" + +#~ msgid "Destinatario" +#~ msgstr "Címzett" + +#~ msgid "CC" +#~ msgstr "CC" + +#~ msgid "Archivo no subido correctamente" +#~ msgstr "A fájl feltöltése sikeres" + +#, fuzzy +#~ msgid "Verifique los permisos del usuario del servidor web" +#~ msgstr "Kérem, ellenõrizze az webszerver felhasználójának jogosultságait" + +#, fuzzy +#~ msgid "Compruebe la extensión del archivo" +#~ msgstr "Kérem, ellenõrizze a fájl kiterjesztését" + +#, fuzzy +#~ msgid "Compruebe la configuración de PHP para subir archivos" +#~ msgstr "Kérem, tekintse meg a PHP konfigurációt fájlok feltötése elõtt" + +#, fuzzy +#~ msgid "Compruebe los permisos del directorio temporal" +#~ msgstr "Kérem, ellenõrizze az ideiglenes mappa jogosultságait" + +#, fuzzy +#~ msgid "Error al eliminar los usuarios del grupo" +#~ msgstr "Hiba a felhasználó törlése közben" + +#, fuzzy +#~ msgid "Compruebe el formato del archivo" +#~ msgstr "Kérem, ellenõrizze a CSV fájl kiterjesztését" + +#~ msgid "Importación finalizada" +#~ msgstr "Importálás kész" + +#~ msgid "La sesión no puede ser inicializada" +#~ msgstr "A munkamenetot nem lehet elindítani" + +#~ msgid "El directorio \"/config\" no existe" +#~ msgstr "\"/config\" mappa nem létezik" + +#~ msgid "No es posible escribir en el directorio \"config\"" +#~ msgstr "Nem lehet a \"/config\" mappába írni" + +#, fuzzy +#~ msgid "Los permisos del directorio \"/config\" son incorrectos" +#~ msgstr "\"/config\" mappa jogosultságai helytelenek" + +#~ msgid "Finalizar sesión" +#~ msgstr "Kijelentkezés" + +#~ msgid "Tiempo inactivo" +#~ msgstr "Idõ kikapcsolása" + +#~ msgid "Tiempo total" +#~ msgstr "Teljes idõ" + +#~ msgid "Actualización" +#~ msgstr "Frissítés" + +#~ msgid "Actualización de versión realizada." +#~ msgstr "Verzió frissítés kész" + +#, fuzzy +#~ msgid "Indicar nombre de usuario admin" +#~ msgstr "Írd be az admin felhasználó nevét" + +#, fuzzy +#~ msgid "Usuario admin para acceso a la aplicación" +#~ msgstr "Rendszergazda felhasználó bejelentkezés" + +#, fuzzy +#~ msgid "Indicar la clave de admin" +#~ msgstr "Írd be az admin jelszót" + +#~ msgid "Clave del usuario admin de la aplicación" +#~ msgstr "Az alkalmazás rendszergazdai jelszava" + +#, fuzzy +#~ msgid "Indicar la clave maestra" +#~ msgstr "Írd be a mester jelszót" + +#, fuzzy +#~ msgid "Clave maestra para encriptar las claves" +#~ msgstr "Mester jelszó szükséges a jelszavak titkosításához" + +#, fuzzy +#~ msgid "Clave maestra muy corta" +#~ msgstr "Túl rövid a mester jelszó" + +#~ msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" +#~ msgstr "A mester jelszó legaláb 11 karakterbõl kell, hogy álljon" + +#, fuzzy +#~ msgid "Indicar el usuario de la BBDD" +#~ msgstr "Írd be az adatbázis felhasználót" + +#, fuzzy +#~ msgid "Usuario con permisos de administrador de la Base de Datos" +#~ msgstr "Adatbázis rendszergazdai jogokkal rendelkezõ felhasználó" + +#, fuzzy +#~ msgid "Indicar el nombre de la BBDD" +#~ msgstr "Írd be az adatbázis nevét" + +#~ msgid "Nombre para la BBDD de la aplicación pej. syspass" +#~ msgstr "Az alkalmazás neve. Pl.: syspass" + +#~ msgid "El nombre de la BBDD no puede contener \".\"" +#~ msgstr "Az adatbázis neve nem tartalmazhat: \".\"" + +#, fuzzy +#~ msgid "Elimine los puntos del nombre de la Base de Datos" +#~ msgstr "Kérem, törölje a pontokat az adatbázis nevébõl" + +#, fuzzy +#~ msgid "Indicar el servidor de la BBDD" +#~ msgstr "Írd be az adatbázis szervert" + +#~ msgid "Servidor donde se instalará la Base de Datos" +#~ msgstr "Szerver, ahová az adatbázis telepítve lesz" + +#, fuzzy +#~ msgid "No es posible comprobar el usuario de sysPass" +#~ msgstr "Nem lehet törölni, a felhaszánáló használatban van" + +#, fuzzy +#~ msgid "Compruebe los permisos del usuario de conexión a la BD" +#~ msgstr "Kérem, ellenõrizze a 'config' mappa jogosultságait" + +#~ msgid "La BBDD ya existe" +#~ msgstr "Az adatbázis már létezik" + +#, fuzzy +#~ msgid "Indique una nueva Base de Datos o elimine la existente" +#~ msgstr "Írd be az új adatbázist, vagy töröld a jelenlegit" + +#, fuzzy +#~ msgid "Error al crear la BBDD" +#~ msgstr "Hiba az adatbázis létrehozása közben" + +#, fuzzy +#~ msgid "Verifique los permisos del usuario de la Base de Datos" +#~ msgstr "Kérem, ellenõrizze az adatbázis felhasználó jogosultságait" + +#~ msgid "El archivo de estructura de la BBDD no existe" +#~ msgstr "Adatbázis fájl nem létezik" + +#~ msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." +#~ msgstr "Az adatbázis létrehozása meghiúsult. Kérem, töltse le újra" + +#, fuzzy +#~ msgid "Error al seleccionar la BBDD" +#~ msgstr "Hiba az adatbázis kiválasztása közben" + +#~ msgid "" +#~ "No es posible usar la Base de Datos para crear la estructura. Compruebe " +#~ "los permisos y que no exista." +#~ msgstr "" +#~ "Új elem létrehozás aaz adatbázisban meghiúsult. Ellenõrizze a " +#~ "jogosultságokat és hogy valóban létezik az adatbázis" + +#~ msgid "Error al crear la estructura de la Base de Datos." +#~ msgstr "Hiba az adatbázis létrehozása közben" + +#~ msgid "Informe al desarrollador" +#~ msgstr "Figyelmeztetsd a fejlesztõt" + +#, fuzzy +#~ msgid "Error al actualizar la clave maestra del usuario \"admin\"" +#~ msgstr "Hiba a mester jelszó frissítése közben" + +#~ msgid "No es posible conectar con el servidor de LDAP" +#~ msgstr "Csatlakozás az LDAP szerverhez meghiúsult" + +#~ msgid "Error al conectar (BIND)" +#~ msgstr "Kapcsolat hiba (BIND)" + +#~ msgid "Error al buscar objetos en DN base" +#~ msgstr "Hiba a keresés közben" + +#, fuzzy +#~ msgid "Error al buscar RDN de grupo" +#~ msgstr "Hiba az RDN csoport keresése közben" + +#, fuzzy +#~ msgid "Error al localizar el usuario en LDAP" +#~ msgstr "Hiba az LDAP felhasználók keresése közben" + +#~ msgid "Error al buscar el grupo de usuarios" +#~ msgstr "Hiba a keresése közben" + +#, fuzzy +#~ msgid "Usuario verificado en grupo" +#~ msgstr "Csoportot használja a:" + +#~ msgid "Vaciar Eventos" +#~ msgstr "Események törlése" + +#, fuzzy +#~ msgid "Cliente no encontrado" +#~ msgstr "Nincs ügyfél találat" + +#, fuzzy +#~ msgid "Error al obtener los usuarios" +#~ msgstr "Hiba a felhasználók betöltése közben" + +#, fuzzy +#~ msgid "Migrar Perfiles" +#~ msgstr "Profilok" + +#, fuzzy +#~ msgid "Error al obtener perfiles" +#~ msgstr "Hiba a fiókok betöltése közben" + +#, fuzzy +#~ msgid "Operación realizada correctamente" +#~ msgstr "Az alkalmazás frissítése sikeres" + +#, fuzzy +#~ msgid "Fallo al realizar la operación" +#~ msgstr "Hiba a elõzmények mester jelszavának frissítése közben" + +#, fuzzy +#~ msgid "Formato de XML inválido" +#~ msgstr "Érvénytelen Id" + +#, fuzzy +#~ msgid "Error al aplicar la actualización de la Base de Datos" +#~ msgstr "Hiba az adatbázis frissítése közben" + +#~ msgid "Compruebe el registro de eventos para más detalles" +#~ msgstr "Részletes leírást az esemény naplóban olvashat" + +#, fuzzy +#~ msgid "Error al aplicar la actualización auxiliar" +#~ msgstr "Hiba az adatbázis frissítése közben" + +#~ msgid "Actualizar BBDD" +#~ msgstr "Frissítse az adatbázist" + +#~ msgid "No es necesario actualizar la Base de Datos." +#~ msgstr "Az adatbázis frissítése nem szükséges" + +#~ msgid "Actualización de la Base de Datos realizada correctamente." +#~ msgstr "Az adatbázis frissítés sikeresen megtörtént" + +#~ msgid "Actualizar Configuración" +#~ msgstr "Konfiguráció frissítése" + +#, fuzzy +#~ msgid "No se pudo realizar la petición de cambio de clave." +#~ msgstr "Nem sikerült végrehajtani a jelszócsere kérelmet." + +#~ msgid "Usuario de LDAP" +#~ msgstr "LDAP felhasználó" + +#~ msgid "Activación Cuenta" +#~ msgstr "Fiók Aktiválás" + +#~ msgid "Su cuenta está pendiente de activación." +#~ msgstr "Az ön fiók aktiválása függõben van" + +#~ msgid "En breve recibirá un email de confirmación." +#~ msgstr "Hamarosan megerõsítésre váró emailt küldünk" + +#, fuzzy +#~ msgid "Nuevo usuario de LDAP" +#~ msgstr "LDAP felhasználó" + +#, fuzzy +#~ msgid "Error al migrar grupo del usuario" +#~ msgstr "Hiba a DN felhasználó keresése közben" + +#, fuzzy +#~ msgid "Versión de PHP requerida >= " +#~ msgstr "Szükséges PHP verzió> = 5.1" + +#, fuzzy +#~ msgid "" +#~ "Actualice la versión de PHP para que la aplicación funcione correctamente" +#~ msgstr "Kérem, frissítse a PHP verziót, hogy a sysPass biztonságos legyen" + +#, fuzzy +#~ msgid "Exportar XML" +#~ msgstr "Fiókok importálása" + +#, fuzzy +#~ msgid "Error al crear el archivo XML" +#~ msgstr "Hiba az ügyfél létrehozása közben" + +#, fuzzy +#~ msgid "No es posible procesar el archivo XML" +#~ msgstr "Nem lehet a konfigurációs fájlba írni" + +#, fuzzy +#~ msgid "Archivo XML no soportado" +#~ msgstr "Fájltípus nem engedélyezett" + +#, fuzzy +#~ msgid "No es posible detectar la aplicación que exportó los datos" +#~ msgstr "Unable to detect the application the data was exported from" + +#~ msgid "Último backup" +#~ msgstr "Utolsó Archiválás" + +#, fuzzy +#~ msgid "Última exportación" +#~ msgstr "Utolsó oldal" + +#~ msgid "Registro de eventos vaciado" +#~ msgstr "Esemény napló törölve" + +#, fuzzy +#~ msgid "Error al vaciar el registro de eventos" +#~ msgstr "Hiba az esemény napló törlése közben" + +#~ msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" +#~ msgstr "" +#~ "Ez a PHP verzió sérülékeny a NULL Byte támadásokkal szemben " +#~ "(CVE-2006-7243)" + +#~ msgid "Actualice la versión de PHP para usar sysPass de forma segura" +#~ msgstr "Kérem, frissítse a PHP verziót, hogy a sysPass biztonságos legyen" + +#~ msgid "No se encuentra el generador de números aleatorios." +#~ msgstr "Nem találom a véletlen szám generátort" + +#~ msgid "" +#~ "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" +#~ msgstr "E funkció nélkül egy támadó alapállapotba állíthatja jelszavát" + +#~ msgid "Instalación finalizada" +#~ msgstr "A telepítés befejezõdött" + +#~ msgid "Descargar nueva versión" +#~ msgstr "Új verzió letöltése" + +#, fuzzy +#~ msgid "Token de autorización visualizado" +#~ msgstr "Beállítások frissítve" + +#~ msgid "Autorizaciones" +#~ msgstr "Authorizations" + +#~ msgid "Hablitar edición" +#~ msgstr "Szerkesztés engedélyezése" + +#~ msgid "Usuarios Secundarios" +#~ msgstr "Másodlagos felhasználók" + +#~ msgid "Grupos Secundarios" +#~ msgstr "Másodlagos csoportok" + +#~ msgid "Modificar Cuenta" +#~ msgstr "Fiók módosítás" + +#, fuzzy +#~ msgid "No hay backups para descargar" +#~ msgstr "Nincsenek letölthetõ Archívumok" + +#, fuzzy +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "Nincsenek letölthetõ Archívumok" + +#, fuzzy +#~ msgid "Se permite un máximo de 4 caracteres." +#~ msgstr "A kiterjesztések hossza maximum 4 karakter lehet" + +#~ msgid "Primera página" +#~ msgstr "Elsõ oldal" + +#~ msgid "Página anterior" +#~ msgstr "Elõzõ oldal" + +#~ msgid "Página siguiente" +#~ msgstr "Következõ oldal" + +#~ msgid "Última página" +#~ msgstr "Utolsó oldal" + +#~ msgid "Comprobar" +#~ msgstr "Ellenõrzés" + +#, fuzzy +#~ msgid "Cambiar Clave" +#~ msgstr "Változtatsd meg a jelszót" + +#~ msgid "Añadir" +#~ msgstr "Hozzáad" + +#~ msgid "Abrir enlace a" +#~ msgstr "Nyissa meg a linket, hogy" + +#~ msgid "Limpiar" +#~ msgstr "Tiszta" + +#, fuzzy +#~ msgid "Parámetros especiales:" +#~ msgstr "Helytelen paraméter" + +#, fuzzy +#~ msgid "Realizar" +#~ msgstr "Archívum készítés" + +#~ msgid "Extensión" +#~ msgstr "Extension" + +#~ msgid "Tamaño de archivo superado" +#~ msgstr "File size exceeded" + +#~ msgid "Solicitud no enviada" +#~ msgstr "Request not sent" + +#~ msgid "Compruebe datos de usuario o consulte con el administrador" +#~ msgstr "Please, check the user data or contact to the administrator" + +#~ msgid "La cuenta no existe" +#~ msgstr "The account doesn't exist" + +#~ msgid "Errores" +#~ msgstr "Errors" + +#~ msgid "Error al añadir favorito" +#~ msgstr "Error while adding favorite" + +#~ msgid "Error al eliminar favorito" +#~ msgstr "Error while deleting favorite" + +#~ msgid "Error al eliminar las etiquetas de la cuenta" +#~ msgstr "Error while removing the account's tags" + +#~ msgid "Método inválido" +#~ msgstr "Invalid Method" + +#~ msgid "Datos inválidos" +#~ msgstr "Invalid data" + +#~ msgid "Formato incorrecto" +#~ msgstr "Wrong format" + +#~ msgid "Nombre de categoría a buscar" +#~ msgstr "Category name to search for" + +#~ msgid "Nombre de cliente a buscar" +#~ msgstr "Client name to search for" + +#~ msgid "Método ya inicializado" +#~ msgstr "Method already initialized" + +#~ msgid "Método no disponible" +#~ msgstr "Method unavailable" + +#~ msgid "Los parámetros de DokuWiki no están configurados" +#~ msgstr "The DokuWiki parameters are not set" + +#~ msgid "Error" +#~ msgstr "Error" + +#~ msgid "Conexión correcta" +#~ msgstr "Connection successful" + +#~ msgid "Error de conexión a DokuWiki" +#~ msgstr "Error while connecting to DokuWiki" + +#~ msgid "Faltan parámetros de syslog remoto" +#~ msgstr "Missing remote syslog parameters" + +#~ msgid "Syslog remoto deshabilitado" +#~ msgstr "Remote syslog disabled" + +#~ msgid "Error al guardar la configuración" +#~ msgstr "Error while saving the configuration" + +#~ msgid "Faltan parámetros de DokuWiki" +#~ msgstr "Missing DokuWiki parameters" + +#~ msgid "DokuWiki habiltada" +#~ msgstr "DokuWiki enabled" + +#~ msgid "DokuWiki deshabilitada" +#~ msgstr "DokuWiki disabled" + +#~ msgid "Enlace creado" +#~ msgstr "Link created" + +#~ msgid "Enlace actualizado" +#~ msgstr "Link updated" + +#~ msgid "Enlace eliminado" +#~ msgstr "Link deleted" + +#~ msgid "Plugin habilitado" +#~ msgstr "Plugin enabled" + +#~ msgid "Plugin deshabilitado" +#~ msgstr "Plugin disabled" + +#~ msgid "Plugin restablecido" +#~ msgstr "Plugin reset" + +#~ msgid "Favorito añadido" +#~ msgstr "Favorite added" + +#~ msgid "Favorito eliminado" +#~ msgstr "Favorite deleted" + +#~ msgid "Importación de usuarios de LDAP realizada" +#~ msgstr "LDAP users import finished" + +#~ msgid "Error al importar usuarios de LDAP" +#~ msgstr "Error while importing the LDAP users" + +#~ msgid "Notificación leída" +#~ msgstr "Notification read" + +#~ msgid "Notificación eliminada" +#~ msgstr "Notification deleted" + +#~ msgid "Solicitud enviada por correo" +#~ msgstr "Request sent by email" + +#~ msgid "Solicitud no enviada por correo" +#~ msgstr "Request not sent by email" + +#~ msgid "Solicitud realizada" +#~ msgstr "Request done" + +#~ msgid "Detalles de Plugin" +#~ msgstr "Plugin Details" + +#~ msgid "Error al obtener la clave maestra del usuario" +#~ msgstr "Error while retrieving the user's Master Pass" + +#~ msgid "Es necesaria su clave anterior" +#~ msgstr "Your previous password is needed" + +#~ msgid "Servidor LDAP" +#~ msgstr "LDAP Server" + +#~ msgid "Buscar Categorías" +#~ msgstr "Search for Categories" + +#~ msgid "Añadir Categoría" +#~ msgstr "Add Category" + +#~ msgid "Buscar Clientes" +#~ msgstr "Search for Client" + +#~ msgid "Añadir Cliente" +#~ msgstr "Add Client" + +#~ msgid "Observador no inicializado" +#~ msgstr "Observer not initialized" + +#~ msgid "Es necesario un objeto" +#~ msgstr "An object is needed" + +#~ msgid "Indicar la clave de la BBDD" +#~ msgstr "Please, enter the database password" + +#~ msgid "Clave del usuario administrador de la Base de Datos" +#~ msgstr "Database administrator's password" + +#~ msgid "Error al crear el usuario de conexión a MySQL '%s'" +#~ msgstr "Error while creating the MySQL connection user '%s'" + +#~ msgid "La BBDD no existe" +#~ msgstr "The database does not exist" + +#~ msgid "Es necesario crearla y asignar los permisos necesarios" +#~ msgstr "You need to create it and assign the needed permissions" + +#~ msgid "Error al actualizar la configuración" +#~ msgstr "Error while updating the configuration" + +#~ msgid "Usuario no indicado" +#~ msgstr "User not set" + +#~ msgid "Acción no indicada" +#~ msgstr "Action not set" + +#~ msgid "Es necesario un nombre de etiqueta" +#~ msgstr "A tag name is needed" + +#~ msgid "Respuesta XML-RPC inválida" +#~ msgstr "Invalid XML-RPC response" + +#~ msgid "Id de categoría no definido. No es posible importar cuenta." +#~ msgstr "Category Id not set. Unable to import the account." + +#~ msgid "Id de cliente no definido. No es posible importar cuenta." +#~ msgstr "Client Id not set. Unable to import the account." + +#~ msgid "Clave de encriptación no indicada" +#~ msgstr "Encryption password not set" + +#~ msgid "Extensión '%s' no cargada" +#~ msgstr "Extension '%s' not loaded" + +#~ msgid "Categoría duplicada" +#~ msgstr "Duplicated category" + +#~ msgid "Categoría no encontrada" +#~ msgstr "Category not found" + +#~ msgid "Error al crear el campo personalizado" +#~ msgstr "Error while creating the custom field" + +#~ msgid "Error al eliminar el campo personalizado" +#~ msgstr "Error while removing the custom field" + +#~ msgid "Error al actualizar el campo personalizado" +#~ msgstr "Error while updating the custom field" + +#~ msgid "Campo personalizado no encontrado" +#~ msgstr "Custom field not found" + +#~ msgid "No se encontraron campos personalizados" +#~ msgstr "Custom fields not found" + +#~ msgid "No hay datos de campos personalizados" +#~ msgstr "There aren't any data from custom fields" + +#~ msgid "Error al migrar campos personalizados" +#~ msgstr "Error while migrating the custom fields" + +#~ msgid "Archivo subido" +#~ msgstr "File uploaded" + +#~ msgid "Grupo en uso" +#~ msgstr "Group in use" + +#~ msgid "Actualizar Grupo" +#~ msgstr "Update Group" + +#~ msgid "Error al asignar los usuarios al grupo" +#~ msgstr "Error while setting users in the group" + +#~ msgid "Error al crear la notificación" +#~ msgstr "Error while adding the notification" + +#~ msgid "Error al eliminar la notificación" +#~ msgstr "Error while deleting the notification" + +#~ msgid "Error al modificar la notificación" +#~ msgstr "Error while updating the notification" + +#~ msgid "Error al obtener la notificación" +#~ msgstr "Error while retrieving notification" + +#~ msgid "Error al obtener las notificaciones" +#~ msgstr "Error while retrieving the notifications" + +#~ msgid "Error al crear el plugin" +#~ msgstr "Error while adding the plugin" + +#~ msgid "Error al eliminar el plugin" +#~ msgstr "Error while deleting the plugin" + +#~ msgid "Error al actualizar el plugin" +#~ msgstr "Error while updating the plugin" + +#~ msgid "Habilitado" +#~ msgstr "Enabled" + +#~ msgid "Error al crear perfil" +#~ msgstr "Error while creating the profile" + +#~ msgid "Perfil en uso" +#~ msgstr "Profile in use" + +#~ msgid "Error al eliminar perfil" +#~ msgstr "Error while removing the profile" + +#~ msgid "Error al modificar perfil" +#~ msgstr "Error while updating the profile" + +#~ msgid "Enlace visualizado" +#~ msgstr "Link viewed" + +#~ msgid "Error al actualizar enlace" +#~ msgstr "Error while updating the link" + +#~ msgid "Enlace ya creado" +#~ msgstr "Link already created" + +#~ msgid "Error al crear enlace" +#~ msgstr "Error while creating the link" + +#~ msgid "Error al eliminar enlace" +#~ msgstr "Error while removing the link" + +#~ msgid "Error al renovar enlace" +#~ msgstr "Error while renewing link" + +#~ msgid "Actualizar Enlace" +#~ msgstr "Update Link" + +#~ msgid "Error al obtener enlace" +#~ msgstr "Error while retrieving the link" + +#~ msgid "ON" +#~ msgstr "ON" + +#~ msgid "OFF" +#~ msgstr "OFF" + +#~ msgid "Etiqueta duplicada" +#~ msgstr "Duplicated tag" + +#~ msgid "Error al crear etiqueta" +#~ msgstr "Error while creating the tag" + +#~ msgid "Error al eliminar etiqueta" +#~ msgstr "Error while removing the tag" + +#~ msgid "Error al actualizar etiqueta" +#~ msgstr "Error while updating the tag" + +#~ msgid "Error al obtener etiqueta" +#~ msgstr "Error while retrieving the tag" + +#~ msgid "Login/email de usuario duplicados" +#~ msgstr "Duplicated user login/email" + +#~ msgid "Error al obtener los datos del usuario" +#~ msgstr "Error while retrieving the user's data" + +#~ msgid "No se encontraron objetos para sincronizar" +#~ msgstr "There aren't any objects to synchronize" + +#~ msgid "Sincronización finalizada" +#~ msgstr "Synchronization finished" + +#~ msgid "Error al migrar cuenta de usuario" +#~ msgstr "Error while migrating the user account" + +#~ msgid "Error al obtener grupo de usuarios" +#~ msgstr "Error while retrieving the users group" + +#~ msgid "Error en comprobación de hash" +#~ msgstr "Error while checking hash" + +#~ msgid "Hash inválido o expirado" +#~ msgstr "Wrong hash or expired" + +#~ msgid "Error al generar el hash de recuperación" +#~ msgstr "Error while generating the recovering hash" + +#~ msgid "Actualizando preferencias" +#~ msgstr "Updating preferences" + +#~ msgid "No es posible leer/escribir el archivo: %s" +#~ msgstr "Unable to read/write the file: %s" + +#~ msgid "No hay elementos para guardar" +#~ msgstr "There aren't any items to save" + +#~ msgid "Socket no inicializado" +#~ msgstr "Socket not initialized" + +#~ msgid "Error al enviar datos" +#~ msgstr "Error while sending the data" + +#~ msgid "Respuesta" +#~ msgstr "Response" + +#~ msgid "Ver Detalles" +#~ msgstr "View Details" + +#~ msgid "Copiar" +#~ msgstr "Copy" + +#~ msgid "Restaurar" +#~ msgstr "Restore" + +#~ msgid "Descargar" +#~ msgstr "Download" + +#~ msgid "Crítico" +#~ msgstr "Critical" + +#~ msgid "Accesos" +#~ msgstr "Accesses" + +#~ msgid "Cuentas Vinculadas" +#~ msgstr "Linked Accounts" + +#~ msgid "Hay %d notificaciones pendientes" +#~ msgstr "There are %d unread notifications" + +#~ msgid "Agente" +#~ msgstr "Agent" + +#~ msgid "Crear Usuario" +#~ msgstr "Add User" + +#~ msgid "Actualizar Usuario" +#~ msgstr "Update User" + +#~ msgid "Actualizar Clave Usuario" +#~ msgstr "Update User's Password" + +#~ msgid "Crear Grupo" +#~ msgstr "Add Group" + +#~ msgid "Crear Perfil" +#~ msgstr "Add Profile" + +#~ msgid "Actualizar Perfil" +#~ msgstr "Update Profile" + +#~ msgid "Crear Cliente" +#~ msgstr "Add Client" + +#~ msgid "Crear Categoría" +#~ msgstr "Add Category" + +#~ msgid "Actualizar Categoría" +#~ msgstr "Update Category" + +#~ msgid "Crear Autorización" +#~ msgstr "Add Authorization" + +#~ msgid "Crear Campo" +#~ msgstr "Add Field" + +#~ msgid "Actualizar Campo" +#~ msgstr "Update Field" + +#~ msgid "Crear Enlace" +#~ msgstr "Create Link" + +#~ msgid "Crear Etiqueta" +#~ msgstr "Add Tag" + +#~ msgid "Actualizar Etiqueta" +#~ msgstr "Update Tag" + +#~ msgid "Actualizar Plugin" +#~ msgstr "Update Plugin" + +#~ msgid "Crear Cuenta" +#~ msgstr "Add Account" + +#~ msgid "Usuarios importados" +#~ msgstr "Imported users" + +#~ msgid "Acceso denegado" +#~ msgstr "Access denied" + +#~ msgid "Error al añadir las etiquetas de la cuenta" +#~ msgstr "Error while adding the account's tags" + +#~ msgid "Grupos eliminados" +#~ msgstr "Groups deleted" + +#~ msgid "Perfiles eliminados" +#~ msgstr "Profiles deleted" + +#~ msgid "Clientes eliminados" +#~ msgstr "Clients deleted" + +#~ msgid "Categorías eliminadas" +#~ msgstr "Categories deleted" + +#~ msgid "Autorizaciones eliminadas" +#~ msgstr "Authorizations deleted" + +#~ msgid "Campos eliminados" +#~ msgstr "Fields deleted" + +#~ msgid "Enlaces eliminados" +#~ msgstr "Links deleted" + +#~ msgid "Etiquetas eliminadas" +#~ msgstr "Tags deleted" + +#~ msgid "Archivos eliminados" +#~ msgstr "Files deleted" + +#~ msgid "Cuentas eliminadas" +#~ msgstr "Accounts removed" + +#~ msgid "Notificación creada" +#~ msgstr "Notification created" + +#~ msgid "Notificaciones eliminadas" +#~ msgstr "Notifications deleted" + +#~ msgid "Usando clave temporal" +#~ msgstr "Using temporary password" + +#~ msgid "Clave temporal caducada" +#~ msgstr "Temporary password expired" + +#~ msgid "Sesión" +#~ msgstr "Session" + +#~ msgid "Error al comprobar la base de datos" +#~ msgstr "Error while checking the database" + +#~ msgid "Intente de nuevo la instalación" +#~ msgstr "Please, try the installation again" + +#~ msgid "Es necesario un componente" +#~ msgstr "A component is needed" + +#~ msgid "Es necesario un tipo" +#~ msgstr "A type is needed" + +#~ msgid "Es necesario un destinatario" +#~ msgstr "A target is needed" + +#~ msgid "Error procesando línea" +#~ msgstr "Error while processing line" + +#~ msgid "Cuentas importadas" +#~ msgstr "Accounts imported" + +#~ msgid "Archivo no encontrado" +#~ msgstr "File not found" + +#~ msgid "Grupo no encontrado" +#~ msgstr "Group not found" + +#~ msgid "Notificación no encontrada" +#~ msgstr "Notification not found" + +#~ msgid "Plugin no encontrado" +#~ msgstr "Plugin not found" + +#~ msgid "Perfil no encontrado" +#~ msgstr "Profile not found" + +#~ msgid "Enlace no encontrado" +#~ msgstr "Link not found" + +#~ msgid "Etiqueta no encontrada" +#~ msgstr "Tag not found" + +#~ msgid "Usuario no encontrado" +#~ msgstr "User not found" + +#~ msgid "Consulta en blanco" +#~ msgstr "Blank query" + +#~ msgid "No es posible iniciar una transacción" +#~ msgstr "Unable to start a transaction" + +#~ msgid "No es posible finalizar una transacción" +#~ msgstr "Unable to finish a transaction" + +#~ msgid "Cuenta no encontrada" +#~ msgstr "Account not found" + +#~ msgid "Hash de clave maestra actualizado" +#~ msgstr "Master password hash updated" + +#~ msgid "Error al actualizar el hash de la clave maestra" +#~ msgstr "Error while updating the master password hash" + +#~ msgid "Usuarios eliminados" +#~ msgstr "Users deleted" + +#~ msgid "Notificación actualizada" +#~ msgstr "Notification updated" + +#~ msgid "Restricción de integridad" +#~ msgstr "Integrity constraint" + +#~ msgid "Clave de encriptación incorrecta" +#~ msgstr "Wrong encryption password" + +#~ msgid "Código de seguridad incorrecto" +#~ msgstr "Wrong security code" + +#~ msgid "Es necesario confirmar la actualización" +#~ msgstr "The updating need to be confirmed" + +#~ msgid "En 5 segundos será redirigido al login" +#~ msgstr "You will be redirected to log in within 5 seconds" + +#~ msgid "Error al aplicar la actualización de la aplicación" +#~ msgstr "Error while applying the application update" + +#~ msgid "Intentos excedidos" +#~ msgstr "Attempts exceeded" + +#~ msgid "Token no encontrado" +#~ msgstr "Token not found" + +#~ msgid "Error al crear track" +#~ msgstr "Error while creating track" + +#~ msgid "Error al eliminar track" +#~ msgstr "Error while removing the track" + +#~ msgid "Error al actualizar track" +#~ msgstr "Error while updating the track" + +#~ msgid "Error al obtener track" +#~ msgstr "Error while retrieving the track" + +#~ msgid "Error al obtener tracks" +#~ msgstr "Error while retrieving the tracks" + +#~ msgid "Actualizando IDs de cuentas" +#~ msgstr "Updating account IDs" + +#~ msgid "Actualizando IDs de categorías" +#~ msgstr "Updating category IDs" + +#~ msgid "Actualizando IDs de clientes" +#~ msgstr "Updating Client IDs" + +#~ msgid "Actualizando IDs de grupos" +#~ msgstr "Updating group IDs" + +#~ msgid "Actualizando IDs de perfil" +#~ msgstr "Updating profile IDs" + +#~ msgid "Actualizando IDs de usuarios" +#~ msgstr "Updating user IDs" + +#~ msgid "Acción no encontrada" +#~ msgstr "Action not found" + +#~ msgid "Contexto ya inicializado" +#~ msgstr "Context already initialized" + +#~ msgid "Contexto inválido" +#~ msgstr "Invalid context" + +#~ msgid "Contexto no inicializado" +#~ msgstr "Context not initialized" + +#~ msgid "Clase no válida para iconos" +#~ msgstr "Invalid icons class" + +#~ msgid "Tipo de filtro inválido" +#~ msgstr "Invalid filter type" + +#~ msgid "Tipo de objeto incorrecto" +#~ msgstr "Wrong object type" + +#~ msgid "No es posible inicializar" +#~ msgstr "Unable to initialize" + +#~ msgid "Error al eliminar los archivos" +#~ msgstr "Error while deleting the files" + +#~ msgid "Error al eliminar las cuentas" +#~ msgstr "Error while deleting the accounts" + +#~ msgid "Error al eliminar la categorías" +#~ msgstr "Error while deleting the categories" + +#~ msgid "Error al eliminar los clientes" +#~ msgstr "Error while deleting the clients" + +#~ msgid "Error al eliminar los campos personalizados" +#~ msgstr "Error while removing the custom fields" + +#~ msgid "Error al crear el tipo de campo" +#~ msgstr "Error while creating the field type" + +#~ msgid "Error al actualizar el tipo de campo" +#~ msgstr "Error while updating the field type" + +#~ msgid "Error al eliminar el tipo de campo" +#~ msgstr "Error while deleting the field type" + +#~ msgid "Error al eliminar las notificaciones" +#~ msgstr "Error while deleting the notifications" + +#~ msgid "El enlace no existe" +#~ msgstr "The link does not exist" + +#~ msgid "Error al eliminar etiquetas" +#~ msgstr "Error while removing the tags" + +#~ msgid "Error al eliminar los usuarios" +#~ msgstr "Error while deleting the users" + +#~ msgid "El usuario no existe" +#~ msgstr "The user does not exist" + +#~ msgid "Error al eliminar los perfiles" +#~ msgstr "Error while removing the profiles" + +#~ msgid "Error al eliminar archivos" +#~ msgstr "Error while deleting the files" + +#~ msgid "Fomato incorrecto" +#~ msgstr "Invalid format" + +#~ msgid "Error al eliminar tokens" +#~ msgstr "Error while removing the tokens" + +#~ msgid "Copiando base de datos" +#~ msgstr "Copying database" + +#~ msgid "Copiando aplicación" +#~ msgstr "Copying application" + +#~ msgid "Rollback" +#~ msgstr "Rollback" + +#~ msgid "Error al comprobar clave temporal" +#~ msgstr "Error while checking the temporary password" + +#~ msgid "Campo no encontrado" +#~ msgstr "Field not found" + +#~ msgid "Error al eliminar los campos" +#~ msgstr "Error while deleting the fields" + +#~ msgid "Exportando categorías" +#~ msgstr "Exporting categories" + +#~ msgid "Exportando clientes" +#~ msgstr "Exporting clients" + +#~ msgid "Exportando etiquetas" +#~ msgstr "Exporting tags" + +#~ msgid "Exportando cuentas" +#~ msgstr "Exporting accounts" + +#~ msgid "Cuenta importada" +#~ msgstr "Account imported" + +#~ msgid "Importación XML KeePass" +#~ msgstr "KeePass XML Import" + +#~ msgid "Categoría importada" +#~ msgstr "Category imported" + +#~ msgid "Importación XML sysPass" +#~ msgstr "sysPass XML Import" + +#~ msgid "Datos desencriptados" +#~ msgstr "Data unencrypted" + +#~ msgid "Cliente importado" +#~ msgstr "Client imported" + +#~ msgid "Etiqueta importada" +#~ msgstr "Tag imported" + +#~ msgid "Formato no detectado" +#~ msgstr "Format not detected" + +#~ msgid "Not implemented" +#~ msgstr "Not implemented" + +#~ msgid "Prueba de correo" +#~ msgstr "Mail test" + +#~ msgid "" +#~ "Esto es una prueba de correo para verificar el correcto funcionamiento de " +#~ "la configuración." +#~ msgstr "" +#~ "This is a test email in order to verify that the configuration is working " +#~ "right." + +#~ msgid "Error al eliminar los enlaces" +#~ msgstr "Error while removing the links" + +#~ msgid "Segundos" +#~ msgstr "Seconds" + +#~ msgid "Actualizar Aplicación" +#~ msgstr "Update Application" + +#~ msgid "Actualización de campos personalizados" +#~ msgstr "Custom fields update" + +#~ msgid "Campo" +#~ msgstr "Field" + +#~ msgid "Actualización de enlaces públicos" +#~ msgstr "Public links update" + +#~ msgid "Enlace" +#~ msgstr "Link" + +#~ msgid "Error al eliminar los grupos" +#~ msgstr "Error while deleting the groups" + +#~ msgid "Error al leer datos del archivo (%s)" +#~ msgstr "Error while reading file data (%s)" + +#~ msgid "Error al eliminar el archivo (%s)" +#~ msgstr "Error while deleting the file (%s)" + +#~ msgid "No es posible leer/escribir el archivo (%s)" +#~ msgstr "Unable to read/write the file (%s)" + +#~ msgid "Error al escribir datos en el archivo (%s)" +#~ msgstr "Error while writing data to file (%s)" + +#~ msgid "Cuenta visualizada" +#~ msgstr "Account displayed" + +#~ msgid "Clave visualizada" +#~ msgstr "Password viewed" + +#~ msgid "Exportación de sysPass en XML" +#~ msgstr "sysPass XML export" + +#~ msgid "Etiqueta" +#~ msgstr "Tag" + +#~ msgid "Es necesario actualizar" +#~ msgstr "Updating needed" + +#~ msgid "HTTPS" +#~ msgstr "HTTPS" + +#~ msgid "Clave copiada" +#~ msgstr "Password copied" + +#~ msgid "Archivo visualizado" +#~ msgstr "File viewed" + +#~ msgid "Archivo: %s" +#~ msgstr "File: %s" + +#~ msgid "Máximo tamaño: %s" +#~ msgstr "Maximum size: %s" + +#~ msgid "Máximo tamaño: %d KB" +#~ msgstr "Maximum size: %d KB" + +#~ msgid "Archivo Eliminado" +#~ msgstr "File Deleted" + +#~ msgid "Autorización" +#~ msgstr "Authorization" + +#~ msgid "Autorización visualizada" +#~ msgstr "Authorization viewed" + +#~ msgid "Archivos habilitados" +#~ msgstr "Files enabled" + +#~ msgid "Archivos deshabilitados" +#~ msgstr "Files disabled" + +#~ msgid "Enlaces públicos habilitados" +#~ msgstr "Public links enabled" + +#~ msgid "Enlaces públicos deshabilitados" +#~ msgstr "Public links disabled" + +#~ msgid "Email enviado" +#~ msgstr "Email sent" + +#~ msgid "Error al enviar email" +#~ msgstr "Error while sending the email" + +#~ msgid "Syslog remoto habilitado" +#~ msgstr "Remote syslog enabled" + +#~ msgid "Auth Basic habilitada" +#~ msgstr "Auth Basic enabled" + +#~ msgid "Auth Basic deshabiltada" +#~ msgstr "Auth Basic disabled" + +#~ msgid "No se importaron cuentas" +#~ msgstr "No accounts were imported" + +#~ msgid "Parámetros de LDAP incorrectos" +#~ msgstr "Wrong LDAP parameters" + +#~ msgid "Importación LDAP" +#~ msgstr "LDAP Import" + +#~ msgid "Compruebe su buzón de correo" +#~ msgstr "Please, check your inbox" + +#~ msgid "DokuWiki habilitada" +#~ msgstr "DokuWiki enabled" + +#~ msgid "Versión no disponible" +#~ msgstr "Version unavailable" + +#~ msgid "Notificaciones no disponibles" +#~ msgstr "Notifications not available" + +#~ msgid "Datos incorrectos" +#~ msgstr "Wrong data" + +#~ msgid "No es posible recuperar la clave" +#~ msgstr "Unable to reset the password" + +#~ msgid "Es necesario una cuenta" +#~ msgstr "An account is needed" + +#~ msgid "Usar auto-login con Auth Basic" +#~ msgstr "Use auto-login through Auth Basic" + +#~ msgid "No es posible cambiar el valor de la clave" +#~ msgstr "Unable to change password value" + +#~ msgid "Filtro incorrecto" +#~ msgstr "Wrong filter" + +#~ msgid "El campo personalizado no existe" +#~ msgstr "Custom field not found" + +#~ msgid "Error al eliminar los plugins" +#~ msgstr "Error while deleting the plugins" + +#~ msgid "Clave maestra no establecida" +#~ msgstr "Master password not set" + +#~ msgid "Error al eliminar las categorías" +#~ msgstr "Error while deleting categories" + +#~ msgid "No es posible restaurar la configuración" +#~ msgstr "Unable to restore configuration" + +#~ msgid "Tipo de campo no encontrado" +#~ msgstr "Field type not found" + +#~ msgid "Fallo en la verificación del hash de integridad" +#~ msgstr "Error while checking integrity hash" + +#~ msgid "Error al crear el usuario 'admin'" +#~ msgstr "Error while creating 'admin' user" + +#~ msgid "Servicio de correo no disponible" +#~ msgstr "Mail service unavailable" + +#~ msgid "Error ol obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master pass from context" + +#~ msgid "Error ol establecer la clave maestra en el contexto" +#~ msgstr "Error while setting master password in context" + +#~ msgid "Track no encontrado" +#~ msgstr "Track not found" + +#~ msgid "Actualización de autorizaciones API" +#~ msgstr "API authorizations update" + +#~ msgid "El nodo XML no existe" +#~ msgstr "The XML node does not exist" + +#~ msgid "Imagen no válida" +#~ msgstr "Invalid image" + +#~ msgid "Verificación de datos exportados finalizada" +#~ msgstr "Verification of exported data finished" + +#~ msgid "Error al actualizar los datos del campo personalizado" +#~ msgstr "Error while updating custom field's data" + +#~ msgid "Error al obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master password from context" + +#~ msgid "Nuevo CLiente" +#~ msgstr "New Client" + +#~ msgid "" +#~ "Si está importando un archivo exportado desde el mismo origen, los datos " +#~ "pueden estar comprometidos." +#~ msgstr "" +#~ "If you are importing an exported file from the same origin, the data " +#~ "could be compromised." + +#~ msgid "Categoría visualizada" +#~ msgstr "Category displayed" + +#~ msgid "Cliente visualizado" +#~ msgstr "Client displayed" + +#~ msgid "Etiqueta visualizada" +#~ msgstr "Tag displayed" + +#~ msgid "Error al crear permiso" +#~ msgstr "Error while creating the permission" + +#~ msgid "Error al actualizar permiso" +#~ msgstr "Error while updating the permission" + +#~ msgid "Error al eliminar permiso" +#~ msgstr "Error while removing the permission" + +#~ msgid "Error al eliminar los permisos" +#~ msgstr "Error while removing the permissions" + +#~ msgid "Permiso no encontrada" +#~ msgstr "Permission not found" + +#~ msgid "Ver Permiso" +#~ msgstr "View Permission" + +#~ msgid "Nuevo Permiso" +#~ msgstr "New Permission" + +#~ msgid "Editar Permiso" +#~ msgstr "Edit Permission" + +#~ msgid "Permisos eliminados" +#~ msgstr "Permissions deleted" + +#~ msgid "Permiso eliminado" +#~ msgstr "Permission deleted" + +#~ msgid "Permiso creado" +#~ msgstr "Permission added" + +#~ msgid "Permiso actualizado" +#~ msgstr "Permission updated" + +#~ msgid "Permisos por Defecto" +#~ msgstr "Default Permissions" + +#~ msgid "Buscar Permiso" +#~ msgstr "Search for Permission" + +#~ msgid "Eliminar Permiso" +#~ msgstr "Delete Permission" + +#~ msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" +#~ msgstr "An element of type user, group or profile need to be set" + +#~ msgid "No hay permisos definidos" +#~ msgstr "There aren't any defined permissions" + +#~ msgid "" +#~ "Prioridad de asignación en caso de coincidir con otros permisos asignados " +#~ "por usuario, grupo o perfil." +#~ msgstr "" +#~ "Assignment priority if permissions match with others assigned by user, " +#~ "group or profile." + +#~ msgid "" +#~ "Indica si los permisos serán forzados al crear o modificar la cuenta." +#~ msgstr "" +#~ "Enforces the permissions to be set either on creating or updating an " +#~ "account ." + +#~ msgid "Los permisos serán añadidos a los existentes." +#~ msgstr "Permissions will be merged with the existing ones." + +#~ msgid "Gestión Permisos" +#~ msgstr "Permissions Management" + +#~ msgid "La clave no cumple los carácteres requeridos" +#~ msgstr "Password does not contain the required characters" + +#~ msgid "Es necesario que la clave contenga letras" +#~ msgstr "Password needs to contain letters" + +#~ msgid "Es necesario que la clave contenga minúsculas" +#~ msgstr "Password needs to contain lower case letters" + +#~ msgid "Es necesario que la clave contenga mayúsculas" +#~ msgstr "Password needs to contain upper case letters" + +#~ msgid "Es necesario que la clave contenga números" +#~ msgstr "Password needs to contain numbers" + +#~ msgid "Es necesario que la clave contenga símbolos" +#~ msgstr "Password needs to contain symbols" + +#~ msgid "Error al desconectar del servidor de LDAP" +#~ msgstr "Error while disconnecting from LDAP server" + +#~ msgid "Valor no encontrada" +#~ msgstr "Value not found" + +#~ msgid "Error al eliminar los valores" +#~ msgstr "Error while deleting the values" + +#~ msgid "Dirección IP no establecida" +#~ msgstr "IP address not set" + +#~ msgid "Valores eliminados" +#~ msgstr "Values deleted" + +#~ msgid "Valor eliminado" +#~ msgstr "Value deleted" + +#~ msgid "Valor creado" +#~ msgstr "Value created" + +#~ msgid "Valor actualizado" +#~ msgstr "Value updated" + +#~ msgid "Tipo de valor no definido o incorrecto" +#~ msgstr "Value type not set or incorrect" + +#~ msgid "Expresión regular inválida" +#~ msgstr "Invalid regular expression" + +#~ msgid "Error al vaciar tracks" +#~ msgstr "Error while clearing tracks out" + +#~ msgid "Track desbloqueado" +#~ msgstr "Track unlocked" + +#~ msgid "Tracks limpiados" +#~ msgstr "Tracks cleared out" + +#~ msgid "Grupo visualizado" +#~ msgstr "Group viewed" + +#~ msgid "Plugin disponible" +#~ msgstr "Plugin available" + +#~ msgid "Plugin no disponible" +#~ msgstr "Plugin unavailable" + +#~ msgid "Plugin cargado" +#~ msgstr "Plugin loaded" diff --git a/app/locales/it_IT/LC_MESSAGES/messages.mo b/app/locales/it_IT/LC_MESSAGES/messages.mo index c4f00762bf4d4a8e8d2b57bc9859625f0c2a0277..8eaa466d12c15b3b73ff9f3bfbb7ff24e822308d 100644 GIT binary patch literal 8246 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 K-Gl&7Ci)LCZ!)j| literal 119096 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\n" "Language-Team: nuxsmin@syspass.org \n" "Language: it_IT\n" @@ -17,1415 +17,17 @@ msgstr "" "X-Poedit-SearchPath-1: ../../../../lib\n" "X-Poedit-SearchPath-2: ../../../config\n" -#: ../../../modules/web/Controllers/AccountFileController.php:161 -msgid "CONSULTA INVÁLIDA" -msgstr "RICHIESTA NON VALIDA" - -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:64 -msgid "La sesión no se ha iniciado o ha caducado" -msgstr "Sessione non avviata o scaduta" - -#: ../../../modules/web/Forms/AccountForm.php:171 -msgid "Es necesario un nombre de cuenta" -msgstr "È richiesto un nome account" - -#: ../../../modules/web/Forms/AccountForm.php:175 -#: ../../../modules/web/Forms/ClientForm.php:84 -msgid "Es necesario un nombre de cliente" -msgstr "È richiesto un nome cliente" - -#: ../../../modules/web/Forms/AccountForm.php:161 -msgid "Es necesario un usuario" -msgstr "È richiesto un utente" - -#: ../../../modules/web/Forms/AccountForm.php:131 -msgid "Es necesaria una clave" -msgstr "È richiesta una password" - -#: ../../../modules/web/Forms/AccountForm.php:179 -msgid "Es necesario una categoría" -msgstr "È richiesta uan categoria" - -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:114 -msgid "Acción Inválida" -msgstr "Azione non valida" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:86 -#: ../../../modules/web/Controllers/UserPassResetController.php:173 -#: ../../../modules/web/Forms/AccountForm.php:135 -#: ../../../modules/web/Forms/UserForm.php:161 -msgid "Las claves no coinciden" -msgstr "Le password non corrispondono" - -#: ../../../modules/api/Controllers/AccountController.php:184 -#: ../../../modules/api/Controllers/AccountController.php:190 -#: ../../../modules/web/Controllers/AccountController.php:718 -#: ../../../modules/web/Controllers/AccountController.php:729 -msgid "Cuenta creada" -msgstr "Account creato" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:200 -msgid "Error al crear la cuenta" -msgstr "Errore durante la creazione dell'utente" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:95 -#: ../../../modules/web/Controllers/ConfigMailController.php:102 -#: ../../../config/strings.js.inc:80 -msgid "Sin cambios" -msgstr "Nessun cambiamento" - -#: ../../../modules/api/Controllers/AccountController.php:234 -#: ../../../modules/api/Controllers/AccountController.php:240 -#: ../../../modules/web/Controllers/AccountController.php:763 -#: ../../../modules/web/Controllers/AccountController.php:774 -msgid "Cuenta actualizada" -msgstr "Account aggiornato" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:382 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:431 -msgid "Error al modificar la cuenta" -msgstr "Errore durante l'aggiornamento dell'account" - -#: ../../../modules/api/Controllers/AccountController.php:309 -#: ../../../modules/api/Controllers/AccountController.php:315 -#: ../../../modules/web/Controllers/AccountController.php:893 -#: ../../../modules/web/Controllers/AccountController.php:898 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:110 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:115 -#: ../../../modules/web/Controllers/AccountManagerController.php:145 -#: ../../../modules/web/Controllers/AccountManagerController.php:150 -msgid "Cuenta eliminada" -msgstr "Account rimosso" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:162 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:321 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:192 -msgid "Error al eliminar la cuenta" -msgstr "Errore durante l'eliminazione dell'account" - -#: ../../../modules/api/Controllers/AccountController.php:138 -#: ../../../modules/api/Controllers/AccountController.php:144 -#: ../../../modules/web/Controllers/AccountController.php:804 -#: ../../../modules/web/Controllers/AccountController.php:815 -#: ../../../modules/web/Controllers/UserController.php:411 -#: ../../../modules/web/Controllers/UserController.php:415 -#: ../../../modules/web/Controllers/UserPassResetController.php:186 -#: ../../../modules/web/Controllers/UserPassResetController.php:190 -msgid "Clave actualizada" -msgstr "Password aggiornata" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:436 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:235 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:260 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:233 -msgid "Error al actualizar la clave" -msgstr "Errore durante l'aggiornamento della password" - -#: ../../../modules/web/Controllers/AccountController.php:843 -#: ../../../modules/web/Controllers/AccountController.php:854 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:145 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:150 -msgid "Cuenta restaurada" -msgstr "Account ripristinato" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:301 -#: ../../../../lib/SP/Services/Account/AccountService.php:582 -msgid "Error al restaurar cuenta" -msgstr "Errore durante il ripristino dell'account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 -#: ../../../config/actions.xml:571 -msgid "Ver Usuario" -msgstr "Visualizza utente" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 -#: ../../../config/actions.xml:583 -msgid "Editar Usuario" -msgstr "Modifica utente" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 -#: ../../../config/actions.xml:577 -msgid "Nuevo Usuario" -msgstr "Nuovo utente" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 -#: ../../../config/actions.xml:607 -msgid "Ver Grupo" -msgstr "Visualizza gruppo" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 -#: ../../../config/actions.xml:619 -msgid "Editar Grupo" -msgstr "Modifica gruppo" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 -#: ../../../config/actions.xml:613 -msgid "Nuevo Grupo" -msgstr "Nuovo gruppo" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 -#: ../../../config/actions.xml:637 -msgid "Ver Perfil" -msgstr "Visualizza profilo" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 -#: ../../../config/actions.xml:649 -msgid "Editar Perfil" -msgstr "Modifica profilo" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 -#: ../../../config/actions.xml:643 -msgid "Nuevo Perfil" -msgstr "Nuovo profilo" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 -#: ../../../config/actions.xml:331 -#, fuzzy -msgid "Ver Cliente" -msgstr "Visualizza cliente" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 -#: ../../../config/actions.xml:343 -#, fuzzy -msgid "Editar Cliente" -msgstr "Modifica cliente" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 -#: ../../../config/actions.xml:337 -#, fuzzy -msgid "Nuevo Cliente" -msgstr "Nuovo cliente" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 -#: ../../../config/actions.xml:301 -msgid "Ver Categoría" -msgstr "Visualizza categoria" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 -#: ../../../config/actions.xml:313 -msgid "Editar Categoría" -msgstr "Modifica categoria" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 -#: ../../../config/actions.xml:307 -msgid "Nueva Categoría" -msgstr "Nuova categoria" - -#: ../../../modules/web/Controllers/AuthTokenController.php:330 -msgid "Ver Autorización" -msgstr "Visualizza autorizzazione" - -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 -msgid "Nueva Autorización" -msgstr "Nuova autorizzazione" - -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 -msgid "Editar Autorización" -msgstr "Modifica autorizzazione" - -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 -msgid "Nuevo Campo" -msgstr "Nuovo campo" - -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 -msgid "Editar Campo" -msgstr "Modifica campo" - -#: ../../../modules/web/Forms/UserForm.php:111 -#, fuzzy -msgid "Es necesario un nombre de usuario" -msgstr "È richiesto un nome utente" - -#: ../../../modules/web/Forms/UserForm.php:115 -msgid "Es necesario un login" -msgstr "È richiesto un login" - -#: ../../../modules/web/Forms/UserForm.php:119 -msgid "Es necesario un perfil" -msgstr "È richiesto un profilo" - -#: ../../../modules/web/Forms/UserForm.php:123 -msgid "Es necesario un grupo" -msgstr "È richiesto un gruppo" - -#: ../../../modules/web/Forms/UserForm.php:127 -msgid "Es necesario un email" -msgstr "È richiesta una mail" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:53 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:92 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:151 -#: ../../../modules/web/Controllers/ConfigImportController.php:56 -#: ../../../modules/web/Controllers/ConfigLdapController.php:218 -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:55 -#: ../../../modules/web/Forms/UserForm.php:131 -#: ../../../modules/web/Forms/UserForm.php:153 -#: ../../../modules/web/Forms/UserForm.php:171 -msgid "Ey, esto es una DEMO!!" -msgstr "Ehi, questa è una DEMO !!" - -#: ../../../modules/web/Controllers/UserPassResetController.php:169 -#: ../../../modules/web/Forms/AuthTokenForm.php:101 -#: ../../../modules/web/Forms/UserForm.php:157 -msgid "La clave no puede estar en blanco" -msgstr "La password non può essere vuota" - -#: ../../../modules/web/Controllers/UserController.php:311 -#: ../../../modules/web/Controllers/UserController.php:317 -msgid "Usuario creado" -msgstr "Utente creato" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:474 -msgid "Error al crear el usuario" -msgstr "Errore durante la creazione dell'utente" - -#: ../../../modules/web/Controllers/UserController.php:372 -#: ../../../modules/web/Controllers/UserController.php:378 -msgid "Usuario actualizado" -msgstr "Utente aggiornato" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:100 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:677 -#: ../../../../lib/SP/Services/User/UserService.php:310 -msgid "Error al actualizar el usuario" -msgstr "Errore durante l'aggiornamento dell'utente" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:165 -#: ../../../../lib/SP/Services/User/UserService.php:331 -msgid "Error al modificar la clave" -msgstr "Errore durante la modifica della password" - -#: ../../../modules/web/Forms/UserForm.php:179 -msgid "No es posible eliminar, usuario en uso" -msgstr "Non è possibile cancellare, utente in uso" - -#: ../../../modules/web/Controllers/UserController.php:277 -#: ../../../modules/web/Controllers/UserController.php:281 -msgid "Usuario eliminado" -msgstr "Utente eliminato" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:184 -msgid "Error al eliminar el usuario" -msgstr "Errore durante l'eliminazione dell'utente" - -#: ../../../modules/web/Forms/UserGroupForm.php:84 -msgid "Es necesario un nombre de grupo" -msgstr "È richiesto un nome di gruppo" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:306 -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:351 -msgid "Nombre de grupo duplicado" -msgstr "Duplica il nome del gruppo" - -#: ../../../modules/api/Controllers/UserGroupController.php:91 -#: ../../../modules/api/Controllers/UserGroupController.php:96 -#: ../../../modules/web/Controllers/UserGroupController.php:264 -#: ../../../modules/web/Controllers/UserGroupController.php:268 -msgid "Grupo creado" -msgstr "Gruppo creato" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:315 -msgid "Error al crear el grupo" -msgstr "Errore durante la creazione del gruppo" - -#: ../../../modules/api/Controllers/UserGroupController.php:122 -#: ../../../modules/api/Controllers/UserGroupController.php:127 -#: ../../../modules/web/Controllers/UserGroupController.php:303 -#: ../../../modules/web/Controllers/UserGroupController.php:307 -msgid "Grupo actualizado" -msgstr "Gruppo aggiornato" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:361 -msgid "Error al actualizar el grupo" -msgstr "Errore durante l'aggiornamento del gruppo" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 -msgid "Usuarios" -msgstr "Utenti" - -#. (itstool) path: action/text -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigBackupController.php:120 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 -#: ../../../config/actions.xml:13 -msgid "Cuentas" -msgstr "Account" - -#: ../../../../inc/SP/Mgmt/Customers/Customer.class.php:115 -msgid "No es posible eliminar" -msgstr "Non è possibile cancellare" - -#: ../../../modules/api/Controllers/UserGroupController.php:151 -#: ../../../modules/api/Controllers/UserGroupController.php:156 -#: ../../../modules/web/Controllers/UserGroupController.php:230 -#: ../../../modules/web/Controllers/UserGroupController.php:234 -msgid "Grupo eliminado" -msgstr "Gruppo cancellato" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:62 -msgid "Error al eliminar el grupo" -msgstr "Errore durante l'eliminazione del gruppo" - -#: ../../../modules/web/Forms/UserProfileForm.php:116 -msgid "Es necesario un nombre de perfil" -msgstr "È richiesto un nome profilo" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:230 -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:275 -msgid "Nombre de perfil duplicado" -msgstr "Nome del profilo duplicato" - -#: ../../../modules/web/Controllers/UserProfileController.php:248 -msgid "Perfil creado" -msgstr "Profilo creato" - -#: ../../../modules/web/Controllers/UserProfileController.php:284 -msgid "Perfil actualizado" -msgstr "Profilo aggiornato" - -#: ../../../modules/web/Controllers/UserProfileController.php:215 -#: ../../../modules/web/Controllers/UserProfileController.php:219 -msgid "Perfil eliminado" -msgstr "Profilo eliminato" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:77 -#: ../../../modules/api/Controllers/ClientController.php:93 -#: ../../../modules/api/Controllers/ClientController.php:98 -#: ../../../modules/web/Controllers/ClientController.php:244 -#: ../../../modules/web/Controllers/ClientController.php:248 -msgid "Cliente creado" -msgstr "Cliente creato" - -#: ../../../modules/api/Controllers/ClientController.php:124 -#: ../../../modules/api/Controllers/ClientController.php:129 -#: ../../../modules/web/Controllers/ClientController.php:280 -#: ../../../modules/web/Controllers/ClientController.php:284 -#, fuzzy -msgid "Cliente actualizado" -msgstr "Cliente aggiornato" - -#: ../../../modules/api/Controllers/ClientController.php:153 -#: ../../../modules/api/Controllers/ClientController.php:158 -#: ../../../modules/web/Controllers/ClientController.php:212 -#: ../../../modules/web/Controllers/ClientController.php:216 -#, fuzzy -msgid "Cliente eliminado" -msgstr "Cliente eliminato" - -#: ../../../modules/web/Forms/CategoryForm.php:83 -msgid "Es necesario un nombre de categoría" -msgstr "È richiesto un nome di categoria" - -#: ../../../modules/api/Controllers/CategoryController.php:91 -#: ../../../modules/api/Controllers/CategoryController.php:96 -#: ../../../modules/web/Controllers/CategoryController.php:253 -#: ../../../modules/web/Controllers/CategoryController.php:257 -msgid "Categoría creada" -msgstr "Categoria creata" - -#: ../../../modules/api/Controllers/CategoryController.php:121 -#: ../../../modules/api/Controllers/CategoryController.php:126 -#: ../../../modules/web/Controllers/CategoryController.php:293 -#: ../../../modules/web/Controllers/CategoryController.php:297 -msgid "Categoría actualizada" -msgstr "Categoria aggiornata" - -#: ../../../modules/api/Controllers/CategoryController.php:150 -#: ../../../modules/api/Controllers/CategoryController.php:155 -#: ../../../modules/web/Controllers/CategoryController.php:219 -#: ../../../modules/web/Controllers/CategoryController.php:223 -msgid "Categoría eliminada" -msgstr "Categoria eliminata" - -#: ../../../modules/web/Controllers/AuthTokenController.php:258 -msgid "Autorización creada" -msgstr "Autorizzazione creata" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 -#: ../../../modules/web/Controllers/AuthTokenController.php:291 -#: ../../../modules/web/Controllers/AuthTokenController.php:300 -#: ../../../modules/web/Controllers/AuthTokenController.php:307 -msgid "Autorización actualizada" -msgstr "Autorizzazione aggiornata" - -#: ../../../modules/web/Controllers/AuthTokenController.php:225 -#: ../../../modules/web/Controllers/AuthTokenController.php:229 -msgid "Autorización eliminada" -msgstr "Autorizzazione rimossa" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:87 -msgid "Nombre del campo no indicado" -msgstr "Nome del campo non indicato" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:91 -msgid "Tipo del campo no indicado" -msgstr "Tipo di campo non indicato" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:95 -msgid "Módulo del campo no indicado" -msgstr "Modulo di campo non indicato" - -#: ../../../modules/web/Controllers/CustomFieldController.php:234 -#: ../../../modules/web/Controllers/CustomFieldController.php:238 -msgid "Campo creado" -msgstr "Campo creato" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:74 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:87 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:156 -#: ../../../modules/web/Controllers/CustomFieldController.php:271 -#: ../../../modules/web/Controllers/CustomFieldController.php:275 -msgid "Campo actualizado" -msgstr "Campo aggiornato" - -#: ../../../modules/web/Controllers/CustomFieldController.php:206 -msgid "Campo eliminado" -msgstr "Campo rimosso" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:94 -msgid "Realizar Backup" -msgstr "Crea Backup" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:112 -msgid "Error al realizar el backup" -msgstr "Errore durante il backup" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:114 -#: ../../../../lib/SP/Services/Export/XmlExportService.php:167 -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -msgid "Revise el registro de eventos para más detalles" -msgstr "Controlla il registro eventi per maggiori dettagli" - -#: ../../../modules/api/Controllers/ConfigController.php:57 -#: ../../../modules/web/Controllers/ConfigBackupController.php:64 -msgid "Copia de la aplicación y base de datos realizada correctamente" -msgstr "Copia dell'applicazione e del database eseguiti correttamente" - -#: ../../../modules/api/Controllers/ConfigController.php:61 -#: ../../../modules/web/Controllers/ConfigBackupController.php:67 -msgid "Proceso de backup finalizado" -msgstr "Processo di backup completato" - -#: ../../../../inc/SP/Core/XmlExport.class.php:146 -msgid "Error al realizar la exportación de cuentas" -msgstr "Errore durante l'esportazione degli account" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:165 -msgid "Error al realizar la exportación" -msgstr "Errore durante l'esportazione" - -#: ../../../../inc/SP/Core/XmlExport.class.php:155 -msgid "Exportación de cuentas realizada correctamente" -msgstr "Esportazione degli account avvenuta con successo" - -#: ../../../modules/api/Controllers/ConfigController.php:91 -#: ../../../modules/api/Controllers/ConfigController.php:94 -#: ../../../modules/web/Controllers/ConfigBackupController.php:102 -#: ../../../modules/web/Controllers/ConfigBackupController.php:127 -msgid "Proceso de exportación finalizado" -msgstr "Processo di esportazione finito" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:169 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:171 -msgid "Los parámetros de LDAP no están configurados" -msgstr "I parametri LDAP non sono configurati" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:95 -#: ../../../modules/web/Controllers/ConfigLdapController.php:154 -#: ../../../modules/web/Controllers/ConfigLdapController.php:197 -msgid "Conexión a LDAP correcta" -msgstr "Connetti per correggere LDAP" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:109 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:196 -msgid "Objetos encontrados" -msgstr "Oggetti trovati" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:257 -msgid "Modificar Configuración" -msgstr "Modifica impostazioni" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:70 -msgid "El tamaño máximo por archivo es de 16MB" -msgstr "La dimensione massima per file è 16 MB" - -#: ../../../config/strings.js.inc:45 -msgid "Extensión no permitida" -msgstr "Estensione non consentita" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:115 -msgid "Faltan parámetros de Proxy" -msgstr "Mancano i parametri proxy" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:129 -msgid "Proxy habiltado" -msgstr "Proxy abilitato" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:134 -msgid "Proxy deshabilitado" -msgstr "Proxy disabilitato" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:223 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:309 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:375 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:422 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:475 -msgid "Sección" -msgstr "Sezione" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 -msgid "General" -msgstr "Generale" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:59 -msgid "Faltan parámetros de Wiki" -msgstr "Parametri Wiki mancanti" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:69 -msgid "Wiki habiltada" -msgstr "Wiki abilitato" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:74 -msgid "Wiki deshabilitada" -msgstr "Wiki disabilitato" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 -#: ../../../config/actions.xml:37 -msgid "Wiki" -msgstr "Wiki" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:69 -#: ../../../modules/web/Controllers/ConfigLdapController.php:139 -#: ../../../modules/web/Controllers/ConfigLdapController.php:175 -msgid "Faltan parámetros de LDAP" -msgstr "Parametri LDAP mancanti" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:88 -msgid "LDAP habiltado" -msgstr "LDAP abilitato" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:93 -msgid "LDAP deshabilitado" -msgstr "LDAP disabilitato" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 -msgid "LDAP" -msgstr "LDAP" - -#: ../../../modules/web/Controllers/ConfigMailController.php:68 -#: ../../../modules/web/Controllers/ConfigMailController.php:125 -msgid "Faltan parámetros de Correo" -msgstr "Parametri Mail mancanti" - -#: ../../../modules/web/Controllers/ConfigMailController.php:93 -msgid "Correo habiltado" -msgstr "Mail abilitata" - -#: ../../../modules/web/Controllers/ConfigMailController.php:100 -msgid "Correo deshabilitado" -msgstr "Mail disabilitata" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 -msgid "Correo" -msgstr "Mail" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:68 -msgid "Configuración actualizada" -msgstr "Configurazione aggiornata" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:297 -#: ../../../../lib/SP/Services/Auth/LoginService.php:321 -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:144 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -msgid "Clave maestra actualizada" -msgstr "Password master aggiornata" - -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:145 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -msgid "Reinicie la sesión para cambiarla" -msgstr "Riavvia la sessione per cambiarla" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:72 -msgid "Clave maestra no indicada" -msgstr "Password principale non indicata" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:76 -msgid "Se ha de confirmar el cambio de clave" -msgstr "Il cambiamento chiave deve essere confermato" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:80 -msgid "Las claves son idénticas" -msgstr "Le chiavi sono identiche" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:84 -msgid "Las claves maestras no coinciden" -msgstr "Le chiavi principali non corrispondono" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:88 -msgid "La clave maestra actual no coincide" -msgstr "La chiave master corrente non corrisponde" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:89 -msgid "Errores al actualizar las claves de las cuentas" -msgstr "Errori durante l'aggiornamento delle chiavi dell'account" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:233 -msgid "Errores al actualizar las claves de las cuentas del histórico" -msgstr "Errori durante l'aggiornamento delle chiavi degli account storici" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:136 -msgid "Errores al actualizar datos de campos personalizados" -msgstr "Errori durante l'aggiornamento dei dati di campo personalizzati" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:71 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:77 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:138 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:67 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:75 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:83 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:108 -msgid "Actualizar Clave Maestra" -msgstr "Aggiorna la password principale" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:138 -msgid "Error al guardar el hash de la clave maestra" -msgstr "Impossibile salvare l'hash della chiave principale" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:103 -msgid "Generar Clave Temporal" -msgstr "Genera Password temporanea" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 -msgid "Clave" -msgstr "Password" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:200 -msgid "Clave Temporal Generada" -msgstr "Password temporanea generata" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:110 -msgid "Error al generar clave temporal" -msgstr "Errore durante la generazione della chiave temporanea" - -#: ../../../../inc/SP/Controller/LoginController.class.php:124 -msgid "Usuario/Clave no introducidos" -msgstr "Utente / password non inseriti" - -#: ../../../../inc/SP/Controller/LoginController.class.php:108 -msgid "Inicio sesión" -msgstr "Accesso" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:114 -msgid "Error al guardar los datos de LDAP" -msgstr "Errore durante il salvataggio dei dati LDAP" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:59 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:154 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:244 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:334 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:389 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:417 -#: ../../../../lib/SP/Services/Account/AccountService.php:227 -#: ../../../../lib/SP/Services/Account/AccountService.php:232 -#: ../../../../lib/SP/Services/Api/ApiService.php:129 -#: ../../../../lib/SP/Services/Api/ApiService.php:227 -#: ../../../../lib/SP/Services/Api/ApiService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:187 -#: ../../../../lib/SP/Services/Auth/LoginService.php:351 -#: ../../../../lib/SP/Services/Auth/LoginService.php:500 -#: ../../../../lib/SP/Services/Auth/LoginService.php:505 -#: ../../../../lib/SP/Services/Auth/LoginService.php:537 -#: ../../../../lib/SP/Services/Auth/LoginService.php:644 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:311 -#: ../../../../lib/SP/Services/CustomField/CustomFieldService.php:203 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:108 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:79 -#: ../../../../lib/SP/Services/User/UserPassService.php:232 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:122 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:177 -msgid "Error interno" -msgstr "Errore interno" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:224 -msgid "Error al actualizar la clave del usuario en la BBDD" -msgstr "Impossibile aggiornare la password dell'utente nel BBDD" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:157 -#: ../../../../lib/SP/Services/Auth/LoginService.php:456 -#: ../../../../lib/SP/Services/Auth/LoginService.php:463 -#: ../../../../lib/SP/Services/Auth/LoginService.php:571 -#: ../../../../lib/SP/Services/Auth/LoginService.php:576 -#: ../../../../lib/SP/Services/Auth/LoginService.php:615 -#: ../../../../lib/SP/Services/Auth/LoginService.php:620 -#, fuzzy -msgid "Login incorrecto" -msgstr "Login errato" - -#: ../../../../lib/SP/Core/Acl/Acl.php:301 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:112 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:155 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:110 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:142 -#: ../../../../lib/SP/Services/Auth/LoginService.php:217 -#: ../../../../lib/SP/Services/Auth/LoginService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:386 -#: ../../../../lib/SP/Services/Auth/LoginService.php:453 -#: ../../../../lib/SP/Services/Auth/LoginService.php:561 -#: ../../../../lib/SP/Services/Auth/LoginService.php:604 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:238 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/Controllers/LoginController.php:102 -#: ../../../modules/web/Controllers/UserController.php:278 -#: ../../../modules/web/Controllers/UserController.php:312 -#: ../../../modules/web/Controllers/UserController.php:373 -#: ../../../modules/web/Controllers/UserController.php:412 -#: ../../../modules/web/Controllers/UserPassResetController.php:187 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 -msgid "Usuario" -msgstr "Utente" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:471 -#: ../../../../lib/SP/Services/Auth/LoginService.php:476 -msgid "Cuenta expirada" -msgstr "Account scaduto" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:484 -#: ../../../../lib/SP/Services/Auth/LoginService.php:489 -msgid "El usuario no tiene grupos asociados" -msgstr "L'utente non ha gruppi associati" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:605 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 -msgid "Autentificación" -msgstr "Autenticazione" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:216 -#: ../../../../lib/SP/Services/Auth/LoginService.php:223 -msgid "Usuario deshabilitado" -msgstr "Utente disabilitato" - -#: ../../../../inc/SP/Controller/LoginController.class.php:246 -msgid "Error al obtener los datos del usuario de la BBDD" -msgstr "Mancato ottenimento dei dati dell'utente del BBDD" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:339 -msgid "La clave maestra no ha sido guardada o es incorrecta" -msgstr "La password principale non è stata salvata o è errata" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:282 -#: ../../../../lib/SP/Services/Auth/LoginService.php:288 -#: ../../../../lib/SP/Services/Auth/LoginService.php:306 -#: ../../../../lib/SP/Services/Auth/LoginService.php:312 -msgid "Clave maestra incorrecta" -msgstr "Password principale errata" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/Controllers/UserProfileController.php:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 -msgid "Perfil" -msgstr "Profilo" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:120 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:146 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:156 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:143 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:140 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/Controllers/UserGroupController.php:231 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:137 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 -msgid "Grupo" -msgstr "Gruppo" - -#: ../../../modules/web/Controllers/AccountFileController.php:370 -msgid "Gestión de archivos deshabilitada" -msgstr "Gestione dei file disabilitata" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 -msgid "Subir Archivo" -msgstr "Upload File" - -#: ../../../modules/web/Controllers/AccountFileController.php:167 -msgid "No hay extensiones permitidas" -msgstr "Non ci sono estensioni consentite" - -#: ../../../../lib/SP/Services/Import/FileImport.php:100 -#: ../../../modules/web/Controllers/AccountFileController.php:184 -msgid "Tipo de archivo no soportado" -msgstr "Tipo di file non consensito" - -#: ../../../modules/web/Controllers/AccountFileController.php:191 -msgid "Archivo inválido" -msgstr "File non valido" - -#: ../../../../lib/SP/Services/Import/FileImport.php:116 -#: ../../../modules/web/Controllers/AccountFileController.php:199 -#: ../../../modules/web/Controllers/AccountFileController.php:219 -#, fuzzy -msgid "Error interno al leer el archivo" -msgstr "Errore interno durante la lettura del file" - -#: ../../../modules/web/Controllers/AccountFileController.php:231 -#: ../../../modules/web/Controllers/AccountFileController.php:240 -msgid "Archivo guardado" -msgstr "File salvato" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:77 -msgid "No se pudo guardar el archivo" -msgstr "Il file non può essere salvato" - -#: ../../../../ajax/ajax_filesMgmt.php:154 -#: ../../../../ajax/ajax_filesMgmt.php:198 -msgid "No es un ID de archivo válido" -msgstr "Non è un ID di file valido" - -#: ../../../modules/web/Controllers/AccountFileController.php:70 -#: ../../../modules/web/Controllers/AccountFileController.php:122 -msgid "El archivo no existe" -msgstr "Il file non esiste" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 -#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 -msgid "Descargar Archivo" -msgstr "Download File" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/Controllers/ItemPresetController.php:278 -#: ../../../modules/web/Controllers/ItemPresetController.php:311 -#: ../../../modules/web/Controllers/ItemPresetController.php:350 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 -msgid "ID" -msgstr "ID" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:122 -#: ../../../modules/web/Controllers/AccountFileController.php:84 -#: ../../../modules/web/Controllers/AccountFileController.php:97 -#: ../../../modules/web/Controllers/AccountFileController.php:137 -#: ../../../modules/web/Controllers/AccountFileController.php:232 -#: ../../../modules/web/Controllers/AccountFileController.php:329 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 -msgid "Archivo" -msgstr "File" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:451 -#: ../../../../lib/SP/Services/Auth/LoginService.php:514 -#: ../../../../lib/SP/Services/Auth/LoginService.php:560 -#: ../../../../lib/SP/Services/Auth/LoginService.php:603 -#: ../../../modules/web/Controllers/AccountFileController.php:235 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/Controllers/ItemPresetController.php:310 -#: ../../../modules/web/Controllers/ItemPresetController.php:349 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 -msgid "Tipo" -msgstr "Tipo" - -#: ../../../modules/web/Controllers/AccountFileController.php:236 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 -msgid "Tamaño" -msgstr "Dimensione" - -#: ../../../modules/web/Controllers/AccountFileController.php:328 -msgid "Archivo eliminado" -msgstr "File cancellato" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:279 -msgid "Error al eliminar el archivo" -msgstr "Errore durante l'eliminazione del file" - -#: ../../../../lib/SP/Services/Api/ApiService.php:152 -msgid "Parámetros incorrectos" -msgstr "Parametri errati" - -#: ../../../modules/web/Controllers/UserPassResetController.php:101 -msgid "Recuperación de Clave" -msgstr "Recupero della password" - -#: ../../../modules/web/Controllers/UserPassResetController.php:102 -msgid "Solicitado para" -msgstr "Richiesto" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "Solicitud enviada" -msgstr "Richiesta inviata" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "En breve recibirá un correo para completar la solicitud." -msgstr "A breve riceverai un'email per completare l'applicazione." - -#: ../../../../ajax/ajax_passReset.php:86 -#: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:329 -msgid "Modificar Clave Usuario" -msgstr "Modifica password utente" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 -msgid "Login" -msgstr "Login" - -#: ../../../../ajax/ajax_passReset.php:107 -msgid "La clave es incorrecta o no coincide" -msgstr "La password non è corretta o non corrisponde" - -#: ../../../modules/web/Controllers/AccountController.php:919 -#: ../../../modules/web/Forms/NotificationForm.php:100 -msgid "Es necesaria una descripción" -msgstr "Una descrizione è necessaria" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1173 -msgid "Solicitud de Modificación de Cuenta" -msgstr "Richiesta di modifica dell'account" - -#: ../../../modules/web/Controllers/AccountController.php:927 -msgid "Solicitante" -msgstr "Richiedente" - -#: ../../../modules/web/Controllers/AccountController.php:224 -#: ../../../modules/web/Controllers/AccountController.php:555 -#: ../../../modules/web/Controllers/AccountController.php:611 -#: ../../../modules/web/Controllers/AccountController.php:650 -#: ../../../modules/web/Controllers/AccountController.php:684 -#: ../../../modules/web/Controllers/AccountController.php:719 -#: ../../../modules/web/Controllers/AccountController.php:764 -#: ../../../modules/web/Controllers/AccountController.php:805 -#: ../../../modules/web/Controllers/AccountController.php:844 -#: ../../../modules/web/Controllers/AccountController.php:894 -#: ../../../modules/web/Controllers/AccountController.php:928 -#: ../../../modules/web/Controllers/AccountFileController.php:233 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:146 -#: ../../../modules/web/Controllers/AccountManagerController.php:146 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 -msgid "Cuenta" -msgstr "Account" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:159 -#: ../../../modules/api/Controllers/AccountController.php:72 -#: ../../../modules/api/Controllers/AccountController.php:104 -#: ../../../modules/api/Controllers/AccountController.php:140 -#: ../../../modules/api/Controllers/AccountController.php:186 -#: ../../../modules/api/Controllers/AccountController.php:236 -#: ../../../modules/api/Controllers/AccountController.php:311 -#: ../../../modules/web/Controllers/AccountController.php:225 -#: ../../../modules/web/Controllers/AccountController.php:720 -#: ../../../modules/web/Controllers/AccountController.php:765 -#: ../../../modules/web/Controllers/AccountController.php:806 -#: ../../../modules/web/Controllers/AccountController.php:845 -#: ../../../modules/web/Controllers/AccountController.php:895 -#: ../../../modules/web/Controllers/AccountController.php:929 -#: ../../../modules/web/Controllers/AccountFileController.php:234 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:112 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:147 -#: ../../../modules/web/Controllers/AccountManagerController.php:147 -#: ../../../modules/web/Controllers/ClientController.php:213 -#: ../../../modules/web/Controllers/ClientController.php:245 -#: ../../../modules/web/Controllers/ClientController.php:281 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 -#, fuzzy -msgid "Cliente" -msgstr "Cliente" - -#: ../../../modules/web/Controllers/AccountController.php:930 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 -msgid "Descripción" -msgstr "Descrizione" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:697 -msgid "Error al actualizar preferencias" -msgstr "Errore durante l'aggiornamento delle preferenze" - -#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:70 -msgid "Preferencias actualizadas" -msgstr "Preferenze aggiornate" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:509 -msgid "La clave maestra no coincide" -msgstr "La chiave principale non corrisponde" - -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:132 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:96 -msgid "No tiene permisos para acceder a esta cuenta" -msgstr "Non hai il permesso di accedere a questo account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 -#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 -msgid "Ver Clave" -msgstr "Vedi Password" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 -#: ../../../config/strings.js.inc:72 -msgid "Clave de Cuenta" -msgstr "Password dell'account" - -#: ../../../../inc/SP/Http/Request.class.php:55 -msgid "No es posible acceder directamente a este archivo" -msgstr "Non è possibile accedere direttamente a questo file" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:143 -msgid "Error al actualizar el historial" -msgstr "Errore durante l'aggiornamento della cronologia" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -msgid "Actualizar Cuenta" -msgstr "Aggiorna account" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:164 -msgid "Error al actualizar los grupos secundarios" -msgstr "Errore durante l'aggiornamento dei gruppi secondari" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:103 -msgid "Error al actualizar los usuarios de la cuenta" -msgstr "Errore durante l'aggiornamento degli utenti dell'account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 -#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 -msgid "Restaurar Cuenta" -msgstr "Ripristina account" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:451 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:623 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:75 -msgid "No se pudieron obtener los datos de la cuenta" -msgstr "Impossibile ottenere i dati dell'account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:256 -#: ../../../modules/web/Controllers/AccountController.php:300 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:278 -#: ../../../config/actions.xml:157 -msgid "Nueva Cuenta" -msgstr "Nuovo account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:389 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 -#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 -#: ../../../config/actions.xml:793 -msgid "Eliminar Cuenta" -msgstr "Elimina account" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:106 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:139 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:191 -msgid "Error al eliminar grupos asociados a la cuenta" -msgstr "Errore durante l'eliminazione dei gruppi associati all'account" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:76 -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:132 -msgid "Error al eliminar usuarios asociados a la cuenta" -msgstr "Errore durante l'eliminazione degli utenti associati all'account" - -#: ../../../../inc/SP/Mgmt/Files/FileUtil.class.php:102 -msgid "Error al eliminar archivos asociados a la cuenta" -msgstr "Errore durante l'eliminazione dei file associati all'account" - -#: ../../../../inc/SP/Account/AccountCrypt.class.php:70 -#: ../../../../inc/SP/Account/AccountCrypt.class.php:200 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:73 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:208 -msgid "Inicio" -msgstr "Inizio" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:81 -msgid "Error en el módulo de encriptación" -msgstr "Errore nel modulo di crittografia" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:115 -msgid "Error al obtener las claves de las cuentas" -msgstr "Errore nell'ottenere la password dell'account" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:183 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:188 -msgid "Fallo al actualizar la clave de la cuenta" -msgstr "Impossibile aggiornare la password dell'account" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:193 -#: ../../../modules/web/Controllers/AccountManagerController.php:185 -#: ../../../modules/web/Controllers/AccountManagerController.php:188 -msgid "Cuentas actualizadas" -msgstr "Account aggiornati" - -#: ../../../../inc/SP/Account/AccountUtil.class.php:132 -msgid "No se pudieron obtener los datos de las cuentas" -msgstr "Impossibile ottenere i dati dell'account" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:212 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:218 -msgid "Actualizar Clave Maestra (H)" -msgstr "Aggiorna password principale (H)" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:158 -msgid "La clave maestra del registro no coincide" -msgstr "La chiave master del record non corrisponde" - -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:157 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:160 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:283 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:286 -msgid "Fallo al actualizar la clave del histórico" -msgstr "Impossibile aggiornare la chiave della cronologia" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:109 -msgid "Registros actualizados" -msgstr "Record aggiornati" - #. (itstool) path: action/text #: ../../../config/actions.xml:7 msgid "Buscar Cuentas" msgstr "Cerca account" #. (itstool) path: action/text -#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 -msgid "Ver Cuenta" -msgstr "Vedi Account" +#: ../../../config/actions.xml:13 +msgid "Cuentas" +msgstr "Account" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 -#: ../../../config/actions.xml:193 -msgid "Copiar Cuenta" -msgstr "Copia account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:344 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 -#: ../../../config/actions.xml:163 -msgid "Editar Cuenta" -msgstr "Modifica account" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:181 -msgid "Editar Clave de Cuenta" -msgstr "Modifica la password dell'account" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 -#: ../../../config/actions.xml:259 -msgid "Ver Historial" -msgstr "Vedi la cronologia" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 #: ../../../config/actions.xml:19 msgid "Archivos" msgstr "Files" @@ -1435,9 +37,20 @@ msgstr "Files" msgid "Peticiones" msgstr "Petizioni" -#: ../../../../inc/SP/Core/Acl.class.php:196 -msgid "Gestión Aplicación" -msgstr "Gestione delle applicazioni" +#. (itstool) path: action/text +#: ../../../config/actions.xml:31 +msgid "Favoritos" +msgstr "Favorites" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:37 +msgid "Wiki" +msgstr "Wiki" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:43 +msgid "Elementos y Personalización" +msgstr "Elementi e personalizzazione" #. (itstool) path: action/text #: ../../../config/actions.xml:49 @@ -1450,15 +63,50 @@ msgstr "Gestione Categorie" msgid "Gestión Clientes" msgstr "Gestione Clienti" +#. (itstool) path: action/text +#: ../../../config/actions.xml:61 +msgid "Gestión Autorizaciones API" +msgstr "Gestione Autorizzazioni API" + #. (itstool) path: action/text #: ../../../config/actions.xml:67 msgid "Gestión Campos Personalizados" msgstr "Gestione Campi Personalizzati" #. (itstool) path: action/text -#: ../../../config/actions.xml:61 -msgid "Gestión Autorizaciones API" -msgstr "Gestione Autorizzazioni API" +#: ../../../config/actions.xml:73 +msgid "Enlaces Públicos" +msgstr "Link pubblici" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:79 +msgid "Gestión de Archivos" +msgstr "Gestione dei file" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:85 +msgid "Gestión de Cuentas" +msgstr "Gestione degli account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:91 +msgid "Gestión de Etiquetas" +msgstr "Gestione dei Tags" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:97 +msgid "Gestión Plugins" +msgstr "Plugins Management" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:103 +msgid "Usuarios y Accesos" +msgstr "Utenti e accesso" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:109 +msgid "Seguridad y Auditoría" +msgstr "Security and Audit" #. (itstool) path: action/text #: ../../../config/actions.xml:115 @@ -1476,6092 +124,10 @@ msgid "Gestión Perfiles" msgstr "Gestione Profili" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:348 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:61 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 -#: ../../../config/actions.xml:685 -msgid "Configuración" -msgstr "Configurazione" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 -#: ../../../config/actions.xml:691 -msgid "Configuración General" -msgstr "Configurazione Generale" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 -msgid "Encriptación" -msgstr "Crittografia" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 -#: ../../../config/actions.xml:733 -msgid "Copia de Seguridad" -msgstr "Copia di backup" - -#: ../../../../inc/SP/Core/Acl.class.php:220 -msgid "Exportar" -msgstr "Esporta" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 -msgid "Importar" -msgstr "Importa" - -#: ../../../../lib/SP/Services/Api/ApiService.php:186 -#: ../../../modules/api/Controllers/ControllerBase.php:146 -msgid "Acceso no permitido" -msgstr "Accesso non consentito" - -#: ../../../../lib/SP/Http/Json.php:179 -msgid "Error de codificación" -msgstr "Errore di codifica" - -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:221 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:309 -msgid "La autorización ya existe" -msgstr "L'autorizzazione esiste già" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 -msgid "Actualizar Autorización" -msgstr "Aggiorna autorizzazione" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 -msgid "Eliminar Autorización" -msgstr "Elimina autorizzazione" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:141 -msgid "Usuario no pertenece al grupo" -msgstr "L'utente non appartiene al gruppo" - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 -msgid "Cambio de Clave" -msgstr "Cambio di password" - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:66 -msgid "Se ha solicitado el cambio de su clave de usuario." -msgstr "È stata richiesta la modifica della password dell'utente." - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:68 -msgid "Para completar el proceso es necesario que acceda a la siguiente URL:" -msgstr "Per completare il processo è necessario accedere al seguente URL:" - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:72 -msgid "Si no ha solicitado esta acción, ignore este mensaje." -msgstr "Se non hai richiesto questa azione, ignora questo messaggio." - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:333 -msgid "Esta operación sólo es posible en entornos Linux" -msgstr "Questa operazione è possibile solo in ambienti Linux" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:101 -msgid "Error al realizar backup en modo compatibilidad" -msgstr "Impossibile eseguire il backup in modalità compatibilità" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:138 -msgid "Compruebe los permisos del directorio de backups" -msgstr "Verifica le autorizzazioni della directory di backup" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:107 -msgid "Nombre de categoría duplicado" -msgstr "Nome categoria duplicato" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:68 -msgid "Error al crear la categoría" -msgstr "Errore durante la creazione della categoria" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:104 -#: ../../../modules/web/Controllers/CategoryController.php:220 -#: ../../../modules/web/Controllers/CategoryController.php:254 -#: ../../../modules/web/Controllers/CategoryController.php:294 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 -msgid "Categoría" -msgstr "Categoria" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:275 -msgid "Error al eliminar la categoría" -msgstr "Errore durante la rimozione della categoria" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 -#: ../../../config/actions.xml:319 -msgid "Eliminar Categoría" -msgstr "Rimuovi categoria" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:125 -msgid "Error al actualizar la categoría" -msgstr "Errore durante l'aggiornamento della categoria" - -#: ../../../../inc/SP/Config/ConfigDB.class.php:108 -#: ../../../../inc/SP/Config/ConfigDB.class.php:148 -msgid "Modificar configuración" -msgstr "Modifica le impostazioni" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:82 -msgid "Parámetro" -msgstr "Parametro" - -#: ../../../../inc/SP/Config/ConfigDB.class.php:152 -msgid "Valor" -msgstr "Valore" - -#: ../../../../lib/SP/Util/ErrorUtil.php:128 -msgid "Opción no disponible" -msgstr "Opzione non disponibile" - -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:129 -#: ../../../../lib/SP/Util/ErrorUtil.php:133 -#: ../../../../lib/SP/Util/ErrorUtil.php:137 -#: ../../../../lib/SP/Util/ErrorUtil.php:141 -#: ../../../../lib/SP/Util/ErrorUtil.php:149 -#: ../../../../lib/SP/Util/ErrorUtil.php:156 -#: ../../../modules/web/Controllers/ErrorController.php:124 -#: ../../../modules/web/Controllers/UserPassResetController.php:94 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 -msgid "Consulte con el administrador" -msgstr "Verificare con l'amministratore" - -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:136 -msgid "No tiene permisos para acceder a esta página" -msgstr "Non hai il permesso di accedere a questa pagina" - -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Util/ErrorUtil.php:140 -#: ../../../modules/web/Controllers/AccountFileController.php:261 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:59 -#: ../../../modules/web/Controllers/AccountManagerController.php:77 -#: ../../../modules/web/Controllers/AccountManagerController.php:204 -#: ../../../modules/web/Controllers/AuthTokenController.php:68 -#: ../../../modules/web/Controllers/AuthTokenController.php:105 -#: ../../../modules/web/Controllers/AuthTokenController.php:170 -#: ../../../modules/web/Controllers/AuthTokenController.php:200 -#: ../../../modules/web/Controllers/AuthTokenController.php:243 -#: ../../../modules/web/Controllers/AuthTokenController.php:278 -#: ../../../modules/web/Controllers/AuthTokenController.php:327 -#: ../../../modules/web/Controllers/CategoryController.php:66 -#: ../../../modules/web/Controllers/CategoryController.php:100 -#: ../../../modules/web/Controllers/CategoryController.php:164 -#: ../../../modules/web/Controllers/CategoryController.php:194 -#: ../../../modules/web/Controllers/CategoryController.php:237 -#: ../../../modules/web/Controllers/CategoryController.php:277 -#: ../../../modules/web/Controllers/CategoryController.php:317 -#: ../../../modules/web/Controllers/ClientController.php:64 -#: ../../../modules/web/Controllers/ClientController.php:96 -#: ../../../modules/web/Controllers/ClientController.php:160 -#: ../../../modules/web/Controllers/ClientController.php:190 -#: ../../../modules/web/Controllers/ClientController.php:230 -#: ../../../modules/web/Controllers/ClientController.php:268 -#: ../../../modules/web/Controllers/ClientController.php:304 -#: ../../../modules/web/Controllers/CustomFieldController.php:65 -#: ../../../modules/web/Controllers/CustomFieldController.php:97 -#: ../../../modules/web/Controllers/CustomFieldController.php:159 -#: ../../../modules/web/Controllers/CustomFieldController.php:189 -#: ../../../modules/web/Controllers/CustomFieldController.php:221 -#: ../../../modules/web/Controllers/CustomFieldController.php:258 -#: ../../../modules/web/Controllers/CustomFieldController.php:295 -#: ../../../modules/web/Controllers/EventlogController.php:101 -#: ../../../modules/web/Controllers/ItemPresetController.php:67 -#: ../../../modules/web/Controllers/ItemPresetController.php:151 -#: ../../../modules/web/Controllers/ItemPresetController.php:188 -#: ../../../modules/web/Controllers/ItemPresetController.php:226 -#: ../../../modules/web/Controllers/ItemPresetController.php:256 -#: ../../../modules/web/Controllers/ItemPresetController.php:295 -#: ../../../modules/web/Controllers/ItemPresetController.php:334 -#: ../../../modules/web/Controllers/NotificationController.php:100 -#: ../../../modules/web/Controllers/NotificationController.php:160 -#: ../../../modules/web/Controllers/NotificationController.php:175 -#: ../../../modules/web/Controllers/NotificationController.php:206 -#: ../../../modules/web/Controllers/NotificationController.php:237 -#: ../../../modules/web/Controllers/NotificationController.php:288 -#: ../../../modules/web/Controllers/NotificationController.php:315 -#: ../../../modules/web/Controllers/NotificationController.php:348 -#: ../../../modules/web/Controllers/PluginController.php:98 -#: ../../../modules/web/Controllers/PluginController.php:117 -#: ../../../modules/web/Controllers/PublicLinkController.php:71 -#: ../../../modules/web/Controllers/PublicLinkController.php:105 -#: ../../../modules/web/Controllers/PublicLinkController.php:167 -#: ../../../modules/web/Controllers/PublicLinkController.php:193 -#: ../../../modules/web/Controllers/PublicLinkController.php:223 -#: ../../../modules/web/Controllers/PublicLinkController.php:264 -#: ../../../modules/web/Controllers/PublicLinkController.php:296 -#: ../../../modules/web/Controllers/PublicLinkController.php:338 -#: ../../../modules/web/Controllers/TagController.php:65 -#: ../../../modules/web/Controllers/TagController.php:99 -#: ../../../modules/web/Controllers/TagController.php:159 -#: ../../../modules/web/Controllers/TagController.php:189 -#: ../../../modules/web/Controllers/TagController.php:223 -#: ../../../modules/web/Controllers/TagController.php:254 -#: ../../../modules/web/Controllers/TagController.php:285 -#: ../../../modules/web/Controllers/UserController.php:69 -#: ../../../modules/web/Controllers/UserController.php:101 -#: ../../../modules/web/Controllers/UserController.php:186 -#: ../../../modules/web/Controllers/UserController.php:218 -#: ../../../modules/web/Controllers/UserController.php:254 -#: ../../../modules/web/Controllers/UserController.php:296 -#: ../../../modules/web/Controllers/UserController.php:357 -#: ../../../modules/web/Controllers/UserController.php:398 -#: ../../../modules/web/Controllers/UserController.php:435 -#: ../../../modules/web/Controllers/UserGroupController.php:74 -#: ../../../modules/web/Controllers/UserGroupController.php:108 -#: ../../../modules/web/Controllers/UserGroupController.php:179 -#: ../../../modules/web/Controllers/UserGroupController.php:209 -#: ../../../modules/web/Controllers/UserGroupController.php:249 -#: ../../../modules/web/Controllers/UserGroupController.php:288 -#: ../../../modules/web/Controllers/UserGroupController.php:327 -#: ../../../modules/web/Controllers/UserProfileController.php:64 -#: ../../../modules/web/Controllers/UserProfileController.php:96 -#: ../../../modules/web/Controllers/UserProfileController.php:163 -#: ../../../modules/web/Controllers/UserProfileController.php:193 -#: ../../../modules/web/Controllers/UserProfileController.php:233 -#: ../../../modules/web/Controllers/UserProfileController.php:268 -#: ../../../modules/web/Controllers/UserProfileController.php:304 -msgid "No tiene permisos para realizar esta operación" -msgstr "Non hai il permesso di eseguire questa operazione" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:56 -#: ../../../config/strings.js.inc:85 -msgid "Aviso" -msgstr "Attenzione" - -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:105 -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:116 -msgid "" -"Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." -msgstr "La chiave master HASH è stata rigenerata. Nessuna azione è necessaria." - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -msgid "No se puede usar el módulo de encriptación" -msgstr "Il modulo di crittografia non può essere utilizzato" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 -msgid "Error al generar datos cifrados" -msgstr "Errore durante la generazione di dati crittografati" - -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:102 -msgid "No es posible generar las claves RSA" -msgstr "Non è possibile generare le chiavi RSA" - -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:135 -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:168 -msgid "El archivo de clave no existe" -msgstr "Il file chiave non esiste" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 -msgid "El número de campos es incorrecto (%d)" -msgstr "Il numero di campi non è corretto (%d)" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 -msgid "Compruebe el formato del archivo CSV en línea %s" -msgstr "Controlla il formato file CSV alla linea %s" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 -msgid "Importar Cuentas" -msgstr "Importa account" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:166 -msgid "Error importando cuenta" -msgstr "Errore durante l'importazione dell'account" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 -msgid "Campos Personalizados" -msgstr "Campi personalizzati" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:76 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 -msgid "Actualizando datos encriptados" -msgstr "Aggiornamento dei dati crittografati" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:110 -msgid "Registros no actualizados" -msgstr "Record non aggiornati" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:8 -msgid "Texto" -msgstr "Testo" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 -msgid "Fecha" -msgstr "Data" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:5 -msgid "Número" -msgstr "Numero" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 -msgid "Email" -msgstr "Email" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:6 -msgid "Teléfono" -msgstr "Telefono" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:9 -msgid "Link" -msgstr "Link" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:4 -msgid "Color" -msgstr "Colore" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/ConfigBackupController.php:122 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 -msgid "Categorías" -msgstr "Categorie" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/ConfigBackupController.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 -msgid "Clientes" -msgstr "Utenti" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 -msgid "Grupos" -msgstr "Gruppi" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:62 -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:116 -#, fuzzy -msgid "Cliente duplicado" -msgstr "Cliente duplicato" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:80 -msgid "Error al crear el cliente" -msgstr "Errore durante la creazione del client" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:136 -#, fuzzy -msgid "Error al actualizar el cliente" -msgstr "Errore durante l'aggiornamento del cliente" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 -msgid "Actualizar Cliente" -msgstr "Aggiorna cliente" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:283 -msgid "Error al eliminar el cliente" -msgstr "Errore durante l'eliminazione del client" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 -#: ../../../config/actions.xml:349 -msgid "Eliminar Cliente" -msgstr "Rimuovi cliente" - -#: ../../../../lib/SP/Services/Install/MySQL.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:97 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:117 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:164 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:176 -msgid "No es posible conectar con la BD" -msgstr "Non è possibile connettersi al BD" - -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:166 -msgid "Compruebe los datos de conexión" -msgstr "Controlla i dati di connessione" - -#. Not available -#: ../../../../lib/SP/Core/Acl/Acl.php:294 -#: ../../../../lib/SP/Services/Auth/LoginService.php:600 -msgid "N/D" -msgstr "N/D" - -#: ../../../../lib/SP/Core/Acl/Acl.php:300 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 -msgid "Acción" -msgstr "Azione" - -#: ../../../../inc/SP/Log/Email.class.php:64 -msgid "Realizado por" -msgstr "Prodotto da" - -#: ../../../../inc/SP/Log/Email.class.php:76 -#: ../../../../inc/SP/Log/Email.class.php:191 -msgid "Enviar Email" -msgstr "Invia email" - -#: ../../../../lib/SP/Services/Mail/MailService.php:141 -#: ../../../modules/web/Controllers/ConfigMailController.php:138 -#: ../../../modules/web/Controllers/ConfigMailController.php:144 -msgid "Correo enviado" -msgstr "E-mail inviata" - -#: ../../../../lib/SP/Services/Mail/MailService.php:81 -#: ../../../../lib/SP/Services/Mail/MailService.php:151 -msgid "Error al enviar correo" -msgstr "Errore nell'invio della mail" - -#: ../../../../lib/SP/Services/Mail/MailService.php:142 -#: ../../../modules/web/Controllers/ConfigMailController.php:139 -msgid "Destinatario" -msgstr "Destinatario" - -#: ../../../../inc/SP/Log/Email.class.php:85 -msgid "CC" -msgstr "CC" - -#: ../../../../lib/SP/Services/Import/FileImport.php:67 -#: ../../../../lib/SP/Services/Import/FileImport.php:88 -msgid "Archivo no subido correctamente" -msgstr "File non caricato correttamente" - -#: ../../../../lib/SP/Services/Import/FileImport.php:69 -#: ../../../../lib/SP/Services/Import/FileImport.php:90 -msgid "Verifique los permisos del usuario del servidor web" -msgstr "Verifica le autorizzazioni dell'utente del server web" - -#: ../../../../lib/SP/Services/Import/FileImport.php:102 -msgid "Compruebe la extensión del archivo" -msgstr "Controlla l'estensione del file" - -#: ../../../../lib/SP/Services/Import/FileImport.php:118 -msgid "Compruebe la configuración de PHP para subir archivos" -msgstr "Controlla le impostazioni PHP per il caricamento dei file" - -#: ../../../../lib/SP/Services/Import/FileImport.php:157 -#: ../../../../lib/SP/Services/Import/FileImport.php:183 -msgid "Compruebe los permisos del directorio temporal" -msgstr "Verifica le autorizzazioni della directory temporanea" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 -#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 -msgid "Eliminar Archivo" -msgstr "Elimina file" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 -#: ../../../config/actions.xml:625 -msgid "Eliminar Grupo" -msgstr "Elimina gruppo" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:108 -msgid "Error al eliminar los usuarios del grupo" -msgstr "Errore durante la rimozione degli utenti del gruppo" - -#: ../../../../lib/SP/Services/Import/ImportService.php:91 -msgid "Compruebe el formato del archivo" -msgstr "Controlla il formato del file" - -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigLdapController.php:260 -msgid "Importación finalizada" -msgstr "Importazione completata" - -#: ../../../modules/web/Controllers/ErrorController.php:123 -msgid "Error en la verificación de la base de datos" -msgstr "Verifica del database fallita" - -#: ../../../../lib/SP/Core/Context/SessionContext.php:547 -msgid "La sesión no puede ser inicializada" -msgstr "La sessione non può essere inizializzata" - -#: ../../../../lib/SP/Config/ConfigUtil.php:94 -msgid "El directorio \"/config\" no existe" -msgstr "La directory \"/config\" non esiste" - -#: ../../../../lib/SP/Config/ConfigUtil.php:100 -msgid "No es posible escribir en el directorio \"config\"" -msgstr "Non è possibile scrivere nella directory \"config\"" - -#: ../../../../lib/SP/Config/ConfigUtil.php:109 -msgid "Los permisos del directorio \"/config\" son incorrectos" -msgstr "Le autorizzazioni della directory \"/config\" non sono corrette" - -#: ../../../modules/web/Controllers/ErrorController.php:107 -msgid "Aplicación en mantenimiento" -msgstr "Applicazione in manutenzione" - -#: ../../../modules/web/Controllers/ErrorController.php:108 -msgid "En breve estará operativa" -msgstr "Presto sarà operativo" - -#: ../../../modules/web/Controllers/LoginController.php:101 -msgid "Finalizar sesión" -msgstr "Fine sessione" - -#: ../../../modules/web/Controllers/LoginController.php:103 -msgid "Tiempo inactivo" -msgstr "Tempo inattivo" - -#: ../../../modules/web/Controllers/LoginController.php:104 -msgid "Tiempo total" -msgstr "Tempo totale" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 -msgid "La aplicación necesita actualizarse" -msgstr "L'applicazione deve essere aggiornata" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:43 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 -msgid "Actualizar" -msgstr "Aggiornare" - -#: ../../../../lib/SP/Controller/MainActionController.php:91 -#: ../../../../lib/SP/Controller/MainActionController.php:148 -msgid "Actualización" -msgstr "Aggiornamento" - -#: ../../../../lib/SP/Controller/MainActionController.php:149 -msgid "Actualización de versión realizada." -msgstr "Aggiornamento della versione fatta." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:113 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:229 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:161 -#: ../../../modules/web/Controllers/ConfigBackupController.php:118 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 -msgid "Versión" -msgstr "Versione" - -#: ../../../../lib/SP/Services/Install/Installer.php:106 -msgid "Indicar nombre de usuario admin" -msgstr "Indica il nome utente admin" - -#: ../../../../lib/SP/Services/Install/Installer.php:108 -msgid "Usuario admin para acceso a la aplicación" -msgstr "Utente amministratore per l'accesso all'applicazione" - -#: ../../../../lib/SP/Services/Install/Installer.php:113 -msgid "Indicar la clave de admin" -msgstr "Indica la password dell'amministratore" - -#: ../../../../lib/SP/Services/Install/Installer.php:115 -msgid "Clave del usuario admin de la aplicación" -msgstr "Utente chiave amministratore dell'applicazione" - -#: ../../../../lib/SP/Services/Install/Installer.php:120 -msgid "Indicar la clave maestra" -msgstr "Indica la chiave principale" - -#: ../../../../lib/SP/Services/Install/Installer.php:122 -msgid "Clave maestra para encriptar las claves" -msgstr "Chiave master per crittografare le chiavi" - -#: ../../../../lib/SP/Services/Install/Installer.php:127 -msgid "Clave maestra muy corta" -msgstr "Chiave master molto breve" - -#: ../../../../lib/SP/Services/Install/Installer.php:129 -msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" -msgstr "" -"La lunghezza della chiave principale deve essere maggiore di 11 caratteri" - -#: ../../../../lib/SP/Services/Install/Installer.php:134 -msgid "Indicar el usuario de la BBDD" -msgstr "Indicare l'utente del BBDD" - -#: ../../../../lib/SP/Services/Install/Installer.php:136 -#, fuzzy -msgid "Usuario con permisos de administrador de la Base de Datos" -msgstr "Utente con autorizzazioni di amministratore del database" - -#: ../../../../lib/SP/Services/Install/Installer.php:148 -msgid "Indicar el nombre de la BBDD" -msgstr "Indicare il nome del BBDD" - -#: ../../../../lib/SP/Services/Install/Installer.php:150 -msgid "Nombre para la BBDD de la aplicación pej. syspass" -msgstr "Nome per il DB dell'applicazione pej. syspass" - -#: ../../../../lib/SP/Services/Install/Installer.php:155 -msgid "El nombre de la BBDD no puede contener \".\"" -msgstr "Il nome del database non può contenere \".\"" - -#: ../../../../lib/SP/Services/Install/Installer.php:157 -msgid "Elimine los puntos del nombre de la Base de Datos" -msgstr "Rimuovere i punti dal nome del database" - -#: ../../../../lib/SP/Services/Install/Installer.php:162 -msgid "Indicar el servidor de la BBDD" -msgstr "Indicare il server del BBDD" - -#: ../../../../lib/SP/Services/Install/Installer.php:164 -msgid "Servidor donde se instalará la Base de Datos" -msgstr "Server in cui verrà installato il database" - -#: ../../../../inc/SP/Core/Installer.class.php:238 -msgid "No es posible comprobar el usuario de sysPass" -msgstr "Non è possibile controllare l'utente sysPass" - -#: ../../../../lib/SP/Services/Install/MySQL.php:137 -msgid "Compruebe los permisos del usuario de conexión a la BD" -msgstr "Verifica le autorizzazioni dell'utente per connettersi al BD" - -#: ../../../../lib/SP/Services/Install/MySQL.php:201 -msgid "La BBDD ya existe" -msgstr "Il BBDD esiste già" - -#: ../../../../lib/SP/Services/Install/MySQL.php:203 -msgid "Indique una nueva Base de Datos o elimine la existente" -msgstr "Indicare un nuovo database o eliminare quello esistente" - -#: ../../../../inc/SP/Core/Installer.class.php:316 -#: ../../../../inc/SP/Core/Installer.class.php:419 -msgid "Error al crear la BBDD" -msgstr "Errore durante la creazione del DB" - -#: ../../../../lib/SP/Services/Install/MySQL.php:215 -#: ../../../../lib/SP/Services/Install/MySQL.php:239 -msgid "Verifique los permisos del usuario de la Base de Datos" -msgstr "Verifica le autorizzazioni dell'utente del Database" - -#: ../../../../lib/SP/Services/Install/MySQL.php:305 -msgid "El archivo de estructura de la BBDD no existe" -msgstr "Il file di struttura del BBDD non esiste" - -#: ../../../../lib/SP/Services/Install/MySQL.php:307 -msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." -msgstr "" -"Non è possibile creare il BBDD dell'applicazione. Scaricalo nuovamente." - -#: ../../../../lib/SP/Services/Install/MySQL.php:290 -msgid "Error al seleccionar la BBDD" -msgstr "Errore durante la selezione del BBDD" - -#: ../../../../lib/SP/Services/Install/MySQL.php:311 -msgid "" -"No es posible usar la Base de Datos para crear la estructura. Compruebe los " -"permisos y que no exista." -msgstr "" -"Non è possibile utilizzare il Database per creare la struttura. Controlla le " -"autorizzazioni e se esistono." - -#: ../../../../lib/SP/Services/Install/MySQL.php:331 -msgid "Error al crear la estructura de la Base de Datos." -msgstr "Errore durante la creazione della struttura del database." - -#: ../../../../lib/SP/Services/Install/Installer.php:318 -#: ../../../../lib/SP/Services/Install/Installer.php:369 -msgid "Informe al desarrollador" -msgstr "Informa lo sviluppatore" - -#: ../../../../inc/SP/Core/Installer.class.php:484 -msgid "Error al actualizar la clave maestra del usuario \"admin\"" -msgstr "Impossibile aggiornare la chiave master dell'utente \"admin\"" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:141 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:188 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:193 -msgid "No es posible conectar con el servidor de LDAP" -msgstr "Non è possibile connettersi al server LDAP" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:231 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:237 -msgid "Error al conectar (BIND)" -msgstr "Errore durante la connessione (BIND)" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:249 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:254 -msgid "Error al buscar objetos en DN base" -msgstr "Errore nel trovare oggetti nel DN di base" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:119 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:125 -msgid "Error al buscar RDN de grupo" -msgstr "Errore durante la ricerca di RDN di gruppo" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:200 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:204 -msgid "Error al localizar el usuario en LDAP" -msgstr "Errore nel localizzare l'utente in LDAP" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:139 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:120 -msgid "Error al buscar el grupo de usuarios" -msgstr "Errore durante la ricerca nel gruppo di utenti" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:109 -msgid "Usuario verificado en grupo" -msgstr "Utente verificato nel gruppo" - -#: ../../../../inc/SP/Controller/EventlogController.class.php:102 -msgid "Vaciar Eventos" -msgstr "Eventi vuoti" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 -#, fuzzy -msgid "Vaciar registro de eventos" -msgstr "Registrazione vuota di eventi" - -#: ../../../../lib/SP/Services/Client/ClientService.php:76 -#: ../../../../lib/SP/Services/Client/ClientService.php:95 -#: ../../../../lib/SP/Services/Client/ClientService.php:110 -#, fuzzy -msgid "Cliente no encontrado" -msgstr "Cliente non trovato" - -#: ../../../../inc/SP/Mgmt/Users/User.class.php:246 -msgid "Error al obtener los usuarios" -msgstr "Errore nell'ottenere gli utenti" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:52 -msgid "Migrar Perfiles" -msgstr "Migra profili" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:82 -msgid "Error al obtener perfiles" -msgstr "Impossibile ottenere i profili" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:144 -msgid "Operación realizada correctamente" -msgstr "Operazione eseguita correttamente" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:149 -msgid "Fallo al realizar la operación" -msgstr "Mancata esecuzione dell'operazione" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 -#: ../../../config/actions.xml:655 -msgid "Eliminar Perfil" -msgstr "Elimina profilo" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:119 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:68 -msgid "Formato de XML inválido" -msgstr "Formato XML non valido" - -#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:122 -msgid "No es posible obtener la plantilla \"%s\" : %s" -msgstr "Non è possibile ottenere il modello \"%s\" : %s" - -#: ../../../../lib/SP/Mvc/View/Template.php:274 -#: ../../../../lib/SP/Mvc/View/Template.php:276 -msgid "No es posible obtener la variable \"%s\"" -msgstr "Non è possibile ottenere la variabile \"%s\"" - -#: ../../../../lib/SP/Mvc/View/Template.php:322 -#: ../../../../lib/SP/Mvc/View/Template.php:324 -msgid "No es posible destruir la variable \"%s\"" -msgstr "Non è possibile distruggere la variabile \"%s\"" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:175 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:179 -msgid "Error al aplicar la actualización de la Base de Datos" -msgstr "Errore durante l'applicazione dell'aggiornamento del database" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:72 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:98 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:106 -msgid "Compruebe el registro de eventos para más detalles" -msgstr "Controlla il registro eventi per maggiori dettagli" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 -msgid "Acceder" -msgstr "Accedere" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:96 -msgid "Error al aplicar la actualización auxiliar" -msgstr "Errore durante l'applicazione dell'aggiornamento ausiliario" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:89 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:120 -msgid "Actualizar BBDD" -msgstr "Aggiorna BBDD" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:155 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:159 -msgid "No es necesario actualizar la Base de Datos." -msgstr "Non è necessario aggiornare il database." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 -msgid "Actualización de la Base de Datos realizada correctamente." -msgstr "Aggiornamento del database eseguito correttamente." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:70 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:202 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:228 -msgid "Actualizar Configuración" -msgstr "Aggiorna configurazione" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:240 -msgid "No se pudo realizar la petición de cambio de clave." -msgstr "Non è stato possibile effettuare la richiesta di modifica password." - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 -#: ../../../config/actions.xml:589 -msgid "Eliminar Usuario" -msgstr "Elimina utente" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:40 -msgid "Usuario de LDAP" -msgstr "Utente LDAP" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:122 -msgid "Activación Cuenta" -msgstr "Attivazione Account" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:123 -msgid "Su cuenta está pendiente de activación." -msgstr "Il tuo account è in attesa di attivazione." - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:124 -msgid "En breve recibirá un email de confirmación." -msgstr "A breve riceverai un'email di conferma." - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:131 -msgid "Nuevo usuario de LDAP" -msgstr "Nuovo utente LDAP" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:152 -msgid "Error al migrar grupo del usuario" -msgstr "Errore durante la migrazione del gruppo di utenti" - -#: ../../../modules/web/Controllers/InstallController.php:62 -msgid "Versión de PHP requerida >= " -msgstr "Versione di PHP richiesta >= " - -#: ../../../../lib/SP/Bootstrap.php:269 -msgid "" -"Actualice la versión de PHP para que la aplicación funcione correctamente" -msgstr "" -"Aggiorna la versione di PHP affinché l'applicazione funzioni correttamente" - -#: ../../../modules/web/Controllers/InstallController.php:59 -msgid "Módulo no disponible" -msgstr "Modulo non disponibile" - -#: ../../../modules/web/Controllers/InstallController.php:60 -msgid "Sin este módulo la aplicación puede no funcionar correctamente." -msgstr "" -"Senza questo modulo l'applicazione non potrebbe funzionare correttamente." - -#: ../../../../inc/SP/Core/XmlExport.class.php:133 -msgid "Exportar XML" -msgstr "Esporta XML" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:545 -msgid "Error al crear el archivo XML" -msgstr "Errore durante la creazione del file XML" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:110 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:81 -msgid "No es posible procesar el archivo XML" -msgstr "Impossibile elaborare il file XML" - -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:105 -msgid "Archivo XML no soportado" -msgstr "File XML non supportato" - -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:107 -msgid "No es posible detectar la aplicación que exportó los datos" -msgstr "Non è possibile rilevare l'applicazione che ha esportato i dati" - -#: ../../../../lib/SP/Storage/Database/QueryData.php:354 -#: ../../../config/strings.js.inc:26 -msgid "Error en la consulta" -msgstr "Errore in ricerca" - -#: ../../../config/strings.js.inc:27 -msgid "Ha ocurrido un error" -msgstr "Si è verificato un errore" - -#: ../../../config/strings.js.inc:28 ../../../config/strings.js.inc:86 -msgid "Sesión finalizada" -msgstr "Sessione terminata" - -#: ../../../config/strings.js.inc:29 -msgid "Borrar la cuenta?" -msgstr "Elimina l'account?" - -#: ../../../config/strings.js.inc:30 -msgid "Borrar el usuario?" -msgstr "Elimina l'utente?" - -#: ../../../config/strings.js.inc:31 -msgid "Guarde la configuración para que sea efectiva" -msgstr "Salva la configurazione per renderla effettiva" - -#: ../../../config/strings.js.inc:32 -msgid "Clave Generada" -msgstr "Password generata" - -#: ../../../config/strings.js.inc:33 -msgid "Nivel alto" -msgstr "Livello alto" - -#: ../../../config/strings.js.inc:34 -msgid "Nivel medio" -msgstr "Livello medio" - -#: ../../../config/strings.js.inc:35 -msgid "Nivel bajo" -msgstr "Livello basso" - -#: ../../../config/strings.js.inc:36 -msgid "Nivel muy alto" -msgstr "Livello molto alto" - -#: ../../../config/strings.js.inc:37 -msgid "Utilizar al menos 8 caracteres" -msgstr "Utilizzare almeno 8 caratteri" - -#: ../../../config/strings.js.inc:38 -msgid "Borrar elemento?" -msgstr "Eliminare l'oggetto?" - -#: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 -msgid "Página no encontrada" -msgstr "Pagina inesistente" - -#: ../../../modules/web/Controllers/AccountFileController.php:108 -#: ../../../config/strings.js.inc:40 -msgid "Archivo no soportado para visualizar" -msgstr "Anteprima del file non supportata" - -#: ../../../config/strings.js.inc:41 -msgid "Eliminar archivo?" -msgstr "Eliminare il file?" - -#: ../../../config/strings.js.inc:42 -msgid "Su navegador no soporta subir archivos con HTML5" -msgstr "" -"Il tuo browser non supporta i caricamenti di file in HTML5 prova a cambiare " -"browser" - -#: ../../../config/strings.js.inc:43 -msgid "Demasiados archivos" -msgstr "Troppi files" - -#: ../../../config/strings.js.inc:44 -msgid "Tamaño de archivo no permitido" -msgstr "La dimensione del file non è consentita" - -#: ../../../config/strings.js.inc:46 -#, fuzzy -msgid "Vaciar el registro de eventos?" -msgstr "Cancellare il registro degli eventi?" - -#: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 -msgid "Seleccionar Grupo" -msgstr "Selezionare Gruppo" - -#: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 -msgid "Seleccionar Usuario" -msgstr "Selezionare Utente" - -#: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 -msgid "Seleccionar Perfil" -msgstr "Selezionare Profilo" - -#: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 -msgid "Seleccionar Cliente" -msgstr "Selezionare il Cliente" - -#: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 -msgid "Seleccionar Categoría" -msgstr "Selezionare la categoria" - -#: ../../../config/strings.js.inc:52 -msgid "Sin resultados" -msgstr "Nessun risultato" - -#: ../../../config/strings.js.inc:53 -msgid "Opciones de clave" -msgstr "Opzioni password" - -#: ../../../config/strings.js.inc:54 -msgid "Generar clave aleatoria" -msgstr "Genera una password casuale" - -#: ../../../config/strings.js.inc:55 -msgid "Complejidad" -msgstr "Complessità" - -#: ../../../config/strings.js.inc:56 -msgid "Restablecer" -msgstr "Ripristina" - -#: ../../../config/strings.js.inc:57 -msgid "Nivel de fortaleza de la clave" -msgstr "Livello di complessità della password" - -#: ../../../config/strings.js.inc:58 -msgid "Mostrar Clave" -msgstr "Mostra Password" - -#: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 -msgid "Copiar Usuario" -msgstr "Copia utente" - -#. (itstool) path: action/text -#: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 -#: ../../../config/actions.xml:199 ../../../config/actions.xml:271 -msgid "Copiar Clave" -msgstr "Copy Password" - -#: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 -msgid "Incluir Números" -msgstr "Includi numeri" - -#: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 -msgid "Incluir Mayúsculas" -msgstr "Includi maiuscole" - -#: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 -#, fuzzy -msgid "Incluir Símbolos" -msgstr "Includi simboli" - -#: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 -msgid "Longitud" -msgstr "Lunghezza" - -#: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 -msgid "Seleccionar Acción" -msgstr "Seleziona azione" - -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:66 -msgid "SI" -msgstr "SI" - -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:67 -msgid "NO" -msgstr "NO" - -#: ../../../config/strings.js.inc:68 -msgid "Aceptar" -msgstr "Accetta" - -#: ../../../config/strings.js.inc:69 -msgid "Cancelar" -msgstr "Annulla" - -#: ../../../config/strings.js.inc:70 -msgid "Clave Copiada al Portapapeles" -msgstr "Chiave copiata negli appunti" - -#: ../../../config/strings.js.inc:71 -msgid "Error al copiar al portapapeles" -msgstr "Errore durante la copia negli appunti" - -#: ../../../modules/web/Controllers/AccountController.php:149 -#: ../../../modules/web/Controllers/AccountController.php:204 -#: ../../../modules/web/Controllers/AccountController.php:474 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 -msgid "Detalles de Cuenta" -msgstr "Dettagli dell'account" - -#: ../../../modules/web/Controllers/AccountController.php:432 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 -msgid "Modificar Clave de Cuenta" -msgstr "Modifica la password dell'account" - -#: ../../../../lib/SP/Plugin/PluginManager.php:246 -#: ../../../modules/api/Controllers/AccountController.php:71 -#: ../../../modules/api/Controllers/AccountController.php:103 -#: ../../../modules/api/Controllers/AccountController.php:139 -#: ../../../modules/api/Controllers/AccountController.php:185 -#: ../../../modules/api/Controllers/AccountController.php:235 -#: ../../../modules/api/Controllers/AccountController.php:310 -#: ../../../modules/api/Controllers/CategoryController.php:63 -#: ../../../modules/api/Controllers/CategoryController.php:92 -#: ../../../modules/api/Controllers/CategoryController.php:122 -#: ../../../modules/api/Controllers/CategoryController.php:151 -#: ../../../modules/api/Controllers/ClientController.php:64 -#: ../../../modules/api/Controllers/ClientController.php:94 -#: ../../../modules/api/Controllers/ClientController.php:125 -#: ../../../modules/api/Controllers/ClientController.php:154 -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:90 -#: ../../../modules/api/Controllers/TagController.php:119 -#: ../../../modules/api/Controllers/TagController.php:148 -#: ../../../modules/api/Controllers/UserGroupController.php:62 -#: ../../../modules/api/Controllers/UserGroupController.php:92 -#: ../../../modules/api/Controllers/UserGroupController.php:123 -#: ../../../modules/api/Controllers/UserGroupController.php:152 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/Controllers/UserGroupController.php:265 -#: ../../../modules/web/Controllers/UserGroupController.php:304 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 -msgid "Nombre" -msgstr "Nome" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 -msgid "Módulo" -msgstr "Modulo" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 -msgid "Eliminar Campo" -msgstr "Rimuovi campo" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Ultimo backup" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "No se encontraron backups" -msgstr "Non sono stati trovati backup" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "Última exportación" -msgstr "Ultima esportazione" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "No se encontró archivo de exportación" -msgstr "Nessun file di esportazione trovato" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:63 -msgid "Información" -msgstr "Informazioni" - -#: ../../../modules/web/Controllers/EventlogController.php:119 -#: ../../../modules/web/Controllers/EventlogController.php:122 -msgid "Registro de eventos vaciado" -msgstr "Registro eventi vuoto" - -#: ../../../../lib/SP/Repositories/EventLog/EventlogRepository.php:53 -#, fuzzy -msgid "Error al vaciar el registro de eventos" -msgstr "Errore durante lo svuotamento del registro eventi" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 -msgid "Admin Aplicación" -msgstr "Applicazione Admin" - -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:265 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:58 -msgid "Buscar" -msgstr "Ricerca" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:103 -msgid "Usuarios y Accesos" -msgstr "Utenti e accesso" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:43 -msgid "Elementos y Personalización" -msgstr "Elementi e personalizzazione" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 -#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 #: ../../../config/actions.xml:133 msgid "Registro de Eventos" msgstr "Registro degli eventi" -#: ../../../modules/web/Controllers/InstallController.php:82 -msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" -msgstr "La versione di PHP è vulnerabile all'attacco NULL Byte (CVE-2006-7243)" - -#: ../../../modules/web/Controllers/InstallController.php:83 -msgid "Actualice la versión de PHP para usar sysPass de forma segura" -msgstr "Aggiorna la versione di PHP per utilizzare sysPass in modo sicuro" - -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "No se encuentra el generador de números aleatorios." -msgstr "Il generatore di numeri casuali non è stato trovato." - -#: ../../../modules/web/Controllers/InstallController.php:90 -msgid "" -"Sin esta función un atacante puede utilizar su cuenta al resetear la clave" -msgstr "" -"Senza questa funzionalità, un utente malintenzionato può utilizzare il " -"proprio account durante il ripristino della password" - -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "Instalación finalizada" -msgstr "Installazione terminata" - -#: ../../../../inc/SP/Controller/MainController.class.php:492 -msgid "Descargar nueva versión" -msgstr "Scarica la nuova versione" - -#: ../../../config/strings.js.inc:95 -msgid "Avisos de sysPass" -msgstr "Avvisi SysPass" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 -#, fuzzy -msgid "Ordenar por Cliente" -msgstr "Ordina per cliente" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 -msgid "Ordenar por Nombre" -msgstr "Ordina per nome" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 -msgid "Ordenar por Categoría" -msgstr "Ordina per categoria" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 -msgid "Ordenar por Usuario" -msgstr "Ordina per utente" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 -msgid "Ordenar por URL / IP" -msgstr "Ordina per URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 -msgid "URL / IP" -msgstr "URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 -msgid "Propiedades" -msgstr "Proprietà" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 -msgid "Admin Cuentas" -msgstr "Accounts Admin" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:41 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 -msgid "Deshabilitado" -msgstr "Disabilitato" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 -msgid "Ver Detalles de Usuario" -msgstr "Vedi dettagli utente" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:62 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:120 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:126 -msgid "Cambiar Clave de Usuario" -msgstr "Cambia password utente" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 -msgid "Ver Detalles de Perfil" -msgstr "Vedi i dettagli del profilo" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 -msgid "Ver token de Autorización" -msgstr "Vedi Token di autorizzazione" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:409 -msgid "Token de autorización visualizado" -msgstr "Visualizzazione del token di autorizzazione" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:407 -msgid "Autorizaciones" -msgstr "Autorizzazioni" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 -msgid "Seguridad" -msgstr "Sicurezza" - -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:89 -msgid "Preferencias" -msgstr "Preferenze" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 -msgid "Nombre de cuenta" -msgstr "Nome dell'account" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 -msgid "URL o IP de acceso" -msgstr "URL di accesso o IP" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 -msgid "Usuario de acceso" -msgstr "Username di accesso" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 -msgid "Clave (repetir)" -msgstr "Password (ripetere)" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 -msgid "Notas" -msgstr "Note" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 -msgid "Notas sobre la cuenta" -msgstr "Note sull'account" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 -msgid "Permisos" -msgstr "Permessi" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:53 -msgid "Hablitar edición" -msgstr "Abilita la modifica" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 -msgid "Grupo Principal" -msgstr "Gruppo Principale" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Soltar archivos aquí (max. 5) o click para seleccionar" -msgstr "Trascina qui i file (max 5) o fai clic per selezionare" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 -msgid "Tamaño máximo de archivo" -msgstr "Dimensione massima del file" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 -msgid "Historial" -msgstr "Storico" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 -msgid "Seleccionar fecha" -msgstr "Seleziona la data" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 -msgid "Última Modificación" -msgstr "Ultima modifica" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 -msgid "Visitas" -msgstr "Visite" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 -msgid "Fecha Alta" -msgstr "Data alta" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 -msgid "Creador" -msgstr "Creatore" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Usuarios Secundarios" -msgstr "Utenti Secondari" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 -msgid "Grupos Secundarios" -msgstr "Gruppi secondari" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Fecha Edición" -msgstr "Data Edizione" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 -msgid "Editor" -msgstr "Editore" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 -msgid "Restaurar cuenta desde este punto" -msgstr "Ripristina account da questo punto" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 -msgid "Copiar Clave en Portapapeles" -msgstr "Copia la password negli appunti" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 -msgid "Ver Actual" -msgstr "Vedi corrente" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:49 -#: ../../../modules/web/themes/material-blue/views/_partials/error.inc:14 -#: ../../../modules/web/themes/material-blue/views/_partials/error.inc:15 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:13 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 -#: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 -#: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 -msgid "Volver" -msgstr "Ritorno" - -#: ../../../../inc/themes/material-blue/views/account/actions.inc:146 -msgid "Modificar Cuenta" -msgstr "Modifica account" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 -msgid "Solicitar Modificación" -msgstr "Richiesta di modifica" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:51 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 -msgid "Guardar" -msgstr "Save" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 -msgid "Resultado" -msgstr "Risultato" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 -#, fuzzy -msgid "Descargar Actual" -msgstr "Scarica corrente" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 -msgid "No hay backups para descargar" -msgstr "Nessun backup da scaricare" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:52 -#: ../../../config/strings.js.inc:79 -msgid "Ayuda" -msgstr "Aiutare" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 -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 "" -"Il backup consente di salvare e scaricare sia il database sysPass che i file " -"dell'applicazione e la relativa configurazione." - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 -msgid "" -"Con este método es posible guardar todos los datos de sysPass en otro lugar " -"o utilizarlos para hacer la aplicación portable." -msgstr "" -"Con questo metodo è possibile salvare tutti i dati di sysPass in un'altra " -"posizione o utilizzarli per rendere l'applicazione portatile." - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 -msgid "Exportar Cuentas" -msgstr "Esportare account" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -msgid "No hay archivos XML para descargar" -msgstr "Non ci sono file XML da scaricare" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 -msgid "Clave de Exportación" -msgstr "Password di esportazione" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 -msgid "Clave de Exportación (repetir)" -msgstr "Password di esportazione (ripetere)" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 -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 "" -"L'esportazione di account consente di salvare gli account e i relativi dati " -"in formato XML in modo che possano essere successivamente importati in altre " -"istanze di sysPass." - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 -msgid "" -"Las claves de las cuentas son exportadas de forma encriptada para mayor " -"seguridad." -msgstr "" -"Le chiavi degli account vengono esportate in forma crittografata per una " -"maggiore sicurezza." - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 -msgid "" -"Es posible establecer una clave de exportación para guardar todos los datos " -"encriptados en el archivo XML." -msgstr "" -"È possibile impostare una chiave di esportazione per salvare tutti i dati " -"crittografati nel file XML." - -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 -msgid "Javascript es necesario para el correcto funcionamiento" -msgstr "Javascript è necessario per il corretto funzionamento" - -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 -msgid "Nombre de la categoría" -msgstr "Nome categoria" - -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 -msgid "Descripción de la categoría" -msgstr "Descrizione categoria" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 -msgid "Sitio" -msgstr "Indirizzo" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 -msgid "Idioma" -msgstr "Lingua" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 -msgid "" -"Establece el idioma global de la aplicación. Es posible establecer un idioma " -"por usuario en las preferencias." -msgstr "" -"Imposta la lingua globale dell'applicazione. È possibile impostare una " -"lingua per utente nelle preferenze." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 -msgid "Tema Visual" -msgstr "Tema del portale" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 -msgid "" -"Establece el tema visual global de la aplicación. Es posible establecer un " -"tema visual por usuario en las preferencias." -msgstr "" -"Imposta il tema visivo generale dell'applicazione. È possibile impostare un " -"tema visivo per utente nelle preferenze." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 -msgid "Timeout de sesión (s)" -msgstr "Timeout della sessione (s)" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 -msgid "Habilitar log de eventos" -msgstr "Abilita registro eventi" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 -msgid "Guarda las acciones realizadas en la aplicación." -msgstr "Salva le azioni eseguite nell'applicazione." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 -msgid "Habilitar depuración" -msgstr "Abilita il debug" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 -msgid "" -"Muestra información relativa a la configuración de la aplicación y " -"rendimiento." -msgstr "" -"Visualizza le informazioni relative alle impostazioni e alle prestazioni " -"dell'applicazione." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 -msgid "Modo mantenimiento" -msgstr "Modalità di manutenzione" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 -msgid "" -"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " -"necesario modificar el archivo de configuración." -msgstr "" -"In questa modalità, non è possibile accedere all'applicazione. Per " -"disabilitarlo, è necessario modificare il file di configurazione." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 -msgid "Comprobar actualizaciones" -msgstr "Controlla gli aggiornamenti" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 -msgid "" -"Comprobar actualizaciones de la aplicación (sólo para los usuarios " -"administradores)." -msgstr "" -"Controlla gli aggiornamenti dell'applicazione (solo per gli utenti " -"amministratori)." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 -msgid "Comprobar notificaciones" -msgstr "Controlla le notifiche" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 -msgid "" -"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " -"para los usuarios administradores)." -msgstr "" -"Controlla le notifiche di sicurezza o le notifiche di sysPass (solo per gli " -"utenti amministratori)." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 -msgid "Nombre de cuenta como enlace" -msgstr "Nome account come link" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 -msgid "" -"Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " -"de la cuenta." -msgstr "" -"Abilita il nome dell'account di ricerca, come link ai dettagli dell'account." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 -msgid "Gestión de archivos" -msgstr "Gestione dei file" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 -msgid "Habilita la subida/descarga de archivos para las cuentas." -msgstr "Abilita il caricamento / download di file per gli account." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 -msgid "Búsquedas globales" -msgstr "Ricerche globali" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 -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 "" -"Permette a tutti gli utenti di eseguire ricerche su tutti gli account, ma " -"non può vedere il contenuto di quelli che non hanno permessi." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 -msgid "Extensiones de archivos permitidas" -msgstr "Estensioni di file consentite" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 -msgid "Extensiones permitidas para la subida de archivos." -msgstr "Estensioni consentite per il caricamento di file." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:267 -msgid "Se permite un máximo de 4 caracteres." -msgstr "È consentito un massimo di 4 caratteri." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 -msgid "" -"Escribir extensión y pulsar intro para añadir. Es necesario guardar la " -"configuración." -msgstr "" -"Scrivi l'estensione e premi invio per aggiungere. È necessario salvare la " -"configurazione." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 -msgid "Establece el tamaño máximo para subir archivos." -msgstr "Imposta la dimensione massima per caricare i file." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 -msgid "El máximo absuluto es de 16MB." -msgstr "Il massimo assoluto è 16 MB." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 -msgid "Resultados por página" -msgstr "Risultati per pagina" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 -msgid "Número de resultados por página a mostrar, al realizar una búsqueda." -msgstr "" -"Numero di risultati per pagina da visualizzare, quando si esegue una ricerca." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 -msgid "Resultados en Tarjetas" -msgstr "Risultati stile biglietti da visita" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 -msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." -msgstr "" -"Visualizza i risultati della ricerca dell'account nel formato della " -"biglietti da visita." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 -msgid "Imagen para mostrar clave" -msgstr "Immagine per mostrare la password" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 -msgid "Generar una imagen con el texto de la clave de la cuenta." -msgstr "Genera un'immagine con il testo della password dell'account." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 -msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." -msgstr "" -"Utile per ambienti in cui copiare la chiave è un rischio per la sicurezza." - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 -msgid "Nombre del cliente" -msgstr "Nome del cliente" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 -msgid "Descripción del cliente" -msgstr "Descrizione del cliente" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 -msgid "Texto Ayuda" -msgstr "Aiuto testo" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 -msgid "Obligatorio" -msgstr "Obbligatorio" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 -msgid "Clave Maestra" -msgstr "Password principale" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 -#, fuzzy -msgid "Último cambio" -msgstr "Ultima modifica" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 -msgid "Clave Maestra actual" -msgstr "Password principale attuale" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 -msgid "Nueva Clave Maestra" -msgstr "Nuova password principale" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 -msgid "Nueva Clave Maestra (repetir)" -msgstr "Nuova password principale (ripetere)" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 -msgid "No modificar cuentas" -msgstr "Non modificare account" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 -msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" -msgstr "" -"Imposta una nuova password master senza ricodificare nuovamente gli account" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 -#, fuzzy -msgid "Confirmar cambio" -msgstr "Conferma modifica" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 -msgid "Guarde la nueva clave en un lugar seguro." -msgstr "Conserva la nuova password in un posto sicuro." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 -msgid "Se volverán a encriptar las claves de todas las cuentas." -msgstr "Le password di tutti gli account verranno nuovamente crittografate." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 -msgid "Los usuarios deberán de introducir la nueva clave maestra." -msgstr "Gli utenti devono inserire la nuova password principale." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 -msgid "" -"La clave maestra es utilizada para encriptar las claves de las cuentas de " -"sysPass para mantenerlas seguras." -msgstr "" -"La password master viene utilizzata per crittografare le chiavi degli " -"account sysPass per mantenerle sicure." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 -#, fuzzy -msgid "" -"Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " -"que incluya números, letras y símbolos." -msgstr "" -"Si consiglia di cambiarlo ogni tanto e utilizzare una chiave complessa che " -"include numeri, lettere e simboli." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 -msgid "Clave Temporal" -msgstr "Chiave temporale" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 -msgid "No generada" -msgstr "Non generato" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 -msgid "Válido hasta" -msgstr "Valido fino al" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 -msgid "Validez (s)" -msgstr "Validità (s)" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 -msgid "" -"La clave temporal es utilizada como clave maestra para los usuarios que " -"necesitan introducirla al iniciar la sesión, así no es necesario facilitar " -"la clave maestra original." -msgstr "" -"La password temporanea viene utilizzata come chiave principale per gli " -"utenti che devono inserirla all'avvio della sessione, pertanto non è " -"necessario fornire la password master originale." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 -msgid "Generar" -msgstr "Genera" - -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 -msgid "No se encontraron registros" -msgstr "Nessun dato trovato" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 -msgid "Fecha / Hora" -msgstr "Data / ora" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 -msgid "Evento" -msgstr "Evento" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 -msgid "IP" -msgstr "IP" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:69 -msgid "Primera página" -msgstr "Prima pagina" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:67 -msgid "Página anterior" -msgstr "Pagina precedente" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:68 -msgid "Página siguiente" -msgstr "Pagina seguente" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:70 -msgid "Última página" -msgstr "Ultima pagina" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 -#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 -msgid "Ver Archivo" -msgstr "Vedi File" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 -msgid "Indica si la conexión utiliza HTTPS." -msgstr "Indica se la connessione utilizza HTTPS." - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 -msgid "" -"Las claves de formularios enviados se encriptan mediante PKI, el resto de " -"datos no." -msgstr "" -"Le chiavi dei moduli inviati sono crittografate tramite PKI, il resto dei " -"dati non lo è." - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 -msgid "Ayuda :: FAQ :: Changelog" -msgstr "Aiuto :: Domande frequenti :: Changelog" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 -msgid "Un proyecto de cygnux.org" -msgstr "Un progetto di cygnux.org" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 -msgid "Nombre del grupo" -msgstr "Nome del gruppo" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 -msgid "Descripción del grupo" -msgstr "Descrizione del gruppo" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 -msgid "Importar CSV/XML" -msgstr "Importa CSV/XML" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 -msgid "Usuario por Defecto" -msgstr "Utente predefinito" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 -msgid "Define el usuario por defecto para las cuentas importadas." -msgstr "Definisce l'utente predefinito per gli account importati." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 -msgid "Grupo por Defecto" -msgstr "Gruppo predefinito" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 -msgid "Define el grupo por defecto para las cuentas importadas." -msgstr "Definisce il gruppo predefinito per gli account importati." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 -msgid "Clave de Importación" -msgstr "Password di importazione" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 -msgid "Delimitador CSV" -msgstr "Delimitatore CSV" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 -msgid "Soltar archivo aquí o click para seleccionar" -msgstr "Trascina qui il file o fai clic per selezionare" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 -#, fuzzy -msgid "" -"Permite realizar la importación de Cuentas, Categorías y Clientes desde " -"archivos XML y CSV." -msgstr "Permette di importare account, categorie e client da file XML e CSV." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 -msgid "" -"Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" -msgstr "I formati di file XML supportati sono: sysPass, KeePass e KeePassX" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 -msgid "" -"Arrastar el archivo a importar a la zona indicada o hacer click sobre la " -"flecha." -msgstr "" -"Trascina il file da importare nell'area indicata o fai clic sulla freccia." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 -msgid "" -"Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " -"KeePass o KeePassX y la categoría igual al nombre de los grupos." -msgstr "" -"Per i file KeePass o KeePassX, il nome del client sarà uguale a KeePass o " -"KeePassX e la categoria è uguale ai nomi dei gruppi." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 -msgid "La importación de archivos CSV se realiza con el siguiente formato:" -msgstr "L'importazione di file CSV viene eseguita nel seguente formato:" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 -msgid "" -"En todos los casos, si el cliente o la categoría no están creados, se crean " -"automáticamente." -msgstr "" -"In tutti i casi, se il cliente o la categoria non vengono creati, vengono " -"creati automaticamente." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 -msgid "Información de la Aplicación" -msgstr "Informazioni sull'applicazione" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 -msgid "Versión sysPass" -msgstr "Versione di SysPass" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 -msgid "Base de Datos" -msgstr "Database" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 -msgid "PHP" -msgstr "PHP" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 -msgid "Extensiones" -msgstr "Estensioni" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 -msgid "Memoria Usada" -msgstr "Memoria usata" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:142 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:189 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 -msgid "Servidor" -msgstr "Server" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 -msgid "Login del usuario administrador de sysPass" -msgstr "Accesso dell'utente amministratore di sysPass" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 -msgid "Configurar BBDD" -msgstr "Configurare BBDD" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 -msgid "Nombre de la base de datos para sysPass" -msgstr "Nome del database per sysPass" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 -msgid "Modo Hosting" -msgstr "Modalità di hosting" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 -msgid "No crea ni verifica los permisos del usuario sobre la BBDD" -msgstr "Non creare o verificare le autorizzazioni dell'utente su BBDD" - -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 -msgid "Instalar" -msgstr "Installare" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 -msgid "Habilitar LDAP" -msgstr "Abilitare LDAP" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 -msgid "Habilita de autentificación mediante servidor LDAP." -msgstr "Abilita l'autenticazione tramite il server LDAP." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 -msgid "Este método utilizará MySQL en caso de fallo." -msgstr "Questo metodo utilizzerà MySQL in caso di errore." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 -msgid "Nombre o dirección IP del servidor de LDAP." -msgstr "Nome o indirizzo IP del server LDAP." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 -msgid "Ejemplos:" -msgstr "Esempio:" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 -msgid "Usuario de conexión" -msgstr "Utente di connessione" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 -msgid "Usuario para conectar con el servicio de LDAP." -msgstr "Utente per connettersi con il servizio LDAP." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 -msgid "Clave de conexión" -msgstr "Password di connessione" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 -msgid "Base de búsqueda" -msgstr "Cerca database" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 -msgid "Base en la que realizar la búsqueda de usuarios de LDAP." -msgstr "Database su cui eseguire la ricerca di utenti LDAP." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 -msgid "" -"Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." -msgstr "Gruppo LDAP a cui l'utente deve appartenere per consentire l'accesso." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 -msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." -msgstr "Questo gruppo deve trovarsi nel database di ricerca LDAP." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 -msgid "" -"Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." -msgstr "Definisce il gruppo di utenti predefinito per i nuovi utenti LDAP." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 -msgid "Perfil por Defecto" -msgstr "Profilo predefinito" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 -msgid "" -"Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." -msgstr "Definisce il profilo utente predefinito per i nuovi utenti LDAP." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 -msgid "Active Directory" -msgstr "Active Directory" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 -msgid "Habilita el modo de conexión con LDAP de Active Directory." -msgstr "Abilita la modalità di connessione LDAP di Active Directory." - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:57 -msgid "Comprobar" -msgstr "Verifica" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 -msgid "¿Olvidó su clave?" -msgstr "Hai dimenticato la password?" - -#: ../../../modules/web/Controllers/UpgradeController.php:92 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 -msgid "Aplicación actualizada correctamente" -msgstr "Applicazione aggiornata correttamente" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 -msgid "Habilitar notificaciones de correo" -msgstr "Abilita le notifiche di posta" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 -msgid "Puerto" -msgstr "Porta" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 -msgid "Habilitar Autentificación" -msgstr "Abilita autenticazione" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 -msgid "Deshabilitada" -msgstr "Disabiltata" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 -#, fuzzy -msgid "Dirección de correo de envío" -msgstr "Indirizzo mail di spedizione" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 -msgid "Habilitar peticiones por correo" -msgstr "Abilita le richieste per posta" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 -msgid "Más Acciones" -msgstr "Altre azioni" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 -msgid "Solicitud de Cambio de Clave" -msgstr "Richiesta di modifica password" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 -msgid "Email del Usuario" -msgstr "Email dell'utente" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 -msgid "Volver a iniciar sesión" -msgstr "Torna al login" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 -msgid "Solicitar" -msgstr "Richiesta" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 -msgid "Cambiar" -msgstr "Modifica" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:37 -msgid "Cambiar Clave" -msgstr "Cambia password" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 -msgid "Ordenar resultados por visitas" -msgstr "Ordina i risultati per visite" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 -msgid "" -"Ordena los resultados de búsqueda por el número de visitas de las cuentas." -msgstr "" -"Ordina i risultati della ricerca in base al numero di visite agli account." - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 -msgid "Barra de navegación superior" -msgstr "La barra di navigazione in alto" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 -msgid "Mostrar una barra de navegación superior en las búsquedas." -msgstr "Mostra una barra di navigazione superiore nelle ricerche." - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 -msgid "Mostrar Acciones Ocultas" -msgstr "Mostra azioni nascoste" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 -msgid "" -"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." -msgstr "Mostra azioni nascoste per gli elementi nella ricerca dell'account." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 -msgid "Nombre del perfil" -msgstr "Nome del profilo" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 -msgid "Ver detalles de cuenta" -msgstr "Visualizza i dettagli dell'account" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 -msgid "Ver" -msgstr "Visualizza" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 -msgid "Ver clave de cuenta" -msgstr "Vedi la password dell'account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 -msgid "Ver historial de cuenta" -msgstr "Vedi storico dell'account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 -msgid "Editar cuenta" -msgstr "Modifica account" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 -msgid "Editar" -msgstr "Modificare" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 -msgid "Editar clave de cuenta" -msgstr "Modifica la password dell'account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 -msgid "Editar Clave" -msgstr "Modifica la password" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:32 -msgid "Añadir" -msgstr "Aggiungere" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 -msgid "Ver archivos de cuenta" -msgstr "Visualizza i file dell'account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 -msgid "Backup" -msgstr "Backup" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 -msgid "Realizar importación de cuentas" -msgstr "Esegui l'importazione dell'account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 -msgid "Gestión" -msgstr "Gestione" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 -msgid "Gestión de usuarios" -msgstr "Gestione degli utenti" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 -msgid "Gestión de grupos" -msgstr "Gestione dei gruppi" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 -msgid "Gestión de perfiles" -msgstr "Gestione dei profili" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 -msgid "Perfiles" -msgstr "Profili" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 -msgid "Gestión de categorías" -msgstr "Gestione delle categorie" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 -#, fuzzy -msgid "Gestión de clientes" -msgstr "Gestione dei clienti" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 -msgid "Gestión de campos personalizados" -msgstr "Gestione dei campi personalizzati" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 -msgid "Gestión de autorizaciones API" -msgstr "Gestione delle autorizzazioni API" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 -msgid "Autorizaciones API" -msgstr "Autorizzazioni API" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 -msgid "Otros" -msgstr "Altro" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 -msgid "Ver log de eventos" -msgstr "Vedi il registro degli eventi" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 -msgid "Log de Eventos" -msgstr "Registro eventi" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 -msgid "Usado por" -msgstr "Usato da" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 -msgid "Solicitar Modificación de Cuenta" -msgstr "Richiedi la modifica dell'account" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 -msgid "Petición" -msgstr "Petizione" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 -msgid "Descripción de la petición" -msgstr "Descrizione della petizione" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 -msgid "Atrás" -msgstr "Indietro" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 -msgid "Enviar" -msgstr "Inviare" - -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 -msgid "Filtro ON" -msgstr "Filtro ON" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 -msgid "Buscar en Wiki" -msgstr "Cerca in Wiki" - -#: ../../../../inc/themes/material-blue/views/accountsearch/rows.inc:71 -msgid "Abrir enlace a" -msgstr "Apri il link a" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 -msgid "Archivos adjuntos" -msgstr "Allegati aggiuntu" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 -msgid "Enlace a Wiki" -msgstr "Collegamento a Wiki" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:53 -msgid "Limpiar" -msgstr "Pulire" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 -#: ../../../modules/api/Controllers/Help/TagHelp.php:77 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 -msgid "Texto a buscar" -msgstr "Testo da cercare" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:23 -msgid "Parámetros especiales:" -msgstr "Parametri speciali:" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 -msgid "Buscar cuentas a las que 'login' tenga acceso" -msgstr "Cerca account a cui 'login' ha accesso" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 -msgid "Buscar cuentas a las que 'group_name' tenga acceso" -msgstr "Cerca account a cui 'group_name' ha accesso" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 -msgid "Buscar cuentas con archivos con el nombre 'file_name'" -msgstr "Cerca account con file con il nome 'file_name'" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 -msgid "Búsqueda global" -msgstr "Ricerca globale" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 -msgid "Cuentas por página" -msgstr "Account per pagina" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:76 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:149 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:152 -msgid "Salir" -msgstr "Uscita" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 -msgid "Opciones" -msgstr "Opzioni" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 -msgid "Regenerar Autorización" -msgstr "Autorizzazione rigenerata" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 -msgid "Token" -msgstr "Token" - -#: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 -msgid "Actualizado" -msgstr "Aggiornato" - -#: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 -msgid "Error al comprobar actualizaciones" -msgstr "Errore durante il controllo degli aggiornamenti" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 -msgid "Actualización de BBDD" -msgstr "Aggiornamento BBDD" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 -msgid "Código de Seguridad" -msgstr "Codice di sicurezza" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 -msgid "Iniciar Actualización" -msgstr "Avvia aggiornamento" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 -msgid "Nombre de usuario completo" -msgstr "Nome dell'utente completo" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 -msgid "Login de inicio de sesión" -msgstr "Login di inizio sessione" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 -msgid "Dirección de correo" -msgstr "Indirizzo email" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 -msgid "Administrador de la aplicación" -msgstr "Gestore dell'applicazione" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 -msgid "Administrador de cuentas" -msgstr "Account manager" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 -msgid "Forzar cambio de clave" -msgstr "Forza la modifica della password" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 -msgid "Entradas" -msgstr "Entrata" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 -msgid "Último Acceso" -msgstr "Ultimo accesso" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 -msgid "Fecha Clave Maestra" -msgstr "Data password principale" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 -msgid "Habilitar enlaces Wiki" -msgstr "Abilita i collegamenti Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 -msgid "" -"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " -"la búsqueda." -msgstr "" -"Abilita l'opzione per aggiungere un collegamento a Wiki esterno per i " -"risultati di ricerca." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 -msgid "URL de búsqueda Wiki" -msgstr "URL di ricerca Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 -#, fuzzy -msgid "URL que utiliza la wiki para realizar una búsqueda de una página." -msgstr "URL utilizzato dalla wiki per eseguire una ricerca su una pagina." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 -msgid "Como parámetro se utiliza el nombre del cliente." -msgstr "Come parametro si utilizza il nome del cliente." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 -msgid "Ejemplo:" -msgstr "Esempio:" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 -msgid "URL de página en Wiki" -msgstr "URL della pagina in Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 -#, fuzzy -msgid "URL que utiliza la wiki para acceder a los detalles de una página." -msgstr "URL utilizzato dal wiki per accedere ai dettagli di una pagina." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 -msgid "" -"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " -"de la Wiki." -msgstr "" -"Il nome dell'account viene utilizzato come parametro della variabile di " -"ricerca del Wiki." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 -msgid "Prefijo para nombre de cuenta" -msgstr "Prefisso per il nome dell'account" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 -msgid "" -"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." -msgstr "" -"Prefisso per determinare quali account hanno un link a una pagina del Wiki." - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 -msgid "Histórico" -msgstr "Storico" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:54 -msgid "Realizar" -msgstr "Eseguire" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 -msgid "Forzar HTTPS" -msgstr "Forza l'uso di HTTPS" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 -msgid "Fuerza para que todas las conexiones sean a través de HTTPS." -msgstr "Forza per tutte le connessioni tramite HTTPS." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 -msgid "Número de resultados por página" -msgstr "Numero di risultati per pagina" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 -msgid "Proxy" -msgstr "Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 -msgid "Usar Proxy" -msgstr "Usa Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 -msgid "Servidor proxy" -msgstr "Server proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 -msgid "Puerto del servidor proxy" -msgstr "Porta del server proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 -msgid "Usuario del servidor proxy" -msgstr "Utente del server proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 -msgid "Clave del servidor proxy" -msgstr "Password del server proxy" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 -msgid "Nombre del campo" -msgstr "Nome del campo" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 -msgid "Ayuda del campo" -msgstr "Suggerimento" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 -msgid "Intentos" -msgstr "Tentativi" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:69 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:131 -msgid "Preferencias de usuario" -msgstr "Preferenze dell'utente" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 -msgid "Usuario administrador de sysPass" -msgstr "Utente amministratore di SysPass" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 -msgid "Usuario acceso BBDD" -msgstr "Accesso utente BBDD" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 -#, fuzzy -msgid "Usuario con permisos de administrador de MySQL" -msgstr "Utente con permessi di amministratore MySQL" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 -msgid "Clave acceso BBDD" -msgstr "Password di accesso BBDD" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 -msgid "Nombre BBDD para sysPass" -msgstr "Nome BBDD per sysPass" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 -msgid "Servidor BBDD para sysPass" -msgstr "Server BBDD per sysPass" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 -msgid "Nombre del servidor para instalar la base de datos de sysPass" -msgstr "Nome del server per installare il database sysPass" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 -msgid "Clave del usuario de conexión a LDAP." -msgstr "Password dell'utente di connessione LDAP." - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 -msgid "" -"Habilita que los usuarios puedan solicitar modificaciones o acceso a las " -"cuentas sin permisos." -msgstr "" -"Consente agli utenti di richiedere modifiche o accedere agli account senza " -"autorizzazioni." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 -msgid "Crear nueva cuenta" -msgstr "Creare un nuovo account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 -msgid "Crear" -msgstr "Creare" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 -msgid "Eliminar cuenta" -msgstr "Rimuovere account" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:36 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 -msgid "Eliminar" -msgstr "Eliminare" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 -msgid "Opciones de encriptación" -msgstr "Opzioni di crittografia" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 -msgid "Realizar copia de seguridad y exportar" -msgstr "Eseguire il backup ed esportare" - -#: ../../../../ajax/ajax_filesMgmt.php:97 -msgid "Extensión" -msgstr "Estensione" - -#: ../../../modules/web/Controllers/AccountFileController.php:209 -msgid "Tamaño de archivo superado" -msgstr "Dimensione del file superata" - -#: ../../../../ajax/ajax_passReset.php:77 -msgid "Solicitud no enviada" -msgstr "Richiesta non inviata" - -#: ../../../../ajax/ajax_passReset.php:78 -msgid "Compruebe datos de usuario o consulte con el administrador" -msgstr "Controlla i dati dell'utente o verificare con l'amministratore" - -#: ../../../../lib/SP/Services/Account/AccountService.php:283 -#: ../../../../lib/SP/Services/Account/AccountService.php:672 -#: ../../../../lib/SP/Services/Account/AccountService.php:727 -msgid "La cuenta no existe" -msgstr "L'account non esiste" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:194 -msgid "Errores" -msgstr "Errori" - -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:71 -msgid "Error al añadir favorito" -msgstr "Errore durante l'aggiunta del preferito" - -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:91 -msgid "Error al eliminar favorito" -msgstr "Errore durante la rimozione del preferito" - -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:94 -msgid "Error al eliminar las etiquetas de la cuenta" -msgstr "Errore durante la rimozione dei tag dell'account" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:107 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:78 -msgid "Método inválido" -msgstr "Metodo non valido" - -#: ../../../../lib/SP/Services/Api/ApiRequest.php:79 -#: ../../../../lib/SP/Services/Api/ApiRequest.php:113 -#: ../../../../lib/SP/Services/Api/ApiService.php:229 -msgid "Datos inválidos" -msgstr "Dati non validi" - -#: ../../../../inc/SP/Api/ApiRequest.class.php:211 -msgid "Formato incorrecto" -msgstr "Formato errato" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 -msgid "Id de la cuenta" -msgstr "Account Id" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 -msgid "Devolver detalles en la respuesta" -msgstr "Restituisci i dettagli nella risposta" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 -#: ../../../modules/api/Controllers/Help/TagHelp.php:78 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 -msgid "Número de resultados a mostrar" -msgstr "Numero di risultati da mostrare" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 -msgid "Id de categoría a filtrar" -msgstr "ID di categoria da filtrare" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 -#, fuzzy -msgid "Id de cliente a filtrar" -msgstr "ID cliente da filtrare" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 -msgid "Id de categoría" -msgstr "ID categoria" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 -msgid "Id de cliente" -msgstr "ID cliente" - -#: ../../../../lib/SP/Api/SyspassApi.php:511 -msgid "Nombre de categoría a buscar" -msgstr "Nome della categoria da cercare" - -#: ../../../../lib/SP/Api/SyspassApi.php:531 -#, fuzzy -msgid "Nombre de cliente a buscar" -msgstr "Nome del cliente da cercare" - -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:212 -msgid "Método ya inicializado" -msgstr "Metodo già inizializzato" - -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:208 -msgid "Método no disponible" -msgstr "Metodo non disponibile" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 -msgid "Objetos encontrados: %d" -msgstr "Oggetti trovati: %d" - -#: ../../../../lib/SP/Controller/ChecksController.php:127 -msgid "Los parámetros de DokuWiki no están configurados" -msgstr "I parametri di DokuWiki non sono configurati" - -#: ../../../../lib/SP/Controller/ChecksController.php:135 -#: ../../../../lib/SP/Util/Wiki/DokuWikiApiBase.php:214 -msgid "Error" -msgstr "Errore" - -#: ../../../../lib/SP/Controller/ChecksController.php:137 -msgid "Conexión correcta" -msgstr "Connessione corretta" - -#: ../../../../lib/SP/Controller/ChecksController.php:141 -msgid "Error de conexión a DokuWiki" -msgstr "Errore di connessione a DokuWiki" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:89 -msgid "Faltan parámetros de syslog remoto" -msgstr "Parametri syslog remoti mancanti" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:102 -msgid "Syslog remoto deshabilitado" -msgstr "Syslog remoto disabilitato" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:72 -msgid "Error al guardar la configuración" -msgstr "Errore durante il salvataggio della configurazione" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:87 -msgid "Faltan parámetros de DokuWiki" -msgstr "Parametri di DokuWiki mancanti" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:368 -msgid "DokuWiki habiltada" -msgstr "DokuWiki abilitato" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:104 -msgid "DokuWiki deshabilitada" -msgstr "DokuWiki disabilitato" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 -msgid "Buscar Evento" -msgstr "Cerca evento" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 -#: ../../../config/actions.xml:325 -msgid "Buscar Categoría" -msgstr "Cerca categoria" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 -#: ../../../config/actions.xml:355 -msgid "Buscar Cliente" -msgstr "Cerca cliente" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 -msgid "Buscar Campo" -msgstr "Campo di ricerca" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 -#: ../../../config/actions.xml:475 -msgid "Buscar Archivo" -msgstr "Cerca archivio" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 -#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 -msgid "Buscar Cuenta" -msgstr "Cerca account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 -#: ../../../config/actions.xml:601 -msgid "Buscar Usuario" -msgstr "Cerca utente" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 -msgid "Importar usuarios de LDAP" -msgstr "Importa utenti LDAP" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 -#: ../../../config/actions.xml:631 -msgid "Buscar Grupo" -msgstr "Cerca gruppo" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 -#: ../../../config/actions.xml:661 -msgid "Buscar Perfil" -msgstr "Cerca profilo" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 -msgid "Buscar Token" -msgstr "Token di ricerca" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 -msgid "Fecha Creación" -msgstr "Data di creazione" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 -msgid "Fecha Caducidad" -msgstr "Data di Scadenza" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 -msgid "Notificar" -msgstr "Notificare" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 -msgid "Enlaces" -msgstr "Links" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 -msgid "Buscar Enlace" -msgstr "Collegamento di ricerca" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 -msgid "Ver Enlace" -msgstr "Vedi Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 -msgid "Renovar Enlace" -msgstr "Rinnova il collegamento" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 -msgid "Eliminar Enlace" -msgstr "Rimuovi link" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:123 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 -msgid "Etiquetas" -msgstr "Tags" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 -#: ../../../config/actions.xml:529 -msgid "Buscar Etiqueta" -msgstr "Cerca per Tag" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 -#: ../../../config/actions.xml:505 -msgid "Nueva Etiqueta" -msgstr "Nuova Tag" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 -#: ../../../config/actions.xml:517 -msgid "Editar Etiqueta" -msgstr "Modifica Tag" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 -#: ../../../config/actions.xml:523 -msgid "Eliminar Etiqueta" -msgstr "Elimina Tag" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 -msgid "Plugin" -msgstr "Plugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 -msgid "Estado" -msgstr "Stato" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:334 -#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 -msgid "Plugins" -msgstr "Plugins" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 -#: ../../../config/actions.xml:547 -msgid "Buscar Plugin" -msgstr "Cerca plugin" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:120 -#: ../../../config/actions.xml:541 -msgid "Ver Plugin" -msgstr "VediPlugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 -msgid "Habilitar" -msgstr "Abilita" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 -msgid "Deshabilitar" -msgstr "Disabilita" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 -msgid "Restablecer Datos" -msgstr "Ripristina dati" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 -msgid "Componente" -msgstr "Componente" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 -msgid "Leída" -msgstr "Leggi" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:65 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:105 -#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 -#: ../../../config/actions.xml:679 -msgid "Notificaciones" -msgstr "Notifiche" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 -#: ../../../config/actions.xml:841 -msgid "Buscar Notificación" -msgstr "Ricerca notifica" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:103 -#: ../../../config/actions.xml:811 -msgid "Ver Notificación" -msgstr "Vedi notifica" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 -#: ../../../config/actions.xml:835 -msgid "Marcar Notificación" -msgstr "Segna notifica" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 -#: ../../../config/actions.xml:829 -msgid "Eliminar Notificación" -msgstr "Elimina notifica" - -#: ../../../modules/web/Controllers/PublicLinkController.php:275 -#: ../../../modules/web/Controllers/PublicLinkController.php:310 -msgid "Enlace creado" -msgstr "Link creato" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:89 -#: ../../../modules/web/Controllers/PublicLinkController.php:175 -msgid "Enlace actualizado" -msgstr "Link aggiornato" - -#: ../../../modules/web/Controllers/PublicLinkController.php:245 -#: ../../../modules/web/Controllers/PublicLinkController.php:249 -msgid "Enlace eliminado" -msgstr "Link eliminato" - -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:94 -#: ../../../modules/web/Controllers/TagController.php:234 -msgid "Etiqueta creada" -msgstr "Tag aggiunta" - -#: ../../../modules/api/Controllers/TagController.php:118 -#: ../../../modules/api/Controllers/TagController.php:123 -#: ../../../modules/web/Controllers/TagController.php:265 -msgid "Etiqueta actualizada" -msgstr "Tag aggiornata" - -#: ../../../modules/api/Controllers/TagController.php:147 -#: ../../../modules/api/Controllers/TagController.php:152 -#: ../../../modules/web/Controllers/TagController.php:208 -msgid "Etiqueta eliminada" -msgstr "Tag rimossa" - -#: ../../../modules/web/Controllers/PluginController.php:181 -#: ../../../modules/web/Controllers/PluginController.php:184 -msgid "Plugin habilitado" -msgstr "Plugin abilitata" - -#: ../../../modules/web/Controllers/PluginController.php:206 -#: ../../../modules/web/Controllers/PluginController.php:209 -msgid "Plugin deshabilitado" -msgstr "Plugin disabilitata" - -#: ../../../modules/web/Controllers/PluginController.php:231 -#: ../../../modules/web/Controllers/PluginController.php:234 -msgid "Plugin restablecido" -msgstr "Resetta Plugin" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:55 -msgid "Favorito añadido" -msgstr "Preferito aggiunto" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:73 -msgid "Favorito eliminado" -msgstr "Eliminato preferito" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:269 -msgid "Importación de usuarios de LDAP realizada" -msgstr "Importazione utenti LDAP terminata" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1096 -msgid "Error al importar usuarios de LDAP" -msgstr "Errore durante l'importazione di utenti LDAP" - -#: ../../../modules/web/Controllers/NotificationController.php:297 -#: ../../../modules/web/Controllers/NotificationController.php:301 -msgid "Notificación leída" -msgstr "Notifica letta" - -#: ../../../modules/web/Controllers/NotificationController.php:266 -#: ../../../modules/web/Controllers/NotificationController.php:270 -msgid "Notificación eliminada" -msgstr "Notifica eliminata" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1192 -msgid "Solicitud enviada por correo" -msgstr "Richiesta inviata via email" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 -msgid "Solicitud no enviada por correo" -msgstr "Richiesta non inviata per email" - -#: ../../../modules/web/Controllers/AccountController.php:943 -msgid "Solicitud realizada" -msgstr "Richiesta effettuata" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:427 -#, fuzzy -msgid "Ver Enlace Público" -msgstr "Vedi Link pubblico" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:233 -msgid "Detalles de Plugin" -msgstr "Dettagli Plugin" - -#: ../../../../inc/SP/Controller/LoginController.class.php:375 -msgid "Error al obtener la clave maestra del usuario" -msgstr "Impossibile ottenere la chiave master dell'utente" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:327 -msgid "Es necesaria su clave anterior" -msgstr "La tua password precedente è richiesta" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:452 -#: ../../../../lib/SP/Services/Auth/LoginService.php:515 -msgid "Servidor LDAP" -msgstr "LDAP Server" - -#: ../../../../inc/SP/Core/Acl.class.php:198 -msgid "Buscar Categorías" -msgstr "Cerca per categorie" - -#: ../../../../inc/SP/Core/Acl.class.php:199 -msgid "Añadir Categoría" -msgstr "Aggiungi categoria" - -#: ../../../../inc/SP/Core/Acl.class.php:203 -msgid "Buscar Clientes" -msgstr "Cerca clienti" - -#: ../../../../inc/SP/Core/Acl.class.php:204 -msgid "Añadir Cliente" -msgstr "Aggiungi cliente" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:79 -msgid "Gestión de Archivos" -msgstr "Gestione dei file" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:85 -msgid "Gestión de Cuentas" -msgstr "Gestione degli account" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:91 -msgid "Gestión de Etiquetas" -msgstr "Gestione dei Tags" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 -msgid "No es posible crear el directorio de backups (\"%s\")" -msgstr "Non è possibile creare la directory di backup (\"%s\")" - -#: ../../../../lib/SP/Core/Events/EventDispatcherBase.php:85 -msgid "Observador no inicializado" -msgstr "Observer non inizializzato" - -#: ../../../../lib/SP/Core/Events/Event.php:56 -msgid "Es necesario un objeto" -msgstr "Un oggetto è necessario" - -#: ../../../../lib/SP/Services/Install/Installer.php:141 -msgid "Indicar la clave de la BBDD" -msgstr "Indicare la password del BBDD" - -#: ../../../../lib/SP/Services/Install/Installer.php:143 -msgid "Clave del usuario administrador de la Base de Datos" -msgstr "Password dell'utente amministratore del database" - -#: ../../../../lib/SP/Services/Install/MySQL.php:181 -msgid "Error al crear el usuario de conexión a MySQL '%s'" -msgstr "Errore durante la creazione dell'accesso utente a MySQL '%s'" - -#: ../../../../lib/SP/Services/Install/MySQL.php:251 -msgid "La BBDD no existe" -msgstr "Il database non esiste" - -#: ../../../../lib/SP/Services/Install/MySQL.php:253 -msgid "Es necesario crearla y asignar los permisos necesarios" -msgstr "È necessario crearlo e assegnare le autorizzazioni necessarie" - -#: ../../../../lib/SP/Services/Install/MySQL.php:237 -msgid "Error al establecer permisos de la BBDD ('%s')" -msgstr "Impossibile impostare le autorizzazioni del DB ('%s')" - -#: ../../../../lib/SP/Plugin/PluginManager.php:113 -#: ../../../../lib/SP/Plugin/PluginManager.php:256 -msgid "No es posible cargar el plugin \"%s\"" -msgstr "Impossibile caricare il plug-in \"%s\"" - -#: ../../../../lib/SP/Mvc/View/Template.php:341 -msgid "La plantilla no contiene archivos" -msgstr "Il modello non contiene file" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:121 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:125 -msgid "Error al actualizar la configuración" -msgstr "Errore durante l'aggiornamento della configurazione" - -#: ../../../modules/web/Forms/AuthTokenForm.php:91 -msgid "Usuario no indicado" -msgstr "Utente non indicato" - -#: ../../../modules/web/Forms/AuthTokenForm.php:95 -msgid "Acción no indicada" -msgstr "Azione non indicata" - -#: ../../../modules/web/Forms/TagForm.php:82 -msgid "Es necesario un nombre de etiqueta" -msgstr "È richiesto un nome di tag" - -#: ../../../../lib/SP/Http/XMLRPCResponseParse.php:69 -msgid "Respuesta XML-RPC inválida" -msgstr "Risposta XML-RPC non valida" - -#: ../../../../lib/SP/Services/Import/ImportService.php:89 -msgid "Tipo mime no soportado (\"%s\")" -msgstr "Tipo MIME non supportato (\"%s\")" - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:106 -msgid "Id de categoría no definido. No es posible importar cuenta." -msgstr "ID di categoria non definito. Non è possibile importare account." - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:110 -msgid "Id de cliente no definido. No es posible importar cuenta." -msgstr "ID cliente non definito. Non è possibile importare account." - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:69 -msgid "Clave de encriptación no indicada" -msgstr "Password di crittografia non indicata" - -#: ../../../../lib/SP/Services/Import/CsvImport.php:50 -msgid "Formato detectado: %s" -msgstr "Formato rilevato: %s" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 -msgid "El nodo \"%s\" no existe" -msgstr "Il nodo \"%s\" non esiste" - -#: ../../../../lib/SP/Util/ImageUtil.php:48 -#: ../../../../lib/SP/Util/ImageUtil.php:99 -#: ../../../../lib/SP/Util/Util.php:180 ../../../../lib/SP/Util/Util.php:182 -msgid "Extensión '%s' no cargada" -msgstr "Estensione '%s' non caricata" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:58 -msgid "Categoría duplicada" -msgstr "Categoria duplicata" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:77 -#: ../../../../lib/SP/Services/Category/CategoryService.php:98 -#: ../../../../lib/SP/Services/Category/CategoryService.php:115 -msgid "Categoría no encontrada" -msgstr "Categoria non trovata" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:75 -msgid "Error al crear el campo personalizado" -msgstr "Errore durante la creazione del campo personalizzato" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:259 -msgid "Error al eliminar el campo personalizado" -msgstr "Errore durante l'eliminazione del campo personalizzato" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:118 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:165 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:193 -msgid "Error al actualizar el campo personalizado" -msgstr "Errore durante l'aggiornamento del campo personalizzato" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:162 -msgid "Campo personalizado no encontrado" -msgstr "Campo personalizzato non trovato" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:215 -msgid "No se encontraron campos personalizados" -msgstr "Nessun campo personalizzato trovato" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:68 -msgid "No hay datos de campos personalizados" -msgstr "Nessun dato di campo personalizzato" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldsUtil.php:263 -msgid "Error al migrar campos personalizados" -msgstr "Errore durante la migrazione dei campi personalizzati" - -#: ../../../../inc/SP/Mgmt/Files/File.class.php:103 -msgid "Archivo subido" -msgstr "File caricato" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:55 -msgid "Grupo en uso" -msgstr "Gruppo in uso" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 -msgid "Actualizar Grupo" -msgstr "Aggiorna gruppo" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:140 -msgid "Error al asignar los usuarios al grupo" -msgstr "Errore nell'assegnazione degli utenti al gruppo" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:78 -msgid "Error al crear la notificación" -msgstr "Errore durante la creazione della notifica" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:137 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:156 -msgid "Error al eliminar la notificación" -msgstr "Errore durante l'eliminazione della notifica" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:118 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:429 -msgid "Error al modificar la notificación" -msgstr "Errore durante l'aggiornamento della notifica" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:212 -msgid "Error al obtener la notificación" -msgstr "Errore durante la ricezione della notifica" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:242 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:466 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:499 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:533 -msgid "Error al obtener las notificaciones" -msgstr "Impossibile ottenere le notifiche" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:70 -msgid "Error al crear el plugin" -msgstr "Errore durante la creazione del plug-in" - -#. (itstool) path: action/text -#: ../../../../lib/SP/Plugin/PluginManager.php:245 -#: ../../../config/actions.xml:535 -msgid "Nuevo Plugin" -msgstr "Nuovo Plugin" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:232 -msgid "Error al eliminar el plugin" -msgstr "Errore durante l'eliminazione del plug-in" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:104 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:348 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:368 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:388 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:408 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:427 -msgid "Error al actualizar el plugin" -msgstr "Errore durante l'aggiornamento del plug-in" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:42 -msgid "Habilitado" -msgstr "Abilitato" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:239 -msgid "Error al crear perfil" -msgstr "Errore durante la creazione del profilo" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:73 -msgid "Perfil en uso" -msgstr "Profilo in uso" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:79 -msgid "Error al eliminar perfil" -msgstr "Errore durante l'eliminazione del profilo" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:141 -msgid "Error al modificar perfil" -msgstr "Errore durante la modifica del profilo" - -#: ../../../modules/web/Controllers/AccountController.php:223 -msgid "Enlace visualizado" -msgstr "Visualizza link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:341 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:389 -msgid "Error al actualizar enlace" -msgstr "Errore durante l'aggiornamento del link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:255 -msgid "Enlace ya creado" -msgstr "Link già creato" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:282 -msgid "Error al crear enlace" -msgstr "Errore durante la creazione del collegamento" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:63 -msgid "Error al eliminar enlace" -msgstr "Errore durante la rimozione del collegamento" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:424 -msgid "Error al renovar enlace" -msgstr "Errore durante il rinnovo del link" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:741 -#: ../../../../inc/themes/material-blue/views/account/actions.inc:69 -msgid "Actualizar Enlace" -msgstr "Link di aggiornamento" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:466 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:507 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:528 -msgid "Error al obtener enlace" -msgstr "Impossibile ottenere il collegamento" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:190 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "ON" -msgstr "ON" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "OFF" -msgstr "OFF" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:60 -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:108 -msgid "Etiqueta duplicada" -msgstr "Tag duplicata" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:69 -msgid "Error al crear etiqueta" -msgstr "Errore durante la creazione del tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:262 -msgid "Error al eliminar etiqueta" -msgstr "Errore durante la rimozione del tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:118 -msgid "Error al actualizar etiqueta" -msgstr "Errore durante l'aggiornamento del tag" - -#: ../../../../inc/SP/Mgmt/Tags/Tag.class.php:181 -msgid "Error al obtener etiqueta" -msgstr "Errore nell'ottenere il tag" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:63 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:430 -msgid "Login/email de usuario duplicados" -msgstr "Login/email utente duplicati" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:234 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:551 -msgid "Error al obtener los datos del usuario" -msgstr "Errore nell'ottenere dati utente" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:781 -msgid "Sincronización LDAP" -msgstr "LDAP sincronizzazione" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:264 -msgid "No se encontraron objetos para sincronizar" -msgstr "Nessun oggetto trovato da sincronizzare" - -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:128 -msgid "Sincronización finalizada" -msgstr "Sincronizzazione completata" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:97 -msgid "Error al migrar cuenta de usuario" -msgstr "Errore durante la migrazione dell'account utente" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:137 -msgid "Error al obtener grupo de usuarios" -msgstr "Impossibile ottenere il gruppo di utenti" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:112 -msgid "Error en comprobación de hash" -msgstr "Errore nel controllo hash" - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:87 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:155 -msgid "Hash inválido o expirado" -msgstr "Hash non valido o scaduto" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:86 -msgid "Error al generar el hash de recuperación" -msgstr "Errore durante la generazione dell'hash di ripristino" - -#: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:57 -msgid "Actualizando preferencias" -msgstr "Aggiornamento delle preferenze" - -#: ../../../../lib/SP/Storage/XmlHandler.php:79 -msgid "No es posible leer/escribir el archivo: %s" -msgstr "Non è possibile leggere / scrivere il file: %s" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:167 -msgid "No hay elementos para guardar" -msgstr "Non ci sono oggetti da salvare" - -#: ../../../../lib/SP/Util/Connection.php:157 -msgid "Socket no inicializado" -msgstr "Socket non inizializzato" - -#: ../../../../lib/SP/Util/Connection.php:164 -msgid "Error al enviar datos" -msgstr "Errore nell'invio dei dati" - -#: ../../../../lib/SP/Util/Util.php:243 -msgid "Respuesta" -msgstr "Risposta" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 -msgid "Fallo de autentificación" -msgstr "Errore di autenticazione" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 -msgid "Error al realizar la consulta" -msgstr "Impossibile eseguire la query" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 -msgid "URL de conexión no establecida" -msgstr "URL di connessione non stabilito" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:33 -msgid "Ver Detalles" -msgstr "Visualizzare dettagli" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:44 -msgid "Copiar" -msgstr "Copia" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:50 -msgid "Restaurar" -msgstr "Ripristina" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:55 -msgid "Descargar" -msgstr "Download" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:64 -msgid "Crítico" -msgstr "Critico" - -#: ../../../config/strings.js.inc:73 -msgid "Recibir notificaciones?" -msgstr "Ricevere notifiche?" - -#: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 -msgid "Marcar Favorito" -msgstr "Imposta preferito" - -#. (itstool) path: action/text -#: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 -#: ../../../config/actions.xml:253 -msgid "Eliminar Favorito" -msgstr "Rimuovi preferito" - -#: ../../../config/strings.js.inc:76 -msgid "Limpiar Selección" -msgstr "Annulla selezione" - -#: ../../../config/strings.js.inc:77 -msgid "Mostrar Favoritos" -msgstr "Mostra Preferiti" - -#: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 -msgid "Mostrar Todos" -msgstr "Mostra tutto" - -#: ../../../config/strings.js.inc:81 -msgid "Ahora" -msgstr "Ora" - -#: ../../../config/strings.js.inc:82 -msgid "" -"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" -msgstr "Questo processo importa gli utenti LDAP rilevati. Vuoi continuare?" - -#: ../../../config/strings.js.inc:83 -msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" -msgstr "Questa azione ripristinerà tutti i dati del plugin. Vuoi continuare?" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 -msgid "Fecha Caducidad Clave" -msgstr "Data di scadenza chiave" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 -msgid "Seleccionar Fecha" -msgstr "Seleziona la data" - -#: ../../../../inc/themes/material-blue/views/account/account-permissions.inc:9 -msgid "Accesos" -msgstr "Accesso" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 -msgid "Seleccionar Usuarios" -msgstr "Seleziona utenti" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 -msgid "Seleccionar Grupos" -msgstr "Seleziona gruppi" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 -msgid "Cuenta Privada" -msgstr "Password privata" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 -msgid "Privada" -msgstr "Privata" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 -msgid "Seleccionar Etiquetas" -msgstr "Selezionare tags" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 -msgid "Cuenta Vinculada" -msgstr "Account collegato" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 -msgid "Seleccionar Cuenta" -msgstr "Seleziona account" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Link pubblico" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 -#: ../../../config/actions.xml:421 -msgid "Crear Enlace Público" -msgstr "Crea un collegamento pubblico" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 -msgid "Detalles" -msgstr "Dettagli" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 -msgid "Fecha de Clave" -msgstr "Data della password" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Tamaño máximo de archivo: %d MB" -msgstr "Dimensione massima del file: %d MB" - -#: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:3 -msgid "Cuentas Vinculadas" -msgstr "Account collegati" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 -msgid "Clave Caducada" -msgstr "Chiave scaduta" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 -msgid "Ver en Wiki" -msgstr "Visualizza in Wiki" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 -msgid "Buscar cuentas con la clave caducada" -msgstr "Cerca account con la chiave scaduta" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 -msgid "Filtrar Favoritos" -msgstr "Filtro Preferiti" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 -msgid "Más Filtros" -msgstr "Più filtri" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 -msgid "Seleccionar Etiqueta" -msgstr "Seleziona tag" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 -msgid "Copia BBDD" -msgstr "Copia BBDD" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 -msgid "Copia sysPass" -msgstr "Copia sysPass" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 -msgid "Eventos" -msgstr "Eventi" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 -msgid "Habilitar Syslog" -msgstr "Abilita Syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 -msgid "Habilitar Syslog Remoto" -msgstr "Abilita Syslog remoto" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 -msgid "Nombre o dirección IP" -msgstr "Nome o indirizzo IP" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 -#: ../../../config/actions.xml:73 -msgid "Enlaces Públicos" -msgstr "Link pubblici" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 -msgid "Habilitar Enlaces Públicos" -msgstr "Abilita collegamenti pubblici" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 -msgid "" -"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " -"una cuenta." -msgstr "" -"Abilita la possibilità di generare collegamenti pubblici per visualizzare i " -"dettagli di un account." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 -msgid "" -"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." -msgstr "Gli account collegati saranno visibili da chiunque abbia il link." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 -msgid "" -"Para crear enlaces, los usuarios tienen que tener activada la opción en su " -"perfl." -msgstr "" -"Per creare collegamenti, gli utenti devono aver attivato l'opzione nel " -"proprio profilo." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 -msgid "Tiempo de caducidad" -msgstr "Scadenza" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 -msgid "Número máximo de visitas" -msgstr "Numero massimo di visite" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 -msgid "Usar imagen para clave" -msgstr "Usa l'immagine per la password" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 -msgid "La clave de la cuenta es visualizada como una imagen." -msgstr "Il tasto account è visualizzato come un'immagine." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 -msgid "Copia de Configuración" -msgstr "Copia della configurazione" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 -msgid "Plugins Cargados" -msgstr "Plugin caricati" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 -msgid "Resultados" -msgstr "Risultati" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 -msgid "DokuWiki API" -msgstr "DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 -msgid "Habilitar API de DokuWiki" -msgstr "Abilita l'API di DokuWiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 -msgid "" -"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." -msgstr "" -"Abilita la connessione all'API XML-RPC DokuWiki per i collegamenti Wiki." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 -msgid "" -"Para que esta característica funcione, es necesario habilitar los enlaces " -"Wiki para el filtrado de cuentas." -msgstr "" -"Affinché questa funzione funzioni, è necessario abilitare i collegamenti " -"Wiki per il filtraggio degli account." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 -msgid "URL API" -msgstr "URL API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 -msgid "URL de la API de DokuWiki." -msgstr "URL dell'API DokuWiki." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 -msgid "URL Base" -msgstr "URL di base" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 -msgid "URL base de DokuWiki." -msgstr "URL di base di DokuWiki." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 -#, fuzzy -msgid "Usuario para conectar a la API de DokuWiki." -msgstr "Utente per connettersi all'API DokuWiki." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 -msgid "Namespace" -msgstr "Spazio dei nomi" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 -msgid "Namespace utilizado para buscar las páginas." -msgstr "Spazio dei nomi utilizzato per cercare nelle pagine." - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 -msgid "Nivel" -msgstr "Livello" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 -msgid "Eliminar Seleccionados" -msgstr "Eliminare selezioni" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 -msgid "Nombre del plugin" -msgstr "Nome del plugin" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 -msgid "Versión del plugin" -msgstr "Versione del plugin" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 -msgid "Versión Compatible" -msgstr "Versione compatibile" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 -msgid "Versión de sysPass compatible" -msgstr "Versione di susPass compatibile" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 -msgid "Autor" -msgstr "Autore" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 -msgid "Autor del plugin" -msgstr "Autore del plugin" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 -msgid "Publicar enlace a cuenta" -msgstr "Invia link al tuo account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 -msgid "Publicar Enlace" -msgstr "Post Link" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 -msgid "Crear cuenta privada" -msgstr "Crea un account privato" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 -msgid "Asignar permisos" -msgstr "Assegna le autorizzazioni" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 -msgid "Gestión de enlaces" -msgstr "Gestione dei collegamenti" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 -msgid "Gestión de cuentas" -msgstr "Gestione degli account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 -msgid "Gestión de etiquetas" -msgstr "Gestione dei tag" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 -msgid "Hash" -msgstr "Hash" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 -msgid "Uso" -msgstr "Uso" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:54 -#: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 -msgid "Nombre de la etiqueta" -msgstr "Nome del tag" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:40 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 -msgid "Hay %d notificaciones pendientes" -msgstr "Sono presenti %d notifiche in sospeso" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:165 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 -msgid "Demo" -msgstr "Demo" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 -msgid "Instalación %s" -msgstr "Installazione %s" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 -msgid "Admin de sysPass" -msgstr "Amministratore di sysPass" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 -msgid "Clave Anterior" -msgstr "Password precedente" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 -msgid "Actualización %s" -msgstr "Aggiorna %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 -msgid "" -"Este código se encuentra en el archivo de configuración de sysPass con la " -"etiqueta \"upgradeKey\"" -msgstr "" -"Questo codice può essere trovato nel file di configurazione sysPass con " -"l'etichetta \"upgradeKey\"" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 -#: ../../../config/actions.xml:277 -msgid "Ver Wiki" -msgstr "Vedi Wiki" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 -msgid "Resultados de búsqueda de '%s'" -msgstr "Cerca risultati per '%s'" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 -msgid "Página" -msgstr "Pagina" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 -msgid "No instalado" -msgstr "Non installato" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 -msgid "Origen" -msgstr "Sorgente" - -#: ../../../modules/web/Controllers/AccountController.php:226 -msgid "Agente" -msgstr "Agente" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 -msgid "" -"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." -"com/join/project/fmlsBuugyv" -msgstr "" -"Per migliorare / aggiungere traduzioni, puoi collaborare a https://poeditor." -"com/join/project/fmlsBuugyv" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 -msgid "Indica si el idioma se encuentra disponible" -msgstr "Indica se la lingua è disponibile" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 -msgid "" -"Si no está instalado, es necesario instalar las locales en el sistema " -"operativo. Más información en Wiki." -msgstr "" -"Se non è installato, è necessario installare i locali nel sistema operativo. " -"Maggiori informazioni su Wiki." - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:42 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:112 -msgid "No hay no hay notificaciones pendientes" -msgstr "Non ci sono notifiche in sospeso" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 -msgid "He realizado una copia de seguridad completa de sysPass" -msgstr "Ho effettuato un backup completo di sysPass" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 -msgid "Por favor espere mientras el proceso se ejecuta" -msgstr "Si prega di attendere mentre il processo è in esecuzione" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 -msgid "Crear Usuario" -msgstr "Aggiungi utente" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 -msgid "Actualizar Usuario" -msgstr "Aggiorna utente" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:284 -msgid "Actualizar Clave Usuario" -msgstr "Aggiorna la password utente" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 -msgid "Crear Grupo" -msgstr "Aggiungi gruppo" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 -msgid "Crear Perfil" -msgstr "Aggiungi profilo" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 -msgid "Actualizar Perfil" -msgstr "Aggiorna profilo" - -#: ../../../../lib/SP/Api/SyspassApi.php:368 -msgid "Crear Cliente" -msgstr "Aggiungi cliente" - -#: ../../../../lib/SP/Api/SyspassApi.php:279 -msgid "Crear Categoría" -msgstr "Aggiungi categoria" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 -msgid "Actualizar Categoría" -msgstr "Aggiorna categoria" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:623 -msgid "Crear Autorización" -msgstr "Aggiungi autorizzazione" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -msgid "Crear Campo" -msgstr "Aggiungi campo" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 -msgid "Actualizar Campo" -msgstr "Aggiorna campo" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:731 -msgid "Crear Enlace" -msgstr "Crea collegamento" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -msgid "Crear Etiqueta" -msgstr "Crea tag" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 -msgid "Actualizar Etiqueta" -msgstr "Aggiorna Tag" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:890 -msgid "Actualizar Plugin" -msgstr "Aggiorna Plugin" - -#: ../../../../lib/SP/Api/SyspassApi.php:188 -msgid "Crear Cuenta" -msgstr "Aggiungi Account" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1091 -msgid "Usuarios importados" -msgstr "Utenti importati" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 -#: ../../../modules/web/Controllers/AccountController.php:926 -msgid "Solicitud" -msgstr "Richiesta" - -#: ../../../../lib/SP/Core/Acl/Acl.php:299 -msgid "Acceso denegado" -msgstr "Accesso negato" - -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:115 -msgid "Error al añadir las etiquetas de la cuenta" -msgstr "Errore durante l'aggiunta di tag account" - -#: ../../../../lib/SP/Util/ErrorUtil.php:148 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 -msgid "Se ha producido una excepción" -msgstr "Si è verificata un'eccezione" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:179 -msgid "Nueva Notificación" -msgstr "Nuova notifica" - -#: ../../../modules/web/Controllers/UserGroupController.php:219 -#: ../../../modules/web/Controllers/UserGroupController.php:222 -msgid "Grupos eliminados" -msgstr "Gruppi eliminati" - -#: ../../../modules/web/Controllers/UserProfileController.php:203 -#: ../../../modules/web/Controllers/UserProfileController.php:206 -msgid "Perfiles eliminados" -msgstr "Profili eliminati" - -#: ../../../modules/web/Controllers/ClientController.php:201 -#: ../../../modules/web/Controllers/ClientController.php:204 -msgid "Clientes eliminados" -msgstr "Clienti eliminati" - -#: ../../../modules/web/Controllers/CategoryController.php:206 -#: ../../../modules/web/Controllers/CategoryController.php:209 -msgid "Categorías eliminadas" -msgstr "Categorie eliminate" - -#: ../../../modules/web/Controllers/AuthTokenController.php:212 -#: ../../../modules/web/Controllers/AuthTokenController.php:215 -msgid "Autorizaciones eliminadas" -msgstr "Autorizzazioni eliminate" - -#: ../../../modules/web/Controllers/CustomFieldController.php:197 -#: ../../../modules/web/Controllers/CustomFieldController.php:200 -msgid "Campos eliminados" -msgstr "Campi eliminati" - -#: ../../../modules/web/Controllers/PublicLinkController.php:234 -#: ../../../modules/web/Controllers/PublicLinkController.php:237 -msgid "Enlaces eliminados" -msgstr "Collegamenti cancellati" - -#: ../../../modules/web/Controllers/TagController.php:200 -msgid "Etiquetas eliminadas" -msgstr "Tags eliminate" - -#: ../../../modules/web/Controllers/AccountFileController.php:320 -#: ../../../modules/web/Controllers/AccountFileController.php:323 -msgid "Archivos eliminados" -msgstr "Files eliminati" - -#: ../../../modules/web/Controllers/AccountController.php:879 -#: ../../../modules/web/Controllers/AccountController.php:882 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:99 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:102 -#: ../../../modules/web/Controllers/AccountManagerController.php:131 -#: ../../../modules/web/Controllers/AccountManagerController.php:134 -msgid "Cuentas eliminadas" -msgstr "Accounts eliminati" - -#: ../../../modules/web/Controllers/NotificationController.php:327 -#: ../../../modules/web/Controllers/NotificationController.php:330 -msgid "Notificación creada" -msgstr "Notifica creata" - -#: ../../../modules/web/Controllers/NotificationController.php:251 -#: ../../../modules/web/Controllers/NotificationController.php:254 -msgid "Notificaciones eliminadas" -msgstr "Notifica eliminata" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:270 -msgid "Usando clave temporal" -msgstr "Utilizzo della chiave temporanea" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:131 -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:181 -msgid "Clave temporal caducada" -msgstr "Chiave temporanea scaduta" - -#: ../../../../inc/SP/Core/Init.class.php:506 -msgid "Sesión" -msgstr "Sessione" - -#: ../../../../lib/SP/Services/Install/MySQL.php:361 -msgid "Error al comprobar la base de datos" -msgstr "Errore durante il controllo del database" - -#: ../../../../lib/SP/Services/Install/MySQL.php:363 -msgid "Intente de nuevo la instalación" -msgstr "Prova di nuovo l'installazione" - -#: ../../../modules/web/Forms/NotificationForm.php:92 -msgid "Es necesario un componente" -msgstr "Un componente è necessario" - -#: ../../../modules/web/Forms/NotificationForm.php:96 -msgid "Es necesario un tipo" -msgstr "È necessario un tipo" - -#: ../../../modules/web/Forms/NotificationForm.php:106 -msgid "Es necesario un destinatario" -msgstr "È richiesta una destinazione" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:167 -msgid "Error procesando línea" -msgstr "Errore durante l'elaborazione della linea" - -#: ../../../modules/web/Controllers/ConfigImportController.php:76 -msgid "Cuentas importadas" -msgstr "Account importati" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:164 -msgid "Archivo no encontrado" -msgstr "File non trovato" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:80 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:98 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:187 -#: ../../../../lib/SP/Services/UserGroup/UserToUserGroupService.php:57 -msgid "Grupo no encontrado" -msgstr "Gruppo non trovato" - -#: ../../../../lib/SP/Services/Notification/NotificationService.php:102 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:121 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:180 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:210 -msgid "Notificación no encontrada" -msgstr "Notifica non trovata" - -#: ../../../../lib/SP/Services/Plugin/PluginService.php:92 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:153 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:186 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:206 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:224 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:241 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:258 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:275 -msgid "Plugin no encontrado" -msgstr "Plugin non trovato" - -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:65 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:97 -msgid "Perfil no encontrado" -msgstr "Profile non trovato" - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:122 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:145 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:219 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:311 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:346 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:367 -msgid "Enlace no encontrado" -msgstr "Link non trovato" - -#: ../../../../lib/SP/Services/Tag/TagService.php:75 -#: ../../../../lib/SP/Services/Tag/TagService.php:94 -#: ../../../../lib/SP/Services/Tag/TagService.php:111 -msgid "Etiqueta no encontrada" -msgstr "Tag non trovato" - -#: ../../../../lib/SP/Services/User/UserService.php:192 -msgid "Usuario no encontrado" -msgstr "Utente non trovato" - -#: ../../../../lib/SP/Storage/Database/Database.php:131 -msgid "Consulta en blanco" -msgstr "Richiesta vuota" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 -msgid "Cuenta Privada Grupo" -msgstr "Gruppo di account privato" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 -msgid "Privada Grupo" -msgstr "Gruppo privato" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 -msgid "Sólo es necesaria para archivos XML de sysPass encriptados." -msgstr "È necessario solo per i file XML sysPass crittografati." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 -msgid "" -"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " -"la actual." -msgstr "" -"È necessario solo per i file XML sysPass con una password master diversa da " -"quella corrente." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 -msgid "Sólo es necesario para archivos CSV." -msgstr "È necessario solo per i file CSV." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 -#, fuzzy -msgid "" -"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" -"\"notas\"" -msgstr "" -"\"nome_account\";\"cliente\";\"categoria\";\"url\";\"utente\";\"password\";" -"\"note\"" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 -msgid "Crear cuenta privada para grupo" -msgstr "Crea un account privato per il gruppo" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 -msgid "Notificación global" -msgstr "Notifica globale" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 -msgid "Global" -msgstr "Globale" - -#: ../../../../lib/SP/Services/Service.php:115 -msgid "No es posible iniciar una transacción" -msgstr "Non è possibile iniziare una transazione" - -#: ../../../../lib/SP/Services/Crypt/MasterPassService.php:101 -#: ../../../../lib/SP/Services/Import/ImportService.php:77 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "No es posible finalizar una transacción" -msgstr "Non è possibile terminare una transazione" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 -msgid "Clave Maestra %s" -msgstr "Master Password %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 -msgid "" -"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " -"el siguiente inicio." -msgstr "" -"Una nuova password è stata generata per l'accesso a sysPass e sarà richiesta " -"al prossimo avvio." - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 -msgid "La nueva clave es: %s" -msgstr "La nuova Master Password è: %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 -msgid "No olvide acceder lo antes posible para guardar los cambios." -msgstr "" -"Non dimenticare di accedere il prima possibile per salvare le modifiche." - -#: ../../../config/strings.js.inc:84 -msgid "Este proceso puede durar algo de tiempo. Desea continuar?" -msgstr "Questo processo potrebbe richiedere del tempo. Vuoi continuare?" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 -msgid "Búsqueda" -msgstr "Ricerca" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 -msgid "" -"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." -msgstr "" -"Invia un'email a tutti gli utenti o solo a quelli del gruppo selezionato." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 -msgid "Enviar correo" -msgstr "Manda mail" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 -msgid "XML" -msgstr "XML" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 -msgid "CSV" -msgstr "CSV" - -#: ../../../../lib/SP/Services/Account/AccountService.php:163 -#: ../../../../lib/SP/Services/Account/AccountService.php:599 -msgid "Cuenta no encontrada" -msgstr "Account non trovato" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:161 -msgid "Hash de clave maestra actualizado" -msgstr "Ha aggiornato l'hash della chiave principale" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 -msgid "Error al actualizar el hash de la clave maestra" -msgstr "Impossibile aggiornare l'hash della password principale" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:210 -#: ../../../config/actions.xml:823 -msgid "Editar Notificación" -msgstr "Modifica notifica" - -#: ../../../modules/web/Controllers/UserController.php:266 -#: ../../../modules/web/Controllers/UserController.php:269 -msgid "Usuarios eliminados" -msgstr "Utenti eliminati" - -#: ../../../modules/web/Controllers/NotificationController.php:360 -#: ../../../modules/web/Controllers/NotificationController.php:363 -msgid "Notificación actualizada" -msgstr "Notifica aggiornata" - -#: ../../../../lib/SP/Storage/Database/Database.php:259 -msgid "Restricción de integridad" -msgstr "Vincolo di integrità" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 -msgid "Actualizar hash de clave maestra" -msgstr "Aggiorna hash chiave principale" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 -msgid "Modificada" -msgstr "Modificata" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 -msgid "Eliminada" -msgstr "Rimossa" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 -msgid "Cuentas (H)" -msgstr "Accounts (H)" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:194 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:224 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:124 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:148 -msgid "Clave de encriptación incorrecta" -msgstr "Chiave di crittografia errata" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:7 -msgid "Área de Texto" -msgstr "Area di testo" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 -msgid "Devolver las cuentas en las que 'login' es propietario" -msgstr "Restituisci i conti in cui \"login\" è il proprietario" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 -msgid "Devolver las cuentas con grupo principal 'group_name'" -msgstr "Restituisci account con il gruppo 'group_name'" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 -msgid "Devolver las cuentas privadas del usuario actual" -msgstr "Restituisce gli account privati ​​dell'utente corrente" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 -msgid "OP Cache" -msgstr "OP Cache" - -#: ../../../modules/web/Controllers/UpgradeController.php:71 -msgid "Código de seguridad incorrecto" -msgstr "Codice di sicurezza errato" - -#: ../../../modules/web/Controllers/UpgradeController.php:67 -msgid "Es necesario confirmar la actualización" -msgstr "È necessario confermare l'aggiornamento" - -#: ../../../modules/web/Controllers/UpgradeController.php:92 -msgid "En 5 segundos será redirigido al login" -msgstr "In 5 secondi verrai reindirizzato per accedere" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:70 -msgid "Error al aplicar la actualización de la aplicación" -msgstr "Errore durante l'applicazione dell'aggiornamento dell'applicazione" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 -msgid "Tamaño máximo de archivo en kilobytes" -msgstr "Dimensione massima del file in kilobyte" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 -msgid "Actualización de Aplicación" -msgstr "Aggiornamento dell'applicazione" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 -msgid "" -"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " -"o indique los IDs por defecto para los elementos huérfanos." -msgstr "" -"Sono stati trovati elementi orfani. Si prega di modificare questi elementi o " -"indicare gli ID di default per gli elementi orfani." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 -msgid "Introducir un ID de usuario válido para cuentas" -msgstr "Inserisci un ID utente valido per gli account" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 -msgid "Introducir un ID de categoría válido para cuentas" -msgstr "Inserisci un ID di categoria valido per gli account" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 -#, fuzzy -msgid "Introducir un ID de cliente válido para cuentas" -msgstr "Inserisci un ID cliente valido per gli account" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 -msgid "Introducir un ID de grupo válido para usuarios" -msgstr "Inserisci un ID di gruppo valido per gli utenti" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 -msgid "Introducir un ID de perfil válido para usuarios" -msgstr "Inserisci un ID profilo valido per gli utenti" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 -msgid "" -"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " -"necesario reencriptar los datos almacenados" -msgstr "" -"Questo aggiornamento utilizza un nuovo schema di crittografia, pertanto è " -"necessario crittografare nuovamente i dati memorizzati" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 -msgid "" -"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." -msgstr "Aggiornerai %s account. Questo processo potrebbe richiedere del tempo." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 -msgid "Para más información consulte: %s" -msgstr "Per maggiori informazioni vedi: %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 -msgid "Introducir login de usuario válido" -msgstr "Inserisci un accesso utente valido" - -#: ../../../../lib/SP/Services/Api/ApiService.php:96 -#: ../../../../lib/SP/Services/Auth/LoginService.php:137 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:103 -#: ../../../modules/web/Controllers/UserPassResetController.php:124 -msgid "Intentos excedidos" -msgstr "Numero massimo di tentativi superati" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 -msgid "Clave del token" -msgstr "Token's Password" - -#: ../../../../lib/SP/Services/Track/TrackService.php:162 -msgid "Intentos excedidos (%d/%d)" -msgstr "Numero massimo di tentativi superati (%d/%d)" - -#: ../../../../lib/SP/Http/Address.php:49 -#: ../../../../lib/SP/Http/Address.php:51 -#: ../../../../lib/SP/Http/Address.php:68 -#: ../../../../lib/SP/Http/Address.php:70 -#: ../../../../lib/SP/Http/Address.php:90 -#: ../../../../lib/SP/Http/Address.php:109 -msgid "IP inválida" -msgstr "Indirizzo IP non valido" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:139 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:277 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:291 -msgid "Token no encontrado" -msgstr "Token non trovato" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:68 -msgid "Error al crear track" -msgstr "Errore durante la creazione della traccia" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:85 -msgid "Error al eliminar track" -msgstr "Errore durante l'eliminazione della traccia" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:102 -msgid "Error al actualizar track" -msgstr "Errore durante l'aggiornamento della traccia" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:146 -msgid "Error al obtener track" -msgstr "Errore nell'ottenere traccia" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:169 -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:202 -msgid "Error al obtener tracks" -msgstr "Errore durante il recupero delle tracce" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 -#, fuzzy -msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." -msgstr "Gli articoli esportati sono account, clienti, categorie e tag." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 -msgid "Si no se indican los IDs, se crearán nuevos elementos." -msgstr "Se gli ID non vengono indicati, verranno creati nuovi elementi." - -#: ../../../../lib/SP/Services/Task/TaskService.php:184 -msgid "Esperando actualización de progreso ..." -msgstr "In attesa dell'aggiornamento ..." - -#: ../../../../inc/SP/Core/Upgrade/Account.class.php:47 -msgid "Actualizando IDs de cuentas" -msgstr "Aggiornamento degli ID account" - -#: ../../../../inc/SP/Core/Upgrade/Category.class.php:48 -msgid "Actualizando IDs de categorías" -msgstr "Aggiornamento degli ID di categoria" - -#: ../../../../inc/SP/Core/Upgrade/Customer.class.php:48 -msgid "Actualizando IDs de clientes" -msgstr "Aggiornamento degli ID cliente" - -#: ../../../../inc/SP/Core/Upgrade/Group.class.php:51 -msgid "Actualizando IDs de grupos" -msgstr "Aggiornamento degli ID di gruppo" - -#: ../../../../inc/SP/Core/Upgrade/Profile.class.php:54 -msgid "Actualizando IDs de perfil" -msgstr "Aggiornamento degli ID profilo" - -#: ../../../../inc/SP/Core/Upgrade/User.class.php:52 -msgid "Actualizando IDs de usuarios" -msgstr "Aggiornamento degli ID utente" - -#: ../../../config/strings.js.inc:87 -msgid "" -"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." -msgstr "" -"Fare i compiti Per favore, non chiudere la finestra / scheda del browser." - -#: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 -msgid "Incluir Letras" -msgstr "Includi lettere" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 -msgid "Sesión Encriptada" -msgstr "Sessione crittografata" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 -msgid "Indica si los datos de la sesión están encriptados en el servidor" -msgstr "Indica se i dati della sessione sono crittografati sul server" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "Sí" -msgstr "Si" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "No" -msgstr "No" - -#: ../../../config/strings.js.inc:89 -msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." -msgstr "Cookie disabilitati L'applicazione non funzionerà correttamente." - -#: ../../../config/strings.js.inc:90 -msgid "Portapapeles no soportado por el navegador." -msgstr "Appunti non supportati dal browser." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 -msgid "Atributo Login" -msgstr "Attributo login" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 -msgid "" -"Define el atributo a utilizar para el login del usuario en la importación." -msgstr "" -"Definisce l'attributo da utilizzare per il login dell'utente " -"nell'importazione." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 -msgid "" -"Habilita el acceso a los usuarios que estén incluidos en los grupos " -"secundarios." -msgstr "Consente l'accesso agli utenti inclusi nei gruppi figlio." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 -msgid "" -"Por defecto el usuario de un grupo secundario es permitido si el grupo " -"secundario está establecido como el primario del usuario." -msgstr "" -"Per impostazione predefinita, l'utente di un gruppo secondario è consentito " -"se il gruppo secondario è stabilito come primario dell'utente." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 -msgid "Acceso Grupos Secundarios" -msgstr "Accesso ai gruppi secondari" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 -msgid "Encriptar los datos de la sesión de PHP." -msgstr "Cripta i dati della sessione PHP." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 -msgid "" -"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " -"datos almacenados no serán legibles." -msgstr "" -"Questa funzionalità aumenta la sicurezza delle sessioni PHP poiché i dati " -"memorizzati non saranno leggibili." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 -msgid "Encriptar Sesión" -msgstr "Cripta la sessione" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 -msgid "Atributo Nombre" -msgstr "Attributo Nome" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 -msgid "" -"Define el atributo a utilizar para el nombre del usuario en la importación." -msgstr "" -"Definisce l'attributo da utilizzare per il nome dell'utente " -"nell'importazione." - -#: ../../../config/strings.js.inc:92 -msgid "Hay una versión más reciente del plugin {0} ({1})" -msgstr "C'è una versione più recente del plugin {0} ({1})" - -#: ../../../../lib/SP/Bootstrap.php:267 -msgid "Versión de PHP requerida >= %s <= %s" -msgstr "Required PHP version >= %s <= %s" - -#: ../../../../lib/SP/Config/ConfigUtil.php:111 -msgid "Actual: %s - Necesario: 750" -msgstr "Current: %s - Needed: 750" - -#: ../../../../lib/SP/Core/Acl/Actions.php:176 -msgid "Acción no encontrada" -msgstr "Action not found" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:103 -#: ../../../../lib/SP/Core/Context/ContextBase.php:126 -msgid "Contexto ya inicializado" -msgstr "Context already initialized" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:109 -msgid "Contexto inválido" -msgstr "Invalid context" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:154 -msgid "Contexto no inicializado" -msgstr "Context not initialized" - -#: ../../../../lib/SP/Core/UI/Theme.php:193 -msgid "Clase no válida para iconos" -msgstr "Invalid icons class" - -#: ../../../../lib/SP/Mvc/Model/QueryCondition.php:71 -msgid "Tipo de filtro inválido" -msgstr "Invalid filter type" - -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:95 -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:157 -msgid "Tipo de objeto incorrecto" -msgstr "Wrong object type" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 -msgid "Realizado por: %s (%s)" -msgstr "Performed by: %s (%s)" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 -msgid "Dirección IP: %s" -msgstr "IP Address: %s" - -#: ../../../../lib/SP/Providers/Mail/MailProvider.php:91 -msgid "No es posible inicializar" -msgstr "Unable to initialize" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 -#: ../../../modules/web/Controllers/NotificationController.php:267 -#: ../../../modules/web/Controllers/NotificationController.php:298 -msgid "Notificación" -msgstr "Notification" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:302 -msgid "Error al eliminar los archivos" -msgstr "Error while deleting the files" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:292 -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:315 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:501 -#: ../../../../lib/SP/Services/Account/AccountService.php:616 -msgid "Error al eliminar las cuentas" -msgstr "Error while deleting the accounts" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:253 -msgid "Error al eliminar la categorías" -msgstr "Error while deleting the categories" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:264 -#: ../../../../lib/SP/Services/Client/ClientService.php:127 -msgid "Error al eliminar los clientes" -msgstr "Error while deleting the clients" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:239 -msgid "Error al eliminar los campos personalizados" -msgstr "Error while removing the custom fields" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:61 -msgid "Error al crear el tipo de campo" -msgstr "Error while creating the field type" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:97 -msgid "Error al actualizar el tipo de campo" -msgstr "Error while updating the field type" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:179 -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:198 -msgid "Error al eliminar el tipo de campo" -msgstr "Error while deleting the field type" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:179 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:302 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:140 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:159 -msgid "Error al eliminar las notificaciones" -msgstr "Error while deleting the notifications" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:447 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:493 -msgid "El enlace no existe" -msgstr "The link does not exist" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:243 -#: ../../../../lib/SP/Services/Tag/TagService.php:126 -msgid "Error al eliminar etiquetas" -msgstr "Error while removing the tags" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:353 -#: ../../../../lib/SP/Services/User/UserService.php:209 -msgid "Error al eliminar los usuarios" -msgstr "Error while deleting the users" - -#: ../../../../lib/SP/Services/User/UserPassService.php:256 -#: ../../../../lib/SP/Services/User/UserService.php:123 -#: ../../../../lib/SP/Services/User/UserService.php:154 -#: ../../../../lib/SP/Services/User/UserService.php:173 -msgid "El usuario no existe" -msgstr "The user does not exist" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:114 -msgid "Error al eliminar los perfiles" -msgstr "Error while removing the profiles" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 -msgid "Cuentas actualizadas: %d / %d" -msgstr "Accounts updated: %d / %d" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 -msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" -msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:145 -msgid "Error al eliminar archivos" -msgstr "Error while deleting the files" - -#: ../../../../lib/SP/Services/Api/ApiRequest.php:88 -msgid "Fomato incorrecto" -msgstr "Invalid format" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:43 -#: ../../../modules/api/Controllers/Help/TagHelp.php:65 -#: ../../../modules/api/Controllers/Help/TagHelp.php:89 -msgid "Id de etiqueta" -msgstr "Tag Id" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:158 -msgid "Error al eliminar tokens" -msgstr "Error while removing the tokens" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:763 -msgid "Exportación" -msgstr "Export" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:167 -msgid "Copiando base de datos" -msgstr "Copying database" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:303 -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:338 -msgid "Copiando aplicación" -msgstr "Copying application" - -#: ../../../../lib/SP/Services/Config/ConfigService.php:68 -#: ../../../../lib/SP/Services/Config/ConfigService.php:153 -msgid "Parámetro no encontrado (%s)" -msgstr "Parameter not found (%s)" - -#: ../../../../lib/SP/Services/Service.php:109 -msgid "Rollback" -msgstr "Rollback" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:160 -msgid "Error al comprobar clave temporal" -msgstr "Error while checking the temporary password" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:109 -msgid "Campo no encontrado" -msgstr "Field not found" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:130 -msgid "Error al eliminar los campos" -msgstr "Error while deleting the fields" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:233 -msgid "Exportando categorías" -msgstr "Exporting categories" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:345 -msgid "Exportando clientes" -msgstr "Exporting clients" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:391 -msgid "Exportando etiquetas" -msgstr "Exporting tags" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:435 -msgid "Exportando cuentas" -msgstr "Exporting accounts" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:158 -#: ../../../../lib/SP/Services/Import/KeepassImport.php:103 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:387 -msgid "Cuenta importada" -msgstr "Account imported" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:58 -msgid "Importación XML KeePass" -msgstr "KeePass XML Import" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:91 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:211 -msgid "Categoría importada" -msgstr "Category imported" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:58 -msgid "Importación XML sysPass" -msgstr "sysPass XML Import" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:162 -msgid "Datos desencriptados" -msgstr "Data unencrypted" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:250 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:290 -msgid "Cliente importado" -msgstr "Client imported" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:326 -msgid "Etiqueta importada" -msgstr "Tag imported" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:99 -msgid "Formato no detectado" -msgstr "Format not detected" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:107 -msgid "Not implemented" -msgstr "Not implemented" - -#: ../../../../lib/SP/Services/Install/MySQL.php:135 -msgid "No es posible comprobar el usuario de sysPass (%s)" -msgstr "Unable to check the sysPass user (%s)" - -#: ../../../../lib/SP/Services/Install/MySQL.php:213 -#: ../../../../lib/SP/Services/Install/MySQL.php:329 -#: ../../../../lib/SP/Services/Install/MySQL.php:341 -msgid "Error al crear la BBDD ('%s')" -msgstr "Error while creating the DB ('%s')" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 -msgid "Importado desde LDAP" -msgstr "Imported from LDAP" - -#: ../../../../lib/SP/Services/Mail/MailService.php:66 -msgid "Prueba de correo" -msgstr "Mail test" - -#: ../../../../lib/SP/Services/Mail/MailService.php:67 -msgid "" -"Esto es una prueba de correo para verificar el correcto funcionamiento de la " -"configuración." -msgstr "" -"This is a test email in order to verify that the configuration is working " -"right." - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:238 -msgid "Error al eliminar los enlaces" -msgstr "Error while removing the links" - -#: ../../../../lib/SP/Services/Task/TaskService.php:81 -msgid "No es posible crear archivo de bloqueo" -msgstr "Unable to create the lock file" - -#: ../../../../lib/SP/Services/Track/TrackService.php:163 -msgid "Segundos" -msgstr "Seconds" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:63 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:86 -msgid "Actualizar Aplicación" -msgstr "Update Application" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:57 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:59 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:102 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:139 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:171 -msgid "Actualización de campos personalizados" -msgstr "Custom fields update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:157 -#: ../../../modules/web/Controllers/CustomFieldController.php:235 -#: ../../../modules/web/Controllers/CustomFieldController.php:272 -msgid "Campo" -msgstr "Field" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:56 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "Actualización de enlaces públicos" -msgstr "Public links update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:90 -#: ../../../modules/web/Controllers/PublicLinkController.php:246 -msgid "Enlace" -msgstr "Link" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:115 -msgid "Error al eliminar los grupos" -msgstr "Error while deleting the groups" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 -msgid "No es posible leer el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:47 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:58 -msgid "Error al leer datos del archivo (%s)" -msgstr "Error while reading file data (%s)" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 -#: ../../../../lib/SP/Storage/File/FileCache.php:74 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 -msgid "No es posible crear el directorio (%s)" -msgstr "Unable to create the directory (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 -msgid "No es posible escribir en el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 -msgid "No es posible abrir el archivo (%s)" -msgstr "Unable to open the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:92 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:128 -msgid "Error al eliminar el archivo (%s)" -msgstr "Error while deleting the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:54 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:104 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:124 -msgid "No es posible leer/escribir el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 -msgid "Error al descomprimir datos del archivo (%s)" -msgstr "Error while decompressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 -msgid "Error al obtener los datos" -msgstr "Error while retrieving the data" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 -msgid "Error al comprimir datos del archivo (%s)" -msgstr "Error while compressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:112 -msgid "Error al escribir datos en el archivo (%s)" -msgstr "Error while writing data to file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 -msgid "Datos no cargados" -msgstr "Data not loaded" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 -msgid "No es posible cerrar el archivo (%s)" -msgstr "Unable to close the file (%s)" - -#: ../../../modules/api/Controllers/AccountController.php:70 -msgid "Cuenta visualizada" -msgstr "Account displayed" - -#: ../../../modules/api/Controllers/AccountController.php:102 -#: ../../../modules/web/Controllers/AccountController.php:554 -#: ../../../modules/web/Controllers/AccountController.php:610 -msgid "Clave visualizada" -msgstr "Password viewed" - -#: ../../../modules/api/Controllers/ConfigController.php:82 -#: ../../../modules/web/Controllers/ConfigBackupController.php:92 -msgid "Exportación de sysPass en XML" -msgstr "sysPass XML export" - -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:117 -#: ../../../modules/api/Controllers/TagController.php:146 -msgid "Etiqueta" -msgstr "Tag" - -#: ../../../modules/api/Init.php:135 -msgid "Es necesario actualizar" -msgstr "Updating needed" - -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "HTTPS" -msgstr "HTTPS" - -#: ../../../modules/web/Controllers/AccountController.php:649 -#: ../../../modules/web/Controllers/AccountController.php:683 -msgid "Clave copiada" -msgstr "Password copied" - -#: ../../../modules/web/Controllers/AccountFileController.php:83 -#: ../../../modules/web/Controllers/AccountFileController.php:96 -msgid "Archivo visualizado" -msgstr "File viewed" - -#: ../../../modules/web/Controllers/AccountFileController.php:136 -msgid "Archivo descargado" -msgstr "File downloaded" - -#: ../../../modules/web/Controllers/AccountFileController.php:186 -msgid "Extensión: %s" -msgstr "Extension: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:193 -msgid "Archivo: %s" -msgstr "File: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:201 -msgid "Máximo tamaño: %s" -msgstr "Maximum size: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:211 -msgid "Máximo tamaño: %d KB" -msgstr "Maximum size: %d KB" - -#: ../../../modules/web/Controllers/AccountFileController.php:334 -msgid "Archivo Eliminado" -msgstr "File Deleted" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 -#: ../../../modules/web/Controllers/AuthTokenController.php:226 -#: ../../../modules/web/Controllers/AuthTokenController.php:292 -#: ../../../modules/web/Controllers/AuthTokenController.php:301 -#: ../../../modules/web/Controllers/AuthTokenController.php:339 -msgid "Autorización" -msgstr "Authorization" - -#: ../../../modules/web/Controllers/AuthTokenController.php:338 -msgid "Autorización visualizada" -msgstr "Authorization viewed" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:78 -msgid "Archivos habilitados" -msgstr "Files enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:83 -msgid "Archivos deshabilitados" -msgstr "Files disabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:96 -msgid "Enlaces públicos habilitados" -msgstr "Public links enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:101 -msgid "Enlaces públicos deshabilitados" -msgstr "Public links disabled" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 -msgid "Esta clave estará activa hasta: %s" -msgstr "This password will be valid until: %s" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -msgid "Email enviado" -msgstr "Email sent" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -msgid "Error al enviar email" -msgstr "Error while sending the email" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:97 -msgid "Syslog remoto habilitado" -msgstr "Remote syslog enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:153 -msgid "Auth Basic habilitada" -msgstr "Auth Basic enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:159 -msgid "Auth Basic deshabiltada" -msgstr "Auth Basic disabled" - -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -msgid "No se importaron cuentas" -msgstr "No accounts were imported" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:115 -#: ../../../modules/web/Controllers/ConfigLdapController.php:238 -msgid "Parámetros de LDAP incorrectos" -msgstr "Wrong LDAP parameters" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:245 -msgid "Importación LDAP" -msgstr "LDAP Import" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 -msgid "Usuarios importados: %d / %d" -msgstr "Imported users: %d / %d" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 -msgid "Errores: %d" -msgstr "Errors: %d" - -#: ../../../modules/web/Controllers/ConfigMailController.php:145 -msgid "Compruebe su buzón de correo" -msgstr "Please, check your inbox" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:99 -msgid "DokuWiki habilitada" -msgstr "DokuWiki enabled" - -#: ../../../modules/web/Controllers/CustomFieldController.php:298 -msgid "Ver Campo" -msgstr "View Field" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 -#: ../../../config/actions.xml:439 -msgid "Actualizar Enlace Público" -msgstr "Update Public Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 -msgid "Nuevo Enlace" -msgstr "New Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 -msgid "No disponible" -msgstr "Unavailable" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 -msgid "Refrescar" -msgstr "Refresh" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 -msgid "Sólo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/Controllers/PublicLinkController.php:109 -msgid "Nuevo Enlace Público" -msgstr "New Public Link" - -#: ../../../modules/web/Controllers/PublicLinkController.php:196 -msgid "Editar Enlace Público" -msgstr "Edit Public Link" - -#: ../../../modules/web/Controllers/StatusController.php:94 -msgid "Versión no disponible" -msgstr "Version unavailable" - -#: ../../../modules/web/Controllers/StatusController.php:142 -msgid "Notificaciones no disponibles" -msgstr "Notifications not available" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 -#: ../../../config/actions.xml:511 -msgid "Ver Etiqueta" -msgstr "View Tag" - -#: ../../../modules/web/Controllers/UserPassResetController.php:90 -msgid "Datos incorrectos" -msgstr "Wrong data" - -#: ../../../modules/web/Controllers/UserPassResetController.php:94 -msgid "No es posible recuperar la clave" -msgstr "Unable to reset the password" - -#: ../../../modules/web/Forms/PublicLinkForm.php:85 -msgid "Es necesario una cuenta" -msgstr "An account is needed" - -#: ../../../config/strings.js.inc:91 -msgid "Realizando auto-login" -msgstr "Performing auto-login" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 -msgid "Abrir enlace a: %s" -msgstr "Open link to: %s" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 -msgid "Cuenta Privada (Grupo)" -msgstr "Private Account (Group)" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 -msgid "Notes" -msgstr "Notes" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 -msgid "Usar Auth Basic" -msgstr "Use Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:26 -msgid "Usar auto-login con Auth Basic" -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 -msgid "Dominio" -msgstr "Domain" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 -msgid "" -"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " -"el de Auth Basic." -msgstr "" -"The domain will be added to the sysPass user name for checking against the " -"Auth Basic one." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 -msgid "Nombre de dominio" -msgstr "Domain name" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 -msgid "" -"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default users group for newly SSO users" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 -msgid "" -"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default profile for the newly created SSO users." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 -msgid "Importación" -msgstr "Import" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 -msgid "Importar Grupos" -msgstr "Import Groups" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 -msgid "Atributo Nombre Grupo" -msgstr "Group Name Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 -msgid "" -"Define el atributo a utilizar para el nombre del grupo en la importación." -msgstr "Defines the attribute for the user group name when importing." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 -msgid "Filtro" -msgstr "Filter" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 -msgid "Filtro para importar usuarios o grupos de LDAP." -msgstr "Filter for importing LDAP users or groups." - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 -msgid "Destinatarios" -msgstr "Recipients" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 -msgid "Indica si el cliente es visible para todos los usuarios." -msgstr "Sets whether the client is visible by all users" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 -msgid "" -"Por defecto los clientes asignados a cuentas sólo son visibles para los " -"usuarios con acceso a las cuentas." -msgstr "" -"By default, the clients assigned to accounts only will be visible to users " -"who are granted to access to the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 -msgid "URL" -msgstr "URL" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 -msgid "Login SSO" -msgstr "SSO Login " - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 -msgid "Login de inicio de sesión con SSO" -msgstr "Session login with SSO" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 -msgid "Sólo para administradores de la aplicación" -msgstr "Only for application administrators" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 -msgid "Solo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 -msgid "Para iniciar la actualización introduzca el código de seguridad" -msgstr "Please enter the security code to start the upgrade" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:73 -msgid "No es posible cambiar el valor de la clave" -msgstr "Unable to change password value" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:345 -msgid "Filtro incorrecto" -msgstr "Wrong filter" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:159 -msgid "El campo personalizado no existe" -msgstr "Custom field not found" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:212 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:137 -msgid "Error al eliminar los plugins" -msgstr "Error while deleting the plugins" - -#: ../../../../lib/SP/Services/Account/AccountService.php:220 -msgid "Clave maestra no establecida" -msgstr "Master password not set" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:134 -msgid "Error al eliminar las categorías" -msgstr "Error while deleting categories" - -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:80 -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:87 -msgid "No es posible restaurar la configuración" -msgstr "Unable to restore configuration" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldTypeService.php:84 -msgid "Tipo de campo no encontrado" -msgstr "Field type not found" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:177 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:176 -msgid "Fallo en la verificación del hash de integridad" -msgstr "Error while checking integrity hash" - -#: ../../../../lib/SP/Services/Install/Installer.php:359 -msgid "Error al crear el usuario 'admin'" -msgstr "Error while creating 'admin' user" - -#: ../../../../lib/SP/Services/Install/MySQL.php:309 -msgid "Error al seleccionar la BBDD '%s' (%s)" -msgstr "Error while selecting '%s' database (%s)" - -#: ../../../../lib/SP/Services/Mail/MailService.php:186 -msgid "Servicio de correo no disponible" -msgstr "Mail service unavailable" - -#: ../../../../lib/SP/Services/Service.php:137 -#: ../../../../lib/SP/Services/Service.php:144 -msgid "Error ol obtener la clave maestra del contexto" -msgstr "Error while retrieving master pass from context" - -#: ../../../../lib/SP/Services/Service.php:160 -#: ../../../../lib/SP/Services/Service.php:164 -msgid "Error ol establecer la clave maestra en el contexto" -msgstr "Error while setting master password in context" - -#: ../../../../lib/SP/Services/Track/TrackService.php:87 -#: ../../../../lib/SP/Services/Track/TrackService.php:101 -#: ../../../../lib/SP/Services/Track/TrackService.php:128 -msgid "Track no encontrado" -msgstr "Track not found" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:55 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:85 -msgid "Actualización de autorizaciones API" -msgstr "API authorizations update" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 -msgid "No es posible leer desde el archivo (%s)" -msgstr "Unable to read from file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 -msgid "No es posible escribir el archivo (%s)" -msgstr "Unable to write in file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 -msgid "Archivo no encontrado (%s)" -msgstr "File not found (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 -msgid "No es posible eliminar el archivo (%s)" -msgstr "Unable to delete file (%s)" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:89 -#: ../../../../lib/SP/Storage/File/XmlHandler.php:309 -msgid "El nodo XML no existe" -msgstr "The XML node does not exist" - -#: ../../../../lib/SP/Util/ImageUtil.php:65 -msgid "Imagen no válida" -msgstr "Invalid image" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:117 -msgid "Verificación de datos exportados finalizada" -msgstr "Verification of exported data finished" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 -msgid "Encriptado" -msgstr "Encrypted" - -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:173 -msgid "Error al actualizar los datos del campo personalizado" -msgstr "Error while updating custom field's data" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 -msgid "Enlace Directo" -msgstr "Direct Link" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 -msgid "Parámetros especiales" -msgstr "Special parameters" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 -msgid "" -"Es posible utilizar uno o varios parámetros especiales separados por espacios" -msgstr "" -"You could use either one or several special parameters separated by blank " -"spaces" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 -msgid "Devolver la cuenta con ID" -msgstr "Returns the account for the given ID" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 -msgid "Operador para los parámetros especiales" -msgstr "Operator for special parameters" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 -msgid "Los datos serán encriptados al guardar" -msgstr "Data will be encrypted after saving" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 -msgid "Los datos serán desencriptados al guardar" -msgstr "Data will be unencrypted after saving" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 -msgid "Caducidad clave cuentas" -msgstr "Accounts password expiry" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 -msgid "Habilita la caducidad de la clave de cuentas." -msgstr "Enables the accounts password expiry date." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 -msgid "Tiempo caducidad clave" -msgstr "Password expiry time" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 -msgid "Número de días para la caducidad de la clave de cuenta." -msgstr "Number of days for the account expiry date." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 -msgid "Tiempo caducidad (días)" -msgstr "Expire time (days)" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 -msgid "" -"Confirmar el cambio de clave maestra después de haber leído las advertencias " -"anteriores." -msgstr "" -"Confirm the master password change after you have been read all the above " -"warnings." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 -msgid "Usar Auth Basic para autorizar los accesos a la aplicación." -msgstr "Use Auth Basic for authorizing the accesses to the application" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 -msgid "Usar Auth Basic SSO" -msgstr "Use Auth Basic SSO" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 -msgid "Usar auto-login con Auth Basic." -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 -msgid "Usar proxy para comprobación de actualizaciones y notificaciones." -msgstr "Use a proxy server for checking out for updates and notifications." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 -msgid "Usado en" -msgstr "Used in" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 -msgid "(*) Incluido en grupo" -msgstr "(*) Listed in group" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -msgid "La extensión '%s' no está disponible" -msgstr "The '%s' extension is unavailable" - -#: ../../../../lib/SP/Services/Service.php:133 -#: ../../../../lib/SP/Services/Service.php:140 -msgid "Error al obtener la clave maestra del contexto" -msgstr "Error while retrieving master password from context" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 -msgid "Esta extensión es necesaria para mostrar las claves como imágenes" -msgstr "This extension is needed to display passwords as images" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 -msgid "" -"Esta extensión es necesaria para generar los archivos de copia de seguridad " -"de la aplicación" -msgstr "This extension is needed to build the application's backup files" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 -msgid "" -"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" -msgstr "This extension is needed to check for sysPass updates and notices" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 -msgid "Extensiones no disponibles" -msgstr "Unavailable extensions" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 -msgid "Esta extensión es necesaria conectar con el servidor de LDAP" -msgstr "This extension is needed to connect to the LDAP server" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 -msgid "Esta extensión es necesaria conectar con DokuWiki" -msgstr "This extension is needed to connect with DokuWiki" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:31 -msgid "Favoritos" -msgstr "Favorites" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:97 -msgid "Gestión Plugins" -msgstr "Plugins Management" - #. (itstool) path: action/text #: ../../../config/actions.xml:139 msgid "Buscar Eventos" @@ -7572,6 +138,72 @@ msgstr "Search for Events" msgid "Limpiar Eventos" msgstr "Clear Events" +#. (itstool) path: action/text +#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 +msgid "Ver Cuenta" +msgstr "Vedi Account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:157 +msgid "Nueva Cuenta" +msgstr "Nuovo account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:163 +msgid "Editar Cuenta" +msgstr "Modifica account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 +#: ../../../config/actions.xml:793 +msgid "Eliminar Cuenta" +msgstr "Elimina account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 +msgid "Ver Clave" +msgstr "Vedi Password" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:181 +msgid "Editar Clave de Cuenta" +msgstr "Modifica la password dell'account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 +msgid "Restaurar Cuenta" +msgstr "Ripristina account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:193 +msgid "Copiar Cuenta" +msgstr "Copia account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:199 ../../../config/actions.xml:271 +msgid "Copiar Clave" +msgstr "Copy Password" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 +msgid "Ver Archivo" +msgstr "Vedi File" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 +msgid "Subir Archivo" +msgstr "Upload File" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 +msgid "Descargar Archivo" +msgstr "Download File" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 +msgid "Eliminar Archivo" +msgstr "Elimina file" + #. (itstool) path: action/text #: ../../../config/actions.xml:229 msgid "Buscar Archivos" @@ -7592,6 +224,21 @@ msgstr "Show Favorites" msgid "Añadir Favorito" msgstr "Mark as Favorite" +#. (itstool) path: action/text +#: ../../../config/actions.xml:253 +msgid "Eliminar Favorito" +msgstr "Rimuovi preferito" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:259 +msgid "Ver Historial" +msgstr "Vedi la cronologia" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:277 +msgid "Ver Wiki" +msgstr "Vedi Wiki" + #. (itstool) path: action/text #: ../../../config/actions.xml:283 msgid "Añadir Wiki" @@ -7607,10 +254,58 @@ msgstr "Edit Wiki" msgid "Eliminar Wiki" msgstr "Delete Wiki" +#. (itstool) path: action/text +#: ../../../config/actions.xml:301 +msgid "Ver Categoría" +msgstr "Visualizza categoria" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:307 +msgid "Nueva Categoría" +msgstr "Nuova categoria" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:313 +msgid "Editar Categoría" +msgstr "Modifica categoria" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:319 +msgid "Eliminar Categoría" +msgstr "Rimuovi categoria" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:325 +msgid "Buscar Categoría" +msgstr "Cerca categoria" + #. (itstool) path: action/text #: ../../../config/actions.xml:331 -msgid "Nuevo CLiente" -msgstr "New Client" +#, fuzzy +msgid "Ver Cliente" +msgstr "Visualizza cliente" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:337 +#, fuzzy +msgid "Nuevo Cliente" +msgstr "Nuovo cliente" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:343 +#, fuzzy +msgid "Editar Cliente" +msgstr "Modifica cliente" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:349 +msgid "Eliminar Cliente" +msgstr "Rimuovi cliente" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:355 +msgid "Buscar Cliente" +msgstr "Cerca cliente" #. (itstool) path: action/text #: ../../../config/actions.xml:361 @@ -7663,17 +358,86 @@ msgid "Buscar Campo Personalizado" msgstr "Search for Custom Field" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 +#: ../../../config/actions.xml:421 +msgid "Crear Enlace Público" +msgstr "Crea un collegamento pubblico" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:427 +#, fuzzy +msgid "Ver Enlace Público" +msgstr "Vedi Link pubblico" + +#. (itstool) path: action/text #: ../../../config/actions.xml:433 msgid "Eliminar Enlace Público" msgstr "Delete Public Link" +#. (itstool) path: action/text +#: ../../../config/actions.xml:439 +msgid "Actualizar Enlace Público" +msgstr "Update Public Link" + #. (itstool) path: action/text #: ../../../config/actions.xml:445 msgid "Buscar Enlace Público" msgstr "Search for Public Link" +#. (itstool) path: action/text +#: ../../../config/actions.xml:475 +msgid "Buscar Archivo" +msgstr "Cerca archivio" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:493 +msgid "Actualización Masiva" +msgstr "Bulk Update" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 +msgid "Buscar Cuenta" +msgstr "Cerca account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:505 +msgid "Nueva Etiqueta" +msgstr "Nuova Tag" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:511 +msgid "Ver Etiqueta" +msgstr "View Tag" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:517 +msgid "Editar Etiqueta" +msgstr "Modifica Tag" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:523 +msgid "Eliminar Etiqueta" +msgstr "Elimina Tag" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:529 +msgid "Buscar Etiqueta" +msgstr "Cerca per Tag" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:535 +msgid "Nuevo Plugin" +msgstr "Nuovo Plugin" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:541 +msgid "Ver Plugin" +msgstr "VediPlugin" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:547 +msgid "Buscar Plugin" +msgstr "Cerca plugin" + #. (itstool) path: action/text #: ../../../config/actions.xml:553 msgid "Habilitar Plugin" @@ -7689,11 +453,86 @@ msgstr "Disable Plugin" msgid "Restablecer Plugin" msgstr "Reset Plugin" +#. (itstool) path: action/text +#: ../../../config/actions.xml:571 +msgid "Ver Usuario" +msgstr "Visualizza utente" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:577 +msgid "Nuevo Usuario" +msgstr "Nuovo utente" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:583 +msgid "Editar Usuario" +msgstr "Modifica utente" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:589 +msgid "Eliminar Usuario" +msgstr "Elimina utente" + #. (itstool) path: action/text #: ../../../config/actions.xml:595 msgid "Editar Clave Usuario" msgstr "Edit User Password" +#. (itstool) path: action/text +#: ../../../config/actions.xml:601 +msgid "Buscar Usuario" +msgstr "Cerca utente" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:607 +msgid "Ver Grupo" +msgstr "Visualizza gruppo" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:613 +msgid "Nuevo Grupo" +msgstr "Nuovo gruppo" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:619 +msgid "Editar Grupo" +msgstr "Modifica gruppo" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:625 +msgid "Eliminar Grupo" +msgstr "Elimina gruppo" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:631 +msgid "Buscar Grupo" +msgstr "Cerca gruppo" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:637 +msgid "Ver Perfil" +msgstr "Visualizza profilo" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:643 +msgid "Nuevo Perfil" +msgstr "Nuovo profilo" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:649 +msgid "Editar Perfil" +msgstr "Modifica profilo" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:655 +msgid "Eliminar Perfil" +msgstr "Elimina profilo" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:661 +msgid "Buscar Perfil" +msgstr "Cerca profilo" + #. (itstool) path: action/text #: ../../../config/actions.xml:667 msgid "Configuración Usuario" @@ -7704,6 +543,21 @@ msgstr "User Configuration" msgid "Preferencias General" msgstr "General Preferences" +#. (itstool) path: action/text +#: ../../../config/actions.xml:679 +msgid "Notificaciones" +msgstr "Notifiche" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:685 +msgid "Configuración" +msgstr "Configurazione" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:691 +msgid "Configuración General" +msgstr "Configurazione Generale" + #. (itstool) path: action/text #: ../../../config/actions.xml:697 msgid "Configuración Cuentas" @@ -7734,6 +588,11 @@ msgstr "Temporary Master Password" msgid "Configuración Copia de Seguridad" msgstr "Backup Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:733 +msgid "Copia de Seguridad" +msgstr "Copia di backup" + #. (itstool) path: action/text #: ../../../config/actions.xml:739 msgid "Configuración Importación" @@ -7754,6 +613,11 @@ msgstr "XML Import" msgid "Configuración Exportación" msgstr "Export Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:763 +msgid "Exportación" +msgstr "Export" + #. (itstool) path: action/text #: ../../../config/actions.xml:769 msgid "Configuración Email" @@ -7764,447 +628,86 @@ msgstr "Email Configuration" msgid "Configuración LDAP" msgstr "LDAP Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:781 +msgid "Sincronización LDAP" +msgstr "LDAP sincronizzazione" + #. (itstool) path: action/text #: ../../../config/actions.xml:787 msgid "Gestión de Cuenta (H)" msgstr "Account Management (H)" +#. (itstool) path: action/text +#: ../../../config/actions.xml:811 +msgid "Ver Notificación" +msgstr "Vedi notifica" + #. (itstool) path: action/text #: ../../../config/actions.xml:817 msgid "Crear Notificación" msgstr "Create Notification" -#: ../../../../lib/SP/Services/Import/SyspassImport.php:177 -msgid "" -"Si está importando un archivo exportado desde el mismo origen, los datos " -"pueden estar comprometidos." -msgstr "" -"If you are importing an exported file from the same origin, the data could " -"be compromised." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:154 -msgid "El archivo de actualización no contiene datos" -msgstr "The update file does not contain data" - -#: ../../../modules/api/Controllers/CategoryController.php:62 -msgid "Categoría visualizada" -msgstr "Category displayed" - -#: ../../../modules/api/Controllers/ClientController.php:63 -msgid "Cliente visualizado" -msgstr "Client displayed" - -#: ../../../modules/api/Controllers/ConfigController.php:58 -#: ../../../modules/api/Controllers/ConfigController.php:83 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 -msgid "Ruta" -msgstr "Path" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 -msgid "Array con Ids de etiquetas" -msgstr "Array with tags id" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 -msgid "Array con Ids de etiquetas a filtrar" -msgstr "Array with tags id for filtering" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 -msgid "Operador de filtrado" -msgstr "Filtering operator" - -#: ../../../modules/api/Controllers/TagController.php:61 -msgid "Etiqueta visualizada" -msgstr "Tag displayed" - -#: ../../../modules/web/Controllers/AccountFileController.php:387 -msgid "No hay archivos asociados a la cuenta" -msgstr "There are no linked files for the account" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:76 -msgid "Error al crear permiso" -msgstr "Error while creating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:115 -msgid "Error al actualizar permiso" -msgstr "Error while updating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:134 -msgid "Error al eliminar permiso" -msgstr "Error while removing the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:249 -msgid "Error al eliminar los permisos" -msgstr "Error while removing the permissions" - -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:84 -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:105 -msgid "Permiso no encontrada" -msgstr "Permission not found" +#. (itstool) path: action/text +#: ../../../config/actions.xml:823 +msgid "Editar Notificación" +msgstr "Modifica notifica" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:71 -#: ../../../config/actions.xml:847 -msgid "Ver Permiso" -msgstr "View Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:156 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:157 -#: ../../../config/actions.xml:853 -msgid "Nuevo Permiso" -msgstr "New Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:211 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:174 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:175 -#: ../../../config/actions.xml:859 -msgid "Editar Permiso" -msgstr "Edit Permission" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:248 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:251 -msgid "Permisos eliminados" -msgstr "Permissions deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:259 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:263 -msgid "Permiso eliminado" -msgstr "Permission deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:289 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:293 -msgid "Permiso creado" -msgstr "Permission added" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:325 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:329 -msgid "Permiso actualizado" -msgstr "Permission updated" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:90 -msgid "Permisos por Defecto" -msgstr "Default Permissions" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 -msgid "Prioridad" -msgstr "Priority" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 -msgid "Forzado" -msgstr "Forced" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:141 -#: ../../../config/actions.xml:841 -msgid "Buscar Permiso" -msgstr "Search for Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:191 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:192 -#: ../../../config/actions.xml:865 -msgid "Eliminar Permiso" -msgstr "Delete Permission" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:208 -msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" -msgstr "An element of type user, group or profile need to be set" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:133 -msgid "No hay permisos definidos" -msgstr "There aren't any defined permissions" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:75 -msgid "" -"Prioridad de asignación en caso de coincidir con otros permisos asignados " -"por usuario, grupo o perfil." -msgstr "" -"Assignment priority if permissions match with others assigned by user, group " -"or profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 -msgid "Prioridad de asignación" -msgstr "Assignment Priority" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:107 -msgid "Indica si los permisos serán forzados al crear o modificar la cuenta." -msgstr "" -"Enforces the permissions to be set either on creating or updating an " -"account ." - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:109 -msgid "Los permisos serán añadidos a los existentes." -msgstr "Permissions will be merged with the existing ones." +#: ../../../config/actions.xml:829 +msgid "Eliminar Notificación" +msgstr "Elimina notifica" #. (itstool) path: action/text #: ../../../config/actions.xml:835 -msgid "Gestión Permisos" -msgstr "Permissions Management" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 -msgid "Es necesaria una clave con al menos %d caracteres" -msgstr "Password needs to be %d characters long" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:77 -msgid "La clave no cumple los carácteres requeridos" -msgstr "Password does not contain the required characters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:82 -msgid "Es necesario que la clave contenga letras" -msgstr "Password needs to contain letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:86 -msgid "Es necesario que la clave contenga minúsculas" -msgstr "Password needs to contain lower case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:90 -msgid "Es necesario que la clave contenga mayúsculas" -msgstr "Password needs to contain upper case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:95 -msgid "Es necesario que la clave contenga números" -msgstr "Password needs to contain numbers" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:99 -msgid "Es necesario que la clave contenga símbolos" -msgstr "Password needs to contain symbols" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:301 -msgid "Error al desconectar del servidor de LDAP" -msgstr "Error while disconnecting from LDAP server" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:84 -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:105 -msgid "Valor no encontrada" -msgstr "Value not found" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:188 -msgid "Error al eliminar los valores" -msgstr "Error while deleting the values" - -#: ../../../../lib/SP/Services/Track/TrackService.php:208 -msgid "Dirección IP no establecida" -msgstr "IP address not set" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 -msgid "Valores Predeterminados" -msgstr "Preset Values" +msgid "Marcar Notificación" +msgstr "Segna notifica" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 -#: ../../../config/actions.xml:853 -msgid "Buscar Valor" -msgstr "Search for Value" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 -msgid "Valor de Permiso" -msgstr "Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 -msgid "Nuevo Valor de Permiso" -msgstr "New Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 -msgid "Valor de Cuenta Privada" -msgstr "Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 -msgid "Nuevo Valor de Cuenta Privada" -msgstr "New Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 -msgid "Valor de Timeout de Sesión" -msgstr "Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 -msgid "Nuevo Valor de Timeout de Sesión" -msgstr "New Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 -msgid "Valor de Clave de Cuentas" -msgstr "Account Password Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 -msgid "Nuevo Valor de Clave de Cuentas" -msgstr "New Account Password Preset" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 -#: ../../../config/actions.xml:871 -msgid "Editar Valor" -msgstr "Edit Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 -#: ../../../config/actions.xml:877 -msgid "Eliminar Valor" -msgstr "Delete Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 -#: ../../../config/actions.xml:859 -msgid "Ver Valor" -msgstr "Display Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 -#: ../../../config/actions.xml:865 -msgid "Nuevo Valor" -msgstr "New Value" - -#: ../../../modules/web/Controllers/ItemPresetController.php:266 -#: ../../../modules/web/Controllers/ItemPresetController.php:269 -msgid "Valores eliminados" -msgstr "Values deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:277 -#: ../../../modules/web/Controllers/ItemPresetController.php:281 -msgid "Valor eliminado" -msgstr "Value deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:309 -#: ../../../modules/web/Controllers/ItemPresetController.php:314 -msgid "Valor creado" -msgstr "Value created" - -#: ../../../modules/web/Controllers/ItemPresetController.php:348 -#: ../../../modules/web/Controllers/ItemPresetController.php:353 -msgid "Valor actualizado" -msgstr "Value updated" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:116 -msgid "Tipo de valor no definido o incorrecto" -msgstr "Value type not set or incorrect" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:182 -msgid "Expresión regular inválida" -msgstr "Invalid regular expression" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 -msgid "Habilita la conexión mediante TLS." -msgstr "Enables the connection over TLS" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 -msgid "Puntuación" -msgstr "Score" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 -msgid "Expresión Regular" -msgstr "Regular Expression" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 -msgid "Incluir Minúsculas" -msgstr "Include Lowercase" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 -msgid "Las cuentas sólo serán visibles por el usuario." -msgstr "Accounts will be only visible by the user." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 -msgid "Los administradores no podrán acceder a las cuentas." -msgstr "Administrators won't be able to display the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 -msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." -msgstr "Accounts will be only visible by the user and his/her main group." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 -msgid "Dirección IP" -msgstr "IP Address" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 -msgid "Timeout" -msgstr "Timeout" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 -msgid "" -"Prioridad de asignación en caso de coincidir con otros valores asignados por " -"usuario, grupo o perfil." -msgstr "" -"Assignment priority if values match with others assigned by user, group or " -"profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 -msgid "" -"Indica si los valores serán forzados al crear o modificar los elementos." -msgstr "Enforces the values to be set either on creating or updating an item." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 -msgid "Los valores serán añadidos a los existentes." -msgstr "Values will be merged with the existing ones." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 -msgid "Valores por Defecto" -msgstr "Default Values" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 -msgid "Gestión de Valores por Defecto" -msgstr "Default Values Management" +#: ../../../config/actions.xml:841 +msgid "Buscar Notificación" +msgstr "Ricerca notifica" #. (itstool) path: action/text #: ../../../config/actions.xml:847 msgid "Gestión Valores Predeterminados" msgstr "Preset Values Management" -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:118 -msgid "Error al vaciar tracks" -msgstr "Error while clearing tracks out" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 -msgid "Tracks" -msgstr "Tracks" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 -msgid "Fecha Desbloqueo" -msgstr "Date Unlocked" +#. (itstool) path: action/text +#: ../../../config/actions.xml:853 +msgid "Buscar Valor" +msgstr "Search for Value" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 -#: ../../../config/actions.xml:889 -msgid "Buscar Track" -msgstr "Search for track" - -#: ../../../modules/web/Controllers/TrackController.php:110 -msgid "Track desbloqueado" -msgstr "Track unlocked" - -#: ../../../modules/web/Controllers/TrackController.php:135 -msgid "Tracks limpiados" -msgstr "Tracks cleared out" - -#: ../../../config/strings.js.inc:96 -msgid "Vaciar los tracks?" -msgstr "Clear tracks out?" +#: ../../../config/actions.xml:859 +msgid "Ver Valor" +msgstr "Display Value" #. (itstool) path: action/text -#: ../../../config/actions.xml:109 -msgid "Seguridad y Auditoría" -msgstr "Security and Audit" +#: ../../../config/actions.xml:865 +msgid "Nuevo Valor" +msgstr "New Value" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:871 +msgid "Editar Valor" +msgstr "Edit Value" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:877 +msgid "Eliminar Valor" +msgstr "Delete Value" #. (itstool) path: action/text #: ../../../config/actions.xml:883 msgid "Gestión de Tracks" msgstr "Tracks Management" +#. (itstool) path: action/text +#: ../../../config/actions.xml:889 +msgid "Buscar Track" +msgstr "Search for track" + #. (itstool) path: action/text #: ../../../config/actions.xml:895 msgid "Desbloquear track" @@ -8215,47 +718,4574 @@ msgstr "Unlock track" msgid "Vaciar tracks" msgstr "Clear tracks out" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 -msgid "Id de grupo" -msgstr "Group Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:4 +msgid "Color" +msgstr "Colore" -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 -msgid "Array con Ids de usuarios" -msgstr "Array with users Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:5 +msgid "Número" +msgstr "Numero" -#: ../../../modules/api/Controllers/UserGroupController.php:61 -msgid "Grupo visualizado" -msgstr "Group viewed" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:6 +msgid "Teléfono" +msgstr "Telefono" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 -#: ../../../config/actions.xml:493 -msgid "Actualización Masiva" -msgstr "Bulk Update" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:7 +msgid "Área de Texto" +msgstr "Area di testo" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 -msgid "Propietario" -msgstr "Owner" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:8 +msgid "Texto" +msgstr "Testo" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 -msgid "Buscar cuentas por nombre de cliente" -msgstr "Search for accounts by client name" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:9 +msgid "Link" +msgstr "Link" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 -msgid "Buscar cuentas por nombre de categoría" -msgstr "Search for accounts by category name" +#~ msgid "CONSULTA INVÁLIDA" +#~ msgstr "RICHIESTA NON VALIDA" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 -msgid "Eliminar Historial" -msgstr "Delete History" +#~ msgid "La sesión no se ha iniciado o ha caducado" +#~ msgstr "Sessione non avviata o scaduta" + +#~ msgid "Es necesario un nombre de cuenta" +#~ msgstr "È richiesto un nome account" + +#~ msgid "Es necesario un nombre de cliente" +#~ msgstr "È richiesto un nome cliente" + +#~ msgid "Es necesario un usuario" +#~ msgstr "È richiesto un utente" + +#~ msgid "Es necesaria una clave" +#~ msgstr "È richiesta una password" + +#~ msgid "Es necesario una categoría" +#~ msgstr "È richiesta uan categoria" + +#~ msgid "Acción Inválida" +#~ msgstr "Azione non valida" + +#~ msgid "Las claves no coinciden" +#~ msgstr "Le password non corrispondono" + +#~ msgid "Cuenta creada" +#~ msgstr "Account creato" + +#~ msgid "Error al crear la cuenta" +#~ msgstr "Errore durante la creazione dell'utente" + +#~ msgid "Sin cambios" +#~ msgstr "Nessun cambiamento" + +#~ msgid "Cuenta actualizada" +#~ msgstr "Account aggiornato" + +#~ msgid "Error al modificar la cuenta" +#~ msgstr "Errore durante l'aggiornamento dell'account" + +#~ msgid "Cuenta eliminada" +#~ msgstr "Account rimosso" + +#~ msgid "Error al eliminar la cuenta" +#~ msgstr "Errore durante l'eliminazione dell'account" + +#~ msgid "Clave actualizada" +#~ msgstr "Password aggiornata" + +#~ msgid "Error al actualizar la clave" +#~ msgstr "Errore durante l'aggiornamento della password" + +#~ msgid "Cuenta restaurada" +#~ msgstr "Account ripristinato" + +#~ msgid "Error al restaurar cuenta" +#~ msgstr "Errore durante il ripristino dell'account" + +#~ msgid "Ver Autorización" +#~ msgstr "Visualizza autorizzazione" + +#~ msgid "Nueva Autorización" +#~ msgstr "Nuova autorizzazione" + +#~ msgid "Editar Autorización" +#~ msgstr "Modifica autorizzazione" + +#~ msgid "Nuevo Campo" +#~ msgstr "Nuovo campo" + +#~ msgid "Editar Campo" +#~ msgstr "Modifica campo" + +#, fuzzy +#~ msgid "Es necesario un nombre de usuario" +#~ msgstr "È richiesto un nome utente" + +#~ msgid "Es necesario un login" +#~ msgstr "È richiesto un login" + +#~ msgid "Es necesario un perfil" +#~ msgstr "È richiesto un profilo" + +#~ msgid "Es necesario un grupo" +#~ msgstr "È richiesto un gruppo" + +#~ msgid "Es necesario un email" +#~ msgstr "È richiesta una mail" + +#~ msgid "Ey, esto es una DEMO!!" +#~ msgstr "Ehi, questa è una DEMO !!" + +#~ msgid "La clave no puede estar en blanco" +#~ msgstr "La password non può essere vuota" + +#~ msgid "Usuario creado" +#~ msgstr "Utente creato" + +#~ msgid "Error al crear el usuario" +#~ msgstr "Errore durante la creazione dell'utente" + +#~ msgid "Usuario actualizado" +#~ msgstr "Utente aggiornato" + +#~ msgid "Error al actualizar el usuario" +#~ msgstr "Errore durante l'aggiornamento dell'utente" + +#~ msgid "Error al modificar la clave" +#~ msgstr "Errore durante la modifica della password" + +#~ msgid "No es posible eliminar, usuario en uso" +#~ msgstr "Non è possibile cancellare, utente in uso" + +#~ msgid "Usuario eliminado" +#~ msgstr "Utente eliminato" + +#~ msgid "Error al eliminar el usuario" +#~ msgstr "Errore durante l'eliminazione dell'utente" + +#~ msgid "Es necesario un nombre de grupo" +#~ msgstr "È richiesto un nome di gruppo" + +#~ msgid "Nombre de grupo duplicado" +#~ msgstr "Duplica il nome del gruppo" + +#~ msgid "Grupo creado" +#~ msgstr "Gruppo creato" + +#~ msgid "Error al crear el grupo" +#~ msgstr "Errore durante la creazione del gruppo" + +#~ msgid "Grupo actualizado" +#~ msgstr "Gruppo aggiornato" + +#~ msgid "Error al actualizar el grupo" +#~ msgstr "Errore durante l'aggiornamento del gruppo" + +#~ msgid "Usuarios" +#~ msgstr "Utenti" + +#~ msgid "No es posible eliminar" +#~ msgstr "Non è possibile cancellare" + +#~ msgid "Grupo eliminado" +#~ msgstr "Gruppo cancellato" + +#~ msgid "Error al eliminar el grupo" +#~ msgstr "Errore durante l'eliminazione del gruppo" + +#~ msgid "Es necesario un nombre de perfil" +#~ msgstr "È richiesto un nome profilo" + +#~ msgid "Nombre de perfil duplicado" +#~ msgstr "Nome del profilo duplicato" + +#~ msgid "Perfil creado" +#~ msgstr "Profilo creato" + +#~ msgid "Perfil actualizado" +#~ msgstr "Profilo aggiornato" + +#~ msgid "Perfil eliminado" +#~ msgstr "Profilo eliminato" + +#~ msgid "Cliente creado" +#~ msgstr "Cliente creato" + +#, fuzzy +#~ msgid "Cliente actualizado" +#~ msgstr "Cliente aggiornato" + +#, fuzzy +#~ msgid "Cliente eliminado" +#~ msgstr "Cliente eliminato" + +#~ msgid "Es necesario un nombre de categoría" +#~ msgstr "È richiesto un nome di categoria" + +#~ msgid "Categoría creada" +#~ msgstr "Categoria creata" + +#~ msgid "Categoría actualizada" +#~ msgstr "Categoria aggiornata" + +#~ msgid "Categoría eliminada" +#~ msgstr "Categoria eliminata" + +#~ msgid "Autorización creada" +#~ msgstr "Autorizzazione creata" + +#~ msgid "Autorización actualizada" +#~ msgstr "Autorizzazione aggiornata" + +#~ msgid "Autorización eliminada" +#~ msgstr "Autorizzazione rimossa" + +#~ msgid "Nombre del campo no indicado" +#~ msgstr "Nome del campo non indicato" + +#~ msgid "Tipo del campo no indicado" +#~ msgstr "Tipo di campo non indicato" + +#~ msgid "Módulo del campo no indicado" +#~ msgstr "Modulo di campo non indicato" + +#~ msgid "Campo creado" +#~ msgstr "Campo creato" + +#~ msgid "Campo actualizado" +#~ msgstr "Campo aggiornato" + +#~ msgid "Campo eliminado" +#~ msgstr "Campo rimosso" + +#~ msgid "Realizar Backup" +#~ msgstr "Crea Backup" + +#~ msgid "Error al realizar el backup" +#~ msgstr "Errore durante il backup" + +#~ msgid "Revise el registro de eventos para más detalles" +#~ msgstr "Controlla il registro eventi per maggiori dettagli" + +#~ msgid "Copia de la aplicación y base de datos realizada correctamente" +#~ msgstr "Copia dell'applicazione e del database eseguiti correttamente" + +#~ msgid "Proceso de backup finalizado" +#~ msgstr "Processo di backup completato" + +#~ msgid "Error al realizar la exportación de cuentas" +#~ msgstr "Errore durante l'esportazione degli account" + +#~ msgid "Error al realizar la exportación" +#~ msgstr "Errore durante l'esportazione" + +#~ msgid "Exportación de cuentas realizada correctamente" +#~ msgstr "Esportazione degli account avvenuta con successo" + +#~ msgid "Proceso de exportación finalizado" +#~ msgstr "Processo di esportazione finito" + +#~ msgid "Los parámetros de LDAP no están configurados" +#~ msgstr "I parametri LDAP non sono configurati" + +#~ msgid "Conexión a LDAP correcta" +#~ msgstr "Connetti per correggere LDAP" + +#~ msgid "Objetos encontrados" +#~ msgstr "Oggetti trovati" + +#~ msgid "Modificar Configuración" +#~ msgstr "Modifica impostazioni" + +#~ msgid "El tamaño máximo por archivo es de 16MB" +#~ msgstr "La dimensione massima per file è 16 MB" + +#~ msgid "Extensión no permitida" +#~ msgstr "Estensione non consentita" + +#~ msgid "Faltan parámetros de Proxy" +#~ msgstr "Mancano i parametri proxy" + +#~ msgid "Proxy habiltado" +#~ msgstr "Proxy abilitato" + +#~ msgid "Proxy deshabilitado" +#~ msgstr "Proxy disabilitato" + +#~ msgid "Sección" +#~ msgstr "Sezione" + +#~ msgid "General" +#~ msgstr "Generale" + +#~ msgid "Faltan parámetros de Wiki" +#~ msgstr "Parametri Wiki mancanti" + +#~ msgid "Wiki habiltada" +#~ msgstr "Wiki abilitato" + +#~ msgid "Wiki deshabilitada" +#~ msgstr "Wiki disabilitato" + +#~ msgid "Faltan parámetros de LDAP" +#~ msgstr "Parametri LDAP mancanti" + +#~ msgid "LDAP habiltado" +#~ msgstr "LDAP abilitato" + +#~ msgid "LDAP deshabilitado" +#~ msgstr "LDAP disabilitato" + +#~ msgid "LDAP" +#~ msgstr "LDAP" + +#~ msgid "Faltan parámetros de Correo" +#~ msgstr "Parametri Mail mancanti" + +#~ msgid "Correo habiltado" +#~ msgstr "Mail abilitata" + +#~ msgid "Correo deshabilitado" +#~ msgstr "Mail disabilitata" + +#~ msgid "Correo" +#~ msgstr "Mail" + +#~ msgid "Configuración actualizada" +#~ msgstr "Configurazione aggiornata" + +#~ msgid "Clave maestra actualizada" +#~ msgstr "Password master aggiornata" + +#~ msgid "Reinicie la sesión para cambiarla" +#~ msgstr "Riavvia la sessione per cambiarla" + +#~ msgid "Clave maestra no indicada" +#~ msgstr "Password principale non indicata" + +#~ msgid "Se ha de confirmar el cambio de clave" +#~ msgstr "Il cambiamento chiave deve essere confermato" + +#~ msgid "Las claves son idénticas" +#~ msgstr "Le chiavi sono identiche" + +#~ msgid "Las claves maestras no coinciden" +#~ msgstr "Le chiavi principali non corrispondono" + +#~ msgid "La clave maestra actual no coincide" +#~ msgstr "La chiave master corrente non corrisponde" + +#~ msgid "Errores al actualizar las claves de las cuentas" +#~ msgstr "Errori durante l'aggiornamento delle chiavi dell'account" + +#~ msgid "Errores al actualizar las claves de las cuentas del histórico" +#~ msgstr "Errori durante l'aggiornamento delle chiavi degli account storici" + +#~ msgid "Errores al actualizar datos de campos personalizados" +#~ msgstr "Errori durante l'aggiornamento dei dati di campo personalizzati" + +#~ msgid "Actualizar Clave Maestra" +#~ msgstr "Aggiorna la password principale" + +#~ msgid "Error al guardar el hash de la clave maestra" +#~ msgstr "Impossibile salvare l'hash della chiave principale" + +#~ msgid "Generar Clave Temporal" +#~ msgstr "Genera Password temporanea" + +#~ msgid "Clave" +#~ msgstr "Password" + +#~ msgid "Clave Temporal Generada" +#~ msgstr "Password temporanea generata" + +#~ msgid "Error al generar clave temporal" +#~ msgstr "Errore durante la generazione della chiave temporanea" + +#~ msgid "Usuario/Clave no introducidos" +#~ msgstr "Utente / password non inseriti" + +#~ msgid "Inicio sesión" +#~ msgstr "Accesso" + +#~ msgid "Error al guardar los datos de LDAP" +#~ msgstr "Errore durante il salvataggio dei dati LDAP" + +#~ msgid "Error interno" +#~ msgstr "Errore interno" + +#~ msgid "Error al actualizar la clave del usuario en la BBDD" +#~ msgstr "Impossibile aggiornare la password dell'utente nel BBDD" + +#, fuzzy +#~ msgid "Login incorrecto" +#~ msgstr "Login errato" + +#~ msgid "Usuario" +#~ msgstr "Utente" + +#~ msgid "Cuenta expirada" +#~ msgstr "Account scaduto" + +#~ msgid "El usuario no tiene grupos asociados" +#~ msgstr "L'utente non ha gruppi associati" + +#~ msgid "Autentificación" +#~ msgstr "Autenticazione" + +#~ msgid "Usuario deshabilitado" +#~ msgstr "Utente disabilitato" + +#~ msgid "Error al obtener los datos del usuario de la BBDD" +#~ msgstr "Mancato ottenimento dei dati dell'utente del BBDD" + +#~ msgid "La clave maestra no ha sido guardada o es incorrecta" +#~ msgstr "La password principale non è stata salvata o è errata" + +#~ msgid "Clave maestra incorrecta" +#~ msgstr "Password principale errata" + +#~ msgid "Perfil" +#~ msgstr "Profilo" + +#~ msgid "Grupo" +#~ msgstr "Gruppo" + +#~ msgid "Gestión de archivos deshabilitada" +#~ msgstr "Gestione dei file disabilitata" + +#~ msgid "No hay extensiones permitidas" +#~ msgstr "Non ci sono estensioni consentite" + +#~ msgid "Tipo de archivo no soportado" +#~ msgstr "Tipo di file non consensito" + +#~ msgid "Archivo inválido" +#~ msgstr "File non valido" + +#, fuzzy +#~ msgid "Error interno al leer el archivo" +#~ msgstr "Errore interno durante la lettura del file" + +#~ msgid "Archivo guardado" +#~ msgstr "File salvato" + +#~ msgid "No se pudo guardar el archivo" +#~ msgstr "Il file non può essere salvato" + +#~ msgid "No es un ID de archivo válido" +#~ msgstr "Non è un ID di file valido" + +#~ msgid "El archivo no existe" +#~ msgstr "Il file non esiste" + +#~ msgid "ID" +#~ msgstr "ID" + +#~ msgid "Archivo" +#~ msgstr "File" + +#~ msgid "Tipo" +#~ msgstr "Tipo" + +#~ msgid "Tamaño" +#~ msgstr "Dimensione" + +#~ msgid "Archivo eliminado" +#~ msgstr "File cancellato" + +#~ msgid "Error al eliminar el archivo" +#~ msgstr "Errore durante l'eliminazione del file" + +#~ msgid "Parámetros incorrectos" +#~ msgstr "Parametri errati" + +#~ msgid "Recuperación de Clave" +#~ msgstr "Recupero della password" + +#~ msgid "Solicitado para" +#~ msgstr "Richiesto" + +#~ msgid "Solicitud enviada" +#~ msgstr "Richiesta inviata" + +#~ msgid "En breve recibirá un correo para completar la solicitud." +#~ msgstr "A breve riceverai un'email per completare l'applicazione." + +#~ msgid "Modificar Clave Usuario" +#~ msgstr "Modifica password utente" + +#~ msgid "Login" +#~ msgstr "Login" + +#~ msgid "La clave es incorrecta o no coincide" +#~ msgstr "La password non è corretta o non corrisponde" + +#~ msgid "Es necesaria una descripción" +#~ msgstr "Una descrizione è necessaria" + +#~ msgid "Solicitud de Modificación de Cuenta" +#~ msgstr "Richiesta di modifica dell'account" + +#~ msgid "Solicitante" +#~ msgstr "Richiedente" + +#~ msgid "Cuenta" +#~ msgstr "Account" + +#, fuzzy +#~ msgid "Cliente" +#~ msgstr "Cliente" + +#~ msgid "Descripción" +#~ msgstr "Descrizione" + +#~ msgid "Error al actualizar preferencias" +#~ msgstr "Errore durante l'aggiornamento delle preferenze" + +#~ msgid "Preferencias actualizadas" +#~ msgstr "Preferenze aggiornate" + +#~ msgid "La clave maestra no coincide" +#~ msgstr "La chiave principale non corrisponde" + +#~ msgid "No tiene permisos para acceder a esta cuenta" +#~ msgstr "Non hai il permesso di accedere a questo account" + +#~ msgid "Clave de Cuenta" +#~ msgstr "Password dell'account" + +#~ msgid "No es posible acceder directamente a este archivo" +#~ msgstr "Non è possibile accedere direttamente a questo file" + +#~ msgid "Error al actualizar el historial" +#~ msgstr "Errore durante l'aggiornamento della cronologia" + +#~ msgid "Actualizar Cuenta" +#~ msgstr "Aggiorna account" + +#~ msgid "Error al actualizar los grupos secundarios" +#~ msgstr "Errore durante l'aggiornamento dei gruppi secondari" + +#~ msgid "Error al actualizar los usuarios de la cuenta" +#~ msgstr "Errore durante l'aggiornamento degli utenti dell'account" + +#~ msgid "No se pudieron obtener los datos de la cuenta" +#~ msgstr "Impossibile ottenere i dati dell'account" + +#~ msgid "Error al eliminar grupos asociados a la cuenta" +#~ msgstr "Errore durante l'eliminazione dei gruppi associati all'account" + +#~ msgid "Error al eliminar usuarios asociados a la cuenta" +#~ msgstr "Errore durante l'eliminazione degli utenti associati all'account" + +#~ msgid "Error al eliminar archivos asociados a la cuenta" +#~ msgstr "Errore durante l'eliminazione dei file associati all'account" + +#~ msgid "Inicio" +#~ msgstr "Inizio" + +#~ msgid "Error en el módulo de encriptación" +#~ msgstr "Errore nel modulo di crittografia" + +#~ msgid "Error al obtener las claves de las cuentas" +#~ msgstr "Errore nell'ottenere la password dell'account" + +#~ msgid "Fallo al actualizar la clave de la cuenta" +#~ msgstr "Impossibile aggiornare la password dell'account" + +#~ msgid "Cuentas actualizadas" +#~ msgstr "Account aggiornati" + +#~ msgid "No se pudieron obtener los datos de las cuentas" +#~ msgstr "Impossibile ottenere i dati dell'account" + +#~ msgid "Actualizar Clave Maestra (H)" +#~ msgstr "Aggiorna password principale (H)" + +#~ msgid "La clave maestra del registro no coincide" +#~ msgstr "La chiave master del record non corrisponde" + +#~ msgid "Fallo al actualizar la clave del histórico" +#~ msgstr "Impossibile aggiornare la chiave della cronologia" + +#~ msgid "Registros actualizados" +#~ msgstr "Record aggiornati" + +#~ msgid "Gestión Aplicación" +#~ msgstr "Gestione delle applicazioni" + +#~ msgid "Encriptación" +#~ msgstr "Crittografia" + +#~ msgid "Exportar" +#~ msgstr "Esporta" + +#~ msgid "Importar" +#~ msgstr "Importa" + +#~ msgid "Acceso no permitido" +#~ msgstr "Accesso non consentito" + +#~ msgid "Error de codificación" +#~ msgstr "Errore di codifica" + +#~ msgid "La autorización ya existe" +#~ msgstr "L'autorizzazione esiste già" + +#~ msgid "Actualizar Autorización" +#~ msgstr "Aggiorna autorizzazione" + +#~ msgid "Eliminar Autorización" +#~ msgstr "Elimina autorizzazione" + +#~ msgid "Usuario no pertenece al grupo" +#~ msgstr "L'utente non appartiene al gruppo" + +#~ msgid "Cambio de Clave" +#~ msgstr "Cambio di password" + +#~ msgid "Se ha solicitado el cambio de su clave de usuario." +#~ msgstr "È stata richiesta la modifica della password dell'utente." + +#~ msgid "" +#~ "Para completar el proceso es necesario que acceda a la siguiente URL:" +#~ msgstr "Per completare il processo è necessario accedere al seguente URL:" + +#~ msgid "Si no ha solicitado esta acción, ignore este mensaje." +#~ msgstr "Se non hai richiesto questa azione, ignora questo messaggio." + +#~ msgid "Esta operación sólo es posible en entornos Linux" +#~ msgstr "Questa operazione è possibile solo in ambienti Linux" + +#~ msgid "Error al realizar backup en modo compatibilidad" +#~ msgstr "Impossibile eseguire il backup in modalità compatibilità" + +#~ msgid "Compruebe los permisos del directorio de backups" +#~ msgstr "Verifica le autorizzazioni della directory di backup" + +#~ msgid "Nombre de categoría duplicado" +#~ msgstr "Nome categoria duplicato" + +#~ msgid "Error al crear la categoría" +#~ msgstr "Errore durante la creazione della categoria" + +#~ msgid "Categoría" +#~ msgstr "Categoria" + +#~ msgid "Error al eliminar la categoría" +#~ msgstr "Errore durante la rimozione della categoria" + +#~ msgid "Error al actualizar la categoría" +#~ msgstr "Errore durante l'aggiornamento della categoria" + +#~ msgid "Modificar configuración" +#~ msgstr "Modifica le impostazioni" + +#~ msgid "Parámetro" +#~ msgstr "Parametro" + +#~ msgid "Valor" +#~ msgstr "Valore" + +#~ msgid "Opción no disponible" +#~ msgstr "Opzione non disponibile" + +#~ msgid "Consulte con el administrador" +#~ msgstr "Verificare con l'amministratore" + +#~ msgid "No tiene permisos para acceder a esta página" +#~ msgstr "Non hai il permesso di accedere a questa pagina" + +#~ msgid "No tiene permisos para realizar esta operación" +#~ msgstr "Non hai il permesso di eseguire questa operazione" + +#~ msgid "Aviso" +#~ msgstr "Attenzione" + +#~ msgid "" +#~ "Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." +#~ msgstr "" +#~ "La chiave master HASH è stata rigenerata. Nessuna azione è necessaria." + +#~ msgid "No se puede usar el módulo de encriptación" +#~ msgstr "Il modulo di crittografia non può essere utilizzato" + +#~ msgid "Error al generar datos cifrados" +#~ msgstr "Errore durante la generazione di dati crittografati" + +#~ msgid "No es posible generar las claves RSA" +#~ msgstr "Non è possibile generare le chiavi RSA" + +#~ msgid "El archivo de clave no existe" +#~ msgstr "Il file chiave non esiste" + +#~ msgid "El número de campos es incorrecto (%d)" +#~ msgstr "Il numero di campi non è corretto (%d)" + +#~ msgid "Compruebe el formato del archivo CSV en línea %s" +#~ msgstr "Controlla il formato file CSV alla linea %s" + +#~ msgid "Importar Cuentas" +#~ msgstr "Importa account" + +#~ msgid "Error importando cuenta" +#~ msgstr "Errore durante l'importazione dell'account" + +#~ msgid "Campos Personalizados" +#~ msgstr "Campi personalizzati" + +#~ msgid "Actualizando datos encriptados" +#~ msgstr "Aggiornamento dei dati crittografati" + +#~ msgid "Registros no actualizados" +#~ msgstr "Record non aggiornati" + +#~ msgid "Fecha" +#~ msgstr "Data" + +#~ msgid "Email" +#~ msgstr "Email" + +#~ msgid "Categorías" +#~ msgstr "Categorie" + +#~ msgid "Clientes" +#~ msgstr "Utenti" + +#~ msgid "Grupos" +#~ msgstr "Gruppi" + +#, fuzzy +#~ msgid "Cliente duplicado" +#~ msgstr "Cliente duplicato" + +#~ msgid "Error al crear el cliente" +#~ msgstr "Errore durante la creazione del client" + +#, fuzzy +#~ msgid "Error al actualizar el cliente" +#~ msgstr "Errore durante l'aggiornamento del cliente" + +#~ msgid "Actualizar Cliente" +#~ msgstr "Aggiorna cliente" + +#~ msgid "Error al eliminar el cliente" +#~ msgstr "Errore durante l'eliminazione del client" + +#~ msgid "No es posible conectar con la BD" +#~ msgstr "Non è possibile connettersi al BD" + +#~ msgid "Compruebe los datos de conexión" +#~ msgstr "Controlla i dati di connessione" + +#~ msgid "N/D" +#~ msgstr "N/D" + +#~ msgid "Acción" +#~ msgstr "Azione" + +#~ msgid "Realizado por" +#~ msgstr "Prodotto da" + +#~ msgid "Enviar Email" +#~ msgstr "Invia email" + +#~ msgid "Correo enviado" +#~ msgstr "E-mail inviata" + +#~ msgid "Error al enviar correo" +#~ msgstr "Errore nell'invio della mail" + +#~ msgid "Destinatario" +#~ msgstr "Destinatario" + +#~ msgid "CC" +#~ msgstr "CC" + +#~ msgid "Archivo no subido correctamente" +#~ msgstr "File non caricato correttamente" + +#~ msgid "Verifique los permisos del usuario del servidor web" +#~ msgstr "Verifica le autorizzazioni dell'utente del server web" + +#~ msgid "Compruebe la extensión del archivo" +#~ msgstr "Controlla l'estensione del file" + +#~ msgid "Compruebe la configuración de PHP para subir archivos" +#~ msgstr "Controlla le impostazioni PHP per il caricamento dei file" + +#~ msgid "Compruebe los permisos del directorio temporal" +#~ msgstr "Verifica le autorizzazioni della directory temporanea" + +#~ msgid "Error al eliminar los usuarios del grupo" +#~ msgstr "Errore durante la rimozione degli utenti del gruppo" + +#~ msgid "Compruebe el formato del archivo" +#~ msgstr "Controlla il formato del file" + +#~ msgid "Importación finalizada" +#~ msgstr "Importazione completata" + +#~ msgid "Error en la verificación de la base de datos" +#~ msgstr "Verifica del database fallita" + +#~ msgid "La sesión no puede ser inicializada" +#~ msgstr "La sessione non può essere inizializzata" + +#~ msgid "El directorio \"/config\" no existe" +#~ msgstr "La directory \"/config\" non esiste" + +#~ msgid "No es posible escribir en el directorio \"config\"" +#~ msgstr "Non è possibile scrivere nella directory \"config\"" + +#~ msgid "Los permisos del directorio \"/config\" son incorrectos" +#~ msgstr "Le autorizzazioni della directory \"/config\" non sono corrette" + +#~ msgid "Aplicación en mantenimiento" +#~ msgstr "Applicazione in manutenzione" + +#~ msgid "En breve estará operativa" +#~ msgstr "Presto sarà operativo" + +#~ msgid "Finalizar sesión" +#~ msgstr "Fine sessione" + +#~ msgid "Tiempo inactivo" +#~ msgstr "Tempo inattivo" + +#~ msgid "Tiempo total" +#~ msgstr "Tempo totale" + +#~ msgid "La aplicación necesita actualizarse" +#~ msgstr "L'applicazione deve essere aggiornata" + +#~ msgid "Actualizar" +#~ msgstr "Aggiornare" + +#~ msgid "Actualización" +#~ msgstr "Aggiornamento" + +#~ msgid "Actualización de versión realizada." +#~ msgstr "Aggiornamento della versione fatta." + +#~ msgid "Versión" +#~ msgstr "Versione" + +#~ msgid "Indicar nombre de usuario admin" +#~ msgstr "Indica il nome utente admin" + +#~ msgid "Usuario admin para acceso a la aplicación" +#~ msgstr "Utente amministratore per l'accesso all'applicazione" + +#~ msgid "Indicar la clave de admin" +#~ msgstr "Indica la password dell'amministratore" + +#~ msgid "Clave del usuario admin de la aplicación" +#~ msgstr "Utente chiave amministratore dell'applicazione" + +#~ msgid "Indicar la clave maestra" +#~ msgstr "Indica la chiave principale" + +#~ msgid "Clave maestra para encriptar las claves" +#~ msgstr "Chiave master per crittografare le chiavi" + +#~ msgid "Clave maestra muy corta" +#~ msgstr "Chiave master molto breve" + +#~ msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" +#~ msgstr "" +#~ "La lunghezza della chiave principale deve essere maggiore di 11 caratteri" + +#~ msgid "Indicar el usuario de la BBDD" +#~ msgstr "Indicare l'utente del BBDD" + +#, fuzzy +#~ msgid "Usuario con permisos de administrador de la Base de Datos" +#~ msgstr "Utente con autorizzazioni di amministratore del database" + +#~ msgid "Indicar el nombre de la BBDD" +#~ msgstr "Indicare il nome del BBDD" + +#~ msgid "Nombre para la BBDD de la aplicación pej. syspass" +#~ msgstr "Nome per il DB dell'applicazione pej. syspass" + +#~ msgid "El nombre de la BBDD no puede contener \".\"" +#~ msgstr "Il nome del database non può contenere \".\"" + +#~ msgid "Elimine los puntos del nombre de la Base de Datos" +#~ msgstr "Rimuovere i punti dal nome del database" + +#~ msgid "Indicar el servidor de la BBDD" +#~ msgstr "Indicare il server del BBDD" + +#~ msgid "Servidor donde se instalará la Base de Datos" +#~ msgstr "Server in cui verrà installato il database" + +#~ msgid "No es posible comprobar el usuario de sysPass" +#~ msgstr "Non è possibile controllare l'utente sysPass" + +#~ msgid "Compruebe los permisos del usuario de conexión a la BD" +#~ msgstr "Verifica le autorizzazioni dell'utente per connettersi al BD" + +#~ msgid "La BBDD ya existe" +#~ msgstr "Il BBDD esiste già" + +#~ msgid "Indique una nueva Base de Datos o elimine la existente" +#~ msgstr "Indicare un nuovo database o eliminare quello esistente" + +#~ msgid "Error al crear la BBDD" +#~ msgstr "Errore durante la creazione del DB" + +#~ msgid "Verifique los permisos del usuario de la Base de Datos" +#~ msgstr "Verifica le autorizzazioni dell'utente del Database" + +#~ msgid "El archivo de estructura de la BBDD no existe" +#~ msgstr "Il file di struttura del BBDD non esiste" + +#~ msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." +#~ msgstr "" +#~ "Non è possibile creare il BBDD dell'applicazione. Scaricalo nuovamente." + +#~ msgid "Error al seleccionar la BBDD" +#~ msgstr "Errore durante la selezione del BBDD" + +#~ msgid "" +#~ "No es posible usar la Base de Datos para crear la estructura. Compruebe " +#~ "los permisos y que no exista." +#~ msgstr "" +#~ "Non è possibile utilizzare il Database per creare la struttura. Controlla " +#~ "le autorizzazioni e se esistono." + +#~ msgid "Error al crear la estructura de la Base de Datos." +#~ msgstr "Errore durante la creazione della struttura del database." + +#~ msgid "Informe al desarrollador" +#~ msgstr "Informa lo sviluppatore" + +#~ msgid "Error al actualizar la clave maestra del usuario \"admin\"" +#~ msgstr "Impossibile aggiornare la chiave master dell'utente \"admin\"" + +#~ msgid "No es posible conectar con el servidor de LDAP" +#~ msgstr "Non è possibile connettersi al server LDAP" + +#~ msgid "Error al conectar (BIND)" +#~ msgstr "Errore durante la connessione (BIND)" + +#~ msgid "Error al buscar objetos en DN base" +#~ msgstr "Errore nel trovare oggetti nel DN di base" + +#~ msgid "Error al buscar RDN de grupo" +#~ msgstr "Errore durante la ricerca di RDN di gruppo" + +#~ msgid "Error al localizar el usuario en LDAP" +#~ msgstr "Errore nel localizzare l'utente in LDAP" + +#~ msgid "Error al buscar el grupo de usuarios" +#~ msgstr "Errore durante la ricerca nel gruppo di utenti" + +#~ msgid "Usuario verificado en grupo" +#~ msgstr "Utente verificato nel gruppo" + +#~ msgid "Vaciar Eventos" +#~ msgstr "Eventi vuoti" + +#, fuzzy +#~ msgid "Vaciar registro de eventos" +#~ msgstr "Registrazione vuota di eventi" + +#, fuzzy +#~ msgid "Cliente no encontrado" +#~ msgstr "Cliente non trovato" + +#~ msgid "Error al obtener los usuarios" +#~ msgstr "Errore nell'ottenere gli utenti" + +#~ msgid "Migrar Perfiles" +#~ msgstr "Migra profili" + +#~ msgid "Error al obtener perfiles" +#~ msgstr "Impossibile ottenere i profili" + +#~ msgid "Operación realizada correctamente" +#~ msgstr "Operazione eseguita correttamente" + +#~ msgid "Fallo al realizar la operación" +#~ msgstr "Mancata esecuzione dell'operazione" + +#~ msgid "Formato de XML inválido" +#~ msgstr "Formato XML non valido" + +#~ msgid "No es posible obtener la plantilla \"%s\" : %s" +#~ msgstr "Non è possibile ottenere il modello \"%s\" : %s" + +#~ msgid "No es posible obtener la variable \"%s\"" +#~ msgstr "Non è possibile ottenere la variabile \"%s\"" + +#~ msgid "No es posible destruir la variable \"%s\"" +#~ msgstr "Non è possibile distruggere la variabile \"%s\"" + +#~ msgid "Error al aplicar la actualización de la Base de Datos" +#~ msgstr "Errore durante l'applicazione dell'aggiornamento del database" + +#~ msgid "Compruebe el registro de eventos para más detalles" +#~ msgstr "Controlla il registro eventi per maggiori dettagli" + +#~ msgid "Acceder" +#~ msgstr "Accedere" + +#~ msgid "Error al aplicar la actualización auxiliar" +#~ msgstr "Errore durante l'applicazione dell'aggiornamento ausiliario" + +#~ msgid "Actualizar BBDD" +#~ msgstr "Aggiorna BBDD" + +#~ msgid "No es necesario actualizar la Base de Datos." +#~ msgstr "Non è necessario aggiornare il database." + +#~ msgid "Actualización de la Base de Datos realizada correctamente." +#~ msgstr "Aggiornamento del database eseguito correttamente." + +#~ msgid "Actualizar Configuración" +#~ msgstr "Aggiorna configurazione" + +#~ msgid "No se pudo realizar la petición de cambio de clave." +#~ msgstr "Non è stato possibile effettuare la richiesta di modifica password." + +#~ msgid "Usuario de LDAP" +#~ msgstr "Utente LDAP" + +#~ msgid "Activación Cuenta" +#~ msgstr "Attivazione Account" + +#~ msgid "Su cuenta está pendiente de activación." +#~ msgstr "Il tuo account è in attesa di attivazione." + +#~ msgid "En breve recibirá un email de confirmación." +#~ msgstr "A breve riceverai un'email di conferma." + +#~ msgid "Nuevo usuario de LDAP" +#~ msgstr "Nuovo utente LDAP" + +#~ msgid "Error al migrar grupo del usuario" +#~ msgstr "Errore durante la migrazione del gruppo di utenti" + +#~ msgid "Versión de PHP requerida >= " +#~ msgstr "Versione di PHP richiesta >= " + +#~ msgid "" +#~ "Actualice la versión de PHP para que la aplicación funcione correctamente" +#~ msgstr "" +#~ "Aggiorna la versione di PHP affinché l'applicazione funzioni correttamente" + +#~ msgid "Módulo no disponible" +#~ msgstr "Modulo non disponibile" + +#~ msgid "Sin este módulo la aplicación puede no funcionar correctamente." +#~ msgstr "" +#~ "Senza questo modulo l'applicazione non potrebbe funzionare correttamente." + +#~ msgid "Exportar XML" +#~ msgstr "Esporta XML" + +#~ msgid "Error al crear el archivo XML" +#~ msgstr "Errore durante la creazione del file XML" + +#~ msgid "No es posible procesar el archivo XML" +#~ msgstr "Impossibile elaborare il file XML" + +#~ msgid "Archivo XML no soportado" +#~ msgstr "File XML non supportato" + +#~ msgid "No es posible detectar la aplicación que exportó los datos" +#~ msgstr "Non è possibile rilevare l'applicazione che ha esportato i dati" + +#~ msgid "Error en la consulta" +#~ msgstr "Errore in ricerca" + +#~ msgid "Ha ocurrido un error" +#~ msgstr "Si è verificato un errore" + +#~ msgid "Sesión finalizada" +#~ msgstr "Sessione terminata" + +#~ msgid "Borrar la cuenta?" +#~ msgstr "Elimina l'account?" + +#~ msgid "Borrar el usuario?" +#~ msgstr "Elimina l'utente?" + +#~ msgid "Guarde la configuración para que sea efectiva" +#~ msgstr "Salva la configurazione per renderla effettiva" + +#~ msgid "Clave Generada" +#~ msgstr "Password generata" + +#~ msgid "Nivel alto" +#~ msgstr "Livello alto" + +#~ msgid "Nivel medio" +#~ msgstr "Livello medio" + +#~ msgid "Nivel bajo" +#~ msgstr "Livello basso" + +#~ msgid "Nivel muy alto" +#~ msgstr "Livello molto alto" + +#~ msgid "Utilizar al menos 8 caracteres" +#~ msgstr "Utilizzare almeno 8 caratteri" + +#~ msgid "Borrar elemento?" +#~ msgstr "Eliminare l'oggetto?" + +#~ msgid "Página no encontrada" +#~ msgstr "Pagina inesistente" + +#~ msgid "Archivo no soportado para visualizar" +#~ msgstr "Anteprima del file non supportata" + +#~ msgid "Eliminar archivo?" +#~ msgstr "Eliminare il file?" + +#~ msgid "Su navegador no soporta subir archivos con HTML5" +#~ msgstr "" +#~ "Il tuo browser non supporta i caricamenti di file in HTML5 prova a " +#~ "cambiare browser" + +#~ msgid "Demasiados archivos" +#~ msgstr "Troppi files" + +#~ msgid "Tamaño de archivo no permitido" +#~ msgstr "La dimensione del file non è consentita" + +#, fuzzy +#~ msgid "Vaciar el registro de eventos?" +#~ msgstr "Cancellare il registro degli eventi?" + +#~ msgid "Seleccionar Grupo" +#~ msgstr "Selezionare Gruppo" + +#~ msgid "Seleccionar Usuario" +#~ msgstr "Selezionare Utente" + +#~ msgid "Seleccionar Perfil" +#~ msgstr "Selezionare Profilo" + +#~ msgid "Seleccionar Cliente" +#~ msgstr "Selezionare il Cliente" + +#~ msgid "Seleccionar Categoría" +#~ msgstr "Selezionare la categoria" + +#~ msgid "Sin resultados" +#~ msgstr "Nessun risultato" + +#~ msgid "Opciones de clave" +#~ msgstr "Opzioni password" + +#~ msgid "Generar clave aleatoria" +#~ msgstr "Genera una password casuale" + +#~ msgid "Complejidad" +#~ msgstr "Complessità" + +#~ msgid "Restablecer" +#~ msgstr "Ripristina" + +#~ msgid "Nivel de fortaleza de la clave" +#~ msgstr "Livello di complessità della password" + +#~ msgid "Mostrar Clave" +#~ msgstr "Mostra Password" + +#~ msgid "Copiar Usuario" +#~ msgstr "Copia utente" + +#~ msgid "Incluir Números" +#~ msgstr "Includi numeri" + +#~ msgid "Incluir Mayúsculas" +#~ msgstr "Includi maiuscole" + +#, fuzzy +#~ msgid "Incluir Símbolos" +#~ msgstr "Includi simboli" + +#~ msgid "Longitud" +#~ msgstr "Lunghezza" + +#~ msgid "Seleccionar Acción" +#~ msgstr "Seleziona azione" + +#~ msgid "SI" +#~ msgstr "SI" + +#~ msgid "NO" +#~ msgstr "NO" + +#~ msgid "Aceptar" +#~ msgstr "Accetta" + +#~ msgid "Cancelar" +#~ msgstr "Annulla" + +#~ msgid "Clave Copiada al Portapapeles" +#~ msgstr "Chiave copiata negli appunti" + +#~ msgid "Error al copiar al portapapeles" +#~ msgstr "Errore durante la copia negli appunti" + +#~ msgid "Detalles de Cuenta" +#~ msgstr "Dettagli dell'account" + +#~ msgid "Modificar Clave de Cuenta" +#~ msgstr "Modifica la password dell'account" + +#~ msgid "Nombre" +#~ msgstr "Nome" + +#~ msgid "Módulo" +#~ msgstr "Modulo" + +#~ msgid "Eliminar Campo" +#~ msgstr "Rimuovi campo" + +#~ msgid "Último backup" +#~ msgstr "Ultimo backup" + +#~ msgid "No se encontraron backups" +#~ msgstr "Non sono stati trovati backup" + +#~ msgid "Última exportación" +#~ msgstr "Ultima esportazione" + +#~ msgid "No se encontró archivo de exportación" +#~ msgstr "Nessun file di esportazione trovato" + +#~ msgid "Información" +#~ msgstr "Informazioni" + +#~ msgid "Registro de eventos vaciado" +#~ msgstr "Registro eventi vuoto" + +#, fuzzy +#~ msgid "Error al vaciar el registro de eventos" +#~ msgstr "Errore durante lo svuotamento del registro eventi" + +#~ msgid "Admin Aplicación" +#~ msgstr "Applicazione Admin" + +#~ msgid "Buscar" +#~ msgstr "Ricerca" + +#~ msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" +#~ msgstr "" +#~ "La versione di PHP è vulnerabile all'attacco NULL Byte (CVE-2006-7243)" + +#~ msgid "Actualice la versión de PHP para usar sysPass de forma segura" +#~ msgstr "Aggiorna la versione di PHP per utilizzare sysPass in modo sicuro" + +#~ msgid "No se encuentra el generador de números aleatorios." +#~ msgstr "Il generatore di numeri casuali non è stato trovato." + +#~ msgid "" +#~ "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" +#~ msgstr "" +#~ "Senza questa funzionalità, un utente malintenzionato può utilizzare il " +#~ "proprio account durante il ripristino della password" + +#~ msgid "Instalación finalizada" +#~ msgstr "Installazione terminata" + +#~ msgid "Descargar nueva versión" +#~ msgstr "Scarica la nuova versione" + +#~ msgid "Avisos de sysPass" +#~ msgstr "Avvisi SysPass" + +#, fuzzy +#~ msgid "Ordenar por Cliente" +#~ msgstr "Ordina per cliente" + +#~ msgid "Ordenar por Nombre" +#~ msgstr "Ordina per nome" + +#~ msgid "Ordenar por Categoría" +#~ msgstr "Ordina per categoria" + +#~ msgid "Ordenar por Usuario" +#~ msgstr "Ordina per utente" + +#~ msgid "Ordenar por URL / IP" +#~ msgstr "Ordina per URL / IP" + +#~ msgid "URL / IP" +#~ msgstr "URL / IP" + +#~ msgid "Propiedades" +#~ msgstr "Proprietà" + +#~ msgid "Admin Cuentas" +#~ msgstr "Accounts Admin" + +#~ msgid "Deshabilitado" +#~ msgstr "Disabilitato" + +#~ msgid "Ver Detalles de Usuario" +#~ msgstr "Vedi dettagli utente" + +#~ msgid "Cambiar Clave de Usuario" +#~ msgstr "Cambia password utente" + +#~ msgid "Ver Detalles de Perfil" +#~ msgstr "Vedi i dettagli del profilo" + +#~ msgid "Ver token de Autorización" +#~ msgstr "Vedi Token di autorizzazione" + +#~ msgid "Token de autorización visualizado" +#~ msgstr "Visualizzazione del token di autorizzazione" + +#~ msgid "Autorizaciones" +#~ msgstr "Autorizzazioni" + +#~ msgid "Seguridad" +#~ msgstr "Sicurezza" + +#~ msgid "Preferencias" +#~ msgstr "Preferenze" + +#~ msgid "Nombre de cuenta" +#~ msgstr "Nome dell'account" + +#~ msgid "URL o IP de acceso" +#~ msgstr "URL di accesso o IP" + +#~ msgid "Usuario de acceso" +#~ msgstr "Username di accesso" + +#~ msgid "Clave (repetir)" +#~ msgstr "Password (ripetere)" + +#~ msgid "Notas" +#~ msgstr "Note" + +#~ msgid "Notas sobre la cuenta" +#~ msgstr "Note sull'account" + +#~ msgid "Permisos" +#~ msgstr "Permessi" + +#~ msgid "Hablitar edición" +#~ msgstr "Abilita la modifica" + +#~ msgid "Grupo Principal" +#~ msgstr "Gruppo Principale" + +#~ msgid "Soltar archivos aquí (max. 5) o click para seleccionar" +#~ msgstr "Trascina qui i file (max 5) o fai clic per selezionare" + +#~ msgid "Tamaño máximo de archivo" +#~ msgstr "Dimensione massima del file" + +#~ msgid "Historial" +#~ msgstr "Storico" + +#~ msgid "Seleccionar fecha" +#~ msgstr "Seleziona la data" + +#~ msgid "Última Modificación" +#~ msgstr "Ultima modifica" + +#~ msgid "Visitas" +#~ msgstr "Visite" + +#~ msgid "Fecha Alta" +#~ msgstr "Data alta" + +#~ msgid "Creador" +#~ msgstr "Creatore" + +#~ msgid "Usuarios Secundarios" +#~ msgstr "Utenti Secondari" + +#~ msgid "Grupos Secundarios" +#~ msgstr "Gruppi secondari" + +#~ msgid "Fecha Edición" +#~ msgstr "Data Edizione" + +#~ msgid "Editor" +#~ msgstr "Editore" + +#~ msgid "Restaurar cuenta desde este punto" +#~ msgstr "Ripristina account da questo punto" + +#~ msgid "Copiar Clave en Portapapeles" +#~ msgstr "Copia la password negli appunti" + +#~ msgid "Ver Actual" +#~ msgstr "Vedi corrente" + +#~ msgid "Volver" +#~ msgstr "Ritorno" + +#~ msgid "Modificar Cuenta" +#~ msgstr "Modifica account" + +#~ msgid "Solicitar Modificación" +#~ msgstr "Richiesta di modifica" + +#~ msgid "Guardar" +#~ msgstr "Save" + +#~ msgid "Resultado" +#~ msgstr "Risultato" + +#, fuzzy +#~ msgid "Descargar Actual" +#~ msgstr "Scarica corrente" + +#~ msgid "No hay backups para descargar" +#~ msgstr "Nessun backup da scaricare" + +#~ msgid "Ayuda" +#~ msgstr "Aiutare" + +#~ 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 "" +#~ "Il backup consente di salvare e scaricare sia il database sysPass che i " +#~ "file dell'applicazione e la relativa configurazione." + +#~ msgid "" +#~ "Con este método es posible guardar todos los datos de sysPass en otro " +#~ "lugar o utilizarlos para hacer la aplicación portable." +#~ msgstr "" +#~ "Con questo metodo è possibile salvare tutti i dati di sysPass in un'altra " +#~ "posizione o utilizzarli per rendere l'applicazione portatile." + +#~ msgid "Exportar Cuentas" +#~ msgstr "Esportare account" + +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "Non ci sono file XML da scaricare" + +#~ msgid "Clave de Exportación" +#~ msgstr "Password di esportazione" + +#~ msgid "Clave de Exportación (repetir)" +#~ msgstr "Password di esportazione (ripetere)" + +#~ 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 "" +#~ "L'esportazione di account consente di salvare gli account e i relativi " +#~ "dati in formato XML in modo che possano essere successivamente importati " +#~ "in altre istanze di sysPass." + +#~ msgid "" +#~ "Las claves de las cuentas son exportadas de forma encriptada para mayor " +#~ "seguridad." +#~ msgstr "" +#~ "Le chiavi degli account vengono esportate in forma crittografata per una " +#~ "maggiore sicurezza." + +#~ msgid "" +#~ "Es posible establecer una clave de exportación para guardar todos los " +#~ "datos encriptados en el archivo XML." +#~ msgstr "" +#~ "È possibile impostare una chiave di esportazione per salvare tutti i dati " +#~ "crittografati nel file XML." + +#~ msgid "Javascript es necesario para el correcto funcionamiento" +#~ msgstr "Javascript è necessario per il corretto funzionamento" + +#~ msgid "Nombre de la categoría" +#~ msgstr "Nome categoria" + +#~ msgid "Descripción de la categoría" +#~ msgstr "Descrizione categoria" + +#~ msgid "Sitio" +#~ msgstr "Indirizzo" + +#~ msgid "Idioma" +#~ msgstr "Lingua" + +#~ msgid "" +#~ "Establece el idioma global de la aplicación. Es posible establecer un " +#~ "idioma por usuario en las preferencias." +#~ msgstr "" +#~ "Imposta la lingua globale dell'applicazione. È possibile impostare una " +#~ "lingua per utente nelle preferenze." + +#~ msgid "Tema Visual" +#~ msgstr "Tema del portale" + +#~ msgid "" +#~ "Establece el tema visual global de la aplicación. Es posible establecer " +#~ "un tema visual por usuario en las preferencias." +#~ msgstr "" +#~ "Imposta il tema visivo generale dell'applicazione. È possibile impostare " +#~ "un tema visivo per utente nelle preferenze." + +#~ msgid "Timeout de sesión (s)" +#~ msgstr "Timeout della sessione (s)" + +#~ msgid "Habilitar log de eventos" +#~ msgstr "Abilita registro eventi" + +#~ msgid "Guarda las acciones realizadas en la aplicación." +#~ msgstr "Salva le azioni eseguite nell'applicazione." + +#~ msgid "Habilitar depuración" +#~ msgstr "Abilita il debug" + +#~ msgid "" +#~ "Muestra información relativa a la configuración de la aplicación y " +#~ "rendimiento." +#~ msgstr "" +#~ "Visualizza le informazioni relative alle impostazioni e alle prestazioni " +#~ "dell'applicazione." + +#~ msgid "Modo mantenimiento" +#~ msgstr "Modalità di manutenzione" + +#~ msgid "" +#~ "En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " +#~ "necesario modificar el archivo de configuración." +#~ msgstr "" +#~ "In questa modalità, non è possibile accedere all'applicazione. Per " +#~ "disabilitarlo, è necessario modificare il file di configurazione." + +#~ msgid "Comprobar actualizaciones" +#~ msgstr "Controlla gli aggiornamenti" + +#~ msgid "" +#~ "Comprobar actualizaciones de la aplicación (sólo para los usuarios " +#~ "administradores)." +#~ msgstr "" +#~ "Controlla gli aggiornamenti dell'applicazione (solo per gli utenti " +#~ "amministratori)." + +#~ msgid "Comprobar notificaciones" +#~ msgstr "Controlla le notifiche" + +#~ msgid "" +#~ "Comprobar si existen notificaciones de seguridad o avisos de sysPass " +#~ "(sólo para los usuarios administradores)." +#~ msgstr "" +#~ "Controlla le notifiche di sicurezza o le notifiche di sysPass (solo per " +#~ "gli utenti amministratori)." + +#~ msgid "Nombre de cuenta como enlace" +#~ msgstr "Nome account come link" + +#~ msgid "" +#~ "Habilita el nombre de la cuenta de la búsqueda, como enlace a los " +#~ "detalles de la cuenta." +#~ msgstr "" +#~ "Abilita il nome dell'account di ricerca, come link ai dettagli " +#~ "dell'account." + +#~ msgid "Gestión de archivos" +#~ msgstr "Gestione dei file" + +#~ msgid "Habilita la subida/descarga de archivos para las cuentas." +#~ msgstr "Abilita il caricamento / download di file per gli account." + +#~ msgid "Búsquedas globales" +#~ msgstr "Ricerche globali" + +#~ 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 "" +#~ "Permette a tutti gli utenti di eseguire ricerche su tutti gli account, ma " +#~ "non può vedere il contenuto di quelli che non hanno permessi." + +#~ msgid "Extensiones de archivos permitidas" +#~ msgstr "Estensioni di file consentite" + +#~ msgid "Extensiones permitidas para la subida de archivos." +#~ msgstr "Estensioni consentite per il caricamento di file." + +#~ msgid "Se permite un máximo de 4 caracteres." +#~ msgstr "È consentito un massimo di 4 caratteri." + +#~ msgid "" +#~ "Escribir extensión y pulsar intro para añadir. Es necesario guardar la " +#~ "configuración." +#~ msgstr "" +#~ "Scrivi l'estensione e premi invio per aggiungere. È necessario salvare la " +#~ "configurazione." + +#~ msgid "Establece el tamaño máximo para subir archivos." +#~ msgstr "Imposta la dimensione massima per caricare i file." + +#~ msgid "El máximo absuluto es de 16MB." +#~ msgstr "Il massimo assoluto è 16 MB." + +#~ msgid "Resultados por página" +#~ msgstr "Risultati per pagina" + +#~ msgid "Número de resultados por página a mostrar, al realizar una búsqueda." +#~ msgstr "" +#~ "Numero di risultati per pagina da visualizzare, quando si esegue una " +#~ "ricerca." + +#~ msgid "Resultados en Tarjetas" +#~ msgstr "Risultati stile biglietti da visita" + +#~ msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." +#~ msgstr "" +#~ "Visualizza i risultati della ricerca dell'account nel formato della " +#~ "biglietti da visita." + +#~ msgid "Imagen para mostrar clave" +#~ msgstr "Immagine per mostrare la password" + +#~ msgid "Generar una imagen con el texto de la clave de la cuenta." +#~ msgstr "Genera un'immagine con il testo della password dell'account." + +#~ msgid "" +#~ "Util para entornos donde copiar la clave supone un riesgo de seguridad." +#~ msgstr "" +#~ "Utile per ambienti in cui copiare la chiave è un rischio per la sicurezza." + +#~ msgid "Nombre del cliente" +#~ msgstr "Nome del cliente" + +#~ msgid "Descripción del cliente" +#~ msgstr "Descrizione del cliente" + +#~ msgid "Texto Ayuda" +#~ msgstr "Aiuto testo" + +#~ msgid "Obligatorio" +#~ msgstr "Obbligatorio" + +#~ msgid "Clave Maestra" +#~ msgstr "Password principale" + +#, fuzzy +#~ msgid "Último cambio" +#~ msgstr "Ultima modifica" + +#~ msgid "Clave Maestra actual" +#~ msgstr "Password principale attuale" + +#~ msgid "Nueva Clave Maestra" +#~ msgstr "Nuova password principale" + +#~ msgid "Nueva Clave Maestra (repetir)" +#~ msgstr "Nuova password principale (ripetere)" + +#~ msgid "No modificar cuentas" +#~ msgstr "Non modificare account" + +#~ msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" +#~ msgstr "" +#~ "Imposta una nuova password master senza ricodificare nuovamente gli " +#~ "account" + +#, fuzzy +#~ msgid "Confirmar cambio" +#~ msgstr "Conferma modifica" + +#~ msgid "Guarde la nueva clave en un lugar seguro." +#~ msgstr "Conserva la nuova password in un posto sicuro." + +#~ msgid "Se volverán a encriptar las claves de todas las cuentas." +#~ msgstr "Le password di tutti gli account verranno nuovamente crittografate." + +#~ msgid "Los usuarios deberán de introducir la nueva clave maestra." +#~ msgstr "Gli utenti devono inserire la nuova password principale." + +#~ msgid "" +#~ "La clave maestra es utilizada para encriptar las claves de las cuentas de " +#~ "sysPass para mantenerlas seguras." +#~ msgstr "" +#~ "La password master viene utilizzata per crittografare le chiavi degli " +#~ "account sysPass per mantenerle sicure." + +#, fuzzy +#~ msgid "" +#~ "Es recomendable cambiarla cada cierto tiempo y utilizar una clave " +#~ "compleja que incluya números, letras y símbolos." +#~ msgstr "" +#~ "Si consiglia di cambiarlo ogni tanto e utilizzare una chiave complessa " +#~ "che include numeri, lettere e simboli." + +#~ msgid "Clave Temporal" +#~ msgstr "Chiave temporale" + +#~ msgid "No generada" +#~ msgstr "Non generato" + +#~ msgid "Válido hasta" +#~ msgstr "Valido fino al" + +#~ msgid "Validez (s)" +#~ msgstr "Validità (s)" + +#~ msgid "" +#~ "La clave temporal es utilizada como clave maestra para los usuarios que " +#~ "necesitan introducirla al iniciar la sesión, así no es necesario " +#~ "facilitar la clave maestra original." +#~ msgstr "" +#~ "La password temporanea viene utilizzata come chiave principale per gli " +#~ "utenti che devono inserirla all'avvio della sessione, pertanto non è " +#~ "necessario fornire la password master originale." + +#~ msgid "Generar" +#~ msgstr "Genera" + +#~ msgid "No se encontraron registros" +#~ msgstr "Nessun dato trovato" + +#~ msgid "Fecha / Hora" +#~ msgstr "Data / ora" + +#~ msgid "Evento" +#~ msgstr "Evento" + +#~ msgid "IP" +#~ msgstr "IP" + +#~ msgid "Primera página" +#~ msgstr "Prima pagina" + +#~ msgid "Página anterior" +#~ msgstr "Pagina precedente" + +#~ msgid "Página siguiente" +#~ msgstr "Pagina seguente" + +#~ msgid "Última página" +#~ msgstr "Ultima pagina" + +#~ msgid "Indica si la conexión utiliza HTTPS." +#~ msgstr "Indica se la connessione utilizza HTTPS." + +#~ msgid "" +#~ "Las claves de formularios enviados se encriptan mediante PKI, el resto de " +#~ "datos no." +#~ msgstr "" +#~ "Le chiavi dei moduli inviati sono crittografate tramite PKI, il resto dei " +#~ "dati non lo è." + +#~ msgid "Ayuda :: FAQ :: Changelog" +#~ msgstr "Aiuto :: Domande frequenti :: Changelog" + +#~ msgid "Un proyecto de cygnux.org" +#~ msgstr "Un progetto di cygnux.org" + +#~ msgid "Nombre del grupo" +#~ msgstr "Nome del gruppo" + +#~ msgid "Descripción del grupo" +#~ msgstr "Descrizione del gruppo" + +#~ msgid "Importar CSV/XML" +#~ msgstr "Importa CSV/XML" + +#~ msgid "Usuario por Defecto" +#~ msgstr "Utente predefinito" + +#~ msgid "Define el usuario por defecto para las cuentas importadas." +#~ msgstr "Definisce l'utente predefinito per gli account importati." + +#~ msgid "Grupo por Defecto" +#~ msgstr "Gruppo predefinito" + +#~ msgid "Define el grupo por defecto para las cuentas importadas." +#~ msgstr "Definisce il gruppo predefinito per gli account importati." + +#~ msgid "Clave de Importación" +#~ msgstr "Password di importazione" + +#~ msgid "Delimitador CSV" +#~ msgstr "Delimitatore CSV" + +#~ msgid "Soltar archivo aquí o click para seleccionar" +#~ msgstr "Trascina qui il file o fai clic per selezionare" + +#, fuzzy +#~ msgid "" +#~ "Permite realizar la importación de Cuentas, Categorías y Clientes desde " +#~ "archivos XML y CSV." +#~ msgstr "" +#~ "Permette di importare account, categorie e client da file XML e CSV." + +#~ msgid "" +#~ "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" +#~ msgstr "I formati di file XML supportati sono: sysPass, KeePass e KeePassX" + +#~ msgid "" +#~ "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " +#~ "flecha." +#~ msgstr "" +#~ "Trascina il file da importare nell'area indicata o fai clic sulla freccia." + +#~ msgid "" +#~ "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " +#~ "KeePass o KeePassX y la categoría igual al nombre de los grupos." +#~ msgstr "" +#~ "Per i file KeePass o KeePassX, il nome del client sarà uguale a KeePass o " +#~ "KeePassX e la categoria è uguale ai nomi dei gruppi." + +#~ msgid "La importación de archivos CSV se realiza con el siguiente formato:" +#~ msgstr "L'importazione di file CSV viene eseguita nel seguente formato:" + +#~ msgid "" +#~ "En todos los casos, si el cliente o la categoría no están creados, se " +#~ "crean automáticamente." +#~ msgstr "" +#~ "In tutti i casi, se il cliente o la categoria non vengono creati, vengono " +#~ "creati automaticamente." + +#~ msgid "Información de la Aplicación" +#~ msgstr "Informazioni sull'applicazione" + +#~ msgid "Versión sysPass" +#~ msgstr "Versione di SysPass" + +#~ msgid "Base de Datos" +#~ msgstr "Database" + +#~ msgid "PHP" +#~ msgstr "PHP" + +#~ msgid "Extensiones" +#~ msgstr "Estensioni" + +#~ msgid "Memoria Usada" +#~ msgstr "Memoria usata" + +#~ msgid "Servidor" +#~ msgstr "Server" + +#~ msgid "Login del usuario administrador de sysPass" +#~ msgstr "Accesso dell'utente amministratore di sysPass" + +#~ msgid "Configurar BBDD" +#~ msgstr "Configurare BBDD" + +#~ msgid "Nombre de la base de datos para sysPass" +#~ msgstr "Nome del database per sysPass" + +#~ msgid "Modo Hosting" +#~ msgstr "Modalità di hosting" + +#~ msgid "No crea ni verifica los permisos del usuario sobre la BBDD" +#~ msgstr "Non creare o verificare le autorizzazioni dell'utente su BBDD" + +#~ msgid "Instalar" +#~ msgstr "Installare" + +#~ msgid "Habilitar LDAP" +#~ msgstr "Abilitare LDAP" + +#~ msgid "Habilita de autentificación mediante servidor LDAP." +#~ msgstr "Abilita l'autenticazione tramite il server LDAP." + +#~ msgid "Este método utilizará MySQL en caso de fallo." +#~ msgstr "Questo metodo utilizzerà MySQL in caso di errore." + +#~ msgid "Nombre o dirección IP del servidor de LDAP." +#~ msgstr "Nome o indirizzo IP del server LDAP." + +#~ msgid "Ejemplos:" +#~ msgstr "Esempio:" + +#~ msgid "Usuario de conexión" +#~ msgstr "Utente di connessione" + +#~ msgid "Usuario para conectar con el servicio de LDAP." +#~ msgstr "Utente per connettersi con il servizio LDAP." + +#~ msgid "Clave de conexión" +#~ msgstr "Password di connessione" + +#~ msgid "Base de búsqueda" +#~ msgstr "Cerca database" + +#~ msgid "Base en la que realizar la búsqueda de usuarios de LDAP." +#~ msgstr "Database su cui eseguire la ricerca di utenti LDAP." + +#~ msgid "" +#~ "Grupo de LDAP al que debe de pertenecer el usuario para permitir el " +#~ "acceso." +#~ msgstr "" +#~ "Gruppo LDAP a cui l'utente deve appartenere per consentire l'accesso." + +#~ msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." +#~ msgstr "Questo gruppo deve trovarsi nel database di ricerca LDAP." + +#~ msgid "" +#~ "Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." +#~ msgstr "Definisce il gruppo di utenti predefinito per i nuovi utenti LDAP." + +#~ msgid "Perfil por Defecto" +#~ msgstr "Profilo predefinito" + +#~ msgid "" +#~ "Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." +#~ msgstr "Definisce il profilo utente predefinito per i nuovi utenti LDAP." + +#~ msgid "Active Directory" +#~ msgstr "Active Directory" + +#~ msgid "Habilita el modo de conexión con LDAP de Active Directory." +#~ msgstr "Abilita la modalità di connessione LDAP di Active Directory." + +#~ msgid "Comprobar" +#~ msgstr "Verifica" + +#~ msgid "¿Olvidó su clave?" +#~ msgstr "Hai dimenticato la password?" + +#~ msgid "Aplicación actualizada correctamente" +#~ msgstr "Applicazione aggiornata correttamente" + +#~ msgid "Habilitar notificaciones de correo" +#~ msgstr "Abilita le notifiche di posta" + +#~ msgid "Puerto" +#~ msgstr "Porta" + +#~ msgid "Habilitar Autentificación" +#~ msgstr "Abilita autenticazione" + +#~ msgid "Deshabilitada" +#~ msgstr "Disabiltata" + +#, fuzzy +#~ msgid "Dirección de correo de envío" +#~ msgstr "Indirizzo mail di spedizione" + +#~ msgid "Habilitar peticiones por correo" +#~ msgstr "Abilita le richieste per posta" + +#~ msgid "Más Acciones" +#~ msgstr "Altre azioni" + +#~ msgid "Solicitud de Cambio de Clave" +#~ msgstr "Richiesta di modifica password" + +#~ msgid "Email del Usuario" +#~ msgstr "Email dell'utente" + +#~ msgid "Volver a iniciar sesión" +#~ msgstr "Torna al login" + +#~ msgid "Solicitar" +#~ msgstr "Richiesta" + +#~ msgid "Cambiar" +#~ msgstr "Modifica" + +#~ msgid "Cambiar Clave" +#~ msgstr "Cambia password" + +#~ msgid "Ordenar resultados por visitas" +#~ msgstr "Ordina i risultati per visite" + +#~ msgid "" +#~ "Ordena los resultados de búsqueda por el número de visitas de las cuentas." +#~ msgstr "" +#~ "Ordina i risultati della ricerca in base al numero di visite agli account." + +#~ msgid "Barra de navegación superior" +#~ msgstr "La barra di navigazione in alto" + +#~ msgid "Mostrar una barra de navegación superior en las búsquedas." +#~ msgstr "Mostra una barra di navigazione superiore nelle ricerche." + +#~ msgid "Mostrar Acciones Ocultas" +#~ msgstr "Mostra azioni nascoste" + +#~ msgid "" +#~ "Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." +#~ msgstr "Mostra azioni nascoste per gli elementi nella ricerca dell'account." + +#~ msgid "Nombre del perfil" +#~ msgstr "Nome del profilo" + +#~ msgid "Ver detalles de cuenta" +#~ msgstr "Visualizza i dettagli dell'account" + +#~ msgid "Ver" +#~ msgstr "Visualizza" + +#~ msgid "Ver clave de cuenta" +#~ msgstr "Vedi la password dell'account" + +#~ msgid "Ver historial de cuenta" +#~ msgstr "Vedi storico dell'account" + +#~ msgid "Editar cuenta" +#~ msgstr "Modifica account" + +#~ msgid "Editar" +#~ msgstr "Modificare" + +#~ msgid "Editar clave de cuenta" +#~ msgstr "Modifica la password dell'account" + +#~ msgid "Editar Clave" +#~ msgstr "Modifica la password" + +#~ msgid "Añadir" +#~ msgstr "Aggiungere" + +#~ msgid "Ver archivos de cuenta" +#~ msgstr "Visualizza i file dell'account" + +#~ msgid "Backup" +#~ msgstr "Backup" + +#~ msgid "Realizar importación de cuentas" +#~ msgstr "Esegui l'importazione dell'account" + +#~ msgid "Gestión" +#~ msgstr "Gestione" + +#~ msgid "Gestión de usuarios" +#~ msgstr "Gestione degli utenti" + +#~ msgid "Gestión de grupos" +#~ msgstr "Gestione dei gruppi" + +#~ msgid "Gestión de perfiles" +#~ msgstr "Gestione dei profili" + +#~ msgid "Perfiles" +#~ msgstr "Profili" + +#~ msgid "Gestión de categorías" +#~ msgstr "Gestione delle categorie" + +#, fuzzy +#~ msgid "Gestión de clientes" +#~ msgstr "Gestione dei clienti" + +#~ msgid "Gestión de campos personalizados" +#~ msgstr "Gestione dei campi personalizzati" + +#~ msgid "Gestión de autorizaciones API" +#~ msgstr "Gestione delle autorizzazioni API" + +#~ msgid "Autorizaciones API" +#~ msgstr "Autorizzazioni API" + +#~ msgid "Otros" +#~ msgstr "Altro" + +#~ msgid "Ver log de eventos" +#~ msgstr "Vedi il registro degli eventi" + +#~ msgid "Log de Eventos" +#~ msgstr "Registro eventi" + +#~ msgid "Usado por" +#~ msgstr "Usato da" + +#~ msgid "Solicitar Modificación de Cuenta" +#~ msgstr "Richiedi la modifica dell'account" + +#~ msgid "Petición" +#~ msgstr "Petizione" + +#~ msgid "Descripción de la petición" +#~ msgstr "Descrizione della petizione" + +#~ msgid "Atrás" +#~ msgstr "Indietro" + +#~ msgid "Enviar" +#~ msgstr "Inviare" + +#~ msgid "Filtro ON" +#~ msgstr "Filtro ON" + +#~ msgid "Buscar en Wiki" +#~ msgstr "Cerca in Wiki" + +#~ msgid "Abrir enlace a" +#~ msgstr "Apri il link a" + +#~ msgid "Archivos adjuntos" +#~ msgstr "Allegati aggiuntu" + +#~ msgid "Enlace a Wiki" +#~ msgstr "Collegamento a Wiki" + +#~ msgid "Limpiar" +#~ msgstr "Pulire" + +#~ msgid "Texto a buscar" +#~ msgstr "Testo da cercare" + +#~ msgid "Parámetros especiales:" +#~ msgstr "Parametri speciali:" + +#~ msgid "Buscar cuentas a las que 'login' tenga acceso" +#~ msgstr "Cerca account a cui 'login' ha accesso" + +#~ msgid "Buscar cuentas a las que 'group_name' tenga acceso" +#~ msgstr "Cerca account a cui 'group_name' ha accesso" + +#~ msgid "Buscar cuentas con archivos con el nombre 'file_name'" +#~ msgstr "Cerca account con file con il nome 'file_name'" + +#~ msgid "Búsqueda global" +#~ msgstr "Ricerca globale" + +#~ msgid "Cuentas por página" +#~ msgstr "Account per pagina" + +#~ msgid "Salir" +#~ msgstr "Uscita" + +#~ msgid "Opciones" +#~ msgstr "Opzioni" + +#~ msgid "Regenerar Autorización" +#~ msgstr "Autorizzazione rigenerata" + +#~ msgid "Token" +#~ msgstr "Token" + +#~ msgid "Actualizado" +#~ msgstr "Aggiornato" + +#~ msgid "Error al comprobar actualizaciones" +#~ msgstr "Errore durante il controllo degli aggiornamenti" + +#~ msgid "Actualización de BBDD" +#~ msgstr "Aggiornamento BBDD" + +#~ msgid "Código de Seguridad" +#~ msgstr "Codice di sicurezza" + +#~ msgid "Iniciar Actualización" +#~ msgstr "Avvia aggiornamento" + +#~ msgid "Nombre de usuario completo" +#~ msgstr "Nome dell'utente completo" + +#~ msgid "Login de inicio de sesión" +#~ msgstr "Login di inizio sessione" + +#~ msgid "Dirección de correo" +#~ msgstr "Indirizzo email" + +#~ msgid "Administrador de la aplicación" +#~ msgstr "Gestore dell'applicazione" + +#~ msgid "Administrador de cuentas" +#~ msgstr "Account manager" + +#~ msgid "Forzar cambio de clave" +#~ msgstr "Forza la modifica della password" + +#~ msgid "Entradas" +#~ msgstr "Entrata" + +#~ msgid "Último Acceso" +#~ msgstr "Ultimo accesso" + +#~ msgid "Fecha Clave Maestra" +#~ msgstr "Data password principale" + +#~ msgid "Habilitar enlaces Wiki" +#~ msgstr "Abilita i collegamenti Wiki" + +#~ msgid "" +#~ "Habilita la opción de añadir un enlace a Wiki externa para los resultados " +#~ "de la búsqueda." +#~ msgstr "" +#~ "Abilita l'opzione per aggiungere un collegamento a Wiki esterno per i " +#~ "risultati di ricerca." + +#~ msgid "URL de búsqueda Wiki" +#~ msgstr "URL di ricerca Wiki" + +#, fuzzy +#~ msgid "URL que utiliza la wiki para realizar una búsqueda de una página." +#~ msgstr "URL utilizzato dalla wiki per eseguire una ricerca su una pagina." + +#~ msgid "Como parámetro se utiliza el nombre del cliente." +#~ msgstr "Come parametro si utilizza il nome del cliente." + +#~ msgid "Ejemplo:" +#~ msgstr "Esempio:" + +#~ msgid "URL de página en Wiki" +#~ msgstr "URL della pagina in Wiki" + +#, fuzzy +#~ msgid "URL que utiliza la wiki para acceder a los detalles de una página." +#~ msgstr "URL utilizzato dal wiki per accedere ai dettagli di una pagina." + +#~ msgid "" +#~ "El nombre de la cuenta se utiliza como parámetro de la variable de " +#~ "búsqueda de la Wiki." +#~ msgstr "" +#~ "Il nome dell'account viene utilizzato come parametro della variabile di " +#~ "ricerca del Wiki." + +#~ msgid "Prefijo para nombre de cuenta" +#~ msgstr "Prefisso per il nome dell'account" + +#~ msgid "" +#~ "Prefijo para determinar qué cuentas tienen un enlace a una página de la " +#~ "Wiki." +#~ msgstr "" +#~ "Prefisso per determinare quali account hanno un link a una pagina del " +#~ "Wiki." + +#~ msgid "Histórico" +#~ msgstr "Storico" + +#~ msgid "Realizar" +#~ msgstr "Eseguire" + +#~ msgid "Forzar HTTPS" +#~ msgstr "Forza l'uso di HTTPS" + +#~ msgid "Fuerza para que todas las conexiones sean a través de HTTPS." +#~ msgstr "Forza per tutte le connessioni tramite HTTPS." + +#~ msgid "Número de resultados por página" +#~ msgstr "Numero di risultati per pagina" + +#~ msgid "Proxy" +#~ msgstr "Proxy" + +#~ msgid "Usar Proxy" +#~ msgstr "Usa Proxy" + +#~ msgid "Servidor proxy" +#~ msgstr "Server proxy" + +#~ msgid "Puerto del servidor proxy" +#~ msgstr "Porta del server proxy" + +#~ msgid "Usuario del servidor proxy" +#~ msgstr "Utente del server proxy" + +#~ msgid "Clave del servidor proxy" +#~ msgstr "Password del server proxy" + +#~ msgid "Nombre del campo" +#~ msgstr "Nome del campo" + +#~ msgid "Ayuda del campo" +#~ msgstr "Suggerimento" + +#~ msgid "Intentos" +#~ msgstr "Tentativi" + +#~ msgid "Preferencias de usuario" +#~ msgstr "Preferenze dell'utente" + +#~ msgid "Usuario administrador de sysPass" +#~ msgstr "Utente amministratore di SysPass" + +#~ msgid "Usuario acceso BBDD" +#~ msgstr "Accesso utente BBDD" + +#, fuzzy +#~ msgid "Usuario con permisos de administrador de MySQL" +#~ msgstr "Utente con permessi di amministratore MySQL" + +#~ msgid "Clave acceso BBDD" +#~ msgstr "Password di accesso BBDD" + +#~ msgid "Nombre BBDD para sysPass" +#~ msgstr "Nome BBDD per sysPass" + +#~ msgid "Servidor BBDD para sysPass" +#~ msgstr "Server BBDD per sysPass" + +#~ msgid "Nombre del servidor para instalar la base de datos de sysPass" +#~ msgstr "Nome del server per installare il database sysPass" + +#~ msgid "Clave del usuario de conexión a LDAP." +#~ msgstr "Password dell'utente di connessione LDAP." + +#~ msgid "" +#~ "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " +#~ "cuentas sin permisos." +#~ msgstr "" +#~ "Consente agli utenti di richiedere modifiche o accedere agli account " +#~ "senza autorizzazioni." + +#~ msgid "Crear nueva cuenta" +#~ msgstr "Creare un nuovo account" + +#~ msgid "Crear" +#~ msgstr "Creare" + +#~ msgid "Eliminar cuenta" +#~ msgstr "Rimuovere account" + +#~ msgid "Eliminar" +#~ msgstr "Eliminare" + +#~ msgid "Opciones de encriptación" +#~ msgstr "Opzioni di crittografia" + +#~ msgid "Realizar copia de seguridad y exportar" +#~ msgstr "Eseguire il backup ed esportare" + +#~ msgid "Extensión" +#~ msgstr "Estensione" + +#~ msgid "Tamaño de archivo superado" +#~ msgstr "Dimensione del file superata" + +#~ msgid "Solicitud no enviada" +#~ msgstr "Richiesta non inviata" + +#~ msgid "Compruebe datos de usuario o consulte con el administrador" +#~ msgstr "Controlla i dati dell'utente o verificare con l'amministratore" + +#~ msgid "La cuenta no existe" +#~ msgstr "L'account non esiste" + +#~ msgid "Errores" +#~ msgstr "Errori" + +#~ msgid "Error al añadir favorito" +#~ msgstr "Errore durante l'aggiunta del preferito" + +#~ msgid "Error al eliminar favorito" +#~ msgstr "Errore durante la rimozione del preferito" + +#~ msgid "Error al eliminar las etiquetas de la cuenta" +#~ msgstr "Errore durante la rimozione dei tag dell'account" + +#~ msgid "Método inválido" +#~ msgstr "Metodo non valido" + +#~ msgid "Datos inválidos" +#~ msgstr "Dati non validi" + +#~ msgid "Formato incorrecto" +#~ msgstr "Formato errato" + +#~ msgid "Id de la cuenta" +#~ msgstr "Account Id" + +#~ msgid "Devolver detalles en la respuesta" +#~ msgstr "Restituisci i dettagli nella risposta" + +#~ msgid "Número de resultados a mostrar" +#~ msgstr "Numero di risultati da mostrare" + +#~ msgid "Id de categoría a filtrar" +#~ msgstr "ID di categoria da filtrare" + +#, fuzzy +#~ msgid "Id de cliente a filtrar" +#~ msgstr "ID cliente da filtrare" + +#~ msgid "Id de categoría" +#~ msgstr "ID categoria" + +#~ msgid "Id de cliente" +#~ msgstr "ID cliente" + +#~ msgid "Nombre de categoría a buscar" +#~ msgstr "Nome della categoria da cercare" + +#, fuzzy +#~ msgid "Nombre de cliente a buscar" +#~ msgstr "Nome del cliente da cercare" + +#~ msgid "Método ya inicializado" +#~ msgstr "Metodo già inizializzato" + +#~ msgid "Método no disponible" +#~ msgstr "Metodo non disponibile" + +#~ msgid "Objetos encontrados: %d" +#~ msgstr "Oggetti trovati: %d" + +#~ msgid "Los parámetros de DokuWiki no están configurados" +#~ msgstr "I parametri di DokuWiki non sono configurati" + +#~ msgid "Error" +#~ msgstr "Errore" + +#~ msgid "Conexión correcta" +#~ msgstr "Connessione corretta" + +#~ msgid "Error de conexión a DokuWiki" +#~ msgstr "Errore di connessione a DokuWiki" + +#~ msgid "Faltan parámetros de syslog remoto" +#~ msgstr "Parametri syslog remoti mancanti" + +#~ msgid "Syslog remoto deshabilitado" +#~ msgstr "Syslog remoto disabilitato" + +#~ msgid "Error al guardar la configuración" +#~ msgstr "Errore durante il salvataggio della configurazione" + +#~ msgid "Faltan parámetros de DokuWiki" +#~ msgstr "Parametri di DokuWiki mancanti" + +#~ msgid "DokuWiki habiltada" +#~ msgstr "DokuWiki abilitato" + +#~ msgid "DokuWiki deshabilitada" +#~ msgstr "DokuWiki disabilitato" + +#~ msgid "Buscar Evento" +#~ msgstr "Cerca evento" + +#~ msgid "Buscar Campo" +#~ msgstr "Campo di ricerca" + +#~ msgid "Importar usuarios de LDAP" +#~ msgstr "Importa utenti LDAP" + +#~ msgid "Buscar Token" +#~ msgstr "Token di ricerca" + +#~ msgid "Fecha Creación" +#~ msgstr "Data di creazione" + +#~ msgid "Fecha Caducidad" +#~ msgstr "Data di Scadenza" + +#~ msgid "Notificar" +#~ msgstr "Notificare" + +#~ msgid "Enlaces" +#~ msgstr "Links" + +#~ msgid "Buscar Enlace" +#~ msgstr "Collegamento di ricerca" + +#~ msgid "Ver Enlace" +#~ msgstr "Vedi Link" + +#~ msgid "Renovar Enlace" +#~ msgstr "Rinnova il collegamento" + +#~ msgid "Eliminar Enlace" +#~ msgstr "Rimuovi link" + +#~ msgid "Etiquetas" +#~ msgstr "Tags" + +#~ msgid "Plugin" +#~ msgstr "Plugin" + +#~ msgid "Estado" +#~ msgstr "Stato" + +#~ msgid "Plugins" +#~ msgstr "Plugins" + +#~ msgid "Habilitar" +#~ msgstr "Abilita" + +#~ msgid "Deshabilitar" +#~ msgstr "Disabilita" + +#~ msgid "Restablecer Datos" +#~ msgstr "Ripristina dati" + +#~ msgid "Componente" +#~ msgstr "Componente" + +#~ msgid "Leída" +#~ msgstr "Leggi" + +#~ msgid "Enlace creado" +#~ msgstr "Link creato" + +#~ msgid "Enlace actualizado" +#~ msgstr "Link aggiornato" + +#~ msgid "Enlace eliminado" +#~ msgstr "Link eliminato" + +#~ msgid "Etiqueta creada" +#~ msgstr "Tag aggiunta" + +#~ msgid "Etiqueta actualizada" +#~ msgstr "Tag aggiornata" + +#~ msgid "Etiqueta eliminada" +#~ msgstr "Tag rimossa" + +#~ msgid "Plugin habilitado" +#~ msgstr "Plugin abilitata" + +#~ msgid "Plugin deshabilitado" +#~ msgstr "Plugin disabilitata" + +#~ msgid "Plugin restablecido" +#~ msgstr "Resetta Plugin" + +#~ msgid "Favorito añadido" +#~ msgstr "Preferito aggiunto" + +#~ msgid "Favorito eliminado" +#~ msgstr "Eliminato preferito" + +#~ msgid "Importación de usuarios de LDAP realizada" +#~ msgstr "Importazione utenti LDAP terminata" + +#~ msgid "Error al importar usuarios de LDAP" +#~ msgstr "Errore durante l'importazione di utenti LDAP" + +#~ msgid "Notificación leída" +#~ msgstr "Notifica letta" + +#~ msgid "Notificación eliminada" +#~ msgstr "Notifica eliminata" + +#~ msgid "Solicitud enviada por correo" +#~ msgstr "Richiesta inviata via email" + +#~ msgid "Solicitud no enviada por correo" +#~ msgstr "Richiesta non inviata per email" + +#~ msgid "Solicitud realizada" +#~ msgstr "Richiesta effettuata" + +#~ msgid "Detalles de Plugin" +#~ msgstr "Dettagli Plugin" + +#~ msgid "Error al obtener la clave maestra del usuario" +#~ msgstr "Impossibile ottenere la chiave master dell'utente" + +#~ msgid "Es necesaria su clave anterior" +#~ msgstr "La tua password precedente è richiesta" + +#~ msgid "Servidor LDAP" +#~ msgstr "LDAP Server" + +#~ msgid "Buscar Categorías" +#~ msgstr "Cerca per categorie" + +#~ msgid "Añadir Categoría" +#~ msgstr "Aggiungi categoria" + +#~ msgid "Buscar Clientes" +#~ msgstr "Cerca clienti" + +#~ msgid "Añadir Cliente" +#~ msgstr "Aggiungi cliente" + +#~ msgid "No es posible crear el directorio de backups (\"%s\")" +#~ msgstr "Non è possibile creare la directory di backup (\"%s\")" + +#~ msgid "Observador no inicializado" +#~ msgstr "Observer non inizializzato" + +#~ msgid "Es necesario un objeto" +#~ msgstr "Un oggetto è necessario" + +#~ msgid "Indicar la clave de la BBDD" +#~ msgstr "Indicare la password del BBDD" + +#~ msgid "Clave del usuario administrador de la Base de Datos" +#~ msgstr "Password dell'utente amministratore del database" + +#~ msgid "Error al crear el usuario de conexión a MySQL '%s'" +#~ msgstr "Errore durante la creazione dell'accesso utente a MySQL '%s'" + +#~ msgid "La BBDD no existe" +#~ msgstr "Il database non esiste" + +#~ msgid "Es necesario crearla y asignar los permisos necesarios" +#~ msgstr "È necessario crearlo e assegnare le autorizzazioni necessarie" + +#~ msgid "Error al establecer permisos de la BBDD ('%s')" +#~ msgstr "Impossibile impostare le autorizzazioni del DB ('%s')" + +#~ msgid "No es posible cargar el plugin \"%s\"" +#~ msgstr "Impossibile caricare il plug-in \"%s\"" + +#~ msgid "La plantilla no contiene archivos" +#~ msgstr "Il modello non contiene file" + +#~ msgid "Error al actualizar la configuración" +#~ msgstr "Errore durante l'aggiornamento della configurazione" + +#~ msgid "Usuario no indicado" +#~ msgstr "Utente non indicato" + +#~ msgid "Acción no indicada" +#~ msgstr "Azione non indicata" + +#~ msgid "Es necesario un nombre de etiqueta" +#~ msgstr "È richiesto un nome di tag" + +#~ msgid "Respuesta XML-RPC inválida" +#~ msgstr "Risposta XML-RPC non valida" + +#~ msgid "Tipo mime no soportado (\"%s\")" +#~ msgstr "Tipo MIME non supportato (\"%s\")" + +#~ msgid "Id de categoría no definido. No es posible importar cuenta." +#~ msgstr "ID di categoria non definito. Non è possibile importare account." + +#~ msgid "Id de cliente no definido. No es posible importar cuenta." +#~ msgstr "ID cliente non definito. Non è possibile importare account." + +#~ msgid "Clave de encriptación no indicada" +#~ msgstr "Password di crittografia non indicata" + +#~ msgid "Formato detectado: %s" +#~ msgstr "Formato rilevato: %s" + +#~ msgid "El nodo \"%s\" no existe" +#~ msgstr "Il nodo \"%s\" non esiste" + +#~ msgid "Extensión '%s' no cargada" +#~ msgstr "Estensione '%s' non caricata" + +#~ msgid "Categoría duplicada" +#~ msgstr "Categoria duplicata" + +#~ msgid "Categoría no encontrada" +#~ msgstr "Categoria non trovata" + +#~ msgid "Error al crear el campo personalizado" +#~ msgstr "Errore durante la creazione del campo personalizzato" + +#~ msgid "Error al eliminar el campo personalizado" +#~ msgstr "Errore durante l'eliminazione del campo personalizzato" + +#~ msgid "Error al actualizar el campo personalizado" +#~ msgstr "Errore durante l'aggiornamento del campo personalizzato" + +#~ msgid "Campo personalizado no encontrado" +#~ msgstr "Campo personalizzato non trovato" + +#~ msgid "No se encontraron campos personalizados" +#~ msgstr "Nessun campo personalizzato trovato" + +#~ msgid "No hay datos de campos personalizados" +#~ msgstr "Nessun dato di campo personalizzato" + +#~ msgid "Error al migrar campos personalizados" +#~ msgstr "Errore durante la migrazione dei campi personalizzati" + +#~ msgid "Archivo subido" +#~ msgstr "File caricato" + +#~ msgid "Grupo en uso" +#~ msgstr "Gruppo in uso" + +#~ msgid "Actualizar Grupo" +#~ msgstr "Aggiorna gruppo" + +#~ msgid "Error al asignar los usuarios al grupo" +#~ msgstr "Errore nell'assegnazione degli utenti al gruppo" + +#~ msgid "Error al crear la notificación" +#~ msgstr "Errore durante la creazione della notifica" + +#~ msgid "Error al eliminar la notificación" +#~ msgstr "Errore durante l'eliminazione della notifica" + +#~ msgid "Error al modificar la notificación" +#~ msgstr "Errore durante l'aggiornamento della notifica" + +#~ msgid "Error al obtener la notificación" +#~ msgstr "Errore durante la ricezione della notifica" + +#~ msgid "Error al obtener las notificaciones" +#~ msgstr "Impossibile ottenere le notifiche" + +#~ msgid "Error al crear el plugin" +#~ msgstr "Errore durante la creazione del plug-in" + +#~ msgid "Error al eliminar el plugin" +#~ msgstr "Errore durante l'eliminazione del plug-in" + +#~ msgid "Error al actualizar el plugin" +#~ msgstr "Errore durante l'aggiornamento del plug-in" + +#~ msgid "Habilitado" +#~ msgstr "Abilitato" + +#~ msgid "Error al crear perfil" +#~ msgstr "Errore durante la creazione del profilo" + +#~ msgid "Perfil en uso" +#~ msgstr "Profilo in uso" + +#~ msgid "Error al eliminar perfil" +#~ msgstr "Errore durante l'eliminazione del profilo" + +#~ msgid "Error al modificar perfil" +#~ msgstr "Errore durante la modifica del profilo" + +#~ msgid "Enlace visualizado" +#~ msgstr "Visualizza link" + +#~ msgid "Error al actualizar enlace" +#~ msgstr "Errore durante l'aggiornamento del link" + +#~ msgid "Enlace ya creado" +#~ msgstr "Link già creato" + +#~ msgid "Error al crear enlace" +#~ msgstr "Errore durante la creazione del collegamento" + +#~ msgid "Error al eliminar enlace" +#~ msgstr "Errore durante la rimozione del collegamento" + +#~ msgid "Error al renovar enlace" +#~ msgstr "Errore durante il rinnovo del link" + +#~ msgid "Actualizar Enlace" +#~ msgstr "Link di aggiornamento" + +#~ msgid "Error al obtener enlace" +#~ msgstr "Impossibile ottenere il collegamento" + +#~ msgid "ON" +#~ msgstr "ON" + +#~ msgid "OFF" +#~ msgstr "OFF" + +#~ msgid "Etiqueta duplicada" +#~ msgstr "Tag duplicata" + +#~ msgid "Error al crear etiqueta" +#~ msgstr "Errore durante la creazione del tag" + +#~ msgid "Error al eliminar etiqueta" +#~ msgstr "Errore durante la rimozione del tag" + +#~ msgid "Error al actualizar etiqueta" +#~ msgstr "Errore durante l'aggiornamento del tag" + +#~ msgid "Error al obtener etiqueta" +#~ msgstr "Errore nell'ottenere il tag" + +#~ msgid "Login/email de usuario duplicados" +#~ msgstr "Login/email utente duplicati" + +#~ msgid "Error al obtener los datos del usuario" +#~ msgstr "Errore nell'ottenere dati utente" + +#~ msgid "No se encontraron objetos para sincronizar" +#~ msgstr "Nessun oggetto trovato da sincronizzare" + +#~ msgid "Sincronización finalizada" +#~ msgstr "Sincronizzazione completata" + +#~ msgid "Error al migrar cuenta de usuario" +#~ msgstr "Errore durante la migrazione dell'account utente" + +#~ msgid "Error al obtener grupo de usuarios" +#~ msgstr "Impossibile ottenere il gruppo di utenti" + +#~ msgid "Error en comprobación de hash" +#~ msgstr "Errore nel controllo hash" + +#~ msgid "Hash inválido o expirado" +#~ msgstr "Hash non valido o scaduto" + +#~ msgid "Error al generar el hash de recuperación" +#~ msgstr "Errore durante la generazione dell'hash di ripristino" + +#~ msgid "Actualizando preferencias" +#~ msgstr "Aggiornamento delle preferenze" + +#~ msgid "No es posible leer/escribir el archivo: %s" +#~ msgstr "Non è possibile leggere / scrivere il file: %s" + +#~ msgid "No hay elementos para guardar" +#~ msgstr "Non ci sono oggetti da salvare" + +#~ msgid "Socket no inicializado" +#~ msgstr "Socket non inizializzato" + +#~ msgid "Error al enviar datos" +#~ msgstr "Errore nell'invio dei dati" + +#~ msgid "Respuesta" +#~ msgstr "Risposta" + +#~ msgid "Fallo de autentificación" +#~ msgstr "Errore di autenticazione" + +#~ msgid "Error al realizar la consulta" +#~ msgstr "Impossibile eseguire la query" + +#~ msgid "URL de conexión no establecida" +#~ msgstr "URL di connessione non stabilito" + +#~ msgid "Ver Detalles" +#~ msgstr "Visualizzare dettagli" + +#~ msgid "Copiar" +#~ msgstr "Copia" + +#~ msgid "Restaurar" +#~ msgstr "Ripristina" + +#~ msgid "Descargar" +#~ msgstr "Download" + +#~ msgid "Crítico" +#~ msgstr "Critico" + +#~ msgid "Recibir notificaciones?" +#~ msgstr "Ricevere notifiche?" + +#~ msgid "Marcar Favorito" +#~ msgstr "Imposta preferito" + +#~ msgid "Limpiar Selección" +#~ msgstr "Annulla selezione" + +#~ msgid "Mostrar Favoritos" +#~ msgstr "Mostra Preferiti" + +#~ msgid "Mostrar Todos" +#~ msgstr "Mostra tutto" + +#~ msgid "Ahora" +#~ msgstr "Ora" + +#~ msgid "" +#~ "Este proceso importará los usuarios de LDAP detectados. Desea continuar?" +#~ msgstr "Questo processo importa gli utenti LDAP rilevati. Vuoi continuare?" + +#~ msgid "" +#~ "Esta acción restablecerá todos los datos del plugin. Desea continuar?" +#~ msgstr "" +#~ "Questa azione ripristinerà tutti i dati del plugin. Vuoi continuare?" + +#~ msgid "Fecha Caducidad Clave" +#~ msgstr "Data di scadenza chiave" + +#~ msgid "Seleccionar Fecha" +#~ msgstr "Seleziona la data" + +#~ msgid "Accesos" +#~ msgstr "Accesso" + +#~ msgid "Seleccionar Usuarios" +#~ msgstr "Seleziona utenti" + +#~ msgid "Seleccionar Grupos" +#~ msgstr "Seleziona gruppi" + +#~ msgid "Cuenta Privada" +#~ msgstr "Password privata" + +#~ msgid "Privada" +#~ msgstr "Privata" + +#~ msgid "Seleccionar Etiquetas" +#~ msgstr "Selezionare tags" + +#~ msgid "Cuenta Vinculada" +#~ msgstr "Account collegato" + +#~ msgid "Seleccionar Cuenta" +#~ msgstr "Seleziona account" + +#~ msgid "Enlace Público" +#~ msgstr "Link pubblico" + +#~ msgid "Detalles" +#~ msgstr "Dettagli" + +#~ msgid "Fecha de Clave" +#~ msgstr "Data della password" + +#~ msgid "Tamaño máximo de archivo: %d MB" +#~ msgstr "Dimensione massima del file: %d MB" + +#~ msgid "Cuentas Vinculadas" +#~ msgstr "Account collegati" + +#~ msgid "Clave Caducada" +#~ msgstr "Chiave scaduta" + +#~ msgid "Ver en Wiki" +#~ msgstr "Visualizza in Wiki" + +#~ msgid "Buscar cuentas con la clave caducada" +#~ msgstr "Cerca account con la chiave scaduta" + +#~ msgid "Filtrar Favoritos" +#~ msgstr "Filtro Preferiti" + +#~ msgid "Más Filtros" +#~ msgstr "Più filtri" + +#~ msgid "Seleccionar Etiqueta" +#~ msgstr "Seleziona tag" + +#~ msgid "Copia BBDD" +#~ msgstr "Copia BBDD" + +#~ msgid "Copia sysPass" +#~ msgstr "Copia sysPass" + +#~ msgid "Eventos" +#~ msgstr "Eventi" + +#~ msgid "Habilitar Syslog" +#~ msgstr "Abilita Syslog" + +#~ msgid "Habilitar Syslog Remoto" +#~ msgstr "Abilita Syslog remoto" + +#~ msgid "Nombre o dirección IP" +#~ msgstr "Nome o indirizzo IP" + +#~ msgid "Habilitar Enlaces Públicos" +#~ msgstr "Abilita collegamenti pubblici" + +#~ msgid "" +#~ "Habilita la posibilidad de generar enlaces públicos para ver los detalles " +#~ "de una cuenta." +#~ msgstr "" +#~ "Abilita la possibilità di generare collegamenti pubblici per visualizzare " +#~ "i dettagli di un account." + +#~ msgid "" +#~ "Las cuentas enlazadas serán visibles por cualquiera que disponga del " +#~ "enlace." +#~ msgstr "Gli account collegati saranno visibili da chiunque abbia il link." + +#~ msgid "" +#~ "Para crear enlaces, los usuarios tienen que tener activada la opción en " +#~ "su perfl." +#~ msgstr "" +#~ "Per creare collegamenti, gli utenti devono aver attivato l'opzione nel " +#~ "proprio profilo." + +#~ msgid "Tiempo de caducidad" +#~ msgstr "Scadenza" + +#~ msgid "Número máximo de visitas" +#~ msgstr "Numero massimo di visite" + +#~ msgid "Usar imagen para clave" +#~ msgstr "Usa l'immagine per la password" + +#~ msgid "La clave de la cuenta es visualizada como una imagen." +#~ msgstr "Il tasto account è visualizzato come un'immagine." + +#~ msgid "Copia de Configuración" +#~ msgstr "Copia della configurazione" + +#~ msgid "Plugins Cargados" +#~ msgstr "Plugin caricati" + +#~ msgid "Resultados" +#~ msgstr "Risultati" + +#~ msgid "DokuWiki API" +#~ msgstr "DokuWiki API" + +#~ msgid "Habilitar API de DokuWiki" +#~ msgstr "Abilita l'API di DokuWiki" + +#~ msgid "" +#~ "Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." +#~ msgstr "" +#~ "Abilita la connessione all'API XML-RPC DokuWiki per i collegamenti Wiki." + +#~ msgid "" +#~ "Para que esta característica funcione, es necesario habilitar los enlaces " +#~ "Wiki para el filtrado de cuentas." +#~ msgstr "" +#~ "Affinché questa funzione funzioni, è necessario abilitare i collegamenti " +#~ "Wiki per il filtraggio degli account." + +#~ msgid "URL API" +#~ msgstr "URL API" + +#~ msgid "URL de la API de DokuWiki." +#~ msgstr "URL dell'API DokuWiki." + +#~ msgid "URL Base" +#~ msgstr "URL di base" + +#~ msgid "URL base de DokuWiki." +#~ msgstr "URL di base di DokuWiki." + +#, fuzzy +#~ msgid "Usuario para conectar a la API de DokuWiki." +#~ msgstr "Utente per connettersi all'API DokuWiki." + +#~ msgid "Namespace" +#~ msgstr "Spazio dei nomi" + +#~ msgid "Namespace utilizado para buscar las páginas." +#~ msgstr "Spazio dei nomi utilizzato per cercare nelle pagine." + +#~ msgid "Nivel" +#~ msgstr "Livello" + +#~ msgid "Eliminar Seleccionados" +#~ msgstr "Eliminare selezioni" + +#~ msgid "Nombre del plugin" +#~ msgstr "Nome del plugin" + +#~ msgid "Versión del plugin" +#~ msgstr "Versione del plugin" + +#~ msgid "Versión Compatible" +#~ msgstr "Versione compatibile" + +#~ msgid "Versión de sysPass compatible" +#~ msgstr "Versione di susPass compatibile" + +#~ msgid "Autor" +#~ msgstr "Autore" + +#~ msgid "Autor del plugin" +#~ msgstr "Autore del plugin" + +#~ msgid "Publicar enlace a cuenta" +#~ msgstr "Invia link al tuo account" + +#~ msgid "Publicar Enlace" +#~ msgstr "Post Link" + +#~ msgid "Crear cuenta privada" +#~ msgstr "Crea un account privato" + +#~ msgid "Asignar permisos" +#~ msgstr "Assegna le autorizzazioni" + +#~ msgid "Gestión de enlaces" +#~ msgstr "Gestione dei collegamenti" + +#~ msgid "Gestión de cuentas" +#~ msgstr "Gestione degli account" + +#~ msgid "Gestión de etiquetas" +#~ msgstr "Gestione dei tag" + +#~ msgid "Hash" +#~ msgstr "Hash" + +#~ msgid "Uso" +#~ msgstr "Uso" + +#~ msgid "Nombre de la etiqueta" +#~ msgstr "Nome del tag" + +#~ msgid "Hay %d notificaciones pendientes" +#~ msgstr "Sono presenti %d notifiche in sospeso" + +#~ msgid "Demo" +#~ msgstr "Demo" + +#~ msgid "Instalación %s" +#~ msgstr "Installazione %s" + +#~ msgid "Admin de sysPass" +#~ msgstr "Amministratore di sysPass" + +#~ msgid "Clave Anterior" +#~ msgstr "Password precedente" + +#~ msgid "Actualización %s" +#~ msgstr "Aggiorna %s" + +#~ msgid "" +#~ "Este código se encuentra en el archivo de configuración de sysPass con la " +#~ "etiqueta \"upgradeKey\"" +#~ msgstr "" +#~ "Questo codice può essere trovato nel file di configurazione sysPass con " +#~ "l'etichetta \"upgradeKey\"" + +#~ msgid "Resultados de búsqueda de '%s'" +#~ msgstr "Cerca risultati per '%s'" + +#~ msgid "Página" +#~ msgstr "Pagina" + +#~ msgid "No instalado" +#~ msgstr "Non installato" + +#~ msgid "Origen" +#~ msgstr "Sorgente" + +#~ msgid "Agente" +#~ msgstr "Agente" + +#~ msgid "" +#~ "Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." +#~ "com/join/project/fmlsBuugyv" +#~ msgstr "" +#~ "Per migliorare / aggiungere traduzioni, puoi collaborare a https://" +#~ "poeditor.com/join/project/fmlsBuugyv" + +#~ msgid "Indica si el idioma se encuentra disponible" +#~ msgstr "Indica se la lingua è disponibile" + +#~ msgid "" +#~ "Si no está instalado, es necesario instalar las locales en el sistema " +#~ "operativo. Más información en Wiki." +#~ msgstr "" +#~ "Se non è installato, è necessario installare i locali nel sistema " +#~ "operativo. Maggiori informazioni su Wiki." + +#~ msgid "No hay no hay notificaciones pendientes" +#~ msgstr "Non ci sono notifiche in sospeso" + +#~ msgid "He realizado una copia de seguridad completa de sysPass" +#~ msgstr "Ho effettuato un backup completo di sysPass" + +#~ msgid "Por favor espere mientras el proceso se ejecuta" +#~ msgstr "Si prega di attendere mentre il processo è in esecuzione" + +#~ msgid "Crear Usuario" +#~ msgstr "Aggiungi utente" + +#~ msgid "Actualizar Usuario" +#~ msgstr "Aggiorna utente" + +#~ msgid "Actualizar Clave Usuario" +#~ msgstr "Aggiorna la password utente" + +#~ msgid "Crear Grupo" +#~ msgstr "Aggiungi gruppo" + +#~ msgid "Crear Perfil" +#~ msgstr "Aggiungi profilo" + +#~ msgid "Actualizar Perfil" +#~ msgstr "Aggiorna profilo" + +#~ msgid "Crear Cliente" +#~ msgstr "Aggiungi cliente" + +#~ msgid "Crear Categoría" +#~ msgstr "Aggiungi categoria" + +#~ msgid "Actualizar Categoría" +#~ msgstr "Aggiorna categoria" + +#~ msgid "Crear Autorización" +#~ msgstr "Aggiungi autorizzazione" + +#~ msgid "Crear Campo" +#~ msgstr "Aggiungi campo" + +#~ msgid "Actualizar Campo" +#~ msgstr "Aggiorna campo" + +#~ msgid "Crear Enlace" +#~ msgstr "Crea collegamento" + +#~ msgid "Crear Etiqueta" +#~ msgstr "Crea tag" + +#~ msgid "Actualizar Etiqueta" +#~ msgstr "Aggiorna Tag" + +#~ msgid "Actualizar Plugin" +#~ msgstr "Aggiorna Plugin" + +#~ msgid "Crear Cuenta" +#~ msgstr "Aggiungi Account" + +#~ msgid "Usuarios importados" +#~ msgstr "Utenti importati" + +#~ msgid "Solicitud" +#~ msgstr "Richiesta" + +#~ msgid "Acceso denegado" +#~ msgstr "Accesso negato" + +#~ msgid "Error al añadir las etiquetas de la cuenta" +#~ msgstr "Errore durante l'aggiunta di tag account" + +#~ msgid "Se ha producido una excepción" +#~ msgstr "Si è verificata un'eccezione" + +#~ msgid "Nueva Notificación" +#~ msgstr "Nuova notifica" + +#~ msgid "Grupos eliminados" +#~ msgstr "Gruppi eliminati" + +#~ msgid "Perfiles eliminados" +#~ msgstr "Profili eliminati" + +#~ msgid "Clientes eliminados" +#~ msgstr "Clienti eliminati" + +#~ msgid "Categorías eliminadas" +#~ msgstr "Categorie eliminate" + +#~ msgid "Autorizaciones eliminadas" +#~ msgstr "Autorizzazioni eliminate" + +#~ msgid "Campos eliminados" +#~ msgstr "Campi eliminati" + +#~ msgid "Enlaces eliminados" +#~ msgstr "Collegamenti cancellati" + +#~ msgid "Etiquetas eliminadas" +#~ msgstr "Tags eliminate" + +#~ msgid "Archivos eliminados" +#~ msgstr "Files eliminati" + +#~ msgid "Cuentas eliminadas" +#~ msgstr "Accounts eliminati" + +#~ msgid "Notificación creada" +#~ msgstr "Notifica creata" + +#~ msgid "Notificaciones eliminadas" +#~ msgstr "Notifica eliminata" + +#~ msgid "Usando clave temporal" +#~ msgstr "Utilizzo della chiave temporanea" + +#~ msgid "Clave temporal caducada" +#~ msgstr "Chiave temporanea scaduta" + +#~ msgid "Sesión" +#~ msgstr "Sessione" + +#~ msgid "Error al comprobar la base de datos" +#~ msgstr "Errore durante il controllo del database" + +#~ msgid "Intente de nuevo la instalación" +#~ msgstr "Prova di nuovo l'installazione" + +#~ msgid "Es necesario un componente" +#~ msgstr "Un componente è necessario" + +#~ msgid "Es necesario un tipo" +#~ msgstr "È necessario un tipo" + +#~ msgid "Es necesario un destinatario" +#~ msgstr "È richiesta una destinazione" + +#~ msgid "Error procesando línea" +#~ msgstr "Errore durante l'elaborazione della linea" + +#~ msgid "Cuentas importadas" +#~ msgstr "Account importati" + +#~ msgid "Archivo no encontrado" +#~ msgstr "File non trovato" + +#~ msgid "Grupo no encontrado" +#~ msgstr "Gruppo non trovato" + +#~ msgid "Notificación no encontrada" +#~ msgstr "Notifica non trovata" + +#~ msgid "Plugin no encontrado" +#~ msgstr "Plugin non trovato" + +#~ msgid "Perfil no encontrado" +#~ msgstr "Profile non trovato" + +#~ msgid "Enlace no encontrado" +#~ msgstr "Link non trovato" + +#~ msgid "Etiqueta no encontrada" +#~ msgstr "Tag non trovato" + +#~ msgid "Usuario no encontrado" +#~ msgstr "Utente non trovato" + +#~ msgid "Consulta en blanco" +#~ msgstr "Richiesta vuota" + +#~ msgid "Cuenta Privada Grupo" +#~ msgstr "Gruppo di account privato" + +#~ msgid "Privada Grupo" +#~ msgstr "Gruppo privato" + +#~ msgid "Sólo es necesaria para archivos XML de sysPass encriptados." +#~ msgstr "È necessario solo per i file XML sysPass crittografati." + +#~ msgid "" +#~ "Sólo es necesaria para archivos XML de sysPass con clave maestra distinta " +#~ "de la actual." +#~ msgstr "" +#~ "È necessario solo per i file XML sysPass con una password master diversa " +#~ "da quella corrente." + +#~ msgid "Sólo es necesario para archivos CSV." +#~ msgstr "È necessario solo per i file CSV." + +#, fuzzy +#~ msgid "" +#~ "\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave" +#~ "\";\"notas\"" +#~ msgstr "" +#~ "\"nome_account\";\"cliente\";\"categoria\";\"url\";\"utente\";\"password" +#~ "\";\"note\"" + +#~ msgid "Crear cuenta privada para grupo" +#~ msgstr "Crea un account privato per il gruppo" + +#~ msgid "Notificación global" +#~ msgstr "Notifica globale" + +#~ msgid "Global" +#~ msgstr "Globale" + +#~ msgid "No es posible iniciar una transacción" +#~ msgstr "Non è possibile iniziare una transazione" + +#~ msgid "No es posible finalizar una transacción" +#~ msgstr "Non è possibile terminare una transazione" + +#~ msgid "Clave Maestra %s" +#~ msgstr "Master Password %s" + +#~ msgid "" +#~ "Se ha generado una nueva clave para el acceso a sysPass y se solicitará " +#~ "en el siguiente inicio." +#~ msgstr "" +#~ "Una nuova password è stata generata per l'accesso a sysPass e sarà " +#~ "richiesta al prossimo avvio." + +#~ msgid "La nueva clave es: %s" +#~ msgstr "La nuova Master Password è: %s" + +#~ msgid "No olvide acceder lo antes posible para guardar los cambios." +#~ msgstr "" +#~ "Non dimenticare di accedere il prima possibile per salvare le modifiche." + +#~ msgid "Este proceso puede durar algo de tiempo. Desea continuar?" +#~ msgstr "Questo processo potrebbe richiedere del tempo. Vuoi continuare?" + +#~ msgid "Búsqueda" +#~ msgstr "Ricerca" + +#~ msgid "" +#~ "Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." +#~ msgstr "" +#~ "Invia un'email a tutti gli utenti o solo a quelli del gruppo selezionato." + +#~ msgid "Enviar correo" +#~ msgstr "Manda mail" + +#~ msgid "XML" +#~ msgstr "XML" + +#~ msgid "CSV" +#~ msgstr "CSV" + +#~ msgid "Cuenta no encontrada" +#~ msgstr "Account non trovato" + +#~ msgid "Hash de clave maestra actualizado" +#~ msgstr "Ha aggiornato l'hash della chiave principale" + +#~ msgid "Error al actualizar el hash de la clave maestra" +#~ msgstr "Impossibile aggiornare l'hash della password principale" + +#~ msgid "Usuarios eliminados" +#~ msgstr "Utenti eliminati" + +#~ msgid "Notificación actualizada" +#~ msgstr "Notifica aggiornata" + +#~ msgid "Restricción de integridad" +#~ msgstr "Vincolo di integrità" + +#~ msgid "Actualizar hash de clave maestra" +#~ msgstr "Aggiorna hash chiave principale" + +#~ msgid "Modificada" +#~ msgstr "Modificata" + +#~ msgid "Eliminada" +#~ msgstr "Rimossa" + +#~ msgid "Cuentas (H)" +#~ msgstr "Accounts (H)" + +#~ msgid "Clave de encriptación incorrecta" +#~ msgstr "Chiave di crittografia errata" + +#~ msgid "Devolver las cuentas en las que 'login' es propietario" +#~ msgstr "Restituisci i conti in cui \"login\" è il proprietario" + +#~ msgid "Devolver las cuentas con grupo principal 'group_name'" +#~ msgstr "Restituisci account con il gruppo 'group_name'" + +#~ msgid "Devolver las cuentas privadas del usuario actual" +#~ msgstr "Restituisce gli account privati ​​dell'utente corrente" + +#~ msgid "OP Cache" +#~ msgstr "OP Cache" + +#~ msgid "Código de seguridad incorrecto" +#~ msgstr "Codice di sicurezza errato" + +#~ msgid "Es necesario confirmar la actualización" +#~ msgstr "È necessario confermare l'aggiornamento" + +#~ msgid "En 5 segundos será redirigido al login" +#~ msgstr "In 5 secondi verrai reindirizzato per accedere" + +#~ msgid "Error al aplicar la actualización de la aplicación" +#~ msgstr "Errore durante l'applicazione dell'aggiornamento dell'applicazione" + +#~ msgid "Tamaño máximo de archivo en kilobytes" +#~ msgstr "Dimensione massima del file in kilobyte" + +#~ msgid "Actualización de Aplicación" +#~ msgstr "Aggiornamento dell'applicazione" + +#~ msgid "" +#~ "Se han encontrado elementos huérfanos. Por favor, modifique estos " +#~ "elementos o indique los IDs por defecto para los elementos huérfanos." +#~ msgstr "" +#~ "Sono stati trovati elementi orfani. Si prega di modificare questi " +#~ "elementi o indicare gli ID di default per gli elementi orfani." + +#~ msgid "Introducir un ID de usuario válido para cuentas" +#~ msgstr "Inserisci un ID utente valido per gli account" + +#~ msgid "Introducir un ID de categoría válido para cuentas" +#~ msgstr "Inserisci un ID di categoria valido per gli account" + +#, fuzzy +#~ msgid "Introducir un ID de cliente válido para cuentas" +#~ msgstr "Inserisci un ID cliente valido per gli account" + +#~ msgid "Introducir un ID de grupo válido para usuarios" +#~ msgstr "Inserisci un ID di gruppo valido per gli utenti" + +#~ msgid "Introducir un ID de perfil válido para usuarios" +#~ msgstr "Inserisci un ID profilo valido per gli utenti" + +#~ msgid "" +#~ "Esta actualización utiliza un nuevo esquema de encriptación, por lo que " +#~ "es necesario reencriptar los datos almacenados" +#~ msgstr "" +#~ "Questo aggiornamento utilizza un nuovo schema di crittografia, pertanto è " +#~ "necessario crittografare nuovamente i dati memorizzati" + +#~ msgid "" +#~ "Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." +#~ msgstr "" +#~ "Aggiornerai %s account. Questo processo potrebbe richiedere del tempo." + +#~ msgid "Para más información consulte: %s" +#~ msgstr "Per maggiori informazioni vedi: %s" + +#~ msgid "Introducir login de usuario válido" +#~ msgstr "Inserisci un accesso utente valido" + +#~ msgid "Intentos excedidos" +#~ msgstr "Numero massimo di tentativi superati" + +#~ msgid "Clave del token" +#~ msgstr "Token's Password" + +#~ msgid "Intentos excedidos (%d/%d)" +#~ msgstr "Numero massimo di tentativi superati (%d/%d)" + +#~ msgid "IP inválida" +#~ msgstr "Indirizzo IP non valido" + +#~ msgid "Token no encontrado" +#~ msgstr "Token non trovato" + +#~ msgid "Error al crear track" +#~ msgstr "Errore durante la creazione della traccia" + +#~ msgid "Error al eliminar track" +#~ msgstr "Errore durante l'eliminazione della traccia" + +#~ msgid "Error al actualizar track" +#~ msgstr "Errore durante l'aggiornamento della traccia" + +#~ msgid "Error al obtener track" +#~ msgstr "Errore nell'ottenere traccia" + +#~ msgid "Error al obtener tracks" +#~ msgstr "Errore durante il recupero delle tracce" + +#, fuzzy +#~ msgid "" +#~ "Los elementos exportados son cuentas, clientes, categorías y etiquetas." +#~ msgstr "Gli articoli esportati sono account, clienti, categorie e tag." + +#~ msgid "Si no se indican los IDs, se crearán nuevos elementos." +#~ msgstr "Se gli ID non vengono indicati, verranno creati nuovi elementi." + +#~ msgid "Esperando actualización de progreso ..." +#~ msgstr "In attesa dell'aggiornamento ..." + +#~ msgid "Actualizando IDs de cuentas" +#~ msgstr "Aggiornamento degli ID account" + +#~ msgid "Actualizando IDs de categorías" +#~ msgstr "Aggiornamento degli ID di categoria" + +#~ msgid "Actualizando IDs de clientes" +#~ msgstr "Aggiornamento degli ID cliente" + +#~ msgid "Actualizando IDs de grupos" +#~ msgstr "Aggiornamento degli ID di gruppo" + +#~ msgid "Actualizando IDs de perfil" +#~ msgstr "Aggiornamento degli ID profilo" + +#~ msgid "Actualizando IDs de usuarios" +#~ msgstr "Aggiornamento degli ID utente" + +#~ msgid "" +#~ "Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." +#~ msgstr "" +#~ "Fare i compiti Per favore, non chiudere la finestra / scheda del browser." + +#~ msgid "Incluir Letras" +#~ msgstr "Includi lettere" + +#~ msgid "Sesión Encriptada" +#~ msgstr "Sessione crittografata" + +#~ msgid "Indica si los datos de la sesión están encriptados en el servidor" +#~ msgstr "Indica se i dati della sessione sono crittografati sul server" + +#~ msgid "Sí" +#~ msgstr "Si" + +#~ msgid "No" +#~ msgstr "No" + +#~ msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." +#~ msgstr "Cookie disabilitati L'applicazione non funzionerà correttamente." + +#~ msgid "Portapapeles no soportado por el navegador." +#~ msgstr "Appunti non supportati dal browser." + +#~ msgid "Atributo Login" +#~ msgstr "Attributo login" + +#~ msgid "" +#~ "Define el atributo a utilizar para el login del usuario en la importación." +#~ msgstr "" +#~ "Definisce l'attributo da utilizzare per il login dell'utente " +#~ "nell'importazione." + +#~ msgid "" +#~ "Habilita el acceso a los usuarios que estén incluidos en los grupos " +#~ "secundarios." +#~ msgstr "Consente l'accesso agli utenti inclusi nei gruppi figlio." + +#~ msgid "" +#~ "Por defecto el usuario de un grupo secundario es permitido si el grupo " +#~ "secundario está establecido como el primario del usuario." +#~ msgstr "" +#~ "Per impostazione predefinita, l'utente di un gruppo secondario è " +#~ "consentito se il gruppo secondario è stabilito come primario dell'utente." + +#~ msgid "Acceso Grupos Secundarios" +#~ msgstr "Accesso ai gruppi secondari" + +#~ msgid "Encriptar los datos de la sesión de PHP." +#~ msgstr "Cripta i dati della sessione PHP." + +#~ msgid "" +#~ "Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que " +#~ "los datos almacenados no serán legibles." +#~ msgstr "" +#~ "Questa funzionalità aumenta la sicurezza delle sessioni PHP poiché i dati " +#~ "memorizzati non saranno leggibili." + +#~ msgid "Encriptar Sesión" +#~ msgstr "Cripta la sessione" + +#~ msgid "Atributo Nombre" +#~ msgstr "Attributo Nome" + +#~ msgid "" +#~ "Define el atributo a utilizar para el nombre del usuario en la " +#~ "importación." +#~ msgstr "" +#~ "Definisce l'attributo da utilizzare per il nome dell'utente " +#~ "nell'importazione." + +#~ msgid "Hay una versión más reciente del plugin {0} ({1})" +#~ msgstr "C'è una versione più recente del plugin {0} ({1})" + +#~ msgid "Versión de PHP requerida >= %s <= %s" +#~ msgstr "Required PHP version >= %s <= %s" + +#~ msgid "Actual: %s - Necesario: 750" +#~ msgstr "Current: %s - Needed: 750" + +#~ msgid "Acción no encontrada" +#~ msgstr "Action not found" + +#~ msgid "Contexto ya inicializado" +#~ msgstr "Context already initialized" + +#~ msgid "Contexto inválido" +#~ msgstr "Invalid context" + +#~ msgid "Contexto no inicializado" +#~ msgstr "Context not initialized" + +#~ msgid "Clase no válida para iconos" +#~ msgstr "Invalid icons class" + +#~ msgid "Tipo de filtro inválido" +#~ msgstr "Invalid filter type" + +#~ msgid "Tipo de objeto incorrecto" +#~ msgstr "Wrong object type" + +#~ msgid "Realizado por: %s (%s)" +#~ msgstr "Performed by: %s (%s)" + +#~ msgid "Dirección IP: %s" +#~ msgstr "IP Address: %s" + +#~ msgid "No es posible inicializar" +#~ msgstr "Unable to initialize" + +#~ msgid "Notificación" +#~ msgstr "Notification" + +#~ msgid "Error al eliminar los archivos" +#~ msgstr "Error while deleting the files" + +#~ msgid "Error al eliminar las cuentas" +#~ msgstr "Error while deleting the accounts" + +#~ msgid "Error al eliminar la categorías" +#~ msgstr "Error while deleting the categories" + +#~ msgid "Error al eliminar los clientes" +#~ msgstr "Error while deleting the clients" + +#~ msgid "Error al eliminar los campos personalizados" +#~ msgstr "Error while removing the custom fields" + +#~ msgid "Error al crear el tipo de campo" +#~ msgstr "Error while creating the field type" + +#~ msgid "Error al actualizar el tipo de campo" +#~ msgstr "Error while updating the field type" + +#~ msgid "Error al eliminar el tipo de campo" +#~ msgstr "Error while deleting the field type" + +#~ msgid "Error al eliminar las notificaciones" +#~ msgstr "Error while deleting the notifications" + +#~ msgid "El enlace no existe" +#~ msgstr "The link does not exist" + +#~ msgid "Error al eliminar etiquetas" +#~ msgstr "Error while removing the tags" + +#~ msgid "Error al eliminar los usuarios" +#~ msgstr "Error while deleting the users" + +#~ msgid "El usuario no existe" +#~ msgstr "The user does not exist" + +#~ msgid "Error al eliminar los perfiles" +#~ msgstr "Error while removing the profiles" + +#~ msgid "Cuentas actualizadas: %d / %d" +#~ msgstr "Accounts updated: %d / %d" + +#~ msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" +#~ msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" + +#~ msgid "Error al eliminar archivos" +#~ msgstr "Error while deleting the files" + +#~ msgid "Fomato incorrecto" +#~ msgstr "Invalid format" + +#~ msgid "Id de etiqueta" +#~ msgstr "Tag Id" + +#~ msgid "Error al eliminar tokens" +#~ msgstr "Error while removing the tokens" + +#~ msgid "Copiando base de datos" +#~ msgstr "Copying database" + +#~ msgid "Copiando aplicación" +#~ msgstr "Copying application" + +#~ msgid "Parámetro no encontrado (%s)" +#~ msgstr "Parameter not found (%s)" + +#~ msgid "Rollback" +#~ msgstr "Rollback" + +#~ msgid "Error al comprobar clave temporal" +#~ msgstr "Error while checking the temporary password" + +#~ msgid "Campo no encontrado" +#~ msgstr "Field not found" + +#~ msgid "Error al eliminar los campos" +#~ msgstr "Error while deleting the fields" + +#~ msgid "Exportando categorías" +#~ msgstr "Exporting categories" + +#~ msgid "Exportando clientes" +#~ msgstr "Exporting clients" + +#~ msgid "Exportando etiquetas" +#~ msgstr "Exporting tags" + +#~ msgid "Exportando cuentas" +#~ msgstr "Exporting accounts" + +#~ msgid "Cuenta importada" +#~ msgstr "Account imported" + +#~ msgid "Importación XML KeePass" +#~ msgstr "KeePass XML Import" + +#~ msgid "Categoría importada" +#~ msgstr "Category imported" + +#~ msgid "Importación XML sysPass" +#~ msgstr "sysPass XML Import" + +#~ msgid "Datos desencriptados" +#~ msgstr "Data unencrypted" + +#~ msgid "Cliente importado" +#~ msgstr "Client imported" + +#~ msgid "Etiqueta importada" +#~ msgstr "Tag imported" + +#~ msgid "Formato no detectado" +#~ msgstr "Format not detected" + +#~ msgid "Not implemented" +#~ msgstr "Not implemented" + +#~ msgid "No es posible comprobar el usuario de sysPass (%s)" +#~ msgstr "Unable to check the sysPass user (%s)" + +#~ msgid "Error al crear la BBDD ('%s')" +#~ msgstr "Error while creating the DB ('%s')" + +#~ msgid "Importado desde LDAP" +#~ msgstr "Imported from LDAP" + +#~ msgid "Prueba de correo" +#~ msgstr "Mail test" + +#~ msgid "" +#~ "Esto es una prueba de correo para verificar el correcto funcionamiento de " +#~ "la configuración." +#~ msgstr "" +#~ "This is a test email in order to verify that the configuration is working " +#~ "right." + +#~ msgid "Error al eliminar los enlaces" +#~ msgstr "Error while removing the links" + +#~ msgid "No es posible crear archivo de bloqueo" +#~ msgstr "Unable to create the lock file" + +#~ msgid "Segundos" +#~ msgstr "Seconds" + +#~ msgid "Actualizar Aplicación" +#~ msgstr "Update Application" + +#~ msgid "Actualización de campos personalizados" +#~ msgstr "Custom fields update" + +#~ msgid "Campo" +#~ msgstr "Field" + +#~ msgid "Actualización de enlaces públicos" +#~ msgstr "Public links update" + +#~ msgid "Enlace" +#~ msgstr "Link" + +#~ msgid "Error al eliminar los grupos" +#~ msgstr "Error while deleting the groups" + +#~ msgid "No es posible leer el archivo (%s)" +#~ msgstr "Unable to read/write the file (%s)" + +#~ msgid "Error al leer datos del archivo (%s)" +#~ msgstr "Error while reading file data (%s)" + +#~ msgid "No es posible crear el directorio (%s)" +#~ msgstr "Unable to create the directory (%s)" + +#~ msgid "No es posible escribir en el archivo (%s)" +#~ msgstr "Unable to read/write the file (%s)" + +#~ msgid "No es posible abrir el archivo (%s)" +#~ msgstr "Unable to open the file (%s)" + +#~ msgid "Error al eliminar el archivo (%s)" +#~ msgstr "Error while deleting the file (%s)" + +#~ msgid "No es posible leer/escribir el archivo (%s)" +#~ msgstr "Unable to read/write the file (%s)" + +#~ msgid "Error al descomprimir datos del archivo (%s)" +#~ msgstr "Error while decompressing the file data (%s)" + +#~ msgid "Error al obtener los datos" +#~ msgstr "Error while retrieving the data" + +#~ msgid "Error al comprimir datos del archivo (%s)" +#~ msgstr "Error while compressing the file data (%s)" + +#~ msgid "Error al escribir datos en el archivo (%s)" +#~ msgstr "Error while writing data to file (%s)" + +#~ msgid "Datos no cargados" +#~ msgstr "Data not loaded" + +#~ msgid "No es posible cerrar el archivo (%s)" +#~ msgstr "Unable to close the file (%s)" + +#~ msgid "Cuenta visualizada" +#~ msgstr "Account displayed" + +#~ msgid "Clave visualizada" +#~ msgstr "Password viewed" + +#~ msgid "Exportación de sysPass en XML" +#~ msgstr "sysPass XML export" + +#~ msgid "Etiqueta" +#~ msgstr "Tag" + +#~ msgid "Es necesario actualizar" +#~ msgstr "Updating needed" + +#~ msgid "HTTPS" +#~ msgstr "HTTPS" + +#~ msgid "Clave copiada" +#~ msgstr "Password copied" + +#~ msgid "Archivo visualizado" +#~ msgstr "File viewed" + +#~ msgid "Archivo descargado" +#~ msgstr "File downloaded" + +#~ msgid "Extensión: %s" +#~ msgstr "Extension: %s" + +#~ msgid "Archivo: %s" +#~ msgstr "File: %s" + +#~ msgid "Máximo tamaño: %s" +#~ msgstr "Maximum size: %s" + +#~ msgid "Máximo tamaño: %d KB" +#~ msgstr "Maximum size: %d KB" + +#~ msgid "Archivo Eliminado" +#~ msgstr "File Deleted" + +#~ msgid "Autorización" +#~ msgstr "Authorization" + +#~ msgid "Autorización visualizada" +#~ msgstr "Authorization viewed" + +#~ msgid "Archivos habilitados" +#~ msgstr "Files enabled" + +#~ msgid "Archivos deshabilitados" +#~ msgstr "Files disabled" + +#~ msgid "Enlaces públicos habilitados" +#~ msgstr "Public links enabled" + +#~ msgid "Enlaces públicos deshabilitados" +#~ msgstr "Public links disabled" + +#~ msgid "Esta clave estará activa hasta: %s" +#~ msgstr "This password will be valid until: %s" + +#~ msgid "Email enviado" +#~ msgstr "Email sent" + +#~ msgid "Error al enviar email" +#~ msgstr "Error while sending the email" + +#~ msgid "Syslog remoto habilitado" +#~ msgstr "Remote syslog enabled" + +#~ msgid "Auth Basic habilitada" +#~ msgstr "Auth Basic enabled" + +#~ msgid "Auth Basic deshabiltada" +#~ msgstr "Auth Basic disabled" + +#~ msgid "No se importaron cuentas" +#~ msgstr "No accounts were imported" + +#~ msgid "Parámetros de LDAP incorrectos" +#~ msgstr "Wrong LDAP parameters" + +#~ msgid "Importación LDAP" +#~ msgstr "LDAP Import" + +#~ msgid "Usuarios importados: %d / %d" +#~ msgstr "Imported users: %d / %d" + +#~ msgid "Errores: %d" +#~ msgstr "Errors: %d" + +#~ msgid "Compruebe su buzón de correo" +#~ msgstr "Please, check your inbox" + +#~ msgid "DokuWiki habilitada" +#~ msgstr "DokuWiki enabled" + +#~ msgid "Ver Campo" +#~ msgstr "View Field" + +#~ msgid "Nuevo Enlace" +#~ msgstr "New Link" + +#~ msgid "No disponible" +#~ msgstr "Unavailable" + +#~ msgid "Refrescar" +#~ msgstr "Refresh" + +#~ msgid "Sólo Admins" +#~ msgstr "Only Admins" + +#~ msgid "Nuevo Enlace Público" +#~ msgstr "New Public Link" + +#~ msgid "Editar Enlace Público" +#~ msgstr "Edit Public Link" + +#~ msgid "Versión no disponible" +#~ msgstr "Version unavailable" + +#~ msgid "Notificaciones no disponibles" +#~ msgstr "Notifications not available" + +#~ msgid "Datos incorrectos" +#~ msgstr "Wrong data" + +#~ msgid "No es posible recuperar la clave" +#~ msgstr "Unable to reset the password" + +#~ msgid "Es necesario una cuenta" +#~ msgstr "An account is needed" + +#~ msgid "Realizando auto-login" +#~ msgstr "Performing auto-login" + +#~ msgid "Abrir enlace a: %s" +#~ msgstr "Open link to: %s" + +#~ msgid "Cuenta Privada (Grupo)" +#~ msgstr "Private Account (Group)" + +#~ msgid "Notes" +#~ msgstr "Notes" + +#~ msgid "Usar Auth Basic" +#~ msgstr "Use Auth Basic" + +#~ msgid "Usar auto-login con Auth Basic" +#~ msgstr "Use auto-login through Auth Basic" + +#~ msgid "Dominio" +#~ msgstr "Domain" + +#~ msgid "" +#~ "El dominio será añadido al nombre de usuario de sysPass para comprobarlo " +#~ "con el de Auth Basic." +#~ msgstr "" +#~ "The domain will be added to the sysPass user name for checking against " +#~ "the Auth Basic one." + +#~ msgid "Nombre de dominio" +#~ msgstr "Domain name" + +#~ msgid "" +#~ "Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." +#~ msgstr "Sets the default users group for newly SSO users" + +#~ msgid "" +#~ "Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." +#~ msgstr "Sets the default profile for the newly created SSO users." + +#~ msgid "Importación" +#~ msgstr "Import" + +#~ msgid "Importar Grupos" +#~ msgstr "Import Groups" + +#~ msgid "Atributo Nombre Grupo" +#~ msgstr "Group Name Attribute" + +#~ msgid "" +#~ "Define el atributo a utilizar para el nombre del grupo en la importación." +#~ msgstr "Defines the attribute for the user group name when importing." + +#~ msgid "Filtro" +#~ msgstr "Filter" + +#~ msgid "Filtro para importar usuarios o grupos de LDAP." +#~ msgstr "Filter for importing LDAP users or groups." + +#~ msgid "Destinatarios" +#~ msgstr "Recipients" + +#~ msgid "Indica si el cliente es visible para todos los usuarios." +#~ msgstr "Sets whether the client is visible by all users" + +#~ msgid "" +#~ "Por defecto los clientes asignados a cuentas sólo son visibles para los " +#~ "usuarios con acceso a las cuentas." +#~ msgstr "" +#~ "By default, the clients assigned to accounts only will be visible to " +#~ "users who are granted to access to the accounts." + +#~ msgid "URL" +#~ msgstr "URL" + +#~ msgid "Login SSO" +#~ msgstr "SSO Login " + +#~ msgid "Login de inicio de sesión con SSO" +#~ msgstr "Session login with SSO" + +#~ msgid "Sólo para administradores de la aplicación" +#~ msgstr "Only for application administrators" + +#~ msgid "Solo Admins" +#~ msgstr "Only Admins" + +#~ msgid "Para iniciar la actualización introduzca el código de seguridad" +#~ msgstr "Please enter the security code to start the upgrade" + +#~ msgid "No es posible cambiar el valor de la clave" +#~ msgstr "Unable to change password value" + +#~ msgid "Filtro incorrecto" +#~ msgstr "Wrong filter" + +#~ msgid "El campo personalizado no existe" +#~ msgstr "Custom field not found" + +#~ msgid "Error al eliminar los plugins" +#~ msgstr "Error while deleting the plugins" + +#~ msgid "Clave maestra no establecida" +#~ msgstr "Master password not set" + +#~ msgid "Error al eliminar las categorías" +#~ msgstr "Error while deleting categories" + +#~ msgid "No es posible restaurar la configuración" +#~ msgstr "Unable to restore configuration" + +#~ msgid "Tipo de campo no encontrado" +#~ msgstr "Field type not found" + +#~ msgid "Fallo en la verificación del hash de integridad" +#~ msgstr "Error while checking integrity hash" + +#~ msgid "Error al crear el usuario 'admin'" +#~ msgstr "Error while creating 'admin' user" + +#~ msgid "Error al seleccionar la BBDD '%s' (%s)" +#~ msgstr "Error while selecting '%s' database (%s)" + +#~ msgid "Servicio de correo no disponible" +#~ msgstr "Mail service unavailable" + +#~ msgid "Error ol obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master pass from context" + +#~ msgid "Error ol establecer la clave maestra en el contexto" +#~ msgstr "Error while setting master password in context" + +#~ msgid "Track no encontrado" +#~ msgstr "Track not found" + +#~ msgid "Actualización de autorizaciones API" +#~ msgstr "API authorizations update" + +#~ msgid "No es posible leer desde el archivo (%s)" +#~ msgstr "Unable to read from file (%s)" + +#~ msgid "No es posible escribir el archivo (%s)" +#~ msgstr "Unable to write in file (%s)" + +#~ msgid "Archivo no encontrado (%s)" +#~ msgstr "File not found (%s)" + +#~ msgid "No es posible eliminar el archivo (%s)" +#~ msgstr "Unable to delete file (%s)" + +#~ msgid "El nodo XML no existe" +#~ msgstr "The XML node does not exist" + +#~ msgid "Imagen no válida" +#~ msgstr "Invalid image" + +#~ msgid "Verificación de datos exportados finalizada" +#~ msgstr "Verification of exported data finished" + +#~ msgid "Encriptado" +#~ msgstr "Encrypted" + +#~ msgid "Error al actualizar los datos del campo personalizado" +#~ msgstr "Error while updating custom field's data" + +#~ msgid "Enlace Directo" +#~ msgstr "Direct Link" + +#~ msgid "Parámetros especiales" +#~ msgstr "Special parameters" + +#~ msgid "" +#~ "Es posible utilizar uno o varios parámetros especiales separados por " +#~ "espacios" +#~ msgstr "" +#~ "You could use either one or several special parameters separated by blank " +#~ "spaces" + +#~ msgid "Devolver la cuenta con ID" +#~ msgstr "Returns the account for the given ID" + +#~ msgid "Operador para los parámetros especiales" +#~ msgstr "Operator for special parameters" + +#~ msgid "Los datos serán encriptados al guardar" +#~ msgstr "Data will be encrypted after saving" + +#~ msgid "Los datos serán desencriptados al guardar" +#~ msgstr "Data will be unencrypted after saving" + +#~ msgid "Caducidad clave cuentas" +#~ msgstr "Accounts password expiry" + +#~ msgid "Habilita la caducidad de la clave de cuentas." +#~ msgstr "Enables the accounts password expiry date." + +#~ msgid "Tiempo caducidad clave" +#~ msgstr "Password expiry time" + +#~ msgid "Número de días para la caducidad de la clave de cuenta." +#~ msgstr "Number of days for the account expiry date." + +#~ msgid "Tiempo caducidad (días)" +#~ msgstr "Expire time (days)" + +#~ msgid "" +#~ "Confirmar el cambio de clave maestra después de haber leído las " +#~ "advertencias anteriores." +#~ msgstr "" +#~ "Confirm the master password change after you have been read all the above " +#~ "warnings." + +#~ msgid "Usar Auth Basic para autorizar los accesos a la aplicación." +#~ msgstr "Use Auth Basic for authorizing the accesses to the application" + +#~ msgid "Usar Auth Basic SSO" +#~ msgstr "Use Auth Basic SSO" + +#~ msgid "Usar auto-login con Auth Basic." +#~ msgstr "Use auto-login through Auth Basic" + +#~ msgid "Usar proxy para comprobación de actualizaciones y notificaciones." +#~ msgstr "Use a proxy server for checking out for updates and notifications." + +#~ msgid "Usado en" +#~ msgstr "Used in" + +#~ msgid "(*) Incluido en grupo" +#~ msgstr "(*) Listed in group" + +#~ msgid "La extensión '%s' no está disponible" +#~ msgstr "The '%s' extension is unavailable" + +#~ msgid "Error al obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master password from context" + +#~ msgid "Esta extensión es necesaria para mostrar las claves como imágenes" +#~ msgstr "This extension is needed to display passwords as images" + +#~ msgid "" +#~ "Esta extensión es necesaria para generar los archivos de copia de " +#~ "seguridad de la aplicación" +#~ msgstr "This extension is needed to build the application's backup files" + +#~ msgid "" +#~ "Esta extensión es necesaria comprobar las actualizaciones y notificaciones" +#~ msgstr "This extension is needed to check for sysPass updates and notices" + +#~ msgid "Extensiones no disponibles" +#~ msgstr "Unavailable extensions" + +#~ msgid "Esta extensión es necesaria conectar con el servidor de LDAP" +#~ msgstr "This extension is needed to connect to the LDAP server" + +#~ msgid "Esta extensión es necesaria conectar con DokuWiki" +#~ msgstr "This extension is needed to connect with DokuWiki" + +#~ msgid "Nuevo CLiente" +#~ msgstr "New Client" + +#~ msgid "" +#~ "Si está importando un archivo exportado desde el mismo origen, los datos " +#~ "pueden estar comprometidos." +#~ msgstr "" +#~ "If you are importing an exported file from the same origin, the data " +#~ "could be compromised." + +#~ msgid "El archivo de actualización no contiene datos" +#~ msgstr "The update file does not contain data" + +#~ msgid "Categoría visualizada" +#~ msgstr "Category displayed" + +#~ msgid "Cliente visualizado" +#~ msgstr "Client displayed" + +#~ msgid "Ruta" +#~ msgstr "Path" + +#~ msgid "Array con Ids de etiquetas" +#~ msgstr "Array with tags id" + +#~ msgid "Array con Ids de etiquetas a filtrar" +#~ msgstr "Array with tags id for filtering" + +#~ msgid "Operador de filtrado" +#~ msgstr "Filtering operator" + +#~ msgid "Etiqueta visualizada" +#~ msgstr "Tag displayed" + +#~ msgid "No hay archivos asociados a la cuenta" +#~ msgstr "There are no linked files for the account" + +#~ msgid "Error al crear permiso" +#~ msgstr "Error while creating the permission" + +#~ msgid "Error al actualizar permiso" +#~ msgstr "Error while updating the permission" + +#~ msgid "Error al eliminar permiso" +#~ msgstr "Error while removing the permission" + +#~ msgid "Error al eliminar los permisos" +#~ msgstr "Error while removing the permissions" + +#~ msgid "Permiso no encontrada" +#~ msgstr "Permission not found" + +#~ msgid "Ver Permiso" +#~ msgstr "View Permission" + +#~ msgid "Nuevo Permiso" +#~ msgstr "New Permission" + +#~ msgid "Editar Permiso" +#~ msgstr "Edit Permission" + +#~ msgid "Permisos eliminados" +#~ msgstr "Permissions deleted" + +#~ msgid "Permiso eliminado" +#~ msgstr "Permission deleted" + +#~ msgid "Permiso creado" +#~ msgstr "Permission added" + +#~ msgid "Permiso actualizado" +#~ msgstr "Permission updated" + +#~ msgid "Permisos por Defecto" +#~ msgstr "Default Permissions" + +#~ msgid "Prioridad" +#~ msgstr "Priority" + +#~ msgid "Forzado" +#~ msgstr "Forced" + +#~ msgid "Buscar Permiso" +#~ msgstr "Search for Permission" + +#~ msgid "Eliminar Permiso" +#~ msgstr "Delete Permission" + +#~ msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" +#~ msgstr "An element of type user, group or profile need to be set" + +#~ msgid "No hay permisos definidos" +#~ msgstr "There aren't any defined permissions" + +#~ msgid "" +#~ "Prioridad de asignación en caso de coincidir con otros permisos asignados " +#~ "por usuario, grupo o perfil." +#~ msgstr "" +#~ "Assignment priority if permissions match with others assigned by user, " +#~ "group or profile." + +#~ msgid "Prioridad de asignación" +#~ msgstr "Assignment Priority" + +#~ msgid "" +#~ "Indica si los permisos serán forzados al crear o modificar la cuenta." +#~ msgstr "" +#~ "Enforces the permissions to be set either on creating or updating an " +#~ "account ." + +#~ msgid "Los permisos serán añadidos a los existentes." +#~ msgstr "Permissions will be merged with the existing ones." + +#~ msgid "Gestión Permisos" +#~ msgstr "Permissions Management" + +#~ msgid "Es necesaria una clave con al menos %d caracteres" +#~ msgstr "Password needs to be %d characters long" + +#~ msgid "La clave no cumple los carácteres requeridos" +#~ msgstr "Password does not contain the required characters" + +#~ msgid "Es necesario que la clave contenga letras" +#~ msgstr "Password needs to contain letters" + +#~ msgid "Es necesario que la clave contenga minúsculas" +#~ msgstr "Password needs to contain lower case letters" + +#~ msgid "Es necesario que la clave contenga mayúsculas" +#~ msgstr "Password needs to contain upper case letters" + +#~ msgid "Es necesario que la clave contenga números" +#~ msgstr "Password needs to contain numbers" + +#~ msgid "Es necesario que la clave contenga símbolos" +#~ msgstr "Password needs to contain symbols" + +#~ msgid "Error al desconectar del servidor de LDAP" +#~ msgstr "Error while disconnecting from LDAP server" + +#~ msgid "Valor no encontrada" +#~ msgstr "Value not found" + +#~ msgid "Error al eliminar los valores" +#~ msgstr "Error while deleting the values" + +#~ msgid "Dirección IP no establecida" +#~ msgstr "IP address not set" + +#~ msgid "Valores Predeterminados" +#~ msgstr "Preset Values" + +#~ msgid "Valor de Permiso" +#~ msgstr "Permission Preset" + +#~ msgid "Nuevo Valor de Permiso" +#~ msgstr "New Permission Preset" + +#~ msgid "Valor de Cuenta Privada" +#~ msgstr "Private Account Preset" + +#~ msgid "Nuevo Valor de Cuenta Privada" +#~ msgstr "New Private Account Preset" + +#~ msgid "Valor de Timeout de Sesión" +#~ msgstr "Session Timeout Preset" + +#~ msgid "Nuevo Valor de Timeout de Sesión" +#~ msgstr "New Session Timeout Preset" + +#~ msgid "Valor de Clave de Cuentas" +#~ msgstr "Account Password Preset" + +#~ msgid "Nuevo Valor de Clave de Cuentas" +#~ msgstr "New Account Password Preset" + +#~ msgid "Valores eliminados" +#~ msgstr "Values deleted" + +#~ msgid "Valor eliminado" +#~ msgstr "Value deleted" + +#~ msgid "Valor creado" +#~ msgstr "Value created" + +#~ msgid "Valor actualizado" +#~ msgstr "Value updated" + +#~ msgid "Tipo de valor no definido o incorrecto" +#~ msgstr "Value type not set or incorrect" + +#~ msgid "Expresión regular inválida" +#~ msgstr "Invalid regular expression" + +#~ msgid "Habilita la conexión mediante TLS." +#~ msgstr "Enables the connection over TLS" + +#~ msgid "Puntuación" +#~ msgstr "Score" + +#~ msgid "Expresión Regular" +#~ msgstr "Regular Expression" + +#~ msgid "Incluir Minúsculas" +#~ msgstr "Include Lowercase" + +#~ msgid "Las cuentas sólo serán visibles por el usuario." +#~ msgstr "Accounts will be only visible by the user." + +#~ msgid "Los administradores no podrán acceder a las cuentas." +#~ msgstr "Administrators won't be able to display the accounts." + +#~ msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." +#~ msgstr "Accounts will be only visible by the user and his/her main group." + +#~ msgid "Dirección IP" +#~ msgstr "IP Address" + +#~ msgid "Timeout" +#~ msgstr "Timeout" + +#~ msgid "" +#~ "Prioridad de asignación en caso de coincidir con otros valores asignados " +#~ "por usuario, grupo o perfil." +#~ msgstr "" +#~ "Assignment priority if values match with others assigned by user, group " +#~ "or profile." + +#~ msgid "" +#~ "Indica si los valores serán forzados al crear o modificar los elementos." +#~ msgstr "" +#~ "Enforces the values to be set either on creating or updating an item." + +#~ msgid "Los valores serán añadidos a los existentes." +#~ msgstr "Values will be merged with the existing ones." + +#~ msgid "Valores por Defecto" +#~ msgstr "Default Values" + +#~ msgid "Gestión de Valores por Defecto" +#~ msgstr "Default Values Management" + +#~ msgid "Error al vaciar tracks" +#~ msgstr "Error while clearing tracks out" + +#~ msgid "Tracks" +#~ msgstr "Tracks" + +#~ msgid "Fecha Desbloqueo" +#~ msgstr "Date Unlocked" + +#~ msgid "Track desbloqueado" +#~ msgstr "Track unlocked" + +#~ msgid "Tracks limpiados" +#~ msgstr "Tracks cleared out" + +#~ msgid "Vaciar los tracks?" +#~ msgstr "Clear tracks out?" + +#~ msgid "Id de grupo" +#~ msgstr "Group Id" + +#~ msgid "Array con Ids de usuarios" +#~ msgstr "Array with users Id" + +#~ msgid "Grupo visualizado" +#~ msgstr "Group viewed" + +#~ msgid "Propietario" +#~ msgstr "Owner" + +#~ msgid "Buscar cuentas por nombre de cliente" +#~ msgstr "Search for accounts by client name" + +#~ msgid "Buscar cuentas por nombre de categoría" +#~ msgstr "Search for accounts by category name" + +#~ msgid "Eliminar Historial" +#~ msgstr "Delete History" + +#~ msgid "Versión de plugin no compatible (%s)" +#~ msgstr "Plugin version not compatible (%s)" + +#~ msgid "Plugin disponible" +#~ msgstr "Plugin available" + +#~ msgid "Plugin no disponible" +#~ msgstr "Plugin unavailable" + +#~ msgid "Plugin cargado" +#~ msgstr "Plugin loaded" + +#~ msgid "Hay notificaciones pendientes: %d" +#~ msgstr "There are pending notifications: %d" + +#~ msgid "Notificaciones In-App" +#~ msgstr "In-App Notifications" + +#~ msgid "Habilita la consulta de notificaciones activas In-App." +#~ msgstr "Enables the active In-App notifications polling" + +#~ msgid "Tasa de descarga" +#~ msgstr "Download rate" diff --git a/app/locales/nl_NL/LC_MESSAGES/messages.mo b/app/locales/nl_NL/LC_MESSAGES/messages.mo index 6181a32d859feb2eb536d835123c112605e5266a..7d65d1a823d618af9a1233841dc8bd2af67b59a6 100644 GIT binary patch delta 21863 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 literal 101200 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\n" "Language-Team: nlmaca\n" @@ -19,1582 +19,280 @@ msgstr "" "X-Poedit-SearchPath-1: ../../../../lib\n" "X-Poedit-SearchPath-2: ../../../config\n" -#: ../../../modules/web/Controllers/AccountFileController.php:161 -msgid "CONSULTA INVÁLIDA" -msgstr "ONGELDIGE QUERY" +#: ../../../../lib/SP/Bootstrap.php:278 +#, php-format +msgid "Versión de PHP requerida >= %s <= %s" +msgstr "Vereiste PHP versie >= %s <= %s" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:64 -msgid "La sesión no se ha iniciado o ha caducado" -msgstr "Sessie niet gestart of verlopen" +#: ../../../../lib/SP/Config/ConfigUtil.php:111 +#, php-format +msgid "Actual: %s - Necesario: 750" +msgstr "Huidig: %s - Vereist: 750" -#: ../../../modules/web/Forms/AccountForm.php:171 -msgid "Es necesario un nombre de cuenta" -msgstr "Een accountnaam is vereist" +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +msgid "Error interno" +msgstr "Interne fout" -#: ../../../modules/web/Forms/AccountForm.php:175 -#: ../../../modules/web/Forms/ClientForm.php:84 +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +msgid "No se puede usar el módulo de encriptación" +msgstr "De Crypto module kan niet geladen worden" + +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 #, fuzzy -msgid "Es necesario un nombre de cliente" -msgstr "Een klantennaam is vereist" +msgid "Error al generar datos cifrados" +msgstr "Fout bij het genereren van de versleutelde data" -#: ../../../modules/web/Forms/AccountForm.php:161 -#, fuzzy -msgid "Es necesario un usuario" -msgstr "Een gebruikersnaam is vereist" +#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 +#: ../../../../lib/SP/Mvc/View/Template.php:127 +#, php-format +msgid "No es posible obtener la plantilla \"%s\" : %s" +msgstr "Niet mogelijk om \"%s\" template: %s op te halen" -#: ../../../modules/web/Forms/AccountForm.php:131 -msgid "Es necesaria una clave" -msgstr "Een sleutel is vereist" +#: ../../../../lib/SP/Http/Address.php:49 +#: ../../../../lib/SP/Http/Address.php:68 +msgid "IP inválida" +msgstr "Ongeldig IP" -#: ../../../modules/web/Forms/AccountForm.php:179 -msgid "Es necesario una categoría" -msgstr "Een categorie is vereist" +#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 +#, php-format +msgid "Es necesaria una clave con al menos %d caracteres" +msgstr "Password needs to be %d characters long" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:114 -msgid "Acción Inválida" -msgstr "Ongeldige actie" +#: ../../../../lib/SP/Mvc/View/Template.php:302 +#: ../../../../lib/SP/Mvc/View/Template.php:366 +#, php-format +msgid "No es posible obtener la variable \"%s\"" +msgstr "Niet mogelijk om \"%s\" variable op te halen" -#: ../../../modules/web/Controllers/ConfigBackupController.php:86 -#: ../../../modules/web/Controllers/UserPassResetController.php:173 -#: ../../../modules/web/Forms/AccountForm.php:135 -#: ../../../modules/web/Forms/UserForm.php:161 -msgid "Las claves no coinciden" -msgstr "De wachtwoorden zijn niet gelijk" +#: ../../../../lib/SP/Mvc/View/Template.php:335 +#, php-format +msgid "No es posible destruir la variable \"%s\"" +msgstr "Niet mogelijk om de \"%s\" variabele terug te zetten" -#: ../../../modules/api/Controllers/AccountController.php:184 -#: ../../../modules/api/Controllers/AccountController.php:190 -#: ../../../modules/web/Controllers/AccountController.php:718 -#: ../../../modules/web/Controllers/AccountController.php:729 -msgid "Cuenta creada" -msgstr "Account toegevoegd" +#: ../../../../lib/SP/Mvc/View/Template.php:356 +msgid "La plantilla no contiene archivos" +msgstr "De template bevat geen bestanden" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:200 -msgid "Error al crear la cuenta" -msgstr "Fout bij account aanmaken" +#: ../../../../lib/SP/Plugin/PluginManager.php:170 +#, php-format +msgid "Versión de plugin no compatible (%s)" +msgstr "Plugin version not compatible (%s)" -#: ../../../modules/web/Controllers/ConfigLdapController.php:95 -#: ../../../modules/web/Controllers/ConfigMailController.php:102 -#: ../../../config/strings.js.inc:80 -msgid "Sin cambios" -msgstr "Geen wijzigingen" +#: ../../../../lib/SP/Plugin/PluginManager.php:192 +#, php-format +msgid "No es posible cargar el plugin \"%s\"" +msgstr "Fout bij het laden van de plugin \"%s\"" -#: ../../../modules/api/Controllers/AccountController.php:234 -#: ../../../modules/api/Controllers/AccountController.php:240 -#: ../../../modules/web/Controllers/AccountController.php:763 -#: ../../../modules/web/Controllers/AccountController.php:774 -msgid "Cuenta actualizada" -msgstr "Account bijgewerkt" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 +#, php-format +msgid "Realizado por: %s (%s)" +msgstr "Uitgevoerd door: %s (%s)" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:382 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:431 -msgid "Error al modificar la cuenta" -msgstr "Error bij account bijwerken" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 +#, fuzzy, php-format +msgid "Dirección IP: %s" +msgstr "IP Adres /%" -#: ../../../modules/api/Controllers/AccountController.php:309 -#: ../../../modules/api/Controllers/AccountController.php:315 -#: ../../../modules/web/Controllers/AccountController.php:893 -#: ../../../modules/web/Controllers/AccountController.php:898 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:110 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:115 -#: ../../../modules/web/Controllers/AccountManagerController.php:145 -#: ../../../modules/web/Controllers/AccountManagerController.php:150 -#, fuzzy -msgid "Cuenta eliminada" -msgstr "Account verwijderd" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:162 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:321 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:192 -msgid "Error al eliminar la cuenta" -msgstr "Error bij account verwijderen" - -#: ../../../modules/api/Controllers/AccountController.php:138 -#: ../../../modules/api/Controllers/AccountController.php:144 -#: ../../../modules/web/Controllers/AccountController.php:804 -#: ../../../modules/web/Controllers/AccountController.php:815 -#: ../../../modules/web/Controllers/UserController.php:411 -#: ../../../modules/web/Controllers/UserController.php:415 -#: ../../../modules/web/Controllers/UserPassResetController.php:186 -#: ../../../modules/web/Controllers/UserPassResetController.php:190 -msgid "Clave actualizada" -msgstr "Wachtwoord bijgewerkt" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:436 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:235 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:260 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:233 -msgid "Error al actualizar la clave" -msgstr "Fout bij wachtwoord updaten" - -#: ../../../modules/web/Controllers/AccountController.php:843 -#: ../../../modules/web/Controllers/AccountController.php:854 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:145 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:150 -msgid "Cuenta restaurada" -msgstr "Account hersteld" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:301 -#: ../../../../lib/SP/Services/Account/AccountService.php:582 -msgid "Error al restaurar cuenta" -msgstr "Fout bij herstellen account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 -#: ../../../config/actions.xml:571 -msgid "Ver Usuario" -msgstr "Bekijk Gebruiker" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 -#: ../../../config/actions.xml:583 -msgid "Editar Usuario" -msgstr "Wijzig Gebruiker" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 -#: ../../../config/actions.xml:577 -msgid "Nuevo Usuario" -msgstr "Nieuwe Gebruiker" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 -#: ../../../config/actions.xml:607 -msgid "Ver Grupo" -msgstr "Bekijk Groep" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 -#: ../../../config/actions.xml:619 -msgid "Editar Grupo" -msgstr "Wijzig Broep" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 -#: ../../../config/actions.xml:613 -msgid "Nuevo Grupo" -msgstr "Nieuwe Groep" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 -#: ../../../config/actions.xml:637 -msgid "Ver Perfil" -msgstr "Bekijk Profiel" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 -#: ../../../config/actions.xml:649 -msgid "Editar Perfil" -msgstr "Wijzig Profiel" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 -#: ../../../config/actions.xml:643 -msgid "Nuevo Perfil" -msgstr "Nieuw Profiel" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 -#: ../../../config/actions.xml:331 -#, fuzzy -msgid "Ver Cliente" -msgstr "Bekijk Klant" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 -#: ../../../config/actions.xml:343 -#, fuzzy -msgid "Editar Cliente" -msgstr "Wijzig Klant" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 -#: ../../../config/actions.xml:337 -#, fuzzy -msgid "Nuevo Cliente" -msgstr "Nieuwe Klant" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 -#: ../../../config/actions.xml:301 -msgid "Ver Categoría" -msgstr "Bekijk Categorie" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 -#: ../../../config/actions.xml:313 -msgid "Editar Categoría" -msgstr "Wijzig Categorie" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 -#: ../../../config/actions.xml:307 -msgid "Nueva Categoría" -msgstr "Nieuwe Categorie" - -#: ../../../modules/web/Controllers/AuthTokenController.php:330 -msgid "Ver Autorización" -msgstr "Bekijk Autorisatie" - -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 -msgid "Nueva Autorización" -msgstr "Nieuwe Autorisatie" - -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 -msgid "Editar Autorización" -msgstr "Wijzig Autorisatie" - -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 -msgid "Nuevo Campo" -msgstr "Nieuw Veld" - -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 -msgid "Editar Campo" -msgstr "Wijzig Veld" - -#: ../../../modules/web/Forms/UserForm.php:111 -#, fuzzy -msgid "Es necesario un nombre de usuario" -msgstr "Een gebruikersnaam is nodig" - -#: ../../../modules/web/Forms/UserForm.php:115 -msgid "Es necesario un login" -msgstr "Een inlog is nodig" - -#: ../../../modules/web/Forms/UserForm.php:119 -msgid "Es necesario un perfil" -msgstr "Een profiel is nodig" - -#: ../../../modules/web/Forms/UserForm.php:123 -msgid "Es necesario un grupo" -msgstr "Een groep is nodig" - -#: ../../../modules/web/Forms/UserForm.php:127 -msgid "Es necesario un email" -msgstr "Een emailadres is nodig" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:53 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:92 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:151 -#: ../../../modules/web/Controllers/ConfigImportController.php:56 -#: ../../../modules/web/Controllers/ConfigLdapController.php:218 -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:55 -#: ../../../modules/web/Forms/UserForm.php:131 -#: ../../../modules/web/Forms/UserForm.php:153 -#: ../../../modules/web/Forms/UserForm.php:171 -msgid "Ey, esto es una DEMO!!" -msgstr "Hallo, dit is een DEMO!!" - -#: ../../../modules/web/Controllers/UserPassResetController.php:169 -#: ../../../modules/web/Forms/AuthTokenForm.php:101 -#: ../../../modules/web/Forms/UserForm.php:157 -msgid "La clave no puede estar en blanco" -msgstr "Wachtwoorden mogen niet leeg zijn" - -#: ../../../modules/web/Controllers/UserController.php:311 -#: ../../../modules/web/Controllers/UserController.php:317 -msgid "Usuario creado" -msgstr "Gebruiker toegevoegd" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:474 -#, fuzzy -msgid "Error al crear el usuario" -msgstr "Fout bij aanmaken gebruiker" - -#: ../../../modules/web/Controllers/UserController.php:372 -#: ../../../modules/web/Controllers/UserController.php:378 -msgid "Usuario actualizado" -msgstr "Gebruiker bijgewerkt" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:100 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:677 -#: ../../../../lib/SP/Services/User/UserService.php:310 -#, fuzzy -msgid "Error al actualizar el usuario" -msgstr "Fout bij bijwerken gebruiker" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:165 -#: ../../../../lib/SP/Services/User/UserService.php:331 -#, fuzzy -msgid "Error al modificar la clave" -msgstr "Fout bij wachtwoord wijzigen" - -#: ../../../modules/web/Forms/UserForm.php:179 -msgid "No es posible eliminar, usuario en uso" -msgstr "Niet mogelijk om te verwijderen, gebruiker is bezet" - -#: ../../../modules/web/Controllers/UserController.php:277 -#: ../../../modules/web/Controllers/UserController.php:281 -msgid "Usuario eliminado" -msgstr "Gebruiker verwijderd" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:184 -#, fuzzy -msgid "Error al eliminar el usuario" -msgstr "Fout bij verwijderen gebruiker" - -#: ../../../modules/web/Forms/UserGroupForm.php:84 -msgid "Es necesario un nombre de grupo" -msgstr "Een groepnaam is nodig" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:306 -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:351 -msgid "Nombre de grupo duplicado" -msgstr "Dubbele groepnaam" - -#: ../../../modules/api/Controllers/UserGroupController.php:91 -#: ../../../modules/api/Controllers/UserGroupController.php:96 -#: ../../../modules/web/Controllers/UserGroupController.php:264 -#: ../../../modules/web/Controllers/UserGroupController.php:268 -msgid "Grupo creado" -msgstr "Groep toegevoegd" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:315 -#, fuzzy -msgid "Error al crear el grupo" -msgstr "Fout bij aanmaken groep" - -#: ../../../modules/api/Controllers/UserGroupController.php:122 -#: ../../../modules/api/Controllers/UserGroupController.php:127 -#: ../../../modules/web/Controllers/UserGroupController.php:303 -#: ../../../modules/web/Controllers/UserGroupController.php:307 -msgid "Grupo actualizado" -msgstr "Groep bijgewerkt" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:361 -#, fuzzy -msgid "Error al actualizar el grupo" -msgstr "Fout bij bijwerken groep" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 -msgid "Usuarios" -msgstr "Gebruikers" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 +msgid "Solicitud" +msgstr "Verzoek" #. (itstool) path: action/text #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigBackupController.php:120 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 +#: ../../../modules/web/Controllers/ConfigManagerController.php:175 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: ../../../config/actions.xml:13 msgid "Cuentas" msgstr "Accounts" -#: ../../../../inc/SP/Mgmt/Customers/Customer.class.php:115 -msgid "No es posible eliminar" -msgstr "Fout bij verwijderen" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 +msgid "Notificación" +msgstr "Notificatie" -#: ../../../modules/api/Controllers/UserGroupController.php:151 -#: ../../../modules/api/Controllers/UserGroupController.php:156 -#: ../../../modules/web/Controllers/UserGroupController.php:230 -#: ../../../modules/web/Controllers/UserGroupController.php:234 -msgid "Grupo eliminado" -msgstr "Groep verwijderd" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:62 -#, fuzzy -msgid "Error al eliminar el grupo" -msgstr "Fout bij verwijderen groep" - -#: ../../../modules/web/Forms/UserProfileForm.php:116 -msgid "Es necesario un nombre de perfil" -msgstr "Een profiel naam is nodig" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:230 -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:275 -msgid "Nombre de perfil duplicado" -msgstr "Dubbele profiel naam" - -#: ../../../modules/web/Controllers/UserProfileController.php:248 -msgid "Perfil creado" -msgstr "Profiel toegevoegd" - -#: ../../../modules/web/Controllers/UserProfileController.php:284 -msgid "Perfil actualizado" -msgstr "Profiel bijgewerkt" - -#: ../../../modules/web/Controllers/UserProfileController.php:215 -#: ../../../modules/web/Controllers/UserProfileController.php:219 -msgid "Perfil eliminado" -msgstr "Profiel verwijderd" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:77 -#: ../../../modules/api/Controllers/ClientController.php:93 -#: ../../../modules/api/Controllers/ClientController.php:98 -#: ../../../modules/web/Controllers/ClientController.php:244 -#: ../../../modules/web/Controllers/ClientController.php:248 -#, fuzzy -msgid "Cliente creado" -msgstr "Klant toegevoegd" - -#: ../../../modules/api/Controllers/ClientController.php:124 -#: ../../../modules/api/Controllers/ClientController.php:129 -#: ../../../modules/web/Controllers/ClientController.php:280 -#: ../../../modules/web/Controllers/ClientController.php:284 -#, fuzzy -msgid "Cliente actualizado" -msgstr "Klant bijgewerkt" - -#: ../../../modules/api/Controllers/ClientController.php:153 -#: ../../../modules/api/Controllers/ClientController.php:158 -#: ../../../modules/web/Controllers/ClientController.php:212 -#: ../../../modules/web/Controllers/ClientController.php:216 -#, fuzzy -msgid "Cliente eliminado" -msgstr "Klant verwijderd" - -#: ../../../modules/web/Forms/CategoryForm.php:83 -msgid "Es necesario un nombre de categoría" -msgstr "Een categorie naam is nodig" - -#: ../../../modules/api/Controllers/CategoryController.php:91 -#: ../../../modules/api/Controllers/CategoryController.php:96 -#: ../../../modules/web/Controllers/CategoryController.php:253 -#: ../../../modules/web/Controllers/CategoryController.php:257 -msgid "Categoría creada" -msgstr "Categorie toegevoegd" - -#: ../../../modules/api/Controllers/CategoryController.php:121 -#: ../../../modules/api/Controllers/CategoryController.php:126 -#: ../../../modules/web/Controllers/CategoryController.php:293 -#: ../../../modules/web/Controllers/CategoryController.php:297 -msgid "Categoría actualizada" -msgstr "Categorie bijgewerkt" - -#: ../../../modules/api/Controllers/CategoryController.php:150 -#: ../../../modules/api/Controllers/CategoryController.php:155 -#: ../../../modules/web/Controllers/CategoryController.php:219 -#: ../../../modules/web/Controllers/CategoryController.php:223 -msgid "Categoría eliminada" -msgstr "Categorie verwijderd" - -#: ../../../modules/web/Controllers/AuthTokenController.php:258 -msgid "Autorización creada" -msgstr "Autorisatie toegevoegd" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 -#: ../../../modules/web/Controllers/AuthTokenController.php:291 -#: ../../../modules/web/Controllers/AuthTokenController.php:300 -#: ../../../modules/web/Controllers/AuthTokenController.php:307 -msgid "Autorización actualizada" -msgstr "Autorisatie bijgewerkt" - -#: ../../../modules/web/Controllers/AuthTokenController.php:225 -#: ../../../modules/web/Controllers/AuthTokenController.php:229 -msgid "Autorización eliminada" -msgstr "Autorisatie verwijderd" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:87 -msgid "Nombre del campo no indicado" -msgstr "Veld naam niet ingevuld" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:91 -msgid "Tipo del campo no indicado" -msgstr "Veld type niet ingevuld" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:95 -msgid "Módulo del campo no indicado" -msgstr "Veld module niet ingevuld" - -#: ../../../modules/web/Controllers/CustomFieldController.php:234 -#: ../../../modules/web/Controllers/CustomFieldController.php:238 -msgid "Campo creado" -msgstr "Veld toegevoegd" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:74 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:87 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:156 -#: ../../../modules/web/Controllers/CustomFieldController.php:271 -#: ../../../modules/web/Controllers/CustomFieldController.php:275 -msgid "Campo actualizado" -msgstr "Veld bijgewerkt" - -#: ../../../modules/web/Controllers/CustomFieldController.php:206 -msgid "Campo eliminado" -msgstr "Veld verwijderd" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:94 -msgid "Realizar Backup" -msgstr "Backup maken" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:112 -#, fuzzy -msgid "Error al realizar el backup" -msgstr "Fout in backup proces" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:114 -#: ../../../../lib/SP/Services/Export/XmlExportService.php:167 -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -#, fuzzy -msgid "Revise el registro de eventos para más detalles" -msgstr "Check het eventlog voor mij" - -#: ../../../modules/api/Controllers/ConfigController.php:57 -#: ../../../modules/web/Controllers/ConfigBackupController.php:64 -msgid "Copia de la aplicación y base de datos realizada correctamente" -msgstr "Applicatie en database backup succesvol afgerond" - -#: ../../../modules/api/Controllers/ConfigController.php:61 -#: ../../../modules/web/Controllers/ConfigBackupController.php:67 -msgid "Proceso de backup finalizado" -msgstr "Backup proces afgerond" - -#: ../../../../inc/SP/Core/XmlExport.class.php:146 -#, fuzzy -msgid "Error al realizar la exportación de cuentas" -msgstr "Fout opgetreden bij exporteren van accounts" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:165 -#, fuzzy -msgid "Error al realizar la exportación" -msgstr "Fout opgetreden bij exporteren" - -#: ../../../../inc/SP/Core/XmlExport.class.php:155 -msgid "Exportación de cuentas realizada correctamente" -msgstr "Export succesvol afgerond" - -#: ../../../modules/api/Controllers/ConfigController.php:91 -#: ../../../modules/api/Controllers/ConfigController.php:94 -#: ../../../modules/web/Controllers/ConfigBackupController.php:102 -#: ../../../modules/web/Controllers/ConfigBackupController.php:127 -msgid "Proceso de exportación finalizado" -msgstr "Export proces afgerond" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:169 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:171 -#, fuzzy -msgid "Los parámetros de LDAP no están configurados" -msgstr "LDAP parameters niet opgegeven" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:95 -#: ../../../modules/web/Controllers/ConfigLdapController.php:154 -#: ../../../modules/web/Controllers/ConfigLdapController.php:197 -msgid "Conexión a LDAP correcta" -msgstr "LDAP connectie gelukt" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:109 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:196 -msgid "Objetos encontrados" -msgstr "Objecten gevonden" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:257 -msgid "Modificar Configuración" -msgstr "Wijzig Configuratie" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:70 -msgid "El tamaño máximo por archivo es de 16MB" -msgstr "Het maxiumale bestands formaat is 16MB per bestand" - -#: ../../../config/strings.js.inc:45 -msgid "Extensión no permitida" -msgstr "Extensie niet toegestaan" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:115 -#, fuzzy -msgid "Faltan parámetros de Proxy" -msgstr "Missende proxy parameters" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:129 -msgid "Proxy habiltado" -msgstr "Proxy geactiveerd" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:134 -msgid "Proxy deshabilitado" -msgstr "Proxy uitgeschakeld" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:223 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:309 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:375 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:422 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:475 -msgid "Sección" -msgstr "Sectie" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 -msgid "General" -msgstr "Algemeen" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:59 -msgid "Faltan parámetros de Wiki" -msgstr "Missende Wiki parameters" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:69 -msgid "Wiki habiltada" -msgstr "Wiki geactiveerd" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:74 -msgid "Wiki deshabilitada" -msgstr "Wiki uitgeschakeld" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 -#: ../../../config/actions.xml:37 -msgid "Wiki" -msgstr "Wiki" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:69 -#: ../../../modules/web/Controllers/ConfigLdapController.php:139 -#: ../../../modules/web/Controllers/ConfigLdapController.php:175 -msgid "Faltan parámetros de LDAP" -msgstr "Missende LDAP parameters" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:88 -msgid "LDAP habiltado" -msgstr "LDAP geactiveerd" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:93 -msgid "LDAP deshabilitado" -msgstr "LDAP uitgeschakeld" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 -msgid "LDAP" -msgstr "LDAP" - -#: ../../../modules/web/Controllers/ConfigMailController.php:68 -#: ../../../modules/web/Controllers/ConfigMailController.php:125 -msgid "Faltan parámetros de Correo" -msgstr "Missende Email parameters" - -#: ../../../modules/web/Controllers/ConfigMailController.php:93 -msgid "Correo habiltado" -msgstr "Email geactiveerd" - -#: ../../../modules/web/Controllers/ConfigMailController.php:100 -msgid "Correo deshabilitado" -msgstr "Email uitgeschakeld" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 -msgid "Correo" -msgstr "Email" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:68 -msgid "Configuración actualizada" -msgstr "Configuratie bijgewerkt" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:297 -#: ../../../../lib/SP/Services/Auth/LoginService.php:321 -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:144 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -#, fuzzy -msgid "Clave maestra actualizada" -msgstr "Master Wachtwoord bijgewerkt" - -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:145 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -#, fuzzy -msgid "Reinicie la sesión para cambiarla" -msgstr "Herstart sessie om bij te werken" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:72 -#, fuzzy -msgid "Clave maestra no indicada" -msgstr "Master Wachtwoord nodig" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:76 -msgid "Se ha de confirmar el cambio de clave" -msgstr "De wachtwoord wijziging moet bevestigd worden" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:80 -msgid "Las claves son idénticas" -msgstr "De wachtwoorden zijn gelijk" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:84 -msgid "Las claves maestras no coinciden" -msgstr "De master wachtwoorden zijn niet gelijk" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:88 -msgid "La clave maestra actual no coincide" -msgstr "Het huidige master wachtwoord matched niet" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:89 -#, fuzzy -msgid "Errores al actualizar las claves de las cuentas" -msgstr "Fout bij wijzigen wachtwoord van account" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:233 -#, fuzzy -msgid "Errores al actualizar las claves de las cuentas del histórico" -msgstr "Fout bij wijzigen wachtwoord van account in de geschiedenis" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:136 -#, fuzzy -msgid "Errores al actualizar datos de campos personalizados" -msgstr "Fout bij wijzigen aangepaste velden" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:71 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:77 #: ../../../../lib/SP/Services/Account/AccountCryptService.php:138 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:67 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:75 #: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:83 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:108 msgid "Actualizar Clave Maestra" msgstr "Bijwerken Master Wachtwoord" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:138 -#, fuzzy -msgid "Error al guardar el hash de la clave maestra" -msgstr "Fout bij opslaan van Master Wachtwoord" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 +#, php-format +msgid "Cuentas actualizadas: %d / %d" +msgstr "Accounts die geupdated zijn: %d / %d" -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:103 -msgid "Generar Clave Temporal" -msgstr "Genereer tijdelijk wachtwoord" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 +#, php-format +msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" +msgstr "Geupdate accounts: %d / %d - %d%% - VTA: %ds (%.2f/s)" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 -msgid "Clave" -msgstr "Wachtwoord" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:200 -msgid "Clave Temporal Generada" -msgstr "Tijdelijk wachtwoord gegenereerd" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:110 -#, fuzzy -msgid "Error al generar clave temporal" -msgstr "Fout bij genereren tijdelijk wachtwoord" - -#: ../../../../inc/SP/Controller/LoginController.class.php:124 -msgid "Usuario/Clave no introducidos" -msgstr "Gebruiker/Wachtwoord niet ingevuld" - -#: ../../../../inc/SP/Controller/LoginController.class.php:108 -msgid "Inicio sesión" -msgstr "Inloggen" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:114 -#, fuzzy -msgid "Error al guardar los datos de LDAP" -msgstr "Fout bij opslaan van LDAP gebruikers data" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:59 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:154 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:244 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:334 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:389 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:417 -#: ../../../../lib/SP/Services/Account/AccountService.php:227 -#: ../../../../lib/SP/Services/Account/AccountService.php:232 -#: ../../../../lib/SP/Services/Api/ApiService.php:129 -#: ../../../../lib/SP/Services/Api/ApiService.php:227 -#: ../../../../lib/SP/Services/Api/ApiService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:187 -#: ../../../../lib/SP/Services/Auth/LoginService.php:351 -#: ../../../../lib/SP/Services/Auth/LoginService.php:500 -#: ../../../../lib/SP/Services/Auth/LoginService.php:505 -#: ../../../../lib/SP/Services/Auth/LoginService.php:537 -#: ../../../../lib/SP/Services/Auth/LoginService.php:644 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:311 -#: ../../../../lib/SP/Services/CustomField/CustomFieldService.php:203 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:108 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:79 -#: ../../../../lib/SP/Services/User/UserPassService.php:232 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:122 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:177 -msgid "Error interno" -msgstr "Interne fout" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:224 -#, fuzzy -msgid "Error al actualizar la clave del usuario en la BBDD" -msgstr "Fout bij bijwerken gebruiker wachtwoord in de Database" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:157 -#: ../../../../lib/SP/Services/Auth/LoginService.php:456 -#: ../../../../lib/SP/Services/Auth/LoginService.php:463 -#: ../../../../lib/SP/Services/Auth/LoginService.php:571 -#: ../../../../lib/SP/Services/Auth/LoginService.php:576 -#: ../../../../lib/SP/Services/Auth/LoginService.php:615 -#: ../../../../lib/SP/Services/Auth/LoginService.php:620 -#, fuzzy -msgid "Login incorrecto" -msgstr "Foutieve login" - -#: ../../../../lib/SP/Core/Acl/Acl.php:301 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:112 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:155 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:110 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:142 -#: ../../../../lib/SP/Services/Auth/LoginService.php:217 -#: ../../../../lib/SP/Services/Auth/LoginService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:386 -#: ../../../../lib/SP/Services/Auth/LoginService.php:453 -#: ../../../../lib/SP/Services/Auth/LoginService.php:561 #: ../../../../lib/SP/Services/Auth/LoginService.php:604 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:238 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/Controllers/LoginController.php:102 -#: ../../../modules/web/Controllers/UserController.php:278 -#: ../../../modules/web/Controllers/UserController.php:312 -#: ../../../modules/web/Controllers/UserController.php:373 -#: ../../../modules/web/Controllers/UserController.php:412 -#: ../../../modules/web/Controllers/UserPassResetController.php:187 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 -msgid "Usuario" -msgstr "Gebruiker" +msgid "N/D" +msgstr "N/A" -#: ../../../../lib/SP/Services/Auth/LoginService.php:471 -#: ../../../../lib/SP/Services/Auth/LoginService.php:476 -msgid "Cuenta expirada" -msgstr "Account verlopen" +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 +#, php-format +msgid "No es posible crear el directorio de backups (\"%s\")" +msgstr "Kan backups map (\"%s\") niet aanmaken." -#: ../../../../lib/SP/Services/Auth/LoginService.php:484 -#: ../../../../lib/SP/Services/Auth/LoginService.php:489 -msgid "El usuario no tiene grupos asociados" -msgstr "De gebruiker heeft geen geassocieerde groepen" +#: ../../../../lib/SP/Services/Config/ConfigService.php:68 +#: ../../../../lib/SP/Services/Config/ConfigService.php:153 +#, php-format +msgid "Parámetro no encontrado (%s)" +msgstr "Parameter not found (%s)" -#: ../../../../lib/SP/Services/Auth/LoginService.php:605 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 -msgid "Autentificación" -msgstr "Authenticatie" +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 +#, php-format +msgid "Clave Maestra %s" +msgstr "hoofdwachtwoord %s" -#: ../../../../lib/SP/Services/Auth/LoginService.php:216 -#: ../../../../lib/SP/Services/Auth/LoginService.php:223 -msgid "Usuario deshabilitado" -msgstr "Gebruiker uitgeschakeld" +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 +msgid "" +"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " +"el siguiente inicio." +msgstr "" +"Er is een nieuw hoofdwachtwoord gemaakt voor sysPass, dus de volgende keer " +"dat u zich aanmeldt wordt het gevraagd." -#: ../../../../inc/SP/Controller/LoginController.class.php:246 +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 +#, php-format +msgid "La nueva clave es: %s" +msgstr "Het nieuwe hoofdwachtwoord %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 +#, php-format +msgid "Esta clave estará activa hasta: %s" +msgstr "This password will be valid until: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 +msgid "No olvide acceder lo antes posible para guardar los cambios." +msgstr "Vergeet niet u spoedig aan te melden om de wijzigingen op te slaan." + +#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 +msgid "Actualizando datos encriptados" +msgstr "Bijwerken encrypted data" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 +msgid "Categorías" +msgstr "Categorieen" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 #, fuzzy -msgid "Error al obtener los datos del usuario de la BBDD" -msgstr "Fout bij ophalen gebruiker data vanuit de DB" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:339 -#, fuzzy -msgid "La clave maestra no ha sido guardada o es incorrecta" -msgstr "Het Master Wachtwoord is niet opgeslagen" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:282 -#: ../../../../lib/SP/Services/Auth/LoginService.php:288 -#: ../../../../lib/SP/Services/Auth/LoginService.php:306 -#: ../../../../lib/SP/Services/Auth/LoginService.php:312 -#, fuzzy -msgid "Clave maestra incorrecta" -msgstr "Ongeldig Master Wachtwoord" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/Controllers/UserProfileController.php:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 -msgid "Perfil" -msgstr "Profiel" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:120 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:146 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:156 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:143 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:140 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/Controllers/UserGroupController.php:231 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:137 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 -msgid "Grupo" -msgstr "Groep" - -#: ../../../modules/web/Controllers/AccountFileController.php:370 -msgid "Gestión de archivos deshabilitada" -msgstr "Bestands management uitgeschakeld" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 -msgid "Subir Archivo" -msgstr "Bestand uploaden" - -#: ../../../modules/web/Controllers/AccountFileController.php:167 -#, fuzzy -msgid "No hay extensiones permitidas" -msgstr "Er zijn geen toegestande extensies" - -#: ../../../../lib/SP/Services/Import/FileImport.php:100 -#: ../../../modules/web/Controllers/AccountFileController.php:184 -msgid "Tipo de archivo no soportado" -msgstr "Bestandstype niet toegestaan" - -#: ../../../modules/web/Controllers/AccountFileController.php:191 -msgid "Archivo inválido" -msgstr "Ongeldig bestand" - -#: ../../../../lib/SP/Services/Import/FileImport.php:116 -#: ../../../modules/web/Controllers/AccountFileController.php:199 -#: ../../../modules/web/Controllers/AccountFileController.php:219 -#, fuzzy -msgid "Error interno al leer el archivo" -msgstr "Interne fout bij lezen bestand" - -#: ../../../modules/web/Controllers/AccountFileController.php:231 -#: ../../../modules/web/Controllers/AccountFileController.php:240 -msgid "Archivo guardado" -msgstr "Bestand opgeslagen" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:77 -msgid "No se pudo guardar el archivo" -msgstr "Fout bij opslaan van bestand" - -#: ../../../../ajax/ajax_filesMgmt.php:154 -#: ../../../../ajax/ajax_filesMgmt.php:198 -msgid "No es un ID de archivo válido" -msgstr "Ongeldig bestands ID" - -#: ../../../modules/web/Controllers/AccountFileController.php:70 -#: ../../../modules/web/Controllers/AccountFileController.php:122 -msgid "El archivo no existe" -msgstr "Het bestand bestaat niet" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 -#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 -msgid "Descargar Archivo" -msgstr "Download bestand" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/Controllers/ItemPresetController.php:278 -#: ../../../modules/web/Controllers/ItemPresetController.php:311 -#: ../../../modules/web/Controllers/ItemPresetController.php:350 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 -msgid "ID" -msgstr "ID" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:122 -#: ../../../modules/web/Controllers/AccountFileController.php:84 -#: ../../../modules/web/Controllers/AccountFileController.php:97 -#: ../../../modules/web/Controllers/AccountFileController.php:137 -#: ../../../modules/web/Controllers/AccountFileController.php:232 -#: ../../../modules/web/Controllers/AccountFileController.php:329 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 -msgid "Archivo" -msgstr "Bestand" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:451 -#: ../../../../lib/SP/Services/Auth/LoginService.php:514 -#: ../../../../lib/SP/Services/Auth/LoginService.php:560 -#: ../../../../lib/SP/Services/Auth/LoginService.php:603 -#: ../../../modules/web/Controllers/AccountFileController.php:235 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/Controllers/ItemPresetController.php:310 -#: ../../../modules/web/Controllers/ItemPresetController.php:349 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 -msgid "Tipo" -msgstr "Type" - -#: ../../../modules/web/Controllers/AccountFileController.php:236 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 -msgid "Tamaño" -msgstr "Grootte" - -#: ../../../modules/web/Controllers/AccountFileController.php:328 -msgid "Archivo eliminado" -msgstr "Bestand verwijderd" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:279 -#, fuzzy -msgid "Error al eliminar el archivo" -msgstr "Fout bij verwijderen bestand" - -#: ../../../../lib/SP/Services/Api/ApiService.php:152 -#, fuzzy -msgid "Parámetros incorrectos" -msgstr "Foutieve parameters" - -#: ../../../modules/web/Controllers/UserPassResetController.php:101 -msgid "Recuperación de Clave" -msgstr "Wachtwoord Herstel" - -#: ../../../modules/web/Controllers/UserPassResetController.php:102 -msgid "Solicitado para" -msgstr "Aangevraagd voor" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "Solicitud enviada" -msgstr "Aanvraag verstuurd" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "En breve recibirá un correo para completar la solicitud." -msgstr "U ontvanget een email om de aanvraag te bevestigen" - -#: ../../../../ajax/ajax_passReset.php:86 -#: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:329 -msgid "Modificar Clave Usuario" -msgstr "Wijzig Gebruikers Wachtwoord" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 -msgid "Login" -msgstr "Inloggen" - -#: ../../../../ajax/ajax_passReset.php:107 -#, fuzzy -msgid "La clave es incorrecta o no coincide" -msgstr "Het wachtwoord is onjuist of matched niet" - -#: ../../../modules/web/Controllers/AccountController.php:919 -#: ../../../modules/web/Forms/NotificationForm.php:100 -msgid "Es necesaria una descripción" -msgstr "Een omschrijving is nodig" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1173 -msgid "Solicitud de Modificación de Cuenta" -msgstr "Aanvraag voor Account Modificatie" - -#: ../../../modules/web/Controllers/AccountController.php:927 -msgid "Solicitante" -msgstr "Aanvrager" - -#: ../../../modules/web/Controllers/AccountController.php:224 -#: ../../../modules/web/Controllers/AccountController.php:555 -#: ../../../modules/web/Controllers/AccountController.php:611 -#: ../../../modules/web/Controllers/AccountController.php:650 -#: ../../../modules/web/Controllers/AccountController.php:684 -#: ../../../modules/web/Controllers/AccountController.php:719 -#: ../../../modules/web/Controllers/AccountController.php:764 -#: ../../../modules/web/Controllers/AccountController.php:805 -#: ../../../modules/web/Controllers/AccountController.php:844 -#: ../../../modules/web/Controllers/AccountController.php:894 -#: ../../../modules/web/Controllers/AccountController.php:928 -#: ../../../modules/web/Controllers/AccountFileController.php:233 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:146 -#: ../../../modules/web/Controllers/AccountManagerController.php:146 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 -msgid "Cuenta" -msgstr "Account" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:159 -#: ../../../modules/api/Controllers/AccountController.php:72 -#: ../../../modules/api/Controllers/AccountController.php:104 -#: ../../../modules/api/Controllers/AccountController.php:140 -#: ../../../modules/api/Controllers/AccountController.php:186 -#: ../../../modules/api/Controllers/AccountController.php:236 -#: ../../../modules/api/Controllers/AccountController.php:311 -#: ../../../modules/web/Controllers/AccountController.php:225 -#: ../../../modules/web/Controllers/AccountController.php:720 -#: ../../../modules/web/Controllers/AccountController.php:765 -#: ../../../modules/web/Controllers/AccountController.php:806 -#: ../../../modules/web/Controllers/AccountController.php:845 -#: ../../../modules/web/Controllers/AccountController.php:895 -#: ../../../modules/web/Controllers/AccountController.php:929 -#: ../../../modules/web/Controllers/AccountFileController.php:234 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:112 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:147 -#: ../../../modules/web/Controllers/AccountManagerController.php:147 -#: ../../../modules/web/Controllers/ClientController.php:213 -#: ../../../modules/web/Controllers/ClientController.php:245 -#: ../../../modules/web/Controllers/ClientController.php:281 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 -#, fuzzy -msgid "Cliente" -msgstr "Klant" - -#: ../../../modules/web/Controllers/AccountController.php:930 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 -msgid "Descripción" -msgstr "Omschrijving" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:697 -#, fuzzy -msgid "Error al actualizar preferencias" -msgstr "Fout bij updaten voorkeuren" - -#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:70 -msgid "Preferencias actualizadas" -msgstr "Voorkeuren bijgewerkt" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:509 -msgid "La clave maestra no coincide" -msgstr "Het Master Wachtwoord matched niet" - -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:132 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:96 -msgid "No tiene permisos para acceder a esta cuenta" -msgstr "U heeft geen permissie op dit account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 -#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 -msgid "Ver Clave" -msgstr "Bekijk wachtwoord" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 -#: ../../../config/strings.js.inc:72 -msgid "Clave de Cuenta" -msgstr "Account Wachtwoord" - -#: ../../../../inc/SP/Http/Request.class.php:55 -#, fuzzy -msgid "No es posible acceder directamente a este archivo" -msgstr "Niet mogelijk om dit bestand te openen" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:143 -msgid "Error al actualizar el historial" -msgstr "Fout bij bijwerken geschiedenis" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -msgid "Actualizar Cuenta" -msgstr "Bijwerken Account" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:164 -#, fuzzy -msgid "Error al actualizar los grupos secundarios" -msgstr "Fout bij het updaten van de secundaire groep" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:103 -#, fuzzy -msgid "Error al actualizar los usuarios de la cuenta" -msgstr "Fout bij het update van de gebruikers onder het account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 -#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 -msgid "Restaurar Cuenta" -msgstr "Account Herstel" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:451 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:623 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:75 -#, fuzzy -msgid "No se pudieron obtener los datos de la cuenta" -msgstr "Error bij ophalen account gegevens" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:256 -#: ../../../modules/web/Controllers/AccountController.php:300 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:278 -#: ../../../config/actions.xml:157 -msgid "Nueva Cuenta" -msgstr "Nieuw Account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:389 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 -#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 -#: ../../../config/actions.xml:793 -#, fuzzy -msgid "Eliminar Cuenta" -msgstr "Verwijder Account" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:106 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:139 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:191 -#, fuzzy -msgid "Error al eliminar grupos asociados a la cuenta" -msgstr "Error bij verwijderen account's groepen" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:76 -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:132 -#, fuzzy -msgid "Error al eliminar usuarios asociados a la cuenta" -msgstr "Error bij verwijderen account's users" - -#: ../../../../inc/SP/Mgmt/Files/FileUtil.class.php:102 -#, fuzzy -msgid "Error al eliminar archivos asociados a la cuenta" -msgstr "Error bij verwijderen account's bestanden" - -#: ../../../../inc/SP/Account/AccountCrypt.class.php:70 -#: ../../../../inc/SP/Account/AccountCrypt.class.php:200 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:73 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:208 -msgid "Inicio" -msgstr "Start" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:81 -#, fuzzy -msgid "Error en el módulo de encriptación" -msgstr "Error bij encryptie module" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:115 -#, fuzzy -msgid "Error al obtener las claves de las cuentas" -msgstr "Error bij ophalen account's wachtwoorden" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:183 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:188 -#, fuzzy -msgid "Fallo al actualizar la clave de la cuenta" -msgstr "Error bij het updaten van het account wachtwoord" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:193 -#: ../../../modules/web/Controllers/AccountManagerController.php:185 -#: ../../../modules/web/Controllers/AccountManagerController.php:188 -msgid "Cuentas actualizadas" -msgstr "Accounts bijgewerkt" - -#: ../../../../inc/SP/Account/AccountUtil.class.php:132 -#, fuzzy -msgid "No se pudieron obtener los datos de las cuentas" -msgstr "Niet mogelijk om accounts gegevens op te halen" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:212 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:218 -msgid "Actualizar Clave Maestra (H)" -msgstr "Wijzig Master Wachtwoord (H)" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:158 -msgid "La clave maestra del registro no coincide" -msgstr "De waarde van het hoofd wachtwoord komt niet overeen" - -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:157 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:160 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:283 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:286 -#, fuzzy -msgid "Fallo al actualizar la clave del histórico" -msgstr "Fout bij het updaten van hoofd wachtwoord" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:109 -msgid "Registros actualizados" -msgstr "Gegevvens bijgewerkt" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:7 -#, fuzzy -msgid "Buscar Cuentas" -msgstr "Zoek accounts" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 -msgid "Ver Cuenta" -msgstr "Bekijk Account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 -#: ../../../config/actions.xml:193 -msgid "Copiar Cuenta" -msgstr "Kopieer Account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:344 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 -#: ../../../config/actions.xml:163 -msgid "Editar Cuenta" -msgstr "Wijzig Account" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:181 -msgid "Editar Clave de Cuenta" -msgstr "Wijzig Account Wachwoord" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 -#: ../../../config/actions.xml:259 -msgid "Ver Historial" -msgstr "Bekijk Geschiedenis" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 -#: ../../../config/actions.xml:19 -msgid "Archivos" -msgstr "Bestanden" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:25 -msgid "Peticiones" -msgstr "Aanvragen" - -#: ../../../../inc/SP/Core/Acl.class.php:196 -msgid "Gestión Aplicación" -msgstr "Applicatie Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:49 -msgid "Gestión Categorías" -msgstr "Categorieën Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:55 -#, fuzzy -msgid "Gestión Clientes" -msgstr "Klanten Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:67 -msgid "Gestión Campos Personalizados" -msgstr "Aangepaste Velden Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:61 -msgid "Gestión Autorizaciones API" -msgstr "API Autorisaties Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:115 -msgid "Gestión Usuarios" -msgstr "Gebruikers management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:121 -msgid "Gestión Grupos" -msgstr "Groepen Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:127 -msgid "Gestión Perfiles" -msgstr "Profielen management" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:348 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:61 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 -#: ../../../config/actions.xml:685 -msgid "Configuración" -msgstr "Configuratie" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 -#: ../../../config/actions.xml:691 -msgid "Configuración General" -msgstr "Algemene Configuratie" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 -msgid "Encriptación" -msgstr "Encryptie" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 -#: ../../../config/actions.xml:733 -msgid "Copia de Seguridad" -msgstr "Backup" - -#: ../../../../inc/SP/Core/Acl.class.php:220 -msgid "Exportar" -msgstr "Export" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 -msgid "Importar" -msgstr "Importeer" - -#: ../../../../lib/SP/Services/Api/ApiService.php:186 -#: ../../../modules/api/Controllers/ControllerBase.php:146 -msgid "Acceso no permitido" -msgstr "Onbevoegde toegang" - -#: ../../../../lib/SP/Http/Json.php:179 -msgid "Error de codificación" -msgstr "Codering Fout" - -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:221 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:309 -msgid "La autorización ya existe" -msgstr "De autorisatie bestaat al" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 -msgid "Actualizar Autorización" -msgstr "Bijwerken Autorisatie" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 -msgid "Eliminar Autorización" -msgstr "Verwijder Autorisatie" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:141 -msgid "Usuario no pertenece al grupo" -msgstr "De gebruiker behoort niet tot de groep" +msgid "Clientes" +msgstr "Klanten" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:104 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 +msgid "Usuarios" +msgstr "Gebruikers" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 +msgid "Grupos" +msgstr "Groepen" + +#: ../../../../lib/SP/Services/Export/XmlExportService.php:123 +#: ../../../../lib/SP/Storage/File/FileCache.php:74 +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 +#, php-format +msgid "No es posible crear el directorio (%s)" +msgstr "Unable to create the directory (%s)" + +#: ../../../../lib/SP/Services/Import/CsvImport.php:50 +#, php-format +msgid "Formato detectado: %s" +msgstr "Gedetecteerd formaat:% s" + +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 +#, php-format +msgid "El número de campos es incorrecto (%d)" +msgstr "Foutief aantal velden(%d)" + +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 +#, fuzzy, php-format +msgid "Compruebe el formato del archivo CSV en línea %s" +msgstr "Check a.u.b. het CSV bestand op regel %s" + +#: ../../../../lib/SP/Services/Import/ImportService.php:89 +#, php-format +msgid "Tipo mime no soportado (\"%s\")" +msgstr "Mime type wordt niet ondersteund (\"%s\")" + +#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 +#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 +#, php-format +msgid "El nodo \"%s\" no existe" +msgstr "Het \"% s\" knooppunt bestaat niet" + +#: ../../../../lib/SP/Services/Install/MySQL.php:135 +#, php-format +msgid "No es posible comprobar el usuario de sysPass (%s)" +msgstr "Unable to check the sysPass user (%s)" + +#: ../../../../lib/SP/Services/Install/MySQL.php:213 +#: ../../../../lib/SP/Services/Install/MySQL.php:329 +#: ../../../../lib/SP/Services/Install/MySQL.php:341 +#, php-format +msgid "Error al crear la BBDD ('%s')" +msgstr "Error while creating the DB ('%s')" + +#: ../../../../lib/SP/Services/Install/MySQL.php:237 +#, php-format +msgid "Error al establecer permisos de la BBDD ('%s')" +msgstr "Error bij het instellen van de database rechten ('%s')" + +#: ../../../../lib/SP/Services/Install/MySQL.php:309 +#, php-format +msgid "Error al seleccionar la BBDD '%s' (%s)" +msgstr "Error while selecting '%s' database (%s)" + +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 +msgid "Importado desde LDAP" +msgstr "Imported from LDAP" + +#: ../../../../lib/SP/Services/Task/TaskService.php:81 +msgid "No es posible crear archivo de bloqueo" +msgstr "Unable to create the lock file" + +#: ../../../../lib/SP/Services/Task/TaskService.php:184 +msgid "Esperando actualización de progreso ..." +msgstr "Wachten op voortgang van update" + +#: ../../../../lib/SP/Services/Track/TrackService.php:162 +#, php-format +msgid "Intentos excedidos (%d/%d)" +msgstr "Te veel pogingen (%d/%d)." + +#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 +msgid "El archivo de actualización no contiene datos" +msgstr "The update file does not contain data" #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 +#: ../../../modules/web/Controllers/UserController.php:235 +#: ../../../modules/web/Controllers/UserController.php:356 +#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Cambio de Clave" msgstr "Wachtwoord wijziging" @@ -1611,497 +309,684 @@ msgstr "Om door te kunnen gaan, dient u naar de volgende URL te gaan:" msgid "Si no ha solicitado esta acción, ignore este mensaje." msgstr "Indien deze actie niet door u is aangevraagd, negeer dan dit bericht." -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:333 -msgid "Esta operación sólo es posible en entornos Linux" -msgstr "Deze actie wordt alleen ondersteund in Linux omgevingen" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 +msgid "Fallo de autentificación" +msgstr "Authenticatiefout" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:101 -#, fuzzy -msgid "Error al realizar backup en modo compatibilidad" -msgstr "Fout bij het backuppen in compatibiliteits mode" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 +msgid "Error al realizar la consulta" +msgstr "Fout bij het uitvoeren van de query" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:138 -#, fuzzy -msgid "Compruebe los permisos del directorio de backups" -msgstr "Check de permissies op de backup folder" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 +msgid "URL de conexión no establecida" +msgstr "Verbinding URL niet ingesteld" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:107 -msgid "Nombre de categoría duplicado" -msgstr "Dubbele categorie naam" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 +#, php-format +msgid "Error al descomprimir datos del archivo (%s)" +msgstr "Error while decompressing the file data (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:68 -#, fuzzy -msgid "Error al crear la categoría" -msgstr "Fout bij het aanmaken van de categorie" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 +msgid "Error al obtener los datos" +msgstr "Error while retrieving the data" -#: ../../../../lib/SP/Services/Import/KeepassImport.php:104 -#: ../../../modules/web/Controllers/CategoryController.php:220 -#: ../../../modules/web/Controllers/CategoryController.php:254 -#: ../../../modules/web/Controllers/CategoryController.php:294 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 -msgid "Categoría" -msgstr "Categorie" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 +#, php-format +msgid "Error al comprimir datos del archivo (%s)" +msgstr "Error while compressing the file data (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:275 -#, fuzzy -msgid "Error al eliminar la categoría" -msgstr "Fout bij verwijderen categorie" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 +msgid "Datos no cargados" +msgstr "Data not loaded" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 -#: ../../../config/actions.xml:319 -msgid "Eliminar Categoría" -msgstr "Verwijder Categorie" +#: ../../../../lib/SP/Storage/File/FileHandler.php:72 +#: ../../../../lib/SP/Storage/File/FileHandler.php:135 +#, php-format +msgid "No es posible escribir en el archivo (%s)" +msgstr "Unable to read/write the file (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:125 -#, fuzzy -msgid "Error al actualizar la categoría" -msgstr "Fout bij wijzigen categorie" +#: ../../../../lib/SP/Storage/File/FileHandler.php:89 +#, php-format +msgid "No es posible abrir el archivo (%s)" +msgstr "Unable to open the file (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:108 -#: ../../../../inc/SP/Config/ConfigDB.class.php:148 -msgid "Modificar configuración" -msgstr "Bijwerken Configuratie" +#: ../../../../lib/SP/Storage/File/FileHandler.php:104 +#: ../../../../lib/SP/Storage/File/FileHandler.php:118 +#, php-format +msgid "No es posible leer desde el archivo (%s)" +msgstr "Unable to read from file (%s)" -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:82 -msgid "Parámetro" -msgstr "Parameter" +#: ../../../../lib/SP/Storage/File/FileHandler.php:173 +#, php-format +msgid "No es posible cerrar el archivo (%s)" +msgstr "Unable to close the file (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:152 -msgid "Valor" -msgstr "Waarde" +#: ../../../../lib/SP/Storage/File/FileHandler.php:219 +#, php-format +msgid "No es posible escribir el archivo (%s)" +msgstr "Unable to write in file (%s)" -#: ../../../../lib/SP/Util/ErrorUtil.php:128 +#: ../../../../lib/SP/Storage/File/FileHandler.php:234 +#, php-format +msgid "Archivo no encontrado (%s)" +msgstr "File not found (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:259 +#: ../../../../lib/SP/Storage/File/FileHandler.php:314 +#, php-format +msgid "No es posible leer el archivo (%s)" +msgstr "Unable to read/write the file (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:286 +#, php-format +msgid "No es posible eliminar el archivo (%s)" +msgstr "Unable to delete file (%s)" + +#: ../../../../lib/SP/Util/ErrorUtil.php:148 msgid "Opción no disponible" msgstr "Optie niet beschikbaar" -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:129 -#: ../../../../lib/SP/Util/ErrorUtil.php:133 -#: ../../../../lib/SP/Util/ErrorUtil.php:137 -#: ../../../../lib/SP/Util/ErrorUtil.php:141 #: ../../../../lib/SP/Util/ErrorUtil.php:149 -#: ../../../../lib/SP/Util/ErrorUtil.php:156 +#: ../../../../lib/SP/Util/ErrorUtil.php:153 +#: ../../../../lib/SP/Util/ErrorUtil.php:157 +#: ../../../../lib/SP/Util/ErrorUtil.php:161 +#: ../../../../lib/SP/Util/ErrorUtil.php:169 +#: ../../../../lib/SP/Util/ErrorUtil.php:176 #: ../../../modules/web/Controllers/ErrorController.php:124 -#: ../../../modules/web/Controllers/UserPassResetController.php:94 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Consulte con el administrador" msgstr "Neem contact op met de system administrator" -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:136 +#: ../../../../lib/SP/Util/ErrorUtil.php:152 +msgid "No tiene permisos para acceder a esta cuenta" +msgstr "U heeft geen permissie op dit account" + +#: ../../../../lib/SP/Util/ErrorUtil.php:156 msgid "No tiene permisos para acceder a esta página" msgstr "U heeft geen toegang tot deze pagina" -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Util/ErrorUtil.php:140 -#: ../../../modules/web/Controllers/AccountFileController.php:261 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:59 -#: ../../../modules/web/Controllers/AccountManagerController.php:77 -#: ../../../modules/web/Controllers/AccountManagerController.php:204 -#: ../../../modules/web/Controllers/AuthTokenController.php:68 -#: ../../../modules/web/Controllers/AuthTokenController.php:105 -#: ../../../modules/web/Controllers/AuthTokenController.php:170 -#: ../../../modules/web/Controllers/AuthTokenController.php:200 -#: ../../../modules/web/Controllers/AuthTokenController.php:243 -#: ../../../modules/web/Controllers/AuthTokenController.php:278 -#: ../../../modules/web/Controllers/AuthTokenController.php:327 -#: ../../../modules/web/Controllers/CategoryController.php:66 -#: ../../../modules/web/Controllers/CategoryController.php:100 -#: ../../../modules/web/Controllers/CategoryController.php:164 -#: ../../../modules/web/Controllers/CategoryController.php:194 -#: ../../../modules/web/Controllers/CategoryController.php:237 -#: ../../../modules/web/Controllers/CategoryController.php:277 -#: ../../../modules/web/Controllers/CategoryController.php:317 -#: ../../../modules/web/Controllers/ClientController.php:64 -#: ../../../modules/web/Controllers/ClientController.php:96 -#: ../../../modules/web/Controllers/ClientController.php:160 -#: ../../../modules/web/Controllers/ClientController.php:190 -#: ../../../modules/web/Controllers/ClientController.php:230 -#: ../../../modules/web/Controllers/ClientController.php:268 -#: ../../../modules/web/Controllers/ClientController.php:304 -#: ../../../modules/web/Controllers/CustomFieldController.php:65 -#: ../../../modules/web/Controllers/CustomFieldController.php:97 -#: ../../../modules/web/Controllers/CustomFieldController.php:159 -#: ../../../modules/web/Controllers/CustomFieldController.php:189 -#: ../../../modules/web/Controllers/CustomFieldController.php:221 -#: ../../../modules/web/Controllers/CustomFieldController.php:258 -#: ../../../modules/web/Controllers/CustomFieldController.php:295 -#: ../../../modules/web/Controllers/EventlogController.php:101 -#: ../../../modules/web/Controllers/ItemPresetController.php:67 -#: ../../../modules/web/Controllers/ItemPresetController.php:151 -#: ../../../modules/web/Controllers/ItemPresetController.php:188 -#: ../../../modules/web/Controllers/ItemPresetController.php:226 -#: ../../../modules/web/Controllers/ItemPresetController.php:256 -#: ../../../modules/web/Controllers/ItemPresetController.php:295 -#: ../../../modules/web/Controllers/ItemPresetController.php:334 -#: ../../../modules/web/Controllers/NotificationController.php:100 -#: ../../../modules/web/Controllers/NotificationController.php:160 -#: ../../../modules/web/Controllers/NotificationController.php:175 -#: ../../../modules/web/Controllers/NotificationController.php:206 -#: ../../../modules/web/Controllers/NotificationController.php:237 -#: ../../../modules/web/Controllers/NotificationController.php:288 -#: ../../../modules/web/Controllers/NotificationController.php:315 -#: ../../../modules/web/Controllers/NotificationController.php:348 -#: ../../../modules/web/Controllers/PluginController.php:98 -#: ../../../modules/web/Controllers/PluginController.php:117 -#: ../../../modules/web/Controllers/PublicLinkController.php:71 -#: ../../../modules/web/Controllers/PublicLinkController.php:105 -#: ../../../modules/web/Controllers/PublicLinkController.php:167 -#: ../../../modules/web/Controllers/PublicLinkController.php:193 -#: ../../../modules/web/Controllers/PublicLinkController.php:223 -#: ../../../modules/web/Controllers/PublicLinkController.php:264 -#: ../../../modules/web/Controllers/PublicLinkController.php:296 -#: ../../../modules/web/Controllers/PublicLinkController.php:338 -#: ../../../modules/web/Controllers/TagController.php:65 -#: ../../../modules/web/Controllers/TagController.php:99 -#: ../../../modules/web/Controllers/TagController.php:159 -#: ../../../modules/web/Controllers/TagController.php:189 -#: ../../../modules/web/Controllers/TagController.php:223 -#: ../../../modules/web/Controllers/TagController.php:254 -#: ../../../modules/web/Controllers/TagController.php:285 -#: ../../../modules/web/Controllers/UserController.php:69 -#: ../../../modules/web/Controllers/UserController.php:101 -#: ../../../modules/web/Controllers/UserController.php:186 -#: ../../../modules/web/Controllers/UserController.php:218 -#: ../../../modules/web/Controllers/UserController.php:254 -#: ../../../modules/web/Controllers/UserController.php:296 -#: ../../../modules/web/Controllers/UserController.php:357 -#: ../../../modules/web/Controllers/UserController.php:398 -#: ../../../modules/web/Controllers/UserController.php:435 -#: ../../../modules/web/Controllers/UserGroupController.php:74 -#: ../../../modules/web/Controllers/UserGroupController.php:108 -#: ../../../modules/web/Controllers/UserGroupController.php:179 -#: ../../../modules/web/Controllers/UserGroupController.php:209 -#: ../../../modules/web/Controllers/UserGroupController.php:249 -#: ../../../modules/web/Controllers/UserGroupController.php:288 -#: ../../../modules/web/Controllers/UserGroupController.php:327 -#: ../../../modules/web/Controllers/UserProfileController.php:64 -#: ../../../modules/web/Controllers/UserProfileController.php:96 -#: ../../../modules/web/Controllers/UserProfileController.php:163 -#: ../../../modules/web/Controllers/UserProfileController.php:193 -#: ../../../modules/web/Controllers/UserProfileController.php:233 -#: ../../../modules/web/Controllers/UserProfileController.php:268 -#: ../../../modules/web/Controllers/UserProfileController.php:304 +#: ../../../../lib/SP/Util/ErrorUtil.php:160 msgid "No tiene permisos para realizar esta operación" msgstr "U heeft hiervoor geen toegang" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:56 -#: ../../../config/strings.js.inc:85 -msgid "Aviso" -msgstr "Waarschuwing" - -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:105 -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:116 -msgid "" -"Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." -msgstr "" -"De hoofd wachtwoord hash is opnieuw gemaakt, er hoeft geen verdere actie " -"ondernomen worden," - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -msgid "No se puede usar el módulo de encriptación" -msgstr "De Crypto module kan niet geladen worden" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +#: ../../../../lib/SP/Util/ErrorUtil.php:164 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 #, fuzzy -msgid "Error al generar datos cifrados" -msgstr "Fout bij het genereren van de versleutelde data" +msgid "Clave maestra actualizada" +msgstr "Master Wachtwoord bijgewerkt" -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:102 -msgid "No es posible generar las claves RSA" -msgstr "Niet mogelijk om de RSA sleutels te genereren" - -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:135 -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:168 -msgid "El archivo de clave no existe" -msgstr "Het sleutel bestand bestaat niet" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 -msgid "El número de campos es incorrecto (%d)" -msgstr "Foutief aantal velden(%d)" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 +#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 #, fuzzy -msgid "Compruebe el formato del archivo CSV en línea %s" -msgstr "Check a.u.b. het CSV bestand op regel %s" +msgid "Reinicie la sesión para cambiarla" +msgstr "Herstart sessie om bij te werken" -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 +#: ../../../../lib/SP/Util/ErrorUtil.php:168 +#: ../../../../lib/SP/Util/ErrorUtil.php:175 +#, fuzzy +msgid "Se ha producido una excepción" +msgstr "Er is een uitzondering opgetreden" + +#: ../../../modules/api/Controllers/AccountController.php:144 +msgid "Clave actualizada" +msgstr "Wachtwoord bijgewerkt" + +#: ../../../modules/api/Controllers/AccountController.php:194 +msgid "Cuenta creada" +msgstr "Account toegevoegd" + +#: ../../../modules/api/Controllers/AccountController.php:245 +msgid "Cuenta actualizada" +msgstr "Account bijgewerkt" + +#: ../../../modules/api/Controllers/AccountController.php:320 +#, fuzzy +msgid "Cuenta eliminada" +msgstr "Account verwijderd" + +#: ../../../modules/api/Controllers/CategoryController.php:96 +msgid "Categoría creada" +msgstr "Categorie toegevoegd" + +#: ../../../modules/api/Controllers/CategoryController.php:126 +msgid "Categoría actualizada" +msgstr "Categorie bijgewerkt" + +#: ../../../modules/api/Controllers/CategoryController.php:155 +msgid "Categoría eliminada" +msgstr "Categorie verwijderd" + +#: ../../../modules/api/Controllers/ClientController.php:98 +#, fuzzy +msgid "Cliente creado" +msgstr "Klant toegevoegd" + +#: ../../../modules/api/Controllers/ClientController.php:129 +#, fuzzy +msgid "Cliente actualizado" +msgstr "Klant bijgewerkt" + +#: ../../../modules/api/Controllers/ClientController.php:158 +#, fuzzy +msgid "Cliente eliminado" +msgstr "Klant verwijderd" + +#: ../../../modules/api/Controllers/ConfigController.php:61 +msgid "Proceso de backup finalizado" +msgstr "Backup proces afgerond" + +#: ../../../modules/api/Controllers/ConfigController.php:94 +msgid "Proceso de exportación finalizado" +msgstr "Export proces afgerond" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 +msgid "Id de la cuenta" +msgstr "Account Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 +msgid "Clave del token" +msgstr "Token Wachtwoord" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 +#, fuzzy +msgid "Devolver detalles en la respuesta" +msgstr "Stuur de details in de reactie" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:89 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:92 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:163 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:293 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:170 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:253 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:260 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:35 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:98 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:27 +msgid "Clave" +msgstr "Wachtwoord" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:114 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:181 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:90 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 +msgid "Fecha Caducidad Clave" +msgstr "Wachtwoord vervaldatum" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:73 +msgid "Nombre de cuenta" +msgstr "Account naam" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 +msgid "Id de categoría" +msgstr "Categorie Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 +#, fuzzy +msgid "Id de cliente" +msgstr "Klant Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 +msgid "Usuario de acceso" +msgstr "Toegang gebruiker" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:136 +msgid "URL o IP de acceso" +msgstr "Toegang URL of IP" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:134 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 +msgid "Notas sobre la cuenta" +msgstr "Notities voor het account" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:198 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 +msgid "Cuenta Privada" +msgstr "Privé-account" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:217 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 +msgid "Cuenta Privada Grupo" +msgstr "privé-account voor groep." + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:252 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:254 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:13 +msgid "Cuenta Vinculada" +msgstr "Gekoppeld account" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 +#, fuzzy +msgid "Array con Ids de etiquetas" +msgstr "Array with tags id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 +msgid "Id de grupo" +msgstr "Group Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 +#: ../../../modules/api/Controllers/Help/TagHelp.php:77 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 +msgid "Texto a buscar" +msgstr "Zoek naar tekst" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 +#: ../../../modules/api/Controllers/Help/TagHelp.php:78 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 +msgid "Número de resultados a mostrar" +msgstr "Aantal weer te geven resultaten" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 +msgid "Id de categoría a filtrar" +msgstr "Categorie ID om te filteren" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 +#, fuzzy +msgid "Id de cliente a filtrar" +msgstr "Klant ID om te filteren ingeschakeld" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 +#, fuzzy +msgid "Array con Ids de etiquetas a filtrar" +msgstr "Array with tags id for filtering" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 +msgid "Operador de filtrado" +msgstr "Filtering operator" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:29 +msgid "Nombre de la categoría" +msgstr "Categorie Naam" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:41 +msgid "Descripción de la categoría" +msgstr "Categorie Omschrijving" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:30 +#, fuzzy +msgid "Nombre del cliente" +msgstr "Klantnaam" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:43 +#, fuzzy +msgid "Descripción del cliente" +msgstr "Klant omschrijving" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:99 +msgid "Global" +msgstr "Algemeen" + +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 +msgid "Ruta" +msgstr "Path" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:43 +#: ../../../modules/api/Controllers/Help/TagHelp.php:65 +#: ../../../modules/api/Controllers/Help/TagHelp.php:89 +msgid "Id de etiqueta" +msgstr "Tag Id" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:54 +#: ../../../modules/api/Controllers/Help/TagHelp.php:66 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:29 +msgid "Nombre de la etiqueta" +msgstr "Tag naam" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:31 +msgid "Nombre del grupo" +msgstr "Groep naam" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:44 +msgid "Descripción del grupo" +msgstr "Groep omschrijving" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 +msgid "Array con Ids de usuarios" +msgstr "Array with users Id" + +#: ../../../modules/api/Controllers/TagController.php:94 +msgid "Etiqueta creada" +msgstr "Label toegevoegd" + +#: ../../../modules/api/Controllers/TagController.php:123 +msgid "Etiqueta actualizada" +msgstr "Label geupdate" + +#: ../../../modules/api/Controllers/TagController.php:152 +msgid "Etiqueta eliminada" +msgstr "Label verwijderd" + +#: ../../../modules/api/Controllers/UserGroupController.php:96 +msgid "Grupo creado" +msgstr "Groep toegevoegd" + +#: ../../../modules/api/Controllers/UserGroupController.php:127 +msgid "Grupo actualizado" +msgstr "Groep bijgewerkt" + +#: ../../../modules/api/Controllers/UserGroupController.php:156 +msgid "Grupo eliminado" +msgstr "Groep verwijderd" + +#: ../../../modules/web/Controllers/AccountController.php:149 +#: ../../../modules/web/Controllers/AccountController.php:204 +#: ../../../modules/web/Controllers/AccountController.php:489 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:56 +msgid "Detalles de Cuenta" +msgstr "Account details" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:261 +#: ../../../modules/web/Controllers/AccountController.php:307 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:275 +#: ../../../config/actions.xml:157 +msgid "Nueva Cuenta" +msgstr "Nieuw Account" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:353 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 +#: ../../../config/actions.xml:163 +msgid "Editar Cuenta" +msgstr "Wijzig Account" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:400 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 +#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 +#: ../../../config/actions.xml:793 +#, fuzzy +msgid "Eliminar Cuenta" +msgstr "Verwijder Account" + +#: ../../../modules/web/Controllers/AccountController.php:445 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 +msgid "Modificar Clave de Cuenta" +msgstr "Wijzig Account Wachtwoord" + +#: ../../../modules/web/Controllers/AccountFileController.php:211 +#, php-format +msgid "Extensión: %s" +msgstr "Extension: %s" + +#: ../../../modules/web/Controllers/AccountFileController.php:405 +msgid "Gestión de archivos deshabilitada" +msgstr "Bestands management uitgeschakeld" + +#: ../../../modules/web/Controllers/AccountFileController.php:424 +msgid "No hay archivos asociados a la cuenta" +msgstr "There are no linked files for the account" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountManagerController.php:216 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 +#: ../../../config/actions.xml:493 +msgid "Actualización Masiva" +msgstr "Bulk Update" + +#: ../../../modules/web/Controllers/AuthTokenController.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 +msgid "Nueva Autorización" +msgstr "Nieuwe Autorisatie" + +#: ../../../modules/web/Controllers/AuthTokenController.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 +msgid "Editar Autorización" +msgstr "Wijzig Autorisatie" + +#: ../../../modules/web/Controllers/AuthTokenController.php:347 +msgid "Ver Autorización" +msgstr "Bekijk Autorisatie" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:118 +#: ../../../config/actions.xml:307 +msgid "Nueva Categoría" +msgstr "Nieuwe Categorie" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 +#: ../../../config/actions.xml:313 +msgid "Editar Categoría" +msgstr "Wijzig Categorie" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:335 +#: ../../../config/actions.xml:301 +msgid "Ver Categoría" +msgstr "Bekijk Categorie" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:93 +#: ../../../config/actions.xml:337 +#, fuzzy +msgid "Nuevo Cliente" +msgstr "Nieuwe Klant" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:174 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 +#: ../../../config/actions.xml:343 +#, fuzzy +msgid "Editar Cliente" +msgstr "Wijzig Klant" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:326 +#: ../../../config/actions.xml:331 +#, fuzzy +msgid "Ver Cliente" +msgstr "Bekijk Klant" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:153 +#: ../../../modules/web/Controllers/ConfigLdapController.php:197 +msgid "Resultados" +msgstr "Resultaten" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:159 +#: ../../../modules/web/Controllers/ConfigLdapController.php:204 +#, php-format +msgid "Objetos encontrados: %d" +msgstr "Voorwerpen gevonden: %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:279 +#, php-format +msgid "Usuarios importados: %d / %d" +msgstr "Imported users: %d / %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:280 +#, php-format +msgid "Errores: %d" +msgstr "Errors: %d" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:161 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 +msgid "General" +msgstr "Algemeen" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:190 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:29 +#: ../../../config/actions.xml:37 +msgid "Wiki" +msgstr "Wiki" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:209 +msgid "LDAP" +msgstr "LDAP" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:235 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:12 +msgid "Correo" +msgstr "Email" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:274 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 +msgid "Encriptación" +msgstr "Encryptie" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:302 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:61 +#, fuzzy +msgid "No se encontraron backups" +msgstr "Er zijn geen backups beschikbaar" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:312 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 +msgid "No se encontró archivo de exportación" +msgstr "Geen export bestand gevonden" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:315 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:78 +#: ../../../config/actions.xml:733 +msgid "Copia de Seguridad" +msgstr "Backup" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:332 msgid "Importar Cuentas" msgstr "Importeer Accounts" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:166 -#, fuzzy -msgid "Error importando cuenta" -msgstr "Fout bij het importeren van het account" +#: ../../../modules/web/Controllers/ConfigManagerController.php:352 +msgid "No instalado" +msgstr "Niet geïnstalleerd" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 -msgid "Campos Personalizados" -msgstr "Aangepaste velden" +#: ../../../modules/web/Controllers/ConfigManagerController.php:357 +msgid "Información" +msgstr "Informatie" -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:76 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 -msgid "Actualizando datos encriptados" -msgstr "Bijwerken encrypted data" +#: ../../../modules/web/Controllers/CustomFieldController.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 +msgid "Nuevo Campo" +msgstr "Nieuw Veld" -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:110 -#, fuzzy -msgid "Registros no actualizados" -msgstr "Geen bijgewerkte velden" +#: ../../../modules/web/Controllers/CustomFieldController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 +msgid "Editar Campo" +msgstr "Wijzig Veld" -#. (itstool) path: strings/text -#: ../../../config/strings.xml:8 -msgid "Texto" -msgstr "Tekst" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 -msgid "Fecha" -msgstr "Datum" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:5 -msgid "Número" -msgstr "Nummer" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 -msgid "Email" -msgstr "Emailadres" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:6 -msgid "Teléfono" -msgstr "Telefoon" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:9 -msgid "Link" -msgstr "Link" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:4 -msgid "Color" -msgstr "Kleur" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/ConfigBackupController.php:122 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 -msgid "Categorías" -msgstr "Categorieen" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/ConfigBackupController.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 -#, fuzzy -msgid "Clientes" -msgstr "Klanten" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 -msgid "Grupos" -msgstr "Groepen" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:62 -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:116 -#, fuzzy -msgid "Cliente duplicado" -msgstr "Dubbele klant" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:80 -#, fuzzy -msgid "Error al crear el cliente" -msgstr "Fout bij aanmaken klant" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:136 -#, fuzzy -msgid "Error al actualizar el cliente" -msgstr "Fout bij bijwerken klant" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 -msgid "Actualizar Cliente" -msgstr "Bijwerken Klant" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:283 -#, fuzzy -msgid "Error al eliminar el cliente" -msgstr "Fout bij verwijderen klant" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 -#: ../../../config/actions.xml:349 -#, fuzzy -msgid "Eliminar Cliente" -msgstr "Verwijder Klant" - -#: ../../../../lib/SP/Services/Install/MySQL.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:97 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:117 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:164 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:176 -msgid "No es posible conectar con la BD" -msgstr "Kan geen verbinding maken met de DB" - -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:166 -#, fuzzy -msgid "Compruebe los datos de conexión" -msgstr "Check a.u.b de connetie parameters" - -#. Not available -#: ../../../../lib/SP/Core/Acl/Acl.php:294 -#: ../../../../lib/SP/Services/Auth/LoginService.php:600 -msgid "N/D" -msgstr "N/A" - -#: ../../../../lib/SP/Core/Acl/Acl.php:300 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 -msgid "Acción" -msgstr "Actie" - -#: ../../../../inc/SP/Log/Email.class.php:64 -msgid "Realizado por" -msgstr "Uitgevoerd door" - -#: ../../../../inc/SP/Log/Email.class.php:76 -#: ../../../../inc/SP/Log/Email.class.php:191 -msgid "Enviar Email" -msgstr "Verstuur Email" - -#: ../../../../lib/SP/Services/Mail/MailService.php:141 -#: ../../../modules/web/Controllers/ConfigMailController.php:138 -#: ../../../modules/web/Controllers/ConfigMailController.php:144 -msgid "Correo enviado" -msgstr "Email Verstuurd" - -#: ../../../../lib/SP/Services/Mail/MailService.php:81 -#: ../../../../lib/SP/Services/Mail/MailService.php:151 -#, fuzzy -msgid "Error al enviar correo" -msgstr "Fout bij versturen email" - -#: ../../../../lib/SP/Services/Mail/MailService.php:142 -#: ../../../modules/web/Controllers/ConfigMailController.php:139 -msgid "Destinatario" -msgstr "Ontvanger" - -#: ../../../../inc/SP/Log/Email.class.php:85 -msgid "CC" -msgstr "CC" - -#: ../../../../lib/SP/Services/Import/FileImport.php:67 -#: ../../../../lib/SP/Services/Import/FileImport.php:88 -msgid "Archivo no subido correctamente" -msgstr "Bestand succesvol geupload" - -#: ../../../../lib/SP/Services/Import/FileImport.php:69 -#: ../../../../lib/SP/Services/Import/FileImport.php:90 -#, fuzzy -msgid "Verifique los permisos del usuario del servidor web" -msgstr "Controleer de gebruikers permissies van de web server" - -#: ../../../../lib/SP/Services/Import/FileImport.php:102 -#, fuzzy -msgid "Compruebe la extensión del archivo" -msgstr "Check a.u.b de bestandsextensie" - -#: ../../../../lib/SP/Services/Import/FileImport.php:118 -#, fuzzy -msgid "Compruebe la configuración de PHP para subir archivos" -msgstr "Check de PHP configuratie voor het uploaden van bestanden" - -#: ../../../../lib/SP/Services/Import/FileImport.php:157 -#: ../../../../lib/SP/Services/Import/FileImport.php:183 -#, fuzzy -msgid "Compruebe los permisos del directorio temporal" -msgstr "Check de tijdelijke folder" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 -#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 -msgid "Eliminar Archivo" -msgstr "Verwijder Bestand" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 -#: ../../../config/actions.xml:625 -msgid "Eliminar Grupo" -msgstr "Verwijder Groep" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:108 -#, fuzzy -msgid "Error al eliminar los usuarios del grupo" -msgstr "Fout bij verwijderen groep gebruikers" - -#: ../../../../lib/SP/Services/Import/ImportService.php:91 -#, fuzzy -msgid "Compruebe el formato del archivo" -msgstr "Check a.u.b de " - -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigLdapController.php:260 -msgid "Importación finalizada" -msgstr "Import succesvol" - -#: ../../../modules/web/Controllers/ErrorController.php:123 -#, fuzzy -msgid "Error en la verificación de la base de datos" -msgstr "Fout bij het checken van de database" - -#: ../../../../lib/SP/Core/Context/SessionContext.php:547 -msgid "La sesión no puede ser inicializada" -msgstr "Sessie kan niet worden geinitaliseerd" - -#: ../../../../lib/SP/Config/ConfigUtil.php:94 -msgid "El directorio \"/config\" no existe" -msgstr "De \"/config\" folder bestaat niet" - -#: ../../../../lib/SP/Config/ConfigUtil.php:100 -msgid "No es posible escribir en el directorio \"config\"" -msgstr "Niet mogelijk om naar de \"/config\" te schrijven" - -#: ../../../../lib/SP/Config/ConfigUtil.php:109 -#, fuzzy -msgid "Los permisos del directorio \"/config\" son incorrectos" -msgstr "De \"/config\" folder permissies zijn incorrect" +#: ../../../modules/web/Controllers/CustomFieldController.php:317 +msgid "Ver Campo" +msgstr "View Field" #: ../../../modules/web/Controllers/ErrorController.php:107 msgid "Aplicación en mantenimiento" @@ -2111,384 +996,1014 @@ msgstr "Applicatie in onderhoud" msgid "En breve estará operativa" msgstr "Een moment geduld" -#: ../../../modules/web/Controllers/LoginController.php:101 -msgid "Finalizar sesión" -msgstr "Uitloggen sessie" - -#: ../../../modules/web/Controllers/LoginController.php:103 -msgid "Tiempo inactivo" -msgstr "Inactieve tijd" - -#: ../../../modules/web/Controllers/LoginController.php:104 -msgid "Tiempo total" -msgstr "Totale tijd" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 -msgid "La aplicación necesita actualizarse" -msgstr "De applicatie dient bijgewerkt te worden" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:43 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 -msgid "Actualizar" -msgstr "Update" - -#: ../../../../lib/SP/Controller/MainActionController.php:91 -#: ../../../../lib/SP/Controller/MainActionController.php:148 -msgid "Actualización" -msgstr "Update" - -#: ../../../../lib/SP/Controller/MainActionController.php:149 -msgid "Actualización de versión realizada." -msgstr "Versie update bijgewerkt" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:113 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:229 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:161 -#: ../../../modules/web/Controllers/ConfigBackupController.php:118 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 -msgid "Versión" -msgstr "Versie" - -#: ../../../../lib/SP/Services/Install/Installer.php:106 +#: ../../../modules/web/Controllers/ErrorController.php:123 #, fuzzy -msgid "Indicar nombre de usuario admin" -msgstr "Vul de admin gebruikersnaam in" +msgid "Error en la verificación de la base de datos" +msgstr "Fout bij het checken van de database" -#: ../../../../lib/SP/Services/Install/Installer.php:108 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 +msgid "Ver Actual" +msgstr "Bekijk Huidig" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:360 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:310 +#: ../../../modules/web/themes/material-blue/views/config/general.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:295 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:440 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:294 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:194 +msgid "Atrás" +msgstr "Terug" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 +msgid "Solicitar Modificación" +msgstr "Aanvraag Modificatie" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 +msgid "Restaurar cuenta desde este punto" +msgstr "Herstel account vanaf dit punt" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:130 +msgid "Guardar" +msgstr "Opslaan" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 +#: ../../../config/actions.xml:439 +msgid "Actualizar Enlace Público" +msgstr "Update Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 +#: ../../../config/actions.xml:433 +msgid "Eliminar Enlace Público" +msgstr "Delete Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 +#: ../../../config/actions.xml:421 +msgid "Crear Enlace Público" +msgstr "Publieke link aanmaken" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 +#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 +msgid "Ver Clave" +msgstr "Bekijk wachtwoord" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 +msgid "Copiar Clave en Portapapeles" +msgstr "Kopieer Wachtwoord naar klembord" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 +#: ../../../config/actions.xml:193 +msgid "Copiar Cuenta" +msgstr "Kopieer Account" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 +#: ../../../config/strings.js.inc:72 +msgid "Clave de Cuenta" +msgstr "Account Wachtwoord" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 +msgid "Más Acciones" +msgstr "Meer acties" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:59 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:34 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:40 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 #, fuzzy -msgid "Usuario admin para acceso a la aplicación" -msgstr "Administratie gebuiker om in te loggen in de applicatie" +msgid "Cliente" +msgstr "Klant" -#: ../../../../lib/SP/Services/Install/Installer.php:113 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 #, fuzzy -msgid "Indicar la clave de admin" -msgstr "Geef het admin wachtwoord op" +msgid "Ordenar por Cliente" +msgstr "Sorteer bij Klant" -#: ../../../../lib/SP/Services/Install/Installer.php:115 -msgid "Clave del usuario admin de la aplicación" -msgstr "Administratie gebruikers wachtwoord" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:43 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:22 +msgid "Nombre" +msgstr "Naam" -#: ../../../../lib/SP/Services/Install/Installer.php:120 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 +msgid "Ordenar por Nombre" +msgstr "Sorteer bij Naam" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:72 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:45 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:51 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:105 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 +msgid "Categoría" +msgstr "Categorie" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 +msgid "Ordenar por Categoría" +msgstr "Sorteer bij Categorie" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:141 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:61 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:149 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:233 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:247 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:24 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:94 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:75 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:77 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 +msgid "Usuario" +msgstr "Gebruiker" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 +msgid "Ordenar por Usuario" +msgstr "Sorteer bij Gebruikersnaam" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:56 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:62 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:128 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:79 +msgid "URL / IP" +msgstr "URL / IP" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 +msgid "Ordenar por URL / IP" +msgstr "Sorteer bij URL / IP" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 +msgid "Eliminar Seleccionados" +msgstr "Verwijder selectie" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:158 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:42 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:44 +msgid "Propietario" +msgstr "Owner" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:175 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:50 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 +msgid "Grupo Principal" +msgstr "Hoofd Groep" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 +#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 +msgid "Buscar Cuenta" +msgstr "Zoeken naar Account" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 +msgid "Cuentas (H)" +msgstr "Accounts (H)" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:122 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:55 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:38 +msgid "Fecha" +msgstr "Datum" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:126 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 +msgid "Estado" +msgstr "Status" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +msgid "Modificada" +msgstr "Aangepast" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 +msgid "Eliminada" +msgstr "Verwijderd" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 +#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 +msgid "Restaurar Cuenta" +msgstr "Account Herstel" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 +msgid "Autorizaciones API" +msgstr "API Autorisaties" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 +msgid "Acción" +msgstr "Actie" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 +msgid "Buscar Token" +msgstr "Zoeken naar Sleutel" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 +msgid "Ver token de Autorización" +msgstr "Bekijk Autorisatie Sleutel" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 +msgid "Eliminar Autorización" +msgstr "Verwijder Autorisatie" + +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 +msgid "Descripción" +msgstr "Omschrijving" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 +#: ../../../config/actions.xml:325 +msgid "Buscar Categoría" +msgstr "Zoeken naar Categorie" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 +#: ../../../config/actions.xml:319 +msgid "Eliminar Categoría" +msgstr "Verwijder Categorie" + +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:66 +msgid "SI" +msgstr "JA" + +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:67 +msgid "NO" +msgstr "NEE" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 +#: ../../../config/actions.xml:355 #, fuzzy -msgid "Indicar la clave maestra" -msgstr "geef het hoofd wachtwoord op" +msgid "Buscar Cliente" +msgstr "Zoeken naar Klant" -#: ../../../../lib/SP/Services/Install/Installer.php:122 +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 +#: ../../../config/actions.xml:349 #, fuzzy -msgid "Clave maestra para encriptar las claves" -msgstr "Hoofd wachtwoord om de wachtwoorden te versleutelen" +msgid "Eliminar Cliente" +msgstr "Verwijder Klant" -#: ../../../../lib/SP/Services/Install/Installer.php:127 -#, fuzzy -msgid "Clave maestra muy corta" -msgstr "Hoofd wachtwoor is te kort" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 +msgid "Campos Personalizados" +msgstr "Aangepaste velden" -#: ../../../../lib/SP/Services/Install/Installer.php:129 -msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" -msgstr "Het hoofd wachtwoord dient uit minimaal 11 karakters te bestaan" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 +msgid "Módulo" +msgstr "Module" -#: ../../../../lib/SP/Services/Install/Installer.php:134 -#, fuzzy -msgid "Indicar el usuario de la BBDD" -msgstr "Geef de database gebruiker op" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:30 +msgid "Tipo" +msgstr "Type" -#: ../../../../lib/SP/Services/Install/Installer.php:136 -#, fuzzy -msgid "Usuario con permisos de administrador de la Base de Datos" -msgstr "Een gebruiker met database administrator rechten" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:120 +msgid "Propiedades" +msgstr "Eigenschappen" -#: ../../../../lib/SP/Services/Install/Installer.php:148 -#, fuzzy -msgid "Indicar el nombre de la BBDD" -msgstr "Geef de database naam op" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 +msgid "Encriptado" +msgstr "Encrypted" -#: ../../../../lib/SP/Services/Install/Installer.php:150 -msgid "Nombre para la BBDD de la aplicación pej. syspass" -msgstr "Applicatie database naam vb. syspass" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 +msgid "Buscar Campo" +msgstr "Zoeken naar Veld" -#: ../../../../lib/SP/Services/Install/Installer.php:155 -msgid "El nombre de la BBDD no puede contener \".\"" -msgstr "Database naam mag geen \".\" bevatten" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 +msgid "Eliminar Campo" +msgstr "Verwijder Veld" -#: ../../../../lib/SP/Services/Install/Installer.php:157 -#, fuzzy -msgid "Elimine los puntos del nombre de la Base de Datos" -msgstr "Verwijder a.u.b punten in de database naam" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 +#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 +#: ../../../config/actions.xml:133 +msgid "Registro de Eventos" +msgstr "Event Log" -#: ../../../../lib/SP/Services/Install/Installer.php:162 -#, fuzzy -msgid "Indicar el servidor de la BBDD" -msgstr "Geef de database server op" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:99 +msgid "ID" +msgstr "ID" -#: ../../../../lib/SP/Services/Install/Installer.php:164 -msgid "Servidor donde se instalará la Base de Datos" -msgstr "Server waar de database geinstalleerd wordt" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 +msgid "Fecha / Hora" +msgstr "Datum / Tijd" -#: ../../../../inc/SP/Core/Installer.class.php:238 -msgid "No es posible comprobar el usuario de sysPass" -msgstr "Niet mogelijk om de syspass gebruiker te controleren" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 +msgid "Nivel" +msgstr "Niveau" -#: ../../../../lib/SP/Services/Install/MySQL.php:137 -#, fuzzy -msgid "Compruebe los permisos del usuario de conexión a la BD" -msgstr "Check a.u.b de DB connectie gebruikers rechten" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 +msgid "Evento" +msgstr "Evenement" -#: ../../../../lib/SP/Services/Install/MySQL.php:201 -msgid "La BBDD ya existe" -msgstr "De database bestaat al" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 +msgid "Login" +msgstr "Inloggen" -#: ../../../../lib/SP/Services/Install/MySQL.php:203 -#, fuzzy -msgid "Indique una nueva Base de Datos o elimine la existente" -msgstr "Geef een nieuwe database of verwijder de huidige" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 +msgid "IP" +msgstr "IP" -#: ../../../../inc/SP/Core/Installer.class.php:316 -#: ../../../../inc/SP/Core/Installer.class.php:419 -#, fuzzy -msgid "Error al crear la BBDD" -msgstr "Fout bij het creeeren van de DB" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 +msgid "Buscar Evento" +msgstr "Zoeken naar Gebeurtenis" -#: ../../../../lib/SP/Services/Install/MySQL.php:215 -#: ../../../../lib/SP/Services/Install/MySQL.php:239 -#, fuzzy -msgid "Verifique los permisos del usuario de la Base de Datos" -msgstr "Controleer database gebruiker rechten aub." - -#: ../../../../lib/SP/Services/Install/MySQL.php:305 -msgid "El archivo de estructura de la BBDD no existe" -msgstr "Het database structuurbestand bestaat niet" - -#: ../../../../lib/SP/Services/Install/MySQL.php:307 -msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." -msgstr "" -"Niet mogelijk om de applicatie database aan te maken. Download hem opnieuw " -"aub." - -#: ../../../../lib/SP/Services/Install/MySQL.php:290 -#, fuzzy -msgid "Error al seleccionar la BBDD" -msgstr "Fout tijdens het selecteren database" - -#: ../../../../lib/SP/Services/Install/MySQL.php:311 -msgid "" -"No es posible usar la Base de Datos para crear la estructura. Compruebe los " -"permisos y que no exista." -msgstr "" -"Kan de database niet gebruiken, controleer de login gegevens en de rechten." - -#: ../../../../lib/SP/Services/Install/MySQL.php:331 -msgid "Error al crear la estructura de la Base de Datos." -msgstr "Fout tijdens het maken van de database structuur" - -#: ../../../../lib/SP/Services/Install/Installer.php:318 -#: ../../../../lib/SP/Services/Install/Installer.php:369 -msgid "Informe al desarrollador" -msgstr "Waarschuw de ontwikkelaar" - -#: ../../../../inc/SP/Core/Installer.class.php:484 -#, fuzzy -msgid "Error al actualizar la clave maestra del usuario \"admin\"" -msgstr "" -"Fout tijdens het veranderen van het Hoofd wachtoord voor de \"admin\" " -"gebruiker" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:141 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:188 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:193 -msgid "No es posible conectar con el servidor de LDAP" -msgstr "Niet mogelijk om te verbinden met de LDAP server" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:231 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:237 -msgid "Error al conectar (BIND)" -msgstr "Connectie probleem (BIND)" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:249 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:254 -msgid "Error al buscar objetos en DN base" -msgstr "Fout bij zoeken naar objecten in de base DN" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:119 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:125 -#, fuzzy -msgid "Error al buscar RDN de grupo" -msgstr "Fout bij zoeken in groep RDN" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:200 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:204 -#, fuzzy -msgid "Error al localizar el usuario en LDAP" -msgstr "Fout bij het zoeken gebruiker in DLS" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:139 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:120 -msgid "Error al buscar el grupo de usuarios" -msgstr "Fout bij het zoeken gebruikers groep" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:109 -msgid "Usuario verificado en grupo" -msgstr "Gebruiker in groep geverifieerd" - -#: ../../../../inc/SP/Controller/EventlogController.class.php:102 -msgid "Vaciar Eventos" -msgstr "Schoon events op" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 +msgid "Refrescar" +msgstr "Refresh" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:199 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 #, fuzzy msgid "Vaciar registro de eventos" msgstr "Event log opschonen" -#: ../../../../lib/SP/Services/Client/ClientService.php:76 -#: ../../../../lib/SP/Services/Client/ClientService.php:95 -#: ../../../../lib/SP/Services/Client/ClientService.php:110 -#, fuzzy -msgid "Cliente no encontrado" -msgstr "Klant niet gevonden" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:280 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 +#: ../../../config/actions.xml:19 +msgid "Archivos" +msgstr "Bestanden" -#: ../../../../inc/SP/Mgmt/Users/User.class.php:246 -#, fuzzy -msgid "Error al obtener los usuarios" -msgstr "Fout bij het ophalen van gebruikers" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:25 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:30 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:23 +msgid "Cuenta" +msgstr "Account" -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:52 -msgid "Migrar Perfiles" -msgstr "Migreer profielen" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:82 -#, fuzzy -msgid "Error al obtener perfiles" -msgstr "Fout bij het ophalen van profielen" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:144 -msgid "Operación realizada correctamente" -msgstr "Operatie succesvol" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:149 -#, fuzzy -msgid "Fallo al realizar la operación" -msgstr "Fout bij het uitvoeren van het process" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:110 +msgid "Tamaño" +msgstr "Grootte" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 -#: ../../../config/actions.xml:655 -msgid "Eliminar Perfil" -msgstr "Verwijder Profiel" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:119 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:68 -msgid "Formato de XML inválido" -msgstr "Ongeldig XML formaat" - -#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:122 -msgid "No es posible obtener la plantilla \"%s\" : %s" -msgstr "Niet mogelijk om \"%s\" template: %s op te halen" - -#: ../../../../lib/SP/Mvc/View/Template.php:274 -#: ../../../../lib/SP/Mvc/View/Template.php:276 -msgid "No es posible obtener la variable \"%s\"" -msgstr "Niet mogelijk om \"%s\" variable op te halen" - -#: ../../../../lib/SP/Mvc/View/Template.php:322 -#: ../../../../lib/SP/Mvc/View/Template.php:324 -msgid "No es posible destruir la variable \"%s\"" -msgstr "Niet mogelijk om de \"%s\" variabele terug te zetten" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:175 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:179 -#, fuzzy -msgid "Error al aplicar la actualización de la Base de Datos" -msgstr "Fout bij het updaten van de database" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:72 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:98 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:106 -msgid "Compruebe el registro de eventos para más detalles" -msgstr "Check a.u.b de event log voor meer details" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 -msgid "Acceder" -msgstr "Aanmelden" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:96 -#, fuzzy -msgid "Error al aplicar la actualización auxiliar" -msgstr "Fout tijdens het uitvoeren van de extra update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:89 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:120 -msgid "Actualizar BBDD" -msgstr "Bijwerken DB" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:155 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:159 -msgid "No es necesario actualizar la Base de Datos." -msgstr "Database update niet nodig" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 -msgid "Actualización de la Base de Datos realizada correctamente." -msgstr "Database update succesvol" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:70 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:202 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:228 -msgid "Actualizar Configuración" -msgstr "Bijwerken configuratie" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:240 -msgid "No se pudo realizar la petición de cambio de clave." -msgstr "Kon de aanvraag voor het veranderen van het wachtwoord niet uitvoeren." +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:145 +#: ../../../config/actions.xml:475 +msgid "Buscar Archivo" +msgstr "Zoeken naar Bestand" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:51 +#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 +msgid "Ver Archivo" +msgstr "Bekijk bestand" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:42 +#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 +msgid "Descargar Archivo" +msgstr "Download bestand" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:34 +#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 +msgid "Eliminar Archivo" +msgstr "Verwijder Bestand" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 +msgid "Valores Predeterminados" +msgstr "Preset Values" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:274 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:277 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:233 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:148 +msgid "Grupo" +msgstr "Groep" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:131 +msgid "Perfil" +msgstr "Profiel" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 +msgid "Prioridad" +msgstr "Priority" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 +msgid "Forzado" +msgstr "Forced" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 +#: ../../../config/actions.xml:853 +msgid "Buscar Valor" +msgstr "Search for Value" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 +msgid "Valor de Permiso" +msgstr "Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 +msgid "Nuevo Valor de Permiso" +msgstr "New Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 +msgid "Valor de Cuenta Privada" +msgstr "Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 +msgid "Nuevo Valor de Cuenta Privada" +msgstr "New Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 +msgid "Valor de Timeout de Sesión" +msgstr "Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 +msgid "Nuevo Valor de Timeout de Sesión" +msgstr "New Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 +msgid "Valor de Clave de Cuentas" +msgstr "Account Password Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 +msgid "Nuevo Valor de Clave de Cuentas" +msgstr "New Account Password Preset" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: ../../../modules/web/Controllers/ItemPresetController.php:239 +#: ../../../config/actions.xml:871 +msgid "Editar Valor" +msgstr "Edit Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 +#: ../../../config/actions.xml:877 +msgid "Eliminar Valor" +msgstr "Delete Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 +#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 +#: ../../../config/actions.xml:679 +msgid "Notificaciones" +msgstr "Notificaties" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:42 +msgid "Componente" +msgstr "Onderdeel" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:111 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:115 +msgid "Leída" +msgstr "Lees" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 +msgid "Sólo Admins" +msgstr "Only Admins" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:164 +#: ../../../config/actions.xml:841 +msgid "Buscar Notificación" +msgstr "Zoeken naar Notificatie" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:180 +#: ../../../modules/web/Controllers/NotificationController.php:194 +msgid "Nueva Notificación" +msgstr "Nieuw bericht" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:198 +#: ../../../modules/web/Controllers/NotificationController.php:113 +#: ../../../config/actions.xml:811 +msgid "Ver Notificación" +msgstr "Toon Notificatie" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:228 +#: ../../../config/actions.xml:835 +msgid "Marcar Notificación" +msgstr "Afrekenen Melding" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:246 +#: ../../../modules/web/Controllers/NotificationController.php:226 +#: ../../../config/actions.xml:823 +msgid "Editar Notificación" +msgstr "Wijzig bericht" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:263 +#: ../../../config/actions.xml:829 +msgid "Eliminar Notificación" +msgstr "Verwijder Notificatie" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:331 +#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 +msgid "Plugins" +msgstr "Plugins" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 +msgid "Plugin" +msgstr "Plugin" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 +msgid "No disponible" +msgstr "Unavailable" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 +#: ../../../config/actions.xml:547 +msgid "Buscar Plugin" +msgstr "Zoeken naar Plugin" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 +#: ../../../modules/web/Controllers/PluginController.php:136 +#: ../../../config/actions.xml:541 +msgid "Ver Plugin" +msgstr "Plugin Weergeven" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 +msgid "Habilitar" +msgstr "Inschakelen" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 +msgid "Deshabilitar" +msgstr "Uitschakelen" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 +msgid "Restablecer Datos" +msgstr "Reset Data" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:49 +msgid "Enlaces" +msgstr "Links" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:51 +msgid "Fecha Creación" +msgstr "Aanmaakdatum" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:59 +msgid "Fecha Caducidad" +msgstr "Verloopdatum" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:43 +msgid "Notificar" +msgstr "Bericht" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:14 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:75 +msgid "Visitas" +msgstr "Bezoekers" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:149 +msgid "Buscar Enlace" +msgstr "Zoeken naar Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:165 +msgid "Nuevo Enlace" +msgstr "New Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:183 +#: ../../../modules/web/Controllers/PublicLinkController.php:357 +msgid "Ver Enlace" +msgstr "Bekijk Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:199 +msgid "Renovar Enlace" +msgstr "Vernieuw Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:216 +msgid "Eliminar Enlace" +msgstr "Verwijder Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:211 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 +msgid "Etiquetas" +msgstr "Tags" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:135 +#: ../../../config/actions.xml:529 +msgid "Buscar Etiqueta" +msgstr "Zoeken naar Label" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: ../../../modules/web/Controllers/TagController.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:226 +#: ../../../config/actions.xml:505 +msgid "Nueva Etiqueta" +msgstr "Nieuw Label" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: ../../../modules/web/Controllers/TagController.php:168 +#: ../../../config/actions.xml:517 +msgid "Editar Etiqueta" +msgstr "Bewerk Label" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:186 +#: ../../../config/actions.xml:523 +msgid "Eliminar Etiqueta" +msgstr "Verwijder Label" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 +msgid "Tracks" +msgstr "Tracks" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 +msgid "Fecha Desbloqueo" +msgstr "Date Unlocked" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 +msgid "Origen" +msgstr "Doel" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 +#: ../../../config/actions.xml:889 +msgid "Buscar Track" +msgstr "Search for track" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:156 +#: ../../../config/actions.xml:601 +msgid "Buscar Usuario" +msgstr "Zoeken naar Gebruiker" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:172 +#: ../../../modules/web/Controllers/UserController.php:115 +#: ../../../config/actions.xml:577 +msgid "Nuevo Usuario" +msgstr "Nieuwe Gebruiker" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:190 +#: ../../../modules/web/Controllers/UserController.php:200 +#: ../../../config/actions.xml:583 +msgid "Editar Usuario" +msgstr "Wijzig Gebruiker" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:207 #: ../../../config/actions.xml:589 msgid "Eliminar Usuario" msgstr "Verwijder Gebruiker" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:40 -msgid "Usuario de LDAP" -msgstr "LDAP Gebruiker" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:224 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:460 +msgid "Importar usuarios de LDAP" +msgstr "Imoporteer gebruikers van LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:122 -msgid "Activación Cuenta" -msgstr "Account Activatie" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:242 +msgid "Ver Detalles de Usuario" +msgstr "Bekijk gebruiker Details" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:123 -msgid "Su cuenta está pendiente de activación." -msgstr "Uw account is in behandeling" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:259 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 +msgid "Cambiar Clave de Usuario" +msgstr "Wijzig Gebruikers Wachtwoord" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:124 -msgid "En breve recibirá un email de confirmación." -msgstr "Uw krijgt binnenkort een bevestigings email" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 +#: ../../../config/actions.xml:631 +msgid "Buscar Grupo" +msgstr "Zoeken naar Groep" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:131 -msgid "Nuevo usuario de LDAP" -msgstr "Nieuwe LDAP Gebruiker" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: ../../../modules/web/Controllers/UserGroupController.php:117 +#: ../../../config/actions.xml:613 +msgid "Nuevo Grupo" +msgstr "Nieuwe Groep" -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:152 -#, fuzzy -msgid "Error al migrar grupo del usuario" -msgstr "Fout bij het migreren van de Gebruikers Groep" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: ../../../modules/web/Controllers/UserGroupController.php:344 +#: ../../../config/actions.xml:607 +msgid "Ver Grupo" +msgstr "Bekijk Groep" -#: ../../../modules/web/Controllers/InstallController.php:62 -msgid "Versión de PHP requerida >= " -msgstr "Vereiste PHP versie >=" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: ../../../modules/web/Controllers/UserGroupController.php:188 +#: ../../../config/actions.xml:619 +msgid "Editar Grupo" +msgstr "Wijzig Broep" -#: ../../../../lib/SP/Bootstrap.php:269 -msgid "" -"Actualice la versión de PHP para que la aplicación funcione correctamente" -msgstr "Update a.u.b de PHP versie om gebruik te kunnen maken van SysPass" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 +#: ../../../config/actions.xml:625 +msgid "Eliminar Grupo" +msgstr "Verwijder Groep" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 +msgid "Perfiles" +msgstr "Profielen" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 +#: ../../../config/actions.xml:661 +msgid "Buscar Perfil" +msgstr "Zoeken naar Profiel" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: ../../../modules/web/Controllers/UserProfileController.php:110 +#: ../../../config/actions.xml:643 +msgid "Nuevo Perfil" +msgstr "Nieuw Profiel" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 +msgid "Ver Detalles de Perfil" +msgstr "Bekijk Profiel Details" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: ../../../modules/web/Controllers/UserProfileController.php:177 +#: ../../../config/actions.xml:649 +msgid "Editar Perfil" +msgstr "Wijzig Profiel" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 +#: ../../../config/actions.xml:655 +msgid "Eliminar Perfil" +msgstr "Verwijder Profiel" + +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:262 +msgid "Buscar" +msgstr "zoek" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:345 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 +#: ../../../config/actions.xml:685 +msgid "Configuración" +msgstr "Configuratie" #: ../../../modules/web/Controllers/InstallController.php:59 msgid "Módulo no disponible" @@ -2498,30 +2013,57 @@ msgstr "Module niet beschikbaar" msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Zonder deze module kan de applicatie niet goed werken" -#: ../../../../inc/SP/Core/XmlExport.class.php:133 -msgid "Exportar XML" -msgstr "XML Export" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:73 +#: ../../../config/actions.xml:859 +msgid "Ver Valor" +msgstr "Display Value" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:545 -#, fuzzy -msgid "Error al crear el archivo XML" -msgstr "Fout bij het maken van het XML bestand" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:207 +#: ../../../config/actions.xml:865 +msgid "Nuevo Valor" +msgstr "New Value" -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:110 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:81 -#, fuzzy -msgid "No es posible procesar el archivo XML" -msgstr "XML bestand kan niet verwerkt worden" +#: ../../../modules/web/Controllers/ItemsController.php:130 +msgid "No hay no hay notificaciones pendientes" +msgstr "En zijn geen openstaande berichten" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:105 -msgid "Archivo XML no soportado" -msgstr "XML bestand wordt niet ondersteund" +#: ../../../modules/web/Controllers/ItemsController.php:131 +#, php-format +msgid "Hay notificaciones pendientes: %d" +msgstr "There are pending notifications: %d" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:107 -msgid "No es posible detectar la aplicación que exportó los datos" -msgstr "Kon de applicatie waar de data van geexporteerd was niet vinden" +#: ../../../modules/web/Controllers/PublicLinkController.php:114 +msgid "Nuevo Enlace Público" +msgstr "New Public Link" + +#: ../../../modules/web/Controllers/PublicLinkController.php:204 +msgid "Editar Enlace Público" +msgstr "Edit Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/TagController.php:302 +#: ../../../config/actions.xml:511 +msgid "Ver Etiqueta" +msgstr "View Tag" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserController.php:458 +#: ../../../config/actions.xml:571 +msgid "Ver Usuario" +msgstr "Bekijk Gebruiker" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserProfileController.php:326 +#: ../../../config/actions.xml:637 +msgid "Ver Perfil" +msgstr "Bekijk Profiel" + +#: ../../../modules/web/Controllers/UserSettingsManagerController.php:87 +msgid "Preferencias" +msgstr "Voorkeuren" -#: ../../../../lib/SP/Storage/Database/QueryData.php:354 #: ../../../config/strings.js.inc:26 #, fuzzy msgid "Error en la consulta" @@ -2576,12 +2118,11 @@ msgid "Borrar elemento?" msgstr "Verwijder item" #: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:31 msgid "Página no encontrada" msgstr "Pagina niet gevonden" -#: ../../../modules/web/Controllers/AccountFileController.php:108 #: ../../../config/strings.js.inc:40 msgid "Archivo no soportado para visualizar" msgstr "Bestand niet geschikt voor voorbeeld weergave" @@ -2602,54 +2143,58 @@ msgstr "Teveel bestanden" msgid "Tamaño de archivo no permitido" msgstr "Bestandsgrootte niet toegestaan" +#: ../../../config/strings.js.inc:45 +msgid "Extensión no permitida" +msgstr "Extensie niet toegestaan" + #: ../../../config/strings.js.inc:46 #, fuzzy msgid "Vaciar el registro de eventos?" msgstr "Opschonen van event log?" #: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:281 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:253 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:152 msgid "Seleccionar Grupo" msgstr "Selecteer Groep" #: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:81 msgid "Seleccionar Usuario" msgstr "Selecteer Gebruiker" #: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:135 msgid "Seleccionar Perfil" msgstr "Selecteer Profiel" #: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:84 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 #, fuzzy msgid "Seleccionar Cliente" msgstr "Selecteer Klant" #: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:41 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 msgid "Seleccionar Categoría" msgstr "Selecteer Categorie" @@ -2682,54 +2227,44 @@ msgid "Mostrar Clave" msgstr "Toon Wachtwoord" #: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:24 msgid "Copiar Usuario" msgstr "Kopieer Gebruikersnaam" #. (itstool) path: action/text #: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:41 #: ../../../config/actions.xml:199 ../../../config/actions.xml:271 msgid "Copiar Clave" msgstr "Kopieer Wachtwoord" #: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 msgid "Incluir Números" msgstr "Inclusief Nummers" #: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 msgid "Incluir Mayúsculas" msgstr "Inclusief Hoofdletters" #: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 #, fuzzy msgid "Incluir Símbolos" msgstr "Inclusief Symbolen" #: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 msgid "Longitud" msgstr "Lengte" #: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 msgid "Seleccionar Acción" msgstr "Selecteer Actie" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:66 -msgid "SI" -msgstr "JA" - -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:67 -msgid "NO" -msgstr "NEE" - #: ../../../config/strings.js.inc:68 msgid "Aceptar" msgstr "Accepteer" @@ -2746,2776 +2281,19 @@ msgstr "Wachtwoord gekopieerd naar klembord" msgid "Error al copiar al portapapeles" msgstr "Fout bij kopieren naar klembord" -#: ../../../modules/web/Controllers/AccountController.php:149 -#: ../../../modules/web/Controllers/AccountController.php:204 -#: ../../../modules/web/Controllers/AccountController.php:474 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 -msgid "Detalles de Cuenta" -msgstr "Account details" - -#: ../../../modules/web/Controllers/AccountController.php:432 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 -msgid "Modificar Clave de Cuenta" -msgstr "Wijzig Account Wachtwoord" - -#: ../../../../lib/SP/Plugin/PluginManager.php:246 -#: ../../../modules/api/Controllers/AccountController.php:71 -#: ../../../modules/api/Controllers/AccountController.php:103 -#: ../../../modules/api/Controllers/AccountController.php:139 -#: ../../../modules/api/Controllers/AccountController.php:185 -#: ../../../modules/api/Controllers/AccountController.php:235 -#: ../../../modules/api/Controllers/AccountController.php:310 -#: ../../../modules/api/Controllers/CategoryController.php:63 -#: ../../../modules/api/Controllers/CategoryController.php:92 -#: ../../../modules/api/Controllers/CategoryController.php:122 -#: ../../../modules/api/Controllers/CategoryController.php:151 -#: ../../../modules/api/Controllers/ClientController.php:64 -#: ../../../modules/api/Controllers/ClientController.php:94 -#: ../../../modules/api/Controllers/ClientController.php:125 -#: ../../../modules/api/Controllers/ClientController.php:154 -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:90 -#: ../../../modules/api/Controllers/TagController.php:119 -#: ../../../modules/api/Controllers/TagController.php:148 -#: ../../../modules/api/Controllers/UserGroupController.php:62 -#: ../../../modules/api/Controllers/UserGroupController.php:92 -#: ../../../modules/api/Controllers/UserGroupController.php:123 -#: ../../../modules/api/Controllers/UserGroupController.php:152 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/Controllers/UserGroupController.php:265 -#: ../../../modules/web/Controllers/UserGroupController.php:304 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 -msgid "Nombre" -msgstr "Naam" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 -msgid "Módulo" -msgstr "Module" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 -msgid "Eliminar Campo" -msgstr "Verwijder Veld" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Laatste backup" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -#, fuzzy -msgid "No se encontraron backups" -msgstr "Er zijn geen backups beschikbaar" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "Última exportación" -msgstr "Laatste export" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "No se encontró archivo de exportación" -msgstr "Geen export bestand gevonden" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:63 -msgid "Información" -msgstr "Informatie" - -#: ../../../modules/web/Controllers/EventlogController.php:119 -#: ../../../modules/web/Controllers/EventlogController.php:122 -msgid "Registro de eventos vaciado" -msgstr "Event log opgeschoond" - -#: ../../../../lib/SP/Repositories/EventLog/EventlogRepository.php:53 -#, fuzzy -msgid "Error al vaciar el registro de eventos" -msgstr "Fout bij opschonen Event Log" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 -msgid "Admin Aplicación" -msgstr "Applicatie Admin" - -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:265 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:58 -msgid "Buscar" -msgstr "zoek" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:103 -msgid "Usuarios y Accesos" -msgstr "Gebruikers en Toegang" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:43 -msgid "Elementos y Personalización" -msgstr "Onderdelen en Aanpassingen" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 -#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 -#: ../../../config/actions.xml:133 -msgid "Registro de Eventos" -msgstr "Event Log" - -#: ../../../modules/web/Controllers/InstallController.php:82 -msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" -msgstr "Deze PHP versie is kwetsbaar voor NULL Byte attack CVE-2006-7243)" - -#: ../../../modules/web/Controllers/InstallController.php:83 -msgid "Actualice la versión de PHP para usar sysPass de forma segura" -msgstr "" -"Update a.u.b de PHP versie om gebruik te kunnen maken van een veilige SysPass" - -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "No se encuentra el generador de números aleatorios." -msgstr "Willekeurige wachtwoord generator niet gevonden" - -#: ../../../modules/web/Controllers/InstallController.php:90 -msgid "" -"Sin esta función un atacante puede utilizar su cuenta al resetear la clave" -msgstr "" -"Zonder deze functie kan een hacker uw account overnemen bij een wachtwoord " -"herstel actie" - -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "Instalación finalizada" -msgstr "Installatie afgerond" - -#: ../../../../inc/SP/Controller/MainController.class.php:492 -msgid "Descargar nueva versión" -msgstr "Download nieuwe versie" - -#: ../../../config/strings.js.inc:95 -msgid "Avisos de sysPass" -msgstr "sysPass Mededelingen" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 -#, fuzzy -msgid "Ordenar por Cliente" -msgstr "Sorteer bij Klant" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 -msgid "Ordenar por Nombre" -msgstr "Sorteer bij Naam" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 -msgid "Ordenar por Categoría" -msgstr "Sorteer bij Categorie" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 -msgid "Ordenar por Usuario" -msgstr "Sorteer bij Gebruikersnaam" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 -msgid "Ordenar por URL / IP" -msgstr "Sorteer bij URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 -msgid "URL / IP" -msgstr "URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 -msgid "Propiedades" -msgstr "Eigenschappen" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 -#, fuzzy -msgid "Admin Cuentas" -msgstr "Account Admin" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:41 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 -msgid "Deshabilitado" -msgstr "Uitgeschakeld" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 -msgid "Ver Detalles de Usuario" -msgstr "Bekijk gebruiker Details" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:62 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:120 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:126 -msgid "Cambiar Clave de Usuario" -msgstr "Wijzig Gebruikers Wachtwoord" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 -msgid "Ver Detalles de Perfil" -msgstr "Bekijk Profiel Details" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 -msgid "Ver token de Autorización" -msgstr "Bekijk Autorisatie Sleutel" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:409 -msgid "Token de autorización visualizado" -msgstr "Autorisatie sleutel bekeken" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:407 -msgid "Autorizaciones" -msgstr "Authorisaties" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 -msgid "Seguridad" -msgstr "Beveiliging" - -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:89 -msgid "Preferencias" -msgstr "Voorkeuren" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 -msgid "Nombre de cuenta" -msgstr "Account naam" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 -msgid "URL o IP de acceso" -msgstr "Toegang URL of IP" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 -msgid "Usuario de acceso" -msgstr "Toegang gebruiker" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 -msgid "Clave (repetir)" -msgstr "Wachtwoord (Herhaal)" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 -msgid "Notas" -msgstr "Notities" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 -msgid "Notas sobre la cuenta" -msgstr "Notities voor het account" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 -msgid "Permisos" -msgstr "Permissies" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:53 -msgid "Hablitar edición" -msgstr "Activeer Wijzigen" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 -msgid "Grupo Principal" -msgstr "Hoofd Groep" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Soltar archivos aquí (max. 5) o click para seleccionar" -msgstr "Drop bestanden hier (max. 5) of klik om te selecteren" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 -msgid "Tamaño máximo de archivo" -msgstr "Maximale bestandsgrootte" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 -msgid "Historial" -msgstr "Geschiedenis" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 -msgid "Seleccionar fecha" -msgstr "Selecteer data" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 -msgid "Última Modificación" -msgstr "Laatste Aanpassing" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 -msgid "Visitas" -msgstr "Bezoekers" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 -msgid "Fecha Alta" -msgstr "Datum toegevoegd" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 -msgid "Creador" -msgstr "Maker" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Usuarios Secundarios" -msgstr "Secundaire Gebruikers" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 -msgid "Grupos Secundarios" -msgstr "Secundaire Groepen" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Fecha Edición" -msgstr "Datum Aangepast" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 -msgid "Editor" -msgstr "Bewerker" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 -msgid "Restaurar cuenta desde este punto" -msgstr "Herstel account vanaf dit punt" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 -msgid "Copiar Clave en Portapapeles" -msgstr "Kopieer Wachtwoord naar klembord" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 -msgid "Ver Actual" -msgstr "Bekijk Huidig" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:49 -#: ../../../modules/web/themes/material-blue/views/_partials/error.inc:14 -#: ../../../modules/web/themes/material-blue/views/_partials/error.inc:15 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:13 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 -#: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 -#: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 -msgid "Volver" -msgstr "Terug" - -#: ../../../../inc/themes/material-blue/views/account/actions.inc:146 -msgid "Modificar Cuenta" -msgstr "Bewerk Account" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 -msgid "Solicitar Modificación" -msgstr "Aanvraag Modificatie" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:51 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 -msgid "Guardar" -msgstr "Opslaan" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 -msgid "Resultado" -msgstr "Resultaat" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 -msgid "Descargar Actual" -msgstr "Download Huidig" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 -#, fuzzy -msgid "No hay backups para descargar" -msgstr "Er zijn geen backups te downloaden" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:52 -#: ../../../config/strings.js.inc:79 -msgid "Ayuda" -msgstr "Help" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 -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 "" -"De backup zorgt ervoor dat de configuratie en database kan worden " -"opgeslagen. " - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 -#, fuzzy -msgid "" -"Con este método es posible guardar todos los datos de sysPass en otro lugar " -"o utilizarlos para hacer la aplicación portable." -msgstr "" -"Deze optie zorgt ervoor dat alle syspass data extern kan worden opgeslagen " -"en gebruikt" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 -msgid "Exportar Cuentas" -msgstr "Exporteer Accounts" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -#, fuzzy -msgid "No hay archivos XML para descargar" -msgstr "Er zijn geen bestanden te downloaden" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 -msgid "Clave de Exportación" -msgstr "Exporteer Wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 -msgid "Clave de Exportación (repetir)" -msgstr "Exporteer Wachtwoord (herhaal)" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 -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 "" -"De gebruikers export zorgt ervoor dat deze kunnen worden geëxporteerd voor " -"in een andere syspass instantie." - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 -#, fuzzy -msgid "" -"Las claves de las cuentas son exportadas de forma encriptada para mayor " -"seguridad." -msgstr "" -"De wachtwoorden zijn versleuteld geëxporteerd vanwege extra beveiliging." - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 -msgid "" -"Es posible establecer una clave de exportación para guardar todos los datos " -"encriptados en el archivo XML." -msgstr "" -"Het is mogelijk om een export wachtwoord in te stellen om de data beveiligd " -"op te slaan in een XML bestand" - -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 -#, fuzzy -msgid "Javascript es necesario para el correcto funcionamiento" -msgstr "Javascript is benodigd om dit correct uit te voeren." - -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 -msgid "Nombre de la categoría" -msgstr "Categorie Naam" - -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 -msgid "Descripción de la categoría" -msgstr "Categorie Omschrijving" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 -msgid "Sitio" -msgstr "Site" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 -msgid "Idioma" -msgstr "Taal" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 -msgid "" -"Establece el idioma global de la aplicación. Es posible establecer un idioma " -"por usuario en las preferencias." -msgstr "Stel de algemene taal in. Per gebruiker is dit aan te passen." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 -msgid "Tema Visual" -msgstr "Visueel Thema" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 -#, fuzzy -msgid "" -"Establece el tema visual global de la aplicación. Es posible establecer un " -"tema visual por usuario en las preferencias." -msgstr "Stel het algemene thema in, dit is per gebruiker aan te passen." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 -msgid "Timeout de sesión (s)" -msgstr "Sessie Timeout(s)" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 -msgid "Habilitar log de eventos" -msgstr "Activeer Event Log" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 -msgid "Guarda las acciones realizadas en la aplicación." -msgstr "Slaat de acties van de applicatie op." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 -msgid "Habilitar depuración" -msgstr "Activeer debugging" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 -msgid "" -"Muestra información relativa a la configuración de la aplicación y " -"rendimiento." -msgstr "Laat informatie over de applicatie en prestaties." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 -msgid "Modo mantenimiento" -msgstr "Onderhouds mode" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 -#, fuzzy -msgid "" -"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " -"necesario modificar el archivo de configuración." -msgstr "In deze modus kan niemand inloggen. Sla de configuratie wel op." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 -msgid "Comprobar actualizaciones" -msgstr "Check voor updates" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 -msgid "" -"Comprobar actualizaciones de la aplicación (sólo para los usuarios " -"administradores)." -msgstr "Check voor applicatie updates (alleen voor administrators)" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 -msgid "Comprobar notificaciones" -msgstr "Check voor mededelingen" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 -#, fuzzy -msgid "" -"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " -"para los usuarios administradores)." -msgstr "" -"Controleer syspass beveiligingsfouten of andere meldingen (Alleen voor " -"administrators)" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 -msgid "Nombre de cuenta como enlace" -msgstr "Account naam als link" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 -msgid "" -"Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " -"de la cuenta." -msgstr "Activeer gebruikersnaam als link naar het account." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 -msgid "Gestión de archivos" -msgstr "Bestands Management" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 -#, fuzzy -msgid "Habilita la subida/descarga de archivos para las cuentas." -msgstr "Activeer uploads/downloads van gebruikersbestanden" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 -msgid "Búsquedas globales" -msgstr "Global zoek actie" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 -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 "" -"Laat toe dat gebruikers kunnen zoeken, zodra zij geen rechten hebben zal het " -"niet worden weergegeven." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 -msgid "Extensiones de archivos permitidas" -msgstr "Bestands extensies toegestaan" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 -#, fuzzy -msgid "Extensiones permitidas para la subida de archivos." -msgstr "Extensies die zijn toegestaan om te uploaden." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:267 -msgid "Se permite un máximo de 4 caracteres." -msgstr "Max 4 karakters toegestaan" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 -msgid "" -"Escribir extensión y pulsar intro para añadir. Es necesario guardar la " -"configuración." -msgstr "" -"Typ de extensie en druk op enter. Vergeet hierna niet de configuratie op te " -"slaan." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 -msgid "Establece el tamaño máximo para subir archivos." -msgstr "Stel de maximale grootte in voor uploads." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 -msgid "El máximo absuluto es de 16MB." -msgstr "De absolute maximale grootte is 16MB." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 -msgid "Resultados por página" -msgstr "Resultaten per pagina" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 -msgid "Número de resultados por página a mostrar, al realizar una búsqueda." -msgstr "Aantal " - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 -msgid "Resultados en Tarjetas" -msgstr "Resultaat like Kaarten" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 -#, fuzzy -msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." -msgstr "" -" Maakt het mogelijk rekening te houden met de zoekresultaten als een " -"kaartformaat te laten zien." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 -msgid "Imagen para mostrar clave" -msgstr "Afbeelding om wachtwoord te tonen" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 -msgid "Generar una imagen con el texto de la clave de la cuenta." -msgstr "Genereerd een plaatje met de tekst van het wachtwoord van je account. " - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 -msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." -msgstr "" -"Nuttig voor omgevingen waar het kopiëren van een wachtwoord naar het " -"klembord " - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 -#, fuzzy -msgid "Nombre del cliente" -msgstr "Klantnaam" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 -#, fuzzy -msgid "Descripción del cliente" -msgstr "Klant omschrijving" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 -msgid "Texto Ayuda" -msgstr "Help Tekst" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 -msgid "Obligatorio" -msgstr "Vereist" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 -msgid "Clave Maestra" -msgstr "Hoofd wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 -#, fuzzy -msgid "Último cambio" -msgstr "Laatste Wijziging" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 -msgid "Clave Maestra actual" -msgstr "Huidig hoofd wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 -msgid "Nueva Clave Maestra" -msgstr "Nieuw Hoofd Wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 -msgid "Nueva Clave Maestra (repetir)" -msgstr "Nieuw Hoofd Wachtwoord (herhaal)" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 -msgid "No modificar cuentas" -msgstr "Pas niet de accounts aan" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 -msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" -msgstr "" -"Stelt een nieuw master wachtwoord in zonder opnieuw de wachtwoorden te " -"beveiligen. " - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 -#, fuzzy -msgid "Confirmar cambio" -msgstr "Bevestig wijziging" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 -msgid "Guarde la nueva clave en un lugar seguro." -msgstr "Bewaar het nieuwe wachtwoord op een veilige plek." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 -msgid "Se volverán a encriptar las claves de todas las cuentas." -msgstr "Alle account zullen opnieuw worden versleuteld." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 -msgid "Los usuarios deberán de introducir la nueva clave maestra." -msgstr "Gebruikers moeten het nieuwe master wachtwoord invoeren." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 -#, fuzzy -msgid "" -"La clave maestra es utilizada para encriptar las claves de las cuentas de " -"sysPass para mantenerlas seguras." -msgstr "" -"Het master wachtwoord word gebruikt om alle wachtwoorden veilig te " -"versleutelen." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 -#, fuzzy -msgid "" -"Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " -"que incluya números, letras y símbolos." -msgstr "" -"Het advies is om dit geregeld te veranderen, gebruik hiervoor een sterk " -"wachtwoord." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 -msgid "Clave Temporal" -msgstr "Tijdelijk Wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 -msgid "No generada" -msgstr "Niet gegenereerd" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 -msgid "Válido hasta" -msgstr "Geldig tot" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 -msgid "Validez (s)" -msgstr "Leven(s)" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 -#, fuzzy -msgid "" -"La clave temporal es utilizada como clave maestra para los usuarios que " -"necesitan introducirla al iniciar la sesión, así no es necesario facilitar " -"la clave maestra original." -msgstr "" -" Het tijdelijke wachtwoord wordt gebruikt als een hoofdwachtwoord voor de " -"gebruikers die dit moeten invoeren bij het inloggen. Hierdoor is het niet " -"nodig om hen het echte Master Password te vertellen." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 -msgid "Generar" -msgstr "Genereer" - -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 -msgid "No se encontraron registros" -msgstr "Geen records gevonden" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 -msgid "Fecha / Hora" -msgstr "Datum / Tijd" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 -msgid "Evento" -msgstr "Evenement" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 -msgid "IP" -msgstr "IP" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:69 -msgid "Primera página" -msgstr "Eerste pagina" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:67 -msgid "Página anterior" -msgstr "Vorige pagina" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:68 -msgid "Página siguiente" -msgstr "Volgende pagina" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:70 -msgid "Última página" -msgstr "Laatste pagina" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 -#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 -msgid "Ver Archivo" -msgstr "Bekijk bestand" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 -#, fuzzy -msgid "Indica si la conexión utiliza HTTPS." -msgstr "Laat zien of de verbinding HTTPS is" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 -msgid "" -"Las claves de formularios enviados se encriptan mediante PKI, el resto de " -"datos no." -msgstr "" -"De verzonden wachtwoorden worden versleuteld via PKI, de andere data niet. " - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 -msgid "Ayuda :: FAQ :: Changelog" -msgstr "Help :: FAQ :: Changelog" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 -msgid "Un proyecto de cygnux.org" -msgstr "Een cygnux.org project" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 -msgid "Nombre del grupo" -msgstr "Groep naam" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 -msgid "Descripción del grupo" -msgstr "Groep omschrijving" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 -msgid "Importar CSV/XML" -msgstr "CSV/XML Import" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 -msgid "Usuario por Defecto" -msgstr "Standaard Gebruiker" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 -#, fuzzy -msgid "Define el usuario por defecto para las cuentas importadas." -msgstr " Bepaalt de standaard gebruiker voor de geïmporteerde accounts." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 -msgid "Grupo por Defecto" -msgstr "Standaard Groep" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 -#, fuzzy -msgid "Define el grupo por defecto para las cuentas importadas." -msgstr " Bepaalt de standaard groep voor de geïmporteerde accounts." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 -msgid "Clave de Importación" -msgstr "Importeer Wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 -msgid "Delimitador CSV" -msgstr "CSV scheidingsteken" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 -msgid "Soltar archivo aquí o click para seleccionar" -msgstr "Sleep de bestanden naar hier of selecteer deze" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 -#, fuzzy -msgid "" -"Permite realizar la importación de Cuentas, Categorías y Clientes desde " -"archivos XML y CSV." -msgstr "" -"Laat toe dat je Accounts, Categories and Customers import from XML or CSV " -"files." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 -msgid "" -"Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" -msgstr "" -" Hiermee kun je de accounts, categorieën en klanten importeren uit XML of " -"CSV -bestanden." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 -#, fuzzy -msgid "" -"Arrastar el archivo a importar a la zona indicada o hacer click sobre la " -"flecha." -msgstr " Drag & Drop het bestand naar de import zone of klik op de pijl." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 -#, fuzzy -msgid "" -"Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " -"KeePass o KeePassX y la categoría igual al nombre de los grupos." -msgstr "" -" Voor KeePass of KeePassX bestanden, zal de naam van de klant zijn KeePass " -"of KeePassX en de categorie naam als de groepsnamen ." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 -msgid "La importación de archivos CSV se realiza con el siguiente formato:" -msgstr " Het CSV -bestand importeren moet aan het volgende format doen:" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 -#, fuzzy -msgid "" -"En todos los casos, si el cliente o la categoría no están creados, se crean " -"automáticamente." -msgstr "" -"In alle gevallen, indien de klant of de categorie niet bestaat zal deze " -"automatisch worden aangemaakt." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 -msgid "Información de la Aplicación" -msgstr "Applicatie Informatie" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 -msgid "Versión sysPass" -msgstr "sysPass versie" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 -msgid "Base de Datos" -msgstr "Database" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 -msgid "PHP" -msgstr "PHP" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 -msgid "Extensiones" -msgstr "Extensies" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 -msgid "Memoria Usada" -msgstr "Gebruikt geheugen" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:142 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:189 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 -msgid "Servidor" -msgstr "Server" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 -msgid "Login del usuario administrador de sysPass" -msgstr "sysPass administrator Login" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 -msgid "Configurar BBDD" -msgstr "DB Configuratie" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 -msgid "Nombre de la base de datos para sysPass" -msgstr "SysPass database naam" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 -msgid "Modo Hosting" -msgstr "Hosting mode" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 -msgid "No crea ni verifica los permisos del usuario sobre la BBDD" -msgstr "Dit maakt of verifieerd niet de gebruikers rechten op de database." - -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 -msgid "Instalar" -msgstr "Installeer" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 -msgid "Habilitar LDAP" -msgstr "Activeer LDAP" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 -#, fuzzy -msgid "Habilita de autentificación mediante servidor LDAP." -msgstr "Schakelt verificatie in voor de LDAP-server." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 -msgid "Este método utilizará MySQL en caso de fallo." -msgstr "Deze methode zal MySQL gebruiken als fallback." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 -#, fuzzy -msgid "Nombre o dirección IP del servidor de LDAP." -msgstr "Hostnaam of IP adres van de LDAP Server" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 -msgid "Ejemplos:" -msgstr "Voorbeelden:" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 -msgid "Usuario de conexión" -msgstr "Verbind Gebruiker" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 -msgid "Usuario para conectar con el servicio de LDAP." -msgstr "Gebruiker om verbinding te maken met de LDAP- service." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 -msgid "Clave de conexión" -msgstr "Verbind Wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 -msgid "Base de búsqueda" -msgstr "Zoek basis." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 -#, fuzzy -msgid "Base en la que realizar la búsqueda de usuarios de LDAP." -msgstr " LDAP uitvalsbasis om de LDAP-gebruikers zoekopdrachten te doen." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 -#, fuzzy -msgid "" -"Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." -msgstr "LDAP-groep waar de gebruiker in moet zitten om te kunnen inloggen." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 -msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." -msgstr " Deze groep moet in de LDAP-zoekbasis worden geplaatst ." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 -#, fuzzy -msgid "" -"Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." -msgstr " Definieer de standaard gebruikers groep voor nieuwe LDAP-gebruikers." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 -msgid "Perfil por Defecto" -msgstr "Standaard Profiel" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 -#, fuzzy -msgid "" -"Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." -msgstr " Definieert het standaard profiel voor de nieuwe LDAP-gebruikers ." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 -msgid "Active Directory" -msgstr "Active Directory" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 -msgid "Habilita el modo de conexión con LDAP de Active Directory." -msgstr "Activeer Active Directory LDAP connectie mode" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:57 -msgid "Comprobar" -msgstr "Check" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 -#, fuzzy -msgid "¿Olvidó su clave?" -msgstr "Wachtwoord vergeten?" - -#: ../../../modules/web/Controllers/UpgradeController.php:92 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 -msgid "Aplicación actualizada correctamente" -msgstr "Applicatie succesvol bijgewerkt" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 -msgid "Habilitar notificaciones de correo" -msgstr "Activeer email notificaties" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 -msgid "Puerto" -msgstr "Poort" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 -msgid "Habilitar Autentificación" -msgstr "Activeer Authenticatie" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 -msgid "Deshabilitada" -msgstr "Uitgeschakeld" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 -#, fuzzy -msgid "Dirección de correo de envío" -msgstr "Emailadres ontvanger" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 -msgid "Habilitar peticiones por correo" -msgstr "Activeer aanvragen per email" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 -msgid "Más Acciones" -msgstr "Meer acties" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 -msgid "Solicitud de Cambio de Clave" -msgstr "Aanvraag wachtwoord wijziging" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 -msgid "Email del Usuario" -msgstr "Emailadres gebruiker" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 -msgid "Volver a iniciar sesión" -msgstr "Terug naar login" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 -msgid "Solicitar" -msgstr "Aanvraag" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 -msgid "Cambiar" -msgstr "Wijzig" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:37 -#, fuzzy -msgid "Cambiar Clave" -msgstr "Wijzig Wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 -msgid "Ordenar resultados por visitas" -msgstr "Sorteer resultaten op bekeken door" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 -#, fuzzy -msgid "" -"Ordena los resultados de búsqueda por el número de visitas de las cuentas." -msgstr "" -"Soorteerd de account zoekresultaten op het aantal accountbezichtigingen." - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 -msgid "Barra de navegación superior" -msgstr "Navigatie bar bovenin" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 -msgid "Mostrar una barra de navegación superior en las búsquedas." -msgstr "Toont een navigatie bar in de top van de zoek resultaten+" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 -msgid "Mostrar Acciones Ocultas" -msgstr "Toont Verborgen Acties" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 -msgid "" -"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." -msgstr "Toont altijd de verborgen acties op de accounts zoek pagina" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 -msgid "Nombre del perfil" -msgstr "Profiel naam" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 -msgid "Ver detalles de cuenta" -msgstr "Bekijk account details" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 -msgid "Ver" -msgstr "Bekijk" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 -msgid "Ver clave de cuenta" -msgstr "Bekijk account wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 -msgid "Ver historial de cuenta" -msgstr "Bekijk account geschiedenis" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 -msgid "Editar cuenta" -msgstr "Wijzig account" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 -msgid "Editar" -msgstr "Wijzig" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 -msgid "Editar clave de cuenta" -msgstr "Wijzig account wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 -msgid "Editar Clave" -msgstr "Wijzig Wachtwoord" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:32 -msgid "Añadir" -msgstr "Voeg toe" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 -msgid "Ver archivos de cuenta" -msgstr "Bekijk account bestanden" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 -msgid "Backup" -msgstr "Backup" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 -msgid "Realizar importación de cuentas" -msgstr "Importeer Accounts" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 -msgid "Gestión" -msgstr "Management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 -msgid "Gestión de usuarios" -msgstr "Gebruikers management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 -msgid "Gestión de grupos" -msgstr "Groepen management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 -msgid "Gestión de perfiles" -msgstr "Profielen management" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 -msgid "Perfiles" -msgstr "Profielen" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 -msgid "Gestión de categorías" -msgstr "Categoriëen Management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 -#, fuzzy -msgid "Gestión de clientes" -msgstr "Klanten management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 -msgid "Gestión de campos personalizados" -msgstr "Aangepaste velden management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 -msgid "Gestión de autorizaciones API" -msgstr "API autorisatie management" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 -msgid "Autorizaciones API" -msgstr "API Autorisaties" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 -msgid "Otros" -msgstr "Anderen" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 -msgid "Ver log de eventos" -msgstr "Bekijk Event Log" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 -msgid "Log de Eventos" -msgstr "Event Log" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 -msgid "Usado por" -msgstr "Gebruikt door" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 -msgid "Solicitar Modificación de Cuenta" -msgstr "Aanvraag Account Modificatie" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 -msgid "Petición" -msgstr "Aanvraag" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 -#, fuzzy -msgid "Descripción de la petición" -msgstr "Aanvraag beschrijving" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 -msgid "Atrás" -msgstr "Terug" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 -msgid "Enviar" -msgstr "Verstuur" - -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 -msgid "Filtro ON" -msgstr "Filter AAN" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 -msgid "Buscar en Wiki" -msgstr "Zoek in de Wiki" - -#: ../../../../inc/themes/material-blue/views/accountsearch/rows.inc:71 -msgid "Abrir enlace a" -msgstr "Open link aar" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 -msgid "Archivos adjuntos" -msgstr "Bijlages" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 -msgid "Enlace a Wiki" -msgstr "Link naar Wiki" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:53 -msgid "Limpiar" -msgstr "Opschonen" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 -#: ../../../modules/api/Controllers/Help/TagHelp.php:77 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 -msgid "Texto a buscar" -msgstr "Zoek naar tekst" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:23 -msgid "Parámetros especiales:" -msgstr "Speciale parameters" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 -#, fuzzy -msgid "Buscar cuentas a las que 'login' tenga acceso" -msgstr "Zoek accounts met 'Login' toegangsrechten." - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 -#, fuzzy -msgid "Buscar cuentas a las que 'group_name' tenga acceso" -msgstr "Zoek accounts met 'groep_naam' toegangsrechten." - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 -msgid "Buscar cuentas con archivos con el nombre 'file_name'" -msgstr "" -" Zoeken naar accounts waarbij een bestand is met de naam ' bestandsnaam ' " - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 -#, fuzzy -msgid "Búsqueda global" -msgstr "Globale zoek opdracht" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 -msgid "Cuentas por página" -msgstr "Accounts per pagina" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:76 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:149 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:152 -msgid "Salir" -msgstr "Uitloggen" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 -msgid "Opciones" -msgstr "Opties" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 -msgid "Regenerar Autorización" -msgstr "Ververs Autorisatie" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 -msgid "Token" -msgstr "Sleutel" - -#: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 -msgid "Actualizado" -msgstr "Bijgewerkt" - -#: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 -msgid "Error al comprobar actualizaciones" -msgstr "Fout bij checken van updates" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 -msgid "Actualización de BBDD" -msgstr "DB Update" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 -msgid "Código de Seguridad" -msgstr "Beveilingscode" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 -msgid "Iniciar Actualización" -msgstr "Start Update" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 -msgid "Nombre de usuario completo" -msgstr "Volledige gebruikersnaam" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 -msgid "Login de inicio de sesión" -msgstr "Sessie login" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 -msgid "Dirección de correo" -msgstr "Emailadres" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 -msgid "Administrador de la aplicación" -msgstr "Applicatie Administrator" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 -msgid "Administrador de cuentas" -msgstr "Accounts administrator" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 -msgid "Forzar cambio de clave" -msgstr "Forceer wachtwoord wijziging" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 -msgid "Entradas" -msgstr "Waarden" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 -msgid "Último Acceso" -msgstr "Laatste Toegang" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 -msgid "Fecha Clave Maestra" -msgstr "Master Wachtwoord datum" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 -msgid "Habilitar enlaces Wiki" -msgstr "Toestaan van Wiki links" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 -#, fuzzy -msgid "" -"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " -"la búsqueda." -msgstr "" -"Toestaan van de optie aan om een link voor zoek resultaten in een externe " -"Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 -msgid "URL de búsqueda Wiki" -msgstr "Wiki Zoek URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 -#, fuzzy -msgid "URL que utiliza la wiki para realizar una búsqueda de una página." -msgstr "URL welke de Wiki gebruikt voor een zoek actie" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 -#, fuzzy -msgid "Como parámetro se utiliza el nombre del cliente." -msgstr "De Klantnaam is gebruikt als parameter" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 -msgid "Ejemplo:" -msgstr "Voorbeeld:" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 -msgid "URL de página en Wiki" -msgstr "Wiki pagina URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 -#, fuzzy -msgid "URL que utiliza la wiki para acceder a los detalles de una página." -msgstr "URL waar gebruikers naar toe verwezen worden" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 -msgid "" -"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " -"de la Wiki." -msgstr "" -"De account naam is gebruikt als een parameter in een Wiki zoek variabele" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 -msgid "Prefijo para nombre de cuenta" -msgstr "Account naam voorvoegsel" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 -msgid "" -"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." -msgstr "" -"Voorvoegsel om te bepalen welk account een link moet hebben naar de Wiki." - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 -msgid "Histórico" -msgstr "Geschiedenis" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:54 -msgid "Realizar" -msgstr "Uitvoeren" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 -msgid "Forzar HTTPS" -msgstr "Forceer HTTPS" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 -msgid "Fuerza para que todas las conexiones sean a través de HTTPS." -msgstr "Dit forceert het gebruik van HTTPS op alle verbindingen" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 -msgid "Número de resultados por página" -msgstr "Resultaten per pagina" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 -msgid "Proxy" -msgstr "Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 -msgid "Usar Proxy" -msgstr "Gebruik Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 -msgid "Servidor proxy" -msgstr "Proxy server" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 -msgid "Puerto del servidor proxy" -msgstr "Proxy server poort" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 -msgid "Usuario del servidor proxy" -msgstr "Proxy server gebruiker" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 -msgid "Clave del servidor proxy" -msgstr "Proxy server wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 -msgid "Nombre del campo" -msgstr "Veld naam" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 -msgid "Ayuda del campo" -msgstr "Veld help" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 -msgid "Intentos" -msgstr "Pogingen" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:69 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:131 -msgid "Preferencias de usuario" -msgstr "Gebruiker voorkeuren" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 -msgid "Usuario administrador de sysPass" -msgstr "sysPass admin gebruiker" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 -msgid "Usuario acceso BBDD" -msgstr "DB gebruiker" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 -#, fuzzy -msgid "Usuario con permisos de administrador de MySQL" -msgstr "Een gebruiker met MySQL admin rechten" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 -msgid "Clave acceso BBDD" -msgstr "DB wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 -msgid "Nombre BBDD para sysPass" -msgstr "sysPass database naam" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 -msgid "Servidor BBDD para sysPass" -msgstr "sysPass database server" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 -msgid "Nombre del servidor para instalar la base de datos de sysPass" -msgstr "Servernaam waarop de sysPass database geinstalleerd wordt" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 -msgid "Clave del usuario de conexión a LDAP." -msgstr "LDAP connectie gebruikers wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 -#, fuzzy -msgid "" -"Habilita que los usuarios puedan solicitar modificaciones o acceso a las " -"cuentas sin permisos." -msgstr "" -"Sta gebruikers toe om modificatie op bestaande accounts aan te vragen of " -"toegang te verlenen aan accounts waar ze geen rechten op hebben" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 -#, fuzzy -msgid "Crear nueva cuenta" -msgstr "Maak een nieuw account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 -#, fuzzy -msgid "Crear" -msgstr "Maken" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 -#, fuzzy -msgid "Eliminar cuenta" -msgstr "Verwijder account" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:36 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 -msgid "Eliminar" -msgstr "Verwijder" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 -msgid "Opciones de encriptación" -msgstr "Encryptie opties" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 -msgid "Realizar copia de seguridad y exportar" -msgstr "Maak een backup en exporteer" - -#: ../../../../ajax/ajax_filesMgmt.php:97 -msgid "Extensión" -msgstr "Extensie" - -#: ../../../modules/web/Controllers/AccountFileController.php:209 -msgid "Tamaño de archivo superado" -msgstr "Bestandsgrootte overschreden" - -#: ../../../../ajax/ajax_passReset.php:77 -msgid "Solicitud no enviada" -msgstr "Verzoek niet verstuurd" - -#: ../../../../ajax/ajax_passReset.php:78 -msgid "Compruebe datos de usuario o consulte con el administrador" -msgstr "Check de gebruikersdata of neem contact op met de administrator" - -#: ../../../../lib/SP/Services/Account/AccountService.php:283 -#: ../../../../lib/SP/Services/Account/AccountService.php:672 -#: ../../../../lib/SP/Services/Account/AccountService.php:727 -msgid "La cuenta no existe" -msgstr "Het account bestaat niet" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:194 -msgid "Errores" -msgstr "Errors" - -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:71 -msgid "Error al añadir favorito" -msgstr "Error bij het toevoegen van de favoriet" - -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:91 -msgid "Error al eliminar favorito" -msgstr "Error tijdens het verwijderen van de favoriet" - -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:94 -msgid "Error al eliminar las etiquetas de la cuenta" -msgstr "Error tijdens het verwijderen van de account labels" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:107 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:78 -msgid "Método inválido" -msgstr "Ongeldige Methode" - -#: ../../../../lib/SP/Services/Api/ApiRequest.php:79 -#: ../../../../lib/SP/Services/Api/ApiRequest.php:113 -#: ../../../../lib/SP/Services/Api/ApiService.php:229 -msgid "Datos inválidos" -msgstr "Ongeldige Data" - -#: ../../../../inc/SP/Api/ApiRequest.class.php:211 -msgid "Formato incorrecto" -msgstr "Foute indeling" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 -msgid "Id de la cuenta" -msgstr "Account Id" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 -#, fuzzy -msgid "Devolver detalles en la respuesta" -msgstr "Stuur de details in de reactie" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 -#: ../../../modules/api/Controllers/Help/TagHelp.php:78 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 -msgid "Número de resultados a mostrar" -msgstr "Aantal weer te geven resultaten" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 -msgid "Id de categoría a filtrar" -msgstr "Categorie ID om te filteren" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 -#, fuzzy -msgid "Id de cliente a filtrar" -msgstr "Klant ID om te filteren ingeschakeld" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 -msgid "Id de categoría" -msgstr "Categorie Id" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 -#, fuzzy -msgid "Id de cliente" -msgstr "Klant Id" - -#: ../../../../lib/SP/Api/SyspassApi.php:511 -msgid "Nombre de categoría a buscar" -msgstr "Categorie naam om naar te zoeken" - -#: ../../../../lib/SP/Api/SyspassApi.php:531 -#, fuzzy -msgid "Nombre de cliente a buscar" -msgstr "Klant naam om naar te zoeken" - -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:212 -msgid "Método ya inicializado" -msgstr "Methode al geinitialiseerd" - -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:208 -msgid "Método no disponible" -msgstr "Methode niet beschikbaar" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 -msgid "Objetos encontrados: %d" -msgstr "Voorwerpen gevonden: %d" - -#: ../../../../lib/SP/Controller/ChecksController.php:127 -msgid "Los parámetros de DokuWiki no están configurados" -msgstr "De DokuWiki parameters zijn niet opgegeven" - -#: ../../../../lib/SP/Controller/ChecksController.php:135 -#: ../../../../lib/SP/Util/Wiki/DokuWikiApiBase.php:214 -msgid "Error" -msgstr "Error" - -#: ../../../../lib/SP/Controller/ChecksController.php:137 -msgid "Conexión correcta" -msgstr "Verbinding succesvol" - -#: ../../../../lib/SP/Controller/ChecksController.php:141 -msgid "Error de conexión a DokuWiki" -msgstr "Error tijdens het verbinden met DokuWiki" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:89 -msgid "Faltan parámetros de syslog remoto" -msgstr "Remote Syslog parameters niet opgegeven" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:102 -msgid "Syslog remoto deshabilitado" -msgstr "Remote syslog uitegeschakels" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:72 -msgid "Error al guardar la configuración" -msgstr "Fout bij het opslaan van de configuratie" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:87 -msgid "Faltan parámetros de DokuWiki" -msgstr "Ontbrekende DokuWiki-parameters" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:368 -msgid "DokuWiki habiltada" -msgstr "DokuWiki ingeschakeld" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:104 -msgid "DokuWiki deshabilitada" -msgstr "DokuWiki uitgeschakeld" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 -msgid "Buscar Evento" -msgstr "Zoeken naar Gebeurtenis" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 -#: ../../../config/actions.xml:325 -msgid "Buscar Categoría" -msgstr "Zoeken naar Categorie" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 -#: ../../../config/actions.xml:355 -#, fuzzy -msgid "Buscar Cliente" -msgstr "Zoeken naar Klant" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 -msgid "Buscar Campo" -msgstr "Zoeken naar Veld" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 -#: ../../../config/actions.xml:475 -msgid "Buscar Archivo" -msgstr "Zoeken naar Bestand" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 -#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 -msgid "Buscar Cuenta" -msgstr "Zoeken naar Account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 -#: ../../../config/actions.xml:601 -msgid "Buscar Usuario" -msgstr "Zoeken naar Gebruiker" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 -msgid "Importar usuarios de LDAP" -msgstr "Imoporteer gebruikers van LDAP" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 -#: ../../../config/actions.xml:631 -msgid "Buscar Grupo" -msgstr "Zoeken naar Groep" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 -#: ../../../config/actions.xml:661 -msgid "Buscar Perfil" -msgstr "Zoeken naar Profiel" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 -msgid "Buscar Token" -msgstr "Zoeken naar Sleutel" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 -msgid "Fecha Creación" -msgstr "Aanmaakdatum" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 -msgid "Fecha Caducidad" -msgstr "Verloopdatum" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 -msgid "Notificar" -msgstr "Bericht" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 -msgid "Enlaces" -msgstr "Links" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 -msgid "Buscar Enlace" -msgstr "Zoeken naar Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 -msgid "Ver Enlace" -msgstr "Bekijk Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 -msgid "Renovar Enlace" -msgstr "Vernieuw Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 -msgid "Eliminar Enlace" -msgstr "Verwijder Link" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:123 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 -msgid "Etiquetas" -msgstr "Tags" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 -#: ../../../config/actions.xml:529 -msgid "Buscar Etiqueta" -msgstr "Zoeken naar Label" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 -#: ../../../config/actions.xml:505 -msgid "Nueva Etiqueta" -msgstr "Nieuw Label" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 -#: ../../../config/actions.xml:517 -msgid "Editar Etiqueta" -msgstr "Bewerk Label" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 -#: ../../../config/actions.xml:523 -msgid "Eliminar Etiqueta" -msgstr "Verwijder Label" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 -msgid "Plugin" -msgstr "Plugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 -msgid "Estado" -msgstr "Status" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:334 -#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 -msgid "Plugins" -msgstr "Plugins" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 -#: ../../../config/actions.xml:547 -msgid "Buscar Plugin" -msgstr "Zoeken naar Plugin" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:120 -#: ../../../config/actions.xml:541 -msgid "Ver Plugin" -msgstr "Plugin Weergeven" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 -msgid "Habilitar" -msgstr "Inschakelen" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 -msgid "Deshabilitar" -msgstr "Uitschakelen" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 -msgid "Restablecer Datos" -msgstr "Reset Data" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 -msgid "Componente" -msgstr "Onderdeel" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 -msgid "Leída" -msgstr "Lees" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:65 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:105 -#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 -#: ../../../config/actions.xml:679 -msgid "Notificaciones" -msgstr "Notificaties" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 -#: ../../../config/actions.xml:841 -msgid "Buscar Notificación" -msgstr "Zoeken naar Notificatie" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:103 -#: ../../../config/actions.xml:811 -msgid "Ver Notificación" -msgstr "Toon Notificatie" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 -#: ../../../config/actions.xml:835 -msgid "Marcar Notificación" -msgstr "Afrekenen Melding" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 -#: ../../../config/actions.xml:829 -msgid "Eliminar Notificación" -msgstr "Verwijder Notificatie" - -#: ../../../modules/web/Controllers/PublicLinkController.php:275 -#: ../../../modules/web/Controllers/PublicLinkController.php:310 -msgid "Enlace creado" -msgstr "Link gemaakt" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:89 -#: ../../../modules/web/Controllers/PublicLinkController.php:175 -msgid "Enlace actualizado" -msgstr "Link geupdate" - -#: ../../../modules/web/Controllers/PublicLinkController.php:245 -#: ../../../modules/web/Controllers/PublicLinkController.php:249 -msgid "Enlace eliminado" -msgstr "Link verwijderd" - -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:94 -#: ../../../modules/web/Controllers/TagController.php:234 -msgid "Etiqueta creada" -msgstr "Label toegevoegd" - -#: ../../../modules/api/Controllers/TagController.php:118 -#: ../../../modules/api/Controllers/TagController.php:123 -#: ../../../modules/web/Controllers/TagController.php:265 -msgid "Etiqueta actualizada" -msgstr "Label geupdate" - -#: ../../../modules/api/Controllers/TagController.php:147 -#: ../../../modules/api/Controllers/TagController.php:152 -#: ../../../modules/web/Controllers/TagController.php:208 -msgid "Etiqueta eliminada" -msgstr "Label verwijderd" - -#: ../../../modules/web/Controllers/PluginController.php:181 -#: ../../../modules/web/Controllers/PluginController.php:184 -msgid "Plugin habilitado" -msgstr "Plugin ingeschakeld" - -#: ../../../modules/web/Controllers/PluginController.php:206 -#: ../../../modules/web/Controllers/PluginController.php:209 -msgid "Plugin deshabilitado" -msgstr "Plugin uitgeschakeld" - -#: ../../../modules/web/Controllers/PluginController.php:231 -#: ../../../modules/web/Controllers/PluginController.php:234 -msgid "Plugin restablecido" -msgstr "Plugin reset" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:55 -msgid "Favorito añadido" -msgstr "Favoriet toegevoegd" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:73 -msgid "Favorito eliminado" -msgstr "Favoriet verwijderd" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:269 -msgid "Importación de usuarios de LDAP realizada" -msgstr "LDAP gebruikers importeren afgerond" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1096 -msgid "Error al importar usuarios de LDAP" -msgstr "Fout bij het importeren van de LDAP users" - -#: ../../../modules/web/Controllers/NotificationController.php:297 -#: ../../../modules/web/Controllers/NotificationController.php:301 -msgid "Notificación leída" -msgstr "Notificatie gelezen" - -#: ../../../modules/web/Controllers/NotificationController.php:266 -#: ../../../modules/web/Controllers/NotificationController.php:270 -msgid "Notificación eliminada" -msgstr "Notificatie verwijderd" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1192 -msgid "Solicitud enviada por correo" -msgstr "Verzoek verzonden via email" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 -msgid "Solicitud no enviada por correo" -msgstr "Verzoek niet verzonden via email" - -#: ../../../modules/web/Controllers/AccountController.php:943 -msgid "Solicitud realizada" -msgstr "Aanvraag gedaan" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:427 -#, fuzzy -msgid "Ver Enlace Público" -msgstr "Publieke Link weergeven" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:233 -msgid "Detalles de Plugin" -msgstr "Plugin Details" - -#: ../../../../inc/SP/Controller/LoginController.class.php:375 -msgid "Error al obtener la clave maestra del usuario" -msgstr "Fout bij het ophalen van het hoofdwachtwoord van de gebruiker" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:327 -msgid "Es necesaria su clave anterior" -msgstr "Je vorige wachtwoord is nodig" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:452 -#: ../../../../lib/SP/Services/Auth/LoginService.php:515 -msgid "Servidor LDAP" -msgstr "LDAP Server" - -#: ../../../../inc/SP/Core/Acl.class.php:198 -msgid "Buscar Categorías" -msgstr "Zoeken naar Categorieën" - -#: ../../../../inc/SP/Core/Acl.class.php:199 -msgid "Añadir Categoría" -msgstr "Categorie toevoegen" - -#: ../../../../inc/SP/Core/Acl.class.php:203 -msgid "Buscar Clientes" -msgstr "Zoeken naar Klanten" - -#: ../../../../inc/SP/Core/Acl.class.php:204 -msgid "Añadir Cliente" -msgstr "Klant toevoegen" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:79 -msgid "Gestión de Archivos" -msgstr "Bestandsbeheer" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:85 -msgid "Gestión de Cuentas" -msgstr "Accountsbeheer" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:91 -msgid "Gestión de Etiquetas" -msgstr "Tag Management" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 -msgid "No es posible crear el directorio de backups (\"%s\")" -msgstr "Kan backups map (\"%s\") niet aanmaken." - -#: ../../../../lib/SP/Core/Events/EventDispatcherBase.php:85 -msgid "Observador no inicializado" -msgstr "Waarnemer niet geïnitialiseerd" - -#: ../../../../lib/SP/Core/Events/Event.php:56 -msgid "Es necesario un objeto" -msgstr "Een object is nodig" - -#: ../../../../lib/SP/Services/Install/Installer.php:141 -msgid "Indicar la clave de la BBDD" -msgstr "Vul alstublieft het database wachtwoord in" - -#: ../../../../lib/SP/Services/Install/Installer.php:143 -msgid "Clave del usuario administrador de la Base de Datos" -msgstr "Database administrator's wachtwoord" - -#: ../../../../lib/SP/Services/Install/MySQL.php:181 -msgid "Error al crear el usuario de conexión a MySQL '%s'" -msgstr "Error bij het maken van de MySQL connection user '%s'" - -#: ../../../../lib/SP/Services/Install/MySQL.php:251 -msgid "La BBDD no existe" -msgstr "De database bestaat niet" - -#: ../../../../lib/SP/Services/Install/MySQL.php:253 -msgid "Es necesario crearla y asignar los permisos necesarios" -msgstr "U moet het creëren en de benodigde rechten toewijzen" - -#: ../../../../lib/SP/Services/Install/MySQL.php:237 -msgid "Error al establecer permisos de la BBDD ('%s')" -msgstr "Error bij het instellen van de database rechten ('%s')" - -#: ../../../../lib/SP/Plugin/PluginManager.php:113 -#: ../../../../lib/SP/Plugin/PluginManager.php:256 -msgid "No es posible cargar el plugin \"%s\"" -msgstr "Fout bij het laden van de plugin \"%s\"" - -#: ../../../../lib/SP/Mvc/View/Template.php:341 -msgid "La plantilla no contiene archivos" -msgstr "De template bevat geen bestanden" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:121 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:125 -msgid "Error al actualizar la configuración" -msgstr "Error tijdens het bijwerken van de configuratie" - -#: ../../../modules/web/Forms/AuthTokenForm.php:91 -msgid "Usuario no indicado" -msgstr "Gebruiker niet ingesteld" - -#: ../../../modules/web/Forms/AuthTokenForm.php:95 -msgid "Acción no indicada" -msgstr "Actie niet ingesteld" - -#: ../../../modules/web/Forms/TagForm.php:82 -msgid "Es necesario un nombre de etiqueta" -msgstr "Een tag naam is nodig" - -#: ../../../../lib/SP/Http/XMLRPCResponseParse.php:69 -msgid "Respuesta XML-RPC inválida" -msgstr "Ongeldig XML-RPC antwoord" - -#: ../../../../lib/SP/Services/Import/ImportService.php:89 -msgid "Tipo mime no soportado (\"%s\")" -msgstr "Mime type wordt niet ondersteund (\"%s\")" - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:106 -msgid "Id de categoría no definido. No es posible importar cuenta." -msgstr "Categorie-id niet ingesteld. Kan het account niet importeren." - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:110 -#, fuzzy -msgid "Id de cliente no definido. No es posible importar cuenta." -msgstr "Categorie-id niet ingesteld. Kan het account niet importeren." - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:69 -msgid "Clave de encriptación no indicada" -msgstr "Encryptie wachtwoord niet ingesteld" - -#: ../../../../lib/SP/Services/Import/CsvImport.php:50 -msgid "Formato detectado: %s" -msgstr "Gedetecteerd formaat:% s" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 -msgid "El nodo \"%s\" no existe" -msgstr "Het \"% s\" knooppunt bestaat niet" - -#: ../../../../lib/SP/Util/ImageUtil.php:48 -#: ../../../../lib/SP/Util/ImageUtil.php:99 -#: ../../../../lib/SP/Util/Util.php:180 ../../../../lib/SP/Util/Util.php:182 -msgid "Extensión '%s' no cargada" -msgstr "Uitbreiding '%s' niet geladen" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:58 -msgid "Categoría duplicada" -msgstr "Categorie gedupliceerd" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:77 -#: ../../../../lib/SP/Services/Category/CategoryService.php:98 -#: ../../../../lib/SP/Services/Category/CategoryService.php:115 -msgid "Categoría no encontrada" -msgstr "Categorie niet gevonden" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:75 -msgid "Error al crear el campo personalizado" -msgstr "Fout bij het maken van een aangepast veld" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:259 -msgid "Error al eliminar el campo personalizado" -msgstr "Fout bij het verwijderen van een aangepast veld" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:118 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:165 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:193 -msgid "Error al actualizar el campo personalizado" -msgstr "Fout bij het bijwerken van een aangepast veld" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:162 -msgid "Campo personalizado no encontrado" -msgstr "Aangepast veld niet gevonden" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:215 -msgid "No se encontraron campos personalizados" -msgstr "Aangepaste velden niet gevonden" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:68 -msgid "No hay datos de campos personalizados" -msgstr "Er zijn geen gegevens uit aangepaste velden" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldsUtil.php:263 -msgid "Error al migrar campos personalizados" -msgstr "Fout bij het migreren van de aangepaste velden" - -#: ../../../../inc/SP/Mgmt/Files/File.class.php:103 -msgid "Archivo subido" -msgstr "Bestand geupload" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:55 -msgid "Grupo en uso" -msgstr "Groep in gebruik" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 -msgid "Actualizar Grupo" -msgstr "Groep Bijwerken" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:140 -msgid "Error al asignar los usuarios al grupo" -msgstr "Fout bij het instellen van gebruikers in de groep" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:78 -msgid "Error al crear la notificación" -msgstr "Error bij het toevoegen van de notificatie" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:137 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:156 -msgid "Error al eliminar la notificación" -msgstr "Fout bij het verwijderen van de notificatie" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:118 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:429 -msgid "Error al modificar la notificación" -msgstr "Fout bij het bijwerken van de notificatie" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:212 -msgid "Error al obtener la notificación" -msgstr "Fout bij het ophalen van de notificatie" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:242 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:466 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:499 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:533 -msgid "Error al obtener las notificaciones" -msgstr "Fout bij het ophalen van de notificaties" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:70 -msgid "Error al crear el plugin" -msgstr "Error bij het toevoegen van de plugin" - -#. (itstool) path: action/text -#: ../../../../lib/SP/Plugin/PluginManager.php:245 -#: ../../../config/actions.xml:535 -msgid "Nuevo Plugin" -msgstr "Nieuwe Plugin" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:232 -msgid "Error al eliminar el plugin" -msgstr "Fout bij het verwijderen van de plugin" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:104 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:348 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:368 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:388 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:408 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:427 -msgid "Error al actualizar el plugin" -msgstr "Fout bij het bijwerken van de plugin" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:42 -msgid "Habilitado" -msgstr "Ingeschakeld" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:239 -msgid "Error al crear perfil" -msgstr "Fout bij het maken van het profiel" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:73 -msgid "Perfil en uso" -msgstr "Profiel in gebruik" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:79 -msgid "Error al eliminar perfil" -msgstr "Fout bij het verwijderen van het profiel" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:141 -msgid "Error al modificar perfil" -msgstr "Fout bij het updaten van het profiel" - -#: ../../../modules/web/Controllers/AccountController.php:223 -msgid "Enlace visualizado" -msgstr "Link bekeken" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:341 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:389 -msgid "Error al actualizar enlace" -msgstr "Fout bij het updaten van de link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:255 -msgid "Enlace ya creado" -msgstr "Link al gemaakt" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:282 -msgid "Error al crear enlace" -msgstr "Fout bij het maken van de link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:63 -msgid "Error al eliminar enlace" -msgstr "Fout bij het verwijderen van de link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:424 -msgid "Error al renovar enlace" -msgstr "Fout bij het vernieuwen van de link" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:741 -#: ../../../../inc/themes/material-blue/views/account/actions.inc:69 -msgid "Actualizar Enlace" -msgstr "Update Link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:466 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:507 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:528 -msgid "Error al obtener enlace" -msgstr "Fout bij het ophalen van de link" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:190 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "ON" -msgstr "AAN" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "OFF" -msgstr "UIT" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:60 -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:108 -msgid "Etiqueta duplicada" -msgstr "Dubbele tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:69 -msgid "Error al crear etiqueta" -msgstr "Fout tijdens het aanmaken van de tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:262 -msgid "Error al eliminar etiqueta" -msgstr "Fout tijdens het verwijderen van de tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:118 -msgid "Error al actualizar etiqueta" -msgstr "Fout tijdens het bijwerken van de tag" - -#: ../../../../inc/SP/Mgmt/Tags/Tag.class.php:181 -msgid "Error al obtener etiqueta" -msgstr "Fout tijdens het ophalen van de tag" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:63 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:430 -msgid "Login/email de usuario duplicados" -msgstr "Dubbele gebruikersnaam of email" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:234 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:551 -msgid "Error al obtener los datos del usuario" -msgstr "Fout tijdens het ophalen van de data van de gebruiker" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:781 -msgid "Sincronización LDAP" -msgstr "LDAP-synchronisatie" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:264 -msgid "No se encontraron objetos para sincronizar" -msgstr "Er is niets om te synchroniseren" - -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:128 -msgid "Sincronización finalizada" -msgstr "Synchroniseren afgerond" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:97 -msgid "Error al migrar cuenta de usuario" -msgstr "Fout tijdens het migreren van een gebruikersaccount" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:137 -msgid "Error al obtener grupo de usuarios" -msgstr "Fout tijdens het ophalen van een gebruikersgroep" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:112 -msgid "Error en comprobación de hash" -msgstr "Fout tijdens het controleren van de versleuteling" - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:87 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:155 -msgid "Hash inválido o expirado" -msgstr "Versleuteling is foutief of verlopen" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:86 -msgid "Error al generar el hash de recuperación" -msgstr "Fout tijdens het genereren van de herstel versleuteling" - -#: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:57 -msgid "Actualizando preferencias" -msgstr "Voorkeuren bijwerken" - -#: ../../../../lib/SP/Storage/XmlHandler.php:79 -msgid "No es posible leer/escribir el archivo: %s" -msgstr "Het lezen of schrijven van het bestand %s is niet mogelijk" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:167 -msgid "No hay elementos para guardar" -msgstr "Er zijn geen items om op te slaan" - -#: ../../../../lib/SP/Util/Connection.php:157 -msgid "Socket no inicializado" -msgstr "Socket is niet geïnitialiseerd" - -#: ../../../../lib/SP/Util/Connection.php:164 -msgid "Error al enviar datos" -msgstr "Fout bij het verzenden van de gegevens" - -#: ../../../../lib/SP/Util/Util.php:243 -msgid "Respuesta" -msgstr "Antwoord" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 -msgid "Fallo de autentificación" -msgstr "Authenticatiefout" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 -msgid "Error al realizar la consulta" -msgstr "Fout bij het uitvoeren van de query" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 -msgid "URL de conexión no establecida" -msgstr "Verbinding URL niet ingesteld" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:33 -msgid "Ver Detalles" -msgstr "Bekijk details" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:44 -msgid "Copiar" -msgstr "Kopiëren" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:50 -msgid "Restaurar" -msgstr "Herstellen" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:55 -msgid "Descargar" -msgstr "Download" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:64 -msgid "Crítico" -msgstr "Kritisch" - #: ../../../config/strings.js.inc:73 #, fuzzy msgid "Recibir notificaciones?" msgstr "Verzenden notificaties?" #: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:158 msgid "Marcar Favorito" msgstr "Markeer als favoriet" #. (itstool) path: action/text #: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:148 #: ../../../config/actions.xml:253 msgid "Eliminar Favorito" msgstr "Favoriet verwijderen" @@ -5525,14 +2303,23 @@ msgid "Limpiar Selección" msgstr "Selectie wissen" #: ../../../config/strings.js.inc:77 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:78 msgid "Mostrar Favoritos" msgstr "Toon favorieten" #: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:72 msgid "Mostrar Todos" msgstr "Toon Alles" +#: ../../../config/strings.js.inc:79 +msgid "Ayuda" +msgstr "Help" + +#: ../../../config/strings.js.inc:80 +msgid "Sin cambios" +msgstr "Geen wijzigingen" + #: ../../../config/strings.js.inc:81 msgid "Ahora" msgstr "Nu" @@ -5548,1102 +2335,13 @@ msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" msgstr "" "Met deze actie worden alle plugingegevens opnieuw ingesteld. Wil je doorgaan?" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 -msgid "Fecha Caducidad Clave" -msgstr "Wachtwoord vervaldatum" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 -msgid "Seleccionar Fecha" -msgstr "Selecteer datum" - -#: ../../../../inc/themes/material-blue/views/account/account-permissions.inc:9 -msgid "Accesos" -msgstr "Toegangen" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 -msgid "Seleccionar Usuarios" -msgstr "Selecteer gebruikers" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 -msgid "Seleccionar Grupos" -msgstr "Selecteer groepen" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 -msgid "Cuenta Privada" -msgstr "Privé-account" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 -msgid "Privada" -msgstr "Privé" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 -msgid "Seleccionar Etiquetas" -msgstr "Selecteer tags" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 -msgid "Cuenta Vinculada" -msgstr "Gekoppeld account" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 -msgid "Seleccionar Cuenta" -msgstr "Selecteer account" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Publieke link" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 -#: ../../../config/actions.xml:421 -msgid "Crear Enlace Público" -msgstr "Publieke link aanmaken" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 -msgid "Detalles" -msgstr "Details" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 -msgid "Fecha de Clave" -msgstr "Wachtwoorddatum" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Tamaño máximo de archivo: %d MB" -msgstr "Maximale bestandsgrootte: %d MB" - -#: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:3 -msgid "Cuentas Vinculadas" -msgstr "Gekoppelde accounts" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 -msgid "Clave Caducada" -msgstr "Wachtwoord verlopen" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 -msgid "Ver en Wiki" -msgstr "Bekijk in de Wiki" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 -msgid "Buscar cuentas con la clave caducada" -msgstr "Zoek naar accounts met een verlopen wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 -msgid "Filtrar Favoritos" -msgstr "Favorieten filteren" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 -msgid "Más Filtros" -msgstr "Meer filters" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 -msgid "Seleccionar Etiqueta" -msgstr "Selecteer Tag" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 -msgid "Copia BBDD" -msgstr "DB Backup" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 -msgid "Copia sysPass" -msgstr "sysPass Backup" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 -msgid "Eventos" -msgstr "Evenementen" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 -msgid "Habilitar Syslog" -msgstr "Syslog inschakelen" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 -msgid "Habilitar Syslog Remoto" -msgstr "Schakel Remote Syslog in" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 -msgid "Nombre o dirección IP" -msgstr "Hostnaam of IP-adres" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 -#: ../../../config/actions.xml:73 -msgid "Enlaces Públicos" -msgstr "Publieke links" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 -msgid "Habilitar Enlaces Públicos" -msgstr "Publieke links inschakelen" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 -msgid "" -"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " -"una cuenta." -msgstr "" -"Schakelt de mogelijkheid om openbare links te maken om de details van een " -"account te bekijken" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 -msgid "" -"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." -msgstr "" -"De gekoppelde accounts zullen zichtbaar zijn door iedereen die de link heeft" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 -msgid "" -"Para crear enlaces, los usuarios tienen que tener activada la opción en su " -"perfl." -msgstr "" -"Om links te maken, moeten de gebruikers de optie in hun profielen hebben " -"geactiveerd." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 -msgid "Tiempo de caducidad" -msgstr "Verval datum" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 -msgid "Número máximo de visitas" -msgstr "Maximale bezoeken" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 -msgid "Usar imagen para clave" -msgstr "Gebruik een afbeelding voor wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 -msgid "La clave de la cuenta es visualizada como una imagen." -msgstr "Het account wachtwoord wordt weergegeven als afbeelding." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 -msgid "Copia de Configuración" -msgstr "Configuratie back-up" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 -msgid "Plugins Cargados" -msgstr "Geladen plugins" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 -msgid "Resultados" -msgstr "Resultaten" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 -msgid "DokuWiki API" -msgstr "DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 -msgid "Habilitar API de DokuWiki" -msgstr "DokuWiki API inschakelen" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 -msgid "" -"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." -msgstr "Schakel DokuWiki XML-RPC API voor Wiki links in" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 -msgid "" -"Para que esta característica funcione, es necesario habilitar los enlaces " -"Wiki para el filtrado de cuentas." -msgstr "" -"Om deze feature te laten werken, dient u Wiki links voor account filteren " -"aan te zetten" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 -msgid "URL API" -msgstr "API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 -msgid "URL de la API de DokuWiki." -msgstr "DokuWiki API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 -msgid "URL Base" -msgstr "Basis URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 -msgid "URL base de DokuWiki." -msgstr "DokuWiki basis URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 -#, fuzzy -msgid "Usuario para conectar a la API de DokuWiki." -msgstr "Gebruiker om te verbinden met de DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 -msgid "Namespace" -msgstr "Namespace" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 -msgid "Namespace utilizado para buscar las páginas." -msgstr "Namespace die gebruikt wordt voor het zoeken naar pagina's." - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 -msgid "Nivel" -msgstr "Niveau" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 -msgid "Eliminar Seleccionados" -msgstr "Verwijder selectie" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 -msgid "Nombre del plugin" -msgstr "Plug-in naam" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 -#, fuzzy -msgid "Versión del plugin" -msgstr "Plug-in versie" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 -msgid "Versión Compatible" -msgstr "Geschikte versie" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 -msgid "Versión de sysPass compatible" -msgstr "Geschikte sysPass-versie" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 -msgid "Autor" -msgstr "Auteur" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 -msgid "Autor del plugin" -msgstr "Plug-in auteur" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 -msgid "Publicar enlace a cuenta" -msgstr "Link naar account delen" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 -msgid "Publicar Enlace" -msgstr "Link delen" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 -msgid "Crear cuenta privada" -msgstr "Maak een privé account aan" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 -msgid "Asignar permisos" -msgstr "Machtigingen toewijzen" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 -msgid "Gestión de enlaces" -msgstr "Linkbeheer" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 -msgid "Gestión de cuentas" -msgstr "Accountbeheer" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 -msgid "Gestión de etiquetas" -msgstr "Tags management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 -msgid "Hash" -msgstr "Hash" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 -msgid "Uso" -msgstr "Gebruik" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:54 -#: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 -msgid "Nombre de la etiqueta" -msgstr "Tag naam" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:40 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 -msgid "Hay %d notificaciones pendientes" -msgstr "Er zijn %d ongelezen meldingen" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:165 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 -msgid "Demo" -msgstr "Demo" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 -msgid "Instalación %s" -msgstr "Installatie %s" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 -msgid "Admin de sysPass" -msgstr "sysPass Admin" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 -msgid "Clave Anterior" -msgstr "Vorige wachtwoord" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 -msgid "Actualización %s" -msgstr "Update %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 -msgid "" -"Este código se encuentra en el archivo de configuración de sysPass con la " -"etiqueta \"upgradeKey\"" -msgstr "" -"Deze code is ingesteld in het sysPass config bestand in de tag naam " -"\"upgradekey\"" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 -#: ../../../config/actions.xml:277 -msgid "Ver Wiki" -msgstr "Wiki bekijken" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 -msgid "Resultados de búsqueda de '%s'" -msgstr "Zoekresultaten van '% s'" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 -msgid "Página" -msgstr "Pagina" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 -msgid "No instalado" -msgstr "Niet geïnstalleerd" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 -msgid "Origen" -msgstr "Doel" - -#: ../../../modules/web/Controllers/AccountController.php:226 -msgid "Agente" -msgstr "Agent" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 -msgid "" -"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." -"com/join/project/fmlsBuugyv" -msgstr "" -"Om de vertaling te verbeteren kun je ons op https://poeditor.com/join/" -"project/fmlsBuugyv helpen" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 -msgid "Indica si el idioma se encuentra disponible" -msgstr "Dit laat ons weten of de taal beschikbaar is." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 -msgid "" -"Si no está instalado, es necesario instalar las locales en el sistema " -"operativo. Más información en Wiki." -msgstr "" -"Wanneer dit niet geïnstalleerd is, dien je de juiste besturingssysteem-talen " -"te installeren. Meer info kun je vinden in de Wiki." - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:42 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:112 -msgid "No hay no hay notificaciones pendientes" -msgstr "En zijn geen openstaande berichten" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 -msgid "He realizado una copia de seguridad completa de sysPass" -msgstr "Ik heb een volledige sysPass back-up voltooid" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 -msgid "Por favor espere mientras el proceso se ejecuta" -msgstr "Een ogenblik geduld" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 -msgid "Crear Usuario" -msgstr "Gebruiker toevoegen" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 -msgid "Actualizar Usuario" -msgstr "Gebruiker bijwerken" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:284 -msgid "Actualizar Clave Usuario" -msgstr "Wachtwoord gebruiker bijwerken" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 -msgid "Crear Grupo" -msgstr "Groep toevoegen" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 -msgid "Crear Perfil" -msgstr "Profiel toevoegen" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 -msgid "Actualizar Perfil" -msgstr "Profiel bijwerken" - -#: ../../../../lib/SP/Api/SyspassApi.php:368 -#, fuzzy -msgid "Crear Cliente" -msgstr "Klant toevoegen" - -#: ../../../../lib/SP/Api/SyspassApi.php:279 -msgid "Crear Categoría" -msgstr "Categorie toevoegen" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 -msgid "Actualizar Categoría" -msgstr "Categorie bijwerken" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:623 -msgid "Crear Autorización" -msgstr "Autorisatie toevoegen" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -msgid "Crear Campo" -msgstr "Veld toevoegen" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 -msgid "Actualizar Campo" -msgstr "Veld bijwerken" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:731 -msgid "Crear Enlace" -msgstr "Link aanmaken" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -msgid "Crear Etiqueta" -msgstr "Voeg tag toe" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 -msgid "Actualizar Etiqueta" -msgstr "Update Tag" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:890 -msgid "Actualizar Plugin" -msgstr "Update Plugin" - -#: ../../../../lib/SP/Api/SyspassApi.php:188 -msgid "Crear Cuenta" -msgstr "Account toevoegen" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1091 -msgid "Usuarios importados" -msgstr "Geimporteerde gebruikers" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 -#: ../../../modules/web/Controllers/AccountController.php:926 -msgid "Solicitud" -msgstr "Verzoek" - -#: ../../../../lib/SP/Core/Acl/Acl.php:299 -msgid "Acceso denegado" -msgstr "Toegang geweigerd" - -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:115 -msgid "Error al añadir las etiquetas de la cuenta" -msgstr "Error tijdens het toevoegen van de account tags" - -#: ../../../../lib/SP/Util/ErrorUtil.php:148 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 -#, fuzzy -msgid "Se ha producido una excepción" -msgstr "Er is een uitzondering opgetreden" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:179 -msgid "Nueva Notificación" -msgstr "Nieuw bericht" - -#: ../../../modules/web/Controllers/UserGroupController.php:219 -#: ../../../modules/web/Controllers/UserGroupController.php:222 -msgid "Grupos eliminados" -msgstr "Groepen verwijderd" - -#: ../../../modules/web/Controllers/UserProfileController.php:203 -#: ../../../modules/web/Controllers/UserProfileController.php:206 -msgid "Perfiles eliminados" -msgstr "Profielen verwijderd" - -#: ../../../modules/web/Controllers/ClientController.php:201 -#: ../../../modules/web/Controllers/ClientController.php:204 -#, fuzzy -msgid "Clientes eliminados" -msgstr "Klanten verwijderd" - -#: ../../../modules/web/Controllers/CategoryController.php:206 -#: ../../../modules/web/Controllers/CategoryController.php:209 -msgid "Categorías eliminadas" -msgstr "Categorieën verwijderd" - -#: ../../../modules/web/Controllers/AuthTokenController.php:212 -#: ../../../modules/web/Controllers/AuthTokenController.php:215 -msgid "Autorizaciones eliminadas" -msgstr "Autorisaties verwijderd" - -#: ../../../modules/web/Controllers/CustomFieldController.php:197 -#: ../../../modules/web/Controllers/CustomFieldController.php:200 -msgid "Campos eliminados" -msgstr "Velden verwijderd" - -#: ../../../modules/web/Controllers/PublicLinkController.php:234 -#: ../../../modules/web/Controllers/PublicLinkController.php:237 -msgid "Enlaces eliminados" -msgstr "Links verwijderd" - -#: ../../../modules/web/Controllers/TagController.php:200 -msgid "Etiquetas eliminadas" -msgstr "Tags verwijderd" - -#: ../../../modules/web/Controllers/AccountFileController.php:320 -#: ../../../modules/web/Controllers/AccountFileController.php:323 -msgid "Archivos eliminados" -msgstr "Bestanden verwijderd" - -#: ../../../modules/web/Controllers/AccountController.php:879 -#: ../../../modules/web/Controllers/AccountController.php:882 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:99 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:102 -#: ../../../modules/web/Controllers/AccountManagerController.php:131 -#: ../../../modules/web/Controllers/AccountManagerController.php:134 -msgid "Cuentas eliminadas" -msgstr "Accounts verwijderd" - -#: ../../../modules/web/Controllers/NotificationController.php:327 -#: ../../../modules/web/Controllers/NotificationController.php:330 -msgid "Notificación creada" -msgstr "Bericht aangemaakt" - -#: ../../../modules/web/Controllers/NotificationController.php:251 -#: ../../../modules/web/Controllers/NotificationController.php:254 -msgid "Notificaciones eliminadas" -msgstr "Berichten verwijderd" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:270 -msgid "Usando clave temporal" -msgstr "Gebruikt een tijdelijk wachtwoord" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:131 -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:181 -msgid "Clave temporal caducada" -msgstr "Tijdelijk wachtwoord verlopen" - -#: ../../../../inc/SP/Core/Init.class.php:506 -msgid "Sesión" -msgstr "Sessie" - -#: ../../../../lib/SP/Services/Install/MySQL.php:361 -msgid "Error al comprobar la base de datos" -msgstr "Fout tijdens het controleren van de database" - -#: ../../../../lib/SP/Services/Install/MySQL.php:363 -msgid "Intente de nuevo la instalación" -msgstr "Probeer de installatie opnieuw" - -#: ../../../modules/web/Forms/NotificationForm.php:92 -msgid "Es necesario un componente" -msgstr "Een component ontbreekt." - -#: ../../../modules/web/Forms/NotificationForm.php:96 -msgid "Es necesario un tipo" -msgstr "Een type ontbreekt." - -#: ../../../modules/web/Forms/NotificationForm.php:106 -msgid "Es necesario un destinatario" -msgstr "Een doel ontbreekt." - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:167 -msgid "Error procesando línea" -msgstr "Fout tijdens het uitvoeren van regel" - -#: ../../../modules/web/Controllers/ConfigImportController.php:76 -msgid "Cuentas importadas" -msgstr "Accounts zijn geïmporteerd" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:164 -msgid "Archivo no encontrado" -msgstr "Bestand niet gevonden" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:80 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:98 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:187 -#: ../../../../lib/SP/Services/UserGroup/UserToUserGroupService.php:57 -msgid "Grupo no encontrado" -msgstr "Groep niet gevonden" - -#: ../../../../lib/SP/Services/Notification/NotificationService.php:102 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:121 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:180 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:210 -msgid "Notificación no encontrada" -msgstr "Bericht niet gevonden" - -#: ../../../../lib/SP/Services/Plugin/PluginService.php:92 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:153 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:186 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:206 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:224 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:241 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:258 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:275 -msgid "Plugin no encontrado" -msgstr "Plugin niet gevonden" - -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:65 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:97 -msgid "Perfil no encontrado" -msgstr "Profiel niet gevonden" - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:122 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:145 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:219 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:311 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:346 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:367 -msgid "Enlace no encontrado" -msgstr "Link niet gevonden" - -#: ../../../../lib/SP/Services/Tag/TagService.php:75 -#: ../../../../lib/SP/Services/Tag/TagService.php:94 -#: ../../../../lib/SP/Services/Tag/TagService.php:111 -msgid "Etiqueta no encontrada" -msgstr "Tag niet gevonden" - -#: ../../../../lib/SP/Services/User/UserService.php:192 -msgid "Usuario no encontrado" -msgstr "Gebruiker niet gevonden" - -#: ../../../../lib/SP/Storage/Database/Database.php:131 -msgid "Consulta en blanco" -msgstr "Lege Query" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 -msgid "Cuenta Privada Grupo" -msgstr "privé-account voor groep." - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 -msgid "Privada Grupo" -msgstr "privé-groep" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 -msgid "Sólo es necesaria para archivos XML de sysPass encriptados." -msgstr "Dit is alleen nodig voor versleutelde XML-bestanden van sysPass." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 -msgid "" -"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " -"la actual." -msgstr "" -"Dit is alleen nodig voor XML-bestanden van sysPass die versleuteld zijn met " -"een ander hoofdwachtwoord dan het huidige." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 -msgid "Sólo es necesario para archivos CSV." -msgstr "Dit is alleen nodig voor CSV-bestanden." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 -msgid "" -"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" -"\"notas\"" -msgstr "" -"\"Account_naam\";\"client\";\"categorie\";\"url\";\"gebruiker\";\"wachtwoord" -"\";\"notities\"" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 -msgid "Crear cuenta privada para grupo" -msgstr "Maak een privé-account voor de groep." - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 -msgid "Notificación global" -msgstr "Algemene mededeling" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 -msgid "Global" -msgstr "Algemeen" - -#: ../../../../lib/SP/Services/Service.php:115 -msgid "No es posible iniciar una transacción" -msgstr "Een transactie kan niet gestart worden." - -#: ../../../../lib/SP/Services/Crypt/MasterPassService.php:101 -#: ../../../../lib/SP/Services/Import/ImportService.php:77 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "No es posible finalizar una transacción" -msgstr "Een transactie kan niet afgesloten worden." - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 -msgid "Clave Maestra %s" -msgstr "hoofdwachtwoord %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 -msgid "" -"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " -"el siguiente inicio." -msgstr "" -"Er is een nieuw hoofdwachtwoord gemaakt voor sysPass, dus de volgende keer " -"dat u zich aanmeldt wordt het gevraagd." - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 -msgid "La nueva clave es: %s" -msgstr "Het nieuwe hoofdwachtwoord %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 -msgid "No olvide acceder lo antes posible para guardar los cambios." -msgstr "Vergeet niet u spoedig aan te melden om de wijzigingen op te slaan." - #: ../../../config/strings.js.inc:84 msgid "Este proceso puede durar algo de tiempo. Desea continuar?" msgstr "Dit proces neemt enige tijd in beslag, wil je doorgaan?" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 -msgid "Búsqueda" -msgstr "Zoeken" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 -msgid "" -"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." -msgstr "Stuur een email naar alle gebruikers of naar geselecteerde groep" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 -msgid "Enviar correo" -msgstr "Mail versturen" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 -msgid "XML" -msgstr "XML" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 -msgid "CSV" -msgstr "CSV" - -#: ../../../../lib/SP/Services/Account/AccountService.php:163 -#: ../../../../lib/SP/Services/Account/AccountService.php:599 -msgid "Cuenta no encontrada" -msgstr "Account niet gevonden" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:161 -msgid "Hash de clave maestra actualizado" -msgstr "Master wachtwoord hash is geupdate" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 -msgid "Error al actualizar el hash de la clave maestra" -msgstr "Fout tijdens het bijwerken van de hash van het hoofdwachtwoord." - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:210 -#: ../../../config/actions.xml:823 -msgid "Editar Notificación" -msgstr "Wijzig bericht" - -#: ../../../modules/web/Controllers/UserController.php:266 -#: ../../../modules/web/Controllers/UserController.php:269 -msgid "Usuarios eliminados" -msgstr "Gebruiker verwijderd" - -#: ../../../modules/web/Controllers/NotificationController.php:360 -#: ../../../modules/web/Controllers/NotificationController.php:363 -msgid "Notificación actualizada" -msgstr "Bericht geupdate" - -#: ../../../../lib/SP/Storage/Database/Database.php:259 -msgid "Restricción de integridad" -msgstr "integriteitsbeperking" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 -msgid "Actualizar hash de clave maestra" -msgstr "Hash van het hoofdwachtwoord bijwerken." - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 -msgid "Modificada" -msgstr "Aangepast" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 -msgid "Eliminada" -msgstr "Verwijderd" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 -msgid "Cuentas (H)" -msgstr "Accounts (H)" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:194 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:224 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:124 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:148 -msgid "Clave de encriptación incorrecta" -msgstr "Onjuist versleutelingswachtwoord." - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:7 -msgid "Área de Texto" -msgstr "Tekstinvoer" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 -msgid "Devolver las cuentas en las que 'login' es propietario" -msgstr "Toon de accounts waarvan login \"login\" de eigenaar is" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 -msgid "Devolver las cuentas con grupo principal 'group_name'" -msgstr "Toon de accounts met \"group_name\" als primaire groepsnaam." - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 -msgid "Devolver las cuentas privadas del usuario actual" -msgstr "Toon de privé-accounts van de gebruiker." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 -msgid "OP Cache" -msgstr "OP Cache" - -#: ../../../modules/web/Controllers/UpgradeController.php:71 -msgid "Código de seguridad incorrecto" -msgstr "Onjuiste beveiligingscode." - -#: ../../../modules/web/Controllers/UpgradeController.php:67 -msgid "Es necesario confirmar la actualización" -msgstr "Het bijwerken moet bevestigd worden" - -#: ../../../modules/web/Controllers/UpgradeController.php:92 -msgid "En 5 segundos será redirigido al login" -msgstr "U wordt binnen 5 seconden omgeleid om in te loggen" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:70 -msgid "Error al aplicar la actualización de la aplicación" -msgstr "Fout tijdens het bijwerken van het programma." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 -msgid "Tamaño máximo de archivo en kilobytes" -msgstr "Maximale bestandsgrootte (kB)" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 -msgid "Actualización de Aplicación" -msgstr "Nieuwe versie van het programma" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 -msgid "" -"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " -"o indique los IDs por defecto para los elementos huérfanos." -msgstr "" -"Er zijn verweesde items. Wijzig die items alstublieft of geef een standaard-" -"ID voor ze." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 -msgid "Introducir un ID de usuario válido para cuentas" -msgstr "Geef een geldige gebruikers-ID voor de accoounts" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 -msgid "Introducir un ID de categoría válido para cuentas" -msgstr "Geef een geldig categorie-ID voor de accounts." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 -#, fuzzy -msgid "Introducir un ID de cliente válido para cuentas" -msgstr "Geef een geldig klant-ID voor de accounts." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 -msgid "Introducir un ID de grupo válido para usuarios" -msgstr "Geef een geldig groep-ID voor de gebruikers." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 -msgid "Introducir un ID de perfil válido para usuarios" -msgstr "Geef een geldig profiel-ID voor de gebruikers." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 -msgid "" -"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " -"necesario reencriptar los datos almacenados" -msgstr "" -"Deze update gebruikt een nieuw encryptie schema zodat het nodig is om alle " -"versleutelde data opnieuw te versleutelen." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 -#, fuzzy -msgid "" -"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." -msgstr "%s Accounts worden aangepast. Dit kan even duren." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 -msgid "Para más información consulte: %s" -msgstr "Meer informatie vindt u hier: %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 -msgid "Introducir login de usuario válido" -msgstr "Geef een geldige gebruikerslogin" - -#: ../../../../lib/SP/Services/Api/ApiService.php:96 -#: ../../../../lib/SP/Services/Auth/LoginService.php:137 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:103 -#: ../../../modules/web/Controllers/UserPassResetController.php:124 -msgid "Intentos excedidos" -msgstr "Te veel pogingen." - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 -msgid "Clave del token" -msgstr "Token Wachtwoord" - -#: ../../../../lib/SP/Services/Track/TrackService.php:162 -msgid "Intentos excedidos (%d/%d)" -msgstr "Te veel pogingen (%d/%d)." - -#: ../../../../lib/SP/Http/Address.php:49 -#: ../../../../lib/SP/Http/Address.php:51 -#: ../../../../lib/SP/Http/Address.php:68 -#: ../../../../lib/SP/Http/Address.php:70 -#: ../../../../lib/SP/Http/Address.php:90 -#: ../../../../lib/SP/Http/Address.php:109 -msgid "IP inválida" -msgstr "Ongeldig IP" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:139 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:277 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:291 -msgid "Token no encontrado" -msgstr "Token niet gevonden" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:68 -msgid "Error al crear track" -msgstr "Token niet gevonden" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:85 -msgid "Error al eliminar track" -msgstr "Fout bij het verwijderen van de track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:102 -msgid "Error al actualizar track" -msgstr "Fout bij het updaten van de track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:146 -msgid "Error al obtener track" -msgstr "Fout bij het ophalen van de track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:169 -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:202 -msgid "Error al obtener tracks" -msgstr "Fout bij het ophalen van de tracks" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 -#, fuzzy -msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." -msgstr "De geëxporteerde items zijn accounts, klanten, categorieën en tags." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 -msgid "Si no se indican los IDs, se crearán nuevos elementos." -msgstr "Wanneer de item ID's niet gezet zijn, zullen ze aangemaakt worden." - -#: ../../../../lib/SP/Services/Task/TaskService.php:184 -msgid "Esperando actualización de progreso ..." -msgstr "Wachten op voortgang van update" - -#: ../../../../inc/SP/Core/Upgrade/Account.class.php:47 -msgid "Actualizando IDs de cuentas" -msgstr "ID's van accounts worden bijgewerkt." - -#: ../../../../inc/SP/Core/Upgrade/Category.class.php:48 -msgid "Actualizando IDs de categorías" -msgstr "ID's van categorieën worden bijgewerkt." - -#: ../../../../inc/SP/Core/Upgrade/Customer.class.php:48 -msgid "Actualizando IDs de clientes" -msgstr "ID's van klanten worden bijgewerkt." - -#: ../../../../inc/SP/Core/Upgrade/Group.class.php:51 -msgid "Actualizando IDs de grupos" -msgstr "ID's van groepen worden bijgewerkt." - -#: ../../../../inc/SP/Core/Upgrade/Profile.class.php:54 -msgid "Actualizando IDs de perfil" -msgstr "ID's van profielen worden bijgewerkt." - -#: ../../../../inc/SP/Core/Upgrade/User.class.php:52 -msgid "Actualizando IDs de usuarios" -msgstr "ID's van gebruikers worden bijgewerkt." +#: ../../../config/strings.js.inc:85 +msgid "Aviso" +msgstr "Waarschuwing" #: ../../../config/strings.js.inc:87 msgid "" @@ -6651,29 +2349,10 @@ msgid "" msgstr "Aan het wek. Venster of tab van de browser niet sluiten." #: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 msgid "Incluir Letras" msgstr "Voeg letters toe" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 -msgid "Sesión Encriptada" -msgstr "Versleutelde sessie" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 -msgid "Indica si los datos de la sesión están encriptados en el servidor" -msgstr "Geeft aan of de sessie op de server versleuteld wordt." - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "Sí" -msgstr "Ja" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "No" -msgstr "Nee" - #: ../../../config/strings.js.inc:89 msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." msgstr "Cookies zijn uitgeschakeld. Het programma zal niet correct werken." @@ -6682,890 +2361,88 @@ msgstr "Cookies zijn uitgeschakeld. Het programma zal niet correct werken." msgid "Portapapeles no soportado por el navegador." msgstr "Uw browser ondersteunt het klembord niet." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 -msgid "Atributo Login" -msgstr "Login attribuut" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 -msgid "" -"Define el atributo a utilizar para el login del usuario en la importación." -msgstr "Defines the attribute for the user's login when importing." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 -msgid "" -"Habilita el acceso a los usuarios que estén incluidos en los grupos " -"secundarios." -msgstr "Grants access to the users that are included in the secondary groups." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 -msgid "" -"Por defecto el usuario de un grupo secundario es permitido si el grupo " -"secundario está establecido como el primario del usuario." -msgstr "" -"By default, the user in a secondary group is granted if the secondary group " -"is set as the user's main group." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 -msgid "Acceso Grupos Secundarios" -msgstr "Onderliggende groepen toegang" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 -msgid "Encriptar los datos de la sesión de PHP." -msgstr "Versleutel de gegevens van de PHP-sessie." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 -msgid "" -"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " -"datos almacenados no serán legibles." -msgstr "" -"Dit verhoogt de veiligheid van de PHP-sessie doordat de opgeslagen gegevens " -"onleesbaar zijn." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 -msgid "Encriptar Sesión" -msgstr "Versleutel sessie" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 -msgid "Atributo Nombre" -msgstr "Naam attribuut" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 -msgid "" -"Define el atributo a utilizar para el nombre del usuario en la importación." -msgstr "Definieer de attribuut voor de gebruikersnaam tijdens het importeren." +#: ../../../config/strings.js.inc:91 +msgid "Realizando auto-login" +msgstr "Performing auto-login" #: ../../../config/strings.js.inc:92 msgid "Hay una versión más reciente del plugin {0} ({1})" msgstr "Er is een nieuwere versie van de plugn {0} ({1})" -#: ../../../../lib/SP/Bootstrap.php:267 -msgid "Versión de PHP requerida >= %s <= %s" -msgstr "Vereiste PHP versie >= %s <= %s" +#: ../../../config/strings.js.inc:93 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:30 +msgid "Actualizado" +msgstr "Bijgewerkt" -#: ../../../../lib/SP/Config/ConfigUtil.php:111 -msgid "Actual: %s - Necesario: 750" -msgstr "Huidig: %s - Vereist: 750" +#: ../../../config/strings.js.inc:94 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:36 +msgid "Error al comprobar actualizaciones" +msgstr "Fout bij checken van updates" -#: ../../../../lib/SP/Core/Acl/Actions.php:176 -msgid "Acción no encontrada" -msgstr "Actie niet gevonden" +#: ../../../config/strings.js.inc:95 +msgid "Avisos de sysPass" +msgstr "sysPass Mededelingen" -#: ../../../../lib/SP/Core/Context/ContextBase.php:103 -#: ../../../../lib/SP/Core/Context/ContextBase.php:126 -msgid "Contexto ya inicializado" -msgstr "Context al geïnitialiseerd" +#: ../../../config/strings.js.inc:96 +msgid "Vaciar los tracks?" +msgstr "Clear tracks out?" -#: ../../../../lib/SP/Core/Context/ContextBase.php:109 -msgid "Contexto inválido" -msgstr "Ongeldige context" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:154 -msgid "Contexto no inicializado" -msgstr "Context niet geïnitialiseerd" - -#: ../../../../lib/SP/Core/UI/Theme.php:193 -msgid "Clase no válida para iconos" -msgstr "Ongeldige icons klasse" - -#: ../../../../lib/SP/Mvc/Model/QueryCondition.php:71 -msgid "Tipo de filtro inválido" -msgstr "Verkeerde filter type" - -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:95 -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:157 -msgid "Tipo de objeto incorrecto" -msgstr "Verkeerde object type" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 -msgid "Realizado por: %s (%s)" -msgstr "Uitgevoerd door: %s (%s)" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 -msgid "Dirección IP: %s" -msgstr "IP Adres /%" - -#: ../../../../lib/SP/Providers/Mail/MailProvider.php:91 -msgid "No es posible inicializar" -msgstr "Initialiseren lukt niet" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 -#: ../../../modules/web/Controllers/NotificationController.php:267 -#: ../../../modules/web/Controllers/NotificationController.php:298 -msgid "Notificación" -msgstr "Notificatie" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:302 -msgid "Error al eliminar los archivos" -msgstr "Fout tijdens het verwijderen van de bestanden" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:292 -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:315 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:501 -#: ../../../../lib/SP/Services/Account/AccountService.php:616 -msgid "Error al eliminar las cuentas" -msgstr "Fout tijdens het verwijderen van de accounts" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:253 -msgid "Error al eliminar la categorías" -msgstr "Fout tijdens het verwijderen van de categorieën" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:264 -#: ../../../../lib/SP/Services/Client/ClientService.php:127 -msgid "Error al eliminar los clientes" -msgstr "Fout tijdens het verwijderen van de clients" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:239 -#, fuzzy -msgid "Error al eliminar los campos personalizados" -msgstr "Fout tijdens het verwijderen van de bijzondere velden" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:61 -msgid "Error al crear el tipo de campo" -msgstr "Fout tijdens het aanmaken van het veldtype" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:97 -msgid "Error al actualizar el tipo de campo" -msgstr "Fout tijdens het updaten van het veldtype" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:179 -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:198 -msgid "Error al eliminar el tipo de campo" -msgstr "Fout tijdens het verwijderen van het veldtype" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:179 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:302 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:140 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:159 -msgid "Error al eliminar las notificaciones" -msgstr "Fout tijdens het verwijderen van de notificaties" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:447 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:493 -msgid "El enlace no existe" -msgstr "De link bestaat niet" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:243 -#: ../../../../lib/SP/Services/Tag/TagService.php:126 -msgid "Error al eliminar etiquetas" -msgstr "Fout tijdens het verwijderen van de tags" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:353 -#: ../../../../lib/SP/Services/User/UserService.php:209 -msgid "Error al eliminar los usuarios" -msgstr "Fout tijdens het verwijderen van de gebruikers" - -#: ../../../../lib/SP/Services/User/UserPassService.php:256 -#: ../../../../lib/SP/Services/User/UserService.php:123 -#: ../../../../lib/SP/Services/User/UserService.php:154 -#: ../../../../lib/SP/Services/User/UserService.php:173 -msgid "El usuario no existe" -msgstr "De gebruiker bestaat niet" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:114 -msgid "Error al eliminar los perfiles" -msgstr "Fout tijdens het verwijderen van de profielen" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 -msgid "Cuentas actualizadas: %d / %d" -msgstr "Accounts die geupdated zijn: %d / %d" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 -msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" -msgstr "Geupdate accounts: %d / %d - %d%% - VTA: %ds (%.2f/s)" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:145 -msgid "Error al eliminar archivos" -msgstr "Fout tijdens het verwijderen van de bestanden" - -#: ../../../../lib/SP/Services/Api/ApiRequest.php:88 -msgid "Fomato incorrecto" -msgstr "Invalid format" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:43 -#: ../../../modules/api/Controllers/Help/TagHelp.php:65 -#: ../../../modules/api/Controllers/Help/TagHelp.php:89 -msgid "Id de etiqueta" -msgstr "Tag Id" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:158 -msgid "Error al eliminar tokens" -msgstr "Error while removing the tokens" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:763 -msgid "Exportación" -msgstr "Export" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:167 -msgid "Copiando base de datos" -msgstr "Copying database" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:303 -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:338 -msgid "Copiando aplicación" -msgstr "Copying application" - -#: ../../../../lib/SP/Services/Config/ConfigService.php:68 -#: ../../../../lib/SP/Services/Config/ConfigService.php:153 -msgid "Parámetro no encontrado (%s)" -msgstr "Parameter not found (%s)" - -#: ../../../../lib/SP/Services/Service.php:109 -msgid "Rollback" -msgstr "Rollback" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:160 -msgid "Error al comprobar clave temporal" -msgstr "Error while checking the temporary password" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:109 -msgid "Campo no encontrado" -msgstr "Field not found" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:130 -msgid "Error al eliminar los campos" -msgstr "Error while deleting the fields" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:233 -msgid "Exportando categorías" -msgstr "Exporting categories" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:345 -msgid "Exportando clientes" -msgstr "Exporting clients" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:391 -msgid "Exportando etiquetas" -msgstr "Exporting tags" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:435 -msgid "Exportando cuentas" -msgstr "Exporting accounts" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:158 -#: ../../../../lib/SP/Services/Import/KeepassImport.php:103 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:387 -msgid "Cuenta importada" -msgstr "Account imported" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:58 -msgid "Importación XML KeePass" -msgstr "KeePass XML Import" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:91 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:211 -msgid "Categoría importada" -msgstr "Categorie geïmporteerd" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:58 -msgid "Importación XML sysPass" -msgstr "sysPass XML import" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:162 -msgid "Datos desencriptados" -msgstr "Data onversleuteld" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:250 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:290 -msgid "Cliente importado" -msgstr "Client geïmporteerd" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:326 -msgid "Etiqueta importada" -msgstr "Tag geimporteerd" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:99 -msgid "Formato no detectado" -msgstr "Format niet gedetecteerd" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:107 -msgid "Not implemented" -msgstr "Niet geimplementeerd" - -#: ../../../../lib/SP/Services/Install/MySQL.php:135 -msgid "No es posible comprobar el usuario de sysPass (%s)" -msgstr "Unable to check the sysPass user (%s)" - -#: ../../../../lib/SP/Services/Install/MySQL.php:213 -#: ../../../../lib/SP/Services/Install/MySQL.php:329 -#: ../../../../lib/SP/Services/Install/MySQL.php:341 -msgid "Error al crear la BBDD ('%s')" -msgstr "Error while creating the DB ('%s')" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 -msgid "Importado desde LDAP" -msgstr "Imported from LDAP" - -#: ../../../../lib/SP/Services/Mail/MailService.php:66 -msgid "Prueba de correo" -msgstr "Mail test" - -#: ../../../../lib/SP/Services/Mail/MailService.php:67 -msgid "" -"Esto es una prueba de correo para verificar el correcto funcionamiento de la " -"configuración." -msgstr "" -"This is a test email in order to verify that the configuration is working " -"right." - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:238 -msgid "Error al eliminar los enlaces" -msgstr "Error while removing the links" - -#: ../../../../lib/SP/Services/Task/TaskService.php:81 -msgid "No es posible crear archivo de bloqueo" -msgstr "Unable to create the lock file" - -#: ../../../../lib/SP/Services/Track/TrackService.php:163 -msgid "Segundos" -msgstr "Seconds" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:63 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:86 -msgid "Actualizar Aplicación" -msgstr "Update Application" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:57 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:59 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:102 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:139 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:171 -msgid "Actualización de campos personalizados" -msgstr "Custom fields update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:157 -#: ../../../modules/web/Controllers/CustomFieldController.php:235 -#: ../../../modules/web/Controllers/CustomFieldController.php:272 -msgid "Campo" -msgstr "Field" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:56 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "Actualización de enlaces públicos" -msgstr "Public links update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:90 -#: ../../../modules/web/Controllers/PublicLinkController.php:246 -msgid "Enlace" -msgstr "Link" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:115 -msgid "Error al eliminar los grupos" -msgstr "Error while deleting the groups" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 -msgid "No es posible leer el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:47 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:58 -msgid "Error al leer datos del archivo (%s)" -msgstr "Error while reading file data (%s)" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 -#: ../../../../lib/SP/Storage/File/FileCache.php:74 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 -msgid "No es posible crear el directorio (%s)" -msgstr "Unable to create the directory (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 -msgid "No es posible escribir en el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 -msgid "No es posible abrir el archivo (%s)" -msgstr "Unable to open the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:92 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:128 -msgid "Error al eliminar el archivo (%s)" -msgstr "Error while deleting the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:54 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:104 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:124 -msgid "No es posible leer/escribir el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 -msgid "Error al descomprimir datos del archivo (%s)" -msgstr "Error while decompressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 -msgid "Error al obtener los datos" -msgstr "Error while retrieving the data" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 -msgid "Error al comprimir datos del archivo (%s)" -msgstr "Error while compressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:112 -msgid "Error al escribir datos en el archivo (%s)" -msgstr "Error while writing data to file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 -msgid "Datos no cargados" -msgstr "Data not loaded" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 -msgid "No es posible cerrar el archivo (%s)" -msgstr "Unable to close the file (%s)" - -#: ../../../modules/api/Controllers/AccountController.php:70 -msgid "Cuenta visualizada" -msgstr "Account displayed" - -#: ../../../modules/api/Controllers/AccountController.php:102 -#: ../../../modules/web/Controllers/AccountController.php:554 -#: ../../../modules/web/Controllers/AccountController.php:610 -msgid "Clave visualizada" -msgstr "Password viewed" - -#: ../../../modules/api/Controllers/ConfigController.php:82 -#: ../../../modules/web/Controllers/ConfigBackupController.php:92 -msgid "Exportación de sysPass en XML" -msgstr "sysPass XML export" - -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:117 -#: ../../../modules/api/Controllers/TagController.php:146 -msgid "Etiqueta" -msgstr "Tag" - -#: ../../../modules/api/Init.php:135 -msgid "Es necesario actualizar" -msgstr "Updating needed" - -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "HTTPS" -msgstr "HTTPS" - -#: ../../../modules/web/Controllers/AccountController.php:649 -#: ../../../modules/web/Controllers/AccountController.php:683 -msgid "Clave copiada" -msgstr "Password copied" - -#: ../../../modules/web/Controllers/AccountFileController.php:83 -#: ../../../modules/web/Controllers/AccountFileController.php:96 -msgid "Archivo visualizado" -msgstr "File viewed" - -#: ../../../modules/web/Controllers/AccountFileController.php:136 +#: ../../../config/strings.js.inc:97 msgid "Archivo descargado" msgstr "File downloaded" -#: ../../../modules/web/Controllers/AccountFileController.php:186 -msgid "Extensión: %s" -msgstr "Extension: %s" +#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:21 +#, fuzzy +msgid "Javascript es necesario para el correcto funcionamiento" +msgstr "Javascript is benodigd om dit correct uit te voeren." -#: ../../../modules/web/Controllers/AccountFileController.php:193 -msgid "Archivo: %s" -msgstr "File: %s" +#: ../../../modules/web/themes/material-blue/views/_partials/error.inc:14 +#: ../../../modules/web/themes/material-blue/views/_partials/error.inc:15 +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:13 +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 +#: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 +#: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 +msgid "Volver" +msgstr "Terug" -#: ../../../modules/web/Controllers/AccountFileController.php:201 -msgid "Máximo tamaño: %s" -msgstr "Maximum size: %s" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 +msgid "Preferencias de usuario" +msgstr "Gebruiker voorkeuren" -#: ../../../modules/web/Controllers/AccountFileController.php:211 -msgid "Máximo tamaño: %d KB" -msgstr "Maximum size: %d KB" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 +msgid "Salir" +msgstr "Uitloggen" -#: ../../../modules/web/Controllers/AccountFileController.php:334 -msgid "Archivo Eliminado" -msgstr "File Deleted" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:53 +msgid "Demo" +msgstr "Demo" -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 -#: ../../../modules/web/Controllers/AuthTokenController.php:226 -#: ../../../modules/web/Controllers/AuthTokenController.php:292 -#: ../../../modules/web/Controllers/AuthTokenController.php:301 -#: ../../../modules/web/Controllers/AuthTokenController.php:339 -msgid "Autorización" -msgstr "Authorization" +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 +#, fuzzy +msgid "Indica si la conexión utiliza HTTPS." +msgstr "Laat zien of de verbinding HTTPS is" -#: ../../../modules/web/Controllers/AuthTokenController.php:338 -msgid "Autorización visualizada" -msgstr "Authorization viewed" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:78 -msgid "Archivos habilitados" -msgstr "Files enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:83 -msgid "Archivos deshabilitados" -msgstr "Files disabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:96 -msgid "Enlaces públicos habilitados" -msgstr "Public links enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:101 -msgid "Enlaces públicos deshabilitados" -msgstr "Public links disabled" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 -msgid "Esta clave estará activa hasta: %s" -msgstr "This password will be valid until: %s" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -msgid "Email enviado" -msgstr "Email sent" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -msgid "Error al enviar email" -msgstr "Error while sending the email" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:97 -msgid "Syslog remoto habilitado" -msgstr "Remote syslog enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:153 -msgid "Auth Basic habilitada" -msgstr "Auth Basic enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:159 -msgid "Auth Basic deshabiltada" -msgstr "Auth Basic disabled" - -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -msgid "No se importaron cuentas" -msgstr "No accounts were imported" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:115 -#: ../../../modules/web/Controllers/ConfigLdapController.php:238 -msgid "Parámetros de LDAP incorrectos" -msgstr "Wrong LDAP parameters" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:245 -msgid "Importación LDAP" -msgstr "LDAP Import" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 -msgid "Usuarios importados: %d / %d" -msgstr "Imported users: %d / %d" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 -msgid "Errores: %d" -msgstr "Errors: %d" - -#: ../../../modules/web/Controllers/ConfigMailController.php:145 -msgid "Compruebe su buzón de correo" -msgstr "Please, check your inbox" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:99 -msgid "DokuWiki habilitada" -msgstr "DokuWiki enabled" - -#: ../../../modules/web/Controllers/CustomFieldController.php:298 -msgid "Ver Campo" -msgstr "View Field" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 -#: ../../../config/actions.xml:439 -msgid "Actualizar Enlace Público" -msgstr "Update Public Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 -msgid "Nuevo Enlace" -msgstr "New Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 -msgid "No disponible" -msgstr "Unavailable" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 -msgid "Refrescar" -msgstr "Refresh" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 -msgid "Sólo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/Controllers/PublicLinkController.php:109 -msgid "Nuevo Enlace Público" -msgstr "New Public Link" - -#: ../../../modules/web/Controllers/PublicLinkController.php:196 -msgid "Editar Enlace Público" -msgstr "Edit Public Link" - -#: ../../../modules/web/Controllers/StatusController.php:94 -msgid "Versión no disponible" -msgstr "Version unavailable" - -#: ../../../modules/web/Controllers/StatusController.php:142 -msgid "Notificaciones no disponibles" -msgstr "Notifications not available" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 -#: ../../../config/actions.xml:511 -msgid "Ver Etiqueta" -msgstr "View Tag" - -#: ../../../modules/web/Controllers/UserPassResetController.php:90 -msgid "Datos incorrectos" -msgstr "Wrong data" - -#: ../../../modules/web/Controllers/UserPassResetController.php:94 -msgid "No es posible recuperar la clave" -msgstr "Unable to reset the password" - -#: ../../../modules/web/Forms/PublicLinkForm.php:85 -msgid "Es necesario una cuenta" -msgstr "An account is needed" - -#: ../../../config/strings.js.inc:91 -msgid "Realizando auto-login" -msgstr "Performing auto-login" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 -msgid "Abrir enlace a: %s" -msgstr "Open link to: %s" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 -msgid "Cuenta Privada (Grupo)" -msgstr "Private Account (Group)" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 -msgid "Notes" -msgstr "Notes" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 -msgid "Usar Auth Basic" -msgstr "Use Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:26 -msgid "Usar auto-login con Auth Basic" -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 -msgid "Dominio" -msgstr "Domain" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 msgid "" -"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " -"el de Auth Basic." +"Las claves de formularios enviados se encriptan mediante PKI, el resto de " +"datos no." msgstr "" -"The domain will be added to the sysPass user name for checking against the " -"Auth Basic one." +"De verzonden wachtwoorden worden versleuteld via PKI, de andere data niet. " -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 -msgid "Nombre de dominio" -msgstr "Domain name" +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:66 +msgid "Ayuda :: FAQ :: Changelog" +msgstr "Help :: FAQ :: Changelog" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 -msgid "" -"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default users group for newly SSO users" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 -msgid "" -"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default profile for the newly created SSO users." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 -msgid "Importación" -msgstr "Import" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 -msgid "Importar Grupos" -msgstr "Import Groups" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 -msgid "Atributo Nombre Grupo" -msgstr "Group Name Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 -msgid "" -"Define el atributo a utilizar para el nombre del grupo en la importación." -msgstr "Defines the attribute for the user group name when importing." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 -msgid "Filtro" -msgstr "Filter" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 -msgid "Filtro para importar usuarios o grupos de LDAP." -msgstr "Filter for importing LDAP users or groups." - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 -msgid "Destinatarios" -msgstr "Recipients" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 -msgid "Indica si el cliente es visible para todos los usuarios." -msgstr "Sets whether the client is visible by all users" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 -msgid "" -"Por defecto los clientes asignados a cuentas sólo son visibles para los " -"usuarios con acceso a las cuentas." -msgstr "" -"By default, the clients assigned to accounts only will be visible to users " -"who are granted to access to the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 -msgid "URL" -msgstr "URL" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 -msgid "Login SSO" -msgstr "SSO Login " - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 -msgid "Login de inicio de sesión con SSO" -msgstr "Session login with SSO" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 -msgid "Sólo para administradores de la aplicación" -msgstr "Only for application administrators" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 -msgid "Solo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 -msgid "Para iniciar la actualización introduzca el código de seguridad" -msgstr "Please enter the security code to start the upgrade" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:73 -msgid "No es posible cambiar el valor de la clave" -msgstr "Unable to change password value" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:345 -msgid "Filtro incorrecto" -msgstr "Wrong filter" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:159 -msgid "El campo personalizado no existe" -msgstr "Custom field not found" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:212 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:137 -msgid "Error al eliminar los plugins" -msgstr "Error while deleting the plugins" - -#: ../../../../lib/SP/Services/Account/AccountService.php:220 -msgid "Clave maestra no establecida" -msgstr "Master password not set" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:134 -msgid "Error al eliminar las categorías" -msgstr "Error while deleting categories" - -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:80 -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:87 -msgid "No es posible restaurar la configuración" -msgstr "Unable to restore configuration" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldTypeService.php:84 -msgid "Tipo de campo no encontrado" -msgstr "Field type not found" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:177 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:176 -msgid "Fallo en la verificación del hash de integridad" -msgstr "Error while checking integrity hash" - -#: ../../../../lib/SP/Services/Install/Installer.php:359 -msgid "Error al crear el usuario 'admin'" -msgstr "Error while creating 'admin' user" - -#: ../../../../lib/SP/Services/Install/MySQL.php:309 -msgid "Error al seleccionar la BBDD '%s' (%s)" -msgstr "Error while selecting '%s' database (%s)" - -#: ../../../../lib/SP/Services/Mail/MailService.php:186 -msgid "Servicio de correo no disponible" -msgstr "Mail service unavailable" - -#: ../../../../lib/SP/Services/Service.php:137 -#: ../../../../lib/SP/Services/Service.php:144 -msgid "Error ol obtener la clave maestra del contexto" -msgstr "Error while retrieving master pass from context" - -#: ../../../../lib/SP/Services/Service.php:160 -#: ../../../../lib/SP/Services/Service.php:164 -msgid "Error ol establecer la clave maestra en el contexto" -msgstr "Error while setting master password in context" - -#: ../../../../lib/SP/Services/Track/TrackService.php:87 -#: ../../../../lib/SP/Services/Track/TrackService.php:101 -#: ../../../../lib/SP/Services/Track/TrackService.php:128 -msgid "Track no encontrado" -msgstr "Track not found" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:55 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:85 -msgid "Actualización de autorizaciones API" -msgstr "API authorizations update" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 -msgid "No es posible leer desde el archivo (%s)" -msgstr "Unable to read from file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 -msgid "No es posible escribir el archivo (%s)" -msgstr "Unable to write in file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 -msgid "Archivo no encontrado (%s)" -msgstr "File not found (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 -msgid "No es posible eliminar el archivo (%s)" -msgstr "Unable to delete file (%s)" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:89 -#: ../../../../lib/SP/Storage/File/XmlHandler.php:309 -msgid "El nodo XML no existe" -msgstr "The XML node does not exist" - -#: ../../../../lib/SP/Util/ImageUtil.php:65 -msgid "Imagen no válida" -msgstr "Invalid image" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:117 -msgid "Verificación de datos exportados finalizada" -msgstr "Verification of exported data finished" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 -msgid "Encriptado" -msgstr "Encrypted" - -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:173 -msgid "Error al actualizar los datos del campo personalizado" -msgstr "Error while updating custom field's data" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 -msgid "Enlace Directo" -msgstr "Direct Link" +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:70 +msgid "Un proyecto de cygnux.org" +msgstr "Een cygnux.org project" #: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 #: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 @@ -7579,45 +2456,689 @@ msgstr "" "You could use either one or several special parameters separated by blank " "spaces" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 +#, fuzzy +msgid "Buscar cuentas a las que 'login' tenga acceso" +msgstr "Zoek accounts met 'Login' toegangsrechten." + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 +msgid "Devolver las cuentas en las que 'login' es propietario" +msgstr "Toon de accounts waarvan login \"login\" de eigenaar is" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 +#, fuzzy +msgid "Buscar cuentas a las que 'group_name' tenga acceso" +msgstr "Zoek accounts met 'groep_naam' toegangsrechten." + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 +msgid "Devolver las cuentas con grupo principal 'group_name'" +msgstr "Toon de accounts met \"group_name\" als primaire groepsnaam." + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 +msgid "Buscar cuentas con archivos con el nombre 'file_name'" +msgstr "" +" Zoeken naar accounts waarbij een bestand is met de naam ' bestandsnaam ' " + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 +msgid "Buscar cuentas por nombre de cliente" +msgstr "Search for accounts by client name" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 +msgid "Buscar cuentas por nombre de categoría" +msgstr "Search for accounts by category name" + #: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 msgid "Devolver la cuenta con ID" msgstr "Returns the account for the given ID" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 +msgid "Buscar cuentas con la clave caducada" +msgstr "Zoek naar accounts met een verlopen wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 +msgid "Devolver las cuentas privadas del usuario actual" +msgstr "Toon de privé-accounts van de gebruiker." + #: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 msgid "Operador para los parámetros especiales" msgstr "Operator for special parameters" -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 +#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:17 +msgid "No se encontraron registros" +msgstr "Geen records gevonden" + +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:168 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:38 +msgid "Clave (repetir)" +msgstr "Wachtwoord (Herhaal)" + +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 +msgid "Seleccionar Fecha" +msgstr "Selecteer datum" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:19 +msgid "Histórico" +msgstr "Geschiedenis" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:22 +msgid "Detalles" +msgstr "Details" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:127 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:200 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:169 +msgid "Notas" +msgstr "Notities" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:140 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:142 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:271 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:273 +msgid "Historial" +msgstr "Geschiedenis" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:278 +msgid "Seleccionar fecha" +msgstr "Selecteer data" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:160 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 +msgid "Última Modificación" +msgstr "Laatste Aanpassing" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:23 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:57 +msgid "Seleccionar Usuarios" +msgstr "Selecteer gebruikers" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 +msgid "Ver" +msgstr "Bekijk" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:132 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:136 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 +msgid "Editar" +msgstr "Wijzig" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 +msgid "Seleccionar Grupos" +msgstr "Selecteer groepen" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 +msgid "Privada" +msgstr "Privé" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:223 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 +msgid "Privada Grupo" +msgstr "privé-groep" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:15 +msgid "Solicitar Modificación de Cuenta" +msgstr "Aanvraag Account Modificatie" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 +msgid "Petición" +msgstr "Aanvraag" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:52 +#, fuzzy +msgid "Descripción de la petición" +msgstr "Aanvraag beschrijving" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:74 +msgid "Enviar" +msgstr "Verstuur" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 +msgid "Permisos" +msgstr "Permissies" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:218 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 +msgid "Seleccionar Etiquetas" +msgstr "Selecteer tags" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:26 +msgid "Seleccionar Cuenta" +msgstr "Selecteer account" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:191 +msgid "Enlace Público" +msgstr "Publieke link" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:314 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:316 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:319 +msgid "Enlace Directo" +msgstr "Direct Link" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:24 +msgid "Fecha Alta" +msgstr "Datum toegevoegd" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:60 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:62 +msgid "Fecha Edición" +msgstr "Datum Aangepast" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:70 +msgid "Editor" +msgstr "Bewerker" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 +msgid "Fecha de Clave" +msgstr "Wachtwoorddatum" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:37 +msgid "Soltar archivos aquí (max. 5) o click para seleccionar" +msgstr "Drop bestanden hier (max. 5) of klik om te selecteren" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:39 +#, php-format +msgid "Tamaño máximo de archivo: %d MB" +msgstr "Maximale bestandsgrootte: %d MB" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:35 +msgid "Buscar en Wiki" +msgstr "Zoek in de Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:82 +#, php-format +msgid "Abrir enlace a: %s" +msgstr "Open link to: %s" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:109 +msgid "Clave Caducada" +msgstr "Wachtwoord verlopen" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:123 +msgid "Cuenta Privada (Grupo)" +msgstr "Private Account (Group)" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:166 +msgid "Notes" +msgstr "Notes" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 +msgid "Archivos adjuntos" +msgstr "Bijlages" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:218 +msgid "Enlace a Wiki" +msgstr "Link naar Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:210 +msgid "Ver en Wiki" +msgstr "Bekijk in de Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 +#, fuzzy +msgid "Búsqueda global" +msgstr "Globale zoek opdracht" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:83 +msgid "Filtrar Favoritos" +msgstr "Favorieten filteren" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:98 +msgid "Cuentas por página" +msgstr "Accounts per pagina" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:104 +msgid "Más Filtros" +msgstr "Meer filters" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:109 +msgid "Seleccionar Etiqueta" +msgstr "Selecteer Tag" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:22 msgid "Los datos serán encriptados al guardar" msgstr "Data will be encrypted after saving" -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:27 msgid "Los datos serán desencriptados al guardar" msgstr "Data will be unencrypted after saving" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:12 +#, php-format +msgid "La extensión '%s' no está disponible" +msgstr "The '%s' extension is unavailable" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:16 +msgid "Esta extensión es necesaria para mostrar las claves como imágenes" +msgstr "This extension is needed to display passwords as images" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:30 +msgid "Búsqueda" +msgstr "Zoeken" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:36 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:56 +msgid "Resultados por página" +msgstr "Resultaten per pagina" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:41 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:61 +msgid "Número de resultados por página a mostrar, al realizar una búsqueda." +msgstr "Aantal " + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:52 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:72 +msgid "Número de resultados por página" +msgstr "Resultaten per pagina" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 msgid "Caducidad clave cuentas" msgstr "Accounts password expiry" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:71 msgid "Habilita la caducidad de la clave de cuentas." msgstr "Enables the accounts password expiry date." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:79 msgid "Tiempo caducidad clave" msgstr "Password expiry time" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:84 msgid "Número de días para la caducidad de la clave de cuenta." msgstr "Number of days for the account expiry date." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 msgid "Tiempo caducidad (días)" msgstr "Expire time (days)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:112 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:90 +msgid "Nombre de cuenta como enlace" +msgstr "Account naam als link" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:113 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:92 +msgid "" +"Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " +"de la cuenta." +msgstr "Activeer gebruikersnaam als link naar het account." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:128 +msgid "Búsquedas globales" +msgstr "Global zoek actie" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:129 +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 "" +"Laat toe dat gebruikers kunnen zoeken, zodra zij geen rechten hebben zal het " +"niet worden weergegeven." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:144 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 +msgid "Imagen para mostrar clave" +msgstr "Afbeelding om wachtwoord te tonen" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 +msgid "Generar una imagen con el texto de la clave de la cuenta." +msgstr "Genereerd een plaatje met de tekst van het wachtwoord van je account. " + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 +msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." +msgstr "" +"Nuttig voor omgevingen waar het kopiëren van een wachtwoord naar het " +"klembord " + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:164 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:158 +msgid "Resultados en Tarjetas" +msgstr "Resultaat like Kaarten" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:166 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:160 +msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." +msgstr "" +"Maakt het mogelijk rekening te houden met de zoekresultaten als een " +"kaartformaat te laten zien." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:182 +msgid "Acceso Grupos Secundarios" +msgstr "Onderliggende groepen toegang" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:184 +msgid "" +"Habilita el acceso a los usuarios que estén incluidos en los grupos " +"secundarios." +msgstr "Grants access to the users that are included in the secondary groups." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:186 +msgid "" +"Por defecto el usuario de un grupo secundario es permitido si el grupo " +"secundario está establecido como el primario del usuario." +msgstr "" +"By default, the user in a secondary group is granted if the secondary group " +"is set as the user's main group." + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:197 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 +#: ../../../config/actions.xml:73 +msgid "Enlaces Públicos" +msgstr "Publieke links" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:215 +msgid "Habilitar Enlaces Públicos" +msgstr "Publieke links inschakelen" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:217 +msgid "" +"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " +"una cuenta." +msgstr "" +"Schakelt de mogelijkheid om openbare links te maken om de details van een " +"account te bekijken" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:219 +msgid "" +"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." +msgstr "" +"De gekoppelde accounts zullen zichtbaar zijn door iedereen die de link heeft" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:221 +msgid "" +"Para crear enlaces, los usuarios tienen que tener activada la opción en su " +"perfl." +msgstr "" +"Om links te maken, moeten de gebruikers de optie in hun profielen hebben " +"geactiveerd." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:237 +msgid "Usar imagen para clave" +msgstr "Gebruik een afbeelding voor wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:239 +msgid "La clave de la cuenta es visualizada como una imagen." +msgstr "Het account wachtwoord wordt weergegeven als afbeelding." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:248 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:257 +msgid "Tiempo de caducidad" +msgstr "Verval datum" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:263 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:272 +msgid "Número máximo de visitas" +msgstr "Maximale bezoeken" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:298 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 +msgid "Gestión de archivos" +msgstr "Bestands Management" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:299 +#, fuzzy +msgid "Habilita la subida/descarga de archivos para las cuentas." +msgstr "Activeer uploads/downloads van gebruikersbestanden" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:307 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:320 +msgid "Extensiones de archivos permitidas" +msgstr "Bestands extensies toegestaan" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 +#, fuzzy +msgid "Extensiones permitidas para la subida de archivos." +msgstr "Extensies die zijn toegestaan om te uploaden." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:315 +msgid "" +"Escribir extensión y pulsar intro para añadir. Es necesario guardar la " +"configuración." +msgstr "" +"Typ de extensie en druk op enter. Vergeet hierna niet de configuratie op te " +"slaan." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:328 +msgid "Tamaño máximo de archivo" +msgstr "Maximale bestandsgrootte" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:333 +msgid "Establece el tamaño máximo para subir archivos." +msgstr "Stel de maximale grootte in voor uploads." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:337 +msgid "El máximo absuluto es de 16MB." +msgstr "De absolute maximale grootte is 16MB." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:348 +msgid "Tamaño máximo de archivo en kilobytes" +msgstr "Maximale bestandsgrootte (kB)" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:16 +msgid "" +"Esta extensión es necesaria para generar los archivos de copia de seguridad " +"de la aplicación" +msgstr "This extension is needed to build the application's backup files" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 +msgid "Resultado" +msgstr "Resultaat" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:123 +msgid "Descargar Actual" +msgstr "Download Huidig" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:51 +msgid "Copia BBDD" +msgstr "DB Backup" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:58 +msgid "Copia sysPass" +msgstr "sysPass Backup" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:80 +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 "" +"De backup zorgt ervoor dat de configuratie en database kan worden " +"opgeslagen. " + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:82 +#, fuzzy +msgid "" +"Con este método es posible guardar todos los datos de sysPass en otro lugar " +"o utilizarlos para hacer la aplicación portable." +msgstr "" +"Deze optie zorgt ervoor dat alle syspass data extern kan worden opgeslagen " +"en gebruikt" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:185 +msgid "Exportar Cuentas" +msgstr "Exporteer Accounts" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:139 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:147 +msgid "Clave de Exportación" +msgstr "Exporteer Wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:161 +msgid "Clave de Exportación (repetir)" +msgstr "Exporteer Wachtwoord (herhaal)" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:187 +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 "" +"De gebruikers export zorgt ervoor dat deze kunnen worden geëxporteerd voor " +"in een andere syspass instantie." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:189 +#, fuzzy +msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." +msgstr "De geëxporteerde items zijn accounts, klanten, categorieën en tags." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:191 +#, fuzzy +msgid "" +"Las claves de las cuentas son exportadas de forma encriptada para mayor " +"seguridad." +msgstr "" +"De wachtwoorden zijn versleuteld geëxporteerd vanwege extra beveiliging." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:193 +msgid "" +"Es posible establecer una clave de exportación para guardar todos los datos " +"encriptados en el archivo XML." +msgstr "" +"Het is mogelijk om een export wachtwoord in te stellen om de data beveiligd " +"op te slaan in een XML bestand" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:17 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:167 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:50 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:56 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:57 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:102 +msgid "Clave Maestra" +msgstr "Hoofd wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:27 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:201 +#, fuzzy +msgid "Último cambio" +msgstr "Laatste Wijziging" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:35 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:43 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:142 +msgid "Clave Maestra actual" +msgstr "Huidig hoofd wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:49 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:57 +msgid "Nueva Clave Maestra" +msgstr "Nieuw Hoofd Wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:63 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:71 +msgid "Nueva Clave Maestra (repetir)" +msgstr "Nieuw Hoofd Wachtwoord (herhaal)" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:80 +msgid "Guarde la nueva clave en un lugar seguro." +msgstr "Bewaar het nieuwe wachtwoord op een veilige plek." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:84 +msgid "Se volverán a encriptar las claves de todas las cuentas." +msgstr "Alle account zullen opnieuw worden versleuteld." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:88 +msgid "Los usuarios deberán de introducir la nueva clave maestra." +msgstr "Gebruikers moeten het nieuwe master wachtwoord invoeren." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:92 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:130 +#, fuzzy, php-format +msgid "" +"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." +msgstr "%s Accounts worden aangepast. Dit kan even duren." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:109 +msgid "No modificar cuentas" +msgstr "Pas niet de accounts aan" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:111 +msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" +msgstr "" +"Stelt een nieuw master wachtwoord in zonder opnieuw de wachtwoorden te " +"beveiligen. " + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:127 +#, fuzzy +msgid "Confirmar cambio" +msgstr "Bevestig wijziging" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:129 msgid "" "Confirmar el cambio de clave maestra después de haber leído las advertencias " "anteriores." @@ -7625,82 +3146,1600 @@ msgstr "" "Confirm the master password change after you have been read all the above " "warnings." -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:155 +#, fuzzy +msgid "" +"La clave maestra es utilizada para encriptar las claves de las cuentas de " +"sysPass para mantenerlas seguras." +msgstr "" +"Het master wachtwoord word gebruikt om alle wachtwoorden veilig te " +"versleutelen." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:157 +#, fuzzy +msgid "" +"Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " +"que incluya números, letras y símbolos." +msgstr "" +"Het advies is om dit geregeld te veranderen, gebruik hiervoor een sterk " +"wachtwoord." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:159 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#, php-format +msgid "Para más información consulte: %s" +msgstr "Meer informatie vindt u hier: %s" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:169 +msgid "Actualizar hash de clave maestra" +msgstr "Hash van het hoofdwachtwoord bijwerken." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:189 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:323 +msgid "Clave Temporal" +msgstr "Tijdelijk Wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:203 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:218 +msgid "No generada" +msgstr "Niet gegenereerd" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:211 +msgid "Válido hasta" +msgstr "Geldig tot" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:227 +msgid "Intentos" +msgstr "Pogingen" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:244 +msgid "Validez (s)" +msgstr "Leven(s)" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:263 +msgid "Enviar correo" +msgstr "Mail versturen" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:265 +msgid "" +"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." +msgstr "Stuur een email naar alle gebruikers of naar geselecteerde groep" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:325 +#, fuzzy +msgid "" +"La clave temporal es utilizada como clave maestra para los usuarios que " +"necesitan introducirla al iniciar la sesión, así no es necesario facilitar " +"la clave maestra original." +msgstr "" +" Het tijdelijke wachtwoord wordt gebruikt als een hoofdwachtwoord voor de " +"gebruikers die dit moeten invoeren bij het inloggen. Hierdoor is het niet " +"nodig om hen het echte Master Password te vertellen." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:332 +msgid "Generar" +msgstr "Genereer" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:12 +msgid "Autentificación" +msgstr "Authenticatie" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:30 +msgid "Usar Auth Basic" +msgstr "Use Auth Basic" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:31 msgid "Usar Auth Basic para autorizar los accesos a la aplicación." msgstr "Use Auth Basic for authorizing the accesses to the application" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:45 msgid "Usar Auth Basic SSO" msgstr "Use Auth Basic SSO" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:46 msgid "Usar auto-login con Auth Basic." msgstr "Use auto-login through Auth Basic" -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:54 +msgid "Dominio" +msgstr "Domain" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:59 +msgid "" +"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " +"el de Auth Basic." +msgstr "" +"The domain will be added to the sysPass user name for checking against the " +"Auth Basic one." + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:69 +msgid "Nombre de dominio" +msgstr "Domain name" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:249 +msgid "Grupo por Defecto" +msgstr "Standaard Groep" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:80 +msgid "" +"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Sets the default users group for newly SSO users" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:264 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:274 +msgid "Perfil por Defecto" +msgstr "Standaard Profiel" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:105 +msgid "" +"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Sets the default profile for the newly created SSO users." + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:98 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:176 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:72 +msgid "Eventos" +msgstr "Evenementen" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:30 +msgid "Habilitar log de eventos" +msgstr "Activeer Event Log" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:31 +msgid "Guarda las acciones realizadas en la aplicación." +msgstr "Slaat de acties van de applicatie op." + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:45 +msgid "Habilitar Syslog" +msgstr "Syslog inschakelen" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:60 +msgid "Habilitar Syslog Remoto" +msgstr "Schakel Remote Syslog in" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:94 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:66 +msgid "Servidor" +msgstr "Server" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:78 +msgid "Nombre o dirección IP" +msgstr "Hostnaam of IP-adres" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:84 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:79 +msgid "Puerto" +msgstr "Poort" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:12 +msgid "Proxy" +msgstr "Proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:30 +msgid "Usar Proxy" +msgstr "Gebruik Proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:31 msgid "Usar proxy para comprobación de actualizaciones y notificaciones." msgstr "Use a proxy server for checking out for updates and notifications." -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 -msgid "Usado en" -msgstr "Used in" +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:47 +msgid "Servidor proxy" +msgstr "Proxy server" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 -msgid "(*) Incluido en grupo" -msgstr "(*) Listed in group" +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:61 +msgid "Puerto del servidor proxy" +msgstr "Proxy server poort" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -msgid "La extensión '%s' no está disponible" -msgstr "The '%s' extension is unavailable" +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:75 +msgid "Usuario del servidor proxy" +msgstr "Proxy server gebruiker" -#: ../../../../lib/SP/Services/Service.php:133 -#: ../../../../lib/SP/Services/Service.php:140 -msgid "Error al obtener la clave maestra del contexto" -msgstr "Error while retrieving master password from context" +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:89 +msgid "Clave del servidor proxy" +msgstr "Proxy server wachtwoord" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 -msgid "Esta extensión es necesaria para mostrar las claves como imágenes" -msgstr "This extension is needed to display passwords as images" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 -msgid "" -"Esta extensión es necesaria para generar los archivos de copia de seguridad " -"de la aplicación" -msgstr "This extension is needed to build the application's backup files" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:16 msgid "" "Esta extensión es necesaria comprobar las actualizaciones y notificaciones" msgstr "This extension is needed to check for sysPass updates and notices" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:24 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:15 +msgid "Sitio" +msgstr "Site" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:137 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:139 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:28 +msgid "Idioma" +msgstr "Taal" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:35 +msgid "" +"Establece el idioma global de la aplicación. Es posible establecer un idioma " +"por usuario en las preferencias." +msgstr "Stel de algemene taal in. Per gebruiker is dit aan te passen." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:39 +msgid "" +"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." +"com/join/project/fmlsBuugyv" +msgstr "" +"Om de vertaling te verbeteren kun je ons op https://poeditor.com/join/" +"project/fmlsBuugyv helpen" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:67 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:42 +msgid "Tema Visual" +msgstr "Visueel Thema" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:62 +#, fuzzy +msgid "" +"Establece el tema visual global de la aplicación. Es posible establecer un " +"tema visual por usuario en las preferencias." +msgstr "Stel het algemene thema in, dit is per gebruiker aan te passen." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:89 +msgid "Timeout de sesión (s)" +msgstr "Sessie Timeout(s)" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:107 +msgid "Forzar HTTPS" +msgstr "Forceer HTTPS" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:108 +msgid "Fuerza para que todas las conexiones sean a través de HTTPS." +msgstr "Dit forceert het gebruik van HTTPS op alle verbindingen" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:122 +msgid "Habilitar depuración" +msgstr "Activeer debugging" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:123 +msgid "" +"Muestra información relativa a la configuración de la aplicación y " +"rendimiento." +msgstr "Laat informatie over de applicatie en prestaties." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:137 +msgid "Modo mantenimiento" +msgstr "Onderhouds mode" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:138 +#, fuzzy +msgid "" +"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " +"necesario modificar el archivo de configuración." +msgstr "In deze modus kan niemand inloggen. Sla de configuratie wel op." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:152 +msgid "Comprobar actualizaciones" +msgstr "Check voor updates" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:153 +msgid "" +"Comprobar actualizaciones de la aplicación (sólo para los usuarios " +"administradores)." +msgstr "Check voor applicatie updates (alleen voor administrators)" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:167 +msgid "Comprobar notificaciones" +msgstr "Check voor mededelingen" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:168 +#, fuzzy +msgid "" +"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " +"para los usuarios administradores)." +msgstr "" +"Controleer syspass beveiligingsfouten of andere meldingen (Alleen voor " +"administrators)" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 +msgid "Encriptar Sesión" +msgstr "Versleutel sessie" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:184 +msgid "Encriptar los datos de la sesión de PHP." +msgstr "Versleutel de gegevens van de PHP-sessie." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:185 +msgid "" +"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " +"datos almacenados no serán legibles." +msgstr "" +"Dit verhoogt de veiligheid van de PHP-sessie doordat de opgeslagen gegevens " +"onleesbaar zijn." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +msgid "Importar CSV/XML" +msgstr "CSV/XML Import" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:28 +msgid "Usuario por Defecto" +msgstr "Standaard Gebruiker" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:23 +msgid "Define el usuario por defecto para las cuentas importadas." +msgstr "Bepaalt de standaard gebruiker voor de geïmporteerde accounts." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:50 +msgid "Define el grupo por defecto para las cuentas importadas." +msgstr "Bepaalt de standaard groep voor de geïmporteerde accounts." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:72 +msgid "Archivo" +msgstr "Bestand" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:75 +msgid "Soltar archivo aquí o click para seleccionar" +msgstr "Sleep de bestanden naar hier of selecteer deze" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 +#, fuzzy +msgid "" +"Permite realizar la importación de Cuentas, Categorías y Clientes desde " +"archivos XML y CSV." +msgstr "" +"Laat toe dat je Accounts, Categories and Customers import from XML or CSV " +"files." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 +msgid "" +"Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" +msgstr "" +" Hiermee kun je de accounts, categorieën en klanten importeren uit XML of " +"CSV -bestanden." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 +msgid "" +"Arrastar el archivo a importar a la zona indicada o hacer click sobre la " +"flecha." +msgstr "Drag & Drop het bestand naar de import zone of klik op de pijl." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 +msgid "" +"Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " +"KeePass o KeePassX y la categoría igual al nombre de los grupos." +msgstr "" +"Voor KeePass of KeePassX bestanden, zal de naam van de klant zijn KeePass of " +"KeePassX en de categorie naam als de groepsnamen." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 +msgid "La importación de archivos CSV se realiza con el siguiente formato:" +msgstr " Het CSV -bestand importeren moet aan het volgende format doen:" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:115 +msgid "" +"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" +"\"notas\"" +msgstr "" +"\"Account_naam\";\"client\";\"categorie\";\"url\";\"gebruiker\";\"wachtwoord" +"\";\"notities\"" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:117 +#, fuzzy +msgid "" +"En todos los casos, si el cliente o la categoría no están creados, se crean " +"automáticamente." +msgstr "" +"In alle gevallen, indien de klant of de categorie niet bestaat zal deze " +"automatisch worden aangemaakt." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:125 +msgid "XML" +msgstr "XML" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:131 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:146 +msgid "Clave de Importación" +msgstr "Importeer Wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:136 +msgid "Sólo es necesaria para archivos XML de sysPass encriptados." +msgstr "Dit is alleen nodig voor versleutelde XML-bestanden van sysPass." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:157 +msgid "" +"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " +"la actual." +msgstr "" +"Dit is alleen nodig voor XML-bestanden van sysPass die versleuteld zijn met " +"een ander hoofdwachtwoord dan het huidige." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:174 +msgid "CSV" +msgstr "CSV" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:195 +msgid "Delimitador CSV" +msgstr "CSV scheidingsteken" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:185 +msgid "Sólo es necesario para archivos CSV." +msgstr "Dit is alleen nodig voor CSV-bestanden." + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 +msgid "Información de la Aplicación" +msgstr "Applicatie Informatie" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:23 +msgid "Versión sysPass" +msgstr "sysPass versie" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:33 +msgid "Base de Datos" +msgstr "Database" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:47 +msgid "PHP" +msgstr "PHP" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:49 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:34 +msgid "Versión" +msgstr "Versie" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:51 +msgid "Extensiones" +msgstr "Extensies" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 msgid "Extensiones no disponibles" msgstr "Unavailable extensions" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:59 +msgid "Memoria Usada" +msgstr "Gebruikt geheugen" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Tasa de descarga" +msgstr "Download rate" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:66 +msgid "OP Cache" +msgstr "OP Cache" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:88 +msgid "Copia de Configuración" +msgstr "Configuratie back-up" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:100 +msgid "Indica si el idioma se encuentra disponible" +msgstr "Dit laat ons weten of de taal beschikbaar is." + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:104 +msgid "" +"Si no está instalado, es necesario instalar las locales en el sistema " +"operativo. Más información en Wiki." +msgstr "" +"Wanneer dit niet geïnstalleerd is, dien je de juiste besturingssysteem-talen " +"te installeren. Meer info kun je vinden in de Wiki." + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:116 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:126 +msgid "Sesión Encriptada" +msgstr "Versleutelde sessie" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:121 +msgid "Indica si los datos de la sesión están encriptados en el servidor" +msgstr "Geeft aan of de sessie op de server versleuteld wordt." + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "Sí" +msgstr "Ja" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "No" +msgstr "Nee" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:136 +msgid "Plugins Cargados" +msgstr "Geladen plugins" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:16 msgid "Esta extensión es necesaria conectar con el servidor de LDAP" msgstr "This extension is needed to connect to the LDAP server" -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:46 +msgid "Habilitar LDAP" +msgstr "Activeer LDAP" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:48 +#, fuzzy +msgid "Habilita de autentificación mediante servidor LDAP." +msgstr "Schakelt verificatie in voor de LDAP-server." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:50 +msgid "Este método utilizará MySQL en caso de fallo." +msgstr "Deze methode zal MySQL gebruiken als fallback." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:65 +msgid "Active Directory" +msgstr "Active Directory" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:67 +msgid "Habilita el modo de conexión con LDAP de Active Directory." +msgstr "Activeer Active Directory LDAP connectie mode" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:84 +msgid "Habilita la conexión mediante TLS." +msgstr "Enables the connection over TLS" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:99 +#, fuzzy +msgid "Nombre o dirección IP del servidor de LDAP." +msgstr "Hostnaam of IP adres van de LDAP Server" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:185 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:219 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:131 +msgid "Ejemplos:" +msgstr "Voorbeelden:" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:125 +msgid "Usuario de conexión" +msgstr "Verbind Gebruiker" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:130 +msgid "Usuario para conectar con el servicio de LDAP." +msgstr "Gebruiker om verbinding te maken met de LDAP- service." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:155 +msgid "Clave de conexión" +msgstr "Verbind Wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:160 +msgid "Clave del usuario de conexión a LDAP." +msgstr "LDAP connectie gebruikers wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:176 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:200 +msgid "Base de búsqueda" +msgstr "Zoek basis." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:181 +msgid "Base en la que realizar la búsqueda de usuarios de LDAP." +msgstr "LDAP uitvalsbasis om de LDAP-gebruikers zoekopdrachten te doen." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:211 +#, fuzzy +msgid "" +"Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." +msgstr "LDAP-groep waar de gebruiker in moet zitten om te kunnen inloggen." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:215 +msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." +msgstr " Deze groep moet in de LDAP-zoekbasis worden geplaatst ." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:244 +msgid "" +"Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." +msgstr "Definieer de standaard gebruikers groep voor nieuwe LDAP-gebruikers." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:269 +msgid "" +"Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." +msgstr "Definieert het standaard profiel voor de nieuwe LDAP-gebruikers." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:321 +msgid "Importación" +msgstr "Import" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:337 +msgid "Atributo Login" +msgstr "Login attribuut" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:332 +msgid "" +"Define el atributo a utilizar para el login del usuario en la importación." +msgstr "Defines the attribute for the user's login when importing." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:350 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:360 +msgid "Atributo Nombre" +msgstr "Naam attribuut" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:355 +msgid "" +"Define el atributo a utilizar para el nombre del usuario en la importación." +msgstr "Definieer de attribuut voor de gebruikersnaam tijdens het importeren." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:385 +msgid "Importar Grupos" +msgstr "Import Groups" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:394 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:404 +msgid "Atributo Nombre Grupo" +msgstr "Group Name Attribute" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:399 +msgid "" +"Define el atributo a utilizar para el nombre del grupo en la importación." +msgstr "Defines the attribute for the user group name when importing." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:415 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:429 +msgid "Filtro" +msgstr "Filter" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:420 +msgid "Filtro para importar usuarios o grupos de LDAP." +msgstr "Filter for importing LDAP users or groups." + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:34 +msgid "Habilitar notificaciones de correo" +msgstr "Activeer email notificaties" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 +msgid "Habilitar peticiones por correo" +msgstr "Activeer aanvragen per email" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:50 +#, fuzzy +msgid "" +"Habilita que los usuarios puedan solicitar modificaciones o acceso a las " +"cuentas sin permisos." +msgstr "" +"Sta gebruikers toe om modificatie op bestaande accounts aan te vragen of " +"toegang te verlenen aan accounts waar ze geen rechten op hebben" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:97 +msgid "Habilitar Autentificación" +msgstr "Activeer Authenticatie" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:135 +msgid "Seguridad" +msgstr "Beveiliging" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:138 +msgid "Deshabilitada" +msgstr "Uitgeschakeld" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:156 +#, fuzzy +msgid "Dirección de correo de envío" +msgstr "Emailadres ontvanger" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:165 +msgid "Destinatarios" +msgstr "Recipients" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:16 msgid "Esta extensión es necesaria conectar con DokuWiki" msgstr "This extension is needed to connect with DokuWiki" +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:47 +msgid "Habilitar enlaces Wiki" +msgstr "Toestaan van Wiki links" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:48 +#, fuzzy +msgid "" +"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " +"la búsqueda." +msgstr "" +"Toestaan van de optie aan om een link voor zoek resultaten in een externe " +"Wiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:56 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:83 +msgid "URL de búsqueda Wiki" +msgstr "Wiki Zoek URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:61 +#, fuzzy +msgid "URL que utiliza la wiki para realizar una búsqueda de una página." +msgstr "URL welke de Wiki gebruikt voor een zoek actie" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:65 +#, fuzzy +msgid "Como parámetro se utiliza el nombre del cliente." +msgstr "De Klantnaam is gebruikt als parameter" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:69 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:102 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:187 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:214 +msgid "Ejemplo:" +msgstr "Voorbeeld:" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:116 +msgid "URL de página en Wiki" +msgstr "Wiki pagina URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:94 +#, fuzzy +msgid "URL que utiliza la wiki para acceder a los detalles de una página." +msgstr "URL waar gebruikers naar toe verwezen worden" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:98 +msgid "" +"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " +"de la Wiki." +msgstr "" +"De account naam is gebruikt als een parameter in een Wiki zoek variabele" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:136 +msgid "Prefijo para nombre de cuenta" +msgstr "Account naam voorvoegsel" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:127 +msgid "" +"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." +msgstr "" +"Voorvoegsel om te bepalen welk account een link moet hebben naar de Wiki." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:146 +msgid "DokuWiki API" +msgstr "DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:164 +msgid "Habilitar API de DokuWiki" +msgstr "DokuWiki API inschakelen" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:166 +msgid "" +"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." +msgstr "Schakel DokuWiki XML-RPC API voor Wiki links in" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:168 +msgid "" +"Para que esta característica funcione, es necesario habilitar los enlaces " +"Wiki para el filtrado de cuentas." +msgstr "" +"Om deze feature te laten werken, dient u Wiki links voor account filteren " +"aan te zetten" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:199 +msgid "URL API" +msgstr "API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:183 +msgid "URL de la API de DokuWiki." +msgstr "DokuWiki API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:205 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:227 +msgid "URL Base" +msgstr "Basis URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:210 +msgid "URL base de DokuWiki." +msgstr "DokuWiki basis URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:238 +#, fuzzy +msgid "Usuario para conectar a la API de DokuWiki." +msgstr "Gebruiker om te verbinden met de DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:282 +msgid "Namespace" +msgstr "Namespace" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:271 +msgid "Namespace utilizado para buscar las páginas." +msgstr "Namespace die gebruikt wordt voor het zoeken naar pagina's." + +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:170 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:172 +msgid "Instalar" +msgstr "Installeer" + +#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 +msgid "Filtro ON" +msgstr "Filter AAN" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:11 +#, php-format +msgid "Instalación %s" +msgstr "Installatie %s" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:21 +msgid "Admin de sysPass" +msgstr "sysPass Admin" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:29 +msgid "Usuario administrador de sysPass" +msgstr "sysPass admin gebruiker" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:37 +msgid "Login del usuario administrador de sysPass" +msgstr "sysPass administrator Login" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:69 +msgid "Configurar BBDD" +msgstr "DB Configuratie" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:79 +msgid "Usuario acceso BBDD" +msgstr "DB gebruiker" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:87 +#, fuzzy +msgid "Usuario con permisos de administrador de MySQL" +msgstr "Een gebruiker met MySQL admin rechten" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:95 +msgid "Clave acceso BBDD" +msgstr "DB wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:104 +msgid "Nombre BBDD para sysPass" +msgstr "sysPass database naam" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:112 +msgid "Nombre de la base de datos para sysPass" +msgstr "SysPass database naam" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:121 +msgid "Servidor BBDD para sysPass" +msgstr "sysPass database server" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:129 +msgid "Nombre del servidor para instalar la base de datos de sysPass" +msgstr "Servernaam waarop de sysPass database geinstalleerd wordt" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:149 +msgid "Modo Hosting" +msgstr "Hosting mode" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:156 +msgid "No crea ni verifica los permisos del usuario sobre la BBDD" +msgstr "Dit maakt of verifieerd niet de gebruikers rechten op de database." + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 +msgid "Otros" +msgstr "Anderen" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 +msgid "Creador" +msgstr "Maker" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 +msgid "Eliminar" +msgstr "Verwijder" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 +msgid "Eliminar Historial" +msgstr "Delete History" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 +msgid "Opciones" +msgstr "Opties" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 +msgid "Regenerar Autorización" +msgstr "Ververs Autorisatie" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 +msgid "Token" +msgstr "Sleutel" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:54 +msgid "Indica si el cliente es visible para todos los usuarios." +msgstr "Sets whether the client is visible by all users" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:57 +msgid "" +"Por defecto los clientes asignados a cuentas sólo son visibles para los " +"usuarios con acceso a las cuentas." +msgstr "" +"By default, the clients assigned to accounts only will be visible to users " +"who are granted to access to the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 +msgid "Nombre del campo" +msgstr "Veld naam" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 +msgid "Texto Ayuda" +msgstr "Help Tekst" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 +msgid "Ayuda del campo" +msgstr "Veld help" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 +msgid "Obligatorio" +msgstr "Vereist" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 +msgid "Puntuación" +msgstr "Score" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 +msgid "Expresión Regular" +msgstr "Regular Expression" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 +msgid "Incluir Minúsculas" +msgstr "Include Lowercase" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 +msgid "Las cuentas sólo serán visibles por el usuario." +msgstr "Accounts will be only visible by the user." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 +msgid "Los administradores no podrán acceder a las cuentas." +msgstr "Administrators won't be able to display the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 +msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." +msgstr "Accounts will be only visible by the user and his/her main group." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 +msgid "Dirección IP" +msgstr "IP Address" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 +msgid "Timeout" +msgstr "Timeout" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 +msgid "" +"Prioridad de asignación en caso de coincidir con otros valores asignados por " +"usuario, grupo o perfil." +msgstr "" +"Assignment priority if values match with others assigned by user, group or " +"profile." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 +msgid "Prioridad de asignación" +msgstr "Assignment Priority" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 +msgid "" +"Indica si los valores serán forzados al crear o modificar los elementos." +msgstr "Enforces the values to be set either on creating or updating an item." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 +msgid "Los valores serán añadidos a los existentes." +msgstr "Values will be merged with the existing ones." + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:83 +msgid "Hash" +msgstr "Hash" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:91 +msgid "URL" +msgstr "URL" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:101 +msgid "Uso" +msgstr "Gebruik" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 +msgid "Nombre de usuario completo" +msgstr "Volledige gebruikersnaam" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:58 +msgid "Login de inicio de sesión" +msgstr "Sessie login" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:69 +msgid "Login SSO" +msgstr "SSO Login " + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:77 +msgid "Login de inicio de sesión con SSO" +msgstr "Session login with SSO" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:84 +msgid "Email" +msgstr "Emailadres" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:92 +msgid "Dirección de correo" +msgstr "Emailadres" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:200 +msgid "Admin Aplicación" +msgstr "Applicatie Admin" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:202 +msgid "Administrador de la aplicación" +msgstr "Applicatie Administrator" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:218 +#, fuzzy +msgid "Admin Cuentas" +msgstr "Account Admin" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:220 +msgid "Administrador de cuentas" +msgstr "Accounts administrator" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:240 +msgid "Forzar cambio de clave" +msgstr "Forceer wachtwoord wijziging" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:257 +msgid "Deshabilitado" +msgstr "Uitgeschakeld" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 +msgid "Entradas" +msgstr "Waarden" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 +msgid "Último Acceso" +msgstr "Laatste Toegang" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 +msgid "Fecha Clave Maestra" +msgstr "Master Wachtwoord datum" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:311 +msgid "Usado en" +msgstr "Used in" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 +msgid "Usado por" +msgstr "Gebruikt door" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:108 +msgid "(*) Incluido en grupo" +msgstr "(*) Listed in group" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 +msgid "Gestión" +msgstr "Management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 +#, fuzzy +msgid "Crear" +msgstr "Maken" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 +#, fuzzy +msgid "Crear nueva cuenta" +msgstr "Maak een nieuw account" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 +msgid "Ver detalles de cuenta" +msgstr "Bekijk account details" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 +msgid "Ver clave de cuenta" +msgstr "Bekijk account wachtwoord" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 +#: ../../../config/actions.xml:259 +msgid "Ver Historial" +msgstr "Bekijk Geschiedenis" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 +msgid "Ver historial de cuenta" +msgstr "Bekijk account geschiedenis" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 +msgid "Editar cuenta" +msgstr "Wijzig account" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 +msgid "Editar Clave" +msgstr "Wijzig Wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 +msgid "Editar clave de cuenta" +msgstr "Wijzig account wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 +#, fuzzy +msgid "Eliminar cuenta" +msgstr "Verwijder account" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 +msgid "Ver archivos de cuenta" +msgstr "Bekijk account bestanden" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 +msgid "Publicar Enlace" +msgstr "Link delen" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 +msgid "Publicar enlace a cuenta" +msgstr "Link naar account delen" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 +msgid "Crear cuenta privada" +msgstr "Maak een privé account aan" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 +msgid "Crear cuenta privada para grupo" +msgstr "Maak een privé-account voor de groep." + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 +msgid "Asignar permisos" +msgstr "Machtigingen toewijzen" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 +msgid "Gestión de usuarios" +msgstr "Gebruikers management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 +msgid "Gestión de grupos" +msgstr "Groepen management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 +msgid "Gestión de perfiles" +msgstr "Profielen management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 +msgid "Gestión de categorías" +msgstr "Categoriëen Management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 +msgid "Gestión de etiquetas" +msgstr "Tags management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 +#, fuzzy +msgid "Gestión de clientes" +msgstr "Klanten management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 +msgid "Gestión de campos personalizados" +msgstr "Aangepaste velden management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 +msgid "Gestión de autorizaciones API" +msgstr "API autorisatie management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 +msgid "Gestión de enlaces" +msgstr "Linkbeheer" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 +msgid "Gestión de cuentas" +msgstr "Accountbeheer" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 +msgid "Valores por Defecto" +msgstr "Default Values" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 +msgid "Gestión de Valores por Defecto" +msgstr "Default Values Management" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 +#: ../../../config/actions.xml:691 +msgid "Configuración General" +msgstr "Algemene Configuratie" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 +msgid "Opciones de encriptación" +msgstr "Encryptie opties" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 +msgid "Backup" +msgstr "Backup" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 +msgid "Realizar copia de seguridad y exportar" +msgstr "Maak een backup en exporteer" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 +msgid "Importar" +msgstr "Importeer" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 +msgid "Realizar importación de cuentas" +msgstr "Importeer Accounts" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 +msgid "Log de Eventos" +msgstr "Event Log" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 +msgid "Ver log de eventos" +msgstr "Bekijk Event Log" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 +msgid "Nombre del perfil" +msgstr "Profiel naam" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:46 +msgid "Clave Anterior" +msgstr "Vorige wachtwoord" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:73 +msgid "Acceder" +msgstr "Aanmelden" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:82 +#, fuzzy +msgid "¿Olvidó su clave?" +msgstr "Wachtwoord vergeten?" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 +msgid "Aplicación actualizada correctamente" +msgstr "Applicatie succesvol bijgewerkt" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 +#, php-format +msgid "Actualización %s" +msgstr "Update %s" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:20 +msgid "Actualización de BBDD" +msgstr "DB Update" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:22 +msgid "Actualización de Aplicación" +msgstr "Nieuwe versie van het programma" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 +msgid "Código de Seguridad" +msgstr "Beveilingscode" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 +msgid "" +"Este código se encuentra en el archivo de configuración de sysPass con la " +"etiqueta \"upgradeKey\"" +msgstr "" +"Deze code is ingesteld in het sysPass config bestand in de tag naam " +"\"upgradekey\"" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:47 +msgid "" +"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " +"o indique los IDs por defecto para los elementos huérfanos." +msgstr "" +"Er zijn verweesde items. Wijzig die items alstublieft of geef een standaard-" +"ID voor ze." + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:49 +msgid "Si no se indican los IDs, se crearán nuevos elementos." +msgstr "Wanneer de item ID's niet gezet zijn, zullen ze aangemaakt worden." + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:74 +msgid "Introducir un ID de usuario válido para cuentas" +msgstr "Geef een geldige gebruikers-ID voor de accoounts" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 +msgid "Introducir un ID de categoría válido para cuentas" +msgstr "Geef een geldig categorie-ID voor de accounts." + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:96 +#, fuzzy +msgid "Introducir un ID de cliente válido para cuentas" +msgstr "Geef een geldig klant-ID voor de accounts." + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 +msgid "Introducir un ID de grupo válido para usuarios" +msgstr "Geef een geldig groep-ID voor de gebruikers." + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 +msgid "Introducir un ID de perfil válido para usuarios" +msgstr "Geef een geldig profiel-ID voor de gebruikers." + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:128 +msgid "" +"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " +"necesario reencriptar los datos almacenados" +msgstr "" +"Deze update gebruikt een nieuw encryptie schema zodat het nodig is om alle " +"versleutelde data opnieuw te versleutelen." + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:150 +msgid "Introducir login de usuario válido" +msgstr "Geef een geldige gebruikerslogin" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:162 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 +msgid "He realizado una copia de seguridad completa de sysPass" +msgstr "Ik heb een volledige sysPass back-up voltooid" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 +msgid "Por favor espere mientras el proceso se ejecuta" +msgstr "Een ogenblik geduld" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:184 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 +msgid "Actualizar" +msgstr "Update" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:186 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 +msgid "Iniciar Actualización" +msgstr "Start Update" + +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:95 +msgid "Notificación global" +msgstr "Algemene mededeling" + +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:103 +msgid "Sólo para administradores de la aplicación" +msgstr "Only for application administrators" + +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:107 +msgid "Solo Admins" +msgstr "Only Admins" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:29 +msgid "Nombre del plugin" +msgstr "Plug-in naam" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:41 +#, fuzzy +msgid "Versión del plugin" +msgstr "Plug-in versie" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:46 +msgid "Versión Compatible" +msgstr "Geschikte versie" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:53 +msgid "Versión de sysPass compatible" +msgstr "Geschikte sysPass-versie" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:39 +msgid "Autor" +msgstr "Auteur" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:65 +msgid "Autor del plugin" +msgstr "Plug-in auteur" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 +msgid "La aplicación necesita actualizarse" +msgstr "De applicatie dient bijgewerkt te worden" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 +msgid "Para iniciar la actualización introduzca el código de seguridad" +msgstr "Please enter the security code to start the upgrade" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:13 +msgid "Solicitud de Cambio de Clave" +msgstr "Aanvraag wachtwoord wijziging" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 +msgid "Email del Usuario" +msgstr "Emailadres gebruiker" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:39 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:49 +msgid "Volver a iniciar sesión" +msgstr "Terug naar login" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:46 +msgid "Solicitar" +msgstr "Aanvraag" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:56 +msgid "Cambiar" +msgstr "Wijzig" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:107 +msgid "Ordenar resultados por visitas" +msgstr "Sorteer resultaten op bekeken door" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:109 +#, fuzzy +msgid "" +"Ordena los resultados de búsqueda por el número de visitas de las cuentas." +msgstr "" +"Soorteerd de account zoekresultaten op het aantal accountbezichtigingen." + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:124 +msgid "Barra de navegación superior" +msgstr "Navigatie bar bovenin" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:126 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "Toont een navigatie bar in de top van de zoek resultaten+" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:141 +msgid "Mostrar Acciones Ocultas" +msgstr "Toont Verborgen Acties" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:143 +msgid "" +"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." +msgstr "Toont altijd de verborgen acties op de accounts zoek pagina" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:175 +msgid "Notificaciones In-App" +msgstr "In-App Notifications" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:177 +msgid "Habilita la consulta de notificaciones activas In-App." +msgstr "Enables the active In-App notifications polling" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:16 +#: ../../../config/actions.xml:277 +msgid "Ver Wiki" +msgstr "Wiki bekijken" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +#, php-format +msgid "Resultados de búsqueda de '%s'" +msgstr "Zoekresultaten van '% s'" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:37 +msgid "Página" +msgstr "Pagina" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:7 +#, fuzzy +msgid "Buscar Cuentas" +msgstr "Zoek accounts" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:25 +msgid "Peticiones" +msgstr "Aanvragen" + #. (itstool) path: action/text #: ../../../config/actions.xml:31 msgid "Favoritos" msgstr "Favorites" +#. (itstool) path: action/text +#: ../../../config/actions.xml:43 +msgid "Elementos y Personalización" +msgstr "Onderdelen en Aanpassingen" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:49 +msgid "Gestión Categorías" +msgstr "Categorieën Management" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:55 +#, fuzzy +msgid "Gestión Clientes" +msgstr "Klanten Management" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:61 +msgid "Gestión Autorizaciones API" +msgstr "API Autorisaties Management" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:67 +msgid "Gestión Campos Personalizados" +msgstr "Aangepaste Velden Management" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:79 +msgid "Gestión de Archivos" +msgstr "Bestandsbeheer" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:85 +msgid "Gestión de Cuentas" +msgstr "Accountsbeheer" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:91 +msgid "Gestión de Etiquetas" +msgstr "Tag Management" + #. (itstool) path: action/text #: ../../../config/actions.xml:97 msgid "Gestión Plugins" msgstr "Plugins Management" +#. (itstool) path: action/text +#: ../../../config/actions.xml:103 +msgid "Usuarios y Accesos" +msgstr "Gebruikers en Toegang" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:109 +msgid "Seguridad y Auditoría" +msgstr "Security and Audit" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:115 +msgid "Gestión Usuarios" +msgstr "Gebruikers management" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:121 +msgid "Gestión Grupos" +msgstr "Groepen Management" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:127 +msgid "Gestión Perfiles" +msgstr "Profielen management" + #. (itstool) path: action/text #: ../../../config/actions.xml:139 msgid "Buscar Eventos" @@ -7711,6 +4750,21 @@ msgstr "Search for Events" msgid "Limpiar Eventos" msgstr "Clear Events" +#. (itstool) path: action/text +#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 +msgid "Ver Cuenta" +msgstr "Bekijk Account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:181 +msgid "Editar Clave de Cuenta" +msgstr "Wijzig Account Wachwoord" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 +msgid "Subir Archivo" +msgstr "Bestand uploaden" + #. (itstool) path: action/text #: ../../../config/actions.xml:229 msgid "Buscar Archivos" @@ -7746,11 +4800,6 @@ msgstr "Edit Wiki" msgid "Eliminar Wiki" msgstr "Delete Wiki" -#. (itstool) path: action/text -#: ../../../config/actions.xml:331 -msgid "Nuevo CLiente" -msgstr "New Client" - #. (itstool) path: action/text #: ../../../config/actions.xml:361 msgid "Nuevo Token API" @@ -7802,17 +4851,21 @@ msgid "Buscar Campo Personalizado" msgstr "Search for Custom Field" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 -#: ../../../config/actions.xml:433 -msgid "Eliminar Enlace Público" -msgstr "Delete Public Link" +#: ../../../config/actions.xml:427 +#, fuzzy +msgid "Ver Enlace Público" +msgstr "Publieke Link weergeven" #. (itstool) path: action/text #: ../../../config/actions.xml:445 msgid "Buscar Enlace Público" msgstr "Search for Public Link" +#. (itstool) path: action/text +#: ../../../config/actions.xml:535 +msgid "Nuevo Plugin" +msgstr "Nieuwe Plugin" + #. (itstool) path: action/text #: ../../../config/actions.xml:553 msgid "Habilitar Plugin" @@ -7893,6 +4946,11 @@ msgstr "XML Import" msgid "Configuración Exportación" msgstr "Export Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:763 +msgid "Exportación" +msgstr "Export" + #. (itstool) path: action/text #: ../../../config/actions.xml:769 msgid "Configuración Email" @@ -7903,6 +4961,11 @@ msgstr "Email Configuration" msgid "Configuración LDAP" msgstr "LDAP Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:781 +msgid "Sincronización LDAP" +msgstr "LDAP-synchronisatie" + #. (itstool) path: action/text #: ../../../config/actions.xml:787 msgid "Gestión de Cuenta (H)" @@ -7913,434 +4976,11 @@ msgstr "Account Management (H)" msgid "Crear Notificación" msgstr "Create Notification" -#: ../../../../lib/SP/Services/Import/SyspassImport.php:177 -msgid "" -"Si está importando un archivo exportado desde el mismo origen, los datos " -"pueden estar comprometidos." -msgstr "" -"If you are importing an exported file from the same origin, the data could " -"be compromised." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:154 -msgid "El archivo de actualización no contiene datos" -msgstr "The update file does not contain data" - -#: ../../../modules/api/Controllers/CategoryController.php:62 -msgid "Categoría visualizada" -msgstr "Category displayed" - -#: ../../../modules/api/Controllers/ClientController.php:63 -msgid "Cliente visualizado" -msgstr "Client displayed" - -#: ../../../modules/api/Controllers/ConfigController.php:58 -#: ../../../modules/api/Controllers/ConfigController.php:83 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 -msgid "Ruta" -msgstr "Path" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 -#, fuzzy -msgid "Array con Ids de etiquetas" -msgstr "Array with tags id" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 -#, fuzzy -msgid "Array con Ids de etiquetas a filtrar" -msgstr "Array with tags id for filtering" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 -msgid "Operador de filtrado" -msgstr "Filtering operator" - -#: ../../../modules/api/Controllers/TagController.php:61 -msgid "Etiqueta visualizada" -msgstr "Tag displayed" - -#: ../../../modules/web/Controllers/AccountFileController.php:387 -msgid "No hay archivos asociados a la cuenta" -msgstr "There are no linked files for the account" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:76 -msgid "Error al crear permiso" -msgstr "Error while creating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:115 -msgid "Error al actualizar permiso" -msgstr "Error while updating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:134 -msgid "Error al eliminar permiso" -msgstr "Error while removing the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:249 -msgid "Error al eliminar los permisos" -msgstr "Error while removing the permissions" - -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:84 -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:105 -msgid "Permiso no encontrada" -msgstr "Permission not found" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:71 -#: ../../../config/actions.xml:847 -msgid "Ver Permiso" -msgstr "View Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:156 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:157 -#: ../../../config/actions.xml:853 -msgid "Nuevo Permiso" -msgstr "New Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:211 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:174 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:175 -#: ../../../config/actions.xml:859 -msgid "Editar Permiso" -msgstr "Edit Permission" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:248 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:251 -msgid "Permisos eliminados" -msgstr "Permissions deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:259 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:263 -msgid "Permiso eliminado" -msgstr "Permission deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:289 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:293 -msgid "Permiso creado" -msgstr "Permission added" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:325 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:329 -msgid "Permiso actualizado" -msgstr "Permission updated" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:90 -msgid "Permisos por Defecto" -msgstr "Default Permissions" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 -msgid "Prioridad" -msgstr "Priority" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 -msgid "Forzado" -msgstr "Forced" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:141 -#: ../../../config/actions.xml:841 -msgid "Buscar Permiso" -msgstr "Search for Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:191 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:192 -#: ../../../config/actions.xml:865 -msgid "Eliminar Permiso" -msgstr "Delete Permission" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:208 -msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" -msgstr "An element of type user, group or profile need to be set" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:133 -msgid "No hay permisos definidos" -msgstr "There aren't any defined permissions" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:75 -msgid "" -"Prioridad de asignación en caso de coincidir con otros permisos asignados " -"por usuario, grupo o perfil." -msgstr "" -"Assignment priority if permissions match with others assigned by user, group " -"or profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 -msgid "Prioridad de asignación" -msgstr "Assignment Priority" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:107 -msgid "Indica si los permisos serán forzados al crear o modificar la cuenta." -msgstr "" -"Enforces the permissions to be set either on creating or updating an " -"account ." - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:109 -msgid "Los permisos serán añadidos a los existentes." -msgstr "Permissions will be merged with the existing ones." - -#. (itstool) path: action/text -#: ../../../config/actions.xml:835 -msgid "Gestión Permisos" -msgstr "Permissions Management" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 -msgid "Es necesaria una clave con al menos %d caracteres" -msgstr "Password needs to be %d characters long" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:77 -msgid "La clave no cumple los carácteres requeridos" -msgstr "Password does not contain the required characters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:82 -msgid "Es necesario que la clave contenga letras" -msgstr "Password needs to contain letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:86 -msgid "Es necesario que la clave contenga minúsculas" -msgstr "Password needs to contain lower case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:90 -msgid "Es necesario que la clave contenga mayúsculas" -msgstr "Password needs to contain upper case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:95 -msgid "Es necesario que la clave contenga números" -msgstr "Password needs to contain numbers" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:99 -msgid "Es necesario que la clave contenga símbolos" -msgstr "Password needs to contain symbols" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:301 -msgid "Error al desconectar del servidor de LDAP" -msgstr "Error while disconnecting from LDAP server" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:84 -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:105 -msgid "Valor no encontrada" -msgstr "Value not found" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:188 -msgid "Error al eliminar los valores" -msgstr "Error while deleting the values" - -#: ../../../../lib/SP/Services/Track/TrackService.php:208 -msgid "Dirección IP no establecida" -msgstr "IP address not set" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 -msgid "Valores Predeterminados" -msgstr "Preset Values" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 -#: ../../../config/actions.xml:853 -msgid "Buscar Valor" -msgstr "Search for Value" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 -msgid "Valor de Permiso" -msgstr "Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 -msgid "Nuevo Valor de Permiso" -msgstr "New Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 -msgid "Valor de Cuenta Privada" -msgstr "Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 -msgid "Nuevo Valor de Cuenta Privada" -msgstr "New Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 -msgid "Valor de Timeout de Sesión" -msgstr "Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 -msgid "Nuevo Valor de Timeout de Sesión" -msgstr "New Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 -msgid "Valor de Clave de Cuentas" -msgstr "Account Password Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 -msgid "Nuevo Valor de Clave de Cuentas" -msgstr "New Account Password Preset" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 -#: ../../../config/actions.xml:871 -msgid "Editar Valor" -msgstr "Edit Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 -#: ../../../config/actions.xml:877 -msgid "Eliminar Valor" -msgstr "Delete Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 -#: ../../../config/actions.xml:859 -msgid "Ver Valor" -msgstr "Display Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 -#: ../../../config/actions.xml:865 -msgid "Nuevo Valor" -msgstr "New Value" - -#: ../../../modules/web/Controllers/ItemPresetController.php:266 -#: ../../../modules/web/Controllers/ItemPresetController.php:269 -msgid "Valores eliminados" -msgstr "Values deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:277 -#: ../../../modules/web/Controllers/ItemPresetController.php:281 -msgid "Valor eliminado" -msgstr "Value deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:309 -#: ../../../modules/web/Controllers/ItemPresetController.php:314 -msgid "Valor creado" -msgstr "Value created" - -#: ../../../modules/web/Controllers/ItemPresetController.php:348 -#: ../../../modules/web/Controllers/ItemPresetController.php:353 -msgid "Valor actualizado" -msgstr "Value updated" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:116 -msgid "Tipo de valor no definido o incorrecto" -msgstr "Value type not set or incorrect" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:182 -msgid "Expresión regular inválida" -msgstr "Invalid regular expression" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 -msgid "Habilita la conexión mediante TLS." -msgstr "Enables the connection over TLS" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 -msgid "Puntuación" -msgstr "Score" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 -msgid "Expresión Regular" -msgstr "Regular Expression" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 -msgid "Incluir Minúsculas" -msgstr "Include Lowercase" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 -msgid "Las cuentas sólo serán visibles por el usuario." -msgstr "Accounts will be only visible by the user." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 -msgid "Los administradores no podrán acceder a las cuentas." -msgstr "Administrators won't be able to display the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 -msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." -msgstr "Accounts will be only visible by the user and his/her main group." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 -msgid "Dirección IP" -msgstr "IP Address" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 -msgid "Timeout" -msgstr "Timeout" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 -msgid "" -"Prioridad de asignación en caso de coincidir con otros valores asignados por " -"usuario, grupo o perfil." -msgstr "" -"Assignment priority if values match with others assigned by user, group or " -"profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 -msgid "" -"Indica si los valores serán forzados al crear o modificar los elementos." -msgstr "Enforces the values to be set either on creating or updating an item." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 -msgid "Los valores serán añadidos a los existentes." -msgstr "Values will be merged with the existing ones." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 -msgid "Valores por Defecto" -msgstr "Default Values" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 -msgid "Gestión de Valores por Defecto" -msgstr "Default Values Management" - #. (itstool) path: action/text #: ../../../config/actions.xml:847 msgid "Gestión Valores Predeterminados" msgstr "Preset Values Management" -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:118 -msgid "Error al vaciar tracks" -msgstr "Error while clearing tracks out" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 -msgid "Tracks" -msgstr "Tracks" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 -msgid "Fecha Desbloqueo" -msgstr "Date Unlocked" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 -#: ../../../config/actions.xml:889 -msgid "Buscar Track" -msgstr "Search for track" - -#: ../../../modules/web/Controllers/TrackController.php:110 -msgid "Track desbloqueado" -msgstr "Track unlocked" - -#: ../../../modules/web/Controllers/TrackController.php:135 -msgid "Tracks limpiados" -msgstr "Tracks cleared out" - -#: ../../../config/strings.js.inc:96 -msgid "Vaciar los tracks?" -msgstr "Clear tracks out?" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:109 -msgid "Seguridad y Auditoría" -msgstr "Security and Audit" - #. (itstool) path: action/text #: ../../../config/actions.xml:883 msgid "Gestión de Tracks" @@ -8356,47 +4996,2171 @@ msgstr "Unlock track" msgid "Vaciar tracks" msgstr "Clear tracks out" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 -msgid "Id de grupo" -msgstr "Group Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:4 +msgid "Color" +msgstr "Kleur" -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 -msgid "Array con Ids de usuarios" -msgstr "Array with users Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:5 +msgid "Número" +msgstr "Nummer" -#: ../../../modules/api/Controllers/UserGroupController.php:61 -msgid "Grupo visualizado" -msgstr "Group viewed" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:6 +msgid "Teléfono" +msgstr "Telefoon" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 -#: ../../../config/actions.xml:493 -msgid "Actualización Masiva" -msgstr "Bulk Update" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:7 +msgid "Área de Texto" +msgstr "Tekstinvoer" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 -msgid "Propietario" -msgstr "Owner" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:8 +msgid "Texto" +msgstr "Tekst" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 -msgid "Buscar cuentas por nombre de cliente" -msgstr "Search for accounts by client name" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:9 +msgid "Link" +msgstr "Link" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 -msgid "Buscar cuentas por nombre de categoría" -msgstr "Search for accounts by category name" +#~ msgid "CONSULTA INVÁLIDA" +#~ msgstr "ONGELDIGE QUERY" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 -msgid "Eliminar Historial" -msgstr "Delete History" +#~ msgid "La sesión no se ha iniciado o ha caducado" +#~ msgstr "Sessie niet gestart of verlopen" + +#~ msgid "Es necesario un nombre de cuenta" +#~ msgstr "Een accountnaam is vereist" + +#, fuzzy +#~ msgid "Es necesario un nombre de cliente" +#~ msgstr "Een klantennaam is vereist" + +#, fuzzy +#~ msgid "Es necesario un usuario" +#~ msgstr "Een gebruikersnaam is vereist" + +#~ msgid "Es necesaria una clave" +#~ msgstr "Een sleutel is vereist" + +#~ msgid "Es necesario una categoría" +#~ msgstr "Een categorie is vereist" + +#~ msgid "Acción Inválida" +#~ msgstr "Ongeldige actie" + +#~ msgid "Las claves no coinciden" +#~ msgstr "De wachtwoorden zijn niet gelijk" + +#~ msgid "Error al crear la cuenta" +#~ msgstr "Fout bij account aanmaken" + +#~ msgid "Error al modificar la cuenta" +#~ msgstr "Error bij account bijwerken" + +#~ msgid "Error al eliminar la cuenta" +#~ msgstr "Error bij account verwijderen" + +#~ msgid "Error al actualizar la clave" +#~ msgstr "Fout bij wachtwoord updaten" + +#~ msgid "Cuenta restaurada" +#~ msgstr "Account hersteld" + +#~ msgid "Error al restaurar cuenta" +#~ msgstr "Fout bij herstellen account" + +#, fuzzy +#~ msgid "Es necesario un nombre de usuario" +#~ msgstr "Een gebruikersnaam is nodig" + +#~ msgid "Es necesario un login" +#~ msgstr "Een inlog is nodig" + +#~ msgid "Es necesario un perfil" +#~ msgstr "Een profiel is nodig" + +#~ msgid "Es necesario un grupo" +#~ msgstr "Een groep is nodig" + +#~ msgid "Es necesario un email" +#~ msgstr "Een emailadres is nodig" + +#~ msgid "Ey, esto es una DEMO!!" +#~ msgstr "Hallo, dit is een DEMO!!" + +#~ msgid "La clave no puede estar en blanco" +#~ msgstr "Wachtwoorden mogen niet leeg zijn" + +#~ msgid "Usuario creado" +#~ msgstr "Gebruiker toegevoegd" + +#, fuzzy +#~ msgid "Error al crear el usuario" +#~ msgstr "Fout bij aanmaken gebruiker" + +#~ msgid "Usuario actualizado" +#~ msgstr "Gebruiker bijgewerkt" + +#, fuzzy +#~ msgid "Error al actualizar el usuario" +#~ msgstr "Fout bij bijwerken gebruiker" + +#, fuzzy +#~ msgid "Error al modificar la clave" +#~ msgstr "Fout bij wachtwoord wijzigen" + +#~ msgid "No es posible eliminar, usuario en uso" +#~ msgstr "Niet mogelijk om te verwijderen, gebruiker is bezet" + +#~ msgid "Usuario eliminado" +#~ msgstr "Gebruiker verwijderd" + +#, fuzzy +#~ msgid "Error al eliminar el usuario" +#~ msgstr "Fout bij verwijderen gebruiker" + +#~ msgid "Es necesario un nombre de grupo" +#~ msgstr "Een groepnaam is nodig" + +#~ msgid "Nombre de grupo duplicado" +#~ msgstr "Dubbele groepnaam" + +#, fuzzy +#~ msgid "Error al crear el grupo" +#~ msgstr "Fout bij aanmaken groep" + +#, fuzzy +#~ msgid "Error al actualizar el grupo" +#~ msgstr "Fout bij bijwerken groep" + +#~ msgid "No es posible eliminar" +#~ msgstr "Fout bij verwijderen" + +#, fuzzy +#~ msgid "Error al eliminar el grupo" +#~ msgstr "Fout bij verwijderen groep" + +#~ msgid "Es necesario un nombre de perfil" +#~ msgstr "Een profiel naam is nodig" + +#~ msgid "Nombre de perfil duplicado" +#~ msgstr "Dubbele profiel naam" + +#~ msgid "Perfil creado" +#~ msgstr "Profiel toegevoegd" + +#~ msgid "Perfil actualizado" +#~ msgstr "Profiel bijgewerkt" + +#~ msgid "Perfil eliminado" +#~ msgstr "Profiel verwijderd" + +#~ msgid "Es necesario un nombre de categoría" +#~ msgstr "Een categorie naam is nodig" + +#~ msgid "Autorización creada" +#~ msgstr "Autorisatie toegevoegd" + +#~ msgid "Autorización actualizada" +#~ msgstr "Autorisatie bijgewerkt" + +#~ msgid "Autorización eliminada" +#~ msgstr "Autorisatie verwijderd" + +#~ msgid "Nombre del campo no indicado" +#~ msgstr "Veld naam niet ingevuld" + +#~ msgid "Tipo del campo no indicado" +#~ msgstr "Veld type niet ingevuld" + +#~ msgid "Módulo del campo no indicado" +#~ msgstr "Veld module niet ingevuld" + +#~ msgid "Campo creado" +#~ msgstr "Veld toegevoegd" + +#~ msgid "Campo actualizado" +#~ msgstr "Veld bijgewerkt" + +#~ msgid "Campo eliminado" +#~ msgstr "Veld verwijderd" + +#~ msgid "Realizar Backup" +#~ msgstr "Backup maken" + +#, fuzzy +#~ msgid "Error al realizar el backup" +#~ msgstr "Fout in backup proces" + +#, fuzzy +#~ msgid "Revise el registro de eventos para más detalles" +#~ msgstr "Check het eventlog voor mij" + +#~ msgid "Copia de la aplicación y base de datos realizada correctamente" +#~ msgstr "Applicatie en database backup succesvol afgerond" + +#, fuzzy +#~ msgid "Error al realizar la exportación de cuentas" +#~ msgstr "Fout opgetreden bij exporteren van accounts" + +#, fuzzy +#~ msgid "Error al realizar la exportación" +#~ msgstr "Fout opgetreden bij exporteren" + +#~ msgid "Exportación de cuentas realizada correctamente" +#~ msgstr "Export succesvol afgerond" + +#, fuzzy +#~ msgid "Los parámetros de LDAP no están configurados" +#~ msgstr "LDAP parameters niet opgegeven" + +#~ msgid "Conexión a LDAP correcta" +#~ msgstr "LDAP connectie gelukt" + +#~ msgid "Objetos encontrados" +#~ msgstr "Objecten gevonden" + +#~ msgid "Modificar Configuración" +#~ msgstr "Wijzig Configuratie" + +#~ msgid "El tamaño máximo por archivo es de 16MB" +#~ msgstr "Het maxiumale bestands formaat is 16MB per bestand" + +#, fuzzy +#~ msgid "Faltan parámetros de Proxy" +#~ msgstr "Missende proxy parameters" + +#~ msgid "Proxy habiltado" +#~ msgstr "Proxy geactiveerd" + +#~ msgid "Proxy deshabilitado" +#~ msgstr "Proxy uitgeschakeld" + +#~ msgid "Sección" +#~ msgstr "Sectie" + +#~ msgid "Faltan parámetros de Wiki" +#~ msgstr "Missende Wiki parameters" + +#~ msgid "Wiki habiltada" +#~ msgstr "Wiki geactiveerd" + +#~ msgid "Wiki deshabilitada" +#~ msgstr "Wiki uitgeschakeld" + +#~ msgid "Faltan parámetros de LDAP" +#~ msgstr "Missende LDAP parameters" + +#~ msgid "LDAP habiltado" +#~ msgstr "LDAP geactiveerd" + +#~ msgid "LDAP deshabilitado" +#~ msgstr "LDAP uitgeschakeld" + +#~ msgid "Faltan parámetros de Correo" +#~ msgstr "Missende Email parameters" + +#~ msgid "Correo habiltado" +#~ msgstr "Email geactiveerd" + +#~ msgid "Correo deshabilitado" +#~ msgstr "Email uitgeschakeld" + +#~ msgid "Configuración actualizada" +#~ msgstr "Configuratie bijgewerkt" + +#, fuzzy +#~ msgid "Clave maestra no indicada" +#~ msgstr "Master Wachtwoord nodig" + +#~ msgid "Se ha de confirmar el cambio de clave" +#~ msgstr "De wachtwoord wijziging moet bevestigd worden" + +#~ msgid "Las claves son idénticas" +#~ msgstr "De wachtwoorden zijn gelijk" + +#~ msgid "Las claves maestras no coinciden" +#~ msgstr "De master wachtwoorden zijn niet gelijk" + +#~ msgid "La clave maestra actual no coincide" +#~ msgstr "Het huidige master wachtwoord matched niet" + +#, fuzzy +#~ msgid "Errores al actualizar las claves de las cuentas" +#~ msgstr "Fout bij wijzigen wachtwoord van account" + +#, fuzzy +#~ msgid "Errores al actualizar las claves de las cuentas del histórico" +#~ msgstr "Fout bij wijzigen wachtwoord van account in de geschiedenis" + +#, fuzzy +#~ msgid "Errores al actualizar datos de campos personalizados" +#~ msgstr "Fout bij wijzigen aangepaste velden" + +#, fuzzy +#~ msgid "Error al guardar el hash de la clave maestra" +#~ msgstr "Fout bij opslaan van Master Wachtwoord" + +#~ msgid "Generar Clave Temporal" +#~ msgstr "Genereer tijdelijk wachtwoord" + +#~ msgid "Clave Temporal Generada" +#~ msgstr "Tijdelijk wachtwoord gegenereerd" + +#, fuzzy +#~ msgid "Error al generar clave temporal" +#~ msgstr "Fout bij genereren tijdelijk wachtwoord" + +#~ msgid "Usuario/Clave no introducidos" +#~ msgstr "Gebruiker/Wachtwoord niet ingevuld" + +#~ msgid "Inicio sesión" +#~ msgstr "Inloggen" + +#, fuzzy +#~ msgid "Error al guardar los datos de LDAP" +#~ msgstr "Fout bij opslaan van LDAP gebruikers data" + +#, fuzzy +#~ msgid "Error al actualizar la clave del usuario en la BBDD" +#~ msgstr "Fout bij bijwerken gebruiker wachtwoord in de Database" + +#, fuzzy +#~ msgid "Login incorrecto" +#~ msgstr "Foutieve login" + +#~ msgid "Cuenta expirada" +#~ msgstr "Account verlopen" + +#~ msgid "El usuario no tiene grupos asociados" +#~ msgstr "De gebruiker heeft geen geassocieerde groepen" + +#~ msgid "Usuario deshabilitado" +#~ msgstr "Gebruiker uitgeschakeld" + +#, fuzzy +#~ msgid "Error al obtener los datos del usuario de la BBDD" +#~ msgstr "Fout bij ophalen gebruiker data vanuit de DB" + +#, fuzzy +#~ msgid "La clave maestra no ha sido guardada o es incorrecta" +#~ msgstr "Het Master Wachtwoord is niet opgeslagen" + +#, fuzzy +#~ msgid "Clave maestra incorrecta" +#~ msgstr "Ongeldig Master Wachtwoord" + +#, fuzzy +#~ msgid "No hay extensiones permitidas" +#~ msgstr "Er zijn geen toegestande extensies" + +#~ msgid "Tipo de archivo no soportado" +#~ msgstr "Bestandstype niet toegestaan" + +#~ msgid "Archivo inválido" +#~ msgstr "Ongeldig bestand" + +#, fuzzy +#~ msgid "Error interno al leer el archivo" +#~ msgstr "Interne fout bij lezen bestand" + +#~ msgid "Archivo guardado" +#~ msgstr "Bestand opgeslagen" + +#~ msgid "No se pudo guardar el archivo" +#~ msgstr "Fout bij opslaan van bestand" + +#~ msgid "No es un ID de archivo válido" +#~ msgstr "Ongeldig bestands ID" + +#~ msgid "El archivo no existe" +#~ msgstr "Het bestand bestaat niet" + +#~ msgid "Archivo eliminado" +#~ msgstr "Bestand verwijderd" + +#, fuzzy +#~ msgid "Error al eliminar el archivo" +#~ msgstr "Fout bij verwijderen bestand" + +#, fuzzy +#~ msgid "Parámetros incorrectos" +#~ msgstr "Foutieve parameters" + +#~ msgid "Recuperación de Clave" +#~ msgstr "Wachtwoord Herstel" + +#~ msgid "Solicitado para" +#~ msgstr "Aangevraagd voor" + +#~ msgid "Solicitud enviada" +#~ msgstr "Aanvraag verstuurd" + +#~ msgid "En breve recibirá un correo para completar la solicitud." +#~ msgstr "U ontvanget een email om de aanvraag te bevestigen" + +#~ msgid "Modificar Clave Usuario" +#~ msgstr "Wijzig Gebruikers Wachtwoord" + +#, fuzzy +#~ msgid "La clave es incorrecta o no coincide" +#~ msgstr "Het wachtwoord is onjuist of matched niet" + +#~ msgid "Es necesaria una descripción" +#~ msgstr "Een omschrijving is nodig" + +#~ msgid "Solicitud de Modificación de Cuenta" +#~ msgstr "Aanvraag voor Account Modificatie" + +#~ msgid "Solicitante" +#~ msgstr "Aanvrager" + +#, fuzzy +#~ msgid "Error al actualizar preferencias" +#~ msgstr "Fout bij updaten voorkeuren" + +#~ msgid "Preferencias actualizadas" +#~ msgstr "Voorkeuren bijgewerkt" + +#~ msgid "La clave maestra no coincide" +#~ msgstr "Het Master Wachtwoord matched niet" + +#, fuzzy +#~ msgid "No es posible acceder directamente a este archivo" +#~ msgstr "Niet mogelijk om dit bestand te openen" + +#~ msgid "Error al actualizar el historial" +#~ msgstr "Fout bij bijwerken geschiedenis" + +#~ msgid "Actualizar Cuenta" +#~ msgstr "Bijwerken Account" + +#, fuzzy +#~ msgid "Error al actualizar los grupos secundarios" +#~ msgstr "Fout bij het updaten van de secundaire groep" + +#, fuzzy +#~ msgid "Error al actualizar los usuarios de la cuenta" +#~ msgstr "Fout bij het update van de gebruikers onder het account" + +#, fuzzy +#~ msgid "No se pudieron obtener los datos de la cuenta" +#~ msgstr "Error bij ophalen account gegevens" + +#, fuzzy +#~ msgid "Error al eliminar grupos asociados a la cuenta" +#~ msgstr "Error bij verwijderen account's groepen" + +#, fuzzy +#~ msgid "Error al eliminar usuarios asociados a la cuenta" +#~ msgstr "Error bij verwijderen account's users" + +#, fuzzy +#~ msgid "Error al eliminar archivos asociados a la cuenta" +#~ msgstr "Error bij verwijderen account's bestanden" + +#~ msgid "Inicio" +#~ msgstr "Start" + +#, fuzzy +#~ msgid "Error en el módulo de encriptación" +#~ msgstr "Error bij encryptie module" + +#, fuzzy +#~ msgid "Error al obtener las claves de las cuentas" +#~ msgstr "Error bij ophalen account's wachtwoorden" + +#, fuzzy +#~ msgid "Fallo al actualizar la clave de la cuenta" +#~ msgstr "Error bij het updaten van het account wachtwoord" + +#~ msgid "Cuentas actualizadas" +#~ msgstr "Accounts bijgewerkt" + +#, fuzzy +#~ msgid "No se pudieron obtener los datos de las cuentas" +#~ msgstr "Niet mogelijk om accounts gegevens op te halen" + +#~ msgid "Actualizar Clave Maestra (H)" +#~ msgstr "Wijzig Master Wachtwoord (H)" + +#~ msgid "La clave maestra del registro no coincide" +#~ msgstr "De waarde van het hoofd wachtwoord komt niet overeen" + +#, fuzzy +#~ msgid "Fallo al actualizar la clave del histórico" +#~ msgstr "Fout bij het updaten van hoofd wachtwoord" + +#~ msgid "Registros actualizados" +#~ msgstr "Gegevvens bijgewerkt" + +#~ msgid "Gestión Aplicación" +#~ msgstr "Applicatie Management" + +#~ msgid "Exportar" +#~ msgstr "Export" + +#~ msgid "Acceso no permitido" +#~ msgstr "Onbevoegde toegang" + +#~ msgid "Error de codificación" +#~ msgstr "Codering Fout" + +#~ msgid "La autorización ya existe" +#~ msgstr "De autorisatie bestaat al" + +#~ msgid "Actualizar Autorización" +#~ msgstr "Bijwerken Autorisatie" + +#~ msgid "Usuario no pertenece al grupo" +#~ msgstr "De gebruiker behoort niet tot de groep" + +#~ msgid "Esta operación sólo es posible en entornos Linux" +#~ msgstr "Deze actie wordt alleen ondersteund in Linux omgevingen" + +#, fuzzy +#~ msgid "Error al realizar backup en modo compatibilidad" +#~ msgstr "Fout bij het backuppen in compatibiliteits mode" + +#, fuzzy +#~ msgid "Compruebe los permisos del directorio de backups" +#~ msgstr "Check de permissies op de backup folder" + +#~ msgid "Nombre de categoría duplicado" +#~ msgstr "Dubbele categorie naam" + +#, fuzzy +#~ msgid "Error al crear la categoría" +#~ msgstr "Fout bij het aanmaken van de categorie" + +#, fuzzy +#~ msgid "Error al eliminar la categoría" +#~ msgstr "Fout bij verwijderen categorie" + +#, fuzzy +#~ msgid "Error al actualizar la categoría" +#~ msgstr "Fout bij wijzigen categorie" + +#~ msgid "Modificar configuración" +#~ msgstr "Bijwerken Configuratie" + +#~ msgid "Parámetro" +#~ msgstr "Parameter" + +#~ msgid "Valor" +#~ msgstr "Waarde" + +#~ msgid "" +#~ "Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." +#~ msgstr "" +#~ "De hoofd wachtwoord hash is opnieuw gemaakt, er hoeft geen verdere actie " +#~ "ondernomen worden," + +#~ msgid "No es posible generar las claves RSA" +#~ msgstr "Niet mogelijk om de RSA sleutels te genereren" + +#~ msgid "El archivo de clave no existe" +#~ msgstr "Het sleutel bestand bestaat niet" + +#, fuzzy +#~ msgid "Error importando cuenta" +#~ msgstr "Fout bij het importeren van het account" + +#, fuzzy +#~ msgid "Registros no actualizados" +#~ msgstr "Geen bijgewerkte velden" + +#, fuzzy +#~ msgid "Cliente duplicado" +#~ msgstr "Dubbele klant" + +#, fuzzy +#~ msgid "Error al crear el cliente" +#~ msgstr "Fout bij aanmaken klant" + +#, fuzzy +#~ msgid "Error al actualizar el cliente" +#~ msgstr "Fout bij bijwerken klant" + +#~ msgid "Actualizar Cliente" +#~ msgstr "Bijwerken Klant" + +#, fuzzy +#~ msgid "Error al eliminar el cliente" +#~ msgstr "Fout bij verwijderen klant" + +#~ msgid "No es posible conectar con la BD" +#~ msgstr "Kan geen verbinding maken met de DB" + +#, fuzzy +#~ msgid "Compruebe los datos de conexión" +#~ msgstr "Check a.u.b de connetie parameters" + +#~ msgid "Realizado por" +#~ msgstr "Uitgevoerd door" + +#~ msgid "Enviar Email" +#~ msgstr "Verstuur Email" + +#~ msgid "Correo enviado" +#~ msgstr "Email Verstuurd" + +#, fuzzy +#~ msgid "Error al enviar correo" +#~ msgstr "Fout bij versturen email" + +#~ msgid "Destinatario" +#~ msgstr "Ontvanger" + +#~ msgid "CC" +#~ msgstr "CC" + +#~ msgid "Archivo no subido correctamente" +#~ msgstr "Bestand succesvol geupload" + +#, fuzzy +#~ msgid "Verifique los permisos del usuario del servidor web" +#~ msgstr "Controleer de gebruikers permissies van de web server" + +#, fuzzy +#~ msgid "Compruebe la extensión del archivo" +#~ msgstr "Check a.u.b de bestandsextensie" + +#, fuzzy +#~ msgid "Compruebe la configuración de PHP para subir archivos" +#~ msgstr "Check de PHP configuratie voor het uploaden van bestanden" + +#, fuzzy +#~ msgid "Compruebe los permisos del directorio temporal" +#~ msgstr "Check de tijdelijke folder" + +#, fuzzy +#~ msgid "Error al eliminar los usuarios del grupo" +#~ msgstr "Fout bij verwijderen groep gebruikers" + +#, fuzzy +#~ msgid "Compruebe el formato del archivo" +#~ msgstr "Check a.u.b de " + +#~ msgid "Importación finalizada" +#~ msgstr "Import succesvol" + +#~ msgid "La sesión no puede ser inicializada" +#~ msgstr "Sessie kan niet worden geinitaliseerd" + +#~ msgid "El directorio \"/config\" no existe" +#~ msgstr "De \"/config\" folder bestaat niet" + +#~ msgid "No es posible escribir en el directorio \"config\"" +#~ msgstr "Niet mogelijk om naar de \"/config\" te schrijven" + +#, fuzzy +#~ msgid "Los permisos del directorio \"/config\" son incorrectos" +#~ msgstr "De \"/config\" folder permissies zijn incorrect" + +#~ msgid "Finalizar sesión" +#~ msgstr "Uitloggen sessie" + +#~ msgid "Tiempo inactivo" +#~ msgstr "Inactieve tijd" + +#~ msgid "Tiempo total" +#~ msgstr "Totale tijd" + +#~ msgid "Actualización" +#~ msgstr "Update" + +#~ msgid "Actualización de versión realizada." +#~ msgstr "Versie update bijgewerkt" + +#, fuzzy +#~ msgid "Indicar nombre de usuario admin" +#~ msgstr "Vul de admin gebruikersnaam in" + +#, fuzzy +#~ msgid "Usuario admin para acceso a la aplicación" +#~ msgstr "Administratie gebuiker om in te loggen in de applicatie" + +#, fuzzy +#~ msgid "Indicar la clave de admin" +#~ msgstr "Geef het admin wachtwoord op" + +#~ msgid "Clave del usuario admin de la aplicación" +#~ msgstr "Administratie gebruikers wachtwoord" + +#, fuzzy +#~ msgid "Indicar la clave maestra" +#~ msgstr "geef het hoofd wachtwoord op" + +#, fuzzy +#~ msgid "Clave maestra para encriptar las claves" +#~ msgstr "Hoofd wachtwoord om de wachtwoorden te versleutelen" + +#, fuzzy +#~ msgid "Clave maestra muy corta" +#~ msgstr "Hoofd wachtwoor is te kort" + +#~ msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" +#~ msgstr "Het hoofd wachtwoord dient uit minimaal 11 karakters te bestaan" + +#, fuzzy +#~ msgid "Indicar el usuario de la BBDD" +#~ msgstr "Geef de database gebruiker op" + +#, fuzzy +#~ msgid "Usuario con permisos de administrador de la Base de Datos" +#~ msgstr "Een gebruiker met database administrator rechten" + +#, fuzzy +#~ msgid "Indicar el nombre de la BBDD" +#~ msgstr "Geef de database naam op" + +#~ msgid "Nombre para la BBDD de la aplicación pej. syspass" +#~ msgstr "Applicatie database naam vb. syspass" + +#~ msgid "El nombre de la BBDD no puede contener \".\"" +#~ msgstr "Database naam mag geen \".\" bevatten" + +#, fuzzy +#~ msgid "Elimine los puntos del nombre de la Base de Datos" +#~ msgstr "Verwijder a.u.b punten in de database naam" + +#, fuzzy +#~ msgid "Indicar el servidor de la BBDD" +#~ msgstr "Geef de database server op" + +#~ msgid "Servidor donde se instalará la Base de Datos" +#~ msgstr "Server waar de database geinstalleerd wordt" + +#~ msgid "No es posible comprobar el usuario de sysPass" +#~ msgstr "Niet mogelijk om de syspass gebruiker te controleren" + +#, fuzzy +#~ msgid "Compruebe los permisos del usuario de conexión a la BD" +#~ msgstr "Check a.u.b de DB connectie gebruikers rechten" + +#~ msgid "La BBDD ya existe" +#~ msgstr "De database bestaat al" + +#, fuzzy +#~ msgid "Indique una nueva Base de Datos o elimine la existente" +#~ msgstr "Geef een nieuwe database of verwijder de huidige" + +#, fuzzy +#~ msgid "Error al crear la BBDD" +#~ msgstr "Fout bij het creeeren van de DB" + +#, fuzzy +#~ msgid "Verifique los permisos del usuario de la Base de Datos" +#~ msgstr "Controleer database gebruiker rechten aub." + +#~ msgid "El archivo de estructura de la BBDD no existe" +#~ msgstr "Het database structuurbestand bestaat niet" + +#~ msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." +#~ msgstr "" +#~ "Niet mogelijk om de applicatie database aan te maken. Download hem " +#~ "opnieuw aub." + +#, fuzzy +#~ msgid "Error al seleccionar la BBDD" +#~ msgstr "Fout tijdens het selecteren database" + +#~ msgid "" +#~ "No es posible usar la Base de Datos para crear la estructura. Compruebe " +#~ "los permisos y que no exista." +#~ msgstr "" +#~ "Kan de database niet gebruiken, controleer de login gegevens en de " +#~ "rechten." + +#~ msgid "Error al crear la estructura de la Base de Datos." +#~ msgstr "Fout tijdens het maken van de database structuur" + +#~ msgid "Informe al desarrollador" +#~ msgstr "Waarschuw de ontwikkelaar" + +#, fuzzy +#~ msgid "Error al actualizar la clave maestra del usuario \"admin\"" +#~ msgstr "" +#~ "Fout tijdens het veranderen van het Hoofd wachtoord voor de \"admin\" " +#~ "gebruiker" + +#~ msgid "No es posible conectar con el servidor de LDAP" +#~ msgstr "Niet mogelijk om te verbinden met de LDAP server" + +#~ msgid "Error al conectar (BIND)" +#~ msgstr "Connectie probleem (BIND)" + +#~ msgid "Error al buscar objetos en DN base" +#~ msgstr "Fout bij zoeken naar objecten in de base DN" + +#, fuzzy +#~ msgid "Error al buscar RDN de grupo" +#~ msgstr "Fout bij zoeken in groep RDN" + +#, fuzzy +#~ msgid "Error al localizar el usuario en LDAP" +#~ msgstr "Fout bij het zoeken gebruiker in DLS" + +#~ msgid "Error al buscar el grupo de usuarios" +#~ msgstr "Fout bij het zoeken gebruikers groep" + +#~ msgid "Usuario verificado en grupo" +#~ msgstr "Gebruiker in groep geverifieerd" + +#~ msgid "Vaciar Eventos" +#~ msgstr "Schoon events op" + +#, fuzzy +#~ msgid "Cliente no encontrado" +#~ msgstr "Klant niet gevonden" + +#, fuzzy +#~ msgid "Error al obtener los usuarios" +#~ msgstr "Fout bij het ophalen van gebruikers" + +#~ msgid "Migrar Perfiles" +#~ msgstr "Migreer profielen" + +#, fuzzy +#~ msgid "Error al obtener perfiles" +#~ msgstr "Fout bij het ophalen van profielen" + +#~ msgid "Operación realizada correctamente" +#~ msgstr "Operatie succesvol" + +#, fuzzy +#~ msgid "Fallo al realizar la operación" +#~ msgstr "Fout bij het uitvoeren van het process" + +#~ msgid "Formato de XML inválido" +#~ msgstr "Ongeldig XML formaat" + +#, fuzzy +#~ msgid "Error al aplicar la actualización de la Base de Datos" +#~ msgstr "Fout bij het updaten van de database" + +#~ msgid "Compruebe el registro de eventos para más detalles" +#~ msgstr "Check a.u.b de event log voor meer details" + +#, fuzzy +#~ msgid "Error al aplicar la actualización auxiliar" +#~ msgstr "Fout tijdens het uitvoeren van de extra update" + +#~ msgid "Actualizar BBDD" +#~ msgstr "Bijwerken DB" + +#~ msgid "No es necesario actualizar la Base de Datos." +#~ msgstr "Database update niet nodig" + +#~ msgid "Actualización de la Base de Datos realizada correctamente." +#~ msgstr "Database update succesvol" + +#~ msgid "Actualizar Configuración" +#~ msgstr "Bijwerken configuratie" + +#~ msgid "No se pudo realizar la petición de cambio de clave." +#~ msgstr "" +#~ "Kon de aanvraag voor het veranderen van het wachtwoord niet uitvoeren." + +#~ msgid "Usuario de LDAP" +#~ msgstr "LDAP Gebruiker" + +#~ msgid "Activación Cuenta" +#~ msgstr "Account Activatie" + +#~ msgid "Su cuenta está pendiente de activación." +#~ msgstr "Uw account is in behandeling" + +#~ msgid "En breve recibirá un email de confirmación." +#~ msgstr "Uw krijgt binnenkort een bevestigings email" + +#~ msgid "Nuevo usuario de LDAP" +#~ msgstr "Nieuwe LDAP Gebruiker" + +#, fuzzy +#~ msgid "Error al migrar grupo del usuario" +#~ msgstr "Fout bij het migreren van de Gebruikers Groep" + +#~ msgid "Versión de PHP requerida >= " +#~ msgstr "Vereiste PHP versie >=" + +#~ msgid "" +#~ "Actualice la versión de PHP para que la aplicación funcione correctamente" +#~ msgstr "Update a.u.b de PHP versie om gebruik te kunnen maken van SysPass" + +#~ msgid "Exportar XML" +#~ msgstr "XML Export" + +#, fuzzy +#~ msgid "Error al crear el archivo XML" +#~ msgstr "Fout bij het maken van het XML bestand" + +#, fuzzy +#~ msgid "No es posible procesar el archivo XML" +#~ msgstr "XML bestand kan niet verwerkt worden" + +#~ msgid "Archivo XML no soportado" +#~ msgstr "XML bestand wordt niet ondersteund" + +#~ msgid "No es posible detectar la aplicación que exportó los datos" +#~ msgstr "Kon de applicatie waar de data van geexporteerd was niet vinden" + +#~ msgid "Último backup" +#~ msgstr "Laatste backup" + +#~ msgid "Última exportación" +#~ msgstr "Laatste export" + +#~ msgid "Registro de eventos vaciado" +#~ msgstr "Event log opgeschoond" + +#, fuzzy +#~ msgid "Error al vaciar el registro de eventos" +#~ msgstr "Fout bij opschonen Event Log" + +#~ msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" +#~ msgstr "Deze PHP versie is kwetsbaar voor NULL Byte attack CVE-2006-7243)" + +#~ msgid "Actualice la versión de PHP para usar sysPass de forma segura" +#~ msgstr "" +#~ "Update a.u.b de PHP versie om gebruik te kunnen maken van een veilige " +#~ "SysPass" + +#~ msgid "No se encuentra el generador de números aleatorios." +#~ msgstr "Willekeurige wachtwoord generator niet gevonden" + +#~ msgid "" +#~ "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" +#~ msgstr "" +#~ "Zonder deze functie kan een hacker uw account overnemen bij een " +#~ "wachtwoord herstel actie" + +#~ msgid "Instalación finalizada" +#~ msgstr "Installatie afgerond" + +#~ msgid "Descargar nueva versión" +#~ msgstr "Download nieuwe versie" + +#~ msgid "Token de autorización visualizado" +#~ msgstr "Autorisatie sleutel bekeken" + +#~ msgid "Autorizaciones" +#~ msgstr "Authorisaties" + +#~ msgid "Hablitar edición" +#~ msgstr "Activeer Wijzigen" + +#~ msgid "Usuarios Secundarios" +#~ msgstr "Secundaire Gebruikers" + +#~ msgid "Grupos Secundarios" +#~ msgstr "Secundaire Groepen" + +#~ msgid "Modificar Cuenta" +#~ msgstr "Bewerk Account" + +#, fuzzy +#~ msgid "No hay backups para descargar" +#~ msgstr "Er zijn geen backups te downloaden" + +#, fuzzy +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "Er zijn geen bestanden te downloaden" + +#~ msgid "Se permite un máximo de 4 caracteres." +#~ msgstr "Max 4 karakters toegestaan" + +#~ msgid "Primera página" +#~ msgstr "Eerste pagina" + +#~ msgid "Página anterior" +#~ msgstr "Vorige pagina" + +#~ msgid "Página siguiente" +#~ msgstr "Volgende pagina" + +#~ msgid "Última página" +#~ msgstr "Laatste pagina" + +#~ msgid "Comprobar" +#~ msgstr "Check" + +#, fuzzy +#~ msgid "Cambiar Clave" +#~ msgstr "Wijzig Wachtwoord" + +#~ msgid "Añadir" +#~ msgstr "Voeg toe" + +#~ msgid "Abrir enlace a" +#~ msgstr "Open link aar" + +#~ msgid "Limpiar" +#~ msgstr "Opschonen" + +#~ msgid "Parámetros especiales:" +#~ msgstr "Speciale parameters" + +#~ msgid "Realizar" +#~ msgstr "Uitvoeren" + +#~ msgid "Extensión" +#~ msgstr "Extensie" + +#~ msgid "Tamaño de archivo superado" +#~ msgstr "Bestandsgrootte overschreden" + +#~ msgid "Solicitud no enviada" +#~ msgstr "Verzoek niet verstuurd" + +#~ msgid "Compruebe datos de usuario o consulte con el administrador" +#~ msgstr "Check de gebruikersdata of neem contact op met de administrator" + +#~ msgid "La cuenta no existe" +#~ msgstr "Het account bestaat niet" + +#~ msgid "Errores" +#~ msgstr "Errors" + +#~ msgid "Error al añadir favorito" +#~ msgstr "Error bij het toevoegen van de favoriet" + +#~ msgid "Error al eliminar favorito" +#~ msgstr "Error tijdens het verwijderen van de favoriet" + +#~ msgid "Error al eliminar las etiquetas de la cuenta" +#~ msgstr "Error tijdens het verwijderen van de account labels" + +#~ msgid "Método inválido" +#~ msgstr "Ongeldige Methode" + +#~ msgid "Datos inválidos" +#~ msgstr "Ongeldige Data" + +#~ msgid "Formato incorrecto" +#~ msgstr "Foute indeling" + +#~ msgid "Nombre de categoría a buscar" +#~ msgstr "Categorie naam om naar te zoeken" + +#, fuzzy +#~ msgid "Nombre de cliente a buscar" +#~ msgstr "Klant naam om naar te zoeken" + +#~ msgid "Método ya inicializado" +#~ msgstr "Methode al geinitialiseerd" + +#~ msgid "Método no disponible" +#~ msgstr "Methode niet beschikbaar" + +#~ msgid "Los parámetros de DokuWiki no están configurados" +#~ msgstr "De DokuWiki parameters zijn niet opgegeven" + +#~ msgid "Error" +#~ msgstr "Error" + +#~ msgid "Conexión correcta" +#~ msgstr "Verbinding succesvol" + +#~ msgid "Error de conexión a DokuWiki" +#~ msgstr "Error tijdens het verbinden met DokuWiki" + +#~ msgid "Faltan parámetros de syslog remoto" +#~ msgstr "Remote Syslog parameters niet opgegeven" + +#~ msgid "Syslog remoto deshabilitado" +#~ msgstr "Remote syslog uitegeschakels" + +#~ msgid "Error al guardar la configuración" +#~ msgstr "" +#~ "\n" +#~ "Fout bij het opslaan van de configuratie" + +#~ msgid "Faltan parámetros de DokuWiki" +#~ msgstr "Ontbrekende DokuWiki-parameters" + +#~ msgid "DokuWiki habiltada" +#~ msgstr "DokuWiki ingeschakeld" + +#~ msgid "DokuWiki deshabilitada" +#~ msgstr "DokuWiki uitgeschakeld" + +#~ msgid "Enlace creado" +#~ msgstr "Link gemaakt" + +#~ msgid "Enlace actualizado" +#~ msgstr "Link geupdate" + +#~ msgid "Enlace eliminado" +#~ msgstr "Link verwijderd" + +#~ msgid "Plugin habilitado" +#~ msgstr "Plugin ingeschakeld" + +#~ msgid "Plugin deshabilitado" +#~ msgstr "Plugin uitgeschakeld" + +#~ msgid "Plugin restablecido" +#~ msgstr "Plugin reset" + +#~ msgid "Favorito añadido" +#~ msgstr "Favoriet toegevoegd" + +#~ msgid "Favorito eliminado" +#~ msgstr "Favoriet verwijderd" + +#~ msgid "Importación de usuarios de LDAP realizada" +#~ msgstr "LDAP gebruikers importeren afgerond" + +#~ msgid "Error al importar usuarios de LDAP" +#~ msgstr "Fout bij het importeren van de LDAP users" + +#~ msgid "Notificación leída" +#~ msgstr "Notificatie gelezen" + +#~ msgid "Notificación eliminada" +#~ msgstr "Notificatie verwijderd" + +#~ msgid "Solicitud enviada por correo" +#~ msgstr "Verzoek verzonden via email" + +#~ msgid "Solicitud no enviada por correo" +#~ msgstr "Verzoek niet verzonden via email" + +#~ msgid "Solicitud realizada" +#~ msgstr "" +#~ "\n" +#~ "Aanvraag gedaan" + +#~ msgid "Detalles de Plugin" +#~ msgstr "Plugin Details" + +#~ msgid "Error al obtener la clave maestra del usuario" +#~ msgstr "Fout bij het ophalen van het hoofdwachtwoord van de gebruiker" + +#~ msgid "Es necesaria su clave anterior" +#~ msgstr "Je vorige wachtwoord is nodig" + +#~ msgid "Servidor LDAP" +#~ msgstr "LDAP Server" + +#~ msgid "Buscar Categorías" +#~ msgstr "Zoeken naar Categorieën" + +#~ msgid "Añadir Categoría" +#~ msgstr "Categorie toevoegen" + +#~ msgid "Buscar Clientes" +#~ msgstr "Zoeken naar Klanten" + +#~ msgid "Añadir Cliente" +#~ msgstr "Klant toevoegen" + +#~ msgid "Observador no inicializado" +#~ msgstr "" +#~ "\n" +#~ "Waarnemer niet geïnitialiseerd" + +#~ msgid "Es necesario un objeto" +#~ msgstr "Een object is nodig" + +#~ msgid "Indicar la clave de la BBDD" +#~ msgstr "" +#~ "\n" +#~ "Vul alstublieft het database wachtwoord in" + +#~ msgid "Clave del usuario administrador de la Base de Datos" +#~ msgstr "Database administrator's wachtwoord" + +#~ msgid "Error al crear el usuario de conexión a MySQL '%s'" +#~ msgstr "Error bij het maken van de MySQL connection user '%s'" + +#~ msgid "La BBDD no existe" +#~ msgstr "De database bestaat niet" + +#~ msgid "Es necesario crearla y asignar los permisos necesarios" +#~ msgstr "" +#~ "\n" +#~ "U moet het creëren en de benodigde rechten toewijzen" + +#~ msgid "Error al actualizar la configuración" +#~ msgstr "Error tijdens het bijwerken van de configuratie" + +#~ msgid "Usuario no indicado" +#~ msgstr "Gebruiker niet ingesteld" + +#~ msgid "Acción no indicada" +#~ msgstr "Actie niet ingesteld" + +#~ msgid "Es necesario un nombre de etiqueta" +#~ msgstr "Een tag naam is nodig" + +#~ msgid "Respuesta XML-RPC inválida" +#~ msgstr "Ongeldig XML-RPC antwoord" + +#~ msgid "Id de categoría no definido. No es posible importar cuenta." +#~ msgstr "Categorie-id niet ingesteld. Kan het account niet importeren." + +#, fuzzy +#~ msgid "Id de cliente no definido. No es posible importar cuenta." +#~ msgstr "Categorie-id niet ingesteld. Kan het account niet importeren." + +#~ msgid "Clave de encriptación no indicada" +#~ msgstr "Encryptie wachtwoord niet ingesteld" + +#~ msgid "Extensión '%s' no cargada" +#~ msgstr "" +#~ "\n" +#~ "Uitbreiding '% s' niet geladen" + +#~ msgid "Categoría duplicada" +#~ msgstr "Categorie gedupliceerd" + +#~ msgid "Categoría no encontrada" +#~ msgstr "Categorie niet gevonden" + +#~ msgid "Error al crear el campo personalizado" +#~ msgstr "Fout bij het maken van een aangepast veld" + +#~ msgid "Error al eliminar el campo personalizado" +#~ msgstr "Fout bij het verwijderen van een aangepast veld" + +#~ msgid "Error al actualizar el campo personalizado" +#~ msgstr "Fout bij het bijwerken van een aangepast veld" + +#~ msgid "Campo personalizado no encontrado" +#~ msgstr "Aangepast veld niet gevonden" + +#~ msgid "No se encontraron campos personalizados" +#~ msgstr "Aangepaste velden niet gevonden" + +#~ msgid "No hay datos de campos personalizados" +#~ msgstr "" +#~ "\n" +#~ "Er zijn geen gegevens uit aangepaste velden" + +#~ msgid "Error al migrar campos personalizados" +#~ msgstr "Fout bij het migreren van de aangepaste velden" + +#~ msgid "Archivo subido" +#~ msgstr "Bestand geupload" + +#~ msgid "Grupo en uso" +#~ msgstr "Groep in gebruik" + +#~ msgid "Actualizar Grupo" +#~ msgstr "Groep Bijwerken" + +#~ msgid "Error al asignar los usuarios al grupo" +#~ msgstr "Fout bij het instellen van gebruikers in de groep" + +#~ msgid "Error al crear la notificación" +#~ msgstr "Error bij het toevoegen van de notificatie" + +#~ msgid "Error al eliminar la notificación" +#~ msgstr "Fout bij het verwijderen van de notificatie" + +#~ msgid "Error al modificar la notificación" +#~ msgstr "Fout bij het bijwerken van de notificatie" + +#~ msgid "Error al obtener la notificación" +#~ msgstr "Fout bij het ophalen van de notificatie" + +#~ msgid "Error al obtener las notificaciones" +#~ msgstr "Fout bij het ophalen van de notificaties" + +#~ msgid "Error al crear el plugin" +#~ msgstr "Error bij het toevoegen van de plugin" + +#~ msgid "Error al eliminar el plugin" +#~ msgstr "Fout bij het verwijderen van de plugin" + +#~ msgid "Error al actualizar el plugin" +#~ msgstr "Fout bij het bijwerken van de plugin" + +#~ msgid "Habilitado" +#~ msgstr "Ingeschakeld" + +#~ msgid "Error al crear perfil" +#~ msgstr "Fout bij het maken van het profiel" + +#~ msgid "Perfil en uso" +#~ msgstr "Profiel in gebruik" + +#~ msgid "Error al eliminar perfil" +#~ msgstr "Fout bij het verwijderen van het profiel" + +#~ msgid "Error al modificar perfil" +#~ msgstr "Fout bij het updaten van het profiel" + +#~ msgid "Enlace visualizado" +#~ msgstr "Link bekeken" + +#~ msgid "Error al actualizar enlace" +#~ msgstr "Fout bij het updaten van de link" + +#~ msgid "Enlace ya creado" +#~ msgstr "Link al gemaakt" + +#~ msgid "Error al crear enlace" +#~ msgstr "Fout bij het maken van de link" + +#~ msgid "Error al eliminar enlace" +#~ msgstr "Fout bij het verwijderen van de link" + +#~ msgid "Error al renovar enlace" +#~ msgstr "Fout bij het vernieuwen van de link" + +#~ msgid "Actualizar Enlace" +#~ msgstr "" +#~ "\n" +#~ "Update Link" + +#~ msgid "Error al obtener enlace" +#~ msgstr "" +#~ "\n" +#~ "Fout bij het ophalen van de link" + +#~ msgid "ON" +#~ msgstr "AAN" + +#~ msgid "OFF" +#~ msgstr "UIT" + +#~ msgid "Etiqueta duplicada" +#~ msgstr "Dubbele tag" + +#~ msgid "Error al crear etiqueta" +#~ msgstr "Fout tijdens het aanmaken van de tag" + +#~ msgid "Error al eliminar etiqueta" +#~ msgstr "Fout tijdens het verwijderen van de tag" + +#~ msgid "Error al actualizar etiqueta" +#~ msgstr "Fout tijdens het bijwerken van de tag" + +#~ msgid "Error al obtener etiqueta" +#~ msgstr "Fout tijdens het ophalen van de tag" + +#~ msgid "Login/email de usuario duplicados" +#~ msgstr "Dubbele gebruikersnaam of email" + +#~ msgid "Error al obtener los datos del usuario" +#~ msgstr "Fout tijdens het ophalen van de data van de gebruiker" + +#~ msgid "No se encontraron objetos para sincronizar" +#~ msgstr "Er is niets om te synchroniseren" + +#~ msgid "Sincronización finalizada" +#~ msgstr "Synchroniseren afgerond" + +#~ msgid "Error al migrar cuenta de usuario" +#~ msgstr "Fout tijdens het migreren van een gebruikersaccount" + +#~ msgid "Error al obtener grupo de usuarios" +#~ msgstr "Fout tijdens het ophalen van een gebruikersgroep" + +#~ msgid "Error en comprobación de hash" +#~ msgstr "Fout tijdens het controleren van de versleuteling" + +#~ msgid "Hash inválido o expirado" +#~ msgstr "Versleuteling is foutief of verlopen" + +#~ msgid "Error al generar el hash de recuperación" +#~ msgstr "Fout tijdens het genereren van de herstel versleuteling" + +#~ msgid "Actualizando preferencias" +#~ msgstr "Voorkeuren bijwerken" + +#~ msgid "No es posible leer/escribir el archivo: %s" +#~ msgstr "Het lezen of schrijven van het bestand %s is niet mogelijk" + +#~ msgid "No hay elementos para guardar" +#~ msgstr "Er zijn geen items om op te slaan" + +#~ msgid "Socket no inicializado" +#~ msgstr "Socket is niet geïnitialiseerd" + +#~ msgid "Error al enviar datos" +#~ msgstr "" +#~ "\n" +#~ "Fout bij het verzenden van de gegevens" + +#~ msgid "Respuesta" +#~ msgstr "Antwoord" + +#~ msgid "Ver Detalles" +#~ msgstr "Bekijk details" + +#~ msgid "Copiar" +#~ msgstr "Kopiëren" + +#~ msgid "Restaurar" +#~ msgstr "Herstellen" + +#~ msgid "Descargar" +#~ msgstr "Download" + +#~ msgid "Crítico" +#~ msgstr "Kritisch" + +#~ msgid "Accesos" +#~ msgstr "Toegangen" + +#~ msgid "Cuentas Vinculadas" +#~ msgstr "Gekoppelde accounts" + +#~ msgid "Hay %d notificaciones pendientes" +#~ msgstr "Er zijn %d ongelezen meldingen" + +#~ msgid "Agente" +#~ msgstr "Agent" + +#~ msgid "Crear Usuario" +#~ msgstr "Gebruiker toevoegen" + +#~ msgid "Actualizar Usuario" +#~ msgstr "Gebruiker bijwerken" + +#~ msgid "Actualizar Clave Usuario" +#~ msgstr "Wachtwoord gebruiker bijwerken" + +#~ msgid "Crear Grupo" +#~ msgstr "Groep toevoegen" + +#~ msgid "Crear Perfil" +#~ msgstr "Profiel toevoegen" + +#~ msgid "Actualizar Perfil" +#~ msgstr "Profiel bijwerken" + +#, fuzzy +#~ msgid "Crear Cliente" +#~ msgstr "Klant toevoegen" + +#~ msgid "Crear Categoría" +#~ msgstr "Categorie toevoegen" + +#~ msgid "Actualizar Categoría" +#~ msgstr "Categorie bijwerken" + +#~ msgid "Crear Autorización" +#~ msgstr "Autorisatie toevoegen" + +#~ msgid "Crear Campo" +#~ msgstr "" +#~ "\n" +#~ "Veld toevoegen" + +#~ msgid "Actualizar Campo" +#~ msgstr "Veld bijwerken" + +#~ msgid "Crear Enlace" +#~ msgstr "Link aanmaken" + +#~ msgid "Crear Etiqueta" +#~ msgstr "" +#~ "\n" +#~ "Voeg tag toe" + +#~ msgid "Actualizar Etiqueta" +#~ msgstr "" +#~ "\n" +#~ "Update Tag" + +#~ msgid "Actualizar Plugin" +#~ msgstr "" +#~ "\n" +#~ " Update Plugin" + +#~ msgid "Crear Cuenta" +#~ msgstr "" +#~ "\n" +#~ "Account toevoegen" + +#~ msgid "Usuarios importados" +#~ msgstr "" +#~ "\n" +#~ "Geimporteerde gebruikers" + +#~ msgid "Acceso denegado" +#~ msgstr "Toegang geweigerd\n" + +#~ msgid "Error al añadir las etiquetas de la cuenta" +#~ msgstr "Error tijdens het toevoegen van de account tags" + +#~ msgid "Grupos eliminados" +#~ msgstr "Groepen verwijderd" + +#~ msgid "Perfiles eliminados" +#~ msgstr "Profielen verwijderd" + +#, fuzzy +#~ msgid "Clientes eliminados" +#~ msgstr "Klanten verwijderd" + +#~ msgid "Categorías eliminadas" +#~ msgstr "Categorieën verwijderd" + +#~ msgid "Autorizaciones eliminadas" +#~ msgstr "Autorisaties verwijderd" + +#~ msgid "Campos eliminados" +#~ msgstr "Velden verwijderd" + +#~ msgid "Enlaces eliminados" +#~ msgstr "Links verwijderd" + +#~ msgid "Etiquetas eliminadas" +#~ msgstr "Tags verwijderd" + +#~ msgid "Archivos eliminados" +#~ msgstr "Bestanden verwijderd" + +#~ msgid "Cuentas eliminadas" +#~ msgstr "Accounts verwijderd" + +#~ msgid "Notificación creada" +#~ msgstr "Bericht aangemaakt" + +#~ msgid "Notificaciones eliminadas" +#~ msgstr "Berichten verwijderd" + +#~ msgid "Usando clave temporal" +#~ msgstr "Gebruikt een tijdelijk wachtwoord" + +#~ msgid "Clave temporal caducada" +#~ msgstr "Tijdelijk wachtwoord verlopen" + +#~ msgid "Sesión" +#~ msgstr "Sessie" + +#~ msgid "Error al comprobar la base de datos" +#~ msgstr "Fout tijdens het controleren van de database" + +#~ msgid "Intente de nuevo la instalación" +#~ msgstr "Probeer de installatie opnieuw" + +#~ msgid "Es necesario un componente" +#~ msgstr "Een component ontbreekt." + +#~ msgid "Es necesario un tipo" +#~ msgstr "Een type ontbreekt." + +#~ msgid "Es necesario un destinatario" +#~ msgstr "Een doel ontbreekt." + +#~ msgid "Error procesando línea" +#~ msgstr "Fout tijdens het uitvoeren van regel" + +#~ msgid "Cuentas importadas" +#~ msgstr "Accounts zijn geïmporteerd" + +#~ msgid "Archivo no encontrado" +#~ msgstr "Bestand niet gevonden" + +#~ msgid "Grupo no encontrado" +#~ msgstr "Groep niet gevonden" + +#~ msgid "Notificación no encontrada" +#~ msgstr "Bericht niet gevonden" + +#~ msgid "Plugin no encontrado" +#~ msgstr "Plugin niet gevonden" + +#~ msgid "Perfil no encontrado" +#~ msgstr "Profiel niet gevonden" + +#~ msgid "Enlace no encontrado" +#~ msgstr "Link niet gevonden" + +#~ msgid "Etiqueta no encontrada" +#~ msgstr "Tag niet gevonden" + +#~ msgid "Usuario no encontrado" +#~ msgstr "Gebruiker niet gevonden" + +#~ msgid "Consulta en blanco" +#~ msgstr "Lege Query" + +#~ msgid "No es posible iniciar una transacción" +#~ msgstr "Een transactie kan niet gestart worden." + +#~ msgid "No es posible finalizar una transacción" +#~ msgstr "Een transactie kan niet afgesloten worden." + +#~ msgid "Cuenta no encontrada" +#~ msgstr "Account niet gevonden" + +#~ msgid "Hash de clave maestra actualizado" +#~ msgstr "Master wachtwoord hash is geupdate" + +#~ msgid "Error al actualizar el hash de la clave maestra" +#~ msgstr "Fout tijdens het bijwerken van de hash van het hoofdwachtwoord." + +#~ msgid "Usuarios eliminados" +#~ msgstr "Gebruiker verwijderd" + +#~ msgid "Notificación actualizada" +#~ msgstr "Bericht geupdate" + +#~ msgid "Restricción de integridad" +#~ msgstr "integriteitsbeperking" + +#~ msgid "Clave de encriptación incorrecta" +#~ msgstr "Onjuist versleutelingswachtwoord." + +#~ msgid "Código de seguridad incorrecto" +#~ msgstr "Onjuiste beveiligingscode." + +#~ msgid "Es necesario confirmar la actualización" +#~ msgstr "Het bijwerken moet bevestigd worden" + +#~ msgid "En 5 segundos será redirigido al login" +#~ msgstr "U wordt binnen 5 seconden omgeleid om in te loggen" + +#~ msgid "Error al aplicar la actualización de la aplicación" +#~ msgstr "Fout tijdens het bijwerken van het programma." + +#~ msgid "Intentos excedidos" +#~ msgstr "Te veel pogingen." + +#~ msgid "Token no encontrado" +#~ msgstr "Token niet gevonden" + +#~ msgid "Error al crear track" +#~ msgstr "Token niet gevonden" + +#~ msgid "Error al eliminar track" +#~ msgstr "Fout bij het verwijderen van de track" + +#~ msgid "Error al actualizar track" +#~ msgstr "Fout bij het updaten van de track" + +#~ msgid "Error al obtener track" +#~ msgstr "Fout bij het ophalen van de track" + +#~ msgid "Error al obtener tracks" +#~ msgstr "Fout bij het ophalen van de tracks" + +#~ msgid "Actualizando IDs de cuentas" +#~ msgstr "ID's van accounts worden bijgewerkt." + +#~ msgid "Actualizando IDs de categorías" +#~ msgstr "ID's van categorieën worden bijgewerkt." + +#~ msgid "Actualizando IDs de clientes" +#~ msgstr "ID's van klanten worden bijgewerkt." + +#~ msgid "Actualizando IDs de grupos" +#~ msgstr "ID's van groepen worden bijgewerkt." + +#~ msgid "Actualizando IDs de perfil" +#~ msgstr "ID's van profielen worden bijgewerkt." + +#~ msgid "Actualizando IDs de usuarios" +#~ msgstr "ID's van gebruikers worden bijgewerkt." + +#~ msgid "Acción no encontrada" +#~ msgstr "Actie niet gevonden" + +#~ msgid "Contexto ya inicializado" +#~ msgstr "Context al geïnitialiseerd" + +#~ msgid "Contexto inválido" +#~ msgstr "Ongeldige context" + +#~ msgid "Contexto no inicializado" +#~ msgstr "Context niet geïnitialiseerd" + +#~ msgid "Clase no válida para iconos" +#~ msgstr "Ongeldige icons klasse" + +#~ msgid "Tipo de filtro inválido" +#~ msgstr "Verkeerde filter type" + +#~ msgid "Tipo de objeto incorrecto" +#~ msgstr "Verkeerde object type" + +#~ msgid "No es posible inicializar" +#~ msgstr "Initialiseren lukt niet" + +#~ msgid "Error al eliminar los archivos" +#~ msgstr "Fout tijdens het verwijderen van de bestanden" + +#~ msgid "Error al eliminar las cuentas" +#~ msgstr "Fout tijdens het verwijderen van de accounts" + +#~ msgid "Error al eliminar la categorías" +#~ msgstr "Fout tijdens het verwijderen van de categorieën" + +#~ msgid "Error al eliminar los clientes" +#~ msgstr "Fout tijdens het verwijderen van de clients" + +#, fuzzy +#~ msgid "Error al eliminar los campos personalizados" +#~ msgstr "Fout tijdens het verwijderen van de bijzondere velden" + +#~ msgid "Error al crear el tipo de campo" +#~ msgstr "Fout tijdens het aanmaken van het veldtype" + +#~ msgid "Error al actualizar el tipo de campo" +#~ msgstr "Fout tijdens het updaten van het veldtype" + +#~ msgid "Error al eliminar el tipo de campo" +#~ msgstr "Fout tijdens het verwijderen van het veldtype" + +#~ msgid "Error al eliminar las notificaciones" +#~ msgstr "Fout tijdens het verwijderen van de notificaties" + +#~ msgid "El enlace no existe" +#~ msgstr "De link bestaat niet" + +#~ msgid "Error al eliminar etiquetas" +#~ msgstr "Fout tijdens het verwijderen van de tags" + +#~ msgid "Error al eliminar los usuarios" +#~ msgstr "Fout tijdens het verwijderen van de gebruikers" + +#~ msgid "El usuario no existe" +#~ msgstr "De gebruiker bestaat niet" + +#~ msgid "Error al eliminar los perfiles" +#~ msgstr "Fout tijdens het verwijderen van de profielen" + +#~ msgid "Error al eliminar archivos" +#~ msgstr "Fout tijdens het verwijderen van de bestanden" + +#~ msgid "Fomato incorrecto" +#~ msgstr "Invalid format" + +#~ msgid "Error al eliminar tokens" +#~ msgstr "Error while removing the tokens" + +#~ msgid "Copiando base de datos" +#~ msgstr "Copying database" + +#~ msgid "Copiando aplicación" +#~ msgstr "Copying application" + +#~ msgid "Rollback" +#~ msgstr "Rollback" + +#~ msgid "Error al comprobar clave temporal" +#~ msgstr "Error while checking the temporary password" + +#~ msgid "Campo no encontrado" +#~ msgstr "Field not found" + +#~ msgid "Error al eliminar los campos" +#~ msgstr "Error while deleting the fields" + +#~ msgid "Exportando categorías" +#~ msgstr "Exporting categories" + +#~ msgid "Exportando clientes" +#~ msgstr "Exporting clients" + +#~ msgid "Exportando etiquetas" +#~ msgstr "Exporting tags" + +#~ msgid "Exportando cuentas" +#~ msgstr "Exporting accounts" + +#~ msgid "Cuenta importada" +#~ msgstr "Account imported" + +#~ msgid "Importación XML KeePass" +#~ msgstr "KeePass XML Import" + +#~ msgid "Categoría importada" +#~ msgstr "Categorie geïmporteerd" + +#~ msgid "Importación XML sysPass" +#~ msgstr "sysPass XML import" + +#~ msgid "Datos desencriptados" +#~ msgstr "Data onversleuteld" + +#~ msgid "Cliente importado" +#~ msgstr "Client geïmporteerd" + +#~ msgid "Etiqueta importada" +#~ msgstr "Tag geimporteerd" + +#~ msgid "Formato no detectado" +#~ msgstr "Format niet gedetecteerd" + +#~ msgid "Not implemented" +#~ msgstr "Niet geimplementeerd" + +#~ msgid "Prueba de correo" +#~ msgstr "Mail test" + +#~ msgid "" +#~ "Esto es una prueba de correo para verificar el correcto funcionamiento de " +#~ "la configuración." +#~ msgstr "" +#~ "This is a test email in order to verify that the configuration is working " +#~ "right." + +#~ msgid "Error al eliminar los enlaces" +#~ msgstr "Error while removing the links" + +#~ msgid "Segundos" +#~ msgstr "Seconds" + +#~ msgid "Actualizar Aplicación" +#~ msgstr "Update Application" + +#~ msgid "Actualización de campos personalizados" +#~ msgstr "Custom fields update" + +#~ msgid "Campo" +#~ msgstr "Field" + +#~ msgid "Actualización de enlaces públicos" +#~ msgstr "Public links update" + +#~ msgid "Enlace" +#~ msgstr "Link" + +#~ msgid "Error al eliminar los grupos" +#~ msgstr "Error while deleting the groups" + +#~ msgid "Error al leer datos del archivo (%s)" +#~ msgstr "Error while reading file data (%s)" + +#~ msgid "Error al eliminar el archivo (%s)" +#~ msgstr "Error while deleting the file (%s)" + +#~ msgid "No es posible leer/escribir el archivo (%s)" +#~ msgstr "Unable to read/write the file (%s)" + +#~ msgid "Error al escribir datos en el archivo (%s)" +#~ msgstr "Error while writing data to file (%s)" + +#~ msgid "Cuenta visualizada" +#~ msgstr "Account displayed" + +#~ msgid "Clave visualizada" +#~ msgstr "Password viewed" + +#~ msgid "Exportación de sysPass en XML" +#~ msgstr "sysPass XML export" + +#~ msgid "Etiqueta" +#~ msgstr "Tag" + +#~ msgid "Es necesario actualizar" +#~ msgstr "Updating needed" + +#~ msgid "HTTPS" +#~ msgstr "HTTPS" + +#~ msgid "Clave copiada" +#~ msgstr "Password copied" + +#~ msgid "Archivo visualizado" +#~ msgstr "File viewed" + +#~ msgid "Archivo: %s" +#~ msgstr "File: %s" + +#~ msgid "Máximo tamaño: %s" +#~ msgstr "Maximum size: %s" + +#~ msgid "Máximo tamaño: %d KB" +#~ msgstr "Maximum size: %d KB" + +#~ msgid "Archivo Eliminado" +#~ msgstr "File Deleted" + +#~ msgid "Autorización" +#~ msgstr "Authorization" + +#~ msgid "Autorización visualizada" +#~ msgstr "Authorization viewed" + +#~ msgid "Archivos habilitados" +#~ msgstr "Files enabled" + +#~ msgid "Archivos deshabilitados" +#~ msgstr "Files disabled" + +#~ msgid "Enlaces públicos habilitados" +#~ msgstr "Public links enabled" + +#~ msgid "Enlaces públicos deshabilitados" +#~ msgstr "Public links disabled" + +#~ msgid "Email enviado" +#~ msgstr "Email sent" + +#~ msgid "Error al enviar email" +#~ msgstr "Error while sending the email" + +#~ msgid "Syslog remoto habilitado" +#~ msgstr "Remote syslog enabled" + +#~ msgid "Auth Basic habilitada" +#~ msgstr "Auth Basic enabled" + +#~ msgid "Auth Basic deshabiltada" +#~ msgstr "Auth Basic disabled" + +#~ msgid "No se importaron cuentas" +#~ msgstr "No accounts were imported" + +#~ msgid "Parámetros de LDAP incorrectos" +#~ msgstr "Wrong LDAP parameters" + +#~ msgid "Importación LDAP" +#~ msgstr "LDAP Import" + +#~ msgid "Compruebe su buzón de correo" +#~ msgstr "Please, check your inbox" + +#~ msgid "DokuWiki habilitada" +#~ msgstr "DokuWiki enabled" + +#~ msgid "Versión no disponible" +#~ msgstr "Version unavailable" + +#~ msgid "Notificaciones no disponibles" +#~ msgstr "Notifications not available" + +#~ msgid "Datos incorrectos" +#~ msgstr "Wrong data" + +#~ msgid "No es posible recuperar la clave" +#~ msgstr "Unable to reset the password" + +#~ msgid "Es necesario una cuenta" +#~ msgstr "An account is needed" + +#~ msgid "Usar auto-login con Auth Basic" +#~ msgstr "Use auto-login through Auth Basic" + +#~ msgid "No es posible cambiar el valor de la clave" +#~ msgstr "Unable to change password value" + +#~ msgid "Filtro incorrecto" +#~ msgstr "Wrong filter" + +#~ msgid "El campo personalizado no existe" +#~ msgstr "Custom field not found" + +#~ msgid "Error al eliminar los plugins" +#~ msgstr "Error while deleting the plugins" + +#~ msgid "Clave maestra no establecida" +#~ msgstr "Master password not set" + +#~ msgid "Error al eliminar las categorías" +#~ msgstr "Error while deleting categories" + +#~ msgid "No es posible restaurar la configuración" +#~ msgstr "Unable to restore configuration" + +#~ msgid "Tipo de campo no encontrado" +#~ msgstr "Field type not found" + +#~ msgid "Fallo en la verificación del hash de integridad" +#~ msgstr "Error while checking integrity hash" + +#~ msgid "Error al crear el usuario 'admin'" +#~ msgstr "Error while creating 'admin' user" + +#~ msgid "Servicio de correo no disponible" +#~ msgstr "Mail service unavailable" + +#~ msgid "Error ol obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master pass from context" + +#~ msgid "Error ol establecer la clave maestra en el contexto" +#~ msgstr "Error while setting master password in context" + +#~ msgid "Track no encontrado" +#~ msgstr "Track not found" + +#~ msgid "Actualización de autorizaciones API" +#~ msgstr "API authorizations update" + +#~ msgid "El nodo XML no existe" +#~ msgstr "The XML node does not exist" + +#~ msgid "Imagen no válida" +#~ msgstr "Invalid image" + +#~ msgid "Verificación de datos exportados finalizada" +#~ msgstr "Verification of exported data finished" + +#~ msgid "Error al actualizar los datos del campo personalizado" +#~ msgstr "Error while updating custom field's data" + +#~ msgid "Error al obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master password from context" + +#~ msgid "Nuevo CLiente" +#~ msgstr "New Client" + +#~ msgid "" +#~ "Si está importando un archivo exportado desde el mismo origen, los datos " +#~ "pueden estar comprometidos." +#~ msgstr "" +#~ "If you are importing an exported file from the same origin, the data " +#~ "could be compromised." + +#~ msgid "Categoría visualizada" +#~ msgstr "Category displayed" + +#~ msgid "Cliente visualizado" +#~ msgstr "Client displayed" + +#~ msgid "Etiqueta visualizada" +#~ msgstr "Tag displayed" + +#~ msgid "Error al crear permiso" +#~ msgstr "Error while creating the permission" + +#~ msgid "Error al actualizar permiso" +#~ msgstr "Error while updating the permission" + +#~ msgid "Error al eliminar permiso" +#~ msgstr "Error while removing the permission" + +#~ msgid "Error al eliminar los permisos" +#~ msgstr "Error while removing the permissions" + +#~ msgid "Permiso no encontrada" +#~ msgstr "Permission not found" + +#~ msgid "Ver Permiso" +#~ msgstr "View Permission" + +#~ msgid "Nuevo Permiso" +#~ msgstr "New Permission" + +#~ msgid "Editar Permiso" +#~ msgstr "Edit Permission" + +#~ msgid "Permisos eliminados" +#~ msgstr "Permissions deleted" + +#~ msgid "Permiso eliminado" +#~ msgstr "Permission deleted" + +#~ msgid "Permiso creado" +#~ msgstr "Permission added" + +#~ msgid "Permiso actualizado" +#~ msgstr "Permission updated" + +#~ msgid "Permisos por Defecto" +#~ msgstr "Default Permissions" + +#~ msgid "Buscar Permiso" +#~ msgstr "Search for Permission" + +#~ msgid "Eliminar Permiso" +#~ msgstr "Delete Permission" + +#~ msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" +#~ msgstr "An element of type user, group or profile need to be set" + +#~ msgid "No hay permisos definidos" +#~ msgstr "There aren't any defined permissions" + +#~ msgid "" +#~ "Prioridad de asignación en caso de coincidir con otros permisos asignados " +#~ "por usuario, grupo o perfil." +#~ msgstr "" +#~ "Assignment priority if permissions match with others assigned by user, " +#~ "group or profile." + +#~ msgid "" +#~ "Indica si los permisos serán forzados al crear o modificar la cuenta." +#~ msgstr "" +#~ "Enforces the permissions to be set either on creating or updating an " +#~ "account ." + +#~ msgid "Los permisos serán añadidos a los existentes." +#~ msgstr "Permissions will be merged with the existing ones." + +#~ msgid "Gestión Permisos" +#~ msgstr "Permissions Management" + +#~ msgid "La clave no cumple los carácteres requeridos" +#~ msgstr "Password does not contain the required characters" + +#~ msgid "Es necesario que la clave contenga letras" +#~ msgstr "Password needs to contain letters" + +#~ msgid "Es necesario que la clave contenga minúsculas" +#~ msgstr "Password needs to contain lower case letters" + +#~ msgid "Es necesario que la clave contenga mayúsculas" +#~ msgstr "Password needs to contain upper case letters" + +#~ msgid "Es necesario que la clave contenga números" +#~ msgstr "Password needs to contain numbers" + +#~ msgid "Es necesario que la clave contenga símbolos" +#~ msgstr "Password needs to contain symbols" + +#~ msgid "Error al desconectar del servidor de LDAP" +#~ msgstr "Error while disconnecting from LDAP server" + +#~ msgid "Valor no encontrada" +#~ msgstr "Value not found" + +#~ msgid "Error al eliminar los valores" +#~ msgstr "Error while deleting the values" + +#~ msgid "Dirección IP no establecida" +#~ msgstr "IP address not set" + +#~ msgid "Valores eliminados" +#~ msgstr "Values deleted" + +#~ msgid "Valor eliminado" +#~ msgstr "Value deleted" + +#~ msgid "Valor creado" +#~ msgstr "Value created" + +#~ msgid "Valor actualizado" +#~ msgstr "Value updated" + +#~ msgid "Tipo de valor no definido o incorrecto" +#~ msgstr "Value type not set or incorrect" + +#~ msgid "Expresión regular inválida" +#~ msgstr "Invalid regular expression" + +#~ msgid "Error al vaciar tracks" +#~ msgstr "Error while clearing tracks out" + +#~ msgid "Track desbloqueado" +#~ msgstr "Track unlocked" + +#~ msgid "Tracks limpiados" +#~ msgstr "Tracks cleared out" + +#~ msgid "Grupo visualizado" +#~ msgstr "Group viewed" + +#~ msgid "Plugin disponible" +#~ msgstr "Plugin available" + +#~ msgid "Plugin no disponible" +#~ msgstr "Plugin unavailable" + +#~ msgid "Plugin cargado" +#~ msgstr "Plugin loaded" diff --git a/app/locales/pl_PL/LC_MESSAGES/messages.mo b/app/locales/pl_PL/LC_MESSAGES/messages.mo index a53036392b4cba78ba4f79bfa161be9ced6ca2be..d5656d1e67f9155e8feabec644c69e3e90c85268 100644 GIT binary patch delta 20722 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 literal 97778 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 OcsnAEpfG)s*Ze;~$Kn?N diff --git a/app/locales/pl_PL/LC_MESSAGES/messages.po b/app/locales/pl_PL/LC_MESSAGES/messages.po index 1a25879a..2e7df882 100644 --- a/app/locales/pl_PL/LC_MESSAGES/messages.po +++ b/app/locales/pl_PL/LC_MESSAGES/messages.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" -"POT-Creation-Date: 2018-10-06 12:52+0200\n" +"POT-Creation-Date: 2018-10-28 22:22+0100\n" "PO-Revision-Date: \n" "Last-Translator: nuxsmin \n" "Language-Team: wseredynski\n" @@ -18,1587 +18,281 @@ msgstr "" "X-Poedit-SearchPath-1: ../../../../lib\n" "X-Poedit-SearchPath-2: ../../../config\n" -#: ../../../modules/web/Controllers/AccountFileController.php:161 -msgid "CONSULTA INVÁLIDA" -msgstr "NIEPRAWIDŁOWE ZAPYTANIE" +#: ../../../../lib/SP/Bootstrap.php:278 +#, php-format +msgid "Versión de PHP requerida >= %s <= %s" +msgstr "Required PHP version >= %s <= %s" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:64 -msgid "La sesión no se ha iniciado o ha caducado" -msgstr "Sesja nie została zainicjowana bądź wygasła" +#: ../../../../lib/SP/Config/ConfigUtil.php:111 +#, php-format +msgid "Actual: %s - Necesario: 750" +msgstr "Current: %s - Needed: 750" -#: ../../../modules/web/Forms/AccountForm.php:171 -msgid "Es necesario un nombre de cuenta" -msgstr "Nazwa konta jest wymagana" +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +msgid "Error interno" +msgstr "Wewnętrzny błąd aplikacji" -#: ../../../modules/web/Forms/AccountForm.php:175 -#: ../../../modules/web/Forms/ClientForm.php:84 +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +msgid "No se puede usar el módulo de encriptación" +msgstr "Nie można załadować modułu Crypto" + +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 #, fuzzy -msgid "Es necesario un nombre de cliente" -msgstr "Nazwa klienta jest wymagana" +msgid "Error al generar datos cifrados" +msgstr "Błąd podczas tworzenia zaszyfrowanych danych" -#: ../../../modules/web/Forms/AccountForm.php:161 -#, fuzzy -msgid "Es necesario un usuario" -msgstr "Nazwa użytkownika jest wymagana" +#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 +#: ../../../../lib/SP/Mvc/View/Template.php:127 +#, php-format +msgid "No es posible obtener la plantilla \"%s\" : %s" +msgstr "Błąd przetwarzania \"%s\" szablonu: %s " -#: ../../../modules/web/Forms/AccountForm.php:131 -msgid "Es necesaria una clave" -msgstr "Klucz jest wymagany" +#: ../../../../lib/SP/Http/Address.php:49 +#: ../../../../lib/SP/Http/Address.php:68 +msgid "IP inválida" +msgstr "Invalid IP" -#: ../../../modules/web/Forms/AccountForm.php:179 -msgid "Es necesario una categoría" -msgstr "Kategoria jest wymagana" +#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 +#, php-format +msgid "Es necesaria una clave con al menos %d caracteres" +msgstr "Password needs to be %d characters long" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:114 -msgid "Acción Inválida" -msgstr "Nieprawidłowa akcja" +#: ../../../../lib/SP/Mvc/View/Template.php:302 +#: ../../../../lib/SP/Mvc/View/Template.php:366 +#, php-format +msgid "No es posible obtener la variable \"%s\"" +msgstr "Błąd pobierania zmiennej \"%s\"" -#: ../../../modules/web/Controllers/ConfigBackupController.php:86 -#: ../../../modules/web/Controllers/UserPassResetController.php:173 -#: ../../../modules/web/Forms/AccountForm.php:135 -#: ../../../modules/web/Forms/UserForm.php:161 -msgid "Las claves no coinciden" -msgstr "Hasła nie pasują do siebie" +#: ../../../../lib/SP/Mvc/View/Template.php:335 +#, php-format +msgid "No es posible destruir la variable \"%s\"" +msgstr "Nie można usunąć zmiennej \"%s\"" -#: ../../../modules/api/Controllers/AccountController.php:184 -#: ../../../modules/api/Controllers/AccountController.php:190 -#: ../../../modules/web/Controllers/AccountController.php:718 -#: ../../../modules/web/Controllers/AccountController.php:729 -msgid "Cuenta creada" -msgstr "Konto zostało dodane" +#: ../../../../lib/SP/Mvc/View/Template.php:356 +msgid "La plantilla no contiene archivos" +msgstr "Szablon nie zawiera plików" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:200 -#, fuzzy -msgid "Error al crear la cuenta" -msgstr "Błąd podczas tworzenia konta" +#: ../../../../lib/SP/Plugin/PluginManager.php:170 +#, php-format +msgid "Versión de plugin no compatible (%s)" +msgstr "Plugin version not compatible (%s)" -#: ../../../modules/web/Controllers/ConfigLdapController.php:95 -#: ../../../modules/web/Controllers/ConfigMailController.php:102 -#: ../../../config/strings.js.inc:80 -msgid "Sin cambios" -msgstr "Brak zmian" +#: ../../../../lib/SP/Plugin/PluginManager.php:192 +#, fuzzy, php-format +msgid "No es posible cargar el plugin \"%s\"" +msgstr "Błąd ładowania pluginu \"%s\"" -#: ../../../modules/api/Controllers/AccountController.php:234 -#: ../../../modules/api/Controllers/AccountController.php:240 -#: ../../../modules/web/Controllers/AccountController.php:763 -#: ../../../modules/web/Controllers/AccountController.php:774 -msgid "Cuenta actualizada" -msgstr "Konto zostało zaktualizowane" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 +#, php-format +msgid "Realizado por: %s (%s)" +msgstr "Performed by: %s (%s)" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:382 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:431 -#, fuzzy -msgid "Error al modificar la cuenta" -msgstr "Błąd podczas aktualizacji konta" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 +#, php-format +msgid "Dirección IP: %s" +msgstr "IP Address: %s" -#: ../../../modules/api/Controllers/AccountController.php:309 -#: ../../../modules/api/Controllers/AccountController.php:315 -#: ../../../modules/web/Controllers/AccountController.php:893 -#: ../../../modules/web/Controllers/AccountController.php:898 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:110 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:115 -#: ../../../modules/web/Controllers/AccountManagerController.php:145 -#: ../../../modules/web/Controllers/AccountManagerController.php:150 -#, fuzzy -msgid "Cuenta eliminada" -msgstr "Konto zostało usunięte" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:162 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:321 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:192 -#, fuzzy -msgid "Error al eliminar la cuenta" -msgstr "Błąd podczas usuwania konta" - -#: ../../../modules/api/Controllers/AccountController.php:138 -#: ../../../modules/api/Controllers/AccountController.php:144 -#: ../../../modules/web/Controllers/AccountController.php:804 -#: ../../../modules/web/Controllers/AccountController.php:815 -#: ../../../modules/web/Controllers/UserController.php:411 -#: ../../../modules/web/Controllers/UserController.php:415 -#: ../../../modules/web/Controllers/UserPassResetController.php:186 -#: ../../../modules/web/Controllers/UserPassResetController.php:190 -msgid "Clave actualizada" -msgstr "Hasło zostało zaktualizowane" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:436 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:235 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:260 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:233 -#, fuzzy -msgid "Error al actualizar la clave" -msgstr "Błąd poczas aktualizacji hasła" - -#: ../../../modules/web/Controllers/AccountController.php:843 -#: ../../../modules/web/Controllers/AccountController.php:854 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:145 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:150 -msgid "Cuenta restaurada" -msgstr "Konto zostało odzyskane" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:301 -#: ../../../../lib/SP/Services/Account/AccountService.php:582 -#, fuzzy -msgid "Error al restaurar cuenta" -msgstr "Błąd podczas odzyskiwania hasła" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 -#: ../../../config/actions.xml:571 -msgid "Ver Usuario" -msgstr "Pokaż szczegóły użytkownika" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 -#: ../../../config/actions.xml:583 -msgid "Editar Usuario" -msgstr "Edytuj użytkownika" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 -#: ../../../config/actions.xml:577 -msgid "Nuevo Usuario" -msgstr "Nowy użytkownik" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 -#: ../../../config/actions.xml:607 -msgid "Ver Grupo" -msgstr "Pokaż szczegóły grupy" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 -#: ../../../config/actions.xml:619 -msgid "Editar Grupo" -msgstr "Edytuj grupę" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 -#: ../../../config/actions.xml:613 -msgid "Nuevo Grupo" -msgstr "Nowa grupa" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 -#: ../../../config/actions.xml:637 -msgid "Ver Perfil" -msgstr "Pokaż szczegóły profilu" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 -#: ../../../config/actions.xml:649 -msgid "Editar Perfil" -msgstr "Edytuj profil" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 -#: ../../../config/actions.xml:643 -msgid "Nuevo Perfil" -msgstr "Nowy profil" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 -#: ../../../config/actions.xml:331 -#, fuzzy -msgid "Ver Cliente" -msgstr "Pokaż szczegóły klienta" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 -#: ../../../config/actions.xml:343 -#, fuzzy -msgid "Editar Cliente" -msgstr "Edytuj klienta" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 -#: ../../../config/actions.xml:337 -#, fuzzy -msgid "Nuevo Cliente" -msgstr "Nowy klient" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 -#: ../../../config/actions.xml:301 -msgid "Ver Categoría" -msgstr "Pokaż szczegóły kategorii" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 -#: ../../../config/actions.xml:313 -msgid "Editar Categoría" -msgstr "Edytuj kategorię" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 -#: ../../../config/actions.xml:307 -msgid "Nueva Categoría" -msgstr "Nowa kategoria" - -#: ../../../modules/web/Controllers/AuthTokenController.php:330 -msgid "Ver Autorización" -msgstr "Wyświetl upoważnienia" - -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 -msgid "Nueva Autorización" -msgstr "Nowe upoważnienie" - -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 -msgid "Editar Autorización" -msgstr "Edytuj upoważnienie" - -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 -msgid "Nuevo Campo" -msgstr "Nowe pole" - -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 -msgid "Editar Campo" -msgstr "Edytuj pole" - -#: ../../../modules/web/Forms/UserForm.php:111 -#, fuzzy -msgid "Es necesario un nombre de usuario" -msgstr "Nazwa użytkownika jest wymagana" - -#: ../../../modules/web/Forms/UserForm.php:115 -msgid "Es necesario un login" -msgstr "Login jest wymagany" - -#: ../../../modules/web/Forms/UserForm.php:119 -msgid "Es necesario un perfil" -msgstr "Profil jest wymagany" - -#: ../../../modules/web/Forms/UserForm.php:123 -msgid "Es necesario un grupo" -msgstr "Grupa jest wymagana" - -#: ../../../modules/web/Forms/UserForm.php:127 -msgid "Es necesario un email" -msgstr "Adres e-mail jest wymagany" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:53 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:92 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:151 -#: ../../../modules/web/Controllers/ConfigImportController.php:56 -#: ../../../modules/web/Controllers/ConfigLdapController.php:218 -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:55 -#: ../../../modules/web/Forms/UserForm.php:131 -#: ../../../modules/web/Forms/UserForm.php:153 -#: ../../../modules/web/Forms/UserForm.php:171 -msgid "Ey, esto es una DEMO!!" -msgstr "UWAGA - to jest demo!!" - -#: ../../../modules/web/Controllers/UserPassResetController.php:169 -#: ../../../modules/web/Forms/AuthTokenForm.php:101 -#: ../../../modules/web/Forms/UserForm.php:157 -msgid "La clave no puede estar en blanco" -msgstr "Hasło nie może być puste" - -#: ../../../modules/web/Controllers/UserController.php:311 -#: ../../../modules/web/Controllers/UserController.php:317 -msgid "Usuario creado" -msgstr "Użytkownik został dodany" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:474 -#, fuzzy -msgid "Error al crear el usuario" -msgstr "Błąd podczas tworzenia użytkownika" - -#: ../../../modules/web/Controllers/UserController.php:372 -#: ../../../modules/web/Controllers/UserController.php:378 -msgid "Usuario actualizado" -msgstr "Użytkownik zostal zaktualizowany" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:100 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:677 -#: ../../../../lib/SP/Services/User/UserService.php:310 -#, fuzzy -msgid "Error al actualizar el usuario" -msgstr "Błąd podczas aktualizacji użytkownika" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:165 -#: ../../../../lib/SP/Services/User/UserService.php:331 -#, fuzzy -msgid "Error al modificar la clave" -msgstr "Błąd podczas aktualizacji hasła" - -#: ../../../modules/web/Forms/UserForm.php:179 -msgid "No es posible eliminar, usuario en uso" -msgstr "Nie udało się usunąć użytkownika (jest on obecnie wykorzystywany)" - -#: ../../../modules/web/Controllers/UserController.php:277 -#: ../../../modules/web/Controllers/UserController.php:281 -msgid "Usuario eliminado" -msgstr "Użytkownik został usunięty" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:184 -#, fuzzy -msgid "Error al eliminar el usuario" -msgstr "Błąd podczas usuwania użytkownika" - -#: ../../../modules/web/Forms/UserGroupForm.php:84 -msgid "Es necesario un nombre de grupo" -msgstr "Nazwa grupy jest wymagana" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:306 -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:351 -msgid "Nombre de grupo duplicado" -msgstr "Ta grupa już istnieje" - -#: ../../../modules/api/Controllers/UserGroupController.php:91 -#: ../../../modules/api/Controllers/UserGroupController.php:96 -#: ../../../modules/web/Controllers/UserGroupController.php:264 -#: ../../../modules/web/Controllers/UserGroupController.php:268 -msgid "Grupo creado" -msgstr "Grupa została dodana" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:315 -#, fuzzy -msgid "Error al crear el grupo" -msgstr "Błąd podczas tworzenia grupy" - -#: ../../../modules/api/Controllers/UserGroupController.php:122 -#: ../../../modules/api/Controllers/UserGroupController.php:127 -#: ../../../modules/web/Controllers/UserGroupController.php:303 -#: ../../../modules/web/Controllers/UserGroupController.php:307 -msgid "Grupo actualizado" -msgstr "Grupa została zaktualizowana" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:361 -#, fuzzy -msgid "Error al actualizar el grupo" -msgstr "Błąd podczas aktualizacji grupy" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 -msgid "Usuarios" -msgstr "Użytkownicy" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 +msgid "Solicitud" +msgstr "Żądanie" #. (itstool) path: action/text #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigBackupController.php:120 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 +#: ../../../modules/web/Controllers/ConfigManagerController.php:175 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: ../../../config/actions.xml:13 msgid "Cuentas" msgstr "Konta" -#: ../../../../inc/SP/Mgmt/Customers/Customer.class.php:115 -msgid "No es posible eliminar" -msgstr "Nie udało sie usunąć" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 +msgid "Notificación" +msgstr "Notification" -#: ../../../modules/api/Controllers/UserGroupController.php:151 -#: ../../../modules/api/Controllers/UserGroupController.php:156 -#: ../../../modules/web/Controllers/UserGroupController.php:230 -#: ../../../modules/web/Controllers/UserGroupController.php:234 -msgid "Grupo eliminado" -msgstr "Grupa została usunięta" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:62 -#, fuzzy -msgid "Error al eliminar el grupo" -msgstr "Błąd poczas usuwania grupy" - -#: ../../../modules/web/Forms/UserProfileForm.php:116 -msgid "Es necesario un nombre de perfil" -msgstr "Nazwa profilu jest wymagana" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:230 -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:275 -msgid "Nombre de perfil duplicado" -msgstr "Ta nazwa profiu już istnieje" - -#: ../../../modules/web/Controllers/UserProfileController.php:248 -msgid "Perfil creado" -msgstr "Profil został dodany" - -#: ../../../modules/web/Controllers/UserProfileController.php:284 -msgid "Perfil actualizado" -msgstr "Profil został zaktualizowany" - -#: ../../../modules/web/Controllers/UserProfileController.php:215 -#: ../../../modules/web/Controllers/UserProfileController.php:219 -msgid "Perfil eliminado" -msgstr "Profil został usunięty" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:77 -#: ../../../modules/api/Controllers/ClientController.php:93 -#: ../../../modules/api/Controllers/ClientController.php:98 -#: ../../../modules/web/Controllers/ClientController.php:244 -#: ../../../modules/web/Controllers/ClientController.php:248 -#, fuzzy -msgid "Cliente creado" -msgstr "Klient został dodany" - -#: ../../../modules/api/Controllers/ClientController.php:124 -#: ../../../modules/api/Controllers/ClientController.php:129 -#: ../../../modules/web/Controllers/ClientController.php:280 -#: ../../../modules/web/Controllers/ClientController.php:284 -#, fuzzy -msgid "Cliente actualizado" -msgstr "Klient został zaktualizowany" - -#: ../../../modules/api/Controllers/ClientController.php:153 -#: ../../../modules/api/Controllers/ClientController.php:158 -#: ../../../modules/web/Controllers/ClientController.php:212 -#: ../../../modules/web/Controllers/ClientController.php:216 -#, fuzzy -msgid "Cliente eliminado" -msgstr "Klient został usunięty" - -#: ../../../modules/web/Forms/CategoryForm.php:83 -msgid "Es necesario un nombre de categoría" -msgstr "Nazwa kategorii jest wymagana" - -#: ../../../modules/api/Controllers/CategoryController.php:91 -#: ../../../modules/api/Controllers/CategoryController.php:96 -#: ../../../modules/web/Controllers/CategoryController.php:253 -#: ../../../modules/web/Controllers/CategoryController.php:257 -msgid "Categoría creada" -msgstr "Kategoria została dodana" - -#: ../../../modules/api/Controllers/CategoryController.php:121 -#: ../../../modules/api/Controllers/CategoryController.php:126 -#: ../../../modules/web/Controllers/CategoryController.php:293 -#: ../../../modules/web/Controllers/CategoryController.php:297 -msgid "Categoría actualizada" -msgstr "Kategoria została zaktualizowana" - -#: ../../../modules/api/Controllers/CategoryController.php:150 -#: ../../../modules/api/Controllers/CategoryController.php:155 -#: ../../../modules/web/Controllers/CategoryController.php:219 -#: ../../../modules/web/Controllers/CategoryController.php:223 -msgid "Categoría eliminada" -msgstr "Kategoria została usunięta" - -#: ../../../modules/web/Controllers/AuthTokenController.php:258 -msgid "Autorización creada" -msgstr "Upoważnienie zostało dodane" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 -#: ../../../modules/web/Controllers/AuthTokenController.php:291 -#: ../../../modules/web/Controllers/AuthTokenController.php:300 -#: ../../../modules/web/Controllers/AuthTokenController.php:307 -msgid "Autorización actualizada" -msgstr "Upowanienie zostało zaktualizowane" - -#: ../../../modules/web/Controllers/AuthTokenController.php:225 -#: ../../../modules/web/Controllers/AuthTokenController.php:229 -msgid "Autorización eliminada" -msgstr "Upoważnienie zostało usunięte" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:87 -msgid "Nombre del campo no indicado" -msgstr "Nazwa pola nie została ustawiona" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:91 -msgid "Tipo del campo no indicado" -msgstr "Typ pola nie został ustawiony" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:95 -msgid "Módulo del campo no indicado" -msgstr "Moduł pola nie został ustawiony" - -#: ../../../modules/web/Controllers/CustomFieldController.php:234 -#: ../../../modules/web/Controllers/CustomFieldController.php:238 -msgid "Campo creado" -msgstr "Pole zostało dodane" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:74 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:87 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:156 -#: ../../../modules/web/Controllers/CustomFieldController.php:271 -#: ../../../modules/web/Controllers/CustomFieldController.php:275 -msgid "Campo actualizado" -msgstr "Pole zostało zaktualizowane" - -#: ../../../modules/web/Controllers/CustomFieldController.php:206 -msgid "Campo eliminado" -msgstr "Pole zostało usunięte" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:94 -msgid "Realizar Backup" -msgstr "Wykonaj kopię zapasową" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:112 -#, fuzzy -msgid "Error al realizar el backup" -msgstr "Bład podczas tworzenia kopii zapasowej" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:114 -#: ../../../../lib/SP/Services/Export/XmlExportService.php:167 -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -#, fuzzy -msgid "Revise el registro de eventos para más detalles" -msgstr "Sprawdź dziennik zdarzeń w celu uzyskania dodatkowych informacji" - -#: ../../../modules/api/Controllers/ConfigController.php:57 -#: ../../../modules/web/Controllers/ConfigBackupController.php:64 -msgid "Copia de la aplicación y base de datos realizada correctamente" -msgstr "Kopie zapasowe bazy jak i aplikajci zostały wykonane pomyślnie" - -#: ../../../modules/api/Controllers/ConfigController.php:61 -#: ../../../modules/web/Controllers/ConfigBackupController.php:67 -msgid "Proceso de backup finalizado" -msgstr "Operacja wykonywania kopii zapasowych została ukończona" - -#: ../../../../inc/SP/Core/XmlExport.class.php:146 -#, fuzzy -msgid "Error al realizar la exportación de cuentas" -msgstr "Błąd poczas eksportowania kont" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:165 -#, fuzzy -msgid "Error al realizar la exportación" -msgstr "Wystąpił błąd podczas eksportu" - -#: ../../../../inc/SP/Core/XmlExport.class.php:155 -msgid "Exportación de cuentas realizada correctamente" -msgstr "Eksport zostały wykonany pomyślnie" - -#: ../../../modules/api/Controllers/ConfigController.php:91 -#: ../../../modules/api/Controllers/ConfigController.php:94 -#: ../../../modules/web/Controllers/ConfigBackupController.php:102 -#: ../../../modules/web/Controllers/ConfigBackupController.php:127 -msgid "Proceso de exportación finalizado" -msgstr "Operacja eksportu została zakończona" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:169 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:171 -#, fuzzy -msgid "Los parámetros de LDAP no están configurados" -msgstr "Parametry połączenie nie zostały ustawione (LDAP)" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:95 -#: ../../../modules/web/Controllers/ConfigLdapController.php:154 -#: ../../../modules/web/Controllers/ConfigLdapController.php:197 -msgid "Conexión a LDAP correcta" -msgstr "Połączenie nawiązane (LDAP)" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:109 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:196 -msgid "Objetos encontrados" -msgstr "Znaleziono obiekty" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:257 -msgid "Modificar Configuración" -msgstr "Edytuj konfigurację" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:70 -msgid "El tamaño máximo por archivo es de 16MB" -msgstr "Maksymalny rozmiar pliku to 16 MB" - -#: ../../../config/strings.js.inc:45 -msgid "Extensión no permitida" -msgstr "Niedozwolone rozszerzenie pliku" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:115 -#, fuzzy -msgid "Faltan parámetros de Proxy" -msgstr "Brak parametrów proxy" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:129 -msgid "Proxy habiltado" -msgstr "Proxy włączone" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:134 -msgid "Proxy deshabilitado" -msgstr "Proxy wyłączone" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:223 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:309 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:375 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:422 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:475 -msgid "Sección" -msgstr "Sekcja" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 -msgid "General" -msgstr "Ogólne" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:59 -msgid "Faltan parámetros de Wiki" -msgstr "Brak parametrów Wiki" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:69 -msgid "Wiki habiltada" -msgstr "Wiki włączone" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:74 -msgid "Wiki deshabilitada" -msgstr "Wiki wyłączone" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 -#: ../../../config/actions.xml:37 -msgid "Wiki" -msgstr "Wiki" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:69 -#: ../../../modules/web/Controllers/ConfigLdapController.php:139 -#: ../../../modules/web/Controllers/ConfigLdapController.php:175 -msgid "Faltan parámetros de LDAP" -msgstr "Brak parametrów (LDAP)" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:88 -msgid "LDAP habiltado" -msgstr "LDAP włączony" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:93 -msgid "LDAP deshabilitado" -msgstr "LDAP wyłączony" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 -msgid "LDAP" -msgstr "LDAP" - -#: ../../../modules/web/Controllers/ConfigMailController.php:68 -#: ../../../modules/web/Controllers/ConfigMailController.php:125 -msgid "Faltan parámetros de Correo" -msgstr "Brak parametów związanych z pocztą" - -#: ../../../modules/web/Controllers/ConfigMailController.php:93 -msgid "Correo habiltado" -msgstr "Poczta jest aktywna" - -#: ../../../modules/web/Controllers/ConfigMailController.php:100 -msgid "Correo deshabilitado" -msgstr "Poczta jest nieaktuwa" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 -msgid "Correo" -msgstr "Poczta" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:68 -msgid "Configuración actualizada" -msgstr "Konfiguracja została zaktualizowana" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:297 -#: ../../../../lib/SP/Services/Auth/LoginService.php:321 -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:144 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -#, fuzzy -msgid "Clave maestra actualizada" -msgstr "Główne hasło zostało zaktualizowane" - -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:145 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -#, fuzzy -msgid "Reinicie la sesión para cambiarla" -msgstr "Zresatruj sesję aby zaktualizować" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:72 -#, fuzzy -msgid "Clave maestra no indicada" -msgstr "Główne hasło jest wymagane" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:76 -msgid "Se ha de confirmar el cambio de clave" -msgstr "Zmiana hasła musi zostać potwierdzona" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:80 -msgid "Las claves son idénticas" -msgstr "Hasła są takie same" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:84 -msgid "Las claves maestras no coinciden" -msgstr "Główne hasła nie pasują do siebie" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:88 -msgid "La clave maestra actual no coincide" -msgstr "Obecne główne hasło nie jest poprawne" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:89 -#, fuzzy -msgid "Errores al actualizar las claves de las cuentas" -msgstr "Błąd podczas aktualizacji haseł dla kont" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:233 -#, fuzzy -msgid "Errores al actualizar las claves de las cuentas del histórico" -msgstr "Błąd podczas akutalizacji haseł dla kont (historia)" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:136 -#, fuzzy -msgid "Errores al actualizar datos de campos personalizados" -msgstr "Błąd podczas aktualizacji dany w polach niestandardowych " - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:71 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:77 #: ../../../../lib/SP/Services/Account/AccountCryptService.php:138 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:67 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:75 #: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:83 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:108 msgid "Actualizar Clave Maestra" msgstr "Zaktualizuj główne hasło" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:138 -#, fuzzy -msgid "Error al guardar el hash de la clave maestra" -msgstr "Błąd poczas zapisywania głównego hasła" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 +#, php-format +msgid "Cuentas actualizadas: %d / %d" +msgstr "Accounts updated: %d / %d" -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:103 -msgid "Generar Clave Temporal" -msgstr "Wygeneruj hasło tymczasowe" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 +#, php-format +msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" +msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 -msgid "Clave" -msgstr "Hasło" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:200 -msgid "Clave Temporal Generada" -msgstr "Hasło tymczasowe zostało wygenerowane" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:110 -#, fuzzy -msgid "Error al generar clave temporal" -msgstr "Błąd poczas generowania hasła tymczasowego" - -#: ../../../../inc/SP/Controller/LoginController.class.php:124 -msgid "Usuario/Clave no introducidos" -msgstr "Brak użytkownika bądź hasła" - -#: ../../../../inc/SP/Controller/LoginController.class.php:108 -msgid "Inicio sesión" -msgstr "Zaloguj się" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:114 -#, fuzzy -msgid "Error al guardar los datos de LDAP" -msgstr "Błąd podczas zapisywania danych użytkownika LDAP" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:59 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:154 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:244 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:334 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:389 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:417 -#: ../../../../lib/SP/Services/Account/AccountService.php:227 -#: ../../../../lib/SP/Services/Account/AccountService.php:232 -#: ../../../../lib/SP/Services/Api/ApiService.php:129 -#: ../../../../lib/SP/Services/Api/ApiService.php:227 -#: ../../../../lib/SP/Services/Api/ApiService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:187 -#: ../../../../lib/SP/Services/Auth/LoginService.php:351 -#: ../../../../lib/SP/Services/Auth/LoginService.php:500 -#: ../../../../lib/SP/Services/Auth/LoginService.php:505 -#: ../../../../lib/SP/Services/Auth/LoginService.php:537 -#: ../../../../lib/SP/Services/Auth/LoginService.php:644 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:311 -#: ../../../../lib/SP/Services/CustomField/CustomFieldService.php:203 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:108 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:79 -#: ../../../../lib/SP/Services/User/UserPassService.php:232 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:122 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:177 -msgid "Error interno" -msgstr "Wewnętrzny błąd aplikacji" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:224 -#, fuzzy -msgid "Error al actualizar la clave del usuario en la BBDD" -msgstr "Błąd poczas aktualizacji hasła uzytkownika" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:157 -#: ../../../../lib/SP/Services/Auth/LoginService.php:456 -#: ../../../../lib/SP/Services/Auth/LoginService.php:463 -#: ../../../../lib/SP/Services/Auth/LoginService.php:571 -#: ../../../../lib/SP/Services/Auth/LoginService.php:576 -#: ../../../../lib/SP/Services/Auth/LoginService.php:615 -#: ../../../../lib/SP/Services/Auth/LoginService.php:620 -#, fuzzy -msgid "Login incorrecto" -msgstr "Niepoprawny login" - -#: ../../../../lib/SP/Core/Acl/Acl.php:301 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:112 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:155 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:110 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:142 -#: ../../../../lib/SP/Services/Auth/LoginService.php:217 -#: ../../../../lib/SP/Services/Auth/LoginService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:386 -#: ../../../../lib/SP/Services/Auth/LoginService.php:453 -#: ../../../../lib/SP/Services/Auth/LoginService.php:561 #: ../../../../lib/SP/Services/Auth/LoginService.php:604 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:238 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/Controllers/LoginController.php:102 -#: ../../../modules/web/Controllers/UserController.php:278 -#: ../../../modules/web/Controllers/UserController.php:312 -#: ../../../modules/web/Controllers/UserController.php:373 -#: ../../../modules/web/Controllers/UserController.php:412 -#: ../../../modules/web/Controllers/UserPassResetController.php:187 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 -msgid "Usuario" -msgstr "Użytkownik" +msgid "N/D" +msgstr "Nie dotyczy" -#: ../../../../lib/SP/Services/Auth/LoginService.php:471 -#: ../../../../lib/SP/Services/Auth/LoginService.php:476 -msgid "Cuenta expirada" -msgstr "Konto wygasło" +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 +#, php-format +msgid "No es posible crear el directorio de backups (\"%s\")" +msgstr "Błąd tworzenia katalogu z kopiami bezpieczeństwa (\"%s\")" -#: ../../../../lib/SP/Services/Auth/LoginService.php:484 -#: ../../../../lib/SP/Services/Auth/LoginService.php:489 -msgid "El usuario no tiene grupos asociados" -msgstr "Użytkownik nie nalezy do jakiejkolwiek grupy" +#: ../../../../lib/SP/Services/Config/ConfigService.php:68 +#: ../../../../lib/SP/Services/Config/ConfigService.php:153 +#, php-format +msgid "Parámetro no encontrado (%s)" +msgstr "Parameter not found (%s)" -#: ../../../../lib/SP/Services/Auth/LoginService.php:605 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 -msgid "Autentificación" -msgstr "Autentykacja" +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 +#, php-format +msgid "Clave Maestra %s" +msgstr "Master Password %s" -#: ../../../../lib/SP/Services/Auth/LoginService.php:216 -#: ../../../../lib/SP/Services/Auth/LoginService.php:223 -msgid "Usuario deshabilitado" -msgstr "Użytkownik został zablokowany" +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 +msgid "" +"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " +"el siguiente inicio." +msgstr "" +"A new sysPass master password has been generated, so the next time you log " +"into the application it will be requested." -#: ../../../../inc/SP/Controller/LoginController.class.php:246 +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 +#, php-format +msgid "La nueva clave es: %s" +msgstr "The new Master Password is: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 +#, php-format +msgid "Esta clave estará activa hasta: %s" +msgstr "This password will be valid until: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 +msgid "No olvide acceder lo antes posible para guardar los cambios." +msgstr "" +"Please, don't forget to log in as soon as possible to save the changes." + +#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 +msgid "Actualizando datos encriptados" +msgstr "Aktualizacja zaszyfrowanych danych" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 +msgid "Categorías" +msgstr "Kategorie" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 #, fuzzy -msgid "Error al obtener los datos del usuario de la BBDD" -msgstr "Błąd poczas pobierania danych o uzytkowniku z bazy" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:339 -#, fuzzy -msgid "La clave maestra no ha sido guardada o es incorrecta" -msgstr "Główne hasło nie jest zapisane bądź jest niepoprawne" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:282 -#: ../../../../lib/SP/Services/Auth/LoginService.php:288 -#: ../../../../lib/SP/Services/Auth/LoginService.php:306 -#: ../../../../lib/SP/Services/Auth/LoginService.php:312 -#, fuzzy -msgid "Clave maestra incorrecta" -msgstr "Nieprawidłowe główne hasło" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/Controllers/UserProfileController.php:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 -msgid "Perfil" -msgstr "Profil" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:120 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:146 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:156 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:143 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:140 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/Controllers/UserGroupController.php:231 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:137 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 -msgid "Grupo" -msgstr "Grupa" - -#: ../../../modules/web/Controllers/AccountFileController.php:370 -msgid "Gestión de archivos deshabilitada" -msgstr "Zarządzanie plikami zostało zablokowane" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 -msgid "Subir Archivo" -msgstr "Wyślij plik" - -#: ../../../modules/web/Controllers/AccountFileController.php:167 -#, fuzzy -msgid "No hay extensiones permitidas" -msgstr "Brak dowzwolonych typów plików" - -#: ../../../../lib/SP/Services/Import/FileImport.php:100 -#: ../../../modules/web/Controllers/AccountFileController.php:184 -msgid "Tipo de archivo no soportado" -msgstr "Ten typ pliku nie jest dozwolony" - -#: ../../../modules/web/Controllers/AccountFileController.php:191 -msgid "Archivo inválido" -msgstr "Nieprawidłowy plik" - -#: ../../../../lib/SP/Services/Import/FileImport.php:116 -#: ../../../modules/web/Controllers/AccountFileController.php:199 -#: ../../../modules/web/Controllers/AccountFileController.php:219 -#, fuzzy -msgid "Error interno al leer el archivo" -msgstr "Błąd podczas odczytywania pliku" - -#: ../../../modules/web/Controllers/AccountFileController.php:231 -#: ../../../modules/web/Controllers/AccountFileController.php:240 -msgid "Archivo guardado" -msgstr "Plik został zapisany" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:77 -msgid "No se pudo guardar el archivo" -msgstr "Błąd podczas zapisu pliku" - -#: ../../../../ajax/ajax_filesMgmt.php:154 -#: ../../../../ajax/ajax_filesMgmt.php:198 -msgid "No es un ID de archivo válido" -msgstr "Nieprawidłowe ID pliku" - -#: ../../../modules/web/Controllers/AccountFileController.php:70 -#: ../../../modules/web/Controllers/AccountFileController.php:122 -msgid "El archivo no existe" -msgstr "Plik nie istnieje" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 -#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 -msgid "Descargar Archivo" -msgstr "Pobierz plik" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/Controllers/ItemPresetController.php:278 -#: ../../../modules/web/Controllers/ItemPresetController.php:311 -#: ../../../modules/web/Controllers/ItemPresetController.php:350 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 -msgid "ID" -msgstr "ID" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:122 -#: ../../../modules/web/Controllers/AccountFileController.php:84 -#: ../../../modules/web/Controllers/AccountFileController.php:97 -#: ../../../modules/web/Controllers/AccountFileController.php:137 -#: ../../../modules/web/Controllers/AccountFileController.php:232 -#: ../../../modules/web/Controllers/AccountFileController.php:329 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 -msgid "Archivo" -msgstr "Plik" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:451 -#: ../../../../lib/SP/Services/Auth/LoginService.php:514 -#: ../../../../lib/SP/Services/Auth/LoginService.php:560 -#: ../../../../lib/SP/Services/Auth/LoginService.php:603 -#: ../../../modules/web/Controllers/AccountFileController.php:235 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/Controllers/ItemPresetController.php:310 -#: ../../../modules/web/Controllers/ItemPresetController.php:349 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 -msgid "Tipo" -msgstr "Typ" - -#: ../../../modules/web/Controllers/AccountFileController.php:236 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 -msgid "Tamaño" -msgstr "Rozmiar" - -#: ../../../modules/web/Controllers/AccountFileController.php:328 -msgid "Archivo eliminado" -msgstr "Plik został usunięty" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:279 -#, fuzzy -msgid "Error al eliminar el archivo" -msgstr "Błąd poczas usuwania pliku" - -#: ../../../../lib/SP/Services/Api/ApiService.php:152 -#, fuzzy -msgid "Parámetros incorrectos" -msgstr "Nieprawidłowe parametry" - -#: ../../../modules/web/Controllers/UserPassResetController.php:101 -msgid "Recuperación de Clave" -msgstr "Odzyskiwanie hasła" - -#: ../../../modules/web/Controllers/UserPassResetController.php:102 -msgid "Solicitado para" -msgstr "Zgłoszony" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "Solicitud enviada" -msgstr "Żądanie zostało wysłane" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "En breve recibirá un correo para completar la solicitud." -msgstr "Wkrótce otrzymasz wiadomość email aby zrealizować żądanie." - -#: ../../../../ajax/ajax_passReset.php:86 -#: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:329 -msgid "Modificar Clave Usuario" -msgstr "Edytuj hasło użytkownika" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 -msgid "Login" -msgstr "Login" - -#: ../../../../ajax/ajax_passReset.php:107 -#, fuzzy -msgid "La clave es incorrecta o no coincide" -msgstr "Hasło jest niepoprawne" - -#: ../../../modules/web/Controllers/AccountController.php:919 -#: ../../../modules/web/Forms/NotificationForm.php:100 -msgid "Es necesaria una descripción" -msgstr "Opis jest wymagany" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1173 -msgid "Solicitud de Modificación de Cuenta" -msgstr "Zgłoszenie modyfikacji konta" - -#: ../../../modules/web/Controllers/AccountController.php:927 -msgid "Solicitante" -msgstr "Zgłaszający" - -#: ../../../modules/web/Controllers/AccountController.php:224 -#: ../../../modules/web/Controllers/AccountController.php:555 -#: ../../../modules/web/Controllers/AccountController.php:611 -#: ../../../modules/web/Controllers/AccountController.php:650 -#: ../../../modules/web/Controllers/AccountController.php:684 -#: ../../../modules/web/Controllers/AccountController.php:719 -#: ../../../modules/web/Controllers/AccountController.php:764 -#: ../../../modules/web/Controllers/AccountController.php:805 -#: ../../../modules/web/Controllers/AccountController.php:844 -#: ../../../modules/web/Controllers/AccountController.php:894 -#: ../../../modules/web/Controllers/AccountController.php:928 -#: ../../../modules/web/Controllers/AccountFileController.php:233 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:146 -#: ../../../modules/web/Controllers/AccountManagerController.php:146 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 -msgid "Cuenta" -msgstr "Konto" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:159 -#: ../../../modules/api/Controllers/AccountController.php:72 -#: ../../../modules/api/Controllers/AccountController.php:104 -#: ../../../modules/api/Controllers/AccountController.php:140 -#: ../../../modules/api/Controllers/AccountController.php:186 -#: ../../../modules/api/Controllers/AccountController.php:236 -#: ../../../modules/api/Controllers/AccountController.php:311 -#: ../../../modules/web/Controllers/AccountController.php:225 -#: ../../../modules/web/Controllers/AccountController.php:720 -#: ../../../modules/web/Controllers/AccountController.php:765 -#: ../../../modules/web/Controllers/AccountController.php:806 -#: ../../../modules/web/Controllers/AccountController.php:845 -#: ../../../modules/web/Controllers/AccountController.php:895 -#: ../../../modules/web/Controllers/AccountController.php:929 -#: ../../../modules/web/Controllers/AccountFileController.php:234 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:112 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:147 -#: ../../../modules/web/Controllers/AccountManagerController.php:147 -#: ../../../modules/web/Controllers/ClientController.php:213 -#: ../../../modules/web/Controllers/ClientController.php:245 -#: ../../../modules/web/Controllers/ClientController.php:281 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 -#, fuzzy -msgid "Cliente" -msgstr "Klient" - -#: ../../../modules/web/Controllers/AccountController.php:930 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 -msgid "Descripción" -msgstr "Opis" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:697 -#, fuzzy -msgid "Error al actualizar preferencias" -msgstr "Błąd podczas aktualizacji ustawień" - -#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:70 -msgid "Preferencias actualizadas" -msgstr "Ustawienia zostały zaktualizowane" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:509 -msgid "La clave maestra no coincide" -msgstr "Główne hasła nie pasują do siebie" - -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:132 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:96 -msgid "No tiene permisos para acceder a esta cuenta" -msgstr "Nie masz uprawnień do tego konta" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 -#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 -msgid "Ver Clave" -msgstr "Pokaż hasło" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 -#: ../../../config/strings.js.inc:72 -msgid "Clave de Cuenta" -msgstr "Hasło" - -#: ../../../../inc/SP/Http/Request.class.php:55 -#, fuzzy -msgid "No es posible acceder directamente a este archivo" -msgstr "Brak dostępu do pliku" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:143 -msgid "Error al actualizar el historial" -msgstr "Błąd podczas aktualizacji historii" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -msgid "Actualizar Cuenta" -msgstr "Aktualizuj konto" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:164 -#, fuzzy -msgid "Error al actualizar los grupos secundarios" -msgstr "Błąd podczas aktualizacji drugiej grupy" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:103 -#, fuzzy -msgid "Error al actualizar los usuarios de la cuenta" -msgstr "Błąd podczas aktualizacji użytkowników związanych z kontem" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 -#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 -msgid "Restaurar Cuenta" -msgstr "Odzyskaj konto" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:451 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:623 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:75 -#, fuzzy -msgid "No se pudieron obtener los datos de la cuenta" -msgstr "Błąd podczas pobierania danych konta" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:256 -#: ../../../modules/web/Controllers/AccountController.php:300 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:278 -#: ../../../config/actions.xml:157 -msgid "Nueva Cuenta" -msgstr "Nowe konto" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:389 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 -#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 -#: ../../../config/actions.xml:793 -#, fuzzy -msgid "Eliminar Cuenta" -msgstr "Usuń konto" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:106 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:139 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:191 -#, fuzzy -msgid "Error al eliminar grupos asociados a la cuenta" -msgstr "Błąd podczas usuwania grup" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:76 -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:132 -#, fuzzy -msgid "Error al eliminar usuarios asociados a la cuenta" -msgstr "Błąd podczas usuwania użytkowników" - -#: ../../../../inc/SP/Mgmt/Files/FileUtil.class.php:102 -#, fuzzy -msgid "Error al eliminar archivos asociados a la cuenta" -msgstr "Błąd podczas usuwania plików" - -#: ../../../../inc/SP/Account/AccountCrypt.class.php:70 -#: ../../../../inc/SP/Account/AccountCrypt.class.php:200 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:73 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:208 -msgid "Inicio" -msgstr "Start" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:81 -#, fuzzy -msgid "Error en el módulo de encriptación" -msgstr "Błąd modułu szyfrowania" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:115 -#, fuzzy -msgid "Error al obtener las claves de las cuentas" -msgstr "Błąd podczas ładowania haseł związanych z kontem" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:183 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:188 -#, fuzzy -msgid "Fallo al actualizar la clave de la cuenta" -msgstr "Błąd podczas aktualizacji hasła" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:193 -#: ../../../modules/web/Controllers/AccountManagerController.php:185 -#: ../../../modules/web/Controllers/AccountManagerController.php:188 -msgid "Cuentas actualizadas" -msgstr "Konta zostały zaktualizowane" - -#: ../../../../inc/SP/Account/AccountUtil.class.php:132 -#, fuzzy -msgid "No se pudieron obtener los datos de las cuentas" -msgstr "Nie można odczytać danych konta" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:212 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:218 -msgid "Actualizar Clave Maestra (H)" -msgstr "Zaktualizuj hasło główne (H)" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:158 -msgid "La clave maestra del registro no coincide" -msgstr "Hasło główne dla rekordu nie zgadza się" - -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:157 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:160 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:283 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:286 -#, fuzzy -msgid "Fallo al actualizar la clave del histórico" -msgstr "Błąd podczas aktualizacji hasła głównego historii" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:109 -msgid "Registros actualizados" -msgstr "Rekordy zostały zaktualizowane" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:7 -#, fuzzy -msgid "Buscar Cuentas" -msgstr "Wyszukaj konta" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 -msgid "Ver Cuenta" -msgstr "Pokaż konto" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 -#: ../../../config/actions.xml:193 -msgid "Copiar Cuenta" -msgstr "Kopiuj konto" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:344 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 -#: ../../../config/actions.xml:163 -msgid "Editar Cuenta" -msgstr "Edytuj konto" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:181 -msgid "Editar Clave de Cuenta" -msgstr "Edytuj hasło dla konta" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 -#: ../../../config/actions.xml:259 -msgid "Ver Historial" -msgstr "Pokaż historię" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 -#: ../../../config/actions.xml:19 -msgid "Archivos" -msgstr "Pliki" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:25 -msgid "Peticiones" -msgstr "Żądania" - -#: ../../../../inc/SP/Core/Acl.class.php:196 -msgid "Gestión Aplicación" -msgstr "Zarządzanie aplikacjami" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:49 -msgid "Gestión Categorías" -msgstr "Zarządzanie kategoriami" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:55 -#, fuzzy -msgid "Gestión Clientes" -msgstr "Zarządzanie klientami" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:67 -msgid "Gestión Campos Personalizados" -msgstr "Zarządzanie polami" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:61 -msgid "Gestión Autorizaciones API" -msgstr "Zarządzanie dostępem do API" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:115 -msgid "Gestión Usuarios" -msgstr "Zarządzanie użytkownikami" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:121 -msgid "Gestión Grupos" -msgstr "Zarządzanie grupami" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:127 -msgid "Gestión Perfiles" -msgstr "Zarządzanie profilami" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:348 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:61 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 -#: ../../../config/actions.xml:685 -msgid "Configuración" -msgstr "Ustawienie" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 -#: ../../../config/actions.xml:691 -msgid "Configuración General" -msgstr "Ogólne ustawienie" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 -msgid "Encriptación" -msgstr "Szyfrowanie" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 -#: ../../../config/actions.xml:733 -msgid "Copia de Seguridad" -msgstr "Kopia zapasowa" - -#: ../../../../inc/SP/Core/Acl.class.php:220 -msgid "Exportar" -msgstr "Eksport" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 -msgid "Importar" -msgstr "Import" - -#: ../../../../lib/SP/Services/Api/ApiService.php:186 -#: ../../../modules/api/Controllers/ControllerBase.php:146 -msgid "Acceso no permitido" -msgstr "Nieautoryzowany dostęp" - -#: ../../../../lib/SP/Http/Json.php:179 -msgid "Error de codificación" -msgstr "Błąd kodowania" - -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:221 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:309 -msgid "La autorización ya existe" -msgstr "Upoważnienie już istnieje" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 -msgid "Actualizar Autorización" -msgstr "Aktaulizuj upoważnienie" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 -msgid "Eliminar Autorización" -msgstr "Usuń upowaznienie" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:141 -msgid "Usuario no pertenece al grupo" -msgstr "Użytkownik nie należy do tej grupy" +msgid "Clientes" +msgstr "Klienci" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:104 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 +msgid "Usuarios" +msgstr "Użytkownicy" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 +msgid "Grupos" +msgstr "Grupy" + +#: ../../../../lib/SP/Services/Export/XmlExportService.php:123 +#: ../../../../lib/SP/Storage/File/FileCache.php:74 +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 +#, php-format +msgid "No es posible crear el directorio (%s)" +msgstr "Unable to create the directory (%s)" + +#: ../../../../lib/SP/Services/Import/CsvImport.php:50 +#, php-format +msgid "Formato detectado: %s" +msgstr "Wykryty format: %s" + +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 +#, php-format +msgid "El número de campos es incorrecto (%d)" +msgstr "Zła ilość pól (%d)" + +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 +#, fuzzy, php-format +msgid "Compruebe el formato del archivo CSV en línea %s" +msgstr "Sprawdź format pliku CSV w linii %s" + +#: ../../../../lib/SP/Services/Import/ImportService.php:89 +#, php-format +msgid "Tipo mime no soportado (\"%s\")" +msgstr "Niewspierany typ mime (\"%s\")" + +#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 +#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 +#, php-format +msgid "El nodo \"%s\" no existe" +msgstr "Węzeł \"%s\" nie istnieje" + +#: ../../../../lib/SP/Services/Install/MySQL.php:135 +#, php-format +msgid "No es posible comprobar el usuario de sysPass (%s)" +msgstr "Unable to check the sysPass user (%s)" + +#: ../../../../lib/SP/Services/Install/MySQL.php:213 +#: ../../../../lib/SP/Services/Install/MySQL.php:329 +#: ../../../../lib/SP/Services/Install/MySQL.php:341 +#, php-format +msgid "Error al crear la BBDD ('%s')" +msgstr "Error while creating the DB ('%s')" + +#: ../../../../lib/SP/Services/Install/MySQL.php:237 +#, fuzzy, php-format +msgid "Error al establecer permisos de la BBDD ('%s')" +msgstr "Błąd przy ustawianiu uprawnień bazy danych ('%s')" + +#: ../../../../lib/SP/Services/Install/MySQL.php:309 +#, php-format +msgid "Error al seleccionar la BBDD '%s' (%s)" +msgstr "Error while selecting '%s' database (%s)" + +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 +msgid "Importado desde LDAP" +msgstr "Imported from LDAP" + +#: ../../../../lib/SP/Services/Task/TaskService.php:81 +msgid "No es posible crear archivo de bloqueo" +msgstr "Unable to create the lock file" + +#: ../../../../lib/SP/Services/Task/TaskService.php:184 +msgid "Esperando actualización de progreso ..." +msgstr "Waiting for progress updating ..." + +#: ../../../../lib/SP/Services/Track/TrackService.php:162 +#, php-format +msgid "Intentos excedidos (%d/%d)" +msgstr "Attempts exceeded (%d/%d)" + +#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 +msgid "El archivo de actualización no contiene datos" +msgstr "The update file does not contain data" #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 +#: ../../../modules/web/Controllers/UserController.php:235 +#: ../../../modules/web/Controllers/UserController.php:356 +#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Cambio de Clave" msgstr "Zmiana hasła" @@ -1614,497 +308,682 @@ msgstr "Aby zakończyć proces, przejdź na następującą stronę:" msgid "Si no ha solicitado esta acción, ignore este mensaje." msgstr "Jeśli nie wysłałeś tego zgłoszenia, zignoruj tą wiadomość" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:333 -msgid "Esta operación sólo es posible en entornos Linux" -msgstr "Ta operacja jest możliwa tylko w środowiskach Linux" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 +msgid "Fallo de autentificación" +msgstr "Błąd poświadczeń" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:101 +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 #, fuzzy -msgid "Error al realizar backup en modo compatibilidad" -msgstr "Błąd podczas wykonywania kopii zapasowej (tryb kompatybilności)" +msgid "Error al realizar la consulta" +msgstr "Błąd przy wykonywaniu zapytania" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:138 -#, fuzzy -msgid "Compruebe los permisos del directorio de backups" -msgstr "Sprawdź uprawnienia dla katalogu backup" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 +msgid "URL de conexión no establecida" +msgstr "Nie podano URLa połączenia" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:107 -msgid "Nombre de categoría duplicado" -msgstr "Ta nazwa kategorii już istnieje" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 +#, php-format +msgid "Error al descomprimir datos del archivo (%s)" +msgstr "Error while decompressing the file data (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:68 -#, fuzzy -msgid "Error al crear la categoría" -msgstr "Błąd poczas tworzenia kategorii" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 +msgid "Error al obtener los datos" +msgstr "Error while retrieving the data" -#: ../../../../lib/SP/Services/Import/KeepassImport.php:104 -#: ../../../modules/web/Controllers/CategoryController.php:220 -#: ../../../modules/web/Controllers/CategoryController.php:254 -#: ../../../modules/web/Controllers/CategoryController.php:294 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 -msgid "Categoría" -msgstr "Kategoria" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 +#, php-format +msgid "Error al comprimir datos del archivo (%s)" +msgstr "Error while compressing the file data (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:275 -#, fuzzy -msgid "Error al eliminar la categoría" -msgstr "Błąd poczas usuwania kategorii" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 +msgid "Datos no cargados" +msgstr "Data not loaded" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 -#: ../../../config/actions.xml:319 -msgid "Eliminar Categoría" -msgstr "Usuń kategorię" +#: ../../../../lib/SP/Storage/File/FileHandler.php:72 +#: ../../../../lib/SP/Storage/File/FileHandler.php:135 +#, php-format +msgid "No es posible escribir en el archivo (%s)" +msgstr "Unable to read/write the file (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:125 -#, fuzzy -msgid "Error al actualizar la categoría" -msgstr "Błąd podczas aktualizacji kategorii" +#: ../../../../lib/SP/Storage/File/FileHandler.php:89 +#, php-format +msgid "No es posible abrir el archivo (%s)" +msgstr "Unable to open the file (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:108 -#: ../../../../inc/SP/Config/ConfigDB.class.php:148 -msgid "Modificar configuración" -msgstr "Aktualizuj kategorię" +#: ../../../../lib/SP/Storage/File/FileHandler.php:104 +#: ../../../../lib/SP/Storage/File/FileHandler.php:118 +#, php-format +msgid "No es posible leer desde el archivo (%s)" +msgstr "Unable to read from file (%s)" -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:82 -msgid "Parámetro" -msgstr "Parametr" +#: ../../../../lib/SP/Storage/File/FileHandler.php:173 +#, php-format +msgid "No es posible cerrar el archivo (%s)" +msgstr "Unable to close the file (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:152 -msgid "Valor" -msgstr "Wartość" +#: ../../../../lib/SP/Storage/File/FileHandler.php:219 +#, php-format +msgid "No es posible escribir el archivo (%s)" +msgstr "Unable to write in file (%s)" -#: ../../../../lib/SP/Util/ErrorUtil.php:128 +#: ../../../../lib/SP/Storage/File/FileHandler.php:234 +#, php-format +msgid "Archivo no encontrado (%s)" +msgstr "File not found (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:259 +#: ../../../../lib/SP/Storage/File/FileHandler.php:314 +#, php-format +msgid "No es posible leer el archivo (%s)" +msgstr "Unable to read/write the file (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:286 +#, php-format +msgid "No es posible eliminar el archivo (%s)" +msgstr "Unable to delete file (%s)" + +#: ../../../../lib/SP/Util/ErrorUtil.php:148 msgid "Opción no disponible" msgstr "Opcja jest niedostępna" -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:129 -#: ../../../../lib/SP/Util/ErrorUtil.php:133 -#: ../../../../lib/SP/Util/ErrorUtil.php:137 -#: ../../../../lib/SP/Util/ErrorUtil.php:141 #: ../../../../lib/SP/Util/ErrorUtil.php:149 -#: ../../../../lib/SP/Util/ErrorUtil.php:156 +#: ../../../../lib/SP/Util/ErrorUtil.php:153 +#: ../../../../lib/SP/Util/ErrorUtil.php:157 +#: ../../../../lib/SP/Util/ErrorUtil.php:161 +#: ../../../../lib/SP/Util/ErrorUtil.php:169 +#: ../../../../lib/SP/Util/ErrorUtil.php:176 #: ../../../modules/web/Controllers/ErrorController.php:124 -#: ../../../modules/web/Controllers/UserPassResetController.php:94 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Consulte con el administrador" msgstr "Skontaktuj się z administratorem" -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:136 +#: ../../../../lib/SP/Util/ErrorUtil.php:152 +msgid "No tiene permisos para acceder a esta cuenta" +msgstr "Nie masz uprawnień do tego konta" + +#: ../../../../lib/SP/Util/ErrorUtil.php:156 msgid "No tiene permisos para acceder a esta página" msgstr "Nie masz uprawnień aby wejść na tą stronę" -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Util/ErrorUtil.php:140 -#: ../../../modules/web/Controllers/AccountFileController.php:261 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:59 -#: ../../../modules/web/Controllers/AccountManagerController.php:77 -#: ../../../modules/web/Controllers/AccountManagerController.php:204 -#: ../../../modules/web/Controllers/AuthTokenController.php:68 -#: ../../../modules/web/Controllers/AuthTokenController.php:105 -#: ../../../modules/web/Controllers/AuthTokenController.php:170 -#: ../../../modules/web/Controllers/AuthTokenController.php:200 -#: ../../../modules/web/Controllers/AuthTokenController.php:243 -#: ../../../modules/web/Controllers/AuthTokenController.php:278 -#: ../../../modules/web/Controllers/AuthTokenController.php:327 -#: ../../../modules/web/Controllers/CategoryController.php:66 -#: ../../../modules/web/Controllers/CategoryController.php:100 -#: ../../../modules/web/Controllers/CategoryController.php:164 -#: ../../../modules/web/Controllers/CategoryController.php:194 -#: ../../../modules/web/Controllers/CategoryController.php:237 -#: ../../../modules/web/Controllers/CategoryController.php:277 -#: ../../../modules/web/Controllers/CategoryController.php:317 -#: ../../../modules/web/Controllers/ClientController.php:64 -#: ../../../modules/web/Controllers/ClientController.php:96 -#: ../../../modules/web/Controllers/ClientController.php:160 -#: ../../../modules/web/Controllers/ClientController.php:190 -#: ../../../modules/web/Controllers/ClientController.php:230 -#: ../../../modules/web/Controllers/ClientController.php:268 -#: ../../../modules/web/Controllers/ClientController.php:304 -#: ../../../modules/web/Controllers/CustomFieldController.php:65 -#: ../../../modules/web/Controllers/CustomFieldController.php:97 -#: ../../../modules/web/Controllers/CustomFieldController.php:159 -#: ../../../modules/web/Controllers/CustomFieldController.php:189 -#: ../../../modules/web/Controllers/CustomFieldController.php:221 -#: ../../../modules/web/Controllers/CustomFieldController.php:258 -#: ../../../modules/web/Controllers/CustomFieldController.php:295 -#: ../../../modules/web/Controllers/EventlogController.php:101 -#: ../../../modules/web/Controllers/ItemPresetController.php:67 -#: ../../../modules/web/Controllers/ItemPresetController.php:151 -#: ../../../modules/web/Controllers/ItemPresetController.php:188 -#: ../../../modules/web/Controllers/ItemPresetController.php:226 -#: ../../../modules/web/Controllers/ItemPresetController.php:256 -#: ../../../modules/web/Controllers/ItemPresetController.php:295 -#: ../../../modules/web/Controllers/ItemPresetController.php:334 -#: ../../../modules/web/Controllers/NotificationController.php:100 -#: ../../../modules/web/Controllers/NotificationController.php:160 -#: ../../../modules/web/Controllers/NotificationController.php:175 -#: ../../../modules/web/Controllers/NotificationController.php:206 -#: ../../../modules/web/Controllers/NotificationController.php:237 -#: ../../../modules/web/Controllers/NotificationController.php:288 -#: ../../../modules/web/Controllers/NotificationController.php:315 -#: ../../../modules/web/Controllers/NotificationController.php:348 -#: ../../../modules/web/Controllers/PluginController.php:98 -#: ../../../modules/web/Controllers/PluginController.php:117 -#: ../../../modules/web/Controllers/PublicLinkController.php:71 -#: ../../../modules/web/Controllers/PublicLinkController.php:105 -#: ../../../modules/web/Controllers/PublicLinkController.php:167 -#: ../../../modules/web/Controllers/PublicLinkController.php:193 -#: ../../../modules/web/Controllers/PublicLinkController.php:223 -#: ../../../modules/web/Controllers/PublicLinkController.php:264 -#: ../../../modules/web/Controllers/PublicLinkController.php:296 -#: ../../../modules/web/Controllers/PublicLinkController.php:338 -#: ../../../modules/web/Controllers/TagController.php:65 -#: ../../../modules/web/Controllers/TagController.php:99 -#: ../../../modules/web/Controllers/TagController.php:159 -#: ../../../modules/web/Controllers/TagController.php:189 -#: ../../../modules/web/Controllers/TagController.php:223 -#: ../../../modules/web/Controllers/TagController.php:254 -#: ../../../modules/web/Controllers/TagController.php:285 -#: ../../../modules/web/Controllers/UserController.php:69 -#: ../../../modules/web/Controllers/UserController.php:101 -#: ../../../modules/web/Controllers/UserController.php:186 -#: ../../../modules/web/Controllers/UserController.php:218 -#: ../../../modules/web/Controllers/UserController.php:254 -#: ../../../modules/web/Controllers/UserController.php:296 -#: ../../../modules/web/Controllers/UserController.php:357 -#: ../../../modules/web/Controllers/UserController.php:398 -#: ../../../modules/web/Controllers/UserController.php:435 -#: ../../../modules/web/Controllers/UserGroupController.php:74 -#: ../../../modules/web/Controllers/UserGroupController.php:108 -#: ../../../modules/web/Controllers/UserGroupController.php:179 -#: ../../../modules/web/Controllers/UserGroupController.php:209 -#: ../../../modules/web/Controllers/UserGroupController.php:249 -#: ../../../modules/web/Controllers/UserGroupController.php:288 -#: ../../../modules/web/Controllers/UserGroupController.php:327 -#: ../../../modules/web/Controllers/UserProfileController.php:64 -#: ../../../modules/web/Controllers/UserProfileController.php:96 -#: ../../../modules/web/Controllers/UserProfileController.php:163 -#: ../../../modules/web/Controllers/UserProfileController.php:193 -#: ../../../modules/web/Controllers/UserProfileController.php:233 -#: ../../../modules/web/Controllers/UserProfileController.php:268 -#: ../../../modules/web/Controllers/UserProfileController.php:304 +#: ../../../../lib/SP/Util/ErrorUtil.php:160 msgid "No tiene permisos para realizar esta operación" msgstr "Nie masz uprawnień aby wykonać tą operację" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:56 -#: ../../../config/strings.js.inc:85 -msgid "Aviso" -msgstr "Ostrzeżenie" - -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:105 -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:116 -msgid "" -"Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." -msgstr "" -"HASH hasła głównego został ponownie wygenerowany. Nic więcej nie trzeba " -"robić." - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -msgid "No se puede usar el módulo de encriptación" -msgstr "Nie można załadować modułu Crypto" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +#: ../../../../lib/SP/Util/ErrorUtil.php:164 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 #, fuzzy -msgid "Error al generar datos cifrados" -msgstr "Błąd podczas tworzenia zaszyfrowanych danych" +msgid "Clave maestra actualizada" +msgstr "Główne hasło zostało zaktualizowane" -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:102 -msgid "No es posible generar las claves RSA" -msgstr "Nie można wygenerować kluczy RSA" - -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:135 -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:168 -msgid "El archivo de clave no existe" -msgstr "Plik klucza nie istnieje" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 -msgid "El número de campos es incorrecto (%d)" -msgstr "Zła ilość pól (%d)" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 +#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 #, fuzzy -msgid "Compruebe el formato del archivo CSV en línea %s" -msgstr "Sprawdź format pliku CSV w linii %s" +msgid "Reinicie la sesión para cambiarla" +msgstr "Zresatruj sesję aby zaktualizować" -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 +#: ../../../../lib/SP/Util/ErrorUtil.php:168 +#: ../../../../lib/SP/Util/ErrorUtil.php:175 +#, fuzzy +msgid "Se ha producido una excepción" +msgstr "Wystąpił wyjątek" + +#: ../../../modules/api/Controllers/AccountController.php:144 +msgid "Clave actualizada" +msgstr "Hasło zostało zaktualizowane" + +#: ../../../modules/api/Controllers/AccountController.php:194 +msgid "Cuenta creada" +msgstr "Konto zostało dodane" + +#: ../../../modules/api/Controllers/AccountController.php:245 +msgid "Cuenta actualizada" +msgstr "Konto zostało zaktualizowane" + +#: ../../../modules/api/Controllers/AccountController.php:320 +#, fuzzy +msgid "Cuenta eliminada" +msgstr "Konto zostało usunięte" + +#: ../../../modules/api/Controllers/CategoryController.php:96 +msgid "Categoría creada" +msgstr "Kategoria została dodana" + +#: ../../../modules/api/Controllers/CategoryController.php:126 +msgid "Categoría actualizada" +msgstr "Kategoria została zaktualizowana" + +#: ../../../modules/api/Controllers/CategoryController.php:155 +msgid "Categoría eliminada" +msgstr "Kategoria została usunięta" + +#: ../../../modules/api/Controllers/ClientController.php:98 +#, fuzzy +msgid "Cliente creado" +msgstr "Klient został dodany" + +#: ../../../modules/api/Controllers/ClientController.php:129 +#, fuzzy +msgid "Cliente actualizado" +msgstr "Klient został zaktualizowany" + +#: ../../../modules/api/Controllers/ClientController.php:158 +#, fuzzy +msgid "Cliente eliminado" +msgstr "Klient został usunięty" + +#: ../../../modules/api/Controllers/ConfigController.php:61 +msgid "Proceso de backup finalizado" +msgstr "Operacja wykonywania kopii zapasowych została ukończona" + +#: ../../../modules/api/Controllers/ConfigController.php:94 +msgid "Proceso de exportación finalizado" +msgstr "Operacja eksportu została zakończona" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 +msgid "Id de la cuenta" +msgstr "Id konta" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 +msgid "Clave del token" +msgstr "Token's password" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 +#, fuzzy +msgid "Devolver detalles en la respuesta" +msgstr "Wyślij szczegóły w odpowiedzi" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:89 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:92 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:163 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:293 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:170 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:253 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:260 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:35 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:98 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:27 +msgid "Clave" +msgstr "Hasło" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:114 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:181 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:90 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 +msgid "Fecha Caducidad Clave" +msgstr "Data wygaśnięcia hasła" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:73 +msgid "Nombre de cuenta" +msgstr "Nazwa konta" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 +msgid "Id de categoría" +msgstr "Id kategorii" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 +#, fuzzy +msgid "Id de cliente" +msgstr "Id klienta" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 +msgid "Usuario de acceso" +msgstr "Użytkownik" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:136 +msgid "URL o IP de acceso" +msgstr "URL dostępowy lub IP" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:134 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 +msgid "Notas sobre la cuenta" +msgstr "Informacje o koncie" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:198 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 +msgid "Cuenta Privada" +msgstr "Prywatne konto" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:217 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 +msgid "Cuenta Privada Grupo" +msgstr "Private Account for Group" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:252 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:254 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:13 +msgid "Cuenta Vinculada" +msgstr "Podlinkowane konto" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 +msgid "Array con Ids de etiquetas" +msgstr "Array with tags id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 +msgid "Id de grupo" +msgstr "Group Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 +#: ../../../modules/api/Controllers/Help/TagHelp.php:77 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 +msgid "Texto a buscar" +msgstr "Tekst do wyszukania" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 +#: ../../../modules/api/Controllers/Help/TagHelp.php:78 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 +msgid "Número de resultados a mostrar" +msgstr "Ilość wyników do wyświetlenia" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 +msgid "Id de categoría a filtrar" +msgstr "Id kategorii do filtracji" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 +msgid "Id de cliente a filtrar" +msgstr "Client Id to filter on" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 +msgid "Array con Ids de etiquetas a filtrar" +msgstr "Array with tags id for filtering" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 +msgid "Operador de filtrado" +msgstr "Filtering operator" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:29 +msgid "Nombre de la categoría" +msgstr "Nazwa kategorii" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:41 +msgid "Descripción de la categoría" +msgstr "Opis kategorii" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:30 +#, fuzzy +msgid "Nombre del cliente" +msgstr "Nazwa klienta" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:43 +#, fuzzy +msgid "Descripción del cliente" +msgstr "Opis klienta" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:99 +msgid "Global" +msgstr "Global" + +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 +msgid "Ruta" +msgstr "Path" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:43 +#: ../../../modules/api/Controllers/Help/TagHelp.php:65 +#: ../../../modules/api/Controllers/Help/TagHelp.php:89 +msgid "Id de etiqueta" +msgstr "Tag Id" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:54 +#: ../../../modules/api/Controllers/Help/TagHelp.php:66 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:29 +msgid "Nombre de la etiqueta" +msgstr "Nazwa tagu" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:31 +msgid "Nombre del grupo" +msgstr "Nazwa grupy" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:44 +msgid "Descripción del grupo" +msgstr "Opis grupy" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 +msgid "Array con Ids de usuarios" +msgstr "Array with users Id" + +#: ../../../modules/api/Controllers/TagController.php:94 +msgid "Etiqueta creada" +msgstr "Tag dodany" + +#: ../../../modules/api/Controllers/TagController.php:123 +msgid "Etiqueta actualizada" +msgstr "Tag zaktualizowany" + +#: ../../../modules/api/Controllers/TagController.php:152 +msgid "Etiqueta eliminada" +msgstr "Tag usunięty" + +#: ../../../modules/api/Controllers/UserGroupController.php:96 +msgid "Grupo creado" +msgstr "Grupa została dodana" + +#: ../../../modules/api/Controllers/UserGroupController.php:127 +msgid "Grupo actualizado" +msgstr "Grupa została zaktualizowana" + +#: ../../../modules/api/Controllers/UserGroupController.php:156 +msgid "Grupo eliminado" +msgstr "Grupa została usunięta" + +#: ../../../modules/web/Controllers/AccountController.php:149 +#: ../../../modules/web/Controllers/AccountController.php:204 +#: ../../../modules/web/Controllers/AccountController.php:489 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:56 +msgid "Detalles de Cuenta" +msgstr "Szczegóły konta" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:261 +#: ../../../modules/web/Controllers/AccountController.php:307 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:275 +#: ../../../config/actions.xml:157 +msgid "Nueva Cuenta" +msgstr "Nowe konto" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:353 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 +#: ../../../config/actions.xml:163 +msgid "Editar Cuenta" +msgstr "Edytuj konto" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:400 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 +#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 +#: ../../../config/actions.xml:793 +#, fuzzy +msgid "Eliminar Cuenta" +msgstr "Usuń konto" + +#: ../../../modules/web/Controllers/AccountController.php:445 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 +msgid "Modificar Clave de Cuenta" +msgstr "Zmień hasło do konta" + +#: ../../../modules/web/Controllers/AccountFileController.php:211 +#, php-format +msgid "Extensión: %s" +msgstr "Extension: %s" + +#: ../../../modules/web/Controllers/AccountFileController.php:405 +msgid "Gestión de archivos deshabilitada" +msgstr "Zarządzanie plikami zostało zablokowane" + +#: ../../../modules/web/Controllers/AccountFileController.php:424 +msgid "No hay archivos asociados a la cuenta" +msgstr "There are no linked files for the account" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountManagerController.php:216 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 +#: ../../../config/actions.xml:493 +msgid "Actualización Masiva" +msgstr "Bulk Update" + +#: ../../../modules/web/Controllers/AuthTokenController.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 +msgid "Nueva Autorización" +msgstr "Nowe upoważnienie" + +#: ../../../modules/web/Controllers/AuthTokenController.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 +msgid "Editar Autorización" +msgstr "Edytuj upoważnienie" + +#: ../../../modules/web/Controllers/AuthTokenController.php:347 +msgid "Ver Autorización" +msgstr "Wyświetl upoważnienia" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:118 +#: ../../../config/actions.xml:307 +msgid "Nueva Categoría" +msgstr "Nowa kategoria" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 +#: ../../../config/actions.xml:313 +msgid "Editar Categoría" +msgstr "Edytuj kategorię" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:335 +#: ../../../config/actions.xml:301 +msgid "Ver Categoría" +msgstr "Pokaż szczegóły kategorii" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:93 +#: ../../../config/actions.xml:337 +#, fuzzy +msgid "Nuevo Cliente" +msgstr "Nowy klient" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:174 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 +#: ../../../config/actions.xml:343 +#, fuzzy +msgid "Editar Cliente" +msgstr "Edytuj klienta" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:326 +#: ../../../config/actions.xml:331 +#, fuzzy +msgid "Ver Cliente" +msgstr "Pokaż szczegóły klienta" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:153 +#: ../../../modules/web/Controllers/ConfigLdapController.php:197 +msgid "Resultados" +msgstr "Wyniki" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:159 +#: ../../../modules/web/Controllers/ConfigLdapController.php:204 +#, php-format +msgid "Objetos encontrados: %d" +msgstr "Znalezione obiekty: %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:279 +#, php-format +msgid "Usuarios importados: %d / %d" +msgstr "Imported users: %d / %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:280 +#, php-format +msgid "Errores: %d" +msgstr "Errors: %d" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:161 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 +msgid "General" +msgstr "Ogólne" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:190 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:29 +#: ../../../config/actions.xml:37 +msgid "Wiki" +msgstr "Wiki" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:209 +msgid "LDAP" +msgstr "LDAP" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:235 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:12 +msgid "Correo" +msgstr "Poczta" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:274 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 +msgid "Encriptación" +msgstr "Szyfrowanie" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:302 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:61 +#, fuzzy +msgid "No se encontraron backups" +msgstr "Brak dostępnych kopii bezpieczeństwa" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:312 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 +msgid "No se encontró archivo de exportación" +msgstr "Brak plików eksportu" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:315 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:78 +#: ../../../config/actions.xml:733 +msgid "Copia de Seguridad" +msgstr "Kopia zapasowa" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:332 msgid "Importar Cuentas" msgstr "Importuj konta" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:166 -#, fuzzy -msgid "Error importando cuenta" -msgstr "Błąd podczas importu konta" +#: ../../../modules/web/Controllers/ConfigManagerController.php:352 +msgid "No instalado" +msgstr "Not installed" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 -msgid "Campos Personalizados" -msgstr "Dodatkowe pola" +#: ../../../modules/web/Controllers/ConfigManagerController.php:357 +msgid "Información" +msgstr "Informacja" -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:76 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 -msgid "Actualizando datos encriptados" -msgstr "Aktualizacja zaszyfrowanych danych" +#: ../../../modules/web/Controllers/CustomFieldController.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 +msgid "Nuevo Campo" +msgstr "Nowe pole" -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:110 -#, fuzzy -msgid "Registros no actualizados" -msgstr "Brak zaktualizowanych rekordów" +#: ../../../modules/web/Controllers/CustomFieldController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 +msgid "Editar Campo" +msgstr "Edytuj pole" -#. (itstool) path: strings/text -#: ../../../config/strings.xml:8 -msgid "Texto" -msgstr "Tekst" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 -msgid "Fecha" -msgstr "Data" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:5 -msgid "Número" -msgstr "Numer" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 -msgid "Email" -msgstr "Email" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:6 -msgid "Teléfono" -msgstr "Telefon" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:9 -msgid "Link" -msgstr "Link" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:4 -msgid "Color" -msgstr "Kolor" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/ConfigBackupController.php:122 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 -msgid "Categorías" -msgstr "Kategorie" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/ConfigBackupController.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 -#, fuzzy -msgid "Clientes" -msgstr "Klienci" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 -msgid "Grupos" -msgstr "Grupy" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:62 -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:116 -#, fuzzy -msgid "Cliente duplicado" -msgstr "Duplikat wpisu klienta" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:80 -#, fuzzy -msgid "Error al crear el cliente" -msgstr "Błąd podczas tworzenia klienta" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:136 -#, fuzzy -msgid "Error al actualizar el cliente" -msgstr "Błąd podczas aktualizacji klienta" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 -msgid "Actualizar Cliente" -msgstr "Aktualizuj klienta" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:283 -#, fuzzy -msgid "Error al eliminar el cliente" -msgstr "Bład poczas usuwania klienta" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 -#: ../../../config/actions.xml:349 -#, fuzzy -msgid "Eliminar Cliente" -msgstr "Usuń klienta" - -#: ../../../../lib/SP/Services/Install/MySQL.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:97 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:117 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:164 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:176 -msgid "No es posible conectar con la BD" -msgstr "Nie udało połączyć się do bazy danych" - -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:166 -#, fuzzy -msgid "Compruebe los datos de conexión" -msgstr "Sprawdź parametry połączenia" - -#. Not available -#: ../../../../lib/SP/Core/Acl/Acl.php:294 -#: ../../../../lib/SP/Services/Auth/LoginService.php:600 -msgid "N/D" -msgstr "Nie dotyczy" - -#: ../../../../lib/SP/Core/Acl/Acl.php:300 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 -msgid "Acción" -msgstr "Akcja" - -#: ../../../../inc/SP/Log/Email.class.php:64 -msgid "Realizado por" -msgstr "Wykonana przez" - -#: ../../../../inc/SP/Log/Email.class.php:76 -#: ../../../../inc/SP/Log/Email.class.php:191 -msgid "Enviar Email" -msgstr "Wyślij email" - -#: ../../../../lib/SP/Services/Mail/MailService.php:141 -#: ../../../modules/web/Controllers/ConfigMailController.php:138 -#: ../../../modules/web/Controllers/ConfigMailController.php:144 -msgid "Correo enviado" -msgstr "Email został wysłany" - -#: ../../../../lib/SP/Services/Mail/MailService.php:81 -#: ../../../../lib/SP/Services/Mail/MailService.php:151 -#, fuzzy -msgid "Error al enviar correo" -msgstr "Błąd podczas wysyłania wiadomości email" - -#: ../../../../lib/SP/Services/Mail/MailService.php:142 -#: ../../../modules/web/Controllers/ConfigMailController.php:139 -msgid "Destinatario" -msgstr "Odbiorca" - -#: ../../../../inc/SP/Log/Email.class.php:85 -msgid "CC" -msgstr "CC" - -#: ../../../../lib/SP/Services/Import/FileImport.php:67 -#: ../../../../lib/SP/Services/Import/FileImport.php:88 -msgid "Archivo no subido correctamente" -msgstr "Plik został pomyslnie wysłany" - -#: ../../../../lib/SP/Services/Import/FileImport.php:69 -#: ../../../../lib/SP/Services/Import/FileImport.php:90 -#, fuzzy -msgid "Verifique los permisos del usuario del servidor web" -msgstr "Sprawdź uprawnienia użytkownika serwera www" - -#: ../../../../lib/SP/Services/Import/FileImport.php:102 -#, fuzzy -msgid "Compruebe la extensión del archivo" -msgstr "Sprawdź ustawienia rozszerzeń plików" - -#: ../../../../lib/SP/Services/Import/FileImport.php:118 -#, fuzzy -msgid "Compruebe la configuración de PHP para subir archivos" -msgstr "Sprawdź ustawienia PHP dla wysyłania plików" - -#: ../../../../lib/SP/Services/Import/FileImport.php:157 -#: ../../../../lib/SP/Services/Import/FileImport.php:183 -#, fuzzy -msgid "Compruebe los permisos del directorio temporal" -msgstr "Sprawdź uprawnienia dla folderu tymczasowego" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 -#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 -msgid "Eliminar Archivo" -msgstr "Usuń plik" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 -#: ../../../config/actions.xml:625 -msgid "Eliminar Grupo" -msgstr "Usuń grupę" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:108 -#, fuzzy -msgid "Error al eliminar los usuarios del grupo" -msgstr "Błąd podczas usuwania grup użytkowników" - -#: ../../../../lib/SP/Services/Import/ImportService.php:91 -#, fuzzy -msgid "Compruebe el formato del archivo" -msgstr "Sprawdź format pliku" - -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigLdapController.php:260 -msgid "Importación finalizada" -msgstr "Import został zakończony" - -#: ../../../modules/web/Controllers/ErrorController.php:123 -#, fuzzy -msgid "Error en la verificación de la base de datos" -msgstr "Błąd podczas sprawdzania bazy danych" - -#: ../../../../lib/SP/Core/Context/SessionContext.php:547 -msgid "La sesión no puede ser inicializada" -msgstr "Sesja nie może zostać zainicjalizowana" - -#: ../../../../lib/SP/Config/ConfigUtil.php:94 -msgid "El directorio \"/config\" no existe" -msgstr "Katalog \"config\" nie istnieje" - -#: ../../../../lib/SP/Config/ConfigUtil.php:100 -msgid "No es posible escribir en el directorio \"config\"" -msgstr "Nie można zapisywać do katalogu \"config\"" - -#: ../../../../lib/SP/Config/ConfigUtil.php:109 -#, fuzzy -msgid "Los permisos del directorio \"/config\" son incorrectos" -msgstr "Katalog \"config\" ma nieprawidłowe uprawnienia" +#: ../../../modules/web/Controllers/CustomFieldController.php:317 +msgid "Ver Campo" +msgstr "View Field" #: ../../../modules/web/Controllers/ErrorController.php:107 msgid "Aplicación en mantenimiento" @@ -2114,377 +993,1014 @@ msgstr "Aplikacja w trybie serwisowania" msgid "En breve estará operativa" msgstr "Wkrótce będzie dostępna" -#: ../../../modules/web/Controllers/LoginController.php:101 -msgid "Finalizar sesión" -msgstr "Wyloguj sesję" - -#: ../../../modules/web/Controllers/LoginController.php:103 -msgid "Tiempo inactivo" -msgstr "Czas nieaktywności" - -#: ../../../modules/web/Controllers/LoginController.php:104 -msgid "Tiempo total" -msgstr "Czas całkowity" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 -msgid "La aplicación necesita actualizarse" -msgstr "Aplikacja wymaga aktualizacji" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:43 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 -msgid "Actualizar" -msgstr "Aktualizuj" - -#: ../../../../lib/SP/Controller/MainActionController.php:91 -#: ../../../../lib/SP/Controller/MainActionController.php:148 -msgid "Actualización" -msgstr "Aktualizuj" - -#: ../../../../lib/SP/Controller/MainActionController.php:149 -msgid "Actualización de versión realizada." -msgstr "Aktualizacja wersji została zakończona" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:113 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:229 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:161 -#: ../../../modules/web/Controllers/ConfigBackupController.php:118 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 -msgid "Versión" -msgstr "Wersja" - -#: ../../../../lib/SP/Services/Install/Installer.php:106 +#: ../../../modules/web/Controllers/ErrorController.php:123 #, fuzzy -msgid "Indicar nombre de usuario admin" -msgstr "Nazwa administratora" +msgid "Error en la verificación de la base de datos" +msgstr "Błąd podczas sprawdzania bazy danych" -#: ../../../../lib/SP/Services/Install/Installer.php:108 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 +msgid "Ver Actual" +msgstr "Zobacz obecne" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:360 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:310 +#: ../../../modules/web/themes/material-blue/views/config/general.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:295 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:440 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:294 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:194 +msgid "Atrás" +msgstr "Powrót" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 +msgid "Solicitar Modificación" +msgstr "Żądanie modyfikacji" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 +msgid "Restaurar cuenta desde este punto" +msgstr "Przywróć konta z tego miejsca" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:130 +msgid "Guardar" +msgstr "Zapisz" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 +#: ../../../config/actions.xml:439 +msgid "Actualizar Enlace Público" +msgstr "Update Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 +#: ../../../config/actions.xml:433 +msgid "Eliminar Enlace Público" +msgstr "Delete Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 +#: ../../../config/actions.xml:421 +msgid "Crear Enlace Público" +msgstr "Stwórz publiczny link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 +#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 +msgid "Ver Clave" +msgstr "Pokaż hasło" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 +msgid "Copiar Clave en Portapapeles" +msgstr "Kopiuj hasło do schowka" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 +#: ../../../config/actions.xml:193 +msgid "Copiar Cuenta" +msgstr "Kopiuj konto" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 +#: ../../../config/strings.js.inc:72 +msgid "Clave de Cuenta" +msgstr "Hasło" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 +msgid "Más Acciones" +msgstr "Więcej akcji" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:59 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:34 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:40 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 #, fuzzy -msgid "Usuario admin para acceso a la aplicación" -msgstr "Użytkownik administracyjny do zalogowania się w aplikacji" +msgid "Cliente" +msgstr "Klient" -#: ../../../../lib/SP/Services/Install/Installer.php:113 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 #, fuzzy -msgid "Indicar la clave de admin" -msgstr "Podaj hasło administratora" +msgid "Ordenar por Cliente" +msgstr "Sortuj po kliencie" -#: ../../../../lib/SP/Services/Install/Installer.php:115 -msgid "Clave del usuario admin de la aplicación" -msgstr "Hasło administratora aplikacji" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:43 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:22 +msgid "Nombre" +msgstr "Imię" -#: ../../../../lib/SP/Services/Install/Installer.php:120 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 +msgid "Ordenar por Nombre" +msgstr "Sortuj po nazwie" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:72 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:45 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:51 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:105 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 +msgid "Categoría" +msgstr "Kategoria" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 +msgid "Ordenar por Categoría" +msgstr "Sortuj po kategorii" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:141 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:61 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:149 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:233 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:247 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:24 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:94 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:75 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:77 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 +msgid "Usuario" +msgstr "Użytkownik" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 +msgid "Ordenar por Usuario" +msgstr "Sortuj po nazwie użytkownika" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:56 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:62 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:128 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:79 +msgid "URL / IP" +msgstr "URL / IP" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 +msgid "Ordenar por URL / IP" +msgstr "Sortuj po URL / IP" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 +msgid "Eliminar Seleccionados" +msgstr "Usuń zaznaczone" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:158 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:42 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:44 +msgid "Propietario" +msgstr "Owner" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:175 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:50 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 +msgid "Grupo Principal" +msgstr "Główna grupa" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 +#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 +msgid "Buscar Cuenta" +msgstr "Szukaj konta" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 +msgid "Cuentas (H)" +msgstr "Konta (H)" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:122 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:55 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:38 +msgid "Fecha" +msgstr "Data" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:126 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 +msgid "Estado" +msgstr "Status" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +msgid "Modificada" +msgstr "Zmienione" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 +msgid "Eliminada" +msgstr "Usunięte" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 +#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 +msgid "Restaurar Cuenta" +msgstr "Odzyskaj konto" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 +msgid "Autorizaciones API" +msgstr "Poświadczenia API" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 +msgid "Acción" +msgstr "Akcja" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 +msgid "Buscar Token" +msgstr "Szukaj tokenu" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 +msgid "Ver token de Autorización" +msgstr "Pokaż token poświadczenia" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 +msgid "Eliminar Autorización" +msgstr "Usuń upowaznienie" + +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 +msgid "Descripción" +msgstr "Opis" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 +#: ../../../config/actions.xml:325 +msgid "Buscar Categoría" +msgstr "Szukaj kategorii" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 +#: ../../../config/actions.xml:319 +msgid "Eliminar Categoría" +msgstr "Usuń kategorię" + +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:66 +msgid "SI" +msgstr "Tak" + +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:67 +msgid "NO" +msgstr "Nie" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 +#: ../../../config/actions.xml:355 #, fuzzy -msgid "Indicar la clave maestra" -msgstr "Hasło główne" +msgid "Buscar Cliente" +msgstr "Szukaj klienta" -#: ../../../../lib/SP/Services/Install/Installer.php:122 +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 +#: ../../../config/actions.xml:349 #, fuzzy -msgid "Clave maestra para encriptar las claves" -msgstr "Hasło główne do szyfrowania" +msgid "Eliminar Cliente" +msgstr "Usuń klienta" -#: ../../../../lib/SP/Services/Install/Installer.php:127 -#, fuzzy -msgid "Clave maestra muy corta" -msgstr "Hasło główne jest zbyt krótkie" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 +msgid "Campos Personalizados" +msgstr "Dodatkowe pola" -#: ../../../../lib/SP/Services/Install/Installer.php:129 -msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" -msgstr "Hasło główne musi mieć przynajmniej 11 znaków" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 +msgid "Módulo" +msgstr "Moduł" -#: ../../../../lib/SP/Services/Install/Installer.php:134 -#, fuzzy -msgid "Indicar el usuario de la BBDD" -msgstr "Użytkownik bazy danych" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:30 +msgid "Tipo" +msgstr "Typ" -#: ../../../../lib/SP/Services/Install/Installer.php:136 -#, fuzzy -msgid "Usuario con permisos de administrador de la Base de Datos" -msgstr "Użytkownik bazy danych z uprawnieniami administracyjnymi" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:120 +msgid "Propiedades" +msgstr "Właściwości" -#: ../../../../lib/SP/Services/Install/Installer.php:148 -#, fuzzy -msgid "Indicar el nombre de la BBDD" -msgstr "Nazwa bazy danych" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 +msgid "Encriptado" +msgstr "Encrypted" -#: ../../../../lib/SP/Services/Install/Installer.php:150 -msgid "Nombre para la BBDD de la aplicación pej. syspass" -msgstr "Nazwa bazy danych aplikacji, np. syspass" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 +msgid "Buscar Campo" +msgstr "Szukaj pola" -#: ../../../../lib/SP/Services/Install/Installer.php:155 -msgid "El nombre de la BBDD no puede contener \".\"" -msgstr "Nazwa bazy danych nie może zawierać \".\"" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 +msgid "Eliminar Campo" +msgstr "Usuń pole" -#: ../../../../lib/SP/Services/Install/Installer.php:157 -msgid "Elimine los puntos del nombre de la Base de Datos" -msgstr "Usuń kropki z nazwy bazy danych" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 +#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 +#: ../../../config/actions.xml:133 +msgid "Registro de Eventos" +msgstr "Log" -#: ../../../../lib/SP/Services/Install/Installer.php:162 -#, fuzzy -msgid "Indicar el servidor de la BBDD" -msgstr "Podaj serwer bazy danych" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:99 +msgid "ID" +msgstr "ID" -#: ../../../../lib/SP/Services/Install/Installer.php:164 -msgid "Servidor donde se instalará la Base de Datos" -msgstr "Serwer na którym będzie zainstalowana baza danych" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 +msgid "Fecha / Hora" +msgstr "Data / czas" -#: ../../../../inc/SP/Core/Installer.class.php:238 -msgid "No es posible comprobar el usuario de sysPass" -msgstr "Brak możliwości sprawdzenia użytkownika sysPass" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 +msgid "Nivel" +msgstr "Poziom" -#: ../../../../lib/SP/Services/Install/MySQL.php:137 -msgid "Compruebe los permisos del usuario de conexión a la BD" -msgstr "Sprawdź prawa dostępu połączenia do bazy danych" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 +msgid "Evento" +msgstr "Zdarzenie" -#: ../../../../lib/SP/Services/Install/MySQL.php:201 -msgid "La BBDD ya existe" -msgstr "Baza danych już istnieje" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 +msgid "Login" +msgstr "Login" -#: ../../../../lib/SP/Services/Install/MySQL.php:203 -#, fuzzy -msgid "Indique una nueva Base de Datos o elimine la existente" -msgstr "Podaj inną bazę danych lub usuń istniejącą" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 +msgid "IP" +msgstr "IP" -#: ../../../../inc/SP/Core/Installer.class.php:316 -#: ../../../../inc/SP/Core/Installer.class.php:419 -#, fuzzy -msgid "Error al crear la BBDD" -msgstr "Błąd przy tworzeniu bazy danych" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 +msgid "Buscar Evento" +msgstr "Szukaj zdarzenia" -#: ../../../../lib/SP/Services/Install/MySQL.php:215 -#: ../../../../lib/SP/Services/Install/MySQL.php:239 -#, fuzzy -msgid "Verifique los permisos del usuario de la Base de Datos" -msgstr "Sprawdź prawa dostępu użytkownika bazy danych" - -#: ../../../../lib/SP/Services/Install/MySQL.php:305 -msgid "El archivo de estructura de la BBDD no existe" -msgstr "Struktura plików bazy danych nie istnieje" - -#: ../../../../lib/SP/Services/Install/MySQL.php:307 -msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." -msgstr "Błąd przy tworzeniu bazy danych. Proszę ściągnąć ponownie." - -#: ../../../../lib/SP/Services/Install/MySQL.php:290 -#, fuzzy -msgid "Error al seleccionar la BBDD" -msgstr "Błąd wyboru bazy danych." - -#: ../../../../lib/SP/Services/Install/MySQL.php:311 -msgid "" -"No es posible usar la Base de Datos para crear la estructura. Compruebe los " -"permisos y que no exista." -msgstr "Błąd tworzenia struktury w bazie danych. Sprawdź prawa dostępu." - -#: ../../../../lib/SP/Services/Install/MySQL.php:331 -msgid "Error al crear la estructura de la Base de Datos." -msgstr "Błąd przy tworzeniu struktury bazy danych" - -#: ../../../../lib/SP/Services/Install/Installer.php:318 -#: ../../../../lib/SP/Services/Install/Installer.php:369 -msgid "Informe al desarrollador" -msgstr "Zgłoś developerowi" - -#: ../../../../inc/SP/Core/Installer.class.php:484 -#, fuzzy -msgid "Error al actualizar la clave maestra del usuario \"admin\"" -msgstr "Błąd aktualizacji głównego hasła dla użytkownika \"admin\"" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:141 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:188 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:193 -msgid "No es posible conectar con el servidor de LDAP" -msgstr "Błąd połączenia z serwerem LDAP" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:231 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:237 -msgid "Error al conectar (BIND)" -msgstr "Błąd połączenia (BIND)" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:249 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:254 -msgid "Error al buscar objetos en DN base" -msgstr "Błąd wyszukiwania obiektów w bazowym DN" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:119 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:125 -#, fuzzy -msgid "Error al buscar RDN de grupo" -msgstr "Błąd podczas wyszukiwania grupy RDN" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:200 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:204 -#, fuzzy -msgid "Error al localizar el usuario en LDAP" -msgstr "Błąd podczas szukania użytkownika w LDAPie" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:139 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:120 -msgid "Error al buscar el grupo de usuarios" -msgstr "Błąd podczas szukania grupy użytkowników" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:109 -msgid "Usuario verificado en grupo" -msgstr "Użytkownik zweryfikowany w grupie" - -#: ../../../../inc/SP/Controller/EventlogController.class.php:102 -msgid "Vaciar Eventos" -msgstr "Wyczyść zdarzenia" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 +msgid "Refrescar" +msgstr "Refresh" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:199 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 #, fuzzy msgid "Vaciar registro de eventos" msgstr "Wyczyść dziennik zdarzeń" -#: ../../../../lib/SP/Services/Client/ClientService.php:76 -#: ../../../../lib/SP/Services/Client/ClientService.php:95 -#: ../../../../lib/SP/Services/Client/ClientService.php:110 -#, fuzzy -msgid "Cliente no encontrado" -msgstr "Nie znaleziono klienta" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:280 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 +#: ../../../config/actions.xml:19 +msgid "Archivos" +msgstr "Pliki" -#: ../../../../inc/SP/Mgmt/Users/User.class.php:246 -#, fuzzy -msgid "Error al obtener los usuarios" -msgstr "Błąd podczas przetwarzania użytkowników" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:25 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:30 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:23 +msgid "Cuenta" +msgstr "Konto" -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:52 -msgid "Migrar Perfiles" -msgstr "Migracja profili" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:82 -#, fuzzy -msgid "Error al obtener perfiles" -msgstr "Błąd podczas przetwarzania profili" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:144 -msgid "Operación realizada correctamente" -msgstr "Operacja zakończona sukcesem" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:149 -#, fuzzy -msgid "Fallo al realizar la operación" -msgstr "Błąd podczas wykonywania operacji" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:110 +msgid "Tamaño" +msgstr "Rozmiar" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 -#: ../../../config/actions.xml:655 -msgid "Eliminar Perfil" -msgstr "Usuń profil" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:119 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:68 -msgid "Formato de XML inválido" -msgstr "Nieprawidłowy format XML" - -#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:122 -msgid "No es posible obtener la plantilla \"%s\" : %s" -msgstr "Błąd przetwarzania \"%s\" szablonu: %s " - -#: ../../../../lib/SP/Mvc/View/Template.php:274 -#: ../../../../lib/SP/Mvc/View/Template.php:276 -msgid "No es posible obtener la variable \"%s\"" -msgstr "Błąd pobierania zmiennej \"%s\"" - -#: ../../../../lib/SP/Mvc/View/Template.php:322 -#: ../../../../lib/SP/Mvc/View/Template.php:324 -msgid "No es posible destruir la variable \"%s\"" -msgstr "Nie można usunąć zmiennej \"%s\"" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:175 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:179 -#, fuzzy -msgid "Error al aplicar la actualización de la Base de Datos" -msgstr "Błąd aktualizacji bazy danych" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:72 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:98 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:106 -msgid "Compruebe el registro de eventos para más detalles" -msgstr "Po więcej szczegółów zajrzyj do logu" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 -msgid "Acceder" -msgstr "Zaloguj się" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:96 -#, fuzzy -msgid "Error al aplicar la actualización auxiliar" -msgstr "Błąd podczas aktualizacji pomocniczej" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:89 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:120 -msgid "Actualizar BBDD" -msgstr "Aktualizacja bazy danych" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:155 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:159 -msgid "No es necesario actualizar la Base de Datos." -msgstr "Aktualizacja bazy danych jest zbędna" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 -msgid "Actualización de la Base de Datos realizada correctamente." -msgstr "Aktualizacja bazy danych zakończona sukcesem" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:70 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:202 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:228 -msgid "Actualizar Configuración" -msgstr "Aktualizacja konfiguracji" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:240 -msgid "No se pudo realizar la petición de cambio de clave." -msgstr "Nie można wykonać żądania zmiany hasła" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:145 +#: ../../../config/actions.xml:475 +msgid "Buscar Archivo" +msgstr "Szukaj pliku" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:51 +#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 +msgid "Ver Archivo" +msgstr "Pokaż plik" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:42 +#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 +msgid "Descargar Archivo" +msgstr "Pobierz plik" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:34 +#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 +msgid "Eliminar Archivo" +msgstr "Usuń plik" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 +msgid "Valores Predeterminados" +msgstr "Preset Values" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:274 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:277 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:233 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:148 +msgid "Grupo" +msgstr "Grupa" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:131 +msgid "Perfil" +msgstr "Profil" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 +msgid "Prioridad" +msgstr "Priority" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 +msgid "Forzado" +msgstr "Forced" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 +#: ../../../config/actions.xml:853 +msgid "Buscar Valor" +msgstr "Search for Value" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 +msgid "Valor de Permiso" +msgstr "Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 +msgid "Nuevo Valor de Permiso" +msgstr "New Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 +msgid "Valor de Cuenta Privada" +msgstr "Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 +msgid "Nuevo Valor de Cuenta Privada" +msgstr "New Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 +msgid "Valor de Timeout de Sesión" +msgstr "Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 +msgid "Nuevo Valor de Timeout de Sesión" +msgstr "New Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 +msgid "Valor de Clave de Cuentas" +msgstr "Account Password Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 +msgid "Nuevo Valor de Clave de Cuentas" +msgstr "New Account Password Preset" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: ../../../modules/web/Controllers/ItemPresetController.php:239 +#: ../../../config/actions.xml:871 +msgid "Editar Valor" +msgstr "Edit Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 +#: ../../../config/actions.xml:877 +msgid "Eliminar Valor" +msgstr "Delete Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 +#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 +#: ../../../config/actions.xml:679 +msgid "Notificaciones" +msgstr "Powiadomienia" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:42 +msgid "Componente" +msgstr "Komponent" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:111 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:115 +msgid "Leída" +msgstr "Read" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 +msgid "Sólo Admins" +msgstr "Only Admins" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:164 +#: ../../../config/actions.xml:841 +msgid "Buscar Notificación" +msgstr "Szukaj powiadomień" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:180 +#: ../../../modules/web/Controllers/NotificationController.php:194 +msgid "Nueva Notificación" +msgstr "Nowe powiadomienia" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:198 +#: ../../../modules/web/Controllers/NotificationController.php:113 +#: ../../../config/actions.xml:811 +msgid "Ver Notificación" +msgstr "Wyświetl powiadomienia" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:228 +#: ../../../config/actions.xml:835 +msgid "Marcar Notificación" +msgstr "Sprawdź powiadomienia" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:246 +#: ../../../modules/web/Controllers/NotificationController.php:226 +#: ../../../config/actions.xml:823 +msgid "Editar Notificación" +msgstr "Edit Notification" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:263 +#: ../../../config/actions.xml:829 +msgid "Eliminar Notificación" +msgstr "Usuń powiadomienia" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:331 +#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 +msgid "Plugins" +msgstr "Pluginy" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 +msgid "Plugin" +msgstr "Plugin" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 +msgid "No disponible" +msgstr "Unavailable" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 +#: ../../../config/actions.xml:547 +msgid "Buscar Plugin" +msgstr "Szukaj pluginów" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 +#: ../../../modules/web/Controllers/PluginController.php:136 +#: ../../../config/actions.xml:541 +msgid "Ver Plugin" +msgstr "Pokaż plugin" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 +msgid "Habilitar" +msgstr "Włącz" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 +msgid "Deshabilitar" +msgstr "Wyłącz" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 +msgid "Restablecer Datos" +msgstr "Resetuj dane" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:49 +msgid "Enlaces" +msgstr "Linki" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:51 +msgid "Fecha Creación" +msgstr "Data utworzenia" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:59 +msgid "Fecha Caducidad" +msgstr "Data wygaśnięcia" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:43 +msgid "Notificar" +msgstr "Notify" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:14 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:75 +msgid "Visitas" +msgstr "Wizyt" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:149 +msgid "Buscar Enlace" +msgstr "Szukaj linku" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:165 +msgid "Nuevo Enlace" +msgstr "New Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:183 +#: ../../../modules/web/Controllers/PublicLinkController.php:357 +msgid "Ver Enlace" +msgstr "Pokaż link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:199 +msgid "Renovar Enlace" +msgstr "Odśwież link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:216 +msgid "Eliminar Enlace" +msgstr "Usuń link" + +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:211 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 +msgid "Etiquetas" +msgstr "Tagi" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:135 +#: ../../../config/actions.xml:529 +msgid "Buscar Etiqueta" +msgstr "Szukaj tagu" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: ../../../modules/web/Controllers/TagController.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:226 +#: ../../../config/actions.xml:505 +msgid "Nueva Etiqueta" +msgstr "Nowy tag" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: ../../../modules/web/Controllers/TagController.php:168 +#: ../../../config/actions.xml:517 +msgid "Editar Etiqueta" +msgstr "Edytuj tag" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:186 +#: ../../../config/actions.xml:523 +msgid "Eliminar Etiqueta" +msgstr "Usuń tag" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 +msgid "Tracks" +msgstr "Tracks" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 +msgid "Fecha Desbloqueo" +msgstr "Date Unlocked" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 +msgid "Origen" +msgstr "Source" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 +#: ../../../config/actions.xml:889 +msgid "Buscar Track" +msgstr "Search for track" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:156 +#: ../../../config/actions.xml:601 +msgid "Buscar Usuario" +msgstr "Szukaj użytkownika" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:172 +#: ../../../modules/web/Controllers/UserController.php:115 +#: ../../../config/actions.xml:577 +msgid "Nuevo Usuario" +msgstr "Nowy użytkownik" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:190 +#: ../../../modules/web/Controllers/UserController.php:200 +#: ../../../config/actions.xml:583 +msgid "Editar Usuario" +msgstr "Edytuj użytkownika" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:207 #: ../../../config/actions.xml:589 msgid "Eliminar Usuario" msgstr "Usuń użytkownika" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:40 -msgid "Usuario de LDAP" -msgstr "Użytkownik LDAP" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:224 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:460 +msgid "Importar usuarios de LDAP" +msgstr "Import użytkowników z LDAPa" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:122 -msgid "Activación Cuenta" -msgstr "Aktywacja konta" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:242 +msgid "Ver Detalles de Usuario" +msgstr "Pokaż szczegóły użytkownika" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:123 -msgid "Su cuenta está pendiente de activación." -msgstr "Oczekujesz na aktywację konta" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:259 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 +msgid "Cambiar Clave de Usuario" +msgstr "Zmień hasło użytkownika" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:124 -msgid "En breve recibirá un email de confirmación." -msgstr "Powinieneś wkrótce otrzymać powiadomienie emailem" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 +#: ../../../config/actions.xml:631 +msgid "Buscar Grupo" +msgstr "Szukaj grupy" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:131 -msgid "Nuevo usuario de LDAP" -msgstr "Nowy użytkownik LDAP" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: ../../../modules/web/Controllers/UserGroupController.php:117 +#: ../../../config/actions.xml:613 +msgid "Nuevo Grupo" +msgstr "Nowa grupa" -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:152 -#, fuzzy -msgid "Error al migrar grupo del usuario" -msgstr "Błąd przy migracji grupy użytkowników" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: ../../../modules/web/Controllers/UserGroupController.php:344 +#: ../../../config/actions.xml:607 +msgid "Ver Grupo" +msgstr "Pokaż szczegóły grupy" -#: ../../../modules/web/Controllers/InstallController.php:62 -msgid "Versión de PHP requerida >= " -msgstr "Wymagana wersja PHP >=" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: ../../../modules/web/Controllers/UserGroupController.php:188 +#: ../../../config/actions.xml:619 +msgid "Editar Grupo" +msgstr "Edytuj grupę" -#: ../../../../lib/SP/Bootstrap.php:269 -msgid "" -"Actualice la versión de PHP para que la aplicación funcione correctamente" -msgstr "SysPass wymaga wyższej wersji PHP" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 +#: ../../../config/actions.xml:625 +msgid "Eliminar Grupo" +msgstr "Usuń grupę" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 +msgid "Perfiles" +msgstr "Profile" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 +#: ../../../config/actions.xml:661 +msgid "Buscar Perfil" +msgstr "Szukaj profilu" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: ../../../modules/web/Controllers/UserProfileController.php:110 +#: ../../../config/actions.xml:643 +msgid "Nuevo Perfil" +msgstr "Nowy profil" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 +msgid "Ver Detalles de Perfil" +msgstr "Pokaż szczegóły profilu" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: ../../../modules/web/Controllers/UserProfileController.php:177 +#: ../../../config/actions.xml:649 +msgid "Editar Perfil" +msgstr "Edytuj profil" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 +#: ../../../config/actions.xml:655 +msgid "Eliminar Perfil" +msgstr "Usuń profil" + +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:262 +msgid "Buscar" +msgstr "Szukaj" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:345 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 +#: ../../../config/actions.xml:685 +msgid "Configuración" +msgstr "Ustawienie" #: ../../../modules/web/Controllers/InstallController.php:59 msgid "Módulo no disponible" @@ -2494,30 +2010,57 @@ msgstr "Moduł niedostępny" msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Bez tego modułu aplikacja może działać nieprawidłowo" -#: ../../../../inc/SP/Core/XmlExport.class.php:133 -msgid "Exportar XML" -msgstr "Eksport XML" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:73 +#: ../../../config/actions.xml:859 +msgid "Ver Valor" +msgstr "Display Value" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:545 -#, fuzzy -msgid "Error al crear el archivo XML" -msgstr "Błąd tworzenia pliku XML" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:207 +#: ../../../config/actions.xml:865 +msgid "Nuevo Valor" +msgstr "New Value" -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:110 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:81 -#, fuzzy -msgid "No es posible procesar el archivo XML" -msgstr "Błąd przetwarzania pliku XML" +#: ../../../modules/web/Controllers/ItemsController.php:130 +msgid "No hay no hay notificaciones pendientes" +msgstr "There aren't any pending notifications" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:105 -msgid "Archivo XML no soportado" -msgstr "Niewspierany plik XML" +#: ../../../modules/web/Controllers/ItemsController.php:131 +#, php-format +msgid "Hay notificaciones pendientes: %d" +msgstr "There are pending notifications: %d" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:107 -msgid "No es posible detectar la aplicación que exportó los datos" -msgstr "Nieznana aplikacja źródłowa eksportu" +#: ../../../modules/web/Controllers/PublicLinkController.php:114 +msgid "Nuevo Enlace Público" +msgstr "New Public Link" + +#: ../../../modules/web/Controllers/PublicLinkController.php:204 +msgid "Editar Enlace Público" +msgstr "Edit Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/TagController.php:302 +#: ../../../config/actions.xml:511 +msgid "Ver Etiqueta" +msgstr "View Tag" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserController.php:458 +#: ../../../config/actions.xml:571 +msgid "Ver Usuario" +msgstr "Pokaż szczegóły użytkownika" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserProfileController.php:326 +#: ../../../config/actions.xml:637 +msgid "Ver Perfil" +msgstr "Pokaż szczegóły profilu" + +#: ../../../modules/web/Controllers/UserSettingsManagerController.php:87 +msgid "Preferencias" +msgstr "Ustawienia" -#: ../../../../lib/SP/Storage/Database/QueryData.php:354 #: ../../../config/strings.js.inc:26 msgid "Error en la consulta" msgstr "Błąd zapytania" @@ -2571,12 +2114,11 @@ msgid "Borrar elemento?" msgstr "Usunąć element?" #: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:31 msgid "Página no encontrada" msgstr "Nie znaleziono strony" -#: ../../../modules/web/Controllers/AccountFileController.php:108 #: ../../../config/strings.js.inc:40 msgid "Archivo no soportado para visualizar" msgstr "Brak możliwości podglądu pliku" @@ -2597,54 +2139,58 @@ msgstr "Za dużo plików" msgid "Tamaño de archivo no permitido" msgstr "Zły rozmiar pliku" +#: ../../../config/strings.js.inc:45 +msgid "Extensión no permitida" +msgstr "Niedozwolone rozszerzenie pliku" + #: ../../../config/strings.js.inc:46 #, fuzzy msgid "Vaciar el registro de eventos?" msgstr "Wyczyścić log?" #: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:281 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:253 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:152 msgid "Seleccionar Grupo" msgstr "Wybierz grupę" #: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:81 msgid "Seleccionar Usuario" msgstr "Wybierz użytkownika" #: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:135 msgid "Seleccionar Perfil" msgstr "Wybierz profil" #: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:84 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 #, fuzzy msgid "Seleccionar Cliente" msgstr "Wybierz klienta" #: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:41 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 msgid "Seleccionar Categoría" msgstr "Wybierz kategorię" @@ -2677,54 +2223,44 @@ msgid "Mostrar Clave" msgstr "Pokaż hasło" #: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:24 msgid "Copiar Usuario" msgstr "Kopiuj nazwę użytkownika" #. (itstool) path: action/text #: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:41 #: ../../../config/actions.xml:199 ../../../config/actions.xml:271 msgid "Copiar Clave" msgstr "Kopiuj hasło" #: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 msgid "Incluir Números" msgstr "Użyj liczb" #: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 msgid "Incluir Mayúsculas" msgstr "Użyj wielkich liter" #: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 #, fuzzy msgid "Incluir Símbolos" msgstr "Użyj symboli" #: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 msgid "Longitud" msgstr "Długość" #: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 msgid "Seleccionar Acción" msgstr "Wybierz akcję" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:66 -msgid "SI" -msgstr "Tak" - -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:67 -msgid "NO" -msgstr "Nie" - #: ../../../config/strings.js.inc:68 msgid "Aceptar" msgstr "Akceptuję" @@ -2741,477 +2277,725 @@ msgstr "Hasło skopiowane do schowka" msgid "Error al copiar al portapapeles" msgstr "Błąd podczas kopiowania do schowka" -#: ../../../modules/web/Controllers/AccountController.php:149 -#: ../../../modules/web/Controllers/AccountController.php:204 -#: ../../../modules/web/Controllers/AccountController.php:474 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 -msgid "Detalles de Cuenta" -msgstr "Szczegóły konta" - -#: ../../../modules/web/Controllers/AccountController.php:432 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 -msgid "Modificar Clave de Cuenta" -msgstr "Zmień hasło do konta" - -#: ../../../../lib/SP/Plugin/PluginManager.php:246 -#: ../../../modules/api/Controllers/AccountController.php:71 -#: ../../../modules/api/Controllers/AccountController.php:103 -#: ../../../modules/api/Controllers/AccountController.php:139 -#: ../../../modules/api/Controllers/AccountController.php:185 -#: ../../../modules/api/Controllers/AccountController.php:235 -#: ../../../modules/api/Controllers/AccountController.php:310 -#: ../../../modules/api/Controllers/CategoryController.php:63 -#: ../../../modules/api/Controllers/CategoryController.php:92 -#: ../../../modules/api/Controllers/CategoryController.php:122 -#: ../../../modules/api/Controllers/CategoryController.php:151 -#: ../../../modules/api/Controllers/ClientController.php:64 -#: ../../../modules/api/Controllers/ClientController.php:94 -#: ../../../modules/api/Controllers/ClientController.php:125 -#: ../../../modules/api/Controllers/ClientController.php:154 -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:90 -#: ../../../modules/api/Controllers/TagController.php:119 -#: ../../../modules/api/Controllers/TagController.php:148 -#: ../../../modules/api/Controllers/UserGroupController.php:62 -#: ../../../modules/api/Controllers/UserGroupController.php:92 -#: ../../../modules/api/Controllers/UserGroupController.php:123 -#: ../../../modules/api/Controllers/UserGroupController.php:152 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/Controllers/UserGroupController.php:265 -#: ../../../modules/web/Controllers/UserGroupController.php:304 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 -msgid "Nombre" -msgstr "Imię" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 -msgid "Módulo" -msgstr "Moduł" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 -msgid "Eliminar Campo" -msgstr "Usuń pole" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Ostatania kopia bezpieczeństwa" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 +#: ../../../config/strings.js.inc:73 #, fuzzy -msgid "No se encontraron backups" -msgstr "Brak dostępnych kopii bezpieczeństwa" +msgid "Recibir notificaciones?" +msgstr "Wysyłaj powiadomienia?" -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "Última exportación" -msgstr "Ostani eksport" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "No se encontró archivo de exportación" -msgstr "Brak plików eksportu" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:63 -msgid "Información" -msgstr "Informacja" - -#: ../../../modules/web/Controllers/EventlogController.php:119 -#: ../../../modules/web/Controllers/EventlogController.php:122 -msgid "Registro de eventos vaciado" -msgstr "Log wyczyszczony" - -#: ../../../../lib/SP/Repositories/EventLog/EventlogRepository.php:53 -#, fuzzy -msgid "Error al vaciar el registro de eventos" -msgstr "Błąd przy czyszczeniu logu" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 -msgid "Admin Aplicación" -msgstr "Administrator aplikacji" - -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:265 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:58 -msgid "Buscar" -msgstr "Szukaj" +#: ../../../config/strings.js.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:158 +msgid "Marcar Favorito" +msgstr "Oznacz jako ulubione" #. (itstool) path: action/text -#: ../../../config/actions.xml:103 -msgid "Usuarios y Accesos" -msgstr "Użytkownicy i dostęp" +#: ../../../config/strings.js.inc:75 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:148 +#: ../../../config/actions.xml:253 +msgid "Eliminar Favorito" +msgstr "Usuń ulubione" -#. (itstool) path: action/text -#: ../../../config/actions.xml:43 -msgid "Elementos y Personalización" -msgstr "Elementy i kustomizacje" +#: ../../../config/strings.js.inc:76 +msgid "Limpiar Selección" +msgstr "Usuń zaznaczenie" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 -#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 -#: ../../../config/actions.xml:133 -msgid "Registro de Eventos" -msgstr "Log" +#: ../../../config/strings.js.inc:77 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:78 +msgid "Mostrar Favoritos" +msgstr "Pokaż ulubione" -#: ../../../modules/web/Controllers/InstallController.php:82 -msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" -msgstr "Ta wersja PHP jest podatna na atak NULL Byte (CVE-2006-7243)" +#: ../../../config/strings.js.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:72 +msgid "Mostrar Todos" +msgstr "Pokaż wszystkie" -#: ../../../modules/web/Controllers/InstallController.php:83 -msgid "Actualice la versión de PHP para usar sysPass de forma segura" -msgstr "Zaktualizuj PHP aby zapewnić bezpieczne używanie sysPass" +#: ../../../config/strings.js.inc:79 +msgid "Ayuda" +msgstr "Pomoc" -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "No se encuentra el generador de números aleatorios." -msgstr "Nie znaleziono generatora liczb losowych" +#: ../../../config/strings.js.inc:80 +msgid "Sin cambios" +msgstr "Brak zmian" -#: ../../../modules/web/Controllers/InstallController.php:90 +#: ../../../config/strings.js.inc:81 +msgid "Ahora" +msgstr "Teraz" + +#: ../../../config/strings.js.inc:82 msgid "" -"Sin esta función un atacante puede utilizar su cuenta al resetear la clave" -msgstr "" -"Bez tej funkcji, atakujący może użyć twojego konta do zresetowania hasła" +"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" +msgstr "Ten proces importuje wykrytych użytkowników LDAP. Chcesz kontynuować?" -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "Instalación finalizada" -msgstr "Instalacja zakończona" +#: ../../../config/strings.js.inc:83 +msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" +msgstr "Ta akcja resetuje wszystkie dane pluginu. Chcesz kontynuować?" -#: ../../../../inc/SP/Controller/MainController.class.php:492 -msgid "Descargar nueva versión" -msgstr "Pobierz nową wersję" +#: ../../../config/strings.js.inc:84 +msgid "Este proceso puede durar algo de tiempo. Desea continuar?" +msgstr "This process could long some time. Do you wish to continue?" + +#: ../../../config/strings.js.inc:85 +msgid "Aviso" +msgstr "Ostrzeżenie" + +#: ../../../config/strings.js.inc:87 +msgid "" +"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." +msgstr "Performing task. Please, do not close the browser window/tab." + +#: ../../../config/strings.js.inc:88 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 +msgid "Incluir Letras" +msgstr "Include Letters" + +#: ../../../config/strings.js.inc:89 +msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." +msgstr "Cookies disabled. The application won't work properly." + +#: ../../../config/strings.js.inc:90 +msgid "Portapapeles no soportado por el navegador." +msgstr "Clipboard not supported by your browser." + +#: ../../../config/strings.js.inc:91 +msgid "Realizando auto-login" +msgstr "Performing auto-login" + +#: ../../../config/strings.js.inc:92 +msgid "Hay una versión más reciente del plugin {0} ({1})" +msgstr "There is a more recent version of {0} plugin ({1})" + +#: ../../../config/strings.js.inc:93 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:30 +msgid "Actualizado" +msgstr "Zaktualizowano" + +#: ../../../config/strings.js.inc:94 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:36 +msgid "Error al comprobar actualizaciones" +msgstr "Błąd sprawdzania akutalizacji" #: ../../../config/strings.js.inc:95 msgid "Avisos de sysPass" msgstr "Komunikaty sysPass" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 +#: ../../../config/strings.js.inc:96 +msgid "Vaciar los tracks?" +msgstr "Clear tracks out?" + +#: ../../../config/strings.js.inc:97 +msgid "Archivo descargado" +msgstr "File downloaded" + +#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:21 #, fuzzy -msgid "Ordenar por Cliente" -msgstr "Sortuj po kliencie" +msgid "Javascript es necesario para el correcto funcionamiento" +msgstr "JavaSript jest wymagany do prawidłowego funkcjonowania" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 -msgid "Ordenar por Nombre" -msgstr "Sortuj po nazwie" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 -msgid "Ordenar por Categoría" -msgstr "Sortuj po kategorii" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 -msgid "Ordenar por Usuario" -msgstr "Sortuj po nazwie użytkownika" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 -msgid "Ordenar por URL / IP" -msgstr "Sortuj po URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 -msgid "URL / IP" -msgstr "URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 -msgid "Propiedades" -msgstr "Właściwości" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 -#, fuzzy -msgid "Admin Cuentas" -msgstr "Konto Admina" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:41 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 -msgid "Deshabilitado" -msgstr "Wyłączone" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 -msgid "Ver Detalles de Usuario" -msgstr "Pokaż szczegóły użytkownika" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:62 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:120 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:126 -msgid "Cambiar Clave de Usuario" -msgstr "Zmień hasło użytkownika" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 -msgid "Ver Detalles de Perfil" -msgstr "Pokaż szczegóły profilu" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 -msgid "Ver token de Autorización" -msgstr "Pokaż token poświadczenia" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:409 -msgid "Token de autorización visualizado" -msgstr "Token poświadczenia wyświetlony" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:407 -msgid "Autorizaciones" -msgstr "Poświadczenia" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 -msgid "Seguridad" -msgstr "Bezpieczeństwo" - -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:89 -msgid "Preferencias" -msgstr "Ustawienia" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 -msgid "Nombre de cuenta" -msgstr "Nazwa konta" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 -msgid "URL o IP de acceso" -msgstr "URL dostępowy lub IP" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 -msgid "Usuario de acceso" -msgstr "Użytkownik" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 -msgid "Clave (repetir)" -msgstr "Hasło (powtórz)" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 -msgid "Notas" -msgstr "Notatki" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 -msgid "Notas sobre la cuenta" -msgstr "Informacje o koncie" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 -msgid "Permisos" -msgstr "Prawa" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:53 -msgid "Hablitar edición" -msgstr "Włącz edycję" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 -msgid "Grupo Principal" -msgstr "Główna grupa" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Soltar archivos aquí (max. 5) o click para seleccionar" -msgstr "Upuść pliki tutaj (maks. 5) albo kliknij by wybrać" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 -msgid "Tamaño máximo de archivo" -msgstr "Maksymalny rozmiar pliku" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 -msgid "Historial" -msgstr "Historia" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 -msgid "Seleccionar fecha" -msgstr "Wybierz datę" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 -msgid "Última Modificación" -msgstr "Ostania modyfikacja" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 -msgid "Visitas" -msgstr "Wizyt" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 -msgid "Fecha Alta" -msgstr "Data dodania" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 -msgid "Creador" -msgstr "Autor" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Usuarios Secundarios" -msgstr "Secondary Users" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 -msgid "Grupos Secundarios" -msgstr "Secondary Groups" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Fecha Edición" -msgstr "Data modyfikacji" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 -msgid "Editor" -msgstr "Edytor" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 -msgid "Restaurar cuenta desde este punto" -msgstr "Przywróć konta z tego miejsca" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 -msgid "Copiar Clave en Portapapeles" -msgstr "Kopiuj hasło do schowka" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 -msgid "Ver Actual" -msgstr "Zobacz obecne" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:49 #: ../../../modules/web/themes/material-blue/views/_partials/error.inc:14 #: ../../../modules/web/themes/material-blue/views/_partials/error.inc:15 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 msgid "Volver" msgstr "Wstecz" -#: ../../../../inc/themes/material-blue/views/account/actions.inc:146 -msgid "Modificar Cuenta" -msgstr "Edytuj konto" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 +msgid "Preferencias de usuario" +msgstr "Ustawienia użytkownika" -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 -msgid "Solicitar Modificación" -msgstr "Żądanie modyfikacji" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 +msgid "Salir" +msgstr "Wyloguj" -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:51 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 -msgid "Guardar" -msgstr "Zapisz" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:53 +msgid "Demo" +msgstr "Demo" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 +#, fuzzy +msgid "Indica si la conexión utiliza HTTPS." +msgstr "Informuje czy połączenie używa HTTPS" + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 +msgid "" +"Las claves de formularios enviados se encriptan mediante PKI, el resto de " +"datos no." +msgstr "" +"Hasła wysyłane przez formularze są zaszyfrowane przez PKI, pozostałe dane " +"nie są." + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:66 +msgid "Ayuda :: FAQ :: Changelog" +msgstr "Pomoc :: FAQ :: Lista zmian" + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:70 +msgid "Un proyecto de cygnux.org" +msgstr "Projekt cygnux.org" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 +msgid "Parámetros especiales" +msgstr "Special parameters" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 +msgid "" +"Es posible utilizar uno o varios parámetros especiales separados por espacios" +msgstr "" +"You could use either one or several special parameters separated by blank " +"spaces" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 +msgid "Buscar cuentas a las que 'login' tenga acceso" +msgstr "Search for accounts which 'login' has access rights" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 +msgid "Devolver las cuentas en las que 'login' es propietario" +msgstr "Get the accounts in which the user login \"login\" is the owner" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 +msgid "Buscar cuentas a las que 'group_name' tenga acceso" +msgstr "Search for accounts which 'group_name' has access rights" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 +msgid "Devolver las cuentas con grupo principal 'group_name'" +msgstr "Get the accounts which have the main group name \"group_name\"" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 +msgid "Buscar cuentas con archivos con el nombre 'file_name'" +msgstr "Search for accounts which contains a file with the name 'file_name'" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 +msgid "Buscar cuentas por nombre de cliente" +msgstr "Search for accounts by client name" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 +msgid "Buscar cuentas por nombre de categoría" +msgstr "Search for accounts by category name" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 +msgid "Devolver la cuenta con ID" +msgstr "Returns the account for the given ID" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 +msgid "Buscar cuentas con la clave caducada" +msgstr "Szukaj kont z wygasłym hasłem" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 +msgid "Devolver las cuentas privadas del usuario actual" +msgstr "Get the private accounts for the current user" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 +msgid "Operador para los parámetros especiales" +msgstr "Operator for special parameters" + +#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:17 +msgid "No se encontraron registros" +msgstr "Nie znaleziono wpisów" + +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:168 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:38 +msgid "Clave (repetir)" +msgstr "Hasło (powtórz)" + +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 +msgid "Seleccionar Fecha" +msgstr "Wybierz datę" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:19 +msgid "Histórico" +msgstr "Historia" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:22 +msgid "Detalles" +msgstr "Szczegóły" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:127 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:200 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:169 +msgid "Notas" +msgstr "Notatki" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:140 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:142 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:271 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:273 +msgid "Historial" +msgstr "Historia" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:278 +msgid "Seleccionar fecha" +msgstr "Wybierz datę" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:160 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 +msgid "Última Modificación" +msgstr "Ostania modyfikacja" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:23 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:57 +msgid "Seleccionar Usuarios" +msgstr "Wybierz użytkowników" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 +msgid "Ver" +msgstr "Pokaż" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:132 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:136 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 +msgid "Editar" +msgstr "Edycja" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 +msgid "Seleccionar Grupos" +msgstr "Wybierz grupy" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 +msgid "Privada" +msgstr "Prywatne" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:223 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 +msgid "Privada Grupo" +msgstr "Private for Group" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:15 +msgid "Solicitar Modificación de Cuenta" +msgstr "Żądaj zmiany konta" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 +msgid "Petición" +msgstr "Żądanie" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:52 +#, fuzzy +msgid "Descripción de la petición" +msgstr "Wymagaj opisu" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:74 +msgid "Enviar" +msgstr "Wyślij" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 +msgid "Permisos" +msgstr "Prawa" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:218 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 +msgid "Seleccionar Etiquetas" +msgstr "Wybierz tagi" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:26 +msgid "Seleccionar Cuenta" +msgstr "Wybierz konto" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:191 +msgid "Enlace Público" +msgstr "Publiczny link" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:314 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:316 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:319 +msgid "Enlace Directo" +msgstr "Direct Link" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:24 +msgid "Fecha Alta" +msgstr "Data dodania" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:60 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:62 +msgid "Fecha Edición" +msgstr "Data modyfikacji" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:70 +msgid "Editor" +msgstr "Edytor" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 +msgid "Fecha de Clave" +msgstr "Password Date" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:37 +msgid "Soltar archivos aquí (max. 5) o click para seleccionar" +msgstr "Upuść pliki tutaj (maks. 5) albo kliknij by wybrać" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:39 +#, php-format +msgid "Tamaño máximo de archivo: %d MB" +msgstr "Maksymalny rozmiar pliku: %d MB" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:35 +msgid "Buscar en Wiki" +msgstr "Wyszukaj na Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:82 +#, php-format +msgid "Abrir enlace a: %s" +msgstr "Open link to: %s" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:109 +msgid "Clave Caducada" +msgstr "Hasło wygasło" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:123 +msgid "Cuenta Privada (Grupo)" +msgstr "Private Account (Group)" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:166 +msgid "Notes" +msgstr "Notes" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 +msgid "Archivos adjuntos" +msgstr "Załącznik" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:218 +msgid "Enlace a Wiki" +msgstr "Link na Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:210 +msgid "Ver en Wiki" +msgstr "Zobacz w Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 +#, fuzzy +msgid "Búsqueda global" +msgstr "Globalne wyszukiwanie" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:83 +msgid "Filtrar Favoritos" +msgstr "Filtruj ulubione" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:98 +msgid "Cuentas por página" +msgstr "Kont na stronę" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:104 +msgid "Más Filtros" +msgstr "Więcej filtrów" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:109 +msgid "Seleccionar Etiqueta" +msgstr "Wybierz tag" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:22 +msgid "Los datos serán encriptados al guardar" +msgstr "Data will be encrypted after saving" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:27 +msgid "Los datos serán desencriptados al guardar" +msgstr "Data will be unencrypted after saving" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:12 +#, php-format +msgid "La extensión '%s' no está disponible" +msgstr "The '%s' extension is unavailable" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:16 +msgid "Esta extensión es necesaria para mostrar las claves como imágenes" +msgstr "This extension is needed to display passwords as images" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:30 +msgid "Búsqueda" +msgstr "Searching" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:36 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:56 +msgid "Resultados por página" +msgstr "Wyników na stronę" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:41 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:61 +msgid "Número de resultados por página a mostrar, al realizar una búsqueda." +msgstr "Liczba wyników na strone przy wyszukiwaniu" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:52 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:72 +msgid "Número de resultados por página" +msgstr "Wyników na stronie" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 +msgid "Caducidad clave cuentas" +msgstr "Accounts password expiry" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:71 +msgid "Habilita la caducidad de la clave de cuentas." +msgstr "Enables the accounts password expiry date." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:79 +msgid "Tiempo caducidad clave" +msgstr "Password expiry time" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:84 +msgid "Número de días para la caducidad de la clave de cuenta." +msgstr "Number of days for the account expiry date." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 +msgid "Tiempo caducidad (días)" +msgstr "Expire time (days)" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:112 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:90 +msgid "Nombre de cuenta como enlace" +msgstr "Nazwa konta jako link" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:113 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:92 +msgid "" +"Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " +"de la cuenta." +msgstr "Ustawia nazwę konta jako link do szczegółów." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:128 +msgid "Búsquedas globales" +msgstr "Globalne wyszukiwania" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:129 +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 "" +"Pozwala na wyszukiwanie wszyskich kont. Jeśli użytkownik nie ma odpowiednich " +"praw to nadal nie będzie mógł wyświetlić szczegółów." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:144 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 +msgid "Imagen para mostrar clave" +msgstr "Pokaż hasło w obrazku" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 +msgid "Generar una imagen con el texto de la clave de la cuenta." +msgstr "Generuj obrazek z hasłem." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 +msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." +msgstr "" +"Przydatne w środowiskach w których kopiowanie haseł do schowka jest " +"naruszeniem bezpieczeństwa." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:164 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:158 +msgid "Resultados en Tarjetas" +msgstr "Wyniki w formie kart" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:166 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:160 +#, fuzzy +msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." +msgstr "Włącza pokazywanie wyników wyszukiwania w formie kart." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:182 +msgid "Acceso Grupos Secundarios" +msgstr "Secondary Groups Access" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:184 +msgid "" +"Habilita el acceso a los usuarios que estén incluidos en los grupos " +"secundarios." +msgstr "Grants access to the users that are included in the secondary groups." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:186 +msgid "" +"Por defecto el usuario de un grupo secundario es permitido si el grupo " +"secundario está establecido como el primario del usuario." +msgstr "" +"By default, the user in a secondary group is granted if the secondary group " +"is set as the user's main group." + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:197 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 +#: ../../../config/actions.xml:73 +msgid "Enlaces Públicos" +msgstr "Linki publiczne" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:215 +msgid "Habilitar Enlaces Públicos" +msgstr "Włącz publiczne linki" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:217 +msgid "" +"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " +"una cuenta." +msgstr "" +"Enables the ability to create public links to view an account's details" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:219 +msgid "" +"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." +msgstr "Podlinkowane konta będą widoczne dla wszystkich posiadających link." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:221 +msgid "" +"Para crear enlaces, los usuarios tienen que tener activada la opción en su " +"perfl." +msgstr "" +"Aby tworzyć linki, użytkownicy muszą aktywować ustawienie w swoich profilach." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:237 +msgid "Usar imagen para clave" +msgstr "Używaj obrazków dla haseł" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:239 +msgid "La clave de la cuenta es visualizada como una imagen." +msgstr "Hasło jest wyświetlone jako obrazek" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:248 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:257 +msgid "Tiempo de caducidad" +msgstr "Czas wygaśnięcia" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:263 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:272 +msgid "Número máximo de visitas" +msgstr "Maksymalna ilość wyświetleń" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:298 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 +msgid "Gestión de archivos" +msgstr "Zarządzanie plikami" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:299 +#, fuzzy +msgid "Habilita la subida/descarga de archivos para las cuentas." +msgstr "Włącza wysyłanie/pobieranie plików dla konta" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:307 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:320 +msgid "Extensiones de archivos permitidas" +msgstr "Dozwolone rozszerzenia plików" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 +msgid "Extensiones permitidas para la subida de archivos." +msgstr "Dozwolone rozszerzenia uploadowanych plików" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:315 +msgid "" +"Escribir extensión y pulsar intro para añadir. Es necesario guardar la " +"configuración." +msgstr "" +"Podaj rozszerzenie i wciśnij enter aby dodać. Pamiętaj aby zapisać " +"konfigurację." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:328 +msgid "Tamaño máximo de archivo" +msgstr "Maksymalny rozmiar pliku" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:333 +msgid "Establece el tamaño máximo para subir archivos." +msgstr "Ustaw maksymalny rozmiar uploadowanych plików." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:337 +msgid "El máximo absuluto es de 16MB." +msgstr "Absolutne maksimum to 16MB." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:348 +msgid "Tamaño máximo de archivo en kilobytes" +msgstr "Maximum file size in kilobytes" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:16 +msgid "" +"Esta extensión es necesaria para generar los archivos de copia de seguridad " +"de la aplicación" +msgstr "This extension is needed to build the application's backup files" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 msgid "Resultado" msgstr "Wynik" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:123 msgid "Descargar Actual" msgstr "Pobierz obecne" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 -#, fuzzy -msgid "No hay backups para descargar" -msgstr "Brak kopii bezpieczeństwa do pobrania" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:51 +msgid "Copia BBDD" +msgstr "Kopia bezpieczeństwa bazy danych" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:52 -#: ../../../config/strings.js.inc:79 -msgid "Ayuda" -msgstr "Pomoc" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:58 +msgid "Copia sysPass" +msgstr "Kopia bezpieczeństwa sysPass" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:80 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." @@ -3219,7 +3003,7 @@ msgstr "" "Kopia bezpieczeństwa pozwala na pobranie bazy danych sysPassa albo plików " "aplikacyjnych oraz konfiguracji" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:82 #, fuzzy msgid "" "Con este método es posible guardar todos los datos de sysPass en otro lugar " @@ -3228,27 +3012,22 @@ msgstr "" "Ten sposób pozwala zapisać wszystkie dane sysPassa w innym miejscu albo użyć " "w aplikacji przenośnej." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:185 msgid "Exportar Cuentas" msgstr "Eksport kont" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -#, fuzzy -msgid "No hay archivos XML para descargar" -msgstr "Brak plików do pobrania" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:139 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:147 msgid "Clave de Exportación" msgstr "Hasło eksportu" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:161 msgid "Clave de Exportación (repetir)" msgstr "Hasło eksportu (ponownie)" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:187 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." @@ -3256,7 +3035,11 @@ msgstr "" "Eksport kont pozwala na zapisanie danych kont w formacie XML do dalszego " "importu w innych instancjach sysPass." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:189 +msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." +msgstr "The exported items are accounts, clients, categories and tags." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:191 #, fuzzy msgid "" "Las claves de las cuentas son exportadas de forma encriptada para mayor " @@ -3264,7 +3047,7 @@ msgid "" msgstr "" "Hasła kont są eksportowane w zaszyfrowany sposób dla większego bezpieczeństwa" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:193 msgid "" "Es posible establecer una clave de exportación para guardar todos los datos " "encriptados en el archivo XML." @@ -3272,305 +3055,82 @@ msgstr "" "Istnieje możliwość ustawienia hasła eksportu by zapisać zaszyfrowane dane w " "pliku XML." -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 -#, fuzzy -msgid "Javascript es necesario para el correcto funcionamiento" -msgstr "JavaSript jest wymagany do prawidłowego funkcjonowania" - -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 -msgid "Nombre de la categoría" -msgstr "Nazwa kategorii" - -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 -msgid "Descripción de la categoría" -msgstr "Opis kategorii" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 -msgid "Sitio" -msgstr "Strona" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 -msgid "Idioma" -msgstr "Język" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 -msgid "" -"Establece el idioma global de la aplicación. Es posible establecer un idioma " -"por usuario en las preferencias." -msgstr "" -"Ustaw globalny język aplikacji. Możesz nadpisać język w ustawieniach " -"użytkownika." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 -msgid "Tema Visual" -msgstr "Theme" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 -#, fuzzy -msgid "" -"Establece el tema visual global de la aplicación. Es posible establecer un " -"tema visual por usuario en las preferencias." -msgstr "" -"Ustaw globalny theme. Użytkownik może go nadpisać w ustawieniach profilu." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 -msgid "Timeout de sesión (s)" -msgstr "Timeout sesji" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 -msgid "Habilitar log de eventos" -msgstr "Włącz log" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 -msgid "Guarda las acciones realizadas en la aplicación." -msgstr "Zapisz akcje wykonane przez aplikację" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 -msgid "Habilitar depuración" -msgstr "Włącz debugowanie" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 -msgid "" -"Muestra información relativa a la configuración de la aplicación y " -"rendimiento." -msgstr "Pokazuje informacje o konfiguracji i wydajności aplikacji" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 -msgid "Modo mantenimiento" -msgstr "Tryb serwisowania" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 -#, fuzzy -msgid "" -"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " -"necesario modificar el archivo de configuración." -msgstr "" -"W tym trybie nikt nie może się zalogować. Aby go wyłączyć, musisz " -"zmodyfikować plik konfiguracyjny." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 -msgid "Comprobar actualizaciones" -msgstr "Sprawdź aktualizacje" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 -msgid "" -"Comprobar actualizaciones de la aplicación (sólo para los usuarios " -"administradores)." -msgstr "Sprawdź akutalizację aplikacji (tylko dla administratora)." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 -msgid "Comprobar notificaciones" -msgstr "Sprawdź uwagi" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 -#, fuzzy -msgid "" -"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " -"para los usuarios administradores)." -msgstr "" -"Sprawdz czy są dostępne ostrzeżenia dotyczące bezpieczeństwa sysPassa (tylko " -"dla administratorów)." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 -msgid "Nombre de cuenta como enlace" -msgstr "Nazwa konta jako link" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 -msgid "" -"Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " -"de la cuenta." -msgstr "Ustawia nazwę konta jako link do szczegółów." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 -msgid "Gestión de archivos" -msgstr "Zarządzanie plikami" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 -#, fuzzy -msgid "Habilita la subida/descarga de archivos para las cuentas." -msgstr "Włącza wysyłanie/pobieranie plików dla konta" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 -msgid "Búsquedas globales" -msgstr "Globalne wyszukiwania" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 -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 "" -"Pozwala na wyszukiwanie wszyskich kont. Jeśli użytkownik nie ma odpowiednich " -"praw to nadal nie będzie mógł wyświetlić szczegółów." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 -msgid "Extensiones de archivos permitidas" -msgstr "Dozwolone rozszerzenia plików" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 -msgid "Extensiones permitidas para la subida de archivos." -msgstr "Dozwolone rozszerzenia uploadowanych plików" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:267 -msgid "Se permite un máximo de 4 caracteres." -msgstr "Maksymalnie 4 znaki" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 -msgid "" -"Escribir extensión y pulsar intro para añadir. Es necesario guardar la " -"configuración." -msgstr "" -"Podaj rozszerzenie i wciśnij enter aby dodać. Pamiętaj aby zapisać " -"konfigurację." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 -msgid "Establece el tamaño máximo para subir archivos." -msgstr "Ustaw maksymalny rozmiar uploadowanych plików." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 -msgid "El máximo absuluto es de 16MB." -msgstr "Absolutne maksimum to 16MB." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 -msgid "Resultados por página" -msgstr "Wyników na stronę" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 -msgid "Número de resultados por página a mostrar, al realizar una búsqueda." -msgstr "Liczba wyników na strone przy wyszukiwaniu" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 -msgid "Resultados en Tarjetas" -msgstr "Wyniki w formie kart" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 -#, fuzzy -msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." -msgstr "Włącza pokazywanie wyników wyszukiwania w formie kart." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 -msgid "Imagen para mostrar clave" -msgstr "Pokaż hasło w obrazku" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 -msgid "Generar una imagen con el texto de la clave de la cuenta." -msgstr "Generuj obrazek z hasłem." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 -msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." -msgstr "" -"Przydatne w środowiskach w których kopiowanie haseł do schowka jest " -"naruszeniem bezpieczeństwa." - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 -#, fuzzy -msgid "Nombre del cliente" -msgstr "Nazwa klienta" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 -#, fuzzy -msgid "Descripción del cliente" -msgstr "Opis klienta" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 -msgid "Texto Ayuda" -msgstr "Tekst pomocy" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 -msgid "Obligatorio" -msgstr "Wymagane" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:17 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:167 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:50 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:56 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:57 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:102 msgid "Clave Maestra" msgstr "Główne hasło" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:27 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:201 #, fuzzy msgid "Último cambio" msgstr "Ostania zmiana" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:35 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:43 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:142 msgid "Clave Maestra actual" msgstr "Obecne główne hasło" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:49 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:57 msgid "Nueva Clave Maestra" msgstr "Nowe główne hasło" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:63 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:71 msgid "Nueva Clave Maestra (repetir)" msgstr "Nowe hasło główne (powtórz)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:80 +msgid "Guarde la nueva clave en un lugar seguro." +msgstr "Zapisz główne hasło w bezpiecznym miejscu" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:84 +msgid "Se volverán a encriptar las claves de todas las cuentas." +msgstr "Wszystkie hasła będą zaszyfrowane ponownie." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:88 +msgid "Los usuarios deberán de introducir la nueva clave maestra." +msgstr "Użytkownicy będą musieli podać nowe hasło główne" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:92 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:130 +#, php-format +msgid "" +"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." +msgstr "It will be updated %s accounts. This process could take some time." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:109 msgid "No modificar cuentas" msgstr "Nie modyfikuj kont" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:111 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "Ustawia nowe hasło bez ponownego szyfrowania kont" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:127 #, fuzzy msgid "Confirmar cambio" msgstr "Potwierdź zmianę" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 -msgid "Guarde la nueva clave en un lugar seguro." -msgstr "Zapisz główne hasło w bezpiecznym miejscu" +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:129 +msgid "" +"Confirmar el cambio de clave maestra después de haber leído las advertencias " +"anteriores." +msgstr "" +"Confirm the master password change after you have been read all the above " +"warnings." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 -msgid "Se volverán a encriptar las claves de todas las cuentas." -msgstr "Wszystkie hasła będą zaszyfrowane ponownie." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 -msgid "Los usuarios deberán de introducir la nueva clave maestra." -msgstr "Użytkownicy będą musieli podać nowe hasło główne" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:155 #, fuzzy msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " @@ -3579,7 +3139,7 @@ msgstr "" "Główne hasło jest używane do zaszyfrowania haseł kont bezpiecznie " "przechowywanych w sysPassie." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:157 #, fuzzy msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " @@ -3588,27 +3148,51 @@ msgstr "" "Zaleca się je zmieniać okresowo używając przy tym trudnych haseł " "zawierających cyfry, litery i symbole." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:159 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#, php-format +msgid "Para más información consulte: %s" +msgstr "You could get more info on: %s" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:169 +msgid "Actualizar hash de clave maestra" +msgstr "Aktualizuj hash głównego hasła" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:189 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:323 msgid "Clave Temporal" msgstr "Tymczasowe hasło" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:203 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:218 msgid "No generada" msgstr "Nie wygenerowano" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:211 msgid "Válido hasta" msgstr "Ważne do" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:227 +msgid "Intentos" +msgstr "Próby" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:244 msgid "Validez (s)" msgstr "Life (s)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:263 +msgid "Enviar correo" +msgstr "Send email" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:265 +msgid "" +"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." +msgstr "Sends an email to all users or only to those whose group is selected." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:325 #, fuzzy msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " @@ -3618,126 +3202,303 @@ msgstr "" "Tymczasowe hasło jest używane zamiast hasła głównego podczas logowania " "użytkowników. Dzięki temu nie ma potrzeby zdradzać im głównego hasła." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:332 msgid "Generar" msgstr "Generuj" -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 -msgid "No se encontraron registros" -msgstr "Nie znaleziono wpisów" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:12 +msgid "Autentificación" +msgstr "Autentykacja" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 -msgid "Fecha / Hora" -msgstr "Data / czas" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:30 +msgid "Usar Auth Basic" +msgstr "Use Auth Basic" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 -msgid "Evento" -msgstr "Zdarzenie" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:31 +msgid "Usar Auth Basic para autorizar los accesos a la aplicación." +msgstr "Use Auth Basic for authorizing the accesses to the application" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 -msgid "IP" -msgstr "IP" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:45 +msgid "Usar Auth Basic SSO" +msgstr "Use Auth Basic SSO" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:69 -msgid "Primera página" -msgstr "Pierwsza strona" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:46 +msgid "Usar auto-login con Auth Basic." +msgstr "Use auto-login through Auth Basic" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:67 -msgid "Página anterior" -msgstr "Poprzednia strona" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:54 +msgid "Dominio" +msgstr "Domain" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:68 -msgid "Página siguiente" -msgstr "Następna strona" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:70 -msgid "Última página" -msgstr "Ostatnia strona" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 -#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 -msgid "Ver Archivo" -msgstr "Pokaż plik" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 -#, fuzzy -msgid "Indica si la conexión utiliza HTTPS." -msgstr "Informuje czy połączenie używa HTTPS" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:59 msgid "" -"Las claves de formularios enviados se encriptan mediante PKI, el resto de " -"datos no." +"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " +"el de Auth Basic." msgstr "" -"Hasła wysyłane przez formularze są zaszyfrowane przez PKI, pozostałe dane " -"nie są." +"The domain will be added to the sysPass user name for checking against the " +"Auth Basic one." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 -msgid "Ayuda :: FAQ :: Changelog" -msgstr "Pomoc :: FAQ :: Lista zmian" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:69 +msgid "Nombre de dominio" +msgstr "Domain name" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 -msgid "Un proyecto de cygnux.org" -msgstr "Projekt cygnux.org" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 -msgid "Nombre del grupo" -msgstr "Nazwa grupy" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 -msgid "Descripción del grupo" -msgstr "Opis grupy" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 -msgid "Importar CSV/XML" -msgstr "Import CSV/XML" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 -msgid "Usuario por Defecto" -msgstr "Domyślny urzytkownik" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 -msgid "Define el usuario por defecto para las cuentas importadas." -msgstr "Sets the default user for the accounts imported." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:249 msgid "Grupo por Defecto" msgstr "Domyślna grupa" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:80 +msgid "" +"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Sets the default users group for newly SSO users" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:264 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:274 +msgid "Perfil por Defecto" +msgstr "Domyślny profil" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:105 +msgid "" +"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Sets the default profile for the newly created SSO users." + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:98 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:176 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:72 +msgid "Eventos" +msgstr "Zdarzenia" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:30 +msgid "Habilitar log de eventos" +msgstr "Włącz log" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:31 +msgid "Guarda las acciones realizadas en la aplicación." +msgstr "Zapisz akcje wykonane przez aplikację" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:45 +msgid "Habilitar Syslog" +msgstr "Włącz syslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:60 +msgid "Habilitar Syslog Remoto" +msgstr "Włącz zdalny syslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:94 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:66 +msgid "Servidor" +msgstr "Serwer" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:78 +msgid "Nombre o dirección IP" +msgstr "Nazwa hosta lub IP" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:84 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:79 +msgid "Puerto" +msgstr "Port" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:12 +msgid "Proxy" +msgstr "Proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:30 +msgid "Usar Proxy" +msgstr "Użyj proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:31 +msgid "Usar proxy para comprobación de actualizaciones y notificaciones." +msgstr "Use a proxy server for checking out for updates and notifications." + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:47 +msgid "Servidor proxy" +msgstr "Serwer proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:61 +msgid "Puerto del servidor proxy" +msgstr "Port serwera proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:75 +msgid "Usuario del servidor proxy" +msgstr "Użytkownik serwera proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:89 +msgid "Clave del servidor proxy" +msgstr "Hasło serwera proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:16 +msgid "" +"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" +msgstr "This extension is needed to check for sysPass updates and notices" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:24 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:15 +msgid "Sitio" +msgstr "Strona" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:137 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:139 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:28 +msgid "Idioma" +msgstr "Język" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:35 +msgid "" +"Establece el idioma global de la aplicación. Es posible establecer un idioma " +"por usuario en las preferencias." +msgstr "" +"Ustaw globalny język aplikacji. Możesz nadpisać język w ustawieniach " +"użytkownika." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:39 +msgid "" +"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." +"com/join/project/fmlsBuugyv" +msgstr "" +"To improve/add the translations, you can get involved at https://poeditor." +"com/join/project/fmlsBuugyv" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:67 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:42 +msgid "Tema Visual" +msgstr "Theme" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:62 +#, fuzzy +msgid "" +"Establece el tema visual global de la aplicación. Es posible establecer un " +"tema visual por usuario en las preferencias." +msgstr "" +"Ustaw globalny theme. Użytkownik może go nadpisać w ustawieniach profilu." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:89 +msgid "Timeout de sesión (s)" +msgstr "Timeout sesji" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:107 +msgid "Forzar HTTPS" +msgstr "Wymuś HTTPS" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:108 +msgid "Fuerza para que todas las conexiones sean a través de HTTPS." +msgstr "Wymusza HTTPS dla wszystkich połączeń" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:122 +msgid "Habilitar depuración" +msgstr "Włącz debugowanie" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:123 +msgid "" +"Muestra información relativa a la configuración de la aplicación y " +"rendimiento." +msgstr "Pokazuje informacje o konfiguracji i wydajności aplikacji" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:137 +msgid "Modo mantenimiento" +msgstr "Tryb serwisowania" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:138 +#, fuzzy +msgid "" +"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " +"necesario modificar el archivo de configuración." +msgstr "" +"W tym trybie nikt nie może się zalogować. Aby go wyłączyć, musisz " +"zmodyfikować plik konfiguracyjny." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:152 +msgid "Comprobar actualizaciones" +msgstr "Sprawdź aktualizacje" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:153 +msgid "" +"Comprobar actualizaciones de la aplicación (sólo para los usuarios " +"administradores)." +msgstr "Sprawdź akutalizację aplikacji (tylko dla administratora)." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:167 +msgid "Comprobar notificaciones" +msgstr "Sprawdź uwagi" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:168 +#, fuzzy +msgid "" +"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " +"para los usuarios administradores)." +msgstr "" +"Sprawdz czy są dostępne ostrzeżenia dotyczące bezpieczeństwa sysPassa (tylko " +"dla administratorów)." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 +msgid "Encriptar Sesión" +msgstr "Encrypt Session" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:184 +msgid "Encriptar los datos de la sesión de PHP." +msgstr "Encrypt PHP session data" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:185 +msgid "" +"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " +"datos almacenados no serán legibles." +msgstr "" +"This feature increases the PHP sessions security, because the stored data " +"won't be readable." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +msgid "Importar CSV/XML" +msgstr "Import CSV/XML" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:28 +msgid "Usuario por Defecto" +msgstr "Domyślny urzytkownik" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:23 +msgid "Define el usuario por defecto para las cuentas importadas." +msgstr "Sets the default user for the accounts imported." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:50 msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Sets the default group for the accounts imported." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 -msgid "Clave de Importación" -msgstr "Hasło importu" +#: ../../../modules/web/themes/material-blue/views/config/import.inc:72 +msgid "Archivo" +msgstr "Plik" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 -msgid "Delimitador CSV" -msgstr "Separator CSV" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:75 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Przeciągnij plik tutaj lub kliknij aby wybrać" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 #, fuzzy msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " @@ -3746,19 +3507,19 @@ msgstr "" "Pozwala na tworzenie kont, kategorii i klientów poprzez import z plików XML " "i CSV." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "Wspierane formaty XML to sysPass, KeePass i KeePassX" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 #, fuzzy msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "Przeciągnij i upuść plik do strefy importu albo klinij na strzałkę" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 #, fuzzy msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " @@ -3767,747 +3528,291 @@ msgstr "" "Dla plików KeePass i KeePassX, nazwami klientów będą KeePass i KeePassX a " "kategorie będą nazwane tak jak grupy." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "Importowany plik CSV musi mieć następujący format:" #: ../../../modules/web/themes/material-blue/views/config/import.inc:115 #, fuzzy msgid "" +"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" +"\"notas\"" +msgstr "" +"\"nazwa_konta\";\"klient\";\"kategoria\";\"url\";\"uzytkownik\";\"haslo\";" +"\"notatki\" " + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:117 +#, fuzzy +msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " "automáticamente." msgstr "" "Jeśli klient lub kategoria nie istnieją to zostaną dodane automatycznie." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:125 +msgid "XML" +msgstr "XML" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:131 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:146 +msgid "Clave de Importación" +msgstr "Hasło importu" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:136 +msgid "Sólo es necesaria para archivos XML de sysPass encriptados." +msgstr "Wymagane tylko dla zaszyfrowanych plików XML sysPassa" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:157 +msgid "" +"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " +"la actual." +msgstr "" +"Wymagane tylko dla plików XML sysPassa zaszyfrowanych innym głównym hasłem " +"niż obecne." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:174 +msgid "CSV" +msgstr "CSV" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:195 +msgid "Delimitador CSV" +msgstr "Separator CSV" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:185 +msgid "Sólo es necesario para archivos CSV." +msgstr "Wymagane tylko dla plików CSV" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 msgid "Información de la Aplicación" msgstr "Informacje o aplikacji" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:23 msgid "Versión sysPass" msgstr "Wersja sysPass" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:33 msgid "Base de Datos" msgstr "Baza danych" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:47 msgid "PHP" msgstr "PHP" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:49 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:34 +msgid "Versión" +msgstr "Wersja" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:51 msgid "Extensiones" msgstr "Rozszerzenia" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 +msgid "Extensiones no disponibles" +msgstr "Unavailable extensions" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:59 msgid "Memoria Usada" msgstr "Użycie pamięci" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:142 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:189 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 -msgid "Servidor" -msgstr "Serwer" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Tasa de descarga" +msgstr "Download rate" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 -msgid "Login del usuario administrador de sysPass" -msgstr "Login administratora sysPass" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:66 +msgid "OP Cache" +msgstr "OP Cache" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 -msgid "Configurar BBDD" -msgstr "Konfiguracja bazy danych" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:88 +msgid "Copia de Configuración" +msgstr "Kopia bezpieczeństwa konfiguracji" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 -msgid "Nombre de la base de datos para sysPass" -msgstr "Nazwa bazy danych sysPass" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:100 +msgid "Indica si el idioma se encuentra disponible" +msgstr "Tells whether the language is available or not." -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 -msgid "Modo Hosting" -msgstr "Typ hostingu" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:104 +msgid "" +"Si no está instalado, es necesario instalar las locales en el sistema " +"operativo. Más información en Wiki." +msgstr "" +"If it is not installed, you would need install the right operating system " +"locales. More info at Wiki." -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 -msgid "No crea ni verifica los permisos del usuario sobre la BBDD" -msgstr "It does not create or verify the user's permissions on the DB" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:116 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:126 +msgid "Sesión Encriptada" +msgstr "Encrypted Session" -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 -msgid "Instalar" -msgstr "Instalacja" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:121 +msgid "Indica si los datos de la sesión están encriptados en el servidor" +msgstr "Tells whether the session data are encrypted in the server or not" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "Sí" +msgstr "Yes" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "No" +msgstr "No" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:136 +msgid "Plugins Cargados" +msgstr "Załadowane pluginy" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:16 +msgid "Esta extensión es necesaria conectar con el servidor de LDAP" +msgstr "This extension is needed to connect to the LDAP server" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:46 msgid "Habilitar LDAP" msgstr "Włącz LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:48 #, fuzzy msgid "Habilita de autentificación mediante servidor LDAP." msgstr "Włącz poświadczenia serwera LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:50 msgid "Este método utilizará MySQL en caso de fallo." msgstr "Ta metoda użyje MySQL jako fallbacku." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:65 +msgid "Active Directory" +msgstr "Active Directory" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:67 +msgid "Habilita el modo de conexión con LDAP de Active Directory." +msgstr "Włącza tryb połączenia LDAP Active Directory" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:84 +msgid "Habilita la conexión mediante TLS." +msgstr "Enables the connection over TLS" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:99 #, fuzzy msgid "Nombre o dirección IP del servidor de LDAP." msgstr "Nazwa hosta lub IP serwera LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:185 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:219 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:131 msgid "Ejemplos:" msgstr "Przykłady:" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:125 msgid "Usuario de conexión" msgstr "Przypisz użytkownika" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:130 msgid "Usuario para conectar con el servicio de LDAP." msgstr "Użytkownik łączący się z LDAPem." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:155 msgid "Clave de conexión" msgstr "Bind Password" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:160 +msgid "Clave del usuario de conexión a LDAP." +msgstr "LDAP connection user password" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:176 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:200 msgid "Base de búsqueda" msgstr "Baza wyszukiwania" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:181 #, fuzzy msgid "Base en la que realizar la búsqueda de usuarios de LDAP." msgstr "Baza wyszukiwania użytkowników LDAPa" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:211 #, fuzzy msgid "" "Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." msgstr "Grupa LDAPa do której użytkownik musi należeć aby móc się zalogować." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:215 msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." msgstr "Ta grupa musi się znajdować wewnątrz bazy wyszukiwania LDAPa" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:244 #, fuzzy msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Podaj domyślną grupę dla nowych użytkowników LDAP" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 -msgid "Perfil por Defecto" -msgstr "Domyślny profil" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:269 #, fuzzy msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Definiuje domyślną grupę nowych użytkowników LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 -msgid "Active Directory" -msgstr "Active Directory" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:321 +msgid "Importación" +msgstr "Import" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 -msgid "Habilita el modo de conexión con LDAP de Active Directory." -msgstr "Włącza tryb połączenia LDAP Active Directory" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:337 +msgid "Atributo Login" +msgstr "Login Attribute" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:57 -msgid "Comprobar" -msgstr "Sprawdź" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:332 +msgid "" +"Define el atributo a utilizar para el login del usuario en la importación." +msgstr "Defines the attribute for the user's login when importing." -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 -#, fuzzy -msgid "¿Olvidó su clave?" -msgstr "Zapomniałeś hasła?" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:350 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:360 +msgid "Atributo Nombre" +msgstr "Name Attribute" -#: ../../../modules/web/Controllers/UpgradeController.php:92 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 -msgid "Aplicación actualizada correctamente" -msgstr "Aktualizacja aplikacji zakończona sukcesem" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:355 +msgid "" +"Define el atributo a utilizar para el nombre del usuario en la importación." +msgstr "Defines the attribute for the user's name when importing." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:385 +msgid "Importar Grupos" +msgstr "Import Groups" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:394 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:404 +msgid "Atributo Nombre Grupo" +msgstr "Group Name Attribute" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:399 +msgid "" +"Define el atributo a utilizar para el nombre del grupo en la importación." +msgstr "Defines the attribute for the user group name when importing." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:415 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:429 +msgid "Filtro" +msgstr "Filter" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:420 +msgid "Filtro para importar usuarios o grupos de LDAP." +msgstr "Filter for importing LDAP users or groups." + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:34 msgid "Habilitar notificaciones de correo" msgstr "Włącz powiadomienia email" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 -msgid "Puerto" -msgstr "Port" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 -msgid "Habilitar Autentificación" -msgstr "Włącz poświadczenia" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 -msgid "Deshabilitada" -msgstr "Wyłączone" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 -#, fuzzy -msgid "Dirección de correo de envío" -msgstr "Adres email odbiorcy" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 msgid "Habilitar peticiones por correo" msgstr "Włącz żądania emailem" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 -msgid "Más Acciones" -msgstr "Więcej akcji" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 -msgid "Solicitud de Cambio de Clave" -msgstr "Żądaj zmiany hasła" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 -msgid "Email del Usuario" -msgstr "Email użytkownika" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 -msgid "Volver a iniciar sesión" -msgstr "Wróć do logowania" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 -msgid "Solicitar" -msgstr "Żądanie" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 -msgid "Cambiar" -msgstr "Zmiana" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:37 -#, fuzzy -msgid "Cambiar Clave" -msgstr "Zmień hasło" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 -msgid "Ordenar resultados por visitas" -msgstr "Sortuj wyniki po ilości wyświetleń" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 -#, fuzzy -msgid "" -"Ordena los resultados de búsqueda por el número de visitas de las cuentas." -msgstr "Sortuj wyniki wyszukiwania po liczbie wyświetleń" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 -msgid "Barra de navegación superior" -msgstr "Pasek nawigacji u góry" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 -msgid "Mostrar una barra de navegación superior en las búsquedas." -msgstr "Pokazuje pasek nawigacji nad wynikami wyszukiwania" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 -msgid "Mostrar Acciones Ocultas" -msgstr "Pokaż ukryte akcje" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 -msgid "" -"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." -msgstr "Zawszy pokazuj ukryte akcje przy wynikach wyszukiwania." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 -msgid "Nombre del perfil" -msgstr "Nazwa profilu" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 -msgid "Ver detalles de cuenta" -msgstr "Pokaż szczegóły konta" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 -msgid "Ver" -msgstr "Pokaż" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 -msgid "Ver clave de cuenta" -msgstr "Pokaż hasło" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 -msgid "Ver historial de cuenta" -msgstr "Pokaż historię konta" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 -msgid "Editar cuenta" -msgstr "Edytuj konto" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 -msgid "Editar" -msgstr "Edycja" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 -msgid "Editar clave de cuenta" -msgstr "Edytuj hasło" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 -msgid "Editar Clave" -msgstr "Edytuj hasło" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:32 -msgid "Añadir" -msgstr "Dodaj" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 -msgid "Ver archivos de cuenta" -msgstr "Pokaż pliki kont" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 -msgid "Backup" -msgstr "Kopie zapasowe" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 -msgid "Realizar importación de cuentas" -msgstr "Importuj konta" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 -msgid "Gestión" -msgstr "Zarządzanie" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 -msgid "Gestión de usuarios" -msgstr "Zarządzanie uzytkownikami" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 -msgid "Gestión de grupos" -msgstr "Zarządzanie grupami" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 -msgid "Gestión de perfiles" -msgstr "Zarządzanie profilami" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 -msgid "Perfiles" -msgstr "Profile" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 -msgid "Gestión de categorías" -msgstr "Zarządzenia kategoriami" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 -#, fuzzy -msgid "Gestión de clientes" -msgstr "Zarządzanie klientami" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 -msgid "Gestión de campos personalizados" -msgstr "Zarządzanie własnymi polami" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 -msgid "Gestión de autorizaciones API" -msgstr "Zarządzanie poświadczeniami API" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 -msgid "Autorizaciones API" -msgstr "Poświadczenia API" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 -msgid "Otros" -msgstr "Inne" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 -msgid "Ver log de eventos" -msgstr "Zobacz dziennik zdarzeń" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 -msgid "Log de Eventos" -msgstr "Dziennik zdarzeń" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 -msgid "Usado por" -msgstr "Użyte przez" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 -msgid "Solicitar Modificación de Cuenta" -msgstr "Żądaj zmiany konta" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 -msgid "Petición" -msgstr "Żądanie" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 -#, fuzzy -msgid "Descripción de la petición" -msgstr "Wymagaj opisu" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 -msgid "Atrás" -msgstr "Powrót" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 -msgid "Enviar" -msgstr "Wyślij" - -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 -msgid "Filtro ON" -msgstr "Filtr wł." - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 -msgid "Buscar en Wiki" -msgstr "Wyszukaj na Wiki" - -#: ../../../../inc/themes/material-blue/views/accountsearch/rows.inc:71 -msgid "Abrir enlace a" -msgstr "Otwórz link w" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 -msgid "Archivos adjuntos" -msgstr "Załącznik" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 -msgid "Enlace a Wiki" -msgstr "Link na Wiki" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:53 -msgid "Limpiar" -msgstr "Wyczyść" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 -#: ../../../modules/api/Controllers/Help/TagHelp.php:77 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 -msgid "Texto a buscar" -msgstr "Tekst do wyszukania" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:23 -msgid "Parámetros especiales:" -msgstr "Parametry specjalne" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 -msgid "Buscar cuentas a las que 'login' tenga acceso" -msgstr "Search for accounts which 'login' has access rights" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 -msgid "Buscar cuentas a las que 'group_name' tenga acceso" -msgstr "Search for accounts which 'group_name' has access rights" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 -msgid "Buscar cuentas con archivos con el nombre 'file_name'" -msgstr "Search for accounts which contains a file with the name 'file_name'" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 -#, fuzzy -msgid "Búsqueda global" -msgstr "Globalne wyszukiwanie" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 -msgid "Cuentas por página" -msgstr "Kont na stronę" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:76 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:149 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:152 -msgid "Salir" -msgstr "Wyloguj" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 -msgid "Opciones" -msgstr "Opcje" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 -msgid "Regenerar Autorización" -msgstr "Odśwież autoryzację" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 -msgid "Token" -msgstr "Token" - -#: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 -msgid "Actualizado" -msgstr "Zaktualizowano" - -#: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 -msgid "Error al comprobar actualizaciones" -msgstr "Błąd sprawdzania akutalizacji" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 -msgid "Actualización de BBDD" -msgstr "Uaktualnienie bazy danych" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 -msgid "Código de Seguridad" -msgstr "Kod bezpieczeństwa" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 -msgid "Iniciar Actualización" -msgstr "Start uaktualnienia" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 -msgid "Nombre de usuario completo" -msgstr "Pełna nazwa użytkownika" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 -msgid "Login de inicio de sesión" -msgstr "Login sesji" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 -msgid "Dirección de correo" -msgstr "Adres email" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 -msgid "Administrador de la aplicación" -msgstr "Administrator aplikacji" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 -msgid "Administrador de cuentas" -msgstr "Administrator kont" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 -msgid "Forzar cambio de clave" -msgstr "Wymuś zmianę hasła" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 -msgid "Entradas" -msgstr "Wpisy" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 -msgid "Último Acceso" -msgstr "Ostatnie logowanie" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 -msgid "Fecha Clave Maestra" -msgstr "Data głównego hasła" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 -msgid "Habilitar enlaces Wiki" -msgstr "Włącz linki Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 -#, fuzzy -msgid "" -"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " -"la búsqueda." -msgstr "" -"Włącza opcję dodawania linku do wyników wyszukiwania w zewnętrznej Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 -msgid "URL de búsqueda Wiki" -msgstr "URL wyszukiwania Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 -#, fuzzy -msgid "URL que utiliza la wiki para realizar una búsqueda de una página." -msgstr "URL używany przez Wiki do wykonania wyszukiwania" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 -#, fuzzy -msgid "Como parámetro se utiliza el nombre del cliente." -msgstr "Nazwa klienta jest użyta jako parametr." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 -msgid "Ejemplo:" -msgstr "Przykład:" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 -msgid "URL de página en Wiki" -msgstr "URL strony Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 -msgid "URL que utiliza la wiki para acceder a los detalles de una página." -msgstr "URL that the Wiki uses for accessing to the entry details." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 -msgid "" -"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " -"de la Wiki." -msgstr "The account name is used as parameter of Wiki search variable." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 -msgid "Prefijo para nombre de cuenta" -msgstr "Prefix nazwy konta" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 -msgid "" -"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." -msgstr "Prefix to determine which accounts have a link to the Wiki." - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 -msgid "Histórico" -msgstr "Historia" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:54 -msgid "Realizar" -msgstr "Wykonaj" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 -msgid "Forzar HTTPS" -msgstr "Wymuś HTTPS" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 -msgid "Fuerza para que todas las conexiones sean a través de HTTPS." -msgstr "Wymusza HTTPS dla wszystkich połączeń" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 -msgid "Número de resultados por página" -msgstr "Wyników na stronie" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 -msgid "Proxy" -msgstr "Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 -msgid "Usar Proxy" -msgstr "Użyj proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 -msgid "Servidor proxy" -msgstr "Serwer proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 -msgid "Puerto del servidor proxy" -msgstr "Port serwera proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 -msgid "Usuario del servidor proxy" -msgstr "Użytkownik serwera proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 -msgid "Clave del servidor proxy" -msgstr "Hasło serwera proxy" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 -msgid "Nombre del campo" -msgstr "Nazwa pola" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 -msgid "Ayuda del campo" -msgstr "Pomoc pola" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 -msgid "Intentos" -msgstr "Próby" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:69 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:131 -msgid "Preferencias de usuario" -msgstr "Ustawienia użytkownika" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 -msgid "Usuario administrador de sysPass" -msgstr "admin sysPass" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 -msgid "Usuario acceso BBDD" -msgstr "Użytkownik bazy danych" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 -#, fuzzy -msgid "Usuario con permisos de administrador de MySQL" -msgstr "Użytkownik MySQL z prawami admina" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 -msgid "Clave acceso BBDD" -msgstr "Hasło do bazy danych" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 -msgid "Nombre BBDD para sysPass" -msgstr "Nazwa bazy danych sysPass" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 -msgid "Servidor BBDD para sysPass" -msgstr "Serwer bazy danych sysPass" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 -msgid "Nombre del servidor para instalar la base de datos de sysPass" -msgstr "Nazwa hosta do instalacji bazy sysPass" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 -msgid "Clave del usuario de conexión a LDAP." -msgstr "LDAP connection user password" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:50 msgid "" "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " "cuentas sin permisos." @@ -4515,570 +3820,862 @@ msgstr "" "Allows users to request for either modifications to existing accounts or " "access to accounts in which they have no rights." -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 -#, fuzzy -msgid "Crear nueva cuenta" -msgstr "Stwórz nowe konto" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:97 +msgid "Habilitar Autentificación" +msgstr "Włącz poświadczenia" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:135 +msgid "Seguridad" +msgstr "Bezpieczeństwo" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:138 +msgid "Deshabilitada" +msgstr "Wyłączone" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:156 +#, fuzzy +msgid "Dirección de correo de envío" +msgstr "Adres email odbiorcy" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:165 +msgid "Destinatarios" +msgstr "Recipients" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:16 +msgid "Esta extensión es necesaria conectar con DokuWiki" +msgstr "This extension is needed to connect with DokuWiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:47 +msgid "Habilitar enlaces Wiki" +msgstr "Włącz linki Wiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:48 +#, fuzzy +msgid "" +"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " +"la búsqueda." +msgstr "" +"Włącza opcję dodawania linku do wyników wyszukiwania w zewnętrznej Wiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:56 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:83 +msgid "URL de búsqueda Wiki" +msgstr "URL wyszukiwania Wiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:61 +#, fuzzy +msgid "URL que utiliza la wiki para realizar una búsqueda de una página." +msgstr "URL używany przez Wiki do wykonania wyszukiwania" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:65 +#, fuzzy +msgid "Como parámetro se utiliza el nombre del cliente." +msgstr "Nazwa klienta jest użyta jako parametr." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:69 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:102 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:187 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:214 +msgid "Ejemplo:" +msgstr "Przykład:" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:116 +msgid "URL de página en Wiki" +msgstr "URL strony Wiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:94 +msgid "URL que utiliza la wiki para acceder a los detalles de una página." +msgstr "URL that the Wiki uses for accessing to the entry details." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:98 +msgid "" +"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " +"de la Wiki." +msgstr "The account name is used as parameter of Wiki search variable." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:136 +msgid "Prefijo para nombre de cuenta" +msgstr "Prefix nazwy konta" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:127 +msgid "" +"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." +msgstr "Prefix to determine which accounts have a link to the Wiki." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:146 +msgid "DokuWiki API" +msgstr "DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:164 +msgid "Habilitar API de DokuWiki" +msgstr "Włącz DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:166 +msgid "" +"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." +msgstr "Włącza DokuWki XML-RPC API dla linków Wiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:168 +msgid "" +"Para que esta característica funcione, es necesario habilitar los enlaces " +"Wiki para el filtrado de cuentas." +msgstr "Aby to zadziałało, musisz włączyć linki Wiki dla filtrowania kont" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:199 +msgid "URL API" +msgstr "API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:183 +msgid "URL de la API de DokuWiki." +msgstr "DokuWiki API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:205 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:227 +msgid "URL Base" +msgstr "Bazowy URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:210 +msgid "URL base de DokuWiki." +msgstr "Bazowy URL DokuWiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:238 +#, fuzzy +msgid "Usuario para conectar a la API de DokuWiki." +msgstr "Użytkownik API DokuWiki." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:282 +msgid "Namespace" +msgstr "Namespace" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:271 +msgid "Namespace utilizado para buscar las páginas." +msgstr "Namespace użyty do stron wyszukiwania." + +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:170 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:172 +msgid "Instalar" +msgstr "Instalacja" + +#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 +msgid "Filtro ON" +msgstr "Filtr wł." + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:11 +#, php-format +msgid "Instalación %s" +msgstr "Instalacja %s" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:21 +msgid "Admin de sysPass" +msgstr "Administrator sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:29 +msgid "Usuario administrador de sysPass" +msgstr "admin sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:37 +msgid "Login del usuario administrador de sysPass" +msgstr "Login administratora sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:69 +msgid "Configurar BBDD" +msgstr "Konfiguracja bazy danych" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:79 +msgid "Usuario acceso BBDD" +msgstr "Użytkownik bazy danych" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:87 +#, fuzzy +msgid "Usuario con permisos de administrador de MySQL" +msgstr "Użytkownik MySQL z prawami admina" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:95 +msgid "Clave acceso BBDD" +msgstr "Hasło do bazy danych" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:104 +msgid "Nombre BBDD para sysPass" +msgstr "Nazwa bazy danych sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:112 +msgid "Nombre de la base de datos para sysPass" +msgstr "Nazwa bazy danych sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:121 +msgid "Servidor BBDD para sysPass" +msgstr "Serwer bazy danych sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:129 +msgid "Nombre del servidor para instalar la base de datos de sysPass" +msgstr "Nazwa hosta do instalacji bazy sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:149 +msgid "Modo Hosting" +msgstr "Typ hostingu" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:156 +msgid "No crea ni verifica los permisos del usuario sobre la BBDD" +msgstr "It does not create or verify the user's permissions on the DB" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 +msgid "Otros" +msgstr "Inne" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 +msgid "Creador" +msgstr "Autor" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 +msgid "Eliminar" +msgstr "Usuń" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 +msgid "Eliminar Historial" +msgstr "Delete History" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 +msgid "Opciones" +msgstr "Opcje" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 +msgid "Regenerar Autorización" +msgstr "Odśwież autoryzację" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 +msgid "Token" +msgstr "Token" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:54 +msgid "Indica si el cliente es visible para todos los usuarios." +msgstr "Sets whether the client is visible by all users" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:57 +msgid "" +"Por defecto los clientes asignados a cuentas sólo son visibles para los " +"usuarios con acceso a las cuentas." +msgstr "" +"By default, the clients assigned to accounts only will be visible to users " +"who are granted to access to the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 +msgid "Nombre del campo" +msgstr "Nazwa pola" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 +msgid "Texto Ayuda" +msgstr "Tekst pomocy" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 +msgid "Ayuda del campo" +msgstr "Pomoc pola" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 +msgid "Obligatorio" +msgstr "Wymagane" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 +msgid "Puntuación" +msgstr "Score" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 +msgid "Expresión Regular" +msgstr "Regular Expression" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 +msgid "Incluir Minúsculas" +msgstr "Include Lowercase" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 +msgid "Las cuentas sólo serán visibles por el usuario." +msgstr "Accounts will be only visible by the user." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 +msgid "Los administradores no podrán acceder a las cuentas." +msgstr "Administrators won't be able to display the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 +msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." +msgstr "Accounts will be only visible by the user and his/her main group." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 +msgid "Dirección IP" +msgstr "IP Address" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 +msgid "Timeout" +msgstr "Timeout" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 +msgid "" +"Prioridad de asignación en caso de coincidir con otros valores asignados por " +"usuario, grupo o perfil." +msgstr "" +"Assignment priority if values match with others assigned by user, group or " +"profile." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 +msgid "Prioridad de asignación" +msgstr "Assignment Priority" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 +msgid "" +"Indica si los valores serán forzados al crear o modificar los elementos." +msgstr "Enforces the values to be set either on creating or updating an item." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 +msgid "Los valores serán añadidos a los existentes." +msgstr "Values will be merged with the existing ones." + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:83 +msgid "Hash" +msgstr "Hash" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:91 +msgid "URL" +msgstr "URL" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:101 +msgid "Uso" +msgstr "Użyj" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 +msgid "Nombre de usuario completo" +msgstr "Pełna nazwa użytkownika" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:58 +msgid "Login de inicio de sesión" +msgstr "Login sesji" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:69 +msgid "Login SSO" +msgstr "SSO Login " + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:77 +msgid "Login de inicio de sesión con SSO" +msgstr "Session login with SSO" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:84 +msgid "Email" +msgstr "Email" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:92 +msgid "Dirección de correo" +msgstr "Adres email" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:200 +msgid "Admin Aplicación" +msgstr "Administrator aplikacji" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:202 +msgid "Administrador de la aplicación" +msgstr "Administrator aplikacji" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:218 +#, fuzzy +msgid "Admin Cuentas" +msgstr "Konto Admina" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:220 +msgid "Administrador de cuentas" +msgstr "Administrator kont" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:240 +msgid "Forzar cambio de clave" +msgstr "Wymuś zmianę hasła" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:257 +msgid "Deshabilitado" +msgstr "Wyłączone" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 +msgid "Entradas" +msgstr "Wpisy" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 +msgid "Último Acceso" +msgstr "Ostatnie logowanie" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 +msgid "Fecha Clave Maestra" +msgstr "Data głównego hasła" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:311 +msgid "Usado en" +msgstr "Used in" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 +msgid "Usado por" +msgstr "Użyte przez" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:108 +msgid "(*) Incluido en grupo" +msgstr "(*) Listed in group" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 +msgid "Gestión" +msgstr "Zarządzanie" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 #, fuzzy msgid "Crear" msgstr "Stwórz" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 +#, fuzzy +msgid "Crear nueva cuenta" +msgstr "Stwórz nowe konto" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 +msgid "Ver detalles de cuenta" +msgstr "Pokaż szczegóły konta" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 +msgid "Ver clave de cuenta" +msgstr "Pokaż hasło" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 +#: ../../../config/actions.xml:259 +msgid "Ver Historial" +msgstr "Pokaż historię" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 +msgid "Ver historial de cuenta" +msgstr "Pokaż historię konta" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 +msgid "Editar cuenta" +msgstr "Edytuj konto" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 +msgid "Editar Clave" +msgstr "Edytuj hasło" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 +msgid "Editar clave de cuenta" +msgstr "Edytuj hasło" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 #, fuzzy msgid "Eliminar cuenta" msgstr "Usuń konto" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:36 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 -msgid "Eliminar" -msgstr "Usuń" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 +msgid "Ver archivos de cuenta" +msgstr "Pokaż pliki kont" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 +msgid "Publicar Enlace" +msgstr "Udostępnij link" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 +msgid "Publicar enlace a cuenta" +msgstr "Udostępnij link do konta" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 +msgid "Crear cuenta privada" +msgstr "Utwórz prywatne konto" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 +msgid "Crear cuenta privada para grupo" +msgstr "Create private account for group" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 +msgid "Asignar permisos" +msgstr "Przydziel prawa" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 +msgid "Gestión de usuarios" +msgstr "Zarządzanie uzytkownikami" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 +msgid "Gestión de grupos" +msgstr "Zarządzanie grupami" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 +msgid "Gestión de perfiles" +msgstr "Zarządzanie profilami" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 +msgid "Gestión de categorías" +msgstr "Zarządzenia kategoriami" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 +msgid "Gestión de etiquetas" +msgstr "Zarządzanie tagami" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 +#, fuzzy +msgid "Gestión de clientes" +msgstr "Zarządzanie klientami" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 +msgid "Gestión de campos personalizados" +msgstr "Zarządzanie własnymi polami" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 +msgid "Gestión de autorizaciones API" +msgstr "Zarządzanie poświadczeniami API" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 +msgid "Gestión de enlaces" +msgstr "Zarządzanie linkami" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 +msgid "Gestión de cuentas" +msgstr "Zarządzanie kontami" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 +msgid "Valores por Defecto" +msgstr "Default Values" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 +msgid "Gestión de Valores por Defecto" +msgstr "Default Values Management" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 +#: ../../../config/actions.xml:691 +msgid "Configuración General" +msgstr "Ogólne ustawienie" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 msgid "Opciones de encriptación" msgstr "Opcje szyfrowania" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 +msgid "Backup" +msgstr "Kopie zapasowe" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 msgid "Realizar copia de seguridad y exportar" msgstr "Stwórz kopię i eksportuj" -#: ../../../../ajax/ajax_filesMgmt.php:97 -msgid "Extensión" -msgstr "Rozszerzenie" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 +msgid "Importar" +msgstr "Import" -#: ../../../modules/web/Controllers/AccountFileController.php:209 -msgid "Tamaño de archivo superado" -msgstr "Przekroczony rozmiar pliku" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 +msgid "Realizar importación de cuentas" +msgstr "Importuj konta" -#: ../../../../ajax/ajax_passReset.php:77 -msgid "Solicitud no enviada" -msgstr "Żądanie nie zostało wysłane" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 +msgid "Log de Eventos" +msgstr "Dziennik zdarzeń" -#: ../../../../ajax/ajax_passReset.php:78 -msgid "Compruebe datos de usuario o consulte con el administrador" -msgstr "Sprawdź dane użytkownika lub skontaktuj się z administratorem" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 +msgid "Ver log de eventos" +msgstr "Zobacz dziennik zdarzeń" -#: ../../../../lib/SP/Services/Account/AccountService.php:283 -#: ../../../../lib/SP/Services/Account/AccountService.php:672 -#: ../../../../lib/SP/Services/Account/AccountService.php:727 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 +msgid "Nombre del perfil" +msgstr "Nazwa profilu" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:46 +msgid "Clave Anterior" +msgstr "Poprzednie hasło" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:73 +msgid "Acceder" +msgstr "Zaloguj się" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:82 #, fuzzy -msgid "La cuenta no existe" -msgstr "Konto nie istnieje" +msgid "¿Olvidó su clave?" +msgstr "Zapomniałeś hasła?" -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:194 -msgid "Errores" -msgstr "Błędy" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 +msgid "Aplicación actualizada correctamente" +msgstr "Aktualizacja aplikacji zakończona sukcesem" -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:71 -msgid "Error al añadir favorito" -msgstr "Błąd podczas dodawania do ulubionych" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 +#, php-format +msgid "Actualización %s" +msgstr "Aktualizuj %s" -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:91 -msgid "Error al eliminar favorito" -msgstr "Błąd usuwania ulubionych" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:20 +msgid "Actualización de BBDD" +msgstr "Uaktualnienie bazy danych" -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:94 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:22 +msgid "Actualización de Aplicación" +msgstr "Application Update" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 +msgid "Código de Seguridad" +msgstr "Kod bezpieczeństwa" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 #, fuzzy -msgid "Error al eliminar las etiquetas de la cuenta" -msgstr "Błąd przy usuwaniu tagów konta" +msgid "" +"Este código se encuentra en el archivo de configuración de sysPass con la " +"etiqueta \"upgradeKey\"" +msgstr "" +"Ten kod jest podany w pliku koniguracyjnym sysPassa w polu \"upgradeKey\"" -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:107 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:78 -msgid "Método inválido" -msgstr "Nieprawidłowa metoda" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:47 +msgid "" +"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " +"o indique los IDs por defecto para los elementos huérfanos." +msgstr "" +"Some orphaned items have been found. Please, modify those items or enter the " +"default IDs for them." -#: ../../../../lib/SP/Services/Api/ApiRequest.php:79 -#: ../../../../lib/SP/Services/Api/ApiRequest.php:113 -#: ../../../../lib/SP/Services/Api/ApiService.php:229 -msgid "Datos inválidos" -msgstr "Nieprawidłowe dane" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:49 +msgid "Si no se indican los IDs, se crearán nuevos elementos." +msgstr "If the items IDs are not set, they will be created." -#: ../../../../inc/SP/Api/ApiRequest.class.php:211 -msgid "Formato incorrecto" -msgstr "Zły format" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:74 +msgid "Introducir un ID de usuario válido para cuentas" +msgstr "Enter a valid user ID for the accounts" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 -msgid "Id de la cuenta" -msgstr "Id konta" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 +msgid "Introducir un ID de categoría válido para cuentas" +msgstr "Enter a valid category ID for the accounts" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:96 +msgid "Introducir un ID de cliente válido para cuentas" +msgstr "Enter a valid client ID for the accounts" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 +msgid "Introducir un ID de grupo válido para usuarios" +msgstr "Enter a valid group ID for the users" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 +msgid "Introducir un ID de perfil válido para usuarios" +msgstr "Enter a valid profile ID for the users" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:128 +msgid "" +"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " +"necesario reencriptar los datos almacenados" +msgstr "" +"This update uses a new encryption schema, so it will be needed to reencrypt " +"the whole encrypted data." + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:150 +msgid "Introducir login de usuario válido" +msgstr "Enter a valid user login" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:162 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 +msgid "He realizado una copia de seguridad completa de sysPass" +msgstr "I've done a full sysPass backup" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 +msgid "Por favor espere mientras el proceso se ejecuta" +msgstr "Please, wait while the process is running" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:184 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 +msgid "Actualizar" +msgstr "Aktualizuj" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:186 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 +msgid "Iniciar Actualización" +msgstr "Start uaktualnienia" + +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:95 +msgid "Notificación global" +msgstr "Global notification" + +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:103 +msgid "Sólo para administradores de la aplicación" +msgstr "Only for application administrators" + +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:107 +msgid "Solo Admins" +msgstr "Only Admins" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:29 +msgid "Nombre del plugin" +msgstr "Nazwa pluginu" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:41 #, fuzzy -msgid "Devolver detalles en la respuesta" -msgstr "Wyślij szczegóły w odpowiedzi" +msgid "Versión del plugin" +msgstr "Wersja pluginu" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 -#: ../../../modules/api/Controllers/Help/TagHelp.php:78 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 -msgid "Número de resultados a mostrar" -msgstr "Ilość wyników do wyświetlenia" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:46 +msgid "Versión Compatible" +msgstr "Zgodna wersja" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 -msgid "Id de categoría a filtrar" -msgstr "Id kategorii do filtracji" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:53 +msgid "Versión de sysPass compatible" +msgstr "zgodna wersja sysPass" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 -msgid "Id de cliente a filtrar" -msgstr "Client Id to filter on" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:39 +msgid "Autor" +msgstr "Autor" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 -msgid "Id de categoría" -msgstr "Id kategorii" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:65 +msgid "Autor del plugin" +msgstr "Autor pluginu" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 +msgid "La aplicación necesita actualizarse" +msgstr "Aplikacja wymaga aktualizacji" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 +msgid "Para iniciar la actualización introduzca el código de seguridad" +msgstr "Please enter the security code to start the upgrade" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:13 +msgid "Solicitud de Cambio de Clave" +msgstr "Żądaj zmiany hasła" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 +msgid "Email del Usuario" +msgstr "Email użytkownika" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:39 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:49 +msgid "Volver a iniciar sesión" +msgstr "Wróć do logowania" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:46 +msgid "Solicitar" +msgstr "Żądanie" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:56 +msgid "Cambiar" +msgstr "Zmiana" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:107 +msgid "Ordenar resultados por visitas" +msgstr "Sortuj wyniki po ilości wyświetleń" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:109 #, fuzzy -msgid "Id de cliente" -msgstr "Id klienta" +msgid "" +"Ordena los resultados de búsqueda por el número de visitas de las cuentas." +msgstr "Sortuj wyniki wyszukiwania po liczbie wyświetleń" -#: ../../../../lib/SP/Api/SyspassApi.php:511 -msgid "Nombre de categoría a buscar" -msgstr "Category name to search for" +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:124 +msgid "Barra de navegación superior" +msgstr "Pasek nawigacji u góry" -#: ../../../../lib/SP/Api/SyspassApi.php:531 -msgid "Nombre de cliente a buscar" -msgstr "Client name to search for" +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:126 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "Pokazuje pasek nawigacji nad wynikami wyszukiwania" -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:212 -msgid "Método ya inicializado" -msgstr "Metoda zainicjowana juz wcześniej" +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:141 +msgid "Mostrar Acciones Ocultas" +msgstr "Pokaż ukryte akcje" -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:208 -msgid "Método no disponible" -msgstr "Metoda niedostępna" +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:143 +msgid "" +"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." +msgstr "Zawszy pokazuj ukryte akcje przy wynikach wyszukiwania." -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 -msgid "Objetos encontrados: %d" -msgstr "Znalezione obiekty: %d" +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:175 +msgid "Notificaciones In-App" +msgstr "In-App Notifications" -#: ../../../../lib/SP/Controller/ChecksController.php:127 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:177 +msgid "Habilita la consulta de notificaciones activas In-App." +msgstr "Enables the active In-App notifications polling" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:16 +#: ../../../config/actions.xml:277 +msgid "Ver Wiki" +msgstr "Zobacz Wiki" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +#, php-format +msgid "Resultados de búsqueda de '%s'" +msgstr "Wyniki wyszukiwania dla '%s'" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:37 +msgid "Página" +msgstr "Strona" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:7 #, fuzzy -msgid "Los parámetros de DokuWiki no están configurados" -msgstr "Brak ustawionych parametrów DokuWiki" +msgid "Buscar Cuentas" +msgstr "Wyszukaj konta" -#: ../../../../lib/SP/Controller/ChecksController.php:135 -#: ../../../../lib/SP/Util/Wiki/DokuWikiApiBase.php:214 -msgid "Error" -msgstr "Błąd" +#. (itstool) path: action/text +#: ../../../config/actions.xml:25 +msgid "Peticiones" +msgstr "Żądania" -#: ../../../../lib/SP/Controller/ChecksController.php:137 -msgid "Conexión correcta" -msgstr "Połączenie ustanowione" +#. (itstool) path: action/text +#: ../../../config/actions.xml:31 +msgid "Favoritos" +msgstr "Favorites" -#: ../../../../lib/SP/Controller/ChecksController.php:141 -msgid "Error de conexión a DokuWiki" -msgstr "Błąd połączenia z DokuWiki" +#. (itstool) path: action/text +#: ../../../config/actions.xml:43 +msgid "Elementos y Personalización" +msgstr "Elementy i kustomizacje" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:89 -msgid "Faltan parámetros de syslog remoto" -msgstr "Brakujące parametry zdalnego syslogu" +#. (itstool) path: action/text +#: ../../../config/actions.xml:49 +msgid "Gestión Categorías" +msgstr "Zarządzanie kategoriami" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:102 -msgid "Syslog remoto deshabilitado" -msgstr "Zdalny syslog wyłączony" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:72 +#. (itstool) path: action/text +#: ../../../config/actions.xml:55 #, fuzzy -msgid "Error al guardar la configuración" -msgstr "Błąd zapisu konfiguracji" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:87 -msgid "Faltan parámetros de DokuWiki" -msgstr "Brakujące parametry DokuWiki" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:368 -msgid "DokuWiki habiltada" -msgstr "DokuWiki włączona" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:104 -msgid "DokuWiki deshabilitada" -msgstr "DokuWiki wyłączona" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 -msgid "Buscar Evento" -msgstr "Szukaj zdarzenia" +msgid "Gestión Clientes" +msgstr "Zarządzanie klientami" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 -#: ../../../config/actions.xml:325 -msgid "Buscar Categoría" -msgstr "Szukaj kategorii" +#: ../../../config/actions.xml:61 +msgid "Gestión Autorizaciones API" +msgstr "Zarządzanie dostępem do API" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 -#: ../../../config/actions.xml:355 -#, fuzzy -msgid "Buscar Cliente" -msgstr "Szukaj klienta" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 -msgid "Buscar Campo" -msgstr "Szukaj pola" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 -#: ../../../config/actions.xml:475 -msgid "Buscar Archivo" -msgstr "Szukaj pliku" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 -#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 -msgid "Buscar Cuenta" -msgstr "Szukaj konta" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 -#: ../../../config/actions.xml:601 -msgid "Buscar Usuario" -msgstr "Szukaj użytkownika" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 -msgid "Importar usuarios de LDAP" -msgstr "Import użytkowników z LDAPa" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 -#: ../../../config/actions.xml:631 -msgid "Buscar Grupo" -msgstr "Szukaj grupy" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 -#: ../../../config/actions.xml:661 -msgid "Buscar Perfil" -msgstr "Szukaj profilu" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 -msgid "Buscar Token" -msgstr "Szukaj tokenu" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 -msgid "Fecha Creación" -msgstr "Data utworzenia" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 -msgid "Fecha Caducidad" -msgstr "Data wygaśnięcia" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 -msgid "Notificar" -msgstr "Notify" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 -msgid "Enlaces" -msgstr "Linki" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 -msgid "Buscar Enlace" -msgstr "Szukaj linku" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 -msgid "Ver Enlace" -msgstr "Pokaż link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 -msgid "Renovar Enlace" -msgstr "Odśwież link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 -msgid "Eliminar Enlace" -msgstr "Usuń link" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:123 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 -msgid "Etiquetas" -msgstr "Tagi" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 -#: ../../../config/actions.xml:529 -msgid "Buscar Etiqueta" -msgstr "Szukaj tagu" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 -#: ../../../config/actions.xml:505 -msgid "Nueva Etiqueta" -msgstr "Nowy tag" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 -#: ../../../config/actions.xml:517 -msgid "Editar Etiqueta" -msgstr "Edytuj tag" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 -#: ../../../config/actions.xml:523 -msgid "Eliminar Etiqueta" -msgstr "Usuń tag" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 -msgid "Plugin" -msgstr "Plugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 -msgid "Estado" -msgstr "Status" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:334 -#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 -msgid "Plugins" -msgstr "Pluginy" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 -#: ../../../config/actions.xml:547 -msgid "Buscar Plugin" -msgstr "Szukaj pluginów" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:120 -#: ../../../config/actions.xml:541 -msgid "Ver Plugin" -msgstr "Pokaż plugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 -msgid "Habilitar" -msgstr "Włącz" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 -msgid "Deshabilitar" -msgstr "Wyłącz" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 -msgid "Restablecer Datos" -msgstr "Resetuj dane" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 -msgid "Componente" -msgstr "Komponent" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 -msgid "Leída" -msgstr "Read" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:65 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:105 -#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 -#: ../../../config/actions.xml:679 -msgid "Notificaciones" -msgstr "Powiadomienia" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 -#: ../../../config/actions.xml:841 -msgid "Buscar Notificación" -msgstr "Szukaj powiadomień" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:103 -#: ../../../config/actions.xml:811 -msgid "Ver Notificación" -msgstr "Wyświetl powiadomienia" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 -#: ../../../config/actions.xml:835 -msgid "Marcar Notificación" -msgstr "Sprawdź powiadomienia" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 -#: ../../../config/actions.xml:829 -msgid "Eliminar Notificación" -msgstr "Usuń powiadomienia" - -#: ../../../modules/web/Controllers/PublicLinkController.php:275 -#: ../../../modules/web/Controllers/PublicLinkController.php:310 -msgid "Enlace creado" -msgstr "Link utworzony" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:89 -#: ../../../modules/web/Controllers/PublicLinkController.php:175 -msgid "Enlace actualizado" -msgstr "Link zaktualizowany" - -#: ../../../modules/web/Controllers/PublicLinkController.php:245 -#: ../../../modules/web/Controllers/PublicLinkController.php:249 -msgid "Enlace eliminado" -msgstr "Link usunięty" - -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:94 -#: ../../../modules/web/Controllers/TagController.php:234 -msgid "Etiqueta creada" -msgstr "Tag dodany" - -#: ../../../modules/api/Controllers/TagController.php:118 -#: ../../../modules/api/Controllers/TagController.php:123 -#: ../../../modules/web/Controllers/TagController.php:265 -msgid "Etiqueta actualizada" -msgstr "Tag zaktualizowany" - -#: ../../../modules/api/Controllers/TagController.php:147 -#: ../../../modules/api/Controllers/TagController.php:152 -#: ../../../modules/web/Controllers/TagController.php:208 -msgid "Etiqueta eliminada" -msgstr "Tag usunięty" - -#: ../../../modules/web/Controllers/PluginController.php:181 -#: ../../../modules/web/Controllers/PluginController.php:184 -msgid "Plugin habilitado" -msgstr "Plugin włączony" - -#: ../../../modules/web/Controllers/PluginController.php:206 -#: ../../../modules/web/Controllers/PluginController.php:209 -msgid "Plugin deshabilitado" -msgstr "Plugin wyłączony" - -#: ../../../modules/web/Controllers/PluginController.php:231 -#: ../../../modules/web/Controllers/PluginController.php:234 -msgid "Plugin restablecido" -msgstr "Resetuj plugin" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:55 -msgid "Favorito añadido" -msgstr "Dodano do ulubionych" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:73 -msgid "Favorito eliminado" -msgstr "Favorite deleted" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:269 -msgid "Importación de usuarios de LDAP realizada" -msgstr "Zakończono import użytkowników LDAP" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1096 -#, fuzzy -msgid "Error al importar usuarios de LDAP" -msgstr "Błąd podczas imortowania użytkowników LDAP" - -#: ../../../modules/web/Controllers/NotificationController.php:297 -#: ../../../modules/web/Controllers/NotificationController.php:301 -msgid "Notificación leída" -msgstr "Notification read" - -#: ../../../modules/web/Controllers/NotificationController.php:266 -#: ../../../modules/web/Controllers/NotificationController.php:270 -msgid "Notificación eliminada" -msgstr "Powiadomienie usunięto" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1192 -msgid "Solicitud enviada por correo" -msgstr "Żądania wysłane mailem" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 -msgid "Solicitud no enviada por correo" -msgstr "Żądanie mailem nie zostało wysłane" - -#: ../../../modules/web/Controllers/AccountController.php:943 -msgid "Solicitud realizada" -msgstr "Żądanie wykonane" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:427 -#, fuzzy -msgid "Ver Enlace Público" -msgstr "Pokaż publiczny link" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:233 -msgid "Detalles de Plugin" -msgstr "Szczegóły pluginu" - -#: ../../../../inc/SP/Controller/LoginController.class.php:375 -#, fuzzy -msgid "Error al obtener la clave maestra del usuario" -msgstr "Błąd przy pobieraniu głównego hasła" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:327 -msgid "Es necesaria su clave anterior" -msgstr "Twoje poprzednie hasło jest potrzebne" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:452 -#: ../../../../lib/SP/Services/Auth/LoginService.php:515 -msgid "Servidor LDAP" -msgstr "Serwer LDAP" - -#: ../../../../inc/SP/Core/Acl.class.php:198 -msgid "Buscar Categorías" -msgstr "Szukaj kategorii" - -#: ../../../../inc/SP/Core/Acl.class.php:199 -msgid "Añadir Categoría" -msgstr "Dodaj kategorię" - -#: ../../../../inc/SP/Core/Acl.class.php:203 -msgid "Buscar Clientes" -msgstr "Szukaj klienta" - -#: ../../../../inc/SP/Core/Acl.class.php:204 -msgid "Añadir Cliente" -msgstr "Dodaj klienta" +#: ../../../config/actions.xml:67 +msgid "Gestión Campos Personalizados" +msgstr "Zarządzanie polami" #. (itstool) path: action/text #: ../../../config/actions.xml:79 @@ -5095,2622 +4692,36 @@ msgstr "Zarządzanie kontami" msgid "Gestión de Etiquetas" msgstr "Zarządzanie tagami" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 -msgid "No es posible crear el directorio de backups (\"%s\")" -msgstr "Błąd tworzenia katalogu z kopiami bezpieczeństwa (\"%s\")" - -#: ../../../../lib/SP/Core/Events/EventDispatcherBase.php:85 -msgid "Observador no inicializado" -msgstr "Obserwator nie został zainicjalizowany" - -#: ../../../../lib/SP/Core/Events/Event.php:56 -msgid "Es necesario un objeto" -msgstr "Objekt jest wymagany" - -#: ../../../../lib/SP/Services/Install/Installer.php:141 -#, fuzzy -msgid "Indicar la clave de la BBDD" -msgstr "Podaj hasło bazy danych" - -#: ../../../../lib/SP/Services/Install/Installer.php:143 -msgid "Clave del usuario administrador de la Base de Datos" -msgstr "Hasło administratora bazy danych" - -#: ../../../../lib/SP/Services/Install/MySQL.php:181 -msgid "Error al crear el usuario de conexión a MySQL '%s'" -msgstr "Błąd przy nawiązywaniu połączenia MySQL użytkownikiem '%s'" - -#: ../../../../lib/SP/Services/Install/MySQL.php:251 -#, fuzzy -msgid "La BBDD no existe" -msgstr "Baza danych nie istnieje" - -#: ../../../../lib/SP/Services/Install/MySQL.php:253 -msgid "Es necesario crearla y asignar los permisos necesarios" -msgstr "Stwórz i nadaj odpowiednie uprawnienia" - -#: ../../../../lib/SP/Services/Install/MySQL.php:237 -#, fuzzy -msgid "Error al establecer permisos de la BBDD ('%s')" -msgstr "Błąd przy ustawianiu uprawnień bazy danych ('%s')" - -#: ../../../../lib/SP/Plugin/PluginManager.php:113 -#: ../../../../lib/SP/Plugin/PluginManager.php:256 -#, fuzzy -msgid "No es posible cargar el plugin \"%s\"" -msgstr "Błąd ładowania pluginu \"%s\"" - -#: ../../../../lib/SP/Mvc/View/Template.php:341 -msgid "La plantilla no contiene archivos" -msgstr "Szablon nie zawiera plików" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:121 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:125 -msgid "Error al actualizar la configuración" -msgstr "Błąd aktualizacji konfiguracji" - -#: ../../../modules/web/Forms/AuthTokenForm.php:91 -msgid "Usuario no indicado" -msgstr "Brak ustawionego użytkownika" - -#: ../../../modules/web/Forms/AuthTokenForm.php:95 -msgid "Acción no indicada" -msgstr "Brak ustwionej akcji" - -#: ../../../modules/web/Forms/TagForm.php:82 -msgid "Es necesario un nombre de etiqueta" -msgstr "Nazwa tagu jest wymagana" - -#: ../../../../lib/SP/Http/XMLRPCResponseParse.php:69 -msgid "Respuesta XML-RPC inválida" -msgstr "Nieprawidłowa odpowiedź XML-RPC" - -#: ../../../../lib/SP/Services/Import/ImportService.php:89 -msgid "Tipo mime no soportado (\"%s\")" -msgstr "Niewspierany typ mime (\"%s\")" - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:106 -msgid "Id de categoría no definido. No es posible importar cuenta." -msgstr "Brak id kategorii. Brak możliwosci importu konta." - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:110 -#, fuzzy -msgid "Id de cliente no definido. No es posible importar cuenta." -msgstr "Brak id klienta. Nie można zaimportować konta." - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:69 -msgid "Clave de encriptación no indicada" -msgstr "Brak hasła szyfrowania" - -#: ../../../../lib/SP/Services/Import/CsvImport.php:50 -msgid "Formato detectado: %s" -msgstr "Wykryty format: %s" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 -msgid "El nodo \"%s\" no existe" -msgstr "Węzeł \"%s\" nie istnieje" - -#: ../../../../lib/SP/Util/ImageUtil.php:48 -#: ../../../../lib/SP/Util/ImageUtil.php:99 -#: ../../../../lib/SP/Util/Util.php:180 ../../../../lib/SP/Util/Util.php:182 -msgid "Extensión '%s' no cargada" -msgstr "Rozszerzenie '%s' nie jest załadowane" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:58 -msgid "Categoría duplicada" -msgstr "Zduplikowana kategoria" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:77 -#: ../../../../lib/SP/Services/Category/CategoryService.php:98 -#: ../../../../lib/SP/Services/Category/CategoryService.php:115 -msgid "Categoría no encontrada" -msgstr "Kategorii nie znaleziono" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:75 -#, fuzzy -msgid "Error al crear el campo personalizado" -msgstr "Błąd przy tworzeniu własnego pola" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:259 -#, fuzzy -msgid "Error al eliminar el campo personalizado" -msgstr "Błąd przy usuwaniu własnego pola" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:118 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:165 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:193 -#, fuzzy -msgid "Error al actualizar el campo personalizado" -msgstr "Błąd przy aktualizacji własnego pola" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:162 -msgid "Campo personalizado no encontrado" -msgstr "Nie znaleziono własnego pola" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:215 -msgid "No se encontraron campos personalizados" -msgstr "Nie znaleziono własnych pól" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:68 -#, fuzzy -msgid "No hay datos de campos personalizados" -msgstr "Brak danych z własnych pól" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldsUtil.php:263 -#, fuzzy -msgid "Error al migrar campos personalizados" -msgstr "Błąd migracji własnych pól" - -#: ../../../../inc/SP/Mgmt/Files/File.class.php:103 -msgid "Archivo subido" -msgstr "Upload pliku" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:55 -msgid "Grupo en uso" -msgstr "Grupa w użyciu" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 -msgid "Actualizar Grupo" -msgstr "Aktualizacja grupy" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:140 -msgid "Error al asignar los usuarios al grupo" -msgstr "Błąd przypisywania użytkowników do grupy" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:78 -#, fuzzy -msgid "Error al crear la notificación" -msgstr "Błąd przy dodawaniu powiadomień" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:137 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:156 -#, fuzzy -msgid "Error al eliminar la notificación" -msgstr "Błąd przy usuwaniu powiadomień" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:118 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:429 -#, fuzzy -msgid "Error al modificar la notificación" -msgstr "Błąd aktualizacji powiadomień" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:212 -msgid "Error al obtener la notificación" -msgstr "Błąd pobierania powiadomień" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:242 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:466 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:499 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:533 -#, fuzzy -msgid "Error al obtener las notificaciones" -msgstr "Błąd pobierania powiadomień" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:70 -#, fuzzy -msgid "Error al crear el plugin" -msgstr "Błąd przy dodawaniu pluginu" - -#. (itstool) path: action/text -#: ../../../../lib/SP/Plugin/PluginManager.php:245 -#: ../../../config/actions.xml:535 -msgid "Nuevo Plugin" -msgstr "Nowy plugin" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:232 -#, fuzzy -msgid "Error al eliminar el plugin" -msgstr "Błąd przy usuwaniu pluginu" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:104 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:348 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:368 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:388 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:408 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:427 -#, fuzzy -msgid "Error al actualizar el plugin" -msgstr "Błąd aktualizacji pluginu" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:42 -msgid "Habilitado" -msgstr "Włączone" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:239 -#, fuzzy -msgid "Error al crear perfil" -msgstr "Błąd tworzenia profilu" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:73 -msgid "Perfil en uso" -msgstr "Profil w użyciu" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:79 -#, fuzzy -msgid "Error al eliminar perfil" -msgstr "Błąd usuwania profilu" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:141 -#, fuzzy -msgid "Error al modificar perfil" -msgstr "Błąd modyfikacji profilu" - -#: ../../../modules/web/Controllers/AccountController.php:223 -msgid "Enlace visualizado" -msgstr "Link wyświetlony" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:341 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:389 -#, fuzzy -msgid "Error al actualizar enlace" -msgstr "Błąd przy aktualizacji linku" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:255 -msgid "Enlace ya creado" -msgstr "Link już istnieje" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:282 -#, fuzzy -msgid "Error al crear enlace" -msgstr "Błąd przy tworzeniu linku" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:63 -#, fuzzy -msgid "Error al eliminar enlace" -msgstr "Błąd przy usuwaniu linku" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:424 -msgid "Error al renovar enlace" -msgstr "Błąd przy odświeżaniu linku" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:741 -#: ../../../../inc/themes/material-blue/views/account/actions.inc:69 -msgid "Actualizar Enlace" -msgstr "Aktualizuj link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:466 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:507 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:528 -#, fuzzy -msgid "Error al obtener enlace" -msgstr "Błąd pobierania linku" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:190 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "ON" -msgstr "Wł." - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "OFF" -msgstr "Wył." - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:60 -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:108 -msgid "Etiqueta duplicada" -msgstr "Zduplikowany tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:69 -#, fuzzy -msgid "Error al crear etiqueta" -msgstr "Błąd przy tworzeniu tagu" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:262 -#, fuzzy -msgid "Error al eliminar etiqueta" -msgstr "Błąd przy usuwaniu tagu" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:118 -#, fuzzy -msgid "Error al actualizar etiqueta" -msgstr "Błąd przy aktualizacji tagu" - -#: ../../../../inc/SP/Mgmt/Tags/Tag.class.php:181 -#, fuzzy -msgid "Error al obtener etiqueta" -msgstr "Błąd pobierania tagu" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:63 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:430 -msgid "Login/email de usuario duplicados" -msgstr "Email/login istnieje" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:234 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:551 -#, fuzzy -msgid "Error al obtener los datos del usuario" -msgstr "Błąd pobierania danych użytkownika" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:781 -msgid "Sincronización LDAP" -msgstr "Synchronizacja LDAP" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:264 -#, fuzzy -msgid "No se encontraron objetos para sincronizar" -msgstr "Brak elementów do synchronizacji" - -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:128 -msgid "Sincronización finalizada" -msgstr "Synchronizacja zakończona" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:97 -#, fuzzy -msgid "Error al migrar cuenta de usuario" -msgstr "Błąd przy migracji konta użytkownika" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:137 -#, fuzzy -msgid "Error al obtener grupo de usuarios" -msgstr "Błąd pobierania grup użytkowników" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:112 -#, fuzzy -msgid "Error en comprobación de hash" -msgstr "Błąd przy sprawdzaniu hasha" - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:87 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:155 -#, fuzzy -msgid "Hash inválido o expirado" -msgstr "Zły lub wygasły hash" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:86 -msgid "Error al generar el hash de recuperación" -msgstr "Błąd podczas generowania hasha odzyskiwania" - -#: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:57 -msgid "Actualizando preferencias" -msgstr "Aktualizacja ustawień" - -#: ../../../../lib/SP/Storage/XmlHandler.php:79 -msgid "No es posible leer/escribir el archivo: %s" -msgstr "Błąd odczytu/zapisu pliku: %s" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:167 -#, fuzzy -msgid "No hay elementos para guardar" -msgstr "Brak elementów do zapisania" - -#: ../../../../lib/SP/Util/Connection.php:157 -msgid "Socket no inicializado" -msgstr "Gniazdo niezainicjalizowane" - -#: ../../../../lib/SP/Util/Connection.php:164 -#, fuzzy -msgid "Error al enviar datos" -msgstr "Błąd podczas wysyłania danych" - -#: ../../../../lib/SP/Util/Util.php:243 -msgid "Respuesta" -msgstr "Odpowiedź" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 -msgid "Fallo de autentificación" -msgstr "Błąd poświadczeń" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 -#, fuzzy -msgid "Error al realizar la consulta" -msgstr "Błąd przy wykonywaniu zapytania" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 -msgid "URL de conexión no establecida" -msgstr "Nie podano URLa połączenia" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:33 -msgid "Ver Detalles" -msgstr "Pokaż szczegóły" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:44 -msgid "Copiar" -msgstr "Kopiuj" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:50 -msgid "Restaurar" -msgstr "Przywróć" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:55 -msgid "Descargar" -msgstr "Pobierz" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:64 -msgid "Crítico" -msgstr "Krytyczne" - -#: ../../../config/strings.js.inc:73 -#, fuzzy -msgid "Recibir notificaciones?" -msgstr "Wysyłaj powiadomienia?" - -#: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 -msgid "Marcar Favorito" -msgstr "Oznacz jako ulubione" - -#. (itstool) path: action/text -#: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 -#: ../../../config/actions.xml:253 -msgid "Eliminar Favorito" -msgstr "Usuń ulubione" - -#: ../../../config/strings.js.inc:76 -msgid "Limpiar Selección" -msgstr "Usuń zaznaczenie" - -#: ../../../config/strings.js.inc:77 -msgid "Mostrar Favoritos" -msgstr "Pokaż ulubione" - -#: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 -msgid "Mostrar Todos" -msgstr "Pokaż wszystkie" - -#: ../../../config/strings.js.inc:81 -msgid "Ahora" -msgstr "Teraz" - -#: ../../../config/strings.js.inc:82 -msgid "" -"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" -msgstr "Ten proces importuje wykrytych użytkowników LDAP. Chcesz kontynuować?" - -#: ../../../config/strings.js.inc:83 -msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" -msgstr "Ta akcja resetuje wszystkie dane pluginu. Chcesz kontynuować?" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 -msgid "Fecha Caducidad Clave" -msgstr "Data wygaśnięcia hasła" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 -msgid "Seleccionar Fecha" -msgstr "Wybierz datę" - -#: ../../../../inc/themes/material-blue/views/account/account-permissions.inc:9 -msgid "Accesos" -msgstr "Dostęp" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 -msgid "Seleccionar Usuarios" -msgstr "Wybierz użytkowników" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 -msgid "Seleccionar Grupos" -msgstr "Wybierz grupy" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 -msgid "Cuenta Privada" -msgstr "Prywatne konto" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 -msgid "Privada" -msgstr "Prywatne" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 -msgid "Seleccionar Etiquetas" -msgstr "Wybierz tagi" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 -msgid "Cuenta Vinculada" -msgstr "Podlinkowane konto" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 -msgid "Seleccionar Cuenta" -msgstr "Wybierz konto" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Publiczny link" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 -#: ../../../config/actions.xml:421 -msgid "Crear Enlace Público" -msgstr "Stwórz publiczny link" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 -msgid "Detalles" -msgstr "Szczegóły" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 -msgid "Fecha de Clave" -msgstr "Password Date" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Tamaño máximo de archivo: %d MB" -msgstr "Maksymalny rozmiar pliku: %d MB" - -#: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:3 -msgid "Cuentas Vinculadas" -msgstr "Podlinkowane konta" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 -msgid "Clave Caducada" -msgstr "Hasło wygasło" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 -msgid "Ver en Wiki" -msgstr "Zobacz w Wiki" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 -msgid "Buscar cuentas con la clave caducada" -msgstr "Szukaj kont z wygasłym hasłem" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 -msgid "Filtrar Favoritos" -msgstr "Filtruj ulubione" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 -msgid "Más Filtros" -msgstr "Więcej filtrów" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 -msgid "Seleccionar Etiqueta" -msgstr "Wybierz tag" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 -msgid "Copia BBDD" -msgstr "Kopia bezpieczeństwa bazy danych" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 -msgid "Copia sysPass" -msgstr "Kopia bezpieczeństwa sysPass" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 -msgid "Eventos" -msgstr "Zdarzenia" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 -msgid "Habilitar Syslog" -msgstr "Włącz syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 -msgid "Habilitar Syslog Remoto" -msgstr "Włącz zdalny syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 -msgid "Nombre o dirección IP" -msgstr "Nazwa hosta lub IP" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 -#: ../../../config/actions.xml:73 -msgid "Enlaces Públicos" -msgstr "Linki publiczne" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 -msgid "Habilitar Enlaces Públicos" -msgstr "Włącz publiczne linki" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 -msgid "" -"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " -"una cuenta." -msgstr "" -"Enables the ability to create public links to view an account's details" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 -msgid "" -"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." -msgstr "Podlinkowane konta będą widoczne dla wszystkich posiadających link." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 -msgid "" -"Para crear enlaces, los usuarios tienen que tener activada la opción en su " -"perfl." -msgstr "" -"Aby tworzyć linki, użytkownicy muszą aktywować ustawienie w swoich profilach." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 -msgid "Tiempo de caducidad" -msgstr "Czas wygaśnięcia" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 -msgid "Número máximo de visitas" -msgstr "Maksymalna ilość wyświetleń" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 -msgid "Usar imagen para clave" -msgstr "Używaj obrazków dla haseł" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 -msgid "La clave de la cuenta es visualizada como una imagen." -msgstr "Hasło jest wyświetlone jako obrazek" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 -msgid "Copia de Configuración" -msgstr "Kopia bezpieczeństwa konfiguracji" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 -msgid "Plugins Cargados" -msgstr "Załadowane pluginy" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 -msgid "Resultados" -msgstr "Wyniki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 -msgid "DokuWiki API" -msgstr "DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 -msgid "Habilitar API de DokuWiki" -msgstr "Włącz DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 -msgid "" -"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." -msgstr "Włącza DokuWki XML-RPC API dla linków Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 -msgid "" -"Para que esta característica funcione, es necesario habilitar los enlaces " -"Wiki para el filtrado de cuentas." -msgstr "Aby to zadziałało, musisz włączyć linki Wiki dla filtrowania kont" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 -msgid "URL API" -msgstr "API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 -msgid "URL de la API de DokuWiki." -msgstr "DokuWiki API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 -msgid "URL Base" -msgstr "Bazowy URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 -msgid "URL base de DokuWiki." -msgstr "Bazowy URL DokuWiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 -#, fuzzy -msgid "Usuario para conectar a la API de DokuWiki." -msgstr "Użytkownik API DokuWiki." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 -msgid "Namespace" -msgstr "Namespace" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 -msgid "Namespace utilizado para buscar las páginas." -msgstr "Namespace użyty do stron wyszukiwania." - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 -msgid "Nivel" -msgstr "Poziom" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 -msgid "Eliminar Seleccionados" -msgstr "Usuń zaznaczone" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 -msgid "Nombre del plugin" -msgstr "Nazwa pluginu" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 -#, fuzzy -msgid "Versión del plugin" -msgstr "Wersja pluginu" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 -msgid "Versión Compatible" -msgstr "Zgodna wersja" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 -msgid "Versión de sysPass compatible" -msgstr "zgodna wersja sysPass" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 -msgid "Autor" -msgstr "Autor" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 -msgid "Autor del plugin" -msgstr "Autor pluginu" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 -msgid "Publicar enlace a cuenta" -msgstr "Udostępnij link do konta" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 -msgid "Publicar Enlace" -msgstr "Udostępnij link" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 -msgid "Crear cuenta privada" -msgstr "Utwórz prywatne konto" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 -msgid "Asignar permisos" -msgstr "Przydziel prawa" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 -msgid "Gestión de enlaces" -msgstr "Zarządzanie linkami" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 -msgid "Gestión de cuentas" -msgstr "Zarządzanie kontami" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 -msgid "Gestión de etiquetas" -msgstr "Zarządzanie tagami" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 -msgid "Hash" -msgstr "Hash" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 -msgid "Uso" -msgstr "Użyj" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:54 -#: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 -msgid "Nombre de la etiqueta" -msgstr "Nazwa tagu" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:40 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 -msgid "Hay %d notificaciones pendientes" -msgstr "Masz %d nieprzeczytanych powiadomień" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:165 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 -msgid "Demo" -msgstr "Demo" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 -msgid "Instalación %s" -msgstr "Instalacja %s" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 -msgid "Admin de sysPass" -msgstr "Administrator sysPass" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 -msgid "Clave Anterior" -msgstr "Poprzednie hasło" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 -msgid "Actualización %s" -msgstr "Aktualizuj %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 -#, fuzzy -msgid "" -"Este código se encuentra en el archivo de configuración de sysPass con la " -"etiqueta \"upgradeKey\"" -msgstr "" -"Ten kod jest podany w pliku koniguracyjnym sysPassa w polu \"upgradeKey\"" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 -#: ../../../config/actions.xml:277 -msgid "Ver Wiki" -msgstr "Zobacz Wiki" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 -msgid "Resultados de búsqueda de '%s'" -msgstr "Wyniki wyszukiwania dla '%s'" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 -msgid "Página" -msgstr "Strona" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 -msgid "No instalado" -msgstr "Not installed" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 -msgid "Origen" -msgstr "Source" - -#: ../../../modules/web/Controllers/AccountController.php:226 -msgid "Agente" -msgstr "Agent" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 -msgid "" -"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." -"com/join/project/fmlsBuugyv" -msgstr "" -"To improve/add the translations, you can get involved at https://poeditor." -"com/join/project/fmlsBuugyv" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 -msgid "Indica si el idioma se encuentra disponible" -msgstr "Tells whether the language is available or not." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 -msgid "" -"Si no está instalado, es necesario instalar las locales en el sistema " -"operativo. Más información en Wiki." -msgstr "" -"If it is not installed, you would need install the right operating system " -"locales. More info at Wiki." - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:42 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:112 -msgid "No hay no hay notificaciones pendientes" -msgstr "There aren't any pending notifications" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 -msgid "He realizado una copia de seguridad completa de sysPass" -msgstr "I've done a full sysPass backup" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 -msgid "Por favor espere mientras el proceso se ejecuta" -msgstr "Please, wait while the process is running" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 -msgid "Crear Usuario" -msgstr "Dodaj użytkownika" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 -msgid "Actualizar Usuario" -msgstr "Update User" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:284 -msgid "Actualizar Clave Usuario" -msgstr "Zmień hasło użytkownika" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 -msgid "Crear Grupo" -msgstr "Add Group" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 -msgid "Crear Perfil" -msgstr "Add Profile" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 -msgid "Actualizar Perfil" -msgstr "Aktualizuj profil" - -#: ../../../../lib/SP/Api/SyspassApi.php:368 -#, fuzzy -msgid "Crear Cliente" -msgstr "Dodaj klienta" - -#: ../../../../lib/SP/Api/SyspassApi.php:279 -msgid "Crear Categoría" -msgstr "Dodaj kategorię" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 -msgid "Actualizar Categoría" -msgstr "Aktualizuj kategorię" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:623 -msgid "Crear Autorización" -msgstr "Dodaj autoryzację" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -msgid "Crear Campo" -msgstr "Dodaj pole" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 -msgid "Actualizar Campo" -msgstr "Aktualizuj pole" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:731 -#, fuzzy -msgid "Crear Enlace" -msgstr "Dodaj link" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -msgid "Crear Etiqueta" -msgstr "Dodaj tag" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 -msgid "Actualizar Etiqueta" -msgstr "Aktualizuj tag" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:890 -msgid "Actualizar Plugin" -msgstr "Aktualizuj plugin" - -#: ../../../../lib/SP/Api/SyspassApi.php:188 -msgid "Crear Cuenta" -msgstr "Dodaj konto" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1091 -msgid "Usuarios importados" -msgstr "Imported users" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 -#: ../../../modules/web/Controllers/AccountController.php:926 -msgid "Solicitud" -msgstr "Żądanie" - -#: ../../../../lib/SP/Core/Acl/Acl.php:299 -msgid "Acceso denegado" -msgstr "Odmowa dostępu" - -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:115 -msgid "Error al añadir las etiquetas de la cuenta" -msgstr "Error while adding the account's tags" - -#: ../../../../lib/SP/Util/ErrorUtil.php:148 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 -#, fuzzy -msgid "Se ha producido una excepción" -msgstr "Wystąpił wyjątek" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:179 -msgid "Nueva Notificación" -msgstr "Nowe powiadomienia" - -#: ../../../modules/web/Controllers/UserGroupController.php:219 -#: ../../../modules/web/Controllers/UserGroupController.php:222 -msgid "Grupos eliminados" -msgstr "Groups deleted" - -#: ../../../modules/web/Controllers/UserProfileController.php:203 -#: ../../../modules/web/Controllers/UserProfileController.php:206 -msgid "Perfiles eliminados" -msgstr "Profiles deleted" - -#: ../../../modules/web/Controllers/ClientController.php:201 -#: ../../../modules/web/Controllers/ClientController.php:204 -msgid "Clientes eliminados" -msgstr "Clients deleted" - -#: ../../../modules/web/Controllers/CategoryController.php:206 -#: ../../../modules/web/Controllers/CategoryController.php:209 -msgid "Categorías eliminadas" -msgstr "Categories deleted" - -#: ../../../modules/web/Controllers/AuthTokenController.php:212 -#: ../../../modules/web/Controllers/AuthTokenController.php:215 -msgid "Autorizaciones eliminadas" -msgstr "Authorizations deleted" - -#: ../../../modules/web/Controllers/CustomFieldController.php:197 -#: ../../../modules/web/Controllers/CustomFieldController.php:200 -msgid "Campos eliminados" -msgstr "Fields deleted" - -#: ../../../modules/web/Controllers/PublicLinkController.php:234 -#: ../../../modules/web/Controllers/PublicLinkController.php:237 -msgid "Enlaces eliminados" -msgstr "Links deleted" - -#: ../../../modules/web/Controllers/TagController.php:200 -msgid "Etiquetas eliminadas" -msgstr "Tags deleted" - -#: ../../../modules/web/Controllers/AccountFileController.php:320 -#: ../../../modules/web/Controllers/AccountFileController.php:323 -msgid "Archivos eliminados" -msgstr "Files deleted" - -#: ../../../modules/web/Controllers/AccountController.php:879 -#: ../../../modules/web/Controllers/AccountController.php:882 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:99 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:102 -#: ../../../modules/web/Controllers/AccountManagerController.php:131 -#: ../../../modules/web/Controllers/AccountManagerController.php:134 -msgid "Cuentas eliminadas" -msgstr "Accounts removed" - -#: ../../../modules/web/Controllers/NotificationController.php:327 -#: ../../../modules/web/Controllers/NotificationController.php:330 -msgid "Notificación creada" -msgstr "Notification created" - -#: ../../../modules/web/Controllers/NotificationController.php:251 -#: ../../../modules/web/Controllers/NotificationController.php:254 -msgid "Notificaciones eliminadas" -msgstr "Notifications deleted" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:270 -msgid "Usando clave temporal" -msgstr "Using temporary password" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:131 -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:181 -msgid "Clave temporal caducada" -msgstr "Temporary password expired" - -#: ../../../../inc/SP/Core/Init.class.php:506 -msgid "Sesión" -msgstr "Session" - -#: ../../../../lib/SP/Services/Install/MySQL.php:361 -msgid "Error al comprobar la base de datos" -msgstr "Error while checking the database" - -#: ../../../../lib/SP/Services/Install/MySQL.php:363 -msgid "Intente de nuevo la instalación" -msgstr "Please, try the installation again" - -#: ../../../modules/web/Forms/NotificationForm.php:92 -msgid "Es necesario un componente" -msgstr "A component is needed" - -#: ../../../modules/web/Forms/NotificationForm.php:96 -msgid "Es necesario un tipo" -msgstr "Typ jest wymagany" - -#: ../../../modules/web/Forms/NotificationForm.php:106 -msgid "Es necesario un destinatario" -msgstr "A target is needed" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:167 -msgid "Error procesando línea" -msgstr "Error while processing line" - -#: ../../../modules/web/Controllers/ConfigImportController.php:76 -msgid "Cuentas importadas" -msgstr "Accounts imported" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:164 -msgid "Archivo no encontrado" -msgstr "Brak pliku" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:80 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:98 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:187 -#: ../../../../lib/SP/Services/UserGroup/UserToUserGroupService.php:57 -msgid "Grupo no encontrado" -msgstr "Brak grupy" - -#: ../../../../lib/SP/Services/Notification/NotificationService.php:102 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:121 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:180 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:210 -msgid "Notificación no encontrada" -msgstr "Notification not found" - -#: ../../../../lib/SP/Services/Plugin/PluginService.php:92 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:153 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:186 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:206 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:224 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:241 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:258 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:275 -msgid "Plugin no encontrado" -msgstr "Brak pluginu" - -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:65 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:97 -msgid "Perfil no encontrado" -msgstr "Brak profilu" - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:122 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:145 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:219 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:311 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:346 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:367 -msgid "Enlace no encontrado" -msgstr "Brak linku" - -#: ../../../../lib/SP/Services/Tag/TagService.php:75 -#: ../../../../lib/SP/Services/Tag/TagService.php:94 -#: ../../../../lib/SP/Services/Tag/TagService.php:111 -msgid "Etiqueta no encontrada" -msgstr "Brak tagu" - -#: ../../../../lib/SP/Services/User/UserService.php:192 -msgid "Usuario no encontrado" -msgstr "Brak użytkownika" - -#: ../../../../lib/SP/Storage/Database/Database.php:131 -msgid "Consulta en blanco" -msgstr "Puste zapytanie" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 -msgid "Cuenta Privada Grupo" -msgstr "Private Account for Group" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 -msgid "Privada Grupo" -msgstr "Private for Group" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 -msgid "Sólo es necesaria para archivos XML de sysPass encriptados." -msgstr "Wymagane tylko dla zaszyfrowanych plików XML sysPassa" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 -msgid "" -"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " -"la actual." -msgstr "" -"Wymagane tylko dla plików XML sysPassa zaszyfrowanych innym głównym hasłem " -"niż obecne." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 -msgid "Sólo es necesario para archivos CSV." -msgstr "Wymagane tylko dla plików CSV" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 -#, fuzzy -msgid "" -"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" -"\"notas\"" -msgstr "" -"\"nazwa_konta\";\"klient\";\"kategoria\";\"url\";\"uzytkownik\";\"haslo\";" -"\"notatki\" " - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 -msgid "Crear cuenta privada para grupo" -msgstr "Create private account for group" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 -msgid "Notificación global" -msgstr "Global notification" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 -msgid "Global" -msgstr "Global" - -#: ../../../../lib/SP/Services/Service.php:115 -msgid "No es posible iniciar una transacción" -msgstr "Unable to start a transaction" - -#: ../../../../lib/SP/Services/Crypt/MasterPassService.php:101 -#: ../../../../lib/SP/Services/Import/ImportService.php:77 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "No es posible finalizar una transacción" -msgstr "Unable to finish a transaction" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 -msgid "Clave Maestra %s" -msgstr "Master Password %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 -msgid "" -"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " -"el siguiente inicio." -msgstr "" -"A new sysPass master password has been generated, so the next time you log " -"into the application it will be requested." - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 -msgid "La nueva clave es: %s" -msgstr "The new Master Password is: %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 -msgid "No olvide acceder lo antes posible para guardar los cambios." -msgstr "" -"Please, don't forget to log in as soon as possible to save the changes." - -#: ../../../config/strings.js.inc:84 -msgid "Este proceso puede durar algo de tiempo. Desea continuar?" -msgstr "This process could long some time. Do you wish to continue?" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 -msgid "Búsqueda" -msgstr "Searching" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 -msgid "" -"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." -msgstr "Sends an email to all users or only to those whose group is selected." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 -msgid "Enviar correo" -msgstr "Send email" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 -msgid "XML" -msgstr "XML" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 -msgid "CSV" -msgstr "CSV" - -#: ../../../../lib/SP/Services/Account/AccountService.php:163 -#: ../../../../lib/SP/Services/Account/AccountService.php:599 -msgid "Cuenta no encontrada" -msgstr "Account not found" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:161 -msgid "Hash de clave maestra actualizado" -msgstr "Zaktualizowano hash głównego hasła" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 -msgid "Error al actualizar el hash de la clave maestra" -msgstr "Błąd podczas aktualizacji hasha głównego hasła" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:210 -#: ../../../config/actions.xml:823 -msgid "Editar Notificación" -msgstr "Edit Notification" - -#: ../../../modules/web/Controllers/UserController.php:266 -#: ../../../modules/web/Controllers/UserController.php:269 -msgid "Usuarios eliminados" -msgstr "Usunięto użytkownika" - -#: ../../../modules/web/Controllers/NotificationController.php:360 -#: ../../../modules/web/Controllers/NotificationController.php:363 -msgid "Notificación actualizada" -msgstr "Notification updated" - -#: ../../../../lib/SP/Storage/Database/Database.php:259 -msgid "Restricción de integridad" -msgstr "Ograniczenie spójności" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 -msgid "Actualizar hash de clave maestra" -msgstr "Aktualizuj hash głównego hasła" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 -msgid "Modificada" -msgstr "Zmienione" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 -msgid "Eliminada" -msgstr "Usunięte" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 -msgid "Cuentas (H)" -msgstr "Konta (H)" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:194 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:224 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:124 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:148 -msgid "Clave de encriptación incorrecta" -msgstr "Złe hasło" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:7 -msgid "Área de Texto" -msgstr "Pole tekstowe" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 -msgid "Devolver las cuentas en las que 'login' es propietario" -msgstr "Get the accounts in which the user login \"login\" is the owner" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 -msgid "Devolver las cuentas con grupo principal 'group_name'" -msgstr "Get the accounts which have the main group name \"group_name\"" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 -msgid "Devolver las cuentas privadas del usuario actual" -msgstr "Get the private accounts for the current user" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 -msgid "OP Cache" -msgstr "OP Cache" - -#: ../../../modules/web/Controllers/UpgradeController.php:71 -msgid "Código de seguridad incorrecto" -msgstr "Wrong security code" - -#: ../../../modules/web/Controllers/UpgradeController.php:67 -msgid "Es necesario confirmar la actualización" -msgstr "The updating need to be confirmed" - -#: ../../../modules/web/Controllers/UpgradeController.php:92 -msgid "En 5 segundos será redirigido al login" -msgstr "You will be redirected to log in within 5 seconds" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:70 -msgid "Error al aplicar la actualización de la aplicación" -msgstr "Error while applying the application update" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 -msgid "Tamaño máximo de archivo en kilobytes" -msgstr "Maximum file size in kilobytes" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 -msgid "Actualización de Aplicación" -msgstr "Application Update" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 -msgid "" -"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " -"o indique los IDs por defecto para los elementos huérfanos." -msgstr "" -"Some orphaned items have been found. Please, modify those items or enter the " -"default IDs for them." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 -msgid "Introducir un ID de usuario válido para cuentas" -msgstr "Enter a valid user ID for the accounts" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 -msgid "Introducir un ID de categoría válido para cuentas" -msgstr "Enter a valid category ID for the accounts" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 -msgid "Introducir un ID de cliente válido para cuentas" -msgstr "Enter a valid client ID for the accounts" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 -msgid "Introducir un ID de grupo válido para usuarios" -msgstr "Enter a valid group ID for the users" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 -msgid "Introducir un ID de perfil válido para usuarios" -msgstr "Enter a valid profile ID for the users" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 -msgid "" -"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " -"necesario reencriptar los datos almacenados" -msgstr "" -"This update uses a new encryption schema, so it will be needed to reencrypt " -"the whole encrypted data." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 -msgid "" -"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." -msgstr "It will be updated %s accounts. This process could take some time." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 -msgid "Para más información consulte: %s" -msgstr "You could get more info on: %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 -msgid "Introducir login de usuario válido" -msgstr "Enter a valid user login" - -#: ../../../../lib/SP/Services/Api/ApiService.php:96 -#: ../../../../lib/SP/Services/Auth/LoginService.php:137 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:103 -#: ../../../modules/web/Controllers/UserPassResetController.php:124 -msgid "Intentos excedidos" -msgstr "Attempts exceeded" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 -msgid "Clave del token" -msgstr "Token's password" - -#: ../../../../lib/SP/Services/Track/TrackService.php:162 -msgid "Intentos excedidos (%d/%d)" -msgstr "Attempts exceeded (%d/%d)" - -#: ../../../../lib/SP/Http/Address.php:49 -#: ../../../../lib/SP/Http/Address.php:51 -#: ../../../../lib/SP/Http/Address.php:68 -#: ../../../../lib/SP/Http/Address.php:70 -#: ../../../../lib/SP/Http/Address.php:90 -#: ../../../../lib/SP/Http/Address.php:109 -msgid "IP inválida" -msgstr "Invalid IP" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:139 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:277 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:291 -msgid "Token no encontrado" -msgstr "Token not found" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:68 -msgid "Error al crear track" -msgstr "Error while creating track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:85 -msgid "Error al eliminar track" -msgstr "Error while removing the track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:102 -msgid "Error al actualizar track" -msgstr "Error while updating the track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:146 -msgid "Error al obtener track" -msgstr "Error while retrieving the track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:169 -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:202 -msgid "Error al obtener tracks" -msgstr "Error while retrieving the tracks" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 -msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." -msgstr "The exported items are accounts, clients, categories and tags." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 -msgid "Si no se indican los IDs, se crearán nuevos elementos." -msgstr "If the items IDs are not set, they will be created." - -#: ../../../../lib/SP/Services/Task/TaskService.php:184 -msgid "Esperando actualización de progreso ..." -msgstr "Waiting for progress updating ..." - -#: ../../../../inc/SP/Core/Upgrade/Account.class.php:47 -msgid "Actualizando IDs de cuentas" -msgstr "Updating account IDs" - -#: ../../../../inc/SP/Core/Upgrade/Category.class.php:48 -msgid "Actualizando IDs de categorías" -msgstr "Updating category IDs" - -#: ../../../../inc/SP/Core/Upgrade/Customer.class.php:48 -msgid "Actualizando IDs de clientes" -msgstr "Updating Client IDs" - -#: ../../../../inc/SP/Core/Upgrade/Group.class.php:51 -msgid "Actualizando IDs de grupos" -msgstr "Updating group IDs" - -#: ../../../../inc/SP/Core/Upgrade/Profile.class.php:54 -msgid "Actualizando IDs de perfil" -msgstr "Updating profile IDs" - -#: ../../../../inc/SP/Core/Upgrade/User.class.php:52 -msgid "Actualizando IDs de usuarios" -msgstr "Updating user IDs" - -#: ../../../config/strings.js.inc:87 -msgid "" -"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." -msgstr "Performing task. Please, do not close the browser window/tab." - -#: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 -msgid "Incluir Letras" -msgstr "Include Letters" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 -msgid "Sesión Encriptada" -msgstr "Encrypted Session" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 -msgid "Indica si los datos de la sesión están encriptados en el servidor" -msgstr "Tells whether the session data are encrypted in the server or not" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "Sí" -msgstr "Yes" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "No" -msgstr "No" - -#: ../../../config/strings.js.inc:89 -msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." -msgstr "Cookies disabled. The application won't work properly." - -#: ../../../config/strings.js.inc:90 -msgid "Portapapeles no soportado por el navegador." -msgstr "Clipboard not supported by your browser." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 -msgid "Atributo Login" -msgstr "Login Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 -msgid "" -"Define el atributo a utilizar para el login del usuario en la importación." -msgstr "Defines the attribute for the user's login when importing." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 -msgid "" -"Habilita el acceso a los usuarios que estén incluidos en los grupos " -"secundarios." -msgstr "Grants access to the users that are included in the secondary groups." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 -msgid "" -"Por defecto el usuario de un grupo secundario es permitido si el grupo " -"secundario está establecido como el primario del usuario." -msgstr "" -"By default, the user in a secondary group is granted if the secondary group " -"is set as the user's main group." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 -msgid "Acceso Grupos Secundarios" -msgstr "Secondary Groups Access" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 -msgid "Encriptar los datos de la sesión de PHP." -msgstr "Encrypt PHP session data" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 -msgid "" -"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " -"datos almacenados no serán legibles." -msgstr "" -"This feature increases the PHP sessions security, because the stored data " -"won't be readable." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 -msgid "Encriptar Sesión" -msgstr "Encrypt Session" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 -msgid "Atributo Nombre" -msgstr "Name Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 -msgid "" -"Define el atributo a utilizar para el nombre del usuario en la importación." -msgstr "Defines the attribute for the user's name when importing." - -#: ../../../config/strings.js.inc:92 -msgid "Hay una versión más reciente del plugin {0} ({1})" -msgstr "There is a more recent version of {0} plugin ({1})" - -#: ../../../../lib/SP/Bootstrap.php:267 -msgid "Versión de PHP requerida >= %s <= %s" -msgstr "Required PHP version >= %s <= %s" - -#: ../../../../lib/SP/Config/ConfigUtil.php:111 -msgid "Actual: %s - Necesario: 750" -msgstr "Current: %s - Needed: 750" - -#: ../../../../lib/SP/Core/Acl/Actions.php:176 -msgid "Acción no encontrada" -msgstr "Action not found" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:103 -#: ../../../../lib/SP/Core/Context/ContextBase.php:126 -msgid "Contexto ya inicializado" -msgstr "Context already initialized" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:109 -msgid "Contexto inválido" -msgstr "Invalid context" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:154 -msgid "Contexto no inicializado" -msgstr "Context not initialized" - -#: ../../../../lib/SP/Core/UI/Theme.php:193 -msgid "Clase no válida para iconos" -msgstr "Invalid icons class" - -#: ../../../../lib/SP/Mvc/Model/QueryCondition.php:71 -msgid "Tipo de filtro inválido" -msgstr "Invalid filter type" - -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:95 -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:157 -msgid "Tipo de objeto incorrecto" -msgstr "Wrong object type" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 -msgid "Realizado por: %s (%s)" -msgstr "Performed by: %s (%s)" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 -msgid "Dirección IP: %s" -msgstr "IP Address: %s" - -#: ../../../../lib/SP/Providers/Mail/MailProvider.php:91 -msgid "No es posible inicializar" -msgstr "Unable to initialize" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 -#: ../../../modules/web/Controllers/NotificationController.php:267 -#: ../../../modules/web/Controllers/NotificationController.php:298 -msgid "Notificación" -msgstr "Notification" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:302 -msgid "Error al eliminar los archivos" -msgstr "Error while deleting the files" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:292 -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:315 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:501 -#: ../../../../lib/SP/Services/Account/AccountService.php:616 -msgid "Error al eliminar las cuentas" -msgstr "Error while deleting the accounts" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:253 -msgid "Error al eliminar la categorías" -msgstr "Error while deleting the categories" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:264 -#: ../../../../lib/SP/Services/Client/ClientService.php:127 -msgid "Error al eliminar los clientes" -msgstr "Error while deleting the clients" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:239 -msgid "Error al eliminar los campos personalizados" -msgstr "Error while removing the custom fields" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:61 -msgid "Error al crear el tipo de campo" -msgstr "Error while creating the field type" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:97 -msgid "Error al actualizar el tipo de campo" -msgstr "Error while updating the field type" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:179 -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:198 -msgid "Error al eliminar el tipo de campo" -msgstr "Error while deleting the field type" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:179 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:302 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:140 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:159 -msgid "Error al eliminar las notificaciones" -msgstr "Error while deleting the notifications" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:447 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:493 -msgid "El enlace no existe" -msgstr "The link does not exist" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:243 -#: ../../../../lib/SP/Services/Tag/TagService.php:126 -msgid "Error al eliminar etiquetas" -msgstr "Error while removing the tags" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:353 -#: ../../../../lib/SP/Services/User/UserService.php:209 -msgid "Error al eliminar los usuarios" -msgstr "Error while deleting the users" - -#: ../../../../lib/SP/Services/User/UserPassService.php:256 -#: ../../../../lib/SP/Services/User/UserService.php:123 -#: ../../../../lib/SP/Services/User/UserService.php:154 -#: ../../../../lib/SP/Services/User/UserService.php:173 -msgid "El usuario no existe" -msgstr "The user does not exist" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:114 -msgid "Error al eliminar los perfiles" -msgstr "Error while removing the profiles" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 -msgid "Cuentas actualizadas: %d / %d" -msgstr "Accounts updated: %d / %d" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 -msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" -msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:145 -msgid "Error al eliminar archivos" -msgstr "Error while deleting the files" - -#: ../../../../lib/SP/Services/Api/ApiRequest.php:88 -msgid "Fomato incorrecto" -msgstr "Invalid format" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:43 -#: ../../../modules/api/Controllers/Help/TagHelp.php:65 -#: ../../../modules/api/Controllers/Help/TagHelp.php:89 -msgid "Id de etiqueta" -msgstr "Tag Id" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:158 -msgid "Error al eliminar tokens" -msgstr "Error while removing the tokens" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:763 -msgid "Exportación" -msgstr "Export" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:167 -msgid "Copiando base de datos" -msgstr "Copying database" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:303 -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:338 -msgid "Copiando aplicación" -msgstr "Copying application" - -#: ../../../../lib/SP/Services/Config/ConfigService.php:68 -#: ../../../../lib/SP/Services/Config/ConfigService.php:153 -msgid "Parámetro no encontrado (%s)" -msgstr "Parameter not found (%s)" - -#: ../../../../lib/SP/Services/Service.php:109 -msgid "Rollback" -msgstr "Rollback" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:160 -msgid "Error al comprobar clave temporal" -msgstr "Error while checking the temporary password" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:109 -msgid "Campo no encontrado" -msgstr "Field not found" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:130 -msgid "Error al eliminar los campos" -msgstr "Error while deleting the fields" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:233 -msgid "Exportando categorías" -msgstr "Exporting categories" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:345 -msgid "Exportando clientes" -msgstr "Exporting clients" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:391 -msgid "Exportando etiquetas" -msgstr "Exporting tags" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:435 -msgid "Exportando cuentas" -msgstr "Exporting accounts" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:158 -#: ../../../../lib/SP/Services/Import/KeepassImport.php:103 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:387 -msgid "Cuenta importada" -msgstr "Account imported" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:58 -msgid "Importación XML KeePass" -msgstr "KeePass XML Import" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:91 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:211 -msgid "Categoría importada" -msgstr "Category imported" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:58 -msgid "Importación XML sysPass" -msgstr "sysPass XML Import" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:162 -msgid "Datos desencriptados" -msgstr "Data unencrypted" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:250 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:290 -msgid "Cliente importado" -msgstr "Client imported" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:326 -msgid "Etiqueta importada" -msgstr "Tag imported" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:99 -msgid "Formato no detectado" -msgstr "Format not detected" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:107 -msgid "Not implemented" -msgstr "Not implemented" - -#: ../../../../lib/SP/Services/Install/MySQL.php:135 -msgid "No es posible comprobar el usuario de sysPass (%s)" -msgstr "Unable to check the sysPass user (%s)" - -#: ../../../../lib/SP/Services/Install/MySQL.php:213 -#: ../../../../lib/SP/Services/Install/MySQL.php:329 -#: ../../../../lib/SP/Services/Install/MySQL.php:341 -msgid "Error al crear la BBDD ('%s')" -msgstr "Error while creating the DB ('%s')" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 -msgid "Importado desde LDAP" -msgstr "Imported from LDAP" - -#: ../../../../lib/SP/Services/Mail/MailService.php:66 -msgid "Prueba de correo" -msgstr "Mail test" - -#: ../../../../lib/SP/Services/Mail/MailService.php:67 -msgid "" -"Esto es una prueba de correo para verificar el correcto funcionamiento de la " -"configuración." -msgstr "" -"This is a test email in order to verify that the configuration is working " -"right." - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:238 -msgid "Error al eliminar los enlaces" -msgstr "Error while removing the links" - -#: ../../../../lib/SP/Services/Task/TaskService.php:81 -msgid "No es posible crear archivo de bloqueo" -msgstr "Unable to create the lock file" - -#: ../../../../lib/SP/Services/Track/TrackService.php:163 -msgid "Segundos" -msgstr "Seconds" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:63 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:86 -msgid "Actualizar Aplicación" -msgstr "Update Application" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:57 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:59 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:102 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:139 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:171 -msgid "Actualización de campos personalizados" -msgstr "Custom fields update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:157 -#: ../../../modules/web/Controllers/CustomFieldController.php:235 -#: ../../../modules/web/Controllers/CustomFieldController.php:272 -msgid "Campo" -msgstr "Field" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:56 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "Actualización de enlaces públicos" -msgstr "Public links update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:90 -#: ../../../modules/web/Controllers/PublicLinkController.php:246 -msgid "Enlace" -msgstr "Link" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:115 -msgid "Error al eliminar los grupos" -msgstr "Error while deleting the groups" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 -msgid "No es posible leer el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:47 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:58 -msgid "Error al leer datos del archivo (%s)" -msgstr "Error while reading file data (%s)" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 -#: ../../../../lib/SP/Storage/File/FileCache.php:74 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 -msgid "No es posible crear el directorio (%s)" -msgstr "Unable to create the directory (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 -msgid "No es posible escribir en el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 -msgid "No es posible abrir el archivo (%s)" -msgstr "Unable to open the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:92 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:128 -msgid "Error al eliminar el archivo (%s)" -msgstr "Error while deleting the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:54 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:104 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:124 -msgid "No es posible leer/escribir el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 -msgid "Error al descomprimir datos del archivo (%s)" -msgstr "Error while decompressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 -msgid "Error al obtener los datos" -msgstr "Error while retrieving the data" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 -msgid "Error al comprimir datos del archivo (%s)" -msgstr "Error while compressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:112 -msgid "Error al escribir datos en el archivo (%s)" -msgstr "Error while writing data to file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 -msgid "Datos no cargados" -msgstr "Data not loaded" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 -msgid "No es posible cerrar el archivo (%s)" -msgstr "Unable to close the file (%s)" - -#: ../../../modules/api/Controllers/AccountController.php:70 -msgid "Cuenta visualizada" -msgstr "Account displayed" - -#: ../../../modules/api/Controllers/AccountController.php:102 -#: ../../../modules/web/Controllers/AccountController.php:554 -#: ../../../modules/web/Controllers/AccountController.php:610 -msgid "Clave visualizada" -msgstr "Password viewed" - -#: ../../../modules/api/Controllers/ConfigController.php:82 -#: ../../../modules/web/Controllers/ConfigBackupController.php:92 -msgid "Exportación de sysPass en XML" -msgstr "sysPass XML export" - -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:117 -#: ../../../modules/api/Controllers/TagController.php:146 -msgid "Etiqueta" -msgstr "Tag" - -#: ../../../modules/api/Init.php:135 -msgid "Es necesario actualizar" -msgstr "Updating needed" - -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "HTTPS" -msgstr "HTTPS" - -#: ../../../modules/web/Controllers/AccountController.php:649 -#: ../../../modules/web/Controllers/AccountController.php:683 -msgid "Clave copiada" -msgstr "Password copied" - -#: ../../../modules/web/Controllers/AccountFileController.php:83 -#: ../../../modules/web/Controllers/AccountFileController.php:96 -msgid "Archivo visualizado" -msgstr "File viewed" - -#: ../../../modules/web/Controllers/AccountFileController.php:136 -msgid "Archivo descargado" -msgstr "File downloaded" - -#: ../../../modules/web/Controllers/AccountFileController.php:186 -msgid "Extensión: %s" -msgstr "Extension: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:193 -msgid "Archivo: %s" -msgstr "File: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:201 -msgid "Máximo tamaño: %s" -msgstr "Maximum size: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:211 -msgid "Máximo tamaño: %d KB" -msgstr "Maximum size: %d KB" - -#: ../../../modules/web/Controllers/AccountFileController.php:334 -msgid "Archivo Eliminado" -msgstr "File Deleted" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 -#: ../../../modules/web/Controllers/AuthTokenController.php:226 -#: ../../../modules/web/Controllers/AuthTokenController.php:292 -#: ../../../modules/web/Controllers/AuthTokenController.php:301 -#: ../../../modules/web/Controllers/AuthTokenController.php:339 -msgid "Autorización" -msgstr "Authorization" - -#: ../../../modules/web/Controllers/AuthTokenController.php:338 -msgid "Autorización visualizada" -msgstr "Authorization viewed" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:78 -msgid "Archivos habilitados" -msgstr "Files enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:83 -msgid "Archivos deshabilitados" -msgstr "Files disabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:96 -msgid "Enlaces públicos habilitados" -msgstr "Public links enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:101 -msgid "Enlaces públicos deshabilitados" -msgstr "Public links disabled" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 -msgid "Esta clave estará activa hasta: %s" -msgstr "This password will be valid until: %s" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -msgid "Email enviado" -msgstr "Email sent" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -msgid "Error al enviar email" -msgstr "Error while sending the email" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:97 -msgid "Syslog remoto habilitado" -msgstr "Remote syslog enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:153 -msgid "Auth Basic habilitada" -msgstr "Auth Basic enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:159 -msgid "Auth Basic deshabiltada" -msgstr "Auth Basic disabled" - -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -msgid "No se importaron cuentas" -msgstr "No accounts were imported" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:115 -#: ../../../modules/web/Controllers/ConfigLdapController.php:238 -msgid "Parámetros de LDAP incorrectos" -msgstr "Wrong LDAP parameters" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:245 -msgid "Importación LDAP" -msgstr "LDAP Import" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 -msgid "Usuarios importados: %d / %d" -msgstr "Imported users: %d / %d" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 -msgid "Errores: %d" -msgstr "Errors: %d" - -#: ../../../modules/web/Controllers/ConfigMailController.php:145 -msgid "Compruebe su buzón de correo" -msgstr "Please, check your inbox" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:99 -msgid "DokuWiki habilitada" -msgstr "DokuWiki enabled" - -#: ../../../modules/web/Controllers/CustomFieldController.php:298 -msgid "Ver Campo" -msgstr "View Field" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 -#: ../../../config/actions.xml:439 -msgid "Actualizar Enlace Público" -msgstr "Update Public Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 -msgid "Nuevo Enlace" -msgstr "New Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 -msgid "No disponible" -msgstr "Unavailable" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 -msgid "Refrescar" -msgstr "Refresh" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 -msgid "Sólo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/Controllers/PublicLinkController.php:109 -msgid "Nuevo Enlace Público" -msgstr "New Public Link" - -#: ../../../modules/web/Controllers/PublicLinkController.php:196 -msgid "Editar Enlace Público" -msgstr "Edit Public Link" - -#: ../../../modules/web/Controllers/StatusController.php:94 -msgid "Versión no disponible" -msgstr "Version unavailable" - -#: ../../../modules/web/Controllers/StatusController.php:142 -msgid "Notificaciones no disponibles" -msgstr "Notifications not available" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 -#: ../../../config/actions.xml:511 -msgid "Ver Etiqueta" -msgstr "View Tag" - -#: ../../../modules/web/Controllers/UserPassResetController.php:90 -msgid "Datos incorrectos" -msgstr "Wrong data" - -#: ../../../modules/web/Controllers/UserPassResetController.php:94 -msgid "No es posible recuperar la clave" -msgstr "Unable to reset the password" - -#: ../../../modules/web/Forms/PublicLinkForm.php:85 -msgid "Es necesario una cuenta" -msgstr "An account is needed" - -#: ../../../config/strings.js.inc:91 -msgid "Realizando auto-login" -msgstr "Performing auto-login" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 -msgid "Abrir enlace a: %s" -msgstr "Open link to: %s" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 -msgid "Cuenta Privada (Grupo)" -msgstr "Private Account (Group)" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 -msgid "Notes" -msgstr "Notes" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 -msgid "Usar Auth Basic" -msgstr "Use Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:26 -msgid "Usar auto-login con Auth Basic" -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 -msgid "Dominio" -msgstr "Domain" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 -msgid "" -"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " -"el de Auth Basic." -msgstr "" -"The domain will be added to the sysPass user name for checking against the " -"Auth Basic one." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 -msgid "Nombre de dominio" -msgstr "Domain name" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 -msgid "" -"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default users group for newly SSO users" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 -msgid "" -"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default profile for the newly created SSO users." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 -msgid "Importación" -msgstr "Import" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 -msgid "Importar Grupos" -msgstr "Import Groups" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 -msgid "Atributo Nombre Grupo" -msgstr "Group Name Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 -msgid "" -"Define el atributo a utilizar para el nombre del grupo en la importación." -msgstr "Defines the attribute for the user group name when importing." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 -msgid "Filtro" -msgstr "Filter" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 -msgid "Filtro para importar usuarios o grupos de LDAP." -msgstr "Filter for importing LDAP users or groups." - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 -msgid "Destinatarios" -msgstr "Recipients" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 -msgid "Indica si el cliente es visible para todos los usuarios." -msgstr "Sets whether the client is visible by all users" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 -msgid "" -"Por defecto los clientes asignados a cuentas sólo son visibles para los " -"usuarios con acceso a las cuentas." -msgstr "" -"By default, the clients assigned to accounts only will be visible to users " -"who are granted to access to the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 -msgid "URL" -msgstr "URL" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 -msgid "Login SSO" -msgstr "SSO Login " - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 -msgid "Login de inicio de sesión con SSO" -msgstr "Session login with SSO" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 -msgid "Sólo para administradores de la aplicación" -msgstr "Only for application administrators" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 -msgid "Solo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 -msgid "Para iniciar la actualización introduzca el código de seguridad" -msgstr "Please enter the security code to start the upgrade" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:73 -msgid "No es posible cambiar el valor de la clave" -msgstr "Unable to change password value" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:345 -msgid "Filtro incorrecto" -msgstr "Wrong filter" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:159 -msgid "El campo personalizado no existe" -msgstr "Custom field not found" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:212 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:137 -msgid "Error al eliminar los plugins" -msgstr "Error while deleting the plugins" - -#: ../../../../lib/SP/Services/Account/AccountService.php:220 -msgid "Clave maestra no establecida" -msgstr "Master password not set" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:134 -msgid "Error al eliminar las categorías" -msgstr "Error while deleting categories" - -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:80 -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:87 -msgid "No es posible restaurar la configuración" -msgstr "Unable to restore configuration" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldTypeService.php:84 -msgid "Tipo de campo no encontrado" -msgstr "Field type not found" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:177 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:176 -msgid "Fallo en la verificación del hash de integridad" -msgstr "Error while checking integrity hash" - -#: ../../../../lib/SP/Services/Install/Installer.php:359 -msgid "Error al crear el usuario 'admin'" -msgstr "Error while creating 'admin' user" - -#: ../../../../lib/SP/Services/Install/MySQL.php:309 -msgid "Error al seleccionar la BBDD '%s' (%s)" -msgstr "Error while selecting '%s' database (%s)" - -#: ../../../../lib/SP/Services/Mail/MailService.php:186 -msgid "Servicio de correo no disponible" -msgstr "Mail service unavailable" - -#: ../../../../lib/SP/Services/Service.php:137 -#: ../../../../lib/SP/Services/Service.php:144 -msgid "Error ol obtener la clave maestra del contexto" -msgstr "Error while retrieving master pass from context" - -#: ../../../../lib/SP/Services/Service.php:160 -#: ../../../../lib/SP/Services/Service.php:164 -msgid "Error ol establecer la clave maestra en el contexto" -msgstr "Error while setting master password in context" - -#: ../../../../lib/SP/Services/Track/TrackService.php:87 -#: ../../../../lib/SP/Services/Track/TrackService.php:101 -#: ../../../../lib/SP/Services/Track/TrackService.php:128 -msgid "Track no encontrado" -msgstr "Track not found" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:55 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:85 -msgid "Actualización de autorizaciones API" -msgstr "API authorizations update" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 -msgid "No es posible leer desde el archivo (%s)" -msgstr "Unable to read from file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 -msgid "No es posible escribir el archivo (%s)" -msgstr "Unable to write in file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 -msgid "Archivo no encontrado (%s)" -msgstr "File not found (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 -msgid "No es posible eliminar el archivo (%s)" -msgstr "Unable to delete file (%s)" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:89 -#: ../../../../lib/SP/Storage/File/XmlHandler.php:309 -msgid "El nodo XML no existe" -msgstr "The XML node does not exist" - -#: ../../../../lib/SP/Util/ImageUtil.php:65 -msgid "Imagen no válida" -msgstr "Invalid image" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:117 -msgid "Verificación de datos exportados finalizada" -msgstr "Verification of exported data finished" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 -msgid "Encriptado" -msgstr "Encrypted" - -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:173 -msgid "Error al actualizar los datos del campo personalizado" -msgstr "Error while updating custom field's data" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 -msgid "Enlace Directo" -msgstr "Direct Link" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 -msgid "Parámetros especiales" -msgstr "Special parameters" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 -msgid "" -"Es posible utilizar uno o varios parámetros especiales separados por espacios" -msgstr "" -"You could use either one or several special parameters separated by blank " -"spaces" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 -msgid "Devolver la cuenta con ID" -msgstr "Returns the account for the given ID" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 -msgid "Operador para los parámetros especiales" -msgstr "Operator for special parameters" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 -msgid "Los datos serán encriptados al guardar" -msgstr "Data will be encrypted after saving" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 -msgid "Los datos serán desencriptados al guardar" -msgstr "Data will be unencrypted after saving" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 -msgid "Caducidad clave cuentas" -msgstr "Accounts password expiry" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 -msgid "Habilita la caducidad de la clave de cuentas." -msgstr "Enables the accounts password expiry date." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 -msgid "Tiempo caducidad clave" -msgstr "Password expiry time" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 -msgid "Número de días para la caducidad de la clave de cuenta." -msgstr "Number of days for the account expiry date." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 -msgid "Tiempo caducidad (días)" -msgstr "Expire time (days)" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 -msgid "" -"Confirmar el cambio de clave maestra después de haber leído las advertencias " -"anteriores." -msgstr "" -"Confirm the master password change after you have been read all the above " -"warnings." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 -msgid "Usar Auth Basic para autorizar los accesos a la aplicación." -msgstr "Use Auth Basic for authorizing the accesses to the application" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 -msgid "Usar Auth Basic SSO" -msgstr "Use Auth Basic SSO" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 -msgid "Usar auto-login con Auth Basic." -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 -msgid "Usar proxy para comprobación de actualizaciones y notificaciones." -msgstr "Use a proxy server for checking out for updates and notifications." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 -msgid "Usado en" -msgstr "Used in" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 -msgid "(*) Incluido en grupo" -msgstr "(*) Listed in group" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -msgid "La extensión '%s' no está disponible" -msgstr "The '%s' extension is unavailable" - -#: ../../../../lib/SP/Services/Service.php:133 -#: ../../../../lib/SP/Services/Service.php:140 -msgid "Error al obtener la clave maestra del contexto" -msgstr "Error while retrieving master password from context" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 -msgid "Esta extensión es necesaria para mostrar las claves como imágenes" -msgstr "This extension is needed to display passwords as images" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 -msgid "" -"Esta extensión es necesaria para generar los archivos de copia de seguridad " -"de la aplicación" -msgstr "This extension is needed to build the application's backup files" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 -msgid "" -"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" -msgstr "This extension is needed to check for sysPass updates and notices" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 -msgid "Extensiones no disponibles" -msgstr "Unavailable extensions" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 -msgid "Esta extensión es necesaria conectar con el servidor de LDAP" -msgstr "This extension is needed to connect to the LDAP server" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 -msgid "Esta extensión es necesaria conectar con DokuWiki" -msgstr "This extension is needed to connect with DokuWiki" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:31 -msgid "Favoritos" -msgstr "Favorites" - #. (itstool) path: action/text #: ../../../config/actions.xml:97 msgid "Gestión Plugins" msgstr "Plugins Management" +#. (itstool) path: action/text +#: ../../../config/actions.xml:103 +msgid "Usuarios y Accesos" +msgstr "Użytkownicy i dostęp" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:109 +msgid "Seguridad y Auditoría" +msgstr "Security and Audit" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:115 +msgid "Gestión Usuarios" +msgstr "Zarządzanie użytkownikami" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:121 +msgid "Gestión Grupos" +msgstr "Zarządzanie grupami" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:127 +msgid "Gestión Perfiles" +msgstr "Zarządzanie profilami" + #. (itstool) path: action/text #: ../../../config/actions.xml:139 msgid "Buscar Eventos" @@ -7721,6 +4732,21 @@ msgstr "Search for Events" msgid "Limpiar Eventos" msgstr "Clear Events" +#. (itstool) path: action/text +#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 +msgid "Ver Cuenta" +msgstr "Pokaż konto" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:181 +msgid "Editar Clave de Cuenta" +msgstr "Edytuj hasło dla konta" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 +msgid "Subir Archivo" +msgstr "Wyślij plik" + #. (itstool) path: action/text #: ../../../config/actions.xml:229 msgid "Buscar Archivos" @@ -7756,11 +4782,6 @@ msgstr "Edit Wiki" msgid "Eliminar Wiki" msgstr "Delete Wiki" -#. (itstool) path: action/text -#: ../../../config/actions.xml:331 -msgid "Nuevo CLiente" -msgstr "New Client" - #. (itstool) path: action/text #: ../../../config/actions.xml:361 msgid "Nuevo Token API" @@ -7812,17 +4833,21 @@ msgid "Buscar Campo Personalizado" msgstr "Search for Custom Field" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 -#: ../../../config/actions.xml:433 -msgid "Eliminar Enlace Público" -msgstr "Delete Public Link" +#: ../../../config/actions.xml:427 +#, fuzzy +msgid "Ver Enlace Público" +msgstr "Pokaż publiczny link" #. (itstool) path: action/text #: ../../../config/actions.xml:445 msgid "Buscar Enlace Público" msgstr "Search for Public Link" +#. (itstool) path: action/text +#: ../../../config/actions.xml:535 +msgid "Nuevo Plugin" +msgstr "Nowy plugin" + #. (itstool) path: action/text #: ../../../config/actions.xml:553 msgid "Habilitar Plugin" @@ -7903,6 +4928,11 @@ msgstr "XML Import" msgid "Configuración Exportación" msgstr "Export Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:763 +msgid "Exportación" +msgstr "Export" + #. (itstool) path: action/text #: ../../../config/actions.xml:769 msgid "Configuración Email" @@ -7913,6 +4943,11 @@ msgstr "Email Configuration" msgid "Configuración LDAP" msgstr "LDAP Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:781 +msgid "Sincronización LDAP" +msgstr "Synchronizacja LDAP" + #. (itstool) path: action/text #: ../../../config/actions.xml:787 msgid "Gestión de Cuenta (H)" @@ -7923,432 +4958,11 @@ msgstr "Account Management (H)" msgid "Crear Notificación" msgstr "Create Notification" -#: ../../../../lib/SP/Services/Import/SyspassImport.php:177 -msgid "" -"Si está importando un archivo exportado desde el mismo origen, los datos " -"pueden estar comprometidos." -msgstr "" -"If you are importing an exported file from the same origin, the data could " -"be compromised." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:154 -msgid "El archivo de actualización no contiene datos" -msgstr "The update file does not contain data" - -#: ../../../modules/api/Controllers/CategoryController.php:62 -msgid "Categoría visualizada" -msgstr "Category displayed" - -#: ../../../modules/api/Controllers/ClientController.php:63 -msgid "Cliente visualizado" -msgstr "Client displayed" - -#: ../../../modules/api/Controllers/ConfigController.php:58 -#: ../../../modules/api/Controllers/ConfigController.php:83 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 -msgid "Ruta" -msgstr "Path" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 -msgid "Array con Ids de etiquetas" -msgstr "Array with tags id" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 -msgid "Array con Ids de etiquetas a filtrar" -msgstr "Array with tags id for filtering" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 -msgid "Operador de filtrado" -msgstr "Filtering operator" - -#: ../../../modules/api/Controllers/TagController.php:61 -msgid "Etiqueta visualizada" -msgstr "Tag displayed" - -#: ../../../modules/web/Controllers/AccountFileController.php:387 -msgid "No hay archivos asociados a la cuenta" -msgstr "There are no linked files for the account" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:76 -msgid "Error al crear permiso" -msgstr "Error while creating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:115 -msgid "Error al actualizar permiso" -msgstr "Error while updating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:134 -msgid "Error al eliminar permiso" -msgstr "Error while removing the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:249 -msgid "Error al eliminar los permisos" -msgstr "Error while removing the permissions" - -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:84 -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:105 -msgid "Permiso no encontrada" -msgstr "Permission not found" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:71 -#: ../../../config/actions.xml:847 -msgid "Ver Permiso" -msgstr "View Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:156 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:157 -#: ../../../config/actions.xml:853 -msgid "Nuevo Permiso" -msgstr "New Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:211 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:174 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:175 -#: ../../../config/actions.xml:859 -msgid "Editar Permiso" -msgstr "Edit Permission" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:248 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:251 -msgid "Permisos eliminados" -msgstr "Permissions deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:259 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:263 -msgid "Permiso eliminado" -msgstr "Permission deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:289 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:293 -msgid "Permiso creado" -msgstr "Permission added" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:325 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:329 -msgid "Permiso actualizado" -msgstr "Permission updated" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:90 -msgid "Permisos por Defecto" -msgstr "Default Permissions" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 -msgid "Prioridad" -msgstr "Priority" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 -msgid "Forzado" -msgstr "Forced" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:141 -#: ../../../config/actions.xml:841 -msgid "Buscar Permiso" -msgstr "Search for Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:191 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:192 -#: ../../../config/actions.xml:865 -msgid "Eliminar Permiso" -msgstr "Delete Permission" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:208 -msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" -msgstr "An element of type user, group or profile need to be set" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:133 -msgid "No hay permisos definidos" -msgstr "There aren't any defined permissions" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:75 -msgid "" -"Prioridad de asignación en caso de coincidir con otros permisos asignados " -"por usuario, grupo o perfil." -msgstr "" -"Assignment priority if permissions match with others assigned by user, group " -"or profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 -msgid "Prioridad de asignación" -msgstr "Assignment Priority" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:107 -msgid "Indica si los permisos serán forzados al crear o modificar la cuenta." -msgstr "" -"Enforces the permissions to be set either on creating or updating an " -"account ." - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:109 -msgid "Los permisos serán añadidos a los existentes." -msgstr "Permissions will be merged with the existing ones." - -#. (itstool) path: action/text -#: ../../../config/actions.xml:835 -msgid "Gestión Permisos" -msgstr "Permissions Management" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 -msgid "Es necesaria una clave con al menos %d caracteres" -msgstr "Password needs to be %d characters long" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:77 -msgid "La clave no cumple los carácteres requeridos" -msgstr "Password does not contain the required characters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:82 -msgid "Es necesario que la clave contenga letras" -msgstr "Password needs to contain letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:86 -msgid "Es necesario que la clave contenga minúsculas" -msgstr "Password needs to contain lower case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:90 -msgid "Es necesario que la clave contenga mayúsculas" -msgstr "Password needs to contain upper case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:95 -msgid "Es necesario que la clave contenga números" -msgstr "Password needs to contain numbers" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:99 -msgid "Es necesario que la clave contenga símbolos" -msgstr "Password needs to contain symbols" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:301 -msgid "Error al desconectar del servidor de LDAP" -msgstr "Error while disconnecting from LDAP server" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:84 -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:105 -msgid "Valor no encontrada" -msgstr "Value not found" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:188 -msgid "Error al eliminar los valores" -msgstr "Error while deleting the values" - -#: ../../../../lib/SP/Services/Track/TrackService.php:208 -msgid "Dirección IP no establecida" -msgstr "IP address not set" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 -msgid "Valores Predeterminados" -msgstr "Preset Values" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 -#: ../../../config/actions.xml:853 -msgid "Buscar Valor" -msgstr "Search for Value" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 -msgid "Valor de Permiso" -msgstr "Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 -msgid "Nuevo Valor de Permiso" -msgstr "New Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 -msgid "Valor de Cuenta Privada" -msgstr "Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 -msgid "Nuevo Valor de Cuenta Privada" -msgstr "New Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 -msgid "Valor de Timeout de Sesión" -msgstr "Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 -msgid "Nuevo Valor de Timeout de Sesión" -msgstr "New Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 -msgid "Valor de Clave de Cuentas" -msgstr "Account Password Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 -msgid "Nuevo Valor de Clave de Cuentas" -msgstr "New Account Password Preset" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 -#: ../../../config/actions.xml:871 -msgid "Editar Valor" -msgstr "Edit Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 -#: ../../../config/actions.xml:877 -msgid "Eliminar Valor" -msgstr "Delete Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 -#: ../../../config/actions.xml:859 -msgid "Ver Valor" -msgstr "Display Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 -#: ../../../config/actions.xml:865 -msgid "Nuevo Valor" -msgstr "New Value" - -#: ../../../modules/web/Controllers/ItemPresetController.php:266 -#: ../../../modules/web/Controllers/ItemPresetController.php:269 -msgid "Valores eliminados" -msgstr "Values deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:277 -#: ../../../modules/web/Controllers/ItemPresetController.php:281 -msgid "Valor eliminado" -msgstr "Value deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:309 -#: ../../../modules/web/Controllers/ItemPresetController.php:314 -msgid "Valor creado" -msgstr "Value created" - -#: ../../../modules/web/Controllers/ItemPresetController.php:348 -#: ../../../modules/web/Controllers/ItemPresetController.php:353 -msgid "Valor actualizado" -msgstr "Value updated" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:116 -msgid "Tipo de valor no definido o incorrecto" -msgstr "Value type not set or incorrect" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:182 -msgid "Expresión regular inválida" -msgstr "Invalid regular expression" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 -msgid "Habilita la conexión mediante TLS." -msgstr "Enables the connection over TLS" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 -msgid "Puntuación" -msgstr "Score" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 -msgid "Expresión Regular" -msgstr "Regular Expression" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 -msgid "Incluir Minúsculas" -msgstr "Include Lowercase" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 -msgid "Las cuentas sólo serán visibles por el usuario." -msgstr "Accounts will be only visible by the user." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 -msgid "Los administradores no podrán acceder a las cuentas." -msgstr "Administrators won't be able to display the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 -msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." -msgstr "Accounts will be only visible by the user and his/her main group." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 -msgid "Dirección IP" -msgstr "IP Address" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 -msgid "Timeout" -msgstr "Timeout" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 -msgid "" -"Prioridad de asignación en caso de coincidir con otros valores asignados por " -"usuario, grupo o perfil." -msgstr "" -"Assignment priority if values match with others assigned by user, group or " -"profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 -msgid "" -"Indica si los valores serán forzados al crear o modificar los elementos." -msgstr "Enforces the values to be set either on creating or updating an item." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 -msgid "Los valores serán añadidos a los existentes." -msgstr "Values will be merged with the existing ones." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 -msgid "Valores por Defecto" -msgstr "Default Values" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 -msgid "Gestión de Valores por Defecto" -msgstr "Default Values Management" - #. (itstool) path: action/text #: ../../../config/actions.xml:847 msgid "Gestión Valores Predeterminados" msgstr "Preset Values Management" -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:118 -msgid "Error al vaciar tracks" -msgstr "Error while clearing tracks out" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 -msgid "Tracks" -msgstr "Tracks" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 -msgid "Fecha Desbloqueo" -msgstr "Date Unlocked" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 -#: ../../../config/actions.xml:889 -msgid "Buscar Track" -msgstr "Search for track" - -#: ../../../modules/web/Controllers/TrackController.php:110 -msgid "Track desbloqueado" -msgstr "Track unlocked" - -#: ../../../modules/web/Controllers/TrackController.php:135 -msgid "Tracks limpiados" -msgstr "Tracks cleared out" - -#: ../../../config/strings.js.inc:96 -msgid "Vaciar los tracks?" -msgstr "Clear tracks out?" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:109 -msgid "Seguridad y Auditoría" -msgstr "Security and Audit" - #. (itstool) path: action/text #: ../../../config/actions.xml:883 msgid "Gestión de Tracks" @@ -8364,47 +4978,2169 @@ msgstr "Unlock track" msgid "Vaciar tracks" msgstr "Clear tracks out" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 -msgid "Id de grupo" -msgstr "Group Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:4 +msgid "Color" +msgstr "Kolor" -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 -msgid "Array con Ids de usuarios" -msgstr "Array with users Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:5 +msgid "Número" +msgstr "Numer" -#: ../../../modules/api/Controllers/UserGroupController.php:61 -msgid "Grupo visualizado" -msgstr "Group viewed" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:6 +msgid "Teléfono" +msgstr "Telefon" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 -#: ../../../config/actions.xml:493 -msgid "Actualización Masiva" -msgstr "Bulk Update" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:7 +msgid "Área de Texto" +msgstr "Pole tekstowe" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 -msgid "Propietario" -msgstr "Owner" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:8 +msgid "Texto" +msgstr "Tekst" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 -msgid "Buscar cuentas por nombre de cliente" -msgstr "Search for accounts by client name" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:9 +msgid "Link" +msgstr "Link" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 -msgid "Buscar cuentas por nombre de categoría" -msgstr "Search for accounts by category name" +#~ msgid "CONSULTA INVÁLIDA" +#~ msgstr "NIEPRAWIDŁOWE ZAPYTANIE" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 -msgid "Eliminar Historial" -msgstr "Delete History" +#~ msgid "La sesión no se ha iniciado o ha caducado" +#~ msgstr "Sesja nie została zainicjowana bądź wygasła" + +#~ msgid "Es necesario un nombre de cuenta" +#~ msgstr "Nazwa konta jest wymagana" + +#, fuzzy +#~ msgid "Es necesario un nombre de cliente" +#~ msgstr "Nazwa klienta jest wymagana" + +#, fuzzy +#~ msgid "Es necesario un usuario" +#~ msgstr "Nazwa użytkownika jest wymagana" + +#~ msgid "Es necesaria una clave" +#~ msgstr "Klucz jest wymagany" + +#~ msgid "Es necesario una categoría" +#~ msgstr "Kategoria jest wymagana" + +#~ msgid "Acción Inválida" +#~ msgstr "Nieprawidłowa akcja" + +#~ msgid "Las claves no coinciden" +#~ msgstr "Hasła nie pasują do siebie" + +#, fuzzy +#~ msgid "Error al crear la cuenta" +#~ msgstr "Błąd podczas tworzenia konta" + +#, fuzzy +#~ msgid "Error al modificar la cuenta" +#~ msgstr "Błąd podczas aktualizacji konta" + +#, fuzzy +#~ msgid "Error al eliminar la cuenta" +#~ msgstr "Błąd podczas usuwania konta" + +#, fuzzy +#~ msgid "Error al actualizar la clave" +#~ msgstr "Błąd poczas aktualizacji hasła" + +#~ msgid "Cuenta restaurada" +#~ msgstr "Konto zostało odzyskane" + +#, fuzzy +#~ msgid "Error al restaurar cuenta" +#~ msgstr "Błąd podczas odzyskiwania hasła" + +#, fuzzy +#~ msgid "Es necesario un nombre de usuario" +#~ msgstr "Nazwa użytkownika jest wymagana" + +#~ msgid "Es necesario un login" +#~ msgstr "Login jest wymagany" + +#~ msgid "Es necesario un perfil" +#~ msgstr "Profil jest wymagany" + +#~ msgid "Es necesario un grupo" +#~ msgstr "Grupa jest wymagana" + +#~ msgid "Es necesario un email" +#~ msgstr "Adres e-mail jest wymagany" + +#~ msgid "Ey, esto es una DEMO!!" +#~ msgstr "UWAGA - to jest demo!!" + +#~ msgid "La clave no puede estar en blanco" +#~ msgstr "Hasło nie może być puste" + +#~ msgid "Usuario creado" +#~ msgstr "Użytkownik został dodany" + +#, fuzzy +#~ msgid "Error al crear el usuario" +#~ msgstr "Błąd podczas tworzenia użytkownika" + +#~ msgid "Usuario actualizado" +#~ msgstr "Użytkownik zostal zaktualizowany" + +#, fuzzy +#~ msgid "Error al actualizar el usuario" +#~ msgstr "Błąd podczas aktualizacji użytkownika" + +#, fuzzy +#~ msgid "Error al modificar la clave" +#~ msgstr "Błąd podczas aktualizacji hasła" + +#~ msgid "No es posible eliminar, usuario en uso" +#~ msgstr "Nie udało się usunąć użytkownika (jest on obecnie wykorzystywany)" + +#~ msgid "Usuario eliminado" +#~ msgstr "Użytkownik został usunięty" + +#, fuzzy +#~ msgid "Error al eliminar el usuario" +#~ msgstr "Błąd podczas usuwania użytkownika" + +#~ msgid "Es necesario un nombre de grupo" +#~ msgstr "Nazwa grupy jest wymagana" + +#~ msgid "Nombre de grupo duplicado" +#~ msgstr "Ta grupa już istnieje" + +#, fuzzy +#~ msgid "Error al crear el grupo" +#~ msgstr "Błąd podczas tworzenia grupy" + +#, fuzzy +#~ msgid "Error al actualizar el grupo" +#~ msgstr "Błąd podczas aktualizacji grupy" + +#~ msgid "No es posible eliminar" +#~ msgstr "Nie udało sie usunąć" + +#, fuzzy +#~ msgid "Error al eliminar el grupo" +#~ msgstr "Błąd poczas usuwania grupy" + +#~ msgid "Es necesario un nombre de perfil" +#~ msgstr "Nazwa profilu jest wymagana" + +#~ msgid "Nombre de perfil duplicado" +#~ msgstr "Ta nazwa profiu już istnieje" + +#~ msgid "Perfil creado" +#~ msgstr "Profil został dodany" + +#~ msgid "Perfil actualizado" +#~ msgstr "Profil został zaktualizowany" + +#~ msgid "Perfil eliminado" +#~ msgstr "Profil został usunięty" + +#~ msgid "Es necesario un nombre de categoría" +#~ msgstr "Nazwa kategorii jest wymagana" + +#~ msgid "Autorización creada" +#~ msgstr "Upoważnienie zostało dodane" + +#~ msgid "Autorización actualizada" +#~ msgstr "Upowanienie zostało zaktualizowane" + +#~ msgid "Autorización eliminada" +#~ msgstr "Upoważnienie zostało usunięte" + +#~ msgid "Nombre del campo no indicado" +#~ msgstr "Nazwa pola nie została ustawiona" + +#~ msgid "Tipo del campo no indicado" +#~ msgstr "Typ pola nie został ustawiony" + +#~ msgid "Módulo del campo no indicado" +#~ msgstr "Moduł pola nie został ustawiony" + +#~ msgid "Campo creado" +#~ msgstr "Pole zostało dodane" + +#~ msgid "Campo actualizado" +#~ msgstr "Pole zostało zaktualizowane" + +#~ msgid "Campo eliminado" +#~ msgstr "Pole zostało usunięte" + +#~ msgid "Realizar Backup" +#~ msgstr "Wykonaj kopię zapasową" + +#, fuzzy +#~ msgid "Error al realizar el backup" +#~ msgstr "Bład podczas tworzenia kopii zapasowej" + +#, fuzzy +#~ msgid "Revise el registro de eventos para más detalles" +#~ msgstr "Sprawdź dziennik zdarzeń w celu uzyskania dodatkowych informacji" + +#~ msgid "Copia de la aplicación y base de datos realizada correctamente" +#~ msgstr "Kopie zapasowe bazy jak i aplikajci zostały wykonane pomyślnie" + +#, fuzzy +#~ msgid "Error al realizar la exportación de cuentas" +#~ msgstr "Błąd poczas eksportowania kont" + +#, fuzzy +#~ msgid "Error al realizar la exportación" +#~ msgstr "Wystąpił błąd podczas eksportu" + +#~ msgid "Exportación de cuentas realizada correctamente" +#~ msgstr "Eksport zostały wykonany pomyślnie" + +#, fuzzy +#~ msgid "Los parámetros de LDAP no están configurados" +#~ msgstr "Parametry połączenie nie zostały ustawione (LDAP)" + +#~ msgid "Conexión a LDAP correcta" +#~ msgstr "Połączenie nawiązane (LDAP)" + +#~ msgid "Objetos encontrados" +#~ msgstr "Znaleziono obiekty" + +#~ msgid "Modificar Configuración" +#~ msgstr "Edytuj konfigurację" + +#~ msgid "El tamaño máximo por archivo es de 16MB" +#~ msgstr "Maksymalny rozmiar pliku to 16 MB" + +#, fuzzy +#~ msgid "Faltan parámetros de Proxy" +#~ msgstr "Brak parametrów proxy" + +#~ msgid "Proxy habiltado" +#~ msgstr "Proxy włączone" + +#~ msgid "Proxy deshabilitado" +#~ msgstr "Proxy wyłączone" + +#~ msgid "Sección" +#~ msgstr "Sekcja" + +#~ msgid "Faltan parámetros de Wiki" +#~ msgstr "Brak parametrów Wiki" + +#~ msgid "Wiki habiltada" +#~ msgstr "Wiki włączone" + +#~ msgid "Wiki deshabilitada" +#~ msgstr "Wiki wyłączone" + +#~ msgid "Faltan parámetros de LDAP" +#~ msgstr "Brak parametrów (LDAP)" + +#~ msgid "LDAP habiltado" +#~ msgstr "LDAP włączony" + +#~ msgid "LDAP deshabilitado" +#~ msgstr "LDAP wyłączony" + +#~ msgid "Faltan parámetros de Correo" +#~ msgstr "Brak parametów związanych z pocztą" + +#~ msgid "Correo habiltado" +#~ msgstr "Poczta jest aktywna" + +#~ msgid "Correo deshabilitado" +#~ msgstr "Poczta jest nieaktuwa" + +#~ msgid "Configuración actualizada" +#~ msgstr "Konfiguracja została zaktualizowana" + +#, fuzzy +#~ msgid "Clave maestra no indicada" +#~ msgstr "Główne hasło jest wymagane" + +#~ msgid "Se ha de confirmar el cambio de clave" +#~ msgstr "Zmiana hasła musi zostać potwierdzona" + +#~ msgid "Las claves son idénticas" +#~ msgstr "Hasła są takie same" + +#~ msgid "Las claves maestras no coinciden" +#~ msgstr "Główne hasła nie pasują do siebie" + +#~ msgid "La clave maestra actual no coincide" +#~ msgstr "Obecne główne hasło nie jest poprawne" + +#, fuzzy +#~ msgid "Errores al actualizar las claves de las cuentas" +#~ msgstr "Błąd podczas aktualizacji haseł dla kont" + +#, fuzzy +#~ msgid "Errores al actualizar las claves de las cuentas del histórico" +#~ msgstr "Błąd podczas akutalizacji haseł dla kont (historia)" + +#, fuzzy +#~ msgid "Errores al actualizar datos de campos personalizados" +#~ msgstr "Błąd podczas aktualizacji dany w polach niestandardowych " + +#, fuzzy +#~ msgid "Error al guardar el hash de la clave maestra" +#~ msgstr "Błąd poczas zapisywania głównego hasła" + +#~ msgid "Generar Clave Temporal" +#~ msgstr "Wygeneruj hasło tymczasowe" + +#~ msgid "Clave Temporal Generada" +#~ msgstr "Hasło tymczasowe zostało wygenerowane" + +#, fuzzy +#~ msgid "Error al generar clave temporal" +#~ msgstr "Błąd poczas generowania hasła tymczasowego" + +#~ msgid "Usuario/Clave no introducidos" +#~ msgstr "Brak użytkownika bądź hasła" + +#~ msgid "Inicio sesión" +#~ msgstr "Zaloguj się" + +#, fuzzy +#~ msgid "Error al guardar los datos de LDAP" +#~ msgstr "Błąd podczas zapisywania danych użytkownika LDAP" + +#, fuzzy +#~ msgid "Error al actualizar la clave del usuario en la BBDD" +#~ msgstr "Błąd poczas aktualizacji hasła uzytkownika" + +#, fuzzy +#~ msgid "Login incorrecto" +#~ msgstr "Niepoprawny login" + +#~ msgid "Cuenta expirada" +#~ msgstr "Konto wygasło" + +#~ msgid "El usuario no tiene grupos asociados" +#~ msgstr "Użytkownik nie nalezy do jakiejkolwiek grupy" + +#~ msgid "Usuario deshabilitado" +#~ msgstr "Użytkownik został zablokowany" + +#, fuzzy +#~ msgid "Error al obtener los datos del usuario de la BBDD" +#~ msgstr "Błąd poczas pobierania danych o uzytkowniku z bazy" + +#, fuzzy +#~ msgid "La clave maestra no ha sido guardada o es incorrecta" +#~ msgstr "Główne hasło nie jest zapisane bądź jest niepoprawne" + +#, fuzzy +#~ msgid "Clave maestra incorrecta" +#~ msgstr "Nieprawidłowe główne hasło" + +#, fuzzy +#~ msgid "No hay extensiones permitidas" +#~ msgstr "Brak dowzwolonych typów plików" + +#~ msgid "Tipo de archivo no soportado" +#~ msgstr "Ten typ pliku nie jest dozwolony" + +#~ msgid "Archivo inválido" +#~ msgstr "Nieprawidłowy plik" + +#, fuzzy +#~ msgid "Error interno al leer el archivo" +#~ msgstr "Błąd podczas odczytywania pliku" + +#~ msgid "Archivo guardado" +#~ msgstr "Plik został zapisany" + +#~ msgid "No se pudo guardar el archivo" +#~ msgstr "Błąd podczas zapisu pliku" + +#~ msgid "No es un ID de archivo válido" +#~ msgstr "Nieprawidłowe ID pliku" + +#~ msgid "El archivo no existe" +#~ msgstr "Plik nie istnieje" + +#~ msgid "Archivo eliminado" +#~ msgstr "Plik został usunięty" + +#, fuzzy +#~ msgid "Error al eliminar el archivo" +#~ msgstr "Błąd poczas usuwania pliku" + +#, fuzzy +#~ msgid "Parámetros incorrectos" +#~ msgstr "Nieprawidłowe parametry" + +#~ msgid "Recuperación de Clave" +#~ msgstr "Odzyskiwanie hasła" + +#~ msgid "Solicitado para" +#~ msgstr "Zgłoszony" + +#~ msgid "Solicitud enviada" +#~ msgstr "Żądanie zostało wysłane" + +#~ msgid "En breve recibirá un correo para completar la solicitud." +#~ msgstr "Wkrótce otrzymasz wiadomość email aby zrealizować żądanie." + +#~ msgid "Modificar Clave Usuario" +#~ msgstr "Edytuj hasło użytkownika" + +#, fuzzy +#~ msgid "La clave es incorrecta o no coincide" +#~ msgstr "Hasło jest niepoprawne" + +#~ msgid "Es necesaria una descripción" +#~ msgstr "Opis jest wymagany" + +#~ msgid "Solicitud de Modificación de Cuenta" +#~ msgstr "Zgłoszenie modyfikacji konta" + +#~ msgid "Solicitante" +#~ msgstr "Zgłaszający" + +#, fuzzy +#~ msgid "Error al actualizar preferencias" +#~ msgstr "Błąd podczas aktualizacji ustawień" + +#~ msgid "Preferencias actualizadas" +#~ msgstr "Ustawienia zostały zaktualizowane" + +#~ msgid "La clave maestra no coincide" +#~ msgstr "Główne hasła nie pasują do siebie" + +#, fuzzy +#~ msgid "No es posible acceder directamente a este archivo" +#~ msgstr "Brak dostępu do pliku" + +#~ msgid "Error al actualizar el historial" +#~ msgstr "Błąd podczas aktualizacji historii" + +#~ msgid "Actualizar Cuenta" +#~ msgstr "Aktualizuj konto" + +#, fuzzy +#~ msgid "Error al actualizar los grupos secundarios" +#~ msgstr "Błąd podczas aktualizacji drugiej grupy" + +#, fuzzy +#~ msgid "Error al actualizar los usuarios de la cuenta" +#~ msgstr "Błąd podczas aktualizacji użytkowników związanych z kontem" + +#, fuzzy +#~ msgid "No se pudieron obtener los datos de la cuenta" +#~ msgstr "Błąd podczas pobierania danych konta" + +#, fuzzy +#~ msgid "Error al eliminar grupos asociados a la cuenta" +#~ msgstr "Błąd podczas usuwania grup" + +#, fuzzy +#~ msgid "Error al eliminar usuarios asociados a la cuenta" +#~ msgstr "Błąd podczas usuwania użytkowników" + +#, fuzzy +#~ msgid "Error al eliminar archivos asociados a la cuenta" +#~ msgstr "Błąd podczas usuwania plików" + +#~ msgid "Inicio" +#~ msgstr "Start" + +#, fuzzy +#~ msgid "Error en el módulo de encriptación" +#~ msgstr "Błąd modułu szyfrowania" + +#, fuzzy +#~ msgid "Error al obtener las claves de las cuentas" +#~ msgstr "Błąd podczas ładowania haseł związanych z kontem" + +#, fuzzy +#~ msgid "Fallo al actualizar la clave de la cuenta" +#~ msgstr "Błąd podczas aktualizacji hasła" + +#~ msgid "Cuentas actualizadas" +#~ msgstr "Konta zostały zaktualizowane" + +#, fuzzy +#~ msgid "No se pudieron obtener los datos de las cuentas" +#~ msgstr "Nie można odczytać danych konta" + +#~ msgid "Actualizar Clave Maestra (H)" +#~ msgstr "Zaktualizuj hasło główne (H)" + +#~ msgid "La clave maestra del registro no coincide" +#~ msgstr "Hasło główne dla rekordu nie zgadza się" + +#, fuzzy +#~ msgid "Fallo al actualizar la clave del histórico" +#~ msgstr "Błąd podczas aktualizacji hasła głównego historii" + +#~ msgid "Registros actualizados" +#~ msgstr "Rekordy zostały zaktualizowane" + +#~ msgid "Gestión Aplicación" +#~ msgstr "Zarządzanie aplikacjami" + +#~ msgid "Exportar" +#~ msgstr "Eksport" + +#~ msgid "Acceso no permitido" +#~ msgstr "Nieautoryzowany dostęp" + +#~ msgid "Error de codificación" +#~ msgstr "Błąd kodowania" + +#~ msgid "La autorización ya existe" +#~ msgstr "Upoważnienie już istnieje" + +#~ msgid "Actualizar Autorización" +#~ msgstr "Aktaulizuj upoważnienie" + +#~ msgid "Usuario no pertenece al grupo" +#~ msgstr "Użytkownik nie należy do tej grupy" + +#~ msgid "Esta operación sólo es posible en entornos Linux" +#~ msgstr "Ta operacja jest możliwa tylko w środowiskach Linux" + +#, fuzzy +#~ msgid "Error al realizar backup en modo compatibilidad" +#~ msgstr "Błąd podczas wykonywania kopii zapasowej (tryb kompatybilności)" + +#, fuzzy +#~ msgid "Compruebe los permisos del directorio de backups" +#~ msgstr "Sprawdź uprawnienia dla katalogu backup" + +#~ msgid "Nombre de categoría duplicado" +#~ msgstr "Ta nazwa kategorii już istnieje" + +#, fuzzy +#~ msgid "Error al crear la categoría" +#~ msgstr "Błąd poczas tworzenia kategorii" + +#, fuzzy +#~ msgid "Error al eliminar la categoría" +#~ msgstr "Błąd poczas usuwania kategorii" + +#, fuzzy +#~ msgid "Error al actualizar la categoría" +#~ msgstr "Błąd podczas aktualizacji kategorii" + +#~ msgid "Modificar configuración" +#~ msgstr "Aktualizuj kategorię" + +#~ msgid "Parámetro" +#~ msgstr "Parametr" + +#~ msgid "Valor" +#~ msgstr "Wartość" + +#~ msgid "" +#~ "Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." +#~ msgstr "" +#~ "HASH hasła głównego został ponownie wygenerowany. Nic więcej nie trzeba " +#~ "robić." + +#~ msgid "No es posible generar las claves RSA" +#~ msgstr "Nie można wygenerować kluczy RSA" + +#~ msgid "El archivo de clave no existe" +#~ msgstr "Plik klucza nie istnieje" + +#, fuzzy +#~ msgid "Error importando cuenta" +#~ msgstr "Błąd podczas importu konta" + +#, fuzzy +#~ msgid "Registros no actualizados" +#~ msgstr "Brak zaktualizowanych rekordów" + +#, fuzzy +#~ msgid "Cliente duplicado" +#~ msgstr "Duplikat wpisu klienta" + +#, fuzzy +#~ msgid "Error al crear el cliente" +#~ msgstr "Błąd podczas tworzenia klienta" + +#, fuzzy +#~ msgid "Error al actualizar el cliente" +#~ msgstr "Błąd podczas aktualizacji klienta" + +#~ msgid "Actualizar Cliente" +#~ msgstr "Aktualizuj klienta" + +#, fuzzy +#~ msgid "Error al eliminar el cliente" +#~ msgstr "Bład poczas usuwania klienta" + +#~ msgid "No es posible conectar con la BD" +#~ msgstr "Nie udało połączyć się do bazy danych" + +#, fuzzy +#~ msgid "Compruebe los datos de conexión" +#~ msgstr "Sprawdź parametry połączenia" + +#~ msgid "Realizado por" +#~ msgstr "Wykonana przez" + +#~ msgid "Enviar Email" +#~ msgstr "Wyślij email" + +#~ msgid "Correo enviado" +#~ msgstr "Email został wysłany" + +#, fuzzy +#~ msgid "Error al enviar correo" +#~ msgstr "Błąd podczas wysyłania wiadomości email" + +#~ msgid "Destinatario" +#~ msgstr "Odbiorca" + +#~ msgid "CC" +#~ msgstr "CC" + +#~ msgid "Archivo no subido correctamente" +#~ msgstr "Plik został pomyslnie wysłany" + +#, fuzzy +#~ msgid "Verifique los permisos del usuario del servidor web" +#~ msgstr "Sprawdź uprawnienia użytkownika serwera www" + +#, fuzzy +#~ msgid "Compruebe la extensión del archivo" +#~ msgstr "Sprawdź ustawienia rozszerzeń plików" + +#, fuzzy +#~ msgid "Compruebe la configuración de PHP para subir archivos" +#~ msgstr "Sprawdź ustawienia PHP dla wysyłania plików" + +#, fuzzy +#~ msgid "Compruebe los permisos del directorio temporal" +#~ msgstr "Sprawdź uprawnienia dla folderu tymczasowego" + +#, fuzzy +#~ msgid "Error al eliminar los usuarios del grupo" +#~ msgstr "Błąd podczas usuwania grup użytkowników" + +#, fuzzy +#~ msgid "Compruebe el formato del archivo" +#~ msgstr "Sprawdź format pliku" + +#~ msgid "Importación finalizada" +#~ msgstr "Import został zakończony" + +#~ msgid "La sesión no puede ser inicializada" +#~ msgstr "Sesja nie może zostać zainicjalizowana" + +#~ msgid "El directorio \"/config\" no existe" +#~ msgstr "Katalog \"config\" nie istnieje" + +#~ msgid "No es posible escribir en el directorio \"config\"" +#~ msgstr "Nie można zapisywać do katalogu \"config\"" + +#, fuzzy +#~ msgid "Los permisos del directorio \"/config\" son incorrectos" +#~ msgstr "Katalog \"config\" ma nieprawidłowe uprawnienia" + +#~ msgid "Finalizar sesión" +#~ msgstr "Wyloguj sesję" + +#~ msgid "Tiempo inactivo" +#~ msgstr "Czas nieaktywności" + +#~ msgid "Tiempo total" +#~ msgstr "Czas całkowity" + +#~ msgid "Actualización" +#~ msgstr "Aktualizuj" + +#~ msgid "Actualización de versión realizada." +#~ msgstr "Aktualizacja wersji została zakończona" + +#, fuzzy +#~ msgid "Indicar nombre de usuario admin" +#~ msgstr "Nazwa administratora" + +#, fuzzy +#~ msgid "Usuario admin para acceso a la aplicación" +#~ msgstr "Użytkownik administracyjny do zalogowania się w aplikacji" + +#, fuzzy +#~ msgid "Indicar la clave de admin" +#~ msgstr "Podaj hasło administratora" + +#~ msgid "Clave del usuario admin de la aplicación" +#~ msgstr "Hasło administratora aplikacji" + +#, fuzzy +#~ msgid "Indicar la clave maestra" +#~ msgstr "Hasło główne" + +#, fuzzy +#~ msgid "Clave maestra para encriptar las claves" +#~ msgstr "Hasło główne do szyfrowania" + +#, fuzzy +#~ msgid "Clave maestra muy corta" +#~ msgstr "Hasło główne jest zbyt krótkie" + +#~ msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" +#~ msgstr "Hasło główne musi mieć przynajmniej 11 znaków" + +#, fuzzy +#~ msgid "Indicar el usuario de la BBDD" +#~ msgstr "Użytkownik bazy danych" + +#, fuzzy +#~ msgid "Usuario con permisos de administrador de la Base de Datos" +#~ msgstr "Użytkownik bazy danych z uprawnieniami administracyjnymi" + +#, fuzzy +#~ msgid "Indicar el nombre de la BBDD" +#~ msgstr "Nazwa bazy danych" + +#~ msgid "Nombre para la BBDD de la aplicación pej. syspass" +#~ msgstr "Nazwa bazy danych aplikacji, np. syspass" + +#~ msgid "El nombre de la BBDD no puede contener \".\"" +#~ msgstr "Nazwa bazy danych nie może zawierać \".\"" + +#~ msgid "Elimine los puntos del nombre de la Base de Datos" +#~ msgstr "Usuń kropki z nazwy bazy danych" + +#, fuzzy +#~ msgid "Indicar el servidor de la BBDD" +#~ msgstr "Podaj serwer bazy danych" + +#~ msgid "Servidor donde se instalará la Base de Datos" +#~ msgstr "Serwer na którym będzie zainstalowana baza danych" + +#~ msgid "No es posible comprobar el usuario de sysPass" +#~ msgstr "Brak możliwości sprawdzenia użytkownika sysPass" + +#~ msgid "Compruebe los permisos del usuario de conexión a la BD" +#~ msgstr "Sprawdź prawa dostępu połączenia do bazy danych" + +#~ msgid "La BBDD ya existe" +#~ msgstr "Baza danych już istnieje" + +#, fuzzy +#~ msgid "Indique una nueva Base de Datos o elimine la existente" +#~ msgstr "Podaj inną bazę danych lub usuń istniejącą" + +#, fuzzy +#~ msgid "Error al crear la BBDD" +#~ msgstr "Błąd przy tworzeniu bazy danych" + +#, fuzzy +#~ msgid "Verifique los permisos del usuario de la Base de Datos" +#~ msgstr "Sprawdź prawa dostępu użytkownika bazy danych" + +#~ msgid "El archivo de estructura de la BBDD no existe" +#~ msgstr "Struktura plików bazy danych nie istnieje" + +#~ msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." +#~ msgstr "Błąd przy tworzeniu bazy danych. Proszę ściągnąć ponownie." + +#, fuzzy +#~ msgid "Error al seleccionar la BBDD" +#~ msgstr "Błąd wyboru bazy danych." + +#~ msgid "" +#~ "No es posible usar la Base de Datos para crear la estructura. Compruebe " +#~ "los permisos y que no exista." +#~ msgstr "Błąd tworzenia struktury w bazie danych. Sprawdź prawa dostępu." + +#~ msgid "Error al crear la estructura de la Base de Datos." +#~ msgstr "Błąd przy tworzeniu struktury bazy danych" + +#~ msgid "Informe al desarrollador" +#~ msgstr "Zgłoś developerowi" + +#, fuzzy +#~ msgid "Error al actualizar la clave maestra del usuario \"admin\"" +#~ msgstr "Błąd aktualizacji głównego hasła dla użytkownika \"admin\"" + +#~ msgid "No es posible conectar con el servidor de LDAP" +#~ msgstr "Błąd połączenia z serwerem LDAP" + +#~ msgid "Error al conectar (BIND)" +#~ msgstr "Błąd połączenia (BIND)" + +#~ msgid "Error al buscar objetos en DN base" +#~ msgstr "Błąd wyszukiwania obiektów w bazowym DN" + +#, fuzzy +#~ msgid "Error al buscar RDN de grupo" +#~ msgstr "Błąd podczas wyszukiwania grupy RDN" + +#, fuzzy +#~ msgid "Error al localizar el usuario en LDAP" +#~ msgstr "Błąd podczas szukania użytkownika w LDAPie" + +#~ msgid "Error al buscar el grupo de usuarios" +#~ msgstr "Błąd podczas szukania grupy użytkowników" + +#~ msgid "Usuario verificado en grupo" +#~ msgstr "Użytkownik zweryfikowany w grupie" + +#~ msgid "Vaciar Eventos" +#~ msgstr "Wyczyść zdarzenia" + +#, fuzzy +#~ msgid "Cliente no encontrado" +#~ msgstr "Nie znaleziono klienta" + +#, fuzzy +#~ msgid "Error al obtener los usuarios" +#~ msgstr "Błąd podczas przetwarzania użytkowników" + +#~ msgid "Migrar Perfiles" +#~ msgstr "Migracja profili" + +#, fuzzy +#~ msgid "Error al obtener perfiles" +#~ msgstr "Błąd podczas przetwarzania profili" + +#~ msgid "Operación realizada correctamente" +#~ msgstr "Operacja zakończona sukcesem" + +#, fuzzy +#~ msgid "Fallo al realizar la operación" +#~ msgstr "Błąd podczas wykonywania operacji" + +#~ msgid "Formato de XML inválido" +#~ msgstr "Nieprawidłowy format XML" + +#, fuzzy +#~ msgid "Error al aplicar la actualización de la Base de Datos" +#~ msgstr "Błąd aktualizacji bazy danych" + +#~ msgid "Compruebe el registro de eventos para más detalles" +#~ msgstr "Po więcej szczegółów zajrzyj do logu" + +#, fuzzy +#~ msgid "Error al aplicar la actualización auxiliar" +#~ msgstr "Błąd podczas aktualizacji pomocniczej" + +#~ msgid "Actualizar BBDD" +#~ msgstr "Aktualizacja bazy danych" + +#~ msgid "No es necesario actualizar la Base de Datos." +#~ msgstr "Aktualizacja bazy danych jest zbędna" + +#~ msgid "Actualización de la Base de Datos realizada correctamente." +#~ msgstr "Aktualizacja bazy danych zakończona sukcesem" + +#~ msgid "Actualizar Configuración" +#~ msgstr "Aktualizacja konfiguracji" + +#~ msgid "No se pudo realizar la petición de cambio de clave." +#~ msgstr "Nie można wykonać żądania zmiany hasła" + +#~ msgid "Usuario de LDAP" +#~ msgstr "Użytkownik LDAP" + +#~ msgid "Activación Cuenta" +#~ msgstr "Aktywacja konta" + +#~ msgid "Su cuenta está pendiente de activación." +#~ msgstr "Oczekujesz na aktywację konta" + +#~ msgid "En breve recibirá un email de confirmación." +#~ msgstr "Powinieneś wkrótce otrzymać powiadomienie emailem" + +#~ msgid "Nuevo usuario de LDAP" +#~ msgstr "Nowy użytkownik LDAP" + +#, fuzzy +#~ msgid "Error al migrar grupo del usuario" +#~ msgstr "Błąd przy migracji grupy użytkowników" + +#~ msgid "Versión de PHP requerida >= " +#~ msgstr "Wymagana wersja PHP >=" + +#~ msgid "" +#~ "Actualice la versión de PHP para que la aplicación funcione correctamente" +#~ msgstr "SysPass wymaga wyższej wersji PHP" + +#~ msgid "Exportar XML" +#~ msgstr "Eksport XML" + +#, fuzzy +#~ msgid "Error al crear el archivo XML" +#~ msgstr "Błąd tworzenia pliku XML" + +#, fuzzy +#~ msgid "No es posible procesar el archivo XML" +#~ msgstr "Błąd przetwarzania pliku XML" + +#~ msgid "Archivo XML no soportado" +#~ msgstr "Niewspierany plik XML" + +#~ msgid "No es posible detectar la aplicación que exportó los datos" +#~ msgstr "Nieznana aplikacja źródłowa eksportu" + +#~ msgid "Último backup" +#~ msgstr "Ostatania kopia bezpieczeństwa" + +#~ msgid "Última exportación" +#~ msgstr "Ostani eksport" + +#~ msgid "Registro de eventos vaciado" +#~ msgstr "Log wyczyszczony" + +#, fuzzy +#~ msgid "Error al vaciar el registro de eventos" +#~ msgstr "Błąd przy czyszczeniu logu" + +#~ msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" +#~ msgstr "Ta wersja PHP jest podatna na atak NULL Byte (CVE-2006-7243)" + +#~ msgid "Actualice la versión de PHP para usar sysPass de forma segura" +#~ msgstr "Zaktualizuj PHP aby zapewnić bezpieczne używanie sysPass" + +#~ msgid "No se encuentra el generador de números aleatorios." +#~ msgstr "Nie znaleziono generatora liczb losowych" + +#~ msgid "" +#~ "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" +#~ msgstr "" +#~ "Bez tej funkcji, atakujący może użyć twojego konta do zresetowania hasła" + +#~ msgid "Instalación finalizada" +#~ msgstr "Instalacja zakończona" + +#~ msgid "Descargar nueva versión" +#~ msgstr "Pobierz nową wersję" + +#~ msgid "Token de autorización visualizado" +#~ msgstr "Token poświadczenia wyświetlony" + +#~ msgid "Autorizaciones" +#~ msgstr "Poświadczenia" + +#~ msgid "Hablitar edición" +#~ msgstr "Włącz edycję" + +#~ msgid "Usuarios Secundarios" +#~ msgstr "Secondary Users" + +#~ msgid "Grupos Secundarios" +#~ msgstr "Secondary Groups" + +#~ msgid "Modificar Cuenta" +#~ msgstr "Edytuj konto" + +#, fuzzy +#~ msgid "No hay backups para descargar" +#~ msgstr "Brak kopii bezpieczeństwa do pobrania" + +#, fuzzy +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "Brak plików do pobrania" + +#~ msgid "Se permite un máximo de 4 caracteres." +#~ msgstr "Maksymalnie 4 znaki" + +#~ msgid "Primera página" +#~ msgstr "Pierwsza strona" + +#~ msgid "Página anterior" +#~ msgstr "Poprzednia strona" + +#~ msgid "Página siguiente" +#~ msgstr "Następna strona" + +#~ msgid "Última página" +#~ msgstr "Ostatnia strona" + +#~ msgid "Comprobar" +#~ msgstr "Sprawdź" + +#, fuzzy +#~ msgid "Cambiar Clave" +#~ msgstr "Zmień hasło" + +#~ msgid "Añadir" +#~ msgstr "Dodaj" + +#~ msgid "Abrir enlace a" +#~ msgstr "Otwórz link w" + +#~ msgid "Limpiar" +#~ msgstr "Wyczyść" + +#~ msgid "Parámetros especiales:" +#~ msgstr "Parametry specjalne" + +#~ msgid "Realizar" +#~ msgstr "Wykonaj" + +#~ msgid "Extensión" +#~ msgstr "Rozszerzenie" + +#~ msgid "Tamaño de archivo superado" +#~ msgstr "Przekroczony rozmiar pliku" + +#~ msgid "Solicitud no enviada" +#~ msgstr "Żądanie nie zostało wysłane" + +#~ msgid "Compruebe datos de usuario o consulte con el administrador" +#~ msgstr "Sprawdź dane użytkownika lub skontaktuj się z administratorem" + +#, fuzzy +#~ msgid "La cuenta no existe" +#~ msgstr "Konto nie istnieje" + +#~ msgid "Errores" +#~ msgstr "Błędy" + +#~ msgid "Error al añadir favorito" +#~ msgstr "Błąd podczas dodawania do ulubionych" + +#~ msgid "Error al eliminar favorito" +#~ msgstr "Błąd usuwania ulubionych" + +#, fuzzy +#~ msgid "Error al eliminar las etiquetas de la cuenta" +#~ msgstr "Błąd przy usuwaniu tagów konta" + +#~ msgid "Método inválido" +#~ msgstr "Nieprawidłowa metoda" + +#~ msgid "Datos inválidos" +#~ msgstr "Nieprawidłowe dane" + +#~ msgid "Formato incorrecto" +#~ msgstr "Zły format" + +#~ msgid "Nombre de categoría a buscar" +#~ msgstr "Category name to search for" + +#~ msgid "Nombre de cliente a buscar" +#~ msgstr "Client name to search for" + +#~ msgid "Método ya inicializado" +#~ msgstr "Metoda zainicjowana juz wcześniej" + +#~ msgid "Método no disponible" +#~ msgstr "Metoda niedostępna" + +#, fuzzy +#~ msgid "Los parámetros de DokuWiki no están configurados" +#~ msgstr "Brak ustawionych parametrów DokuWiki" + +#~ msgid "Error" +#~ msgstr "Błąd" + +#~ msgid "Conexión correcta" +#~ msgstr "Połączenie ustanowione" + +#~ msgid "Error de conexión a DokuWiki" +#~ msgstr "Błąd połączenia z DokuWiki" + +#~ msgid "Faltan parámetros de syslog remoto" +#~ msgstr "Brakujące parametry zdalnego syslogu" + +#~ msgid "Syslog remoto deshabilitado" +#~ msgstr "Zdalny syslog wyłączony" + +#, fuzzy +#~ msgid "Error al guardar la configuración" +#~ msgstr "Błąd zapisu konfiguracji" + +#~ msgid "Faltan parámetros de DokuWiki" +#~ msgstr "Brakujące parametry DokuWiki" + +#~ msgid "DokuWiki habiltada" +#~ msgstr "DokuWiki włączona" + +#~ msgid "DokuWiki deshabilitada" +#~ msgstr "DokuWiki wyłączona" + +#~ msgid "Enlace creado" +#~ msgstr "Link utworzony" + +#~ msgid "Enlace actualizado" +#~ msgstr "Link zaktualizowany" + +#~ msgid "Enlace eliminado" +#~ msgstr "Link usunięty" + +#~ msgid "Plugin habilitado" +#~ msgstr "Plugin włączony" + +#~ msgid "Plugin deshabilitado" +#~ msgstr "Plugin wyłączony" + +#~ msgid "Plugin restablecido" +#~ msgstr "Resetuj plugin" + +#~ msgid "Favorito añadido" +#~ msgstr "Dodano do ulubionych" + +#~ msgid "Favorito eliminado" +#~ msgstr "Favorite deleted" + +#~ msgid "Importación de usuarios de LDAP realizada" +#~ msgstr "Zakończono import użytkowników LDAP" + +#, fuzzy +#~ msgid "Error al importar usuarios de LDAP" +#~ msgstr "Błąd podczas imortowania użytkowników LDAP" + +#~ msgid "Notificación leída" +#~ msgstr "Notification read" + +#~ msgid "Notificación eliminada" +#~ msgstr "Powiadomienie usunięto" + +#~ msgid "Solicitud enviada por correo" +#~ msgstr "Żądania wysłane mailem" + +#~ msgid "Solicitud no enviada por correo" +#~ msgstr "Żądanie mailem nie zostało wysłane" + +#~ msgid "Solicitud realizada" +#~ msgstr "Żądanie wykonane" + +#~ msgid "Detalles de Plugin" +#~ msgstr "Szczegóły pluginu" + +#, fuzzy +#~ msgid "Error al obtener la clave maestra del usuario" +#~ msgstr "Błąd przy pobieraniu głównego hasła" + +#~ msgid "Es necesaria su clave anterior" +#~ msgstr "Twoje poprzednie hasło jest potrzebne" + +#~ msgid "Servidor LDAP" +#~ msgstr "Serwer LDAP" + +#~ msgid "Buscar Categorías" +#~ msgstr "Szukaj kategorii" + +#~ msgid "Añadir Categoría" +#~ msgstr "Dodaj kategorię" + +#~ msgid "Buscar Clientes" +#~ msgstr "Szukaj klienta" + +#~ msgid "Añadir Cliente" +#~ msgstr "Dodaj klienta" + +#~ msgid "Observador no inicializado" +#~ msgstr "Obserwator nie został zainicjalizowany" + +#~ msgid "Es necesario un objeto" +#~ msgstr "Objekt jest wymagany" + +#, fuzzy +#~ msgid "Indicar la clave de la BBDD" +#~ msgstr "Podaj hasło bazy danych" + +#~ msgid "Clave del usuario administrador de la Base de Datos" +#~ msgstr "Hasło administratora bazy danych" + +#~ msgid "Error al crear el usuario de conexión a MySQL '%s'" +#~ msgstr "Błąd przy nawiązywaniu połączenia MySQL użytkownikiem '%s'" + +#, fuzzy +#~ msgid "La BBDD no existe" +#~ msgstr "Baza danych nie istnieje" + +#~ msgid "Es necesario crearla y asignar los permisos necesarios" +#~ msgstr "Stwórz i nadaj odpowiednie uprawnienia" + +#~ msgid "Error al actualizar la configuración" +#~ msgstr "Błąd aktualizacji konfiguracji" + +#~ msgid "Usuario no indicado" +#~ msgstr "Brak ustawionego użytkownika" + +#~ msgid "Acción no indicada" +#~ msgstr "Brak ustwionej akcji" + +#~ msgid "Es necesario un nombre de etiqueta" +#~ msgstr "Nazwa tagu jest wymagana" + +#~ msgid "Respuesta XML-RPC inválida" +#~ msgstr "Nieprawidłowa odpowiedź XML-RPC" + +#~ msgid "Id de categoría no definido. No es posible importar cuenta." +#~ msgstr "Brak id kategorii. Brak możliwosci importu konta." + +#, fuzzy +#~ msgid "Id de cliente no definido. No es posible importar cuenta." +#~ msgstr "Brak id klienta. Nie można zaimportować konta." + +#~ msgid "Clave de encriptación no indicada" +#~ msgstr "Brak hasła szyfrowania" + +#~ msgid "Extensión '%s' no cargada" +#~ msgstr "Rozszerzenie '%s' nie jest załadowane" + +#~ msgid "Categoría duplicada" +#~ msgstr "Zduplikowana kategoria" + +#~ msgid "Categoría no encontrada" +#~ msgstr "Kategorii nie znaleziono" + +#, fuzzy +#~ msgid "Error al crear el campo personalizado" +#~ msgstr "Błąd przy tworzeniu własnego pola" + +#, fuzzy +#~ msgid "Error al eliminar el campo personalizado" +#~ msgstr "Błąd przy usuwaniu własnego pola" + +#, fuzzy +#~ msgid "Error al actualizar el campo personalizado" +#~ msgstr "Błąd przy aktualizacji własnego pola" + +#~ msgid "Campo personalizado no encontrado" +#~ msgstr "Nie znaleziono własnego pola" + +#~ msgid "No se encontraron campos personalizados" +#~ msgstr "Nie znaleziono własnych pól" + +#, fuzzy +#~ msgid "No hay datos de campos personalizados" +#~ msgstr "Brak danych z własnych pól" + +#, fuzzy +#~ msgid "Error al migrar campos personalizados" +#~ msgstr "Błąd migracji własnych pól" + +#~ msgid "Archivo subido" +#~ msgstr "Upload pliku" + +#~ msgid "Grupo en uso" +#~ msgstr "Grupa w użyciu" + +#~ msgid "Actualizar Grupo" +#~ msgstr "Aktualizacja grupy" + +#~ msgid "Error al asignar los usuarios al grupo" +#~ msgstr "Błąd przypisywania użytkowników do grupy" + +#, fuzzy +#~ msgid "Error al crear la notificación" +#~ msgstr "Błąd przy dodawaniu powiadomień" + +#, fuzzy +#~ msgid "Error al eliminar la notificación" +#~ msgstr "Błąd przy usuwaniu powiadomień" + +#, fuzzy +#~ msgid "Error al modificar la notificación" +#~ msgstr "Błąd aktualizacji powiadomień" + +#~ msgid "Error al obtener la notificación" +#~ msgstr "Błąd pobierania powiadomień" + +#, fuzzy +#~ msgid "Error al obtener las notificaciones" +#~ msgstr "Błąd pobierania powiadomień" + +#, fuzzy +#~ msgid "Error al crear el plugin" +#~ msgstr "Błąd przy dodawaniu pluginu" + +#, fuzzy +#~ msgid "Error al eliminar el plugin" +#~ msgstr "Błąd przy usuwaniu pluginu" + +#, fuzzy +#~ msgid "Error al actualizar el plugin" +#~ msgstr "Błąd aktualizacji pluginu" + +#~ msgid "Habilitado" +#~ msgstr "Włączone" + +#, fuzzy +#~ msgid "Error al crear perfil" +#~ msgstr "Błąd tworzenia profilu" + +#~ msgid "Perfil en uso" +#~ msgstr "Profil w użyciu" + +#, fuzzy +#~ msgid "Error al eliminar perfil" +#~ msgstr "Błąd usuwania profilu" + +#, fuzzy +#~ msgid "Error al modificar perfil" +#~ msgstr "Błąd modyfikacji profilu" + +#~ msgid "Enlace visualizado" +#~ msgstr "Link wyświetlony" + +#, fuzzy +#~ msgid "Error al actualizar enlace" +#~ msgstr "Błąd przy aktualizacji linku" + +#~ msgid "Enlace ya creado" +#~ msgstr "Link już istnieje" + +#, fuzzy +#~ msgid "Error al crear enlace" +#~ msgstr "Błąd przy tworzeniu linku" + +#, fuzzy +#~ msgid "Error al eliminar enlace" +#~ msgstr "Błąd przy usuwaniu linku" + +#~ msgid "Error al renovar enlace" +#~ msgstr "Błąd przy odświeżaniu linku" + +#~ msgid "Actualizar Enlace" +#~ msgstr "Aktualizuj link" + +#, fuzzy +#~ msgid "Error al obtener enlace" +#~ msgstr "Błąd pobierania linku" + +#~ msgid "ON" +#~ msgstr "Wł." + +#~ msgid "OFF" +#~ msgstr "Wył." + +#~ msgid "Etiqueta duplicada" +#~ msgstr "Zduplikowany tag" + +#, fuzzy +#~ msgid "Error al crear etiqueta" +#~ msgstr "Błąd przy tworzeniu tagu" + +#, fuzzy +#~ msgid "Error al eliminar etiqueta" +#~ msgstr "Błąd przy usuwaniu tagu" + +#, fuzzy +#~ msgid "Error al actualizar etiqueta" +#~ msgstr "Błąd przy aktualizacji tagu" + +#, fuzzy +#~ msgid "Error al obtener etiqueta" +#~ msgstr "Błąd pobierania tagu" + +#~ msgid "Login/email de usuario duplicados" +#~ msgstr "Email/login istnieje" + +#, fuzzy +#~ msgid "Error al obtener los datos del usuario" +#~ msgstr "Błąd pobierania danych użytkownika" + +#, fuzzy +#~ msgid "No se encontraron objetos para sincronizar" +#~ msgstr "Brak elementów do synchronizacji" + +#~ msgid "Sincronización finalizada" +#~ msgstr "Synchronizacja zakończona" + +#, fuzzy +#~ msgid "Error al migrar cuenta de usuario" +#~ msgstr "Błąd przy migracji konta użytkownika" + +#, fuzzy +#~ msgid "Error al obtener grupo de usuarios" +#~ msgstr "Błąd pobierania grup użytkowników" + +#, fuzzy +#~ msgid "Error en comprobación de hash" +#~ msgstr "Błąd przy sprawdzaniu hasha" + +#, fuzzy +#~ msgid "Hash inválido o expirado" +#~ msgstr "Zły lub wygasły hash" + +#~ msgid "Error al generar el hash de recuperación" +#~ msgstr "Błąd podczas generowania hasha odzyskiwania" + +#~ msgid "Actualizando preferencias" +#~ msgstr "Aktualizacja ustawień" + +#~ msgid "No es posible leer/escribir el archivo: %s" +#~ msgstr "Błąd odczytu/zapisu pliku: %s" + +#, fuzzy +#~ msgid "No hay elementos para guardar" +#~ msgstr "Brak elementów do zapisania" + +#~ msgid "Socket no inicializado" +#~ msgstr "Gniazdo niezainicjalizowane" + +#, fuzzy +#~ msgid "Error al enviar datos" +#~ msgstr "Błąd podczas wysyłania danych" + +#~ msgid "Respuesta" +#~ msgstr "Odpowiedź" + +#~ msgid "Ver Detalles" +#~ msgstr "Pokaż szczegóły" + +#~ msgid "Copiar" +#~ msgstr "Kopiuj" + +#~ msgid "Restaurar" +#~ msgstr "Przywróć" + +#~ msgid "Descargar" +#~ msgstr "Pobierz" + +#~ msgid "Crítico" +#~ msgstr "Krytyczne" + +#~ msgid "Accesos" +#~ msgstr "Dostęp" + +#~ msgid "Cuentas Vinculadas" +#~ msgstr "Podlinkowane konta" + +#~ msgid "Hay %d notificaciones pendientes" +#~ msgstr "Masz %d nieprzeczytanych powiadomień" + +#~ msgid "Agente" +#~ msgstr "Agent" + +#~ msgid "Crear Usuario" +#~ msgstr "Dodaj użytkownika" + +#~ msgid "Actualizar Usuario" +#~ msgstr "Update User" + +#~ msgid "Actualizar Clave Usuario" +#~ msgstr "Zmień hasło użytkownika" + +#~ msgid "Crear Grupo" +#~ msgstr "Add Group" + +#~ msgid "Crear Perfil" +#~ msgstr "Add Profile" + +#~ msgid "Actualizar Perfil" +#~ msgstr "Aktualizuj profil" + +#, fuzzy +#~ msgid "Crear Cliente" +#~ msgstr "Dodaj klienta" + +#~ msgid "Crear Categoría" +#~ msgstr "Dodaj kategorię" + +#~ msgid "Actualizar Categoría" +#~ msgstr "Aktualizuj kategorię" + +#~ msgid "Crear Autorización" +#~ msgstr "Dodaj autoryzację" + +#~ msgid "Crear Campo" +#~ msgstr "Dodaj pole" + +#~ msgid "Actualizar Campo" +#~ msgstr "Aktualizuj pole" + +#, fuzzy +#~ msgid "Crear Enlace" +#~ msgstr "Dodaj link" + +#~ msgid "Crear Etiqueta" +#~ msgstr "Dodaj tag" + +#~ msgid "Actualizar Etiqueta" +#~ msgstr "Aktualizuj tag" + +#~ msgid "Actualizar Plugin" +#~ msgstr "Aktualizuj plugin" + +#~ msgid "Crear Cuenta" +#~ msgstr "Dodaj konto" + +#~ msgid "Usuarios importados" +#~ msgstr "Imported users" + +#~ msgid "Acceso denegado" +#~ msgstr "Odmowa dostępu" + +#~ msgid "Error al añadir las etiquetas de la cuenta" +#~ msgstr "Error while adding the account's tags" + +#~ msgid "Grupos eliminados" +#~ msgstr "Groups deleted" + +#~ msgid "Perfiles eliminados" +#~ msgstr "Profiles deleted" + +#~ msgid "Clientes eliminados" +#~ msgstr "Clients deleted" + +#~ msgid "Categorías eliminadas" +#~ msgstr "Categories deleted" + +#~ msgid "Autorizaciones eliminadas" +#~ msgstr "Authorizations deleted" + +#~ msgid "Campos eliminados" +#~ msgstr "Fields deleted" + +#~ msgid "Enlaces eliminados" +#~ msgstr "Links deleted" + +#~ msgid "Etiquetas eliminadas" +#~ msgstr "Tags deleted" + +#~ msgid "Archivos eliminados" +#~ msgstr "Files deleted" + +#~ msgid "Cuentas eliminadas" +#~ msgstr "Accounts removed" + +#~ msgid "Notificación creada" +#~ msgstr "Notification created" + +#~ msgid "Notificaciones eliminadas" +#~ msgstr "Notifications deleted" + +#~ msgid "Usando clave temporal" +#~ msgstr "Using temporary password" + +#~ msgid "Clave temporal caducada" +#~ msgstr "Temporary password expired" + +#~ msgid "Sesión" +#~ msgstr "Session" + +#~ msgid "Error al comprobar la base de datos" +#~ msgstr "Error while checking the database" + +#~ msgid "Intente de nuevo la instalación" +#~ msgstr "Please, try the installation again" + +#~ msgid "Es necesario un componente" +#~ msgstr "A component is needed" + +#~ msgid "Es necesario un tipo" +#~ msgstr "Typ jest wymagany" + +#~ msgid "Es necesario un destinatario" +#~ msgstr "A target is needed" + +#~ msgid "Error procesando línea" +#~ msgstr "Error while processing line" + +#~ msgid "Cuentas importadas" +#~ msgstr "Accounts imported" + +#~ msgid "Archivo no encontrado" +#~ msgstr "Brak pliku" + +#~ msgid "Grupo no encontrado" +#~ msgstr "Brak grupy" + +#~ msgid "Notificación no encontrada" +#~ msgstr "Notification not found" + +#~ msgid "Plugin no encontrado" +#~ msgstr "Brak pluginu" + +#~ msgid "Perfil no encontrado" +#~ msgstr "Brak profilu" + +#~ msgid "Enlace no encontrado" +#~ msgstr "Brak linku" + +#~ msgid "Etiqueta no encontrada" +#~ msgstr "Brak tagu" + +#~ msgid "Usuario no encontrado" +#~ msgstr "Brak użytkownika" + +#~ msgid "Consulta en blanco" +#~ msgstr "Puste zapytanie" + +#~ msgid "No es posible iniciar una transacción" +#~ msgstr "Unable to start a transaction" + +#~ msgid "No es posible finalizar una transacción" +#~ msgstr "Unable to finish a transaction" + +#~ msgid "Cuenta no encontrada" +#~ msgstr "Account not found" + +#~ msgid "Hash de clave maestra actualizado" +#~ msgstr "Zaktualizowano hash głównego hasła" + +#~ msgid "Error al actualizar el hash de la clave maestra" +#~ msgstr "Błąd podczas aktualizacji hasha głównego hasła" + +#~ msgid "Usuarios eliminados" +#~ msgstr "Usunięto użytkownika" + +#~ msgid "Notificación actualizada" +#~ msgstr "Notification updated" + +#~ msgid "Restricción de integridad" +#~ msgstr "Ograniczenie spójności" + +#~ msgid "Clave de encriptación incorrecta" +#~ msgstr "Złe hasło" + +#~ msgid "Código de seguridad incorrecto" +#~ msgstr "Wrong security code" + +#~ msgid "Es necesario confirmar la actualización" +#~ msgstr "The updating need to be confirmed" + +#~ msgid "En 5 segundos será redirigido al login" +#~ msgstr "You will be redirected to log in within 5 seconds" + +#~ msgid "Error al aplicar la actualización de la aplicación" +#~ msgstr "Error while applying the application update" + +#~ msgid "Intentos excedidos" +#~ msgstr "Attempts exceeded" + +#~ msgid "Token no encontrado" +#~ msgstr "Token not found" + +#~ msgid "Error al crear track" +#~ msgstr "Error while creating track" + +#~ msgid "Error al eliminar track" +#~ msgstr "Error while removing the track" + +#~ msgid "Error al actualizar track" +#~ msgstr "Error while updating the track" + +#~ msgid "Error al obtener track" +#~ msgstr "Error while retrieving the track" + +#~ msgid "Error al obtener tracks" +#~ msgstr "Error while retrieving the tracks" + +#~ msgid "Actualizando IDs de cuentas" +#~ msgstr "Updating account IDs" + +#~ msgid "Actualizando IDs de categorías" +#~ msgstr "Updating category IDs" + +#~ msgid "Actualizando IDs de clientes" +#~ msgstr "Updating Client IDs" + +#~ msgid "Actualizando IDs de grupos" +#~ msgstr "Updating group IDs" + +#~ msgid "Actualizando IDs de perfil" +#~ msgstr "Updating profile IDs" + +#~ msgid "Actualizando IDs de usuarios" +#~ msgstr "Updating user IDs" + +#~ msgid "Acción no encontrada" +#~ msgstr "Action not found" + +#~ msgid "Contexto ya inicializado" +#~ msgstr "Context already initialized" + +#~ msgid "Contexto inválido" +#~ msgstr "Invalid context" + +#~ msgid "Contexto no inicializado" +#~ msgstr "Context not initialized" + +#~ msgid "Clase no válida para iconos" +#~ msgstr "Invalid icons class" + +#~ msgid "Tipo de filtro inválido" +#~ msgstr "Invalid filter type" + +#~ msgid "Tipo de objeto incorrecto" +#~ msgstr "Wrong object type" + +#~ msgid "No es posible inicializar" +#~ msgstr "Unable to initialize" + +#~ msgid "Error al eliminar los archivos" +#~ msgstr "Error while deleting the files" + +#~ msgid "Error al eliminar las cuentas" +#~ msgstr "Error while deleting the accounts" + +#~ msgid "Error al eliminar la categorías" +#~ msgstr "Error while deleting the categories" + +#~ msgid "Error al eliminar los clientes" +#~ msgstr "Error while deleting the clients" + +#~ msgid "Error al eliminar los campos personalizados" +#~ msgstr "Error while removing the custom fields" + +#~ msgid "Error al crear el tipo de campo" +#~ msgstr "Error while creating the field type" + +#~ msgid "Error al actualizar el tipo de campo" +#~ msgstr "Error while updating the field type" + +#~ msgid "Error al eliminar el tipo de campo" +#~ msgstr "Error while deleting the field type" + +#~ msgid "Error al eliminar las notificaciones" +#~ msgstr "Error while deleting the notifications" + +#~ msgid "El enlace no existe" +#~ msgstr "The link does not exist" + +#~ msgid "Error al eliminar etiquetas" +#~ msgstr "Error while removing the tags" + +#~ msgid "Error al eliminar los usuarios" +#~ msgstr "Error while deleting the users" + +#~ msgid "El usuario no existe" +#~ msgstr "The user does not exist" + +#~ msgid "Error al eliminar los perfiles" +#~ msgstr "Error while removing the profiles" + +#~ msgid "Error al eliminar archivos" +#~ msgstr "Error while deleting the files" + +#~ msgid "Fomato incorrecto" +#~ msgstr "Invalid format" + +#~ msgid "Error al eliminar tokens" +#~ msgstr "Error while removing the tokens" + +#~ msgid "Copiando base de datos" +#~ msgstr "Copying database" + +#~ msgid "Copiando aplicación" +#~ msgstr "Copying application" + +#~ msgid "Rollback" +#~ msgstr "Rollback" + +#~ msgid "Error al comprobar clave temporal" +#~ msgstr "Error while checking the temporary password" + +#~ msgid "Campo no encontrado" +#~ msgstr "Field not found" + +#~ msgid "Error al eliminar los campos" +#~ msgstr "Error while deleting the fields" + +#~ msgid "Exportando categorías" +#~ msgstr "Exporting categories" + +#~ msgid "Exportando clientes" +#~ msgstr "Exporting clients" + +#~ msgid "Exportando etiquetas" +#~ msgstr "Exporting tags" + +#~ msgid "Exportando cuentas" +#~ msgstr "Exporting accounts" + +#~ msgid "Cuenta importada" +#~ msgstr "Account imported" + +#~ msgid "Importación XML KeePass" +#~ msgstr "KeePass XML Import" + +#~ msgid "Categoría importada" +#~ msgstr "Category imported" + +#~ msgid "Importación XML sysPass" +#~ msgstr "sysPass XML Import" + +#~ msgid "Datos desencriptados" +#~ msgstr "Data unencrypted" + +#~ msgid "Cliente importado" +#~ msgstr "Client imported" + +#~ msgid "Etiqueta importada" +#~ msgstr "Tag imported" + +#~ msgid "Formato no detectado" +#~ msgstr "Format not detected" + +#~ msgid "Not implemented" +#~ msgstr "Not implemented" + +#~ msgid "Prueba de correo" +#~ msgstr "Mail test" + +#~ msgid "" +#~ "Esto es una prueba de correo para verificar el correcto funcionamiento de " +#~ "la configuración." +#~ msgstr "" +#~ "This is a test email in order to verify that the configuration is working " +#~ "right." + +#~ msgid "Error al eliminar los enlaces" +#~ msgstr "Error while removing the links" + +#~ msgid "Segundos" +#~ msgstr "Seconds" + +#~ msgid "Actualizar Aplicación" +#~ msgstr "Update Application" + +#~ msgid "Actualización de campos personalizados" +#~ msgstr "Custom fields update" + +#~ msgid "Campo" +#~ msgstr "Field" + +#~ msgid "Actualización de enlaces públicos" +#~ msgstr "Public links update" + +#~ msgid "Enlace" +#~ msgstr "Link" + +#~ msgid "Error al eliminar los grupos" +#~ msgstr "Error while deleting the groups" + +#~ msgid "Error al leer datos del archivo (%s)" +#~ msgstr "Error while reading file data (%s)" + +#~ msgid "Error al eliminar el archivo (%s)" +#~ msgstr "Error while deleting the file (%s)" + +#~ msgid "No es posible leer/escribir el archivo (%s)" +#~ msgstr "Unable to read/write the file (%s)" + +#~ msgid "Error al escribir datos en el archivo (%s)" +#~ msgstr "Error while writing data to file (%s)" + +#~ msgid "Cuenta visualizada" +#~ msgstr "Account displayed" + +#~ msgid "Clave visualizada" +#~ msgstr "Password viewed" + +#~ msgid "Exportación de sysPass en XML" +#~ msgstr "sysPass XML export" + +#~ msgid "Etiqueta" +#~ msgstr "Tag" + +#~ msgid "Es necesario actualizar" +#~ msgstr "Updating needed" + +#~ msgid "HTTPS" +#~ msgstr "HTTPS" + +#~ msgid "Clave copiada" +#~ msgstr "Password copied" + +#~ msgid "Archivo visualizado" +#~ msgstr "File viewed" + +#~ msgid "Archivo: %s" +#~ msgstr "File: %s" + +#~ msgid "Máximo tamaño: %s" +#~ msgstr "Maximum size: %s" + +#~ msgid "Máximo tamaño: %d KB" +#~ msgstr "Maximum size: %d KB" + +#~ msgid "Archivo Eliminado" +#~ msgstr "File Deleted" + +#~ msgid "Autorización" +#~ msgstr "Authorization" + +#~ msgid "Autorización visualizada" +#~ msgstr "Authorization viewed" + +#~ msgid "Archivos habilitados" +#~ msgstr "Files enabled" + +#~ msgid "Archivos deshabilitados" +#~ msgstr "Files disabled" + +#~ msgid "Enlaces públicos habilitados" +#~ msgstr "Public links enabled" + +#~ msgid "Enlaces públicos deshabilitados" +#~ msgstr "Public links disabled" + +#~ msgid "Email enviado" +#~ msgstr "Email sent" + +#~ msgid "Error al enviar email" +#~ msgstr "Error while sending the email" + +#~ msgid "Syslog remoto habilitado" +#~ msgstr "Remote syslog enabled" + +#~ msgid "Auth Basic habilitada" +#~ msgstr "Auth Basic enabled" + +#~ msgid "Auth Basic deshabiltada" +#~ msgstr "Auth Basic disabled" + +#~ msgid "No se importaron cuentas" +#~ msgstr "No accounts were imported" + +#~ msgid "Parámetros de LDAP incorrectos" +#~ msgstr "Wrong LDAP parameters" + +#~ msgid "Importación LDAP" +#~ msgstr "LDAP Import" + +#~ msgid "Compruebe su buzón de correo" +#~ msgstr "Please, check your inbox" + +#~ msgid "DokuWiki habilitada" +#~ msgstr "DokuWiki enabled" + +#~ msgid "Versión no disponible" +#~ msgstr "Version unavailable" + +#~ msgid "Notificaciones no disponibles" +#~ msgstr "Notifications not available" + +#~ msgid "Datos incorrectos" +#~ msgstr "Wrong data" + +#~ msgid "No es posible recuperar la clave" +#~ msgstr "Unable to reset the password" + +#~ msgid "Es necesario una cuenta" +#~ msgstr "An account is needed" + +#~ msgid "Usar auto-login con Auth Basic" +#~ msgstr "Use auto-login through Auth Basic" + +#~ msgid "No es posible cambiar el valor de la clave" +#~ msgstr "Unable to change password value" + +#~ msgid "Filtro incorrecto" +#~ msgstr "Wrong filter" + +#~ msgid "El campo personalizado no existe" +#~ msgstr "Custom field not found" + +#~ msgid "Error al eliminar los plugins" +#~ msgstr "Error while deleting the plugins" + +#~ msgid "Clave maestra no establecida" +#~ msgstr "Master password not set" + +#~ msgid "Error al eliminar las categorías" +#~ msgstr "Error while deleting categories" + +#~ msgid "No es posible restaurar la configuración" +#~ msgstr "Unable to restore configuration" + +#~ msgid "Tipo de campo no encontrado" +#~ msgstr "Field type not found" + +#~ msgid "Fallo en la verificación del hash de integridad" +#~ msgstr "Error while checking integrity hash" + +#~ msgid "Error al crear el usuario 'admin'" +#~ msgstr "Error while creating 'admin' user" + +#~ msgid "Servicio de correo no disponible" +#~ msgstr "Mail service unavailable" + +#~ msgid "Error ol obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master pass from context" + +#~ msgid "Error ol establecer la clave maestra en el contexto" +#~ msgstr "Error while setting master password in context" + +#~ msgid "Track no encontrado" +#~ msgstr "Track not found" + +#~ msgid "Actualización de autorizaciones API" +#~ msgstr "API authorizations update" + +#~ msgid "El nodo XML no existe" +#~ msgstr "The XML node does not exist" + +#~ msgid "Imagen no válida" +#~ msgstr "Invalid image" + +#~ msgid "Verificación de datos exportados finalizada" +#~ msgstr "Verification of exported data finished" + +#~ msgid "Error al actualizar los datos del campo personalizado" +#~ msgstr "Error while updating custom field's data" + +#~ msgid "Error al obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master password from context" + +#~ msgid "Nuevo CLiente" +#~ msgstr "New Client" + +#~ msgid "" +#~ "Si está importando un archivo exportado desde el mismo origen, los datos " +#~ "pueden estar comprometidos." +#~ msgstr "" +#~ "If you are importing an exported file from the same origin, the data " +#~ "could be compromised." + +#~ msgid "Categoría visualizada" +#~ msgstr "Category displayed" + +#~ msgid "Cliente visualizado" +#~ msgstr "Client displayed" + +#~ msgid "Etiqueta visualizada" +#~ msgstr "Tag displayed" + +#~ msgid "Error al crear permiso" +#~ msgstr "Error while creating the permission" + +#~ msgid "Error al actualizar permiso" +#~ msgstr "Error while updating the permission" + +#~ msgid "Error al eliminar permiso" +#~ msgstr "Error while removing the permission" + +#~ msgid "Error al eliminar los permisos" +#~ msgstr "Error while removing the permissions" + +#~ msgid "Permiso no encontrada" +#~ msgstr "Permission not found" + +#~ msgid "Ver Permiso" +#~ msgstr "View Permission" + +#~ msgid "Nuevo Permiso" +#~ msgstr "New Permission" + +#~ msgid "Editar Permiso" +#~ msgstr "Edit Permission" + +#~ msgid "Permisos eliminados" +#~ msgstr "Permissions deleted" + +#~ msgid "Permiso eliminado" +#~ msgstr "Permission deleted" + +#~ msgid "Permiso creado" +#~ msgstr "Permission added" + +#~ msgid "Permiso actualizado" +#~ msgstr "Permission updated" + +#~ msgid "Permisos por Defecto" +#~ msgstr "Default Permissions" + +#~ msgid "Buscar Permiso" +#~ msgstr "Search for Permission" + +#~ msgid "Eliminar Permiso" +#~ msgstr "Delete Permission" + +#~ msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" +#~ msgstr "An element of type user, group or profile need to be set" + +#~ msgid "No hay permisos definidos" +#~ msgstr "There aren't any defined permissions" + +#~ msgid "" +#~ "Prioridad de asignación en caso de coincidir con otros permisos asignados " +#~ "por usuario, grupo o perfil." +#~ msgstr "" +#~ "Assignment priority if permissions match with others assigned by user, " +#~ "group or profile." + +#~ msgid "" +#~ "Indica si los permisos serán forzados al crear o modificar la cuenta." +#~ msgstr "" +#~ "Enforces the permissions to be set either on creating or updating an " +#~ "account ." + +#~ msgid "Los permisos serán añadidos a los existentes." +#~ msgstr "Permissions will be merged with the existing ones." + +#~ msgid "Gestión Permisos" +#~ msgstr "Permissions Management" + +#~ msgid "La clave no cumple los carácteres requeridos" +#~ msgstr "Password does not contain the required characters" + +#~ msgid "Es necesario que la clave contenga letras" +#~ msgstr "Password needs to contain letters" + +#~ msgid "Es necesario que la clave contenga minúsculas" +#~ msgstr "Password needs to contain lower case letters" + +#~ msgid "Es necesario que la clave contenga mayúsculas" +#~ msgstr "Password needs to contain upper case letters" + +#~ msgid "Es necesario que la clave contenga números" +#~ msgstr "Password needs to contain numbers" + +#~ msgid "Es necesario que la clave contenga símbolos" +#~ msgstr "Password needs to contain symbols" + +#~ msgid "Error al desconectar del servidor de LDAP" +#~ msgstr "Error while disconnecting from LDAP server" + +#~ msgid "Valor no encontrada" +#~ msgstr "Value not found" + +#~ msgid "Error al eliminar los valores" +#~ msgstr "Error while deleting the values" + +#~ msgid "Dirección IP no establecida" +#~ msgstr "IP address not set" + +#~ msgid "Valores eliminados" +#~ msgstr "Values deleted" + +#~ msgid "Valor eliminado" +#~ msgstr "Value deleted" + +#~ msgid "Valor creado" +#~ msgstr "Value created" + +#~ msgid "Valor actualizado" +#~ msgstr "Value updated" + +#~ msgid "Tipo de valor no definido o incorrecto" +#~ msgstr "Value type not set or incorrect" + +#~ msgid "Expresión regular inválida" +#~ msgstr "Invalid regular expression" + +#~ msgid "Error al vaciar tracks" +#~ msgstr "Error while clearing tracks out" + +#~ msgid "Track desbloqueado" +#~ msgstr "Track unlocked" + +#~ msgid "Tracks limpiados" +#~ msgstr "Tracks cleared out" + +#~ msgid "Grupo visualizado" +#~ msgstr "Group viewed" + +#~ msgid "Plugin disponible" +#~ msgstr "Plugin available" + +#~ msgid "Plugin no disponible" +#~ msgstr "Plugin unavailable" + +#~ msgid "Plugin cargado" +#~ msgstr "Plugin loaded" diff --git a/app/locales/pt_BR/LC_MESSAGES/messages.mo b/app/locales/pt_BR/LC_MESSAGES/messages.mo index b05eca38f2cc813ae8d6518f5f354e6671137419..c8200ea52303ea3d5fe9ee92ebb0b5c16f80094b 100644 GIT binary patch delta 22529 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 literal 117031 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�uvgK*i-2 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 QP)t!Lq}TB~j1_19A7Ka8;Q#;t diff --git a/app/locales/pt_BR/LC_MESSAGES/messages.po b/app/locales/pt_BR/LC_MESSAGES/messages.po index beef296e..91f2bc46 100644 --- a/app/locales/pt_BR/LC_MESSAGES/messages.po +++ b/app/locales/pt_BR/LC_MESSAGES/messages.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" -"POT-Creation-Date: 2018-10-06 12:53+0200\n" -"PO-Revision-Date: 2018-10-12 01:11+0200\n" +"POT-Creation-Date: 2018-10-28 22:22+0100\n" +"PO-Revision-Date: 2018-10-28 22:22+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: \n" "Language: pt_BR\n" @@ -20,1534 +20,279 @@ msgstr "" "X-Poedit-SearchPath-1: ../../../../lib\n" "X-Poedit-SearchPath-2: ../../../config\n" -#: ../../../modules/web/Controllers/AccountFileController.php:161 -msgid "CONSULTA INVÁLIDA" -msgstr "CONSULTA INVÁLIDA" +#: ../../../../lib/SP/Bootstrap.php:278 +#, php-format +msgid "Versión de PHP requerida >= %s <= %s" +msgstr "Required PHP version >= %s <= %s" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:64 -msgid "La sesión no se ha iniciado o ha caducado" -msgstr "A sessão não se iniciou ou caducou" +#: ../../../../lib/SP/Config/ConfigUtil.php:111 +#, php-format +msgid "Actual: %s - Necesario: 750" +msgstr "Current: %s - Needed: 750" -#: ../../../modules/web/Forms/AccountForm.php:171 -msgid "Es necesario un nombre de cuenta" -msgstr "É necessário um nome de conta" +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +msgid "Error interno" +msgstr "Internal error" -#: ../../../modules/web/Forms/AccountForm.php:175 -#: ../../../modules/web/Forms/ClientForm.php:84 -#, fuzzy -msgid "Es necesario un nombre de cliente" -msgstr "É necessário um nome de cliente" +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +msgid "No se puede usar el módulo de encriptación" +msgstr "Crypto module cannot be loaded" -#: ../../../modules/web/Forms/AccountForm.php:161 -#, fuzzy -msgid "Es necesario un usuario" -msgstr "É necessário um nome de utilizador" +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +msgid "Error al generar datos cifrados" +msgstr "Error while creating the encrypted data" -#: ../../../modules/web/Forms/AccountForm.php:131 -msgid "Es necesaria una clave" -msgstr "É necessária uma chave" +#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 +#: ../../../../lib/SP/Mvc/View/Template.php:127 +#, php-format +msgid "No es posible obtener la plantilla \"%s\" : %s" +msgstr "Unable to retrieve the \"%s\" template: %s" -#: ../../../modules/web/Forms/AccountForm.php:179 -msgid "Es necesario una categoría" -msgstr "É necessária um categoria" +#: ../../../../lib/SP/Http/Address.php:49 +#: ../../../../lib/SP/Http/Address.php:68 +msgid "IP inválida" +msgstr "Invalid IP" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:114 -msgid "Acción Inválida" -msgstr "Acção Inválida" +#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 +#, php-format +msgid "Es necesaria una clave con al menos %d caracteres" +msgstr "Password needs to be %d characters long" -#: ../../../modules/web/Controllers/ConfigBackupController.php:86 -#: ../../../modules/web/Controllers/UserPassResetController.php:173 -#: ../../../modules/web/Forms/AccountForm.php:135 -#: ../../../modules/web/Forms/UserForm.php:161 -msgid "Las claves no coinciden" -msgstr "As palavras-chave não coincidem" +#: ../../../../lib/SP/Mvc/View/Template.php:302 +#: ../../../../lib/SP/Mvc/View/Template.php:366 +#, php-format +msgid "No es posible obtener la variable \"%s\"" +msgstr "Unable to retrieve the \"%s\" variable" -#: ../../../modules/api/Controllers/AccountController.php:184 -#: ../../../modules/api/Controllers/AccountController.php:190 -#: ../../../modules/web/Controllers/AccountController.php:718 -#: ../../../modules/web/Controllers/AccountController.php:729 -msgid "Cuenta creada" -msgstr "Conta creada" +#: ../../../../lib/SP/Mvc/View/Template.php:335 +#, php-format +msgid "No es posible destruir la variable \"%s\"" +msgstr "Unable to unset the \"%s\" variable" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:200 -msgid "Error al crear la cuenta" -msgstr "Erro ao criar a conta" +#: ../../../../lib/SP/Mvc/View/Template.php:356 +msgid "La plantilla no contiene archivos" +msgstr "Template does not contain files" -#: ../../../modules/web/Controllers/ConfigLdapController.php:95 -#: ../../../modules/web/Controllers/ConfigMailController.php:102 -#: ../../../config/strings.js.inc:80 -msgid "Sin cambios" -msgstr "Sem modificações" +#: ../../../../lib/SP/Plugin/PluginManager.php:170 +#, php-format +msgid "Versión de plugin no compatible (%s)" +msgstr "Plugin version not compatible (%s)" -#: ../../../modules/api/Controllers/AccountController.php:234 -#: ../../../modules/api/Controllers/AccountController.php:240 -#: ../../../modules/web/Controllers/AccountController.php:763 -#: ../../../modules/web/Controllers/AccountController.php:774 -msgid "Cuenta actualizada" -msgstr "Conta actualizada" +#: ../../../../lib/SP/Plugin/PluginManager.php:192 +#, php-format +msgid "No es posible cargar el plugin \"%s\"" +msgstr "Unable to load the \"%s\" plugin" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:382 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:431 -msgid "Error al modificar la cuenta" -msgstr "Erro ao modificar a conta" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 +#, php-format +msgid "Realizado por: %s (%s)" +msgstr "Performed by: %s (%s)" -#: ../../../modules/api/Controllers/AccountController.php:309 -#: ../../../modules/api/Controllers/AccountController.php:315 -#: ../../../modules/web/Controllers/AccountController.php:893 -#: ../../../modules/web/Controllers/AccountController.php:898 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:110 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:115 -#: ../../../modules/web/Controllers/AccountManagerController.php:145 -#: ../../../modules/web/Controllers/AccountManagerController.php:150 -#, fuzzy -msgid "Cuenta eliminada" -msgstr "Conta eliminada" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 +#, php-format +msgid "Dirección IP: %s" +msgstr "IP Address: %s" -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:162 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:321 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:192 -msgid "Error al eliminar la cuenta" -msgstr "Erro ao eliminar a conta" - -#: ../../../modules/api/Controllers/AccountController.php:138 -#: ../../../modules/api/Controllers/AccountController.php:144 -#: ../../../modules/web/Controllers/AccountController.php:804 -#: ../../../modules/web/Controllers/AccountController.php:815 -#: ../../../modules/web/Controllers/UserController.php:411 -#: ../../../modules/web/Controllers/UserController.php:415 -#: ../../../modules/web/Controllers/UserPassResetController.php:186 -#: ../../../modules/web/Controllers/UserPassResetController.php:190 -msgid "Clave actualizada" -msgstr "Palavra-chave actualizada" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:436 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:235 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:260 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:233 -msgid "Error al actualizar la clave" -msgstr "Erro ao actualizar a palavra-chave" - -#: ../../../modules/web/Controllers/AccountController.php:843 -#: ../../../modules/web/Controllers/AccountController.php:854 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:145 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:150 -msgid "Cuenta restaurada" -msgstr "Conta restaurada" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:301 -#: ../../../../lib/SP/Services/Account/AccountService.php:582 -msgid "Error al restaurar cuenta" -msgstr "Erro ao restaurar a conta" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 -#: ../../../config/actions.xml:571 -msgid "Ver Usuario" -msgstr "Ver Utilizador" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 -#: ../../../config/actions.xml:583 -msgid "Editar Usuario" -msgstr "Editar Utilizador" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 -#: ../../../config/actions.xml:577 -msgid "Nuevo Usuario" -msgstr "Novo Utilizador" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 -#: ../../../config/actions.xml:607 -msgid "Ver Grupo" -msgstr "Ver Grupo" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 -#: ../../../config/actions.xml:619 -msgid "Editar Grupo" -msgstr "Editar Grupo" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 -#: ../../../config/actions.xml:613 -msgid "Nuevo Grupo" -msgstr "Novo Grupo" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 -#: ../../../config/actions.xml:637 -msgid "Ver Perfil" -msgstr "Ver Perfil" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 -#: ../../../config/actions.xml:649 -msgid "Editar Perfil" -msgstr "Editar Perfil" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 -#: ../../../config/actions.xml:643 -msgid "Nuevo Perfil" -msgstr "Novo Perfil" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 -#: ../../../config/actions.xml:331 -#, fuzzy -msgid "Ver Cliente" -msgstr "Ver Cliente" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 -#: ../../../config/actions.xml:343 -#, fuzzy -msgid "Editar Cliente" -msgstr "Editar Cliente" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 -#: ../../../config/actions.xml:337 -#, fuzzy -msgid "Nuevo Cliente" -msgstr "Novo Cliente" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 -#: ../../../config/actions.xml:301 -msgid "Ver Categoría" -msgstr "Ver Categoria" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 -#: ../../../config/actions.xml:313 -msgid "Editar Categoría" -msgstr "Editar Categoria" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 -#: ../../../config/actions.xml:307 -msgid "Nueva Categoría" -msgstr "Nova Categoria" - -#: ../../../modules/web/Controllers/AuthTokenController.php:330 -msgid "Ver Autorización" -msgstr "Ver Autorização" - -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 -msgid "Nueva Autorización" -msgstr "Nova Autorização" - -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 -msgid "Editar Autorización" -msgstr "Editar Autorização" - -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 -msgid "Nuevo Campo" -msgstr "Novo Campo" - -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 -msgid "Editar Campo" -msgstr "Editar Campo" - -#: ../../../modules/web/Forms/UserForm.php:111 -#, fuzzy -msgid "Es necesario un nombre de usuario" -msgstr "É necessário um nome de utilizador" - -#: ../../../modules/web/Forms/UserForm.php:115 -msgid "Es necesario un login" -msgstr "É necessário um login" - -#: ../../../modules/web/Forms/UserForm.php:119 -msgid "Es necesario un perfil" -msgstr "É necessário um perfil" - -#: ../../../modules/web/Forms/UserForm.php:123 -msgid "Es necesario un grupo" -msgstr "É necessário um grupo" - -#: ../../../modules/web/Forms/UserForm.php:127 -msgid "Es necesario un email" -msgstr "É necessário um email" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:53 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:92 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:151 -#: ../../../modules/web/Controllers/ConfigImportController.php:56 -#: ../../../modules/web/Controllers/ConfigLdapController.php:218 -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:55 -#: ../../../modules/web/Forms/UserForm.php:131 -#: ../../../modules/web/Forms/UserForm.php:153 -#: ../../../modules/web/Forms/UserForm.php:171 -msgid "Ey, esto es una DEMO!!" -msgstr "Ei, isto é uma DEMONSTRAÇÃO!!" - -#: ../../../modules/web/Controllers/UserPassResetController.php:169 -#: ../../../modules/web/Forms/AuthTokenForm.php:101 -#: ../../../modules/web/Forms/UserForm.php:157 -msgid "La clave no puede estar en blanco" -msgstr "A palavra-chave não pode estar em branco" - -#: ../../../modules/web/Controllers/UserController.php:311 -#: ../../../modules/web/Controllers/UserController.php:317 -msgid "Usuario creado" -msgstr "Utilizador criado" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:474 -msgid "Error al crear el usuario" -msgstr "Erro ao criar o utilizador" - -#: ../../../modules/web/Controllers/UserController.php:372 -#: ../../../modules/web/Controllers/UserController.php:378 -msgid "Usuario actualizado" -msgstr "Utilizador actualizado" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:100 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:677 -#: ../../../../lib/SP/Services/User/UserService.php:310 -msgid "Error al actualizar el usuario" -msgstr "Erro ao actualizar o utilizador" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:165 -#: ../../../../lib/SP/Services/User/UserService.php:331 -msgid "Error al modificar la clave" -msgstr "Erro ao modificar a palavra-chave" - -#: ../../../modules/web/Forms/UserForm.php:179 -msgid "No es posible eliminar, usuario en uso" -msgstr "Não é possível eliminar, utilizador em uso" - -#: ../../../modules/web/Controllers/UserController.php:277 -#: ../../../modules/web/Controllers/UserController.php:281 -msgid "Usuario eliminado" -msgstr "Utilizador eliminado" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:184 -msgid "Error al eliminar el usuario" -msgstr "Erro ao eliminar o utilizador" - -#: ../../../modules/web/Forms/UserGroupForm.php:84 -msgid "Es necesario un nombre de grupo" -msgstr "É necessário um nome de grupo" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:306 -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:351 -msgid "Nombre de grupo duplicado" -msgstr "Nome de grupo duplicado" - -#: ../../../modules/api/Controllers/UserGroupController.php:91 -#: ../../../modules/api/Controllers/UserGroupController.php:96 -#: ../../../modules/web/Controllers/UserGroupController.php:264 -#: ../../../modules/web/Controllers/UserGroupController.php:268 -msgid "Grupo creado" -msgstr "Grupo criado" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:315 -msgid "Error al crear el grupo" -msgstr "Erro ao criar o grupo" - -#: ../../../modules/api/Controllers/UserGroupController.php:122 -#: ../../../modules/api/Controllers/UserGroupController.php:127 -#: ../../../modules/web/Controllers/UserGroupController.php:303 -#: ../../../modules/web/Controllers/UserGroupController.php:307 -msgid "Grupo actualizado" -msgstr "Grupo actualizado" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:361 -msgid "Error al actualizar el grupo" -msgstr "Erro ao actualizar o grupo" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 -msgid "Usuarios" -msgstr "Utilizadores" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 +msgid "Solicitud" +msgstr "Request" #. (itstool) path: action/text #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigBackupController.php:120 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 +#: ../../../modules/web/Controllers/ConfigManagerController.php:175 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: ../../../config/actions.xml:13 msgid "Cuentas" msgstr "Contas" -#: ../../../../inc/SP/Mgmt/Customers/Customer.class.php:115 -msgid "No es posible eliminar" -msgstr "Não é possível eliminar" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 +msgid "Notificación" +msgstr "Notification" -#: ../../../modules/api/Controllers/UserGroupController.php:151 -#: ../../../modules/api/Controllers/UserGroupController.php:156 -#: ../../../modules/web/Controllers/UserGroupController.php:230 -#: ../../../modules/web/Controllers/UserGroupController.php:234 -msgid "Grupo eliminado" -msgstr "Grupo eliminado" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:62 -msgid "Error al eliminar el grupo" -msgstr "Erro ao eliminar o grupo" - -#: ../../../modules/web/Forms/UserProfileForm.php:116 -msgid "Es necesario un nombre de perfil" -msgstr "É necessário um nome de perfil" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:230 -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:275 -msgid "Nombre de perfil duplicado" -msgstr "Nome de perfil duplicado" - -#: ../../../modules/web/Controllers/UserProfileController.php:248 -msgid "Perfil creado" -msgstr "Perfil criado" - -#: ../../../modules/web/Controllers/UserProfileController.php:284 -msgid "Perfil actualizado" -msgstr "Perfil actualizado" - -#: ../../../modules/web/Controllers/UserProfileController.php:215 -#: ../../../modules/web/Controllers/UserProfileController.php:219 -msgid "Perfil eliminado" -msgstr "Perfil eliminado" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:77 -#: ../../../modules/api/Controllers/ClientController.php:93 -#: ../../../modules/api/Controllers/ClientController.php:98 -#: ../../../modules/web/Controllers/ClientController.php:244 -#: ../../../modules/web/Controllers/ClientController.php:248 -#, fuzzy -msgid "Cliente creado" -msgstr "Cliente criado" - -#: ../../../modules/api/Controllers/ClientController.php:124 -#: ../../../modules/api/Controllers/ClientController.php:129 -#: ../../../modules/web/Controllers/ClientController.php:280 -#: ../../../modules/web/Controllers/ClientController.php:284 -#, fuzzy -msgid "Cliente actualizado" -msgstr "Cliente actualizado" - -#: ../../../modules/api/Controllers/ClientController.php:153 -#: ../../../modules/api/Controllers/ClientController.php:158 -#: ../../../modules/web/Controllers/ClientController.php:212 -#: ../../../modules/web/Controllers/ClientController.php:216 -#, fuzzy -msgid "Cliente eliminado" -msgstr "Cliente eliminado" - -#: ../../../modules/web/Forms/CategoryForm.php:83 -msgid "Es necesario un nombre de categoría" -msgstr "É necessário um nome de categoria" - -#: ../../../modules/api/Controllers/CategoryController.php:91 -#: ../../../modules/api/Controllers/CategoryController.php:96 -#: ../../../modules/web/Controllers/CategoryController.php:253 -#: ../../../modules/web/Controllers/CategoryController.php:257 -msgid "Categoría creada" -msgstr "Categoria criada" - -#: ../../../modules/api/Controllers/CategoryController.php:121 -#: ../../../modules/api/Controllers/CategoryController.php:126 -#: ../../../modules/web/Controllers/CategoryController.php:293 -#: ../../../modules/web/Controllers/CategoryController.php:297 -msgid "Categoría actualizada" -msgstr "Categoria actualizada" - -#: ../../../modules/api/Controllers/CategoryController.php:150 -#: ../../../modules/api/Controllers/CategoryController.php:155 -#: ../../../modules/web/Controllers/CategoryController.php:219 -#: ../../../modules/web/Controllers/CategoryController.php:223 -msgid "Categoría eliminada" -msgstr "Categoria eliminada" - -#: ../../../modules/web/Controllers/AuthTokenController.php:258 -msgid "Autorización creada" -msgstr "Autorização criada" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 -#: ../../../modules/web/Controllers/AuthTokenController.php:291 -#: ../../../modules/web/Controllers/AuthTokenController.php:300 -#: ../../../modules/web/Controllers/AuthTokenController.php:307 -msgid "Autorización actualizada" -msgstr "Autorização actualizada" - -#: ../../../modules/web/Controllers/AuthTokenController.php:225 -#: ../../../modules/web/Controllers/AuthTokenController.php:229 -msgid "Autorización eliminada" -msgstr "Autorização eliminada" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:87 -msgid "Nombre del campo no indicado" -msgstr "Nome do campo não indicado" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:91 -msgid "Tipo del campo no indicado" -msgstr "Tipo de campo não indicado" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:95 -msgid "Módulo del campo no indicado" -msgstr "Módulo do campo não indicado" - -#: ../../../modules/web/Controllers/CustomFieldController.php:234 -#: ../../../modules/web/Controllers/CustomFieldController.php:238 -msgid "Campo creado" -msgstr "Campo criado" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:74 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:87 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:156 -#: ../../../modules/web/Controllers/CustomFieldController.php:271 -#: ../../../modules/web/Controllers/CustomFieldController.php:275 -msgid "Campo actualizado" -msgstr "Campo actualizado" - -#: ../../../modules/web/Controllers/CustomFieldController.php:206 -msgid "Campo eliminado" -msgstr "Campo eliminado" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:94 -msgid "Realizar Backup" -msgstr "Realizar cópia de segurança" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:112 -msgid "Error al realizar el backup" -msgstr "Erro ao realizar a cópia de segurança" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:114 -#: ../../../../lib/SP/Services/Export/XmlExportService.php:167 -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -msgid "Revise el registro de eventos para más detalles" -msgstr "Veja o registo de eventos para mais detalhes" - -#: ../../../modules/api/Controllers/ConfigController.php:57 -#: ../../../modules/web/Controllers/ConfigBackupController.php:64 -msgid "Copia de la aplicación y base de datos realizada correctamente" -msgstr "Cópia da aplicação e da base de dados realizada correctamente" - -#: ../../../modules/api/Controllers/ConfigController.php:61 -#: ../../../modules/web/Controllers/ConfigBackupController.php:67 -msgid "Proceso de backup finalizado" -msgstr "Processo de cópia terminado" - -#: ../../../../inc/SP/Core/XmlExport.class.php:146 -msgid "Error al realizar la exportación de cuentas" -msgstr "Erro ao exportar as contas" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:165 -msgid "Error al realizar la exportación" -msgstr "Error ao realizar a exportação" - -#: ../../../../inc/SP/Core/XmlExport.class.php:155 -msgid "Exportación de cuentas realizada correctamente" -msgstr "Exportação de contas realizada correctamente" - -#: ../../../modules/api/Controllers/ConfigController.php:91 -#: ../../../modules/api/Controllers/ConfigController.php:94 -#: ../../../modules/web/Controllers/ConfigBackupController.php:102 -#: ../../../modules/web/Controllers/ConfigBackupController.php:127 -msgid "Proceso de exportación finalizado" -msgstr "Processo de exportação finalizado" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:169 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:171 -msgid "Los parámetros de LDAP no están configurados" -msgstr "Os parâmetros de LDAP não estão configurados" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:95 -#: ../../../modules/web/Controllers/ConfigLdapController.php:154 -#: ../../../modules/web/Controllers/ConfigLdapController.php:197 -msgid "Conexión a LDAP correcta" -msgstr "Conexão com LDAP OK" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:109 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:196 -msgid "Objetos encontrados" -msgstr "Objectos encontrados" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:257 -msgid "Modificar Configuración" -msgstr "Editar Configuração" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:70 -msgid "El tamaño máximo por archivo es de 16MB" -msgstr "O tamanho máximo por arquivo é de 16MB" - -#: ../../../config/strings.js.inc:45 -msgid "Extensión no permitida" -msgstr "Extensão não permitida" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:115 -#, fuzzy -msgid "Faltan parámetros de Proxy" -msgstr "Faltam parâmetros do Proxy" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:129 -msgid "Proxy habiltado" -msgstr "Proxy activado" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:134 -msgid "Proxy deshabilitado" -msgstr "Proxy desactivado" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:223 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:309 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:375 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:422 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:475 -msgid "Sección" -msgstr "Secção" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 -msgid "General" -msgstr "Geral" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:59 -msgid "Faltan parámetros de Wiki" -msgstr "Faltam parâmetros da Wiki" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:69 -msgid "Wiki habiltada" -msgstr "Wiki activada" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:74 -msgid "Wiki deshabilitada" -msgstr "Wiki desactivada" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 -#: ../../../config/actions.xml:37 -msgid "Wiki" -msgstr "Wiki" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:69 -#: ../../../modules/web/Controllers/ConfigLdapController.php:139 -#: ../../../modules/web/Controllers/ConfigLdapController.php:175 -msgid "Faltan parámetros de LDAP" -msgstr "Faltam parâmetros de LDAP" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:88 -msgid "LDAP habiltado" -msgstr "LDAP activado" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:93 -msgid "LDAP deshabilitado" -msgstr "LDAP desactivado" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 -msgid "LDAP" -msgstr "LDAP" - -#: ../../../modules/web/Controllers/ConfigMailController.php:68 -#: ../../../modules/web/Controllers/ConfigMailController.php:125 -msgid "Faltan parámetros de Correo" -msgstr "Faltam parâmetros de Correio" - -#: ../../../modules/web/Controllers/ConfigMailController.php:93 -msgid "Correo habiltado" -msgstr "Correio activado" - -#: ../../../modules/web/Controllers/ConfigMailController.php:100 -msgid "Correo deshabilitado" -msgstr "Correio desactivado" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 -msgid "Correo" -msgstr "Correio" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:68 -msgid "Configuración actualizada" -msgstr "Configuração actualizada" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:297 -#: ../../../../lib/SP/Services/Auth/LoginService.php:321 -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:144 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -msgid "Clave maestra actualizada" -msgstr "Master password updated" - -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:145 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -msgid "Reinicie la sesión para cambiarla" -msgstr "Please, restart the session for update it" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:72 -msgid "Clave maestra no indicada" -msgstr "Master password needed" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:76 -msgid "Se ha de confirmar el cambio de clave" -msgstr "The password update must be confirmed" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:80 -msgid "Las claves son idénticas" -msgstr "The passwords are the same" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:84 -msgid "Las claves maestras no coinciden" -msgstr "The master passwords do not match" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:88 -msgid "La clave maestra actual no coincide" -msgstr "The current master password does not match" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:89 -msgid "Errores al actualizar las claves de las cuentas" -msgstr "Error while updating the accounts' passwords" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:233 -msgid "Errores al actualizar las claves de las cuentas del histórico" -msgstr "Error while updating the accounts' passwords in history" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:136 -msgid "Errores al actualizar datos de campos personalizados" -msgstr "Error while updating the custom fields data" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:71 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:77 #: ../../../../lib/SP/Services/Account/AccountCryptService.php:138 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:67 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:75 #: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:83 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:108 msgid "Actualizar Clave Maestra" msgstr "Update Master Password" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:138 -msgid "Error al guardar el hash de la clave maestra" -msgstr "Error while saving the Master Password's hash" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 +#, php-format +msgid "Cuentas actualizadas: %d / %d" +msgstr "Accounts updated: %d / %d" -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:103 -msgid "Generar Clave Temporal" -msgstr "Generate Temporary Password" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 +#, php-format +msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" +msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 -msgid "Clave" -msgstr "Password" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:200 -msgid "Clave Temporal Generada" -msgstr "Temporary Password Generated" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:110 -msgid "Error al generar clave temporal" -msgstr "Error while generating the temporary password" - -#: ../../../../inc/SP/Controller/LoginController.class.php:124 -msgid "Usuario/Clave no introducidos" -msgstr "User/Pass not entered" - -#: ../../../../inc/SP/Controller/LoginController.class.php:108 -msgid "Inicio sesión" -msgstr "Log in" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:114 -msgid "Error al guardar los datos de LDAP" -msgstr "Error while saving the LDAP user data" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:59 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:154 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:244 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:334 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:389 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:417 -#: ../../../../lib/SP/Services/Account/AccountService.php:227 -#: ../../../../lib/SP/Services/Account/AccountService.php:232 -#: ../../../../lib/SP/Services/Api/ApiService.php:129 -#: ../../../../lib/SP/Services/Api/ApiService.php:227 -#: ../../../../lib/SP/Services/Api/ApiService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:187 -#: ../../../../lib/SP/Services/Auth/LoginService.php:351 -#: ../../../../lib/SP/Services/Auth/LoginService.php:500 -#: ../../../../lib/SP/Services/Auth/LoginService.php:505 -#: ../../../../lib/SP/Services/Auth/LoginService.php:537 -#: ../../../../lib/SP/Services/Auth/LoginService.php:644 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:311 -#: ../../../../lib/SP/Services/CustomField/CustomFieldService.php:203 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:108 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:79 -#: ../../../../lib/SP/Services/User/UserPassService.php:232 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:122 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:177 -msgid "Error interno" -msgstr "Internal error" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:224 -msgid "Error al actualizar la clave del usuario en la BBDD" -msgstr "Error while updating the user's password in DB" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:157 -#: ../../../../lib/SP/Services/Auth/LoginService.php:456 -#: ../../../../lib/SP/Services/Auth/LoginService.php:463 -#: ../../../../lib/SP/Services/Auth/LoginService.php:571 -#: ../../../../lib/SP/Services/Auth/LoginService.php:576 -#: ../../../../lib/SP/Services/Auth/LoginService.php:615 -#: ../../../../lib/SP/Services/Auth/LoginService.php:620 -msgid "Login incorrecto" -msgstr "Wrong login" - -#: ../../../../lib/SP/Core/Acl/Acl.php:301 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:112 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:155 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:110 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:142 -#: ../../../../lib/SP/Services/Auth/LoginService.php:217 -#: ../../../../lib/SP/Services/Auth/LoginService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:386 -#: ../../../../lib/SP/Services/Auth/LoginService.php:453 -#: ../../../../lib/SP/Services/Auth/LoginService.php:561 #: ../../../../lib/SP/Services/Auth/LoginService.php:604 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:238 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/Controllers/LoginController.php:102 -#: ../../../modules/web/Controllers/UserController.php:278 -#: ../../../modules/web/Controllers/UserController.php:312 -#: ../../../modules/web/Controllers/UserController.php:373 -#: ../../../modules/web/Controllers/UserController.php:412 -#: ../../../modules/web/Controllers/UserPassResetController.php:187 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 -msgid "Usuario" -msgstr "User" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:471 -#: ../../../../lib/SP/Services/Auth/LoginService.php:476 -msgid "Cuenta expirada" -msgstr "Account expired" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:484 -#: ../../../../lib/SP/Services/Auth/LoginService.php:489 -msgid "El usuario no tiene grupos asociados" -msgstr "The user has no associated groups" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:605 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 -msgid "Autentificación" -msgstr "Authentication" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:216 -#: ../../../../lib/SP/Services/Auth/LoginService.php:223 -msgid "Usuario deshabilitado" -msgstr "User disabled" - -#: ../../../../inc/SP/Controller/LoginController.class.php:246 -msgid "Error al obtener los datos del usuario de la BBDD" -msgstr "Error while retrieving the user's data from DB" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:339 -msgid "La clave maestra no ha sido guardada o es incorrecta" -msgstr "The Master Password either is not saved or is wrong" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:282 -#: ../../../../lib/SP/Services/Auth/LoginService.php:288 -#: ../../../../lib/SP/Services/Auth/LoginService.php:306 -#: ../../../../lib/SP/Services/Auth/LoginService.php:312 -msgid "Clave maestra incorrecta" -msgstr "Wrong master password" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/Controllers/UserProfileController.php:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 -msgid "Perfil" -msgstr "Profile" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:120 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:146 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:156 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:143 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:140 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/Controllers/UserGroupController.php:231 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:137 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 -msgid "Grupo" -msgstr "Group" - -#: ../../../modules/web/Controllers/AccountFileController.php:370 -msgid "Gestión de archivos deshabilitada" -msgstr "Files management disabled" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 -msgid "Subir Archivo" -msgstr "Upload File" - -#: ../../../modules/web/Controllers/AccountFileController.php:167 -msgid "No hay extensiones permitidas" -msgstr "There aren't any allowed extensions" - -#: ../../../../lib/SP/Services/Import/FileImport.php:100 -#: ../../../modules/web/Controllers/AccountFileController.php:184 -msgid "Tipo de archivo no soportado" -msgstr "File type not allowed" - -#: ../../../modules/web/Controllers/AccountFileController.php:191 -msgid "Archivo inválido" -msgstr "Invalid file" - -#: ../../../../lib/SP/Services/Import/FileImport.php:116 -#: ../../../modules/web/Controllers/AccountFileController.php:199 -#: ../../../modules/web/Controllers/AccountFileController.php:219 -msgid "Error interno al leer el archivo" -msgstr "Internal error while reading the file" - -#: ../../../modules/web/Controllers/AccountFileController.php:231 -#: ../../../modules/web/Controllers/AccountFileController.php:240 -msgid "Archivo guardado" -msgstr "File saved" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:77 -msgid "No se pudo guardar el archivo" -msgstr "Error while saving file" - -#: ../../../../ajax/ajax_filesMgmt.php:154 -#: ../../../../ajax/ajax_filesMgmt.php:198 -msgid "No es un ID de archivo válido" -msgstr "Invalid file ID" - -#: ../../../modules/web/Controllers/AccountFileController.php:70 -#: ../../../modules/web/Controllers/AccountFileController.php:122 -msgid "El archivo no existe" -msgstr "The file does not exist" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 -#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 -msgid "Descargar Archivo" -msgstr "Download File" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/Controllers/ItemPresetController.php:278 -#: ../../../modules/web/Controllers/ItemPresetController.php:311 -#: ../../../modules/web/Controllers/ItemPresetController.php:350 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 -msgid "ID" -msgstr "ID" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:122 -#: ../../../modules/web/Controllers/AccountFileController.php:84 -#: ../../../modules/web/Controllers/AccountFileController.php:97 -#: ../../../modules/web/Controllers/AccountFileController.php:137 -#: ../../../modules/web/Controllers/AccountFileController.php:232 -#: ../../../modules/web/Controllers/AccountFileController.php:329 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 -msgid "Archivo" -msgstr "File" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:451 -#: ../../../../lib/SP/Services/Auth/LoginService.php:514 -#: ../../../../lib/SP/Services/Auth/LoginService.php:560 -#: ../../../../lib/SP/Services/Auth/LoginService.php:603 -#: ../../../modules/web/Controllers/AccountFileController.php:235 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/Controllers/ItemPresetController.php:310 -#: ../../../modules/web/Controllers/ItemPresetController.php:349 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 -msgid "Tipo" -msgstr "Type" - -#: ../../../modules/web/Controllers/AccountFileController.php:236 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 -msgid "Tamaño" -msgstr "Size" - -#: ../../../modules/web/Controllers/AccountFileController.php:328 -msgid "Archivo eliminado" -msgstr "File deleted" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:279 -msgid "Error al eliminar el archivo" -msgstr "Error while deleting the file" - -#: ../../../../lib/SP/Services/Api/ApiService.php:152 -msgid "Parámetros incorrectos" -msgstr "Wrong parameters" - -#: ../../../modules/web/Controllers/UserPassResetController.php:101 -msgid "Recuperación de Clave" -msgstr "Password Recovery" - -#: ../../../modules/web/Controllers/UserPassResetController.php:102 -msgid "Solicitado para" -msgstr "Requested for" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "Solicitud enviada" -msgstr "Request sent" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "En breve recibirá un correo para completar la solicitud." -msgstr "You will receive an email to complete the request shortly." - -#: ../../../../ajax/ajax_passReset.php:86 -#: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:329 -msgid "Modificar Clave Usuario" -msgstr "Edit User Password" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 -msgid "Login" -msgstr "Login" - -#: ../../../../ajax/ajax_passReset.php:107 -msgid "La clave es incorrecta o no coincide" -msgstr "Wrong password or does not match" - -#: ../../../modules/web/Controllers/AccountController.php:919 -#: ../../../modules/web/Forms/NotificationForm.php:100 -msgid "Es necesaria una descripción" -msgstr "A description is needed" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1173 -msgid "Solicitud de Modificación de Cuenta" -msgstr "Request for Account Modification" - -#: ../../../modules/web/Controllers/AccountController.php:927 -msgid "Solicitante" -msgstr "Requester" - -#: ../../../modules/web/Controllers/AccountController.php:224 -#: ../../../modules/web/Controllers/AccountController.php:555 -#: ../../../modules/web/Controllers/AccountController.php:611 -#: ../../../modules/web/Controllers/AccountController.php:650 -#: ../../../modules/web/Controllers/AccountController.php:684 -#: ../../../modules/web/Controllers/AccountController.php:719 -#: ../../../modules/web/Controllers/AccountController.php:764 -#: ../../../modules/web/Controllers/AccountController.php:805 -#: ../../../modules/web/Controllers/AccountController.php:844 -#: ../../../modules/web/Controllers/AccountController.php:894 -#: ../../../modules/web/Controllers/AccountController.php:928 -#: ../../../modules/web/Controllers/AccountFileController.php:233 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:146 -#: ../../../modules/web/Controllers/AccountManagerController.php:146 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 -msgid "Cuenta" -msgstr "Account" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:159 -#: ../../../modules/api/Controllers/AccountController.php:72 -#: ../../../modules/api/Controllers/AccountController.php:104 -#: ../../../modules/api/Controllers/AccountController.php:140 -#: ../../../modules/api/Controllers/AccountController.php:186 -#: ../../../modules/api/Controllers/AccountController.php:236 -#: ../../../modules/api/Controllers/AccountController.php:311 -#: ../../../modules/web/Controllers/AccountController.php:225 -#: ../../../modules/web/Controllers/AccountController.php:720 -#: ../../../modules/web/Controllers/AccountController.php:765 -#: ../../../modules/web/Controllers/AccountController.php:806 -#: ../../../modules/web/Controllers/AccountController.php:845 -#: ../../../modules/web/Controllers/AccountController.php:895 -#: ../../../modules/web/Controllers/AccountController.php:929 -#: ../../../modules/web/Controllers/AccountFileController.php:234 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:112 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:147 -#: ../../../modules/web/Controllers/AccountManagerController.php:147 -#: ../../../modules/web/Controllers/ClientController.php:213 -#: ../../../modules/web/Controllers/ClientController.php:245 -#: ../../../modules/web/Controllers/ClientController.php:281 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 -msgid "Cliente" -msgstr "Client" - -#: ../../../modules/web/Controllers/AccountController.php:930 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 -msgid "Descripción" -msgstr "Description" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:697 -msgid "Error al actualizar preferencias" -msgstr "Error while updating the preferences" - -#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:70 -msgid "Preferencias actualizadas" -msgstr "Preferences updated" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:509 -msgid "La clave maestra no coincide" -msgstr "The Master Password does not match" - -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:132 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:96 -msgid "No tiene permisos para acceder a esta cuenta" -msgstr "You don't have permission to access to this account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 -#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 -msgid "Ver Clave" -msgstr "View password" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 -#: ../../../config/strings.js.inc:72 -msgid "Clave de Cuenta" -msgstr "Account Password" - -#: ../../../../inc/SP/Http/Request.class.php:55 -msgid "No es posible acceder directamente a este archivo" -msgstr "Unable to access to this file" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:143 -msgid "Error al actualizar el historial" -msgstr "Error while updating history" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -msgid "Actualizar Cuenta" -msgstr "Update Account" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:164 -msgid "Error al actualizar los grupos secundarios" -msgstr "Error while updating the secondary groups" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:103 -msgid "Error al actualizar los usuarios de la cuenta" -msgstr "Error while updating the account users" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 -#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 -msgid "Restaurar Cuenta" -msgstr "Account Restore" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:451 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:623 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:75 -msgid "No se pudieron obtener los datos de la cuenta" -msgstr "Error while retrieving the account data" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:256 -#: ../../../modules/web/Controllers/AccountController.php:300 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:278 -#: ../../../config/actions.xml:157 -msgid "Nueva Cuenta" -msgstr "New Account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:389 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 -#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 -#: ../../../config/actions.xml:793 -msgid "Eliminar Cuenta" -msgstr "Remove Account" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:106 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:139 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:191 -msgid "Error al eliminar grupos asociados a la cuenta" -msgstr "Error while deleting the account's groups" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:76 -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:132 -msgid "Error al eliminar usuarios asociados a la cuenta" -msgstr "Error while deleting the account users" - -#: ../../../../inc/SP/Mgmt/Files/FileUtil.class.php:102 -msgid "Error al eliminar archivos asociados a la cuenta" -msgstr "Error while deleting the account's files" - -#: ../../../../inc/SP/Account/AccountCrypt.class.php:70 -#: ../../../../inc/SP/Account/AccountCrypt.class.php:200 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:73 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:208 -msgid "Inicio" -msgstr "Start" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:81 -msgid "Error en el módulo de encriptación" -msgstr "Error on the encryption module" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:115 -msgid "Error al obtener las claves de las cuentas" -msgstr "Error while retrieving the accounts' passwords" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:183 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:188 -msgid "Fallo al actualizar la clave de la cuenta" -msgstr "Error while updating the account's password" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:193 -#: ../../../modules/web/Controllers/AccountManagerController.php:185 -#: ../../../modules/web/Controllers/AccountManagerController.php:188 -msgid "Cuentas actualizadas" -msgstr "Accounts updated" - -#: ../../../../inc/SP/Account/AccountUtil.class.php:132 -msgid "No se pudieron obtener los datos de las cuentas" -msgstr "Unable to retrieve the accounts data" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:212 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:218 -msgid "Actualizar Clave Maestra (H)" -msgstr "Update Master Password (H)" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:158 -msgid "La clave maestra del registro no coincide" -msgstr "The record's master password does not match" - -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:157 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:160 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:283 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:286 -msgid "Fallo al actualizar la clave del histórico" -msgstr "Error on updating the history's master password" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:109 -msgid "Registros actualizados" -msgstr "Records updated" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:7 -msgid "Buscar Cuentas" -msgstr "Search for Accounts" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 -msgid "Ver Cuenta" -msgstr "View Account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 -#: ../../../config/actions.xml:193 -msgid "Copiar Cuenta" -msgstr "Copy Account" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:344 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 -#: ../../../config/actions.xml:163 -msgid "Editar Cuenta" -msgstr "Edit Account" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:181 -msgid "Editar Clave de Cuenta" -msgstr "Edit Account Password" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 -#: ../../../config/actions.xml:259 -msgid "Ver Historial" -msgstr "View History" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 -#: ../../../config/actions.xml:19 -msgid "Archivos" -msgstr "Files" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:25 -msgid "Peticiones" -msgstr "Requests" - -#: ../../../../inc/SP/Core/Acl.class.php:196 -msgid "Gestión Aplicación" -msgstr "Application Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:49 -msgid "Gestión Categorías" -msgstr "Categories Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:55 -msgid "Gestión Clientes" -msgstr "Customers Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:67 -msgid "Gestión Campos Personalizados" -msgstr "Custom Fields Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:61 -msgid "Gestión Autorizaciones API" -msgstr "API Authorizations Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:115 -msgid "Gestión Usuarios" -msgstr "Users Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:121 -msgid "Gestión Grupos" -msgstr "Groups Management" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:127 -msgid "Gestión Perfiles" -msgstr "Profiles Management" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:348 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:61 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 -#: ../../../config/actions.xml:685 -msgid "Configuración" -msgstr "Configuration" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 -#: ../../../config/actions.xml:691 -msgid "Configuración General" -msgstr "General Configuration" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 -msgid "Encriptación" -msgstr "Encryption" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 -#: ../../../config/actions.xml:733 -msgid "Copia de Seguridad" -msgstr "Backup" - -#: ../../../../inc/SP/Core/Acl.class.php:220 -msgid "Exportar" -msgstr "Export" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 -msgid "Importar" -msgstr "Import" - -#: ../../../../lib/SP/Services/Api/ApiService.php:186 -#: ../../../modules/api/Controllers/ControllerBase.php:146 -msgid "Acceso no permitido" -msgstr "Unauthorized access" - -#: ../../../../lib/SP/Http/Json.php:179 -msgid "Error de codificación" -msgstr "Encoding error" - -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:221 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:309 -msgid "La autorización ya existe" -msgstr "The authorization already exist" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 -msgid "Actualizar Autorización" -msgstr "Update Authorization" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 -msgid "Eliminar Autorización" -msgstr "Delete Authorization" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:141 -msgid "Usuario no pertenece al grupo" -msgstr "The user doesn't belong to the group" +msgid "N/D" +msgstr "N/A" + +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 +#, php-format +msgid "No es posible crear el directorio de backups (\"%s\")" +msgstr "Unable to create the backups directory (\"%s\")" + +#: ../../../../lib/SP/Services/Config/ConfigService.php:68 +#: ../../../../lib/SP/Services/Config/ConfigService.php:153 +#, php-format +msgid "Parámetro no encontrado (%s)" +msgstr "Parameter not found (%s)" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 +#, php-format +msgid "Clave Maestra %s" +msgstr "Master Password %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 +msgid "" +"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " +"el siguiente inicio." +msgstr "" +"A new sysPass master password has been generated, so the next time you log " +"into the application it will be requested." + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 +#, php-format +msgid "La nueva clave es: %s" +msgstr "The new Master Password is: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 +#, php-format +msgid "Esta clave estará activa hasta: %s" +msgstr "This password will be valid until: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 +msgid "No olvide acceder lo antes posible para guardar los cambios." +msgstr "" +"Please, don't forget to log in as soon as possible to save the changes." + +#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 +msgid "Actualizando datos encriptados" +msgstr "Updating encrypted data" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 +msgid "Categorías" +msgstr "Categories" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 +msgid "Clientes" +msgstr "Clients" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:104 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 +msgid "Usuarios" +msgstr "Utilizadores" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 +msgid "Grupos" +msgstr "Groups" + +#: ../../../../lib/SP/Services/Export/XmlExportService.php:123 +#: ../../../../lib/SP/Storage/File/FileCache.php:74 +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 +#, php-format +msgid "No es posible crear el directorio (%s)" +msgstr "Unable to create the directory (%s)" + +#: ../../../../lib/SP/Services/Import/CsvImport.php:50 +#, php-format +msgid "Formato detectado: %s" +msgstr "Detected format: %s" + +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 +#, php-format +msgid "El número de campos es incorrecto (%d)" +msgstr "Wrong number of fields (%d)" + +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 +#, php-format +msgid "Compruebe el formato del archivo CSV en línea %s" +msgstr "Please, check the CSV file format in line %s" + +#: ../../../../lib/SP/Services/Import/ImportService.php:89 +#, php-format +msgid "Tipo mime no soportado (\"%s\")" +msgstr "Mime type not supported (\"%s\")" + +#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 +#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 +#, php-format +msgid "El nodo \"%s\" no existe" +msgstr "The \"%s\" node doesn't exist" + +#: ../../../../lib/SP/Services/Install/MySQL.php:135 +#, php-format +msgid "No es posible comprobar el usuario de sysPass (%s)" +msgstr "Unable to check the sysPass user (%s)" + +#: ../../../../lib/SP/Services/Install/MySQL.php:213 +#: ../../../../lib/SP/Services/Install/MySQL.php:329 +#: ../../../../lib/SP/Services/Install/MySQL.php:341 +#, php-format +msgid "Error al crear la BBDD ('%s')" +msgstr "Error while creating the DB ('%s')" + +#: ../../../../lib/SP/Services/Install/MySQL.php:237 +#, php-format +msgid "Error al establecer permisos de la BBDD ('%s')" +msgstr "Error while setting the database permissions ('%s')" + +#: ../../../../lib/SP/Services/Install/MySQL.php:309 +#, php-format +msgid "Error al seleccionar la BBDD '%s' (%s)" +msgstr "Error while selecting '%s' database (%s)" + +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 +msgid "Importado desde LDAP" +msgstr "Imported from LDAP" + +#: ../../../../lib/SP/Services/Task/TaskService.php:81 +msgid "No es posible crear archivo de bloqueo" +msgstr "Unable to create the lock file" + +#: ../../../../lib/SP/Services/Task/TaskService.php:184 +msgid "Esperando actualización de progreso ..." +msgstr "Waiting for progress updating ..." + +#: ../../../../lib/SP/Services/Track/TrackService.php:162 +#, php-format +msgid "Intentos excedidos (%d/%d)" +msgstr "Attempts exceeded (%d/%d)" + +#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 +msgid "El archivo de actualización no contiene datos" +msgstr "The update file does not contain data" #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 +#: ../../../modules/web/Controllers/UserController.php:235 +#: ../../../modules/web/Controllers/UserController.php:356 +#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Cambio de Clave" msgstr "Password Change" @@ -1563,471 +308,672 @@ msgstr "In order to complete the process, please go to this URL:" msgid "Si no ha solicitado esta acción, ignore este mensaje." msgstr "If you have not requested this action, please dismiss this message." -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:333 -msgid "Esta operación sólo es posible en entornos Linux" -msgstr "This operation is only available on Linux environments" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 +msgid "Fallo de autentificación" +msgstr "Authentication error" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:101 -msgid "Error al realizar backup en modo compatibilidad" -msgstr "Error while doing the backup in compatibility mode" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 +msgid "Error al realizar la consulta" +msgstr "Error while doing the query" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:138 -msgid "Compruebe los permisos del directorio de backups" -msgstr "Please, check the backup directory permissions" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 +msgid "URL de conexión no establecida" +msgstr "Connection URL not set" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:107 -msgid "Nombre de categoría duplicado" -msgstr "Duplicated category name" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 +#, php-format +msgid "Error al descomprimir datos del archivo (%s)" +msgstr "Error while decompressing the file data (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:68 -msgid "Error al crear la categoría" -msgstr "Error while creating the category" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 +msgid "Error al obtener los datos" +msgstr "Error while retrieving the data" -#: ../../../../lib/SP/Services/Import/KeepassImport.php:104 -#: ../../../modules/web/Controllers/CategoryController.php:220 -#: ../../../modules/web/Controllers/CategoryController.php:254 -#: ../../../modules/web/Controllers/CategoryController.php:294 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 -msgid "Categoría" -msgstr "Category" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 +#, php-format +msgid "Error al comprimir datos del archivo (%s)" +msgstr "Error while compressing the file data (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:275 -msgid "Error al eliminar la categoría" -msgstr "Error while deleting the category" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 +msgid "Datos no cargados" +msgstr "Data not loaded" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 -#: ../../../config/actions.xml:319 -msgid "Eliminar Categoría" -msgstr "Delete Category" +#: ../../../../lib/SP/Storage/File/FileHandler.php:72 +#: ../../../../lib/SP/Storage/File/FileHandler.php:135 +#, php-format +msgid "No es posible escribir en el archivo (%s)" +msgstr "Unable to read/write the file (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:125 -msgid "Error al actualizar la categoría" -msgstr "Error while updating the category" +#: ../../../../lib/SP/Storage/File/FileHandler.php:89 +#, php-format +msgid "No es posible abrir el archivo (%s)" +msgstr "Unable to open the file (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:108 -#: ../../../../inc/SP/Config/ConfigDB.class.php:148 -msgid "Modificar configuración" -msgstr "Update Configuration" +#: ../../../../lib/SP/Storage/File/FileHandler.php:104 +#: ../../../../lib/SP/Storage/File/FileHandler.php:118 +#, php-format +msgid "No es posible leer desde el archivo (%s)" +msgstr "Unable to read from file (%s)" -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:82 -msgid "Parámetro" -msgstr "Parameter" +#: ../../../../lib/SP/Storage/File/FileHandler.php:173 +#, php-format +msgid "No es posible cerrar el archivo (%s)" +msgstr "Unable to close the file (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:152 -msgid "Valor" -msgstr "Value" +#: ../../../../lib/SP/Storage/File/FileHandler.php:219 +#, php-format +msgid "No es posible escribir el archivo (%s)" +msgstr "Unable to write in file (%s)" -#: ../../../../lib/SP/Util/ErrorUtil.php:128 +#: ../../../../lib/SP/Storage/File/FileHandler.php:234 +#, php-format +msgid "Archivo no encontrado (%s)" +msgstr "File not found (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:259 +#: ../../../../lib/SP/Storage/File/FileHandler.php:314 +#, php-format +msgid "No es posible leer el archivo (%s)" +msgstr "Unable to read/write the file (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:286 +#, php-format +msgid "No es posible eliminar el archivo (%s)" +msgstr "Unable to delete file (%s)" + +#: ../../../../lib/SP/Util/ErrorUtil.php:148 msgid "Opción no disponible" msgstr "Option unavailable" -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:129 -#: ../../../../lib/SP/Util/ErrorUtil.php:133 -#: ../../../../lib/SP/Util/ErrorUtil.php:137 -#: ../../../../lib/SP/Util/ErrorUtil.php:141 #: ../../../../lib/SP/Util/ErrorUtil.php:149 -#: ../../../../lib/SP/Util/ErrorUtil.php:156 +#: ../../../../lib/SP/Util/ErrorUtil.php:153 +#: ../../../../lib/SP/Util/ErrorUtil.php:157 +#: ../../../../lib/SP/Util/ErrorUtil.php:161 +#: ../../../../lib/SP/Util/ErrorUtil.php:169 +#: ../../../../lib/SP/Util/ErrorUtil.php:176 #: ../../../modules/web/Controllers/ErrorController.php:124 -#: ../../../modules/web/Controllers/UserPassResetController.php:94 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Consulte con el administrador" msgstr "Please contact to the administrator" -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:136 +#: ../../../../lib/SP/Util/ErrorUtil.php:152 +msgid "No tiene permisos para acceder a esta cuenta" +msgstr "You don't have permission to access to this account" + +#: ../../../../lib/SP/Util/ErrorUtil.php:156 msgid "No tiene permisos para acceder a esta página" msgstr "You don't have permission to access this page" -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Util/ErrorUtil.php:140 -#: ../../../modules/web/Controllers/AccountFileController.php:261 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:59 -#: ../../../modules/web/Controllers/AccountManagerController.php:77 -#: ../../../modules/web/Controllers/AccountManagerController.php:204 -#: ../../../modules/web/Controllers/AuthTokenController.php:68 -#: ../../../modules/web/Controllers/AuthTokenController.php:105 -#: ../../../modules/web/Controllers/AuthTokenController.php:170 -#: ../../../modules/web/Controllers/AuthTokenController.php:200 -#: ../../../modules/web/Controllers/AuthTokenController.php:243 -#: ../../../modules/web/Controllers/AuthTokenController.php:278 -#: ../../../modules/web/Controllers/AuthTokenController.php:327 -#: ../../../modules/web/Controllers/CategoryController.php:66 -#: ../../../modules/web/Controllers/CategoryController.php:100 -#: ../../../modules/web/Controllers/CategoryController.php:164 -#: ../../../modules/web/Controllers/CategoryController.php:194 -#: ../../../modules/web/Controllers/CategoryController.php:237 -#: ../../../modules/web/Controllers/CategoryController.php:277 -#: ../../../modules/web/Controllers/CategoryController.php:317 -#: ../../../modules/web/Controllers/ClientController.php:64 -#: ../../../modules/web/Controllers/ClientController.php:96 -#: ../../../modules/web/Controllers/ClientController.php:160 -#: ../../../modules/web/Controllers/ClientController.php:190 -#: ../../../modules/web/Controllers/ClientController.php:230 -#: ../../../modules/web/Controllers/ClientController.php:268 -#: ../../../modules/web/Controllers/ClientController.php:304 -#: ../../../modules/web/Controllers/CustomFieldController.php:65 -#: ../../../modules/web/Controllers/CustomFieldController.php:97 -#: ../../../modules/web/Controllers/CustomFieldController.php:159 -#: ../../../modules/web/Controllers/CustomFieldController.php:189 -#: ../../../modules/web/Controllers/CustomFieldController.php:221 -#: ../../../modules/web/Controllers/CustomFieldController.php:258 -#: ../../../modules/web/Controllers/CustomFieldController.php:295 -#: ../../../modules/web/Controllers/EventlogController.php:101 -#: ../../../modules/web/Controllers/ItemPresetController.php:67 -#: ../../../modules/web/Controllers/ItemPresetController.php:151 -#: ../../../modules/web/Controllers/ItemPresetController.php:188 -#: ../../../modules/web/Controllers/ItemPresetController.php:226 -#: ../../../modules/web/Controllers/ItemPresetController.php:256 -#: ../../../modules/web/Controllers/ItemPresetController.php:295 -#: ../../../modules/web/Controllers/ItemPresetController.php:334 -#: ../../../modules/web/Controllers/NotificationController.php:100 -#: ../../../modules/web/Controllers/NotificationController.php:160 -#: ../../../modules/web/Controllers/NotificationController.php:175 -#: ../../../modules/web/Controllers/NotificationController.php:206 -#: ../../../modules/web/Controllers/NotificationController.php:237 -#: ../../../modules/web/Controllers/NotificationController.php:288 -#: ../../../modules/web/Controllers/NotificationController.php:315 -#: ../../../modules/web/Controllers/NotificationController.php:348 -#: ../../../modules/web/Controllers/PluginController.php:98 -#: ../../../modules/web/Controllers/PluginController.php:117 -#: ../../../modules/web/Controllers/PublicLinkController.php:71 -#: ../../../modules/web/Controllers/PublicLinkController.php:105 -#: ../../../modules/web/Controllers/PublicLinkController.php:167 -#: ../../../modules/web/Controllers/PublicLinkController.php:193 -#: ../../../modules/web/Controllers/PublicLinkController.php:223 -#: ../../../modules/web/Controllers/PublicLinkController.php:264 -#: ../../../modules/web/Controllers/PublicLinkController.php:296 -#: ../../../modules/web/Controllers/PublicLinkController.php:338 -#: ../../../modules/web/Controllers/TagController.php:65 -#: ../../../modules/web/Controllers/TagController.php:99 -#: ../../../modules/web/Controllers/TagController.php:159 -#: ../../../modules/web/Controllers/TagController.php:189 -#: ../../../modules/web/Controllers/TagController.php:223 -#: ../../../modules/web/Controllers/TagController.php:254 -#: ../../../modules/web/Controllers/TagController.php:285 -#: ../../../modules/web/Controllers/UserController.php:69 -#: ../../../modules/web/Controllers/UserController.php:101 -#: ../../../modules/web/Controllers/UserController.php:186 -#: ../../../modules/web/Controllers/UserController.php:218 -#: ../../../modules/web/Controllers/UserController.php:254 -#: ../../../modules/web/Controllers/UserController.php:296 -#: ../../../modules/web/Controllers/UserController.php:357 -#: ../../../modules/web/Controllers/UserController.php:398 -#: ../../../modules/web/Controllers/UserController.php:435 -#: ../../../modules/web/Controllers/UserGroupController.php:74 -#: ../../../modules/web/Controllers/UserGroupController.php:108 -#: ../../../modules/web/Controllers/UserGroupController.php:179 -#: ../../../modules/web/Controllers/UserGroupController.php:209 -#: ../../../modules/web/Controllers/UserGroupController.php:249 -#: ../../../modules/web/Controllers/UserGroupController.php:288 -#: ../../../modules/web/Controllers/UserGroupController.php:327 -#: ../../../modules/web/Controllers/UserProfileController.php:64 -#: ../../../modules/web/Controllers/UserProfileController.php:96 -#: ../../../modules/web/Controllers/UserProfileController.php:163 -#: ../../../modules/web/Controllers/UserProfileController.php:193 -#: ../../../modules/web/Controllers/UserProfileController.php:233 -#: ../../../modules/web/Controllers/UserProfileController.php:268 -#: ../../../modules/web/Controllers/UserProfileController.php:304 +#: ../../../../lib/SP/Util/ErrorUtil.php:160 msgid "No tiene permisos para realizar esta operación" msgstr "You don't have permission to do this operation" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:56 -#: ../../../config/strings.js.inc:85 -msgid "Aviso" -msgstr "Warning" +#: ../../../../lib/SP/Util/ErrorUtil.php:164 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 +msgid "Clave maestra actualizada" +msgstr "Master password updated" -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:105 -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:116 -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." +#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 +msgid "Reinicie la sesión para cambiarla" +msgstr "Please, restart the session for update it" -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -msgid "No se puede usar el módulo de encriptación" -msgstr "Crypto module cannot be loaded" +#: ../../../../lib/SP/Util/ErrorUtil.php:168 +#: ../../../../lib/SP/Util/ErrorUtil.php:175 +msgid "Se ha producido una excepción" +msgstr "An exception occured" -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 -msgid "Error al generar datos cifrados" -msgstr "Error while creating the encrypted data" +#: ../../../modules/api/Controllers/AccountController.php:144 +msgid "Clave actualizada" +msgstr "Palavra-chave actualizada" -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:102 -msgid "No es posible generar las claves RSA" -msgstr "Unable to generate the RSA keys" +#: ../../../modules/api/Controllers/AccountController.php:194 +msgid "Cuenta creada" +msgstr "Conta creada" -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:135 -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:168 -msgid "El archivo de clave no existe" -msgstr "The key file does not exist" +#: ../../../modules/api/Controllers/AccountController.php:245 +msgid "Cuenta actualizada" +msgstr "Conta actualizada" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 -msgid "El número de campos es incorrecto (%d)" -msgstr "Wrong number of fields (%d)" +#: ../../../modules/api/Controllers/AccountController.php:320 +#, fuzzy +msgid "Cuenta eliminada" +msgstr "Conta eliminada" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 -msgid "Compruebe el formato del archivo CSV en línea %s" -msgstr "Please, check the CSV file format in line %s" +#: ../../../modules/api/Controllers/CategoryController.php:96 +msgid "Categoría creada" +msgstr "Categoria criada" -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 +#: ../../../modules/api/Controllers/CategoryController.php:126 +msgid "Categoría actualizada" +msgstr "Categoria actualizada" + +#: ../../../modules/api/Controllers/CategoryController.php:155 +msgid "Categoría eliminada" +msgstr "Categoria eliminada" + +#: ../../../modules/api/Controllers/ClientController.php:98 +#, fuzzy +msgid "Cliente creado" +msgstr "Cliente criado" + +#: ../../../modules/api/Controllers/ClientController.php:129 +#, fuzzy +msgid "Cliente actualizado" +msgstr "Cliente actualizado" + +#: ../../../modules/api/Controllers/ClientController.php:158 +#, fuzzy +msgid "Cliente eliminado" +msgstr "Cliente eliminado" + +#: ../../../modules/api/Controllers/ConfigController.php:61 +msgid "Proceso de backup finalizado" +msgstr "Processo de cópia terminado" + +#: ../../../modules/api/Controllers/ConfigController.php:94 +msgid "Proceso de exportación finalizado" +msgstr "Processo de exportação finalizado" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 +msgid "Id de la cuenta" +msgstr "Account Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 +msgid "Clave del token" +msgstr "Token's password" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 +msgid "Devolver detalles en la respuesta" +msgstr "Send details in the response" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:89 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:92 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:163 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:293 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:170 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:253 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:260 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:35 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:98 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:27 +msgid "Clave" +msgstr "Password" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:114 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:181 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:90 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 +msgid "Fecha Caducidad Clave" +msgstr "Password Expiry Date" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:73 +msgid "Nombre de cuenta" +msgstr "Account name" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 +msgid "Id de categoría" +msgstr "Category Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 +msgid "Id de cliente" +msgstr "Client Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 +msgid "Usuario de acceso" +msgstr "Access user" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:136 +msgid "URL o IP de acceso" +msgstr "Access URL or IP" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:134 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 +msgid "Notas sobre la cuenta" +msgstr "Notes about the account" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:198 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 +msgid "Cuenta Privada" +msgstr "Private Account" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:217 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 +msgid "Cuenta Privada Grupo" +msgstr "Private Account for Group" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:252 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:254 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:13 +msgid "Cuenta Vinculada" +msgstr "Linked Account" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 +msgid "Array con Ids de etiquetas" +msgstr "Array with tags id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 +msgid "Id de grupo" +msgstr "Group Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 +#: ../../../modules/api/Controllers/Help/TagHelp.php:77 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 +msgid "Texto a buscar" +msgstr "Text to search" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 +#: ../../../modules/api/Controllers/Help/TagHelp.php:78 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 +msgid "Número de resultados a mostrar" +msgstr "Number of results to show" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 +msgid "Id de categoría a filtrar" +msgstr "Category Id to filter on" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 +msgid "Id de cliente a filtrar" +msgstr "Client Id to filter on" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 +msgid "Array con Ids de etiquetas a filtrar" +msgstr "Array with tags id for filtering" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 +msgid "Operador de filtrado" +msgstr "Filtering operator" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:29 +msgid "Nombre de la categoría" +msgstr "Category name" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:41 +msgid "Descripción de la categoría" +msgstr "Category description" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:30 +msgid "Nombre del cliente" +msgstr "Client name" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:43 +msgid "Descripción del cliente" +msgstr "Client description" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:99 +msgid "Global" +msgstr "Global" + +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 +msgid "Ruta" +msgstr "Path" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:43 +#: ../../../modules/api/Controllers/Help/TagHelp.php:65 +#: ../../../modules/api/Controllers/Help/TagHelp.php:89 +msgid "Id de etiqueta" +msgstr "Tag Id" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:54 +#: ../../../modules/api/Controllers/Help/TagHelp.php:66 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:29 +msgid "Nombre de la etiqueta" +msgstr "Tag name" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:31 +msgid "Nombre del grupo" +msgstr "Group name" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:44 +msgid "Descripción del grupo" +msgstr "Group description" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 +msgid "Array con Ids de usuarios" +msgstr "Array with users Id" + +#: ../../../modules/api/Controllers/TagController.php:94 +msgid "Etiqueta creada" +msgstr "Tag added" + +#: ../../../modules/api/Controllers/TagController.php:123 +msgid "Etiqueta actualizada" +msgstr "Tag updated" + +#: ../../../modules/api/Controllers/TagController.php:152 +msgid "Etiqueta eliminada" +msgstr "Tag removed" + +#: ../../../modules/api/Controllers/UserGroupController.php:96 +msgid "Grupo creado" +msgstr "Grupo criado" + +#: ../../../modules/api/Controllers/UserGroupController.php:127 +msgid "Grupo actualizado" +msgstr "Grupo actualizado" + +#: ../../../modules/api/Controllers/UserGroupController.php:156 +msgid "Grupo eliminado" +msgstr "Grupo eliminado" + +#: ../../../modules/web/Controllers/AccountController.php:149 +#: ../../../modules/web/Controllers/AccountController.php:204 +#: ../../../modules/web/Controllers/AccountController.php:489 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:56 +msgid "Detalles de Cuenta" +msgstr "Account Details" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:261 +#: ../../../modules/web/Controllers/AccountController.php:307 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:275 +#: ../../../config/actions.xml:157 +msgid "Nueva Cuenta" +msgstr "New Account" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:353 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 +#: ../../../config/actions.xml:163 +msgid "Editar Cuenta" +msgstr "Edit Account" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:400 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 +#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 +#: ../../../config/actions.xml:793 +msgid "Eliminar Cuenta" +msgstr "Remove Account" + +#: ../../../modules/web/Controllers/AccountController.php:445 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 +msgid "Modificar Clave de Cuenta" +msgstr "Edit Account Password" + +#: ../../../modules/web/Controllers/AccountFileController.php:211 +#, php-format +msgid "Extensión: %s" +msgstr "Extension: %s" + +#: ../../../modules/web/Controllers/AccountFileController.php:405 +msgid "Gestión de archivos deshabilitada" +msgstr "Files management disabled" + +#: ../../../modules/web/Controllers/AccountFileController.php:424 +msgid "No hay archivos asociados a la cuenta" +msgstr "There are no linked files for the account" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountManagerController.php:216 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 +#: ../../../config/actions.xml:493 +msgid "Actualización Masiva" +msgstr "Bulk Update" + +#: ../../../modules/web/Controllers/AuthTokenController.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 +msgid "Nueva Autorización" +msgstr "Nova Autorização" + +#: ../../../modules/web/Controllers/AuthTokenController.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 +msgid "Editar Autorización" +msgstr "Editar Autorização" + +#: ../../../modules/web/Controllers/AuthTokenController.php:347 +msgid "Ver Autorización" +msgstr "Ver Autorização" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:118 +#: ../../../config/actions.xml:307 +msgid "Nueva Categoría" +msgstr "Nova Categoria" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 +#: ../../../config/actions.xml:313 +msgid "Editar Categoría" +msgstr "Editar Categoria" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:335 +#: ../../../config/actions.xml:301 +msgid "Ver Categoría" +msgstr "Ver Categoria" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:93 +#: ../../../config/actions.xml:337 +#, fuzzy +msgid "Nuevo Cliente" +msgstr "Novo Cliente" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:174 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 +#: ../../../config/actions.xml:343 +#, fuzzy +msgid "Editar Cliente" +msgstr "Editar Cliente" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:326 +#: ../../../config/actions.xml:331 +#, fuzzy +msgid "Ver Cliente" +msgstr "Ver Cliente" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:153 +#: ../../../modules/web/Controllers/ConfigLdapController.php:197 +msgid "Resultados" +msgstr "Results" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:159 +#: ../../../modules/web/Controllers/ConfigLdapController.php:204 +#, php-format +msgid "Objetos encontrados: %d" +msgstr "Objects found: %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:279 +#, php-format +msgid "Usuarios importados: %d / %d" +msgstr "Imported users: %d / %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:280 +#, php-format +msgid "Errores: %d" +msgstr "Errors: %d" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:161 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 +msgid "General" +msgstr "Geral" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:190 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:29 +#: ../../../config/actions.xml:37 +msgid "Wiki" +msgstr "Wiki" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:209 +msgid "LDAP" +msgstr "LDAP" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:235 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:12 +msgid "Correo" +msgstr "Correio" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:274 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 +msgid "Encriptación" +msgstr "Encryption" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:302 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:61 +msgid "No se encontraron backups" +msgstr "There aren't any backups available" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:312 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 +msgid "No se encontró archivo de exportación" +msgstr "No export file found" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:315 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:78 +#: ../../../config/actions.xml:733 +msgid "Copia de Seguridad" +msgstr "Backup" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:332 msgid "Importar Cuentas" msgstr "Import Accounts" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:166 -msgid "Error importando cuenta" -msgstr "Error while importing the account" +#: ../../../modules/web/Controllers/ConfigManagerController.php:352 +msgid "No instalado" +msgstr "Not installed" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 -msgid "Campos Personalizados" -msgstr "Custom Fields" +#: ../../../modules/web/Controllers/ConfigManagerController.php:357 +msgid "Información" +msgstr "Information" -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:76 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 -msgid "Actualizando datos encriptados" -msgstr "Updating encrypted data" +#: ../../../modules/web/Controllers/CustomFieldController.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 +msgid "Nuevo Campo" +msgstr "Novo Campo" -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:110 -msgid "Registros no actualizados" -msgstr "Records not updated" +#: ../../../modules/web/Controllers/CustomFieldController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 +msgid "Editar Campo" +msgstr "Editar Campo" -#. (itstool) path: strings/text -#: ../../../config/strings.xml:8 -msgid "Texto" -msgstr "Text" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 -msgid "Fecha" -msgstr "Date" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:5 -msgid "Número" -msgstr "Number" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 -msgid "Email" -msgstr "Email" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:6 -msgid "Teléfono" -msgstr "Phone" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:9 -msgid "Link" -msgstr "Link" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:4 -msgid "Color" -msgstr "Color" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/ConfigBackupController.php:122 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 -msgid "Categorías" -msgstr "Categories" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/ConfigBackupController.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 -msgid "Clientes" -msgstr "Clients" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 -msgid "Grupos" -msgstr "Groups" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:62 -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:116 -msgid "Cliente duplicado" -msgstr "Duplicated client" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:80 -msgid "Error al crear el cliente" -msgstr "Error while creating the client" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:136 -msgid "Error al actualizar el cliente" -msgstr "Error while updating the client" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 -msgid "Actualizar Cliente" -msgstr "Update Client" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:283 -msgid "Error al eliminar el cliente" -msgstr "Error while deleting the client" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 -#: ../../../config/actions.xml:349 -msgid "Eliminar Cliente" -msgstr "Delete Client" - -#: ../../../../lib/SP/Services/Install/MySQL.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:97 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:117 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:164 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:176 -msgid "No es posible conectar con la BD" -msgstr "Unable to connect to the DB" - -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:166 -msgid "Compruebe los datos de conexión" -msgstr "Please, check the connection parameters" - -#. Not available -#: ../../../../lib/SP/Core/Acl/Acl.php:294 -#: ../../../../lib/SP/Services/Auth/LoginService.php:600 -msgid "N/D" -msgstr "N/A" - -#: ../../../../lib/SP/Core/Acl/Acl.php:300 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 -msgid "Acción" -msgstr "Action" - -#: ../../../../inc/SP/Log/Email.class.php:64 -msgid "Realizado por" -msgstr "Performed by" - -#: ../../../../inc/SP/Log/Email.class.php:76 -#: ../../../../inc/SP/Log/Email.class.php:191 -msgid "Enviar Email" -msgstr "Send Email" - -#: ../../../../lib/SP/Services/Mail/MailService.php:141 -#: ../../../modules/web/Controllers/ConfigMailController.php:138 -#: ../../../modules/web/Controllers/ConfigMailController.php:144 -msgid "Correo enviado" -msgstr "Email sent" - -#: ../../../../lib/SP/Services/Mail/MailService.php:81 -#: ../../../../lib/SP/Services/Mail/MailService.php:151 -msgid "Error al enviar correo" -msgstr "Error while sending the email" - -#: ../../../../lib/SP/Services/Mail/MailService.php:142 -#: ../../../modules/web/Controllers/ConfigMailController.php:139 -msgid "Destinatario" -msgstr "Recipient" - -#: ../../../../inc/SP/Log/Email.class.php:85 -msgid "CC" -msgstr "CC" - -#: ../../../../lib/SP/Services/Import/FileImport.php:67 -#: ../../../../lib/SP/Services/Import/FileImport.php:88 -msgid "Archivo no subido correctamente" -msgstr "File successfully uploaded" - -#: ../../../../lib/SP/Services/Import/FileImport.php:69 -#: ../../../../lib/SP/Services/Import/FileImport.php:90 -msgid "Verifique los permisos del usuario del servidor web" -msgstr "Please check the web server user permissions" - -#: ../../../../lib/SP/Services/Import/FileImport.php:102 -msgid "Compruebe la extensión del archivo" -msgstr "Please, check the file extension" - -#: ../../../../lib/SP/Services/Import/FileImport.php:118 -msgid "Compruebe la configuración de PHP para subir archivos" -msgstr "Please, check PHP configuration for upload files" - -#: ../../../../lib/SP/Services/Import/FileImport.php:157 -#: ../../../../lib/SP/Services/Import/FileImport.php:183 -msgid "Compruebe los permisos del directorio temporal" -msgstr "Please, check the temporary directory permissions" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 -#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 -msgid "Eliminar Archivo" -msgstr "Delete File" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 -#: ../../../config/actions.xml:625 -msgid "Eliminar Grupo" -msgstr "Delete Group" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:108 -msgid "Error al eliminar los usuarios del grupo" -msgstr "Error while deleting the group users" - -#: ../../../../lib/SP/Services/Import/ImportService.php:91 -msgid "Compruebe el formato del archivo" -msgstr "Please, check the file format" - -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigLdapController.php:260 -msgid "Importación finalizada" -msgstr "Import finished" - -#: ../../../modules/web/Controllers/ErrorController.php:123 -msgid "Error en la verificación de la base de datos" -msgstr "Error while checking the database" - -#: ../../../../lib/SP/Core/Context/SessionContext.php:547 -msgid "La sesión no puede ser inicializada" -msgstr "Session cannot be initialized" - -#: ../../../../lib/SP/Config/ConfigUtil.php:94 -msgid "El directorio \"/config\" no existe" -msgstr "The \"/config\" directory does not exist." - -#: ../../../../lib/SP/Config/ConfigUtil.php:100 -msgid "No es posible escribir en el directorio \"config\"" -msgstr "Unable to write into the \"/config\" directory" - -#: ../../../../lib/SP/Config/ConfigUtil.php:109 -msgid "Los permisos del directorio \"/config\" son incorrectos" -msgstr "The \"/config\" directory permissions are wrong" +#: ../../../modules/web/Controllers/CustomFieldController.php:317 +msgid "Ver Campo" +msgstr "View Field" #: ../../../modules/web/Controllers/ErrorController.php:107 msgid "Aplicación en mantenimiento" @@ -2037,354 +983,1008 @@ msgstr "Application in maintenance" msgid "En breve estará operativa" msgstr "It will be running shortly" -#: ../../../modules/web/Controllers/LoginController.php:101 -msgid "Finalizar sesión" -msgstr "Logout session" +#: ../../../modules/web/Controllers/ErrorController.php:123 +msgid "Error en la verificación de la base de datos" +msgstr "Error while checking the database" -#: ../../../modules/web/Controllers/LoginController.php:103 -msgid "Tiempo inactivo" -msgstr "Inactive time" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 +msgid "Ver Actual" +msgstr "View Current" -#: ../../../modules/web/Controllers/LoginController.php:104 -msgid "Tiempo total" -msgstr "Total time" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:360 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:310 +#: ../../../modules/web/themes/material-blue/views/config/general.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:295 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:440 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:294 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:194 +msgid "Atrás" +msgstr "Back" -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 -msgid "La aplicación necesita actualizarse" -msgstr "The application needs to be updated" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 +msgid "Solicitar Modificación" +msgstr "Request Modification" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:43 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 -msgid "Actualizar" -msgstr "Update" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 +msgid "Restaurar cuenta desde este punto" +msgstr "Restore account from this point" -#: ../../../../lib/SP/Controller/MainActionController.php:91 -#: ../../../../lib/SP/Controller/MainActionController.php:148 -msgid "Actualización" -msgstr "Update" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:130 +msgid "Guardar" +msgstr "Save" -#: ../../../../lib/SP/Controller/MainActionController.php:149 -msgid "Actualización de versión realizada." -msgstr "Version updating done." +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 +#: ../../../config/actions.xml:439 +msgid "Actualizar Enlace Público" +msgstr "Update Public Link" -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:113 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:229 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:161 -#: ../../../modules/web/Controllers/ConfigBackupController.php:118 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 -msgid "Versión" -msgstr "Version" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 +#: ../../../config/actions.xml:433 +msgid "Eliminar Enlace Público" +msgstr "Delete Public Link" -#: ../../../../lib/SP/Services/Install/Installer.php:106 -msgid "Indicar nombre de usuario admin" -msgstr "Please, enter the admin username" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 +#: ../../../config/actions.xml:421 +msgid "Crear Enlace Público" +msgstr "Create Public Link" -#: ../../../../lib/SP/Services/Install/Installer.php:108 -msgid "Usuario admin para acceso a la aplicación" -msgstr "Admin user to log into the application" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 +#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 +msgid "Ver Clave" +msgstr "View password" -#: ../../../../lib/SP/Services/Install/Installer.php:113 -msgid "Indicar la clave de admin" -msgstr "Please, enter the admin's password" +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 +msgid "Copiar Clave en Portapapeles" +msgstr "Copy Password to Clipboard" -#: ../../../../lib/SP/Services/Install/Installer.php:115 -msgid "Clave del usuario admin de la aplicación" -msgstr "Application administrator's password" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 +#: ../../../config/actions.xml:193 +msgid "Copiar Cuenta" +msgstr "Copy Account" -#: ../../../../lib/SP/Services/Install/Installer.php:120 -msgid "Indicar la clave maestra" -msgstr "Please, enter the Master Password" +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 +#: ../../../config/strings.js.inc:72 +msgid "Clave de Cuenta" +msgstr "Account Password" -#: ../../../../lib/SP/Services/Install/Installer.php:122 -msgid "Clave maestra para encriptar las claves" -msgstr "Master password to encrypt the passwords" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 +msgid "Más Acciones" +msgstr "More Actions" -#: ../../../../lib/SP/Services/Install/Installer.php:127 -msgid "Clave maestra muy corta" -msgstr "Master password too short" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:59 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:34 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:40 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 +msgid "Cliente" +msgstr "Client" -#: ../../../../lib/SP/Services/Install/Installer.php:129 -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" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 +msgid "Ordenar por Cliente" +msgstr "Sort by Client" -#: ../../../../lib/SP/Services/Install/Installer.php:134 -msgid "Indicar el usuario de la BBDD" -msgstr "Please, enter the database user" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:43 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:22 +msgid "Nombre" +msgstr "Name" -#: ../../../../lib/SP/Services/Install/Installer.php:136 -msgid "Usuario con permisos de administrador de la Base de Datos" -msgstr "An user with database administrative rights" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 +msgid "Ordenar por Nombre" +msgstr "Sort by Name" -#: ../../../../lib/SP/Services/Install/Installer.php:148 -msgid "Indicar el nombre de la BBDD" -msgstr "Please, enter the database name" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:72 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:45 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:51 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:105 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 +msgid "Categoría" +msgstr "Category" -#: ../../../../lib/SP/Services/Install/Installer.php:150 -msgid "Nombre para la BBDD de la aplicación pej. syspass" -msgstr "Application database name. eg. syspass" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 +msgid "Ordenar por Categoría" +msgstr "Sort by Category" -#: ../../../../lib/SP/Services/Install/Installer.php:155 -msgid "El nombre de la BBDD no puede contener \".\"" -msgstr "Database name cannot contain \".\"" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:141 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:61 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:149 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:233 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:247 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:24 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:94 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:75 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:77 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 +msgid "Usuario" +msgstr "User" -#: ../../../../lib/SP/Services/Install/Installer.php:157 -msgid "Elimine los puntos del nombre de la Base de Datos" -msgstr "Please, remove dots in database name" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 +msgid "Ordenar por Usuario" +msgstr "Sort by Username" -#: ../../../../lib/SP/Services/Install/Installer.php:162 -msgid "Indicar el servidor de la BBDD" -msgstr "Please, enter the database server" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:56 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:62 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:128 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:79 +msgid "URL / IP" +msgstr "URL / IP" -#: ../../../../lib/SP/Services/Install/Installer.php:164 -msgid "Servidor donde se instalará la Base de Datos" -msgstr "Server where the database will be installed" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 +msgid "Ordenar por URL / IP" +msgstr "Sort by URL / IP" -#: ../../../../inc/SP/Core/Installer.class.php:238 -msgid "No es posible comprobar el usuario de sysPass" -msgstr "Unable to check the sysPass user" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 +msgid "Eliminar Seleccionados" +msgstr "Delete Selected" -#: ../../../../lib/SP/Services/Install/MySQL.php:137 -msgid "Compruebe los permisos del usuario de conexión a la BD" -msgstr "Please, check the DB connection user rights" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:158 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:42 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:44 +msgid "Propietario" +msgstr "Owner" -#: ../../../../lib/SP/Services/Install/MySQL.php:201 -msgid "La BBDD ya existe" -msgstr "The database already exists" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:175 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:50 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 +msgid "Grupo Principal" +msgstr "Main Group" -#: ../../../../lib/SP/Services/Install/MySQL.php:203 -msgid "Indique una nueva Base de Datos o elimine la existente" -msgstr "Please, enter a new database or delete the existing one" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 +#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 +msgid "Buscar Cuenta" +msgstr "Search for Account" -#: ../../../../inc/SP/Core/Installer.class.php:316 -#: ../../../../inc/SP/Core/Installer.class.php:419 -msgid "Error al crear la BBDD" -msgstr "Error while creating the DB" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 +msgid "Cuentas (H)" +msgstr "Accounts (H)" -#: ../../../../lib/SP/Services/Install/MySQL.php:215 -#: ../../../../lib/SP/Services/Install/MySQL.php:239 -msgid "Verifique los permisos del usuario de la Base de Datos" -msgstr "Please check the database user permissions" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:122 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:55 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:38 +msgid "Fecha" +msgstr "Date" -#: ../../../../lib/SP/Services/Install/MySQL.php:305 -msgid "El archivo de estructura de la BBDD no existe" -msgstr "The database structure file does not exist" +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:126 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 +msgid "Estado" +msgstr "Status" -#: ../../../../lib/SP/Services/Install/MySQL.php:307 -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." +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +msgid "Modificada" +msgstr "Modified" -#: ../../../../lib/SP/Services/Install/MySQL.php:290 -msgid "Error al seleccionar la BBDD" -msgstr "Error while selecting the database." +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 +msgid "Eliminada" +msgstr "Removed" -#: ../../../../lib/SP/Services/Install/MySQL.php:311 -msgid "" -"No es posible usar la Base de Datos para crear la estructura. Compruebe los " -"permisos y que no exista." -msgstr "" -"Unable to use the database to create the structure. Check permissions and it " -"does not exist." +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 +#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 +msgid "Restaurar Cuenta" +msgstr "Account Restore" -#: ../../../../lib/SP/Services/Install/MySQL.php:331 -msgid "Error al crear la estructura de la Base de Datos." -msgstr "Error while creating database structure." +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 +msgid "Autorizaciones API" +msgstr "API Authorizations" -#: ../../../../lib/SP/Services/Install/Installer.php:318 -#: ../../../../lib/SP/Services/Install/Installer.php:369 -msgid "Informe al desarrollador" -msgstr "Warn to developer" +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 +msgid "Acción" +msgstr "Action" -#: ../../../../inc/SP/Core/Installer.class.php:484 -msgid "Error al actualizar la clave maestra del usuario \"admin\"" -msgstr "Error while updating the Master Password for user \"admin\"" +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 +msgid "Buscar Token" +msgstr "Search for Token" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:141 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:188 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:193 -msgid "No es posible conectar con el servidor de LDAP" -msgstr "Unable to connect to the LDAP server" +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 +msgid "Ver token de Autorización" +msgstr "View Authorization token" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:231 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:237 -msgid "Error al conectar (BIND)" -msgstr "Connection error (BIND)" +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 +msgid "Eliminar Autorización" +msgstr "Delete Authorization" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:249 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:254 -msgid "Error al buscar objetos en DN base" -msgstr "Error while searching objects in base DN" +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 +msgid "Descripción" +msgstr "Description" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:119 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:125 -msgid "Error al buscar RDN de grupo" -msgstr "Error while searching the group RDN" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 +#: ../../../config/actions.xml:325 +msgid "Buscar Categoría" +msgstr "Search for Category" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:200 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:204 -msgid "Error al localizar el usuario en LDAP" -msgstr "Error while searching the user on LDAP" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 +#: ../../../config/actions.xml:319 +msgid "Eliminar Categoría" +msgstr "Delete Category" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:139 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:120 -msgid "Error al buscar el grupo de usuarios" -msgstr "Error while searching users group" +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:66 +msgid "SI" +msgstr "YES" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:109 -msgid "Usuario verificado en grupo" -msgstr "User in group verified" +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:67 +msgid "NO" +msgstr "NO" -#: ../../../../inc/SP/Controller/EventlogController.class.php:102 -msgid "Vaciar Eventos" -msgstr "Clear Events" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 +#: ../../../config/actions.xml:355 +msgid "Buscar Cliente" +msgstr "Search for Client" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 +#: ../../../config/actions.xml:349 +msgid "Eliminar Cliente" +msgstr "Delete Client" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 +msgid "Campos Personalizados" +msgstr "Custom Fields" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 +msgid "Módulo" +msgstr "Module" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:30 +msgid "Tipo" +msgstr "Type" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:120 +msgid "Propiedades" +msgstr "Properties" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 +msgid "Encriptado" +msgstr "Encrypted" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 +msgid "Buscar Campo" +msgstr "Search for Field" + +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 +msgid "Eliminar Campo" +msgstr "Delete Field" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 +#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 +#: ../../../config/actions.xml:133 +msgid "Registro de Eventos" +msgstr "Event Log" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:99 +msgid "ID" +msgstr "ID" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 +msgid "Fecha / Hora" +msgstr "Date / Time" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 +msgid "Nivel" +msgstr "Level" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 +msgid "Evento" +msgstr "Event" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 +msgid "Login" +msgstr "Login" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 +msgid "IP" +msgstr "IP" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 +msgid "Buscar Evento" +msgstr "Search for Events" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 +msgid "Refrescar" +msgstr "Refresh" + +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:199 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 msgid "Vaciar registro de eventos" msgstr "Clear the event log out" -#: ../../../../lib/SP/Services/Client/ClientService.php:76 -#: ../../../../lib/SP/Services/Client/ClientService.php:95 -#: ../../../../lib/SP/Services/Client/ClientService.php:110 -msgid "Cliente no encontrado" -msgstr "Client not found" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:280 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 +#: ../../../config/actions.xml:19 +msgid "Archivos" +msgstr "Files" -#: ../../../../inc/SP/Mgmt/Users/User.class.php:246 -msgid "Error al obtener los usuarios" -msgstr "Error while retrieving the users" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:25 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:30 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:23 +msgid "Cuenta" +msgstr "Account" -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:52 -msgid "Migrar Perfiles" -msgstr "Migrate Profiles" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:82 -msgid "Error al obtener perfiles" -msgstr "Error while retrieving the profiles" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:144 -msgid "Operación realizada correctamente" -msgstr "Operation completed successfully" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:149 -msgid "Fallo al realizar la operación" -msgstr "Error while performing the operation" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:110 +msgid "Tamaño" +msgstr "Size" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 -#: ../../../config/actions.xml:655 -msgid "Eliminar Perfil" -msgstr "Delete Profile" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:119 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:68 -msgid "Formato de XML inválido" -msgstr "Invalid XML format" - -#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:122 -msgid "No es posible obtener la plantilla \"%s\" : %s" -msgstr "Unable to retrieve the \"%s\" template: %s" - -#: ../../../../lib/SP/Mvc/View/Template.php:274 -#: ../../../../lib/SP/Mvc/View/Template.php:276 -msgid "No es posible obtener la variable \"%s\"" -msgstr "Unable to retrieve the \"%s\" variable" - -#: ../../../../lib/SP/Mvc/View/Template.php:322 -#: ../../../../lib/SP/Mvc/View/Template.php:324 -msgid "No es posible destruir la variable \"%s\"" -msgstr "Unable to unset the \"%s\" variable" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:175 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:179 -msgid "Error al aplicar la actualización de la Base de Datos" -msgstr "Error while updating the database" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:72 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:98 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:106 -msgid "Compruebe el registro de eventos para más detalles" -msgstr "Please, check the event log for more details" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 -msgid "Acceder" -msgstr "Sign in" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:96 -msgid "Error al aplicar la actualización auxiliar" -msgstr "Error while applying an auxiliary update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:89 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:120 -msgid "Actualizar BBDD" -msgstr "Update DB" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:155 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:159 -msgid "No es necesario actualizar la Base de Datos." -msgstr "Database update not needed." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 -msgid "Actualización de la Base de Datos realizada correctamente." -msgstr "Database updating was completed successfully." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:70 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:202 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:228 -msgid "Actualizar Configuración" -msgstr "Update Configuration" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:240 -msgid "No se pudo realizar la petición de cambio de clave." -msgstr "Could not perform the password change request." +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:145 +#: ../../../config/actions.xml:475 +msgid "Buscar Archivo" +msgstr "Search for File" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:51 +#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 +msgid "Ver Archivo" +msgstr "View File" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:42 +#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 +msgid "Descargar Archivo" +msgstr "Download File" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:34 +#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 +msgid "Eliminar Archivo" +msgstr "Delete File" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 +msgid "Valores Predeterminados" +msgstr "Preset Values" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:274 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:277 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:233 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:148 +msgid "Grupo" +msgstr "Group" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:131 +msgid "Perfil" +msgstr "Profile" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 +msgid "Prioridad" +msgstr "Priority" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 +msgid "Forzado" +msgstr "Forced" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 +#: ../../../config/actions.xml:853 +msgid "Buscar Valor" +msgstr "Search for Value" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 +msgid "Valor de Permiso" +msgstr "Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 +msgid "Nuevo Valor de Permiso" +msgstr "New Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 +msgid "Valor de Cuenta Privada" +msgstr "Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 +msgid "Nuevo Valor de Cuenta Privada" +msgstr "New Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 +msgid "Valor de Timeout de Sesión" +msgstr "Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 +msgid "Nuevo Valor de Timeout de Sesión" +msgstr "New Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 +msgid "Valor de Clave de Cuentas" +msgstr "Account Password Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 +msgid "Nuevo Valor de Clave de Cuentas" +msgstr "New Account Password Preset" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: ../../../modules/web/Controllers/ItemPresetController.php:239 +#: ../../../config/actions.xml:871 +msgid "Editar Valor" +msgstr "Edit Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 +#: ../../../config/actions.xml:877 +msgid "Eliminar Valor" +msgstr "Delete Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 +#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 +#: ../../../config/actions.xml:679 +msgid "Notificaciones" +msgstr "Notifications" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:42 +msgid "Componente" +msgstr "Component" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:111 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:115 +msgid "Leída" +msgstr "Read" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 +msgid "Sólo Admins" +msgstr "Only Admins" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:164 +#: ../../../config/actions.xml:841 +msgid "Buscar Notificación" +msgstr "Search for Notification" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:180 +#: ../../../modules/web/Controllers/NotificationController.php:194 +msgid "Nueva Notificación" +msgstr "New Notification" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:198 +#: ../../../modules/web/Controllers/NotificationController.php:113 +#: ../../../config/actions.xml:811 +msgid "Ver Notificación" +msgstr "View Notification" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:228 +#: ../../../config/actions.xml:835 +msgid "Marcar Notificación" +msgstr "Checkout Notification" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:246 +#: ../../../modules/web/Controllers/NotificationController.php:226 +#: ../../../config/actions.xml:823 +msgid "Editar Notificación" +msgstr "Edit Notification" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:263 +#: ../../../config/actions.xml:829 +msgid "Eliminar Notificación" +msgstr "Delete Notification" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:331 +#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 +msgid "Plugins" +msgstr "Plugins" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 +msgid "Plugin" +msgstr "Plugin" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 +msgid "No disponible" +msgstr "Unavailable" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 +#: ../../../config/actions.xml:547 +msgid "Buscar Plugin" +msgstr "Search for Plugin" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 +#: ../../../modules/web/Controllers/PluginController.php:136 +#: ../../../config/actions.xml:541 +msgid "Ver Plugin" +msgstr "View Plugin" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 +msgid "Habilitar" +msgstr "Enable" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 +msgid "Deshabilitar" +msgstr "Disable" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 +msgid "Restablecer Datos" +msgstr "Reset Data" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:49 +msgid "Enlaces" +msgstr "Links" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:51 +msgid "Fecha Creación" +msgstr "Creation Date" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:59 +msgid "Fecha Caducidad" +msgstr "Expiry Date " + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:43 +msgid "Notificar" +msgstr "Notify" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:14 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:75 +msgid "Visitas" +msgstr "Visits" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:149 +msgid "Buscar Enlace" +msgstr "Search for Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:165 +msgid "Nuevo Enlace" +msgstr "New Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:183 +#: ../../../modules/web/Controllers/PublicLinkController.php:357 +msgid "Ver Enlace" +msgstr "View Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:199 +msgid "Renovar Enlace" +msgstr "Renew Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:216 +msgid "Eliminar Enlace" +msgstr "Delete Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:211 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 +msgid "Etiquetas" +msgstr "Tags" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:135 +#: ../../../config/actions.xml:529 +msgid "Buscar Etiqueta" +msgstr "Search for Tag" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: ../../../modules/web/Controllers/TagController.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:226 +#: ../../../config/actions.xml:505 +msgid "Nueva Etiqueta" +msgstr "New Tag" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: ../../../modules/web/Controllers/TagController.php:168 +#: ../../../config/actions.xml:517 +msgid "Editar Etiqueta" +msgstr "Edit Tag" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:186 +#: ../../../config/actions.xml:523 +msgid "Eliminar Etiqueta" +msgstr "Delete Tag" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 +msgid "Tracks" +msgstr "Tracks" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 +msgid "Fecha Desbloqueo" +msgstr "Date Unlocked" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 +msgid "Origen" +msgstr "Source" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 +#: ../../../config/actions.xml:889 +msgid "Buscar Track" +msgstr "Search for track" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:156 +#: ../../../config/actions.xml:601 +msgid "Buscar Usuario" +msgstr "Search for User" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:172 +#: ../../../modules/web/Controllers/UserController.php:115 +#: ../../../config/actions.xml:577 +msgid "Nuevo Usuario" +msgstr "Novo Utilizador" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:190 +#: ../../../modules/web/Controllers/UserController.php:200 +#: ../../../config/actions.xml:583 +msgid "Editar Usuario" +msgstr "Editar Utilizador" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:207 #: ../../../config/actions.xml:589 msgid "Eliminar Usuario" msgstr "Delete User" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:40 -msgid "Usuario de LDAP" -msgstr "LDAP User" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:224 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:460 +msgid "Importar usuarios de LDAP" +msgstr "Import users from LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:122 -msgid "Activación Cuenta" -msgstr "Account Activation" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:242 +msgid "Ver Detalles de Usuario" +msgstr "View User Details" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:123 -msgid "Su cuenta está pendiente de activación." -msgstr "Your account activation is pending." +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:259 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 +msgid "Cambiar Clave de Usuario" +msgstr "Change User's Password" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:124 -msgid "En breve recibirá un email de confirmación." -msgstr "You will receive a confirmation email shortly." +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 +#: ../../../config/actions.xml:631 +msgid "Buscar Grupo" +msgstr "Search for Group" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:131 -msgid "Nuevo usuario de LDAP" -msgstr "New LDAP user" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: ../../../modules/web/Controllers/UserGroupController.php:117 +#: ../../../config/actions.xml:613 +msgid "Nuevo Grupo" +msgstr "Novo Grupo" -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:152 -msgid "Error al migrar grupo del usuario" -msgstr "Error while migrating the user group" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: ../../../modules/web/Controllers/UserGroupController.php:344 +#: ../../../config/actions.xml:607 +msgid "Ver Grupo" +msgstr "Ver Grupo" -#: ../../../modules/web/Controllers/InstallController.php:62 -msgid "Versión de PHP requerida >= " -msgstr "Required PHP version >=" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: ../../../modules/web/Controllers/UserGroupController.php:188 +#: ../../../config/actions.xml:619 +msgid "Editar Grupo" +msgstr "Editar Grupo" -#: ../../../../lib/SP/Bootstrap.php:269 -msgid "" -"Actualice la versión de PHP para que la aplicación funcione correctamente" -msgstr "Please update the PHP version to run sysPass" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 +#: ../../../config/actions.xml:625 +msgid "Eliminar Grupo" +msgstr "Delete Group" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 +msgid "Perfiles" +msgstr "Profiles" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 +#: ../../../config/actions.xml:661 +msgid "Buscar Perfil" +msgstr "Search for Profile" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: ../../../modules/web/Controllers/UserProfileController.php:110 +#: ../../../config/actions.xml:643 +msgid "Nuevo Perfil" +msgstr "Novo Perfil" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 +msgid "Ver Detalles de Perfil" +msgstr "View Profile Details" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: ../../../modules/web/Controllers/UserProfileController.php:177 +#: ../../../config/actions.xml:649 +msgid "Editar Perfil" +msgstr "Editar Perfil" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 +#: ../../../config/actions.xml:655 +msgid "Eliminar Perfil" +msgstr "Delete Profile" + +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:262 +msgid "Buscar" +msgstr "Search" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:345 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 +#: ../../../config/actions.xml:685 +msgid "Configuración" +msgstr "Configuration" #: ../../../modules/web/Controllers/InstallController.php:59 msgid "Módulo no disponible" @@ -2394,28 +1994,57 @@ msgstr "Module unavailable" msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Without this module the application could not run correctly" -#: ../../../../inc/SP/Core/XmlExport.class.php:133 -msgid "Exportar XML" -msgstr "XML Export" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:73 +#: ../../../config/actions.xml:859 +msgid "Ver Valor" +msgstr "Display Value" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:545 -msgid "Error al crear el archivo XML" -msgstr "Error while creating the XML file" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:207 +#: ../../../config/actions.xml:865 +msgid "Nuevo Valor" +msgstr "New Value" -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:110 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:81 -msgid "No es posible procesar el archivo XML" -msgstr "Unable to process the XML file" +#: ../../../modules/web/Controllers/ItemsController.php:130 +msgid "No hay no hay notificaciones pendientes" +msgstr "There aren't any pending notifications" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:105 -msgid "Archivo XML no soportado" -msgstr "XML file not supported" +#: ../../../modules/web/Controllers/ItemsController.php:131 +#, php-format +msgid "Hay notificaciones pendientes: %d" +msgstr "There are pending notifications: %d" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:107 -msgid "No es posible detectar la aplicación que exportó los datos" -msgstr "Unable to detect the application the data was exported from" +#: ../../../modules/web/Controllers/PublicLinkController.php:114 +msgid "Nuevo Enlace Público" +msgstr "New Public Link" + +#: ../../../modules/web/Controllers/PublicLinkController.php:204 +msgid "Editar Enlace Público" +msgstr "Edit Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/TagController.php:302 +#: ../../../config/actions.xml:511 +msgid "Ver Etiqueta" +msgstr "View Tag" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserController.php:458 +#: ../../../config/actions.xml:571 +msgid "Ver Usuario" +msgstr "Ver Utilizador" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserProfileController.php:326 +#: ../../../config/actions.xml:637 +msgid "Ver Perfil" +msgstr "Ver Perfil" + +#: ../../../modules/web/Controllers/UserSettingsManagerController.php:87 +msgid "Preferencias" +msgstr "Preferences" -#: ../../../../lib/SP/Storage/Database/QueryData.php:354 #: ../../../config/strings.js.inc:26 msgid "Error en la consulta" msgstr "Error while querying" @@ -2469,12 +2098,11 @@ msgid "Borrar elemento?" msgstr "Delete item?" #: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:31 msgid "Página no encontrada" msgstr "Page not found" -#: ../../../modules/web/Controllers/AccountFileController.php:108 #: ../../../config/strings.js.inc:40 msgid "Archivo no soportado para visualizar" msgstr "File not supported for preview" @@ -2495,52 +2123,56 @@ msgstr "Too many files" msgid "Tamaño de archivo no permitido" msgstr "File size not allowed" +#: ../../../config/strings.js.inc:45 +msgid "Extensión no permitida" +msgstr "Extensão não permitida" + #: ../../../config/strings.js.inc:46 msgid "Vaciar el registro de eventos?" msgstr "Clear the event log out?" #: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:281 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:253 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:152 msgid "Seleccionar Grupo" msgstr "Select Group" #: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:81 msgid "Seleccionar Usuario" msgstr "Select User" #: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:135 msgid "Seleccionar Perfil" msgstr "Select Profile" #: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:84 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 msgid "Seleccionar Cliente" msgstr "Select Client" #: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:41 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 msgid "Seleccionar Categoría" msgstr "Select Category" @@ -2573,53 +2205,43 @@ msgid "Mostrar Clave" msgstr "Show Password" #: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:24 msgid "Copiar Usuario" msgstr "Copy Username" #. (itstool) path: action/text #: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:41 #: ../../../config/actions.xml:199 ../../../config/actions.xml:271 msgid "Copiar Clave" msgstr "Copy Password" #: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 msgid "Incluir Números" msgstr "Include Numbers" #: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 msgid "Incluir Mayúsculas" msgstr "Include Uppercase" #: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 msgid "Incluir Símbolos" msgstr "Include Symbols" #: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 msgid "Longitud" msgstr "Length" #: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 msgid "Seleccionar Acción" msgstr "Select Action" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:66 -msgid "SI" -msgstr "YES" - -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:67 -msgid "NO" -msgstr "NO" - #: ../../../config/strings.js.inc:68 msgid "Aceptar" msgstr "Accept" @@ -2636,668 +2258,547 @@ msgstr "Password Copied to Clipboard" msgid "Error al copiar al portapapeles" msgstr "Error while copying to clipboard" -#: ../../../modules/web/Controllers/AccountController.php:149 -#: ../../../modules/web/Controllers/AccountController.php:204 -#: ../../../modules/web/Controllers/AccountController.php:474 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 -msgid "Detalles de Cuenta" -msgstr "Account Details" +#: ../../../config/strings.js.inc:73 +msgid "Recibir notificaciones?" +msgstr "Send notifies?" -#: ../../../modules/web/Controllers/AccountController.php:432 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 -msgid "Modificar Clave de Cuenta" -msgstr "Edit Account Password" - -#: ../../../../lib/SP/Plugin/PluginManager.php:246 -#: ../../../modules/api/Controllers/AccountController.php:71 -#: ../../../modules/api/Controllers/AccountController.php:103 -#: ../../../modules/api/Controllers/AccountController.php:139 -#: ../../../modules/api/Controllers/AccountController.php:185 -#: ../../../modules/api/Controllers/AccountController.php:235 -#: ../../../modules/api/Controllers/AccountController.php:310 -#: ../../../modules/api/Controllers/CategoryController.php:63 -#: ../../../modules/api/Controllers/CategoryController.php:92 -#: ../../../modules/api/Controllers/CategoryController.php:122 -#: ../../../modules/api/Controllers/CategoryController.php:151 -#: ../../../modules/api/Controllers/ClientController.php:64 -#: ../../../modules/api/Controllers/ClientController.php:94 -#: ../../../modules/api/Controllers/ClientController.php:125 -#: ../../../modules/api/Controllers/ClientController.php:154 -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:90 -#: ../../../modules/api/Controllers/TagController.php:119 -#: ../../../modules/api/Controllers/TagController.php:148 -#: ../../../modules/api/Controllers/UserGroupController.php:62 -#: ../../../modules/api/Controllers/UserGroupController.php:92 -#: ../../../modules/api/Controllers/UserGroupController.php:123 -#: ../../../modules/api/Controllers/UserGroupController.php:152 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/Controllers/UserGroupController.php:265 -#: ../../../modules/web/Controllers/UserGroupController.php:304 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 -msgid "Nombre" -msgstr "Name" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 -msgid "Módulo" -msgstr "Module" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 -msgid "Eliminar Campo" -msgstr "Delete Field" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Last backup" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "No se encontraron backups" -msgstr "There aren't any backups available" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "Última exportación" -msgstr "Last export" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "No se encontró archivo de exportación" -msgstr "No export file found" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:63 -msgid "Información" -msgstr "Information" - -#: ../../../modules/web/Controllers/EventlogController.php:119 -#: ../../../modules/web/Controllers/EventlogController.php:122 -msgid "Registro de eventos vaciado" -msgstr "Event log cleared" - -#: ../../../../lib/SP/Repositories/EventLog/EventlogRepository.php:53 -msgid "Error al vaciar el registro de eventos" -msgstr "Error while clearing the event log out" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 -msgid "Admin Aplicación" -msgstr "Application Admin" - -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:265 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:58 -msgid "Buscar" -msgstr "Search" +#: ../../../config/strings.js.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:158 +msgid "Marcar Favorito" +msgstr "Mark as Favorite" #. (itstool) path: action/text -#: ../../../config/actions.xml:103 -msgid "Usuarios y Accesos" -msgstr "Users and Accesses" +#: ../../../config/strings.js.inc:75 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:148 +#: ../../../config/actions.xml:253 +msgid "Eliminar Favorito" +msgstr "Delete Favorite" -#. (itstool) path: action/text -#: ../../../config/actions.xml:43 -msgid "Elementos y Personalización" -msgstr "Items and Customizations" +#: ../../../config/strings.js.inc:76 +msgid "Limpiar Selección" +msgstr "Clear Selection" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 -#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 -#: ../../../config/actions.xml:133 -msgid "Registro de Eventos" -msgstr "Event Log" +#: ../../../config/strings.js.inc:77 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:78 +msgid "Mostrar Favoritos" +msgstr "Show Favorites" -#: ../../../modules/web/Controllers/InstallController.php:82 -msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" -msgstr "This PHP version is vulnerable to NULL Byte attack CVE-2006-7243)" +#: ../../../config/strings.js.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:72 +msgid "Mostrar Todos" +msgstr "Show All" -#: ../../../modules/web/Controllers/InstallController.php:83 -msgid "Actualice la versión de PHP para usar sysPass de forma segura" -msgstr "Please update PHP version to run sysPass in a secure way" +#: ../../../config/strings.js.inc:79 +msgid "Ayuda" +msgstr "Help" -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "No se encuentra el generador de números aleatorios." -msgstr "Cannot find random number generator." +#: ../../../config/strings.js.inc:80 +msgid "Sin cambios" +msgstr "Sem modificações" -#: ../../../modules/web/Controllers/InstallController.php:90 +#: ../../../config/strings.js.inc:81 +msgid "Ahora" +msgstr "Now" + +#: ../../../config/strings.js.inc:82 msgid "" -"Sin esta función un atacante puede utilizar su cuenta al resetear la clave" +"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" msgstr "" -"Without this function, an attacker could take your account on password reset." +"This process will import the detected LDAP users. Would you like to continue?" -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "Instalación finalizada" -msgstr "Installation finished" +#: ../../../config/strings.js.inc:83 +msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" +msgstr "This action will reset all plugin data. Do you want to continue?" -#: ../../../../inc/SP/Controller/MainController.class.php:492 -msgid "Descargar nueva versión" -msgstr "Download new version" +#: ../../../config/strings.js.inc:84 +msgid "Este proceso puede durar algo de tiempo. Desea continuar?" +msgstr "This process could long some time. Do you wish to continue?" + +#: ../../../config/strings.js.inc:85 +msgid "Aviso" +msgstr "Warning" + +#: ../../../config/strings.js.inc:87 +msgid "" +"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." +msgstr "Performing task. Please, do not close the browser window/tab." + +#: ../../../config/strings.js.inc:88 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 +msgid "Incluir Letras" +msgstr "Include Letters" + +#: ../../../config/strings.js.inc:89 +msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." +msgstr "Cookies disabled. The application won't work properly." + +#: ../../../config/strings.js.inc:90 +msgid "Portapapeles no soportado por el navegador." +msgstr "Clipboard not supported by your browser." + +#: ../../../config/strings.js.inc:91 +msgid "Realizando auto-login" +msgstr "Performing auto-login" + +#: ../../../config/strings.js.inc:92 +msgid "Hay una versión más reciente del plugin {0} ({1})" +msgstr "There is a more recent version of {0} plugin ({1})" + +#: ../../../config/strings.js.inc:93 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:30 +msgid "Actualizado" +msgstr "Updated" + +#: ../../../config/strings.js.inc:94 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:36 +msgid "Error al comprobar actualizaciones" +msgstr "Error while checking for updates" #: ../../../config/strings.js.inc:95 msgid "Avisos de sysPass" msgstr "sysPass Notices" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 -msgid "Ordenar por Cliente" -msgstr "Sort by Client" +#: ../../../config/strings.js.inc:96 +msgid "Vaciar los tracks?" +msgstr "Clear tracks out?" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 -msgid "Ordenar por Nombre" -msgstr "Sort by Name" +#: ../../../config/strings.js.inc:97 +msgid "Archivo descargado" +msgstr "File downloaded" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 -msgid "Ordenar por Categoría" -msgstr "Sort by Category" +#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:21 +msgid "Javascript es necesario para el correcto funcionamiento" +msgstr "Javascript is needed in order to run correctly" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 -msgid "Ordenar por Usuario" -msgstr "Sort by Username" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 -msgid "Ordenar por URL / IP" -msgstr "Sort by URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 -msgid "URL / IP" -msgstr "URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 -msgid "Propiedades" -msgstr "Properties" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 -msgid "Admin Cuentas" -msgstr "Accounts Admin" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:41 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 -msgid "Deshabilitado" -msgstr "Disabled" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 -msgid "Ver Detalles de Usuario" -msgstr "View User Details" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:62 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:120 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:126 -msgid "Cambiar Clave de Usuario" -msgstr "Change User's Password" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 -msgid "Ver Detalles de Perfil" -msgstr "View Profile Details" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 -msgid "Ver token de Autorización" -msgstr "View Authorization token" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:409 -msgid "Token de autorización visualizado" -msgstr "Authorization token viewed" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:407 -msgid "Autorizaciones" -msgstr "Authorizations" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 -msgid "Seguridad" -msgstr "Security" - -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:89 -msgid "Preferencias" -msgstr "Preferences" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 -msgid "Nombre de cuenta" -msgstr "Account name" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 -msgid "URL o IP de acceso" -msgstr "Access URL or IP" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 -msgid "Usuario de acceso" -msgstr "Access user" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 -msgid "Clave (repetir)" -msgstr "Password (repeat)" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 -msgid "Notas" -msgstr "Notes" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 -msgid "Notas sobre la cuenta" -msgstr "Notes about the account" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 -msgid "Permisos" -msgstr "Permissions" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:53 -msgid "Hablitar edición" -msgstr "Enable Edit" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 -msgid "Grupo Principal" -msgstr "Main Group" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Soltar archivos aquí (max. 5) o click para seleccionar" -msgstr "Drop files here (max. 5) or click to select" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 -msgid "Tamaño máximo de archivo" -msgstr "Maximum file size" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 -msgid "Historial" -msgstr "History" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 -msgid "Seleccionar fecha" -msgstr "Select date" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 -msgid "Última Modificación" -msgstr "Last Modification" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 -msgid "Visitas" -msgstr "Visits" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 -msgid "Fecha Alta" -msgstr "Date Added" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 -msgid "Creador" -msgstr "Creator" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Usuarios Secundarios" -msgstr "Secondary Users" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 -msgid "Grupos Secundarios" -msgstr "Secondary Groups" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Fecha Edición" -msgstr "Date Modified" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 -msgid "Editor" -msgstr "Editor" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 -msgid "Restaurar cuenta desde este punto" -msgstr "Restore account from this point" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 -msgid "Copiar Clave en Portapapeles" -msgstr "Copy Password to Clipboard" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 -msgid "Ver Actual" -msgstr "View Current" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:49 #: ../../../modules/web/themes/material-blue/views/_partials/error.inc:14 #: ../../../modules/web/themes/material-blue/views/_partials/error.inc:15 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 msgid "Volver" msgstr "Back" -#: ../../../../inc/themes/material-blue/views/account/actions.inc:146 -msgid "Modificar Cuenta" -msgstr "Edit Account" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 +msgid "Preferencias de usuario" +msgstr "User preferences" -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 -msgid "Solicitar Modificación" -msgstr "Request Modification" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 +msgid "Salir" +msgstr "Sign Out" -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:51 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 -msgid "Guardar" -msgstr "Save" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:53 +msgid "Demo" +msgstr "Demo" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 -msgid "Resultado" -msgstr "Result" +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 +msgid "Indica si la conexión utiliza HTTPS." +msgstr "Tells whether the connection uses HTTPS or not." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 -msgid "Descargar Actual" -msgstr "Download Current" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 -msgid "No hay backups para descargar" -msgstr "There aren't any backups for download" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:52 -#: ../../../config/strings.js.inc:79 -msgid "Ayuda" -msgstr "Help" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 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." +"Las claves de formularios enviados se encriptan mediante PKI, el resto de " +"datos no." msgstr "" -"The backup allows you to save and download either sysPass database or " -"application files and its configuration." +"The passwords sent from the forms are encrypted with PKI, the other data not." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:66 +msgid "Ayuda :: FAQ :: Changelog" +msgstr "Help :: FAQ :: Changelog" + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:70 +msgid "Un proyecto de cygnux.org" +msgstr "A cygnux.org project" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 +msgid "Parámetros especiales" +msgstr "Special parameters" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 msgid "" -"Con este método es posible guardar todos los datos de sysPass en otro lugar " -"o utilizarlos para hacer la aplicación portable." +"Es posible utilizar uno o varios parámetros especiales separados por espacios" msgstr "" -"With this method it's possible to either save all sysPass data in another " -"place or use it to make the application portable." +"You could use either one or several special parameters separated by blank " +"spaces" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 -msgid "Exportar Cuentas" -msgstr "Export Accounts" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 +msgid "Buscar cuentas a las que 'login' tenga acceso" +msgstr "Search for accounts which 'login' has access rights" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -msgid "No hay archivos XML para descargar" -msgstr "There aren't any XML files for download" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 +msgid "Devolver las cuentas en las que 'login' es propietario" +msgstr "Get the accounts in which the user login \"login\" is the owner" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 -msgid "Clave de Exportación" -msgstr "Export Password" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 +msgid "Buscar cuentas a las que 'group_name' tenga acceso" +msgstr "Search for accounts which 'group_name' has access rights" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 -msgid "Clave de Exportación (repetir)" -msgstr "Export Password (repeat)" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 +msgid "Devolver las cuentas con grupo principal 'group_name'" +msgstr "Get the accounts which have the main group name \"group_name\"" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 -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 you to save the accounts and their data in XML " -"format to be imported in another sysPass instance." +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 +msgid "Buscar cuentas con archivos con el nombre 'file_name'" +msgstr "Search for accounts which contains a file with the name 'file_name'" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 -msgid "" -"Las claves de las cuentas son exportadas de forma encriptada para mayor " -"seguridad." -msgstr "" -"The accounts passwords are exported in an excrypted way for better security." +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 +msgid "Buscar cuentas por nombre de cliente" +msgstr "Search for accounts by client name" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 -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 all the encrypted data in " -"the XML file." +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 +msgid "Buscar cuentas por nombre de categoría" +msgstr "Search for accounts by category name" -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 -msgid "Javascript es necesario para el correcto funcionamiento" -msgstr "Javascript is needed in order to run correctly" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 +msgid "Devolver la cuenta con ID" +msgstr "Returns the account for the given ID" -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 -msgid "Nombre de la categoría" -msgstr "Category name" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 +msgid "Buscar cuentas con la clave caducada" +msgstr "Search for accounts with expired password" -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 -msgid "Descripción de la categoría" -msgstr "Category description" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 +msgid "Devolver las cuentas privadas del usuario actual" +msgstr "Get the private accounts for the current user" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 -msgid "Sitio" -msgstr "Site" +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 +msgid "Operador para los parámetros especiales" +msgstr "Operator for special parameters" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 -msgid "Idioma" -msgstr "Language" +#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:17 +msgid "No se encontraron registros" +msgstr "No records found" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 -msgid "" -"Establece el idioma global de la aplicación. Es posible establecer un idioma " -"por usuario en las preferencias." -msgstr "" -"Set the global app language. You can set a per user language at the user " -"preferences." +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:168 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:38 +msgid "Clave (repetir)" +msgstr "Password (repeat)" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 -msgid "Tema Visual" -msgstr "Visual Theme" +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 +msgid "Seleccionar Fecha" +msgstr "Select date" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 -msgid "" -"Establece el tema visual global de la aplicación. Es posible establecer un " -"tema visual por usuario en las preferencias." -msgstr "" -"Set the global app visual theme. You can the user's visual theme on the user " -"preferences." +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:19 +msgid "Histórico" +msgstr "History" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 -msgid "Timeout de sesión (s)" -msgstr "Session timeout (s)" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:22 +msgid "Detalles" +msgstr "Details" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 -msgid "Habilitar log de eventos" -msgstr "Enable event log" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:127 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:200 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:169 +msgid "Notas" +msgstr "Notes" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 -msgid "Guarda las acciones realizadas en la aplicación." -msgstr "Saves the actions done by the application." +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:140 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:142 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:271 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:273 +msgid "Historial" +msgstr "History" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 -msgid "Habilitar depuración" -msgstr "Enable debug" +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:278 +msgid "Seleccionar fecha" +msgstr "Select date" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 -msgid "" -"Muestra información relativa a la configuración de la aplicación y " -"rendimiento." -msgstr "" -"Shows some information about application configuration and performance." +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:160 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 +msgid "Última Modificación" +msgstr "Last Modification" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 -msgid "Modo mantenimiento" -msgstr "Maintenance mode" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:23 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:57 +msgid "Seleccionar Usuarios" +msgstr "Select Users" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 -msgid "" -"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " -"necesario modificar el archivo de configuración." -msgstr "" -"In this mode nobody can log into the application. To disable it, you need to " -"either modify the configuration file or unset on the site tab." +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 +msgid "Ver" +msgstr "View" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 -msgid "Comprobar actualizaciones" -msgstr "Check for updates" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:132 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:136 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 +msgid "Editar" +msgstr "Edit" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 -msgid "" -"Comprobar actualizaciones de la aplicación (sólo para los usuarios " -"administradores)." -msgstr "Check for application updates (only for administrators)." +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 +msgid "Seleccionar Grupos" +msgstr "Select Groups" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 -msgid "Comprobar notificaciones" -msgstr "Check for notices" +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 +msgid "Privada" +msgstr "Private" -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 -msgid "" -"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " -"para los usuarios administradores)." -msgstr "" -"Check if there are either sysPass security or warning notices (only for " -"administrators)." +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:223 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 +msgid "Privada Grupo" +msgstr "Private for Group" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:15 +msgid "Solicitar Modificación de Cuenta" +msgstr "Request Account Modification" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 +msgid "Petición" +msgstr "Request" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:52 +msgid "Descripción de la petición" +msgstr "Request description" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:74 +msgid "Enviar" +msgstr "Send" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 +msgid "Permisos" +msgstr "Permissions" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:218 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 +msgid "Seleccionar Etiquetas" +msgstr "Select Tags" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:26 +msgid "Seleccionar Cuenta" +msgstr "Select Account" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:191 +msgid "Enlace Público" +msgstr "Public Link" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:314 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:316 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:319 +msgid "Enlace Directo" +msgstr "Direct Link" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:24 +msgid "Fecha Alta" +msgstr "Date Added" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:60 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:62 +msgid "Fecha Edición" +msgstr "Date Modified" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:70 +msgid "Editor" +msgstr "Editor" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 +msgid "Fecha de Clave" +msgstr "Password Date" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:37 +msgid "Soltar archivos aquí (max. 5) o click para seleccionar" +msgstr "Drop files here (max. 5) or click to select" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:39 +#, php-format +msgid "Tamaño máximo de archivo: %d MB" +msgstr "Maximum file size: %d MB" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:35 +msgid "Buscar en Wiki" +msgstr "Search in Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:82 +#, php-format +msgid "Abrir enlace a: %s" +msgstr "Open link to: %s" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:109 +msgid "Clave Caducada" +msgstr "Password Expired" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:123 +msgid "Cuenta Privada (Grupo)" +msgstr "Private Account (Group)" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:166 +msgid "Notes" +msgstr "Notes" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 +msgid "Archivos adjuntos" +msgstr "Attachments" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:218 +msgid "Enlace a Wiki" +msgstr "Link to Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:210 +msgid "Ver en Wiki" +msgstr "View at Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 +msgid "Búsqueda global" +msgstr "Global searching" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:83 +msgid "Filtrar Favoritos" +msgstr "Favorites Filtering" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:98 +msgid "Cuentas por página" +msgstr "Accounts per page" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:104 +msgid "Más Filtros" +msgstr "More Filters" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:109 +msgid "Seleccionar Etiqueta" +msgstr "Select Tag" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:22 +msgid "Los datos serán encriptados al guardar" +msgstr "Data will be encrypted after saving" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:27 +msgid "Los datos serán desencriptados al guardar" +msgstr "Data will be unencrypted after saving" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:12 +#, php-format +msgid "La extensión '%s' no está disponible" +msgstr "The '%s' extension is unavailable" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:16 +msgid "Esta extensión es necesaria para mostrar las claves como imágenes" +msgstr "This extension is needed to display passwords as images" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:30 +msgid "Búsqueda" +msgstr "Searching" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:36 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:56 +msgid "Resultados por página" +msgstr "Results per page" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:41 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:61 +msgid "Número de resultados por página a mostrar, al realizar una búsqueda." +msgstr "Number of results per page to show when doing searches." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:52 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:72 +msgid "Número de resultados por página" +msgstr "Results per page" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 +msgid "Caducidad clave cuentas" +msgstr "Accounts password expiry" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:71 +msgid "Habilita la caducidad de la clave de cuentas." +msgstr "Enables the accounts password expiry date." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:79 +msgid "Tiempo caducidad clave" +msgstr "Password expiry time" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:84 +msgid "Número de días para la caducidad de la clave de cuenta." +msgstr "Number of days for the account expiry date." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 +msgid "Tiempo caducidad (días)" +msgstr "Expire time (days)" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:112 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:90 msgid "Nombre de cuenta como enlace" msgstr "Account name as link" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:113 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:92 msgid "" "Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " "de la cuenta." msgstr "Enables the account name as a link to account details." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 -msgid "Gestión de archivos" -msgstr "Files management" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 -msgid "Habilita la subida/descarga de archivos para las cuentas." -msgstr "Enables the uploading and downloading of accounts files." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:128 msgid "Búsquedas globales" msgstr "Global searches" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:129 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." @@ -3305,20 +2806,118 @@ msgstr "" "Allows the users to do searches that includes all accounts, if they don't " "have permission they can't view the accounts details." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:144 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 +msgid "Imagen para mostrar clave" +msgstr "Image to show password" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 +msgid "Generar una imagen con el texto de la clave de la cuenta." +msgstr "Generate an image with a text of the account password." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 +msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." +msgstr "" +"Useful for environments where copying a password to clipboard is a security " +"risk." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:164 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:158 +msgid "Resultados en Tarjetas" +msgstr "Results like Cards" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:166 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:160 +msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." +msgstr "Enables to show account's search results on a card like format." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:182 +msgid "Acceso Grupos Secundarios" +msgstr "Secondary Groups Access" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:184 +msgid "" +"Habilita el acceso a los usuarios que estén incluidos en los grupos " +"secundarios." +msgstr "Grants access to the users that are included in the secondary groups." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:186 +msgid "" +"Por defecto el usuario de un grupo secundario es permitido si el grupo " +"secundario está establecido como el primario del usuario." +msgstr "" +"By default, the user in a secondary group is granted if the secondary group " +"is set as the user's main group." + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:197 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 +#: ../../../config/actions.xml:73 +msgid "Enlaces Públicos" +msgstr "Public Links" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:215 +msgid "Habilitar Enlaces Públicos" +msgstr "Enable Public Links" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:217 +msgid "" +"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " +"una cuenta." +msgstr "" +"Enables the ability to create public links to view an account's details" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:219 +msgid "" +"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." +msgstr "The linked accounts will be visible by anyone that have the link." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:221 +msgid "" +"Para crear enlaces, los usuarios tienen que tener activada la opción en su " +"perfl." +msgstr "" +"To create links, the users must have activated the option in their profiles." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:237 +msgid "Usar imagen para clave" +msgstr "Use an image for password" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:239 +msgid "La clave de la cuenta es visualizada como una imagen." +msgstr "The account password is shown as image." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:248 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:257 +msgid "Tiempo de caducidad" +msgstr "Expire time" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:263 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:272 +msgid "Número máximo de visitas" +msgstr "Maximum visits" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:298 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 +msgid "Gestión de archivos" +msgstr "Files management" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:299 +msgid "Habilita la subida/descarga de archivos para las cuentas." +msgstr "Enables the uploading and downloading of accounts files." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:307 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:320 msgid "Extensiones de archivos permitidas" msgstr "Allowed file extensions" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 msgid "Extensiones permitidas para la subida de archivos." msgstr "Allowed file extensions for uploading." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:267 -msgid "Se permite un máximo de 4 caracteres." -msgstr "Max 4 characters allowed." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:315 msgid "" "Escribir extensión y pulsar intro para añadir. Es necesario guardar la " "configuración." @@ -3326,130 +2925,182 @@ msgstr "" "Write the extension and press enter to add. Remember to save the " "configuration." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:328 +msgid "Tamaño máximo de archivo" +msgstr "Maximum file size" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:333 msgid "Establece el tamaño máximo para subir archivos." msgstr "Set the maximum file size for uploading." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:337 msgid "El máximo absuluto es de 16MB." msgstr "The absolute maximum is 16MB." -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 -msgid "Resultados por página" -msgstr "Results per page" +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:348 +msgid "Tamaño máximo de archivo en kilobytes" +msgstr "Maximum file size in kilobytes" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 -msgid "Número de resultados por página a mostrar, al realizar una búsqueda." -msgstr "Number of results per page to show when doing searches." +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:16 +msgid "" +"Esta extensión es necesaria para generar los archivos de copia de seguridad " +"de la aplicación" +msgstr "This extension is needed to build the application's backup files" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 -msgid "Resultados en Tarjetas" -msgstr "Results like Cards" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 +msgid "Resultado" +msgstr "Result" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 -msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." -msgstr "Enables to show account's search results on a card like format." +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:123 +msgid "Descargar Actual" +msgstr "Download Current" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 -msgid "Imagen para mostrar clave" -msgstr "Image to show password" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:51 +msgid "Copia BBDD" +msgstr "DB Backup" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 -msgid "Generar una imagen con el texto de la clave de la cuenta." -msgstr "Generate an image with a text of the account password." +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:58 +msgid "Copia sysPass" +msgstr "sysPass Backup" -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 -msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:80 +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 "" -"Useful for environments where copying a password to clipboard is a security " -"risk." +"The backup allows you to save and download either sysPass database or " +"application files and its configuration." -#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 -msgid "Nombre del cliente" -msgstr "Client name" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:82 +msgid "" +"Con este método es posible guardar todos los datos de sysPass en otro lugar " +"o utilizarlos para hacer la aplicación portable." +msgstr "" +"With this method it's possible to either save all sysPass data in another " +"place or use it to make the application portable." -#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 -msgid "Descripción del cliente" -msgstr "Client description" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:185 +msgid "Exportar Cuentas" +msgstr "Export Accounts" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 -msgid "Texto Ayuda" -msgstr "Help Text" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:139 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:147 +msgid "Clave de Exportación" +msgstr "Export Password" -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 -msgid "Obligatorio" -msgstr "Required" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:161 +msgid "Clave de Exportación (repetir)" +msgstr "Export Password (repeat)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:187 +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 you to save the accounts and their data in XML " +"format to be imported in another sysPass instance." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:189 +msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." +msgstr "The exported items are accounts, clients, categories and tags." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:191 +msgid "" +"Las claves de las cuentas son exportadas de forma encriptada para mayor " +"seguridad." +msgstr "" +"The accounts passwords are exported in an excrypted way for better security." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:193 +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 all the encrypted data in " +"the XML file." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:17 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:167 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:50 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:56 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:57 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:102 msgid "Clave Maestra" msgstr "Master Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:27 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:201 msgid "Último cambio" msgstr "Last change" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:35 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:43 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:142 msgid "Clave Maestra actual" msgstr "Current Master Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:49 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:57 msgid "Nueva Clave Maestra" msgstr "New Master Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:63 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:71 msgid "Nueva Clave Maestra (repetir)" msgstr "New Master Password (repeat)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 -msgid "No modificar cuentas" -msgstr "Do not modify accounts" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 -msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" -msgstr "Sets a new Master Password without re-encrypting the accounts." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 -msgid "Confirmar cambio" -msgstr "Confirm change" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:80 msgid "Guarde la nueva clave en un lugar seguro." msgstr "You should save the new password on a secure place" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:84 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "All accounts passwords will be encrypted again." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:88 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "Users will need to enter the new Master Password." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:92 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:130 +#, php-format +msgid "" +"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." +msgstr "It will be updated %s accounts. This process could take some time." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:109 +msgid "No modificar cuentas" +msgstr "Do not modify accounts" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:111 +msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" +msgstr "Sets a new Master Password without re-encrypting the accounts." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:127 +msgid "Confirmar cambio" +msgstr "Confirm change" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:129 +msgid "" +"Confirmar el cambio de clave maestra después de haber leído las advertencias " +"anteriores." +msgstr "" +"Confirm the master password change after you have been read all the above " +"warnings." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:155 msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " "sysPass para mantenerlas seguras." @@ -3457,7 +3108,7 @@ msgstr "" "The Master Password is used to encrypt sysPass accounts passwords and keep " "them safe." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:157 msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " "que incluya números, letras y símbolos." @@ -3465,27 +3116,51 @@ msgstr "" "It's advisable to change it from time to time and use a complex password " "that includes numbers, letters and symbols." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:159 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#, php-format +msgid "Para más información consulte: %s" +msgstr "You could get more info on: %s" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:169 +msgid "Actualizar hash de clave maestra" +msgstr "Update master password hash" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:189 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:323 msgid "Clave Temporal" msgstr "Temporary Password" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:203 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:218 msgid "No generada" msgstr "Not generated" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:211 msgid "Válido hasta" msgstr "Valid until" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:227 +msgid "Intentos" +msgstr "Attempts" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:244 msgid "Validez (s)" msgstr "Life (s)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:263 +msgid "Enviar correo" +msgstr "Send email" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:265 +msgid "" +"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." +msgstr "Sends an email to all users or only to those whose group is selected." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:325 msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " "necesitan introducirla al iniciar la sesión, así no es necesario facilitar " @@ -3495,142 +3170,320 @@ msgstr "" "to enter it during login. By this way there is no need to tell them the real " "Master Password." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:332 msgid "Generar" msgstr "Generate" -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 -msgid "No se encontraron registros" -msgstr "No records found" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:12 +msgid "Autentificación" +msgstr "Authentication" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 -msgid "Fecha / Hora" -msgstr "Date / Time" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:30 +msgid "Usar Auth Basic" +msgstr "Use Auth Basic" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 -msgid "Evento" -msgstr "Event" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:31 +msgid "Usar Auth Basic para autorizar los accesos a la aplicación." +msgstr "Use Auth Basic for authorizing the accesses to the application" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 -msgid "IP" -msgstr "IP" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:45 +msgid "Usar Auth Basic SSO" +msgstr "Use Auth Basic SSO" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:69 -msgid "Primera página" -msgstr "First page" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:46 +msgid "Usar auto-login con Auth Basic." +msgstr "Use auto-login through Auth Basic" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:67 -msgid "Página anterior" -msgstr "Previous page" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:54 +msgid "Dominio" +msgstr "Domain" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:68 -msgid "Página siguiente" -msgstr "Next page" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:70 -msgid "Última página" -msgstr "Last page" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 -#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 -msgid "Ver Archivo" -msgstr "View File" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 -msgid "Indica si la conexión utiliza HTTPS." -msgstr "Tells whether the connection uses HTTPS or not." - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:59 msgid "" -"Las claves de formularios enviados se encriptan mediante PKI, el resto de " -"datos no." +"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " +"el de Auth Basic." msgstr "" -"The passwords sent from the forms are encrypted with PKI, the other data not." +"The domain will be added to the sysPass user name for checking against the " +"Auth Basic one." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 -msgid "Ayuda :: FAQ :: Changelog" -msgstr "Help :: FAQ :: Changelog" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:69 +msgid "Nombre de dominio" +msgstr "Domain name" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 -msgid "Un proyecto de cygnux.org" -msgstr "A cygnux.org project" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 -msgid "Nombre del grupo" -msgstr "Group name" - -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 -msgid "Descripción del grupo" -msgstr "Group description" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 -msgid "Importar CSV/XML" -msgstr "CSV/XML Import" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 -msgid "Usuario por Defecto" -msgstr "Default User" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 -msgid "Define el usuario por defecto para las cuentas importadas." -msgstr "Sets the default user for the accounts imported." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:249 msgid "Grupo por Defecto" msgstr "Default Group" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:80 +msgid "" +"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Sets the default users group for newly SSO users" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:264 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:274 +msgid "Perfil por Defecto" +msgstr "Default Profile" + +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:105 +msgid "" +"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Sets the default profile for the newly created SSO users." + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:98 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:176 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:72 +msgid "Eventos" +msgstr "Events" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:30 +msgid "Habilitar log de eventos" +msgstr "Enable event log" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:31 +msgid "Guarda las acciones realizadas en la aplicación." +msgstr "Saves the actions done by the application." + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:45 +msgid "Habilitar Syslog" +msgstr "Enable Syslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:60 +msgid "Habilitar Syslog Remoto" +msgstr "Enable Remote Syslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:94 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:66 +msgid "Servidor" +msgstr "Server" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:78 +msgid "Nombre o dirección IP" +msgstr "Hostname or IP address" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:84 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:79 +msgid "Puerto" +msgstr "Port" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:12 +msgid "Proxy" +msgstr "Proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:30 +msgid "Usar Proxy" +msgstr "Use Proxy" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:31 +msgid "Usar proxy para comprobación de actualizaciones y notificaciones." +msgstr "Use a proxy server for checking out for updates and notifications." + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:47 +msgid "Servidor proxy" +msgstr "Proxy server" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:61 +msgid "Puerto del servidor proxy" +msgstr "Proxy server port" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:75 +msgid "Usuario del servidor proxy" +msgstr "Proxy server user" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:89 +msgid "Clave del servidor proxy" +msgstr "Proxy server password" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:16 +msgid "" +"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" +msgstr "This extension is needed to check for sysPass updates and notices" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:24 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:15 +msgid "Sitio" +msgstr "Site" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:137 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:139 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:28 +msgid "Idioma" +msgstr "Language" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:35 +msgid "" +"Establece el idioma global de la aplicación. Es posible establecer un idioma " +"por usuario en las preferencias." +msgstr "" +"Set the global app language. You can set a per user language at the user " +"preferences." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:39 +msgid "" +"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." +"com/join/project/fmlsBuugyv" +msgstr "" +"To improve/add the translations, you can get involved at https://poeditor." +"com/join/project/fmlsBuugyv" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:67 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:42 +msgid "Tema Visual" +msgstr "Visual Theme" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:62 +msgid "" +"Establece el tema visual global de la aplicación. Es posible establecer un " +"tema visual por usuario en las preferencias." +msgstr "" +"Set the global app visual theme. You can the user's visual theme on the user " +"preferences." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:89 +msgid "Timeout de sesión (s)" +msgstr "Session timeout (s)" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:107 +msgid "Forzar HTTPS" +msgstr "Force HTTPS" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:108 +msgid "Fuerza para que todas las conexiones sean a través de HTTPS." +msgstr "It forces the use of HTTPS on all the connections" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:122 +msgid "Habilitar depuración" +msgstr "Enable debug" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:123 +msgid "" +"Muestra información relativa a la configuración de la aplicación y " +"rendimiento." +msgstr "" +"Shows some information about application configuration and performance." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:137 +msgid "Modo mantenimiento" +msgstr "Maintenance mode" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:138 +msgid "" +"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " +"necesario modificar el archivo de configuración." +msgstr "" +"In this mode nobody can log into the application. To disable it, you need to " +"either modify the configuration file or unset on the site tab." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:152 +msgid "Comprobar actualizaciones" +msgstr "Check for updates" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:153 +msgid "" +"Comprobar actualizaciones de la aplicación (sólo para los usuarios " +"administradores)." +msgstr "Check for application updates (only for administrators)." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:167 +msgid "Comprobar notificaciones" +msgstr "Check for notices" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:168 +msgid "" +"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " +"para los usuarios administradores)." +msgstr "" +"Check if there are either sysPass security or warning notices (only for " +"administrators)." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 +msgid "Encriptar Sesión" +msgstr "Encrypt Session" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:184 +msgid "Encriptar los datos de la sesión de PHP." +msgstr "Encrypt PHP session data" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:185 +msgid "" +"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " +"datos almacenados no serán legibles." +msgstr "" +"This feature increases the PHP sessions security, because the stored data " +"won't be readable." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +msgid "Importar CSV/XML" +msgstr "CSV/XML Import" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:28 +msgid "Usuario por Defecto" +msgstr "Default User" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:23 +msgid "Define el usuario por defecto para las cuentas importadas." +msgstr "Sets the default user for the accounts imported." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:50 msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Sets the default group for the accounts imported." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 -msgid "Clave de Importación" -msgstr "Import Password" +#: ../../../modules/web/themes/material-blue/views/config/import.inc:72 +msgid "Archivo" +msgstr "File" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 -msgid "Delimitador CSV" -msgstr "CSV delimiter" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:75 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Drop files here or click to select" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " "archivos XML y CSV." msgstr "" "Allows to import the Accounts, Categories and Clients from XML or CSV files." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "The supported XML file formats are: sysPass, KeePass and KeePassX" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " "flecha." msgstr "Drag & Drop the file into the import zone or click over the arrow." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " "KeePass o KeePassX y la categoría igual al nombre de los grupos." @@ -3638,730 +3491,284 @@ msgstr "" "For KeePass or KeePassX files, the client name will be KeePass or KeePassX " "and the category name like groups names." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "The CSV import file requires the following format:" #: ../../../modules/web/themes/material-blue/views/config/import.inc:115 msgid "" +"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" +"\"notas\"" +msgstr "" +"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" +"\"notes\"" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:117 +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 client or category do not exist they will be created " "automatically." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:125 +msgid "XML" +msgstr "XML" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:131 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:146 +msgid "Clave de Importación" +msgstr "Import Password" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:136 +msgid "Sólo es necesaria para archivos XML de sysPass encriptados." +msgstr "It's only needed for sysPass XML files that have been encrypted." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:157 +msgid "" +"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " +"la actual." +msgstr "" +"It's only needed for sysPass XML files that have been encrypted with a " +"different master password from the current one." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:174 +msgid "CSV" +msgstr "CSV" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:195 +msgid "Delimitador CSV" +msgstr "CSV delimiter" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:185 +msgid "Sólo es necesario para archivos CSV." +msgstr "It's only needed for CSV files." + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 msgid "Información de la Aplicación" msgstr "Application Information" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:23 msgid "Versión sysPass" msgstr "sysPass version" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:33 msgid "Base de Datos" msgstr "Database" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:47 msgid "PHP" msgstr "PHP" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:49 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:34 +msgid "Versión" +msgstr "Version" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:51 msgid "Extensiones" msgstr "Extensions" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 +msgid "Extensiones no disponibles" +msgstr "Unavailable extensions" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:59 msgid "Memoria Usada" msgstr "Used Memory" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:142 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:189 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 -msgid "Servidor" -msgstr "Server" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Tasa de descarga" +msgstr "Download rate" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 -msgid "Login del usuario administrador de sysPass" -msgstr "sysPass administrator's login" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:66 +msgid "OP Cache" +msgstr "OP Cache" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 -msgid "Configurar BBDD" -msgstr "DB Configuration" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:88 +msgid "Copia de Configuración" +msgstr "Configuration Backup" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 -msgid "Nombre de la base de datos para sysPass" -msgstr "sysPass database name" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:100 +msgid "Indica si el idioma se encuentra disponible" +msgstr "Tells whether the language is available or not." -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 -msgid "Modo Hosting" -msgstr "Hosting Mode" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:104 +msgid "" +"Si no está instalado, es necesario instalar las locales en el sistema " +"operativo. Más información en Wiki." +msgstr "" +"If it is not installed, you would need install the right operating system " +"locales. More info at Wiki." -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 -msgid "No crea ni verifica los permisos del usuario sobre la BBDD" -msgstr "It does not create or verify the user's permissions on the DB" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:116 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:126 +msgid "Sesión Encriptada" +msgstr "Encrypted Session" -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 -msgid "Instalar" -msgstr "Install" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:121 +msgid "Indica si los datos de la sesión están encriptados en el servidor" +msgstr "Tells whether the session data are encrypted in the server or not" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "Sí" +msgstr "Yes" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "No" +msgstr "No" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:136 +msgid "Plugins Cargados" +msgstr "Loaded Plugins" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:16 +msgid "Esta extensión es necesaria conectar con el servidor de LDAP" +msgstr "This extension is needed to connect to the LDAP server" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:46 msgid "Habilitar LDAP" msgstr "Enable LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:48 msgid "Habilita de autentificación mediante servidor LDAP." msgstr "Enables authentication against an LDAP server." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:50 msgid "Este método utilizará MySQL en caso de fallo." msgstr "This method will use MySQL as fallback." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:65 +msgid "Active Directory" +msgstr "Active Directory" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:67 +msgid "Habilita el modo de conexión con LDAP de Active Directory." +msgstr "Enables Active Directory LDAP connection mode." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:84 +msgid "Habilita la conexión mediante TLS." +msgstr "Enables the connection over TLS" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:99 msgid "Nombre o dirección IP del servidor de LDAP." msgstr "Hostname or IP address of the LDAP server." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:185 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:219 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:131 msgid "Ejemplos:" msgstr "Examples:" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:125 msgid "Usuario de conexión" msgstr "Bind User" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:130 msgid "Usuario para conectar con el servicio de LDAP." msgstr "User to connect to the LDAP service." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:155 msgid "Clave de conexión" msgstr "Bind Password" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:160 +msgid "Clave del usuario de conexión a LDAP." +msgstr "LDAP connection user password" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:176 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:200 msgid "Base de búsqueda" msgstr "Search base" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:181 msgid "Base en la que realizar la búsqueda de usuarios de LDAP." msgstr "LDAP base to perform the LDAP users searching." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:211 msgid "" "Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." msgstr "LDAP group that the user must belong for granting to log in." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:215 msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." msgstr "This group needs to be placed in the LDAP search base." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:244 msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Sets the default users group for newly LDAP users" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 -msgid "Perfil por Defecto" -msgstr "Default Profile" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:269 msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Sets the default profile for the newly created LDAP users." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 -msgid "Active Directory" -msgstr "Active Directory" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:321 +msgid "Importación" +msgstr "Import" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 -msgid "Habilita el modo de conexión con LDAP de Active Directory." -msgstr "Enables Active Directory LDAP connection mode." +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:337 +msgid "Atributo Login" +msgstr "Login Attribute" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:57 -msgid "Comprobar" -msgstr "Check" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:332 +msgid "" +"Define el atributo a utilizar para el login del usuario en la importación." +msgstr "Defines the attribute for the user's login when importing." -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 -msgid "¿Olvidó su clave?" -msgstr "Forgot password?" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:350 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:360 +msgid "Atributo Nombre" +msgstr "Name Attribute" -#: ../../../modules/web/Controllers/UpgradeController.php:92 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 -msgid "Aplicación actualizada correctamente" -msgstr "Application successfully updated" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:355 +msgid "" +"Define el atributo a utilizar para el nombre del usuario en la importación." +msgstr "Defines the attribute for the user's name when importing." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:385 +msgid "Importar Grupos" +msgstr "Import Groups" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:394 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:404 +msgid "Atributo Nombre Grupo" +msgstr "Group Name Attribute" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:399 +msgid "" +"Define el atributo a utilizar para el nombre del grupo en la importación." +msgstr "Defines the attribute for the user group name when importing." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:415 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:429 +msgid "Filtro" +msgstr "Filter" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:420 +msgid "Filtro para importar usuarios o grupos de LDAP." +msgstr "Filter for importing LDAP users or groups." + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:34 msgid "Habilitar notificaciones de correo" msgstr "Enable email notifications" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 -msgid "Puerto" -msgstr "Port" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 -msgid "Habilitar Autentificación" -msgstr "Enable Authentication" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 -msgid "Deshabilitada" -msgstr "Disabled" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 -msgid "Dirección de correo de envío" -msgstr "Recipient email address" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 msgid "Habilitar peticiones por correo" msgstr "Enable requests by email" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 -msgid "Más Acciones" -msgstr "More Actions" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 -msgid "Solicitud de Cambio de Clave" -msgstr "Request Password Change" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 -msgid "Email del Usuario" -msgstr "User's Email" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 -msgid "Volver a iniciar sesión" -msgstr "Go back to login" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 -msgid "Solicitar" -msgstr "Request" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 -msgid "Cambiar" -msgstr "Change" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:37 -msgid "Cambiar Clave" -msgstr "Change Password" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 -msgid "Ordenar resultados por visitas" -msgstr "Sort search results by views" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 -msgid "" -"Ordena los resultados de búsqueda por el número de visitas de las cuentas." -msgstr "Sorts accounts search results by the number of accounts views" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 -msgid "Barra de navegación superior" -msgstr "Navigation bar on top" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 -msgid "Mostrar una barra de navegación superior en las búsquedas." -msgstr "Shows a navigation bar on top of the search results." - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 -msgid "Mostrar Acciones Ocultas" -msgstr "Show Hidden Actions" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 -msgid "" -"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." -msgstr "Always show the hidden actions on the accounts search page." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 -msgid "Nombre del perfil" -msgstr "Profile name" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 -msgid "Ver detalles de cuenta" -msgstr "View account details" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 -msgid "Ver" -msgstr "View" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 -msgid "Ver clave de cuenta" -msgstr "View account password" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 -msgid "Ver historial de cuenta" -msgstr "View account history" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 -msgid "Editar cuenta" -msgstr "Edit account" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 -msgid "Editar" -msgstr "Edit" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 -msgid "Editar clave de cuenta" -msgstr "Edit account password" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 -msgid "Editar Clave" -msgstr "Edit Password" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:32 -msgid "Añadir" -msgstr "Add" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 -msgid "Ver archivos de cuenta" -msgstr "View account files" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 -msgid "Backup" -msgstr "Backup" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 -msgid "Realizar importación de cuentas" -msgstr "Make accounts import" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 -msgid "Gestión" -msgstr "Management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 -msgid "Gestión de usuarios" -msgstr "Users management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 -msgid "Gestión de grupos" -msgstr "Groups management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 -msgid "Gestión de perfiles" -msgstr "Profiles management" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 -msgid "Perfiles" -msgstr "Profiles" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 -msgid "Gestión de categorías" -msgstr "Categories management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 -msgid "Gestión de clientes" -msgstr "Customers management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 -msgid "Gestión de campos personalizados" -msgstr "Custom fields management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 -msgid "Gestión de autorizaciones API" -msgstr "API authorizations management" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 -msgid "Autorizaciones API" -msgstr "API Authorizations" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 -msgid "Otros" -msgstr "Others" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 -msgid "Ver log de eventos" -msgstr "View event log" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 -msgid "Log de Eventos" -msgstr "Event Log" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 -msgid "Usado por" -msgstr "Used by" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 -msgid "Solicitar Modificación de Cuenta" -msgstr "Request Account Modification" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 -msgid "Petición" -msgstr "Request" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 -msgid "Descripción de la petición" -msgstr "Request description" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 -msgid "Atrás" -msgstr "Back" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 -msgid "Enviar" -msgstr "Send" - -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 -msgid "Filtro ON" -msgstr "Filter ON" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 -msgid "Buscar en Wiki" -msgstr "Search in Wiki" - -#: ../../../../inc/themes/material-blue/views/accountsearch/rows.inc:71 -msgid "Abrir enlace a" -msgstr "Open link to" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 -msgid "Archivos adjuntos" -msgstr "Attachments" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 -msgid "Enlace a Wiki" -msgstr "Link to Wiki" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:53 -msgid "Limpiar" -msgstr "Clear" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 -#: ../../../modules/api/Controllers/Help/TagHelp.php:77 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 -msgid "Texto a buscar" -msgstr "Text to search" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:23 -msgid "Parámetros especiales:" -msgstr "Special parameters" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 -msgid "Buscar cuentas a las que 'login' tenga acceso" -msgstr "Search for accounts which 'login' has access rights" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 -msgid "Buscar cuentas a las que 'group_name' tenga acceso" -msgstr "Search for accounts which 'group_name' has access rights" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 -msgid "Buscar cuentas con archivos con el nombre 'file_name'" -msgstr "Search for accounts which contains a file with the name 'file_name'" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 -msgid "Búsqueda global" -msgstr "Global searching" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 -msgid "Cuentas por página" -msgstr "Accounts per page" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:76 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:149 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:152 -msgid "Salir" -msgstr "Sign Out" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 -msgid "Opciones" -msgstr "Options" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 -msgid "Regenerar Autorización" -msgstr "Refresh Authorization" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 -msgid "Token" -msgstr "Token" - -#: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 -msgid "Actualizado" -msgstr "Updated" - -#: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 -msgid "Error al comprobar actualizaciones" -msgstr "Error while checking for updates" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 -msgid "Actualización de BBDD" -msgstr "DB Update" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 -msgid "Código de Seguridad" -msgstr "Security Code" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 -msgid "Iniciar Actualización" -msgstr "Start Update" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 -msgid "Nombre de usuario completo" -msgstr "Full username" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 -msgid "Login de inicio de sesión" -msgstr "Session login" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 -msgid "Dirección de correo" -msgstr "Email address" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 -msgid "Administrador de la aplicación" -msgstr "Application administrator" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 -msgid "Administrador de cuentas" -msgstr "Accounts administrator" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 -msgid "Forzar cambio de clave" -msgstr "Force password change" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 -msgid "Entradas" -msgstr "Entries" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 -msgid "Último Acceso" -msgstr "Last Access" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 -msgid "Fecha Clave Maestra" -msgstr "Master Password Date" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 -msgid "Habilitar enlaces Wiki" -msgstr "Enable Wiki links" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 -msgid "" -"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " -"la búsqueda." -msgstr "" -"Enables the option to add a link to search for results in an external Wiki." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 -msgid "URL de búsqueda Wiki" -msgstr "Wiki search URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 -msgid "URL que utiliza la wiki para realizar una búsqueda de una página." -msgstr "URL that the Wiki uses for making an entry searching." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 -msgid "Como parámetro se utiliza el nombre del cliente." -msgstr "The client name is used as parameter." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 -msgid "Ejemplo:" -msgstr "Example:" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 -msgid "URL de página en Wiki" -msgstr "Wiki page URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 -msgid "URL que utiliza la wiki para acceder a los detalles de una página." -msgstr "URL that the Wiki uses for accessing to the entry details." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 -msgid "" -"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " -"de la Wiki." -msgstr "The account name is used as parameter of Wiki search variable." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 -msgid "Prefijo para nombre de cuenta" -msgstr "Account name prefix" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 -msgid "" -"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." -msgstr "Prefix to determine which accounts have a link to the Wiki." - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 -msgid "Histórico" -msgstr "History" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:54 -msgid "Realizar" -msgstr "Perform" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 -msgid "Forzar HTTPS" -msgstr "Force HTTPS" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 -msgid "Fuerza para que todas las conexiones sean a través de HTTPS." -msgstr "It forces the use of HTTPS on all the connections" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 -msgid "Número de resultados por página" -msgstr "Results per page" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 -msgid "Proxy" -msgstr "Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 -msgid "Usar Proxy" -msgstr "Use Proxy" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 -msgid "Servidor proxy" -msgstr "Proxy server" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 -msgid "Puerto del servidor proxy" -msgstr "Proxy server port" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 -msgid "Usuario del servidor proxy" -msgstr "Proxy server user" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 -msgid "Clave del servidor proxy" -msgstr "Proxy server password" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 -msgid "Nombre del campo" -msgstr "Field name" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 -msgid "Ayuda del campo" -msgstr "Field help" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 -msgid "Intentos" -msgstr "Attempts" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:69 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:131 -msgid "Preferencias de usuario" -msgstr "User preferences" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 -msgid "Usuario administrador de sysPass" -msgstr "sysPass admin user" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 -msgid "Usuario acceso BBDD" -msgstr "DB access user" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 -msgid "Usuario con permisos de administrador de MySQL" -msgstr "An user with MySQL admin rights" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 -msgid "Clave acceso BBDD" -msgstr "DB access password" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 -msgid "Nombre BBDD para sysPass" -msgstr "sysPass database name" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 -msgid "Servidor BBDD para sysPass" -msgstr "sysPass database server" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 -msgid "Nombre del servidor para instalar la base de datos de sysPass" -msgstr "Server name to install the sysPass database" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 -msgid "Clave del usuario de conexión a LDAP." -msgstr "LDAP connection user password" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:50 msgid "" "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " "cuentas sin permisos." @@ -4369,557 +3776,848 @@ msgstr "" "Allows users to request for either modifications to existing accounts or " "access to accounts in which they have no rights." -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 -msgid "Crear nueva cuenta" -msgstr "Add a new account" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:97 +msgid "Habilitar Autentificación" +msgstr "Enable Authentication" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 -msgid "Crear" -msgstr "Add" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:135 +msgid "Seguridad" +msgstr "Security" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 -msgid "Eliminar cuenta" -msgstr "Remove account" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:138 +msgid "Deshabilitada" +msgstr "Disabled" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:36 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:156 +msgid "Dirección de correo de envío" +msgstr "Recipient email address" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:165 +msgid "Destinatarios" +msgstr "Recipients" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:16 +msgid "Esta extensión es necesaria conectar con DokuWiki" +msgstr "This extension is needed to connect with DokuWiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:47 +msgid "Habilitar enlaces Wiki" +msgstr "Enable Wiki links" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:48 +msgid "" +"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " +"la búsqueda." +msgstr "" +"Enables the option to add a link to search for results in an external Wiki." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:56 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:83 +msgid "URL de búsqueda Wiki" +msgstr "Wiki search URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:61 +msgid "URL que utiliza la wiki para realizar una búsqueda de una página." +msgstr "URL that the Wiki uses for making an entry searching." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:65 +msgid "Como parámetro se utiliza el nombre del cliente." +msgstr "The client name is used as parameter." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:69 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:102 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:187 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:214 +msgid "Ejemplo:" +msgstr "Example:" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:116 +msgid "URL de página en Wiki" +msgstr "Wiki page URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:94 +msgid "URL que utiliza la wiki para acceder a los detalles de una página." +msgstr "URL that the Wiki uses for accessing to the entry details." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:98 +msgid "" +"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " +"de la Wiki." +msgstr "The account name is used as parameter of Wiki search variable." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:136 +msgid "Prefijo para nombre de cuenta" +msgstr "Account name prefix" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:127 +msgid "" +"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." +msgstr "Prefix to determine which accounts have a link to the Wiki." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:146 +msgid "DokuWiki API" +msgstr "DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:164 +msgid "Habilitar API de DokuWiki" +msgstr "Enable DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:166 +msgid "" +"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." +msgstr "Enables DokuWiki XML-RPC API for Wiki links." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:168 +msgid "" +"Para que esta característica funcione, es necesario habilitar los enlaces " +"Wiki para el filtrado de cuentas." +msgstr "" +"In order to get this feature working, you should enable Wiki links for " +"accounts filtering" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:199 +msgid "URL API" +msgstr "API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:183 +msgid "URL de la API de DokuWiki." +msgstr "DokuWiki API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:205 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:227 +msgid "URL Base" +msgstr "Base URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:210 +msgid "URL base de DokuWiki." +msgstr "DokuWiki base URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:238 +msgid "Usuario para conectar a la API de DokuWiki." +msgstr "User for connecting to the DokuWiki API." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:282 +msgid "Namespace" +msgstr "Namespace" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:271 +msgid "Namespace utilizado para buscar las páginas." +msgstr "Namespace used to search pages." + +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:170 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:172 +msgid "Instalar" +msgstr "Install" + +#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 +msgid "Filtro ON" +msgstr "Filter ON" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:11 +#, php-format +msgid "Instalación %s" +msgstr "Installation %s" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:21 +msgid "Admin de sysPass" +msgstr "sysPass Admin" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:29 +msgid "Usuario administrador de sysPass" +msgstr "sysPass admin user" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:37 +msgid "Login del usuario administrador de sysPass" +msgstr "sysPass administrator's login" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:69 +msgid "Configurar BBDD" +msgstr "DB Configuration" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:79 +msgid "Usuario acceso BBDD" +msgstr "DB access user" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:87 +msgid "Usuario con permisos de administrador de MySQL" +msgstr "An user with MySQL admin rights" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:95 +msgid "Clave acceso BBDD" +msgstr "DB access password" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:104 +msgid "Nombre BBDD para sysPass" +msgstr "sysPass database name" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:112 +msgid "Nombre de la base de datos para sysPass" +msgstr "sysPass database name" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:121 +msgid "Servidor BBDD para sysPass" +msgstr "sysPass database server" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:129 +msgid "Nombre del servidor para instalar la base de datos de sysPass" +msgstr "Server name to install the sysPass database" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:149 +msgid "Modo Hosting" +msgstr "Hosting Mode" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:156 +msgid "No crea ni verifica los permisos del usuario sobre la BBDD" +msgstr "It does not create or verify the user's permissions on the DB" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 +msgid "Otros" +msgstr "Others" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 +msgid "Creador" +msgstr "Creator" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 msgid "Eliminar" msgstr "Delete" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 +msgid "Eliminar Historial" +msgstr "Delete History" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 +msgid "Opciones" +msgstr "Options" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 +msgid "Regenerar Autorización" +msgstr "Refresh Authorization" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 +msgid "Token" +msgstr "Token" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:54 +msgid "Indica si el cliente es visible para todos los usuarios." +msgstr "Sets whether the client is visible by all users" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:57 +msgid "" +"Por defecto los clientes asignados a cuentas sólo son visibles para los " +"usuarios con acceso a las cuentas." +msgstr "" +"By default, the clients assigned to accounts only will be visible to users " +"who are granted to access to the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 +msgid "Nombre del campo" +msgstr "Field name" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 +msgid "Texto Ayuda" +msgstr "Help Text" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 +msgid "Ayuda del campo" +msgstr "Field help" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 +msgid "Obligatorio" +msgstr "Required" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 +msgid "Puntuación" +msgstr "Score" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 +msgid "Expresión Regular" +msgstr "Regular Expression" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 +msgid "Incluir Minúsculas" +msgstr "Include Lowercase" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 +msgid "Las cuentas sólo serán visibles por el usuario." +msgstr "Accounts will be only visible by the user." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 +msgid "Los administradores no podrán acceder a las cuentas." +msgstr "Administrators won't be able to display the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 +msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." +msgstr "Accounts will be only visible by the user and his/her main group." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 +msgid "Dirección IP" +msgstr "IP Address" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 +msgid "Timeout" +msgstr "Timeout" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 +msgid "" +"Prioridad de asignación en caso de coincidir con otros valores asignados por " +"usuario, grupo o perfil." +msgstr "" +"Assignment priority if values match with others assigned by user, group or " +"profile." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 +msgid "Prioridad de asignación" +msgstr "Assignment Priority" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 +msgid "" +"Indica si los valores serán forzados al crear o modificar los elementos." +msgstr "Enforces the values to be set either on creating or updating an item." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 +msgid "Los valores serán añadidos a los existentes." +msgstr "Values will be merged with the existing ones." + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:83 +msgid "Hash" +msgstr "Hash" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:91 +msgid "URL" +msgstr "URL" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:101 +msgid "Uso" +msgstr "Use" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 +msgid "Nombre de usuario completo" +msgstr "Full username" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:58 +msgid "Login de inicio de sesión" +msgstr "Session login" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:69 +msgid "Login SSO" +msgstr "SSO Login " + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:77 +msgid "Login de inicio de sesión con SSO" +msgstr "Session login with SSO" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:84 +msgid "Email" +msgstr "Email" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:92 +msgid "Dirección de correo" +msgstr "Email address" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:200 +msgid "Admin Aplicación" +msgstr "Application Admin" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:202 +msgid "Administrador de la aplicación" +msgstr "Application administrator" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:218 +msgid "Admin Cuentas" +msgstr "Accounts Admin" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:220 +msgid "Administrador de cuentas" +msgstr "Accounts administrator" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:240 +msgid "Forzar cambio de clave" +msgstr "Force password change" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:257 +msgid "Deshabilitado" +msgstr "Disabled" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 +msgid "Entradas" +msgstr "Entries" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 +msgid "Último Acceso" +msgstr "Last Access" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 +msgid "Fecha Clave Maestra" +msgstr "Master Password Date" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:311 +msgid "Usado en" +msgstr "Used in" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 +msgid "Usado por" +msgstr "Used by" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:108 +msgid "(*) Incluido en grupo" +msgstr "(*) Listed in group" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 +msgid "Gestión" +msgstr "Management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 +msgid "Crear" +msgstr "Add" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 +msgid "Crear nueva cuenta" +msgstr "Add a new account" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 +msgid "Ver detalles de cuenta" +msgstr "View account details" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 +msgid "Ver clave de cuenta" +msgstr "View account password" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 +#: ../../../config/actions.xml:259 +msgid "Ver Historial" +msgstr "View History" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 +msgid "Ver historial de cuenta" +msgstr "View account history" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 +msgid "Editar cuenta" +msgstr "Edit account" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 +msgid "Editar Clave" +msgstr "Edit Password" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 +msgid "Editar clave de cuenta" +msgstr "Edit account password" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 +msgid "Eliminar cuenta" +msgstr "Remove account" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 +msgid "Ver archivos de cuenta" +msgstr "View account files" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 +msgid "Publicar Enlace" +msgstr "Share Link" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 +msgid "Publicar enlace a cuenta" +msgstr "Share link to account" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 +msgid "Crear cuenta privada" +msgstr "Create private account" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 +msgid "Crear cuenta privada para grupo" +msgstr "Create private account for group" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 +msgid "Asignar permisos" +msgstr "Assign permissions" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 +msgid "Gestión de usuarios" +msgstr "Users management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 +msgid "Gestión de grupos" +msgstr "Groups management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 +msgid "Gestión de perfiles" +msgstr "Profiles management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 +msgid "Gestión de categorías" +msgstr "Categories management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 +msgid "Gestión de etiquetas" +msgstr "Tags management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 +msgid "Gestión de clientes" +msgstr "Customers management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 +msgid "Gestión de campos personalizados" +msgstr "Custom fields management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 +msgid "Gestión de autorizaciones API" +msgstr "API authorizations management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 +msgid "Gestión de enlaces" +msgstr "Links management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 +msgid "Gestión de cuentas" +msgstr "Accounts management" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 +msgid "Valores por Defecto" +msgstr "Default Values" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 +msgid "Gestión de Valores por Defecto" +msgstr "Default Values Management" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 +#: ../../../config/actions.xml:691 +msgid "Configuración General" +msgstr "General Configuration" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 msgid "Opciones de encriptación" msgstr "Encryption options" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 +msgid "Backup" +msgstr "Backup" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 msgid "Realizar copia de seguridad y exportar" msgstr "Make a backup and export" -#: ../../../../ajax/ajax_filesMgmt.php:97 -msgid "Extensión" -msgstr "Extension" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 +msgid "Importar" +msgstr "Import" -#: ../../../modules/web/Controllers/AccountFileController.php:209 -msgid "Tamaño de archivo superado" -msgstr "File size exceeded" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 +msgid "Realizar importación de cuentas" +msgstr "Make accounts import" -#: ../../../../ajax/ajax_passReset.php:77 -msgid "Solicitud no enviada" -msgstr "Request not sent" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 +msgid "Log de Eventos" +msgstr "Event Log" -#: ../../../../ajax/ajax_passReset.php:78 -msgid "Compruebe datos de usuario o consulte con el administrador" -msgstr "Please, check the user data or contact to the administrator" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 +msgid "Ver log de eventos" +msgstr "View event log" -#: ../../../../lib/SP/Services/Account/AccountService.php:283 -#: ../../../../lib/SP/Services/Account/AccountService.php:672 -#: ../../../../lib/SP/Services/Account/AccountService.php:727 -msgid "La cuenta no existe" -msgstr "The account doesn't exist" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 +msgid "Nombre del perfil" +msgstr "Profile name" -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:194 -msgid "Errores" -msgstr "Errors" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:46 +msgid "Clave Anterior" +msgstr "Previous Password" -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:71 -msgid "Error al añadir favorito" -msgstr "Error while adding favorite" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:73 +msgid "Acceder" +msgstr "Sign in" -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:91 -msgid "Error al eliminar favorito" -msgstr "Error while deleting favorite" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:82 +msgid "¿Olvidó su clave?" +msgstr "Forgot password?" -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:94 -msgid "Error al eliminar las etiquetas de la cuenta" -msgstr "Error while removing the account's tags" +#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 +msgid "Aplicación actualizada correctamente" +msgstr "Application successfully updated" -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:107 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:78 -msgid "Método inválido" -msgstr "Invalid Method" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 +#, php-format +msgid "Actualización %s" +msgstr "Update %s" -#: ../../../../lib/SP/Services/Api/ApiRequest.php:79 -#: ../../../../lib/SP/Services/Api/ApiRequest.php:113 -#: ../../../../lib/SP/Services/Api/ApiService.php:229 -msgid "Datos inválidos" -msgstr "Invalid data" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:20 +msgid "Actualización de BBDD" +msgstr "DB Update" -#: ../../../../inc/SP/Api/ApiRequest.class.php:211 -msgid "Formato incorrecto" -msgstr "Wrong format" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:22 +msgid "Actualización de Aplicación" +msgstr "Application Update" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 -msgid "Id de la cuenta" -msgstr "Account Id" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 +msgid "Código de Seguridad" +msgstr "Security Code" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 -msgid "Devolver detalles en la respuesta" -msgstr "Send details in the response" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 +msgid "" +"Este código se encuentra en el archivo de configuración de sysPass con la " +"etiqueta \"upgradeKey\"" +msgstr "" +"This code is set in the sysPass config file within the tag name \"upgradekey" +"\"" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 -#: ../../../modules/api/Controllers/Help/TagHelp.php:78 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 -msgid "Número de resultados a mostrar" -msgstr "Number of results to show" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:47 +msgid "" +"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " +"o indique los IDs por defecto para los elementos huérfanos." +msgstr "" +"Some orphaned items have been found. Please, modify those items or enter the " +"default IDs for them." -#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 -msgid "Id de categoría a filtrar" -msgstr "Category Id to filter on" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:49 +msgid "Si no se indican los IDs, se crearán nuevos elementos." +msgstr "If the items IDs are not set, they will be created." -#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 -msgid "Id de cliente a filtrar" -msgstr "Client Id to filter on" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:74 +msgid "Introducir un ID de usuario válido para cuentas" +msgstr "Enter a valid user ID for the accounts" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 -msgid "Id de categoría" -msgstr "Category Id" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 +msgid "Introducir un ID de categoría válido para cuentas" +msgstr "Enter a valid category ID for the accounts" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 -msgid "Id de cliente" -msgstr "Client Id" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:96 +msgid "Introducir un ID de cliente válido para cuentas" +msgstr "Enter a valid client ID for the accounts" -#: ../../../../lib/SP/Api/SyspassApi.php:511 -msgid "Nombre de categoría a buscar" -msgstr "Category name to search for" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 +msgid "Introducir un ID de grupo válido para usuarios" +msgstr "Enter a valid group ID for the users" -#: ../../../../lib/SP/Api/SyspassApi.php:531 -msgid "Nombre de cliente a buscar" -msgstr "Client name to search for" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 +msgid "Introducir un ID de perfil válido para usuarios" +msgstr "Enter a valid profile ID for the users" -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:212 -msgid "Método ya inicializado" -msgstr "Method already initialized" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:128 +msgid "" +"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " +"necesario reencriptar los datos almacenados" +msgstr "" +"This update uses a new encryption schema, so it will be needed to reencrypt " +"the whole encrypted data." -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:208 -msgid "Método no disponible" -msgstr "Method unavailable" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:150 +msgid "Introducir login de usuario válido" +msgstr "Enter a valid user login" -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 -msgid "Objetos encontrados: %d" -msgstr "Objects found: %d" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:162 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 +msgid "He realizado una copia de seguridad completa de sysPass" +msgstr "I've done a full sysPass backup" -#: ../../../../lib/SP/Controller/ChecksController.php:127 -msgid "Los parámetros de DokuWiki no están configurados" -msgstr "The DokuWiki parameters are not set" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 +msgid "Por favor espere mientras el proceso se ejecuta" +msgstr "Please, wait while the process is running" -#: ../../../../lib/SP/Controller/ChecksController.php:135 -#: ../../../../lib/SP/Util/Wiki/DokuWikiApiBase.php:214 -msgid "Error" -msgstr "Error" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:184 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 +msgid "Actualizar" +msgstr "Update" -#: ../../../../lib/SP/Controller/ChecksController.php:137 -msgid "Conexión correcta" -msgstr "Connection successful" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:186 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 +msgid "Iniciar Actualización" +msgstr "Start Update" -#: ../../../../lib/SP/Controller/ChecksController.php:141 -msgid "Error de conexión a DokuWiki" -msgstr "Error while connecting to DokuWiki" +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:95 +msgid "Notificación global" +msgstr "Global notification" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:89 -msgid "Faltan parámetros de syslog remoto" -msgstr "Missing remote syslog parameters" +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:103 +msgid "Sólo para administradores de la aplicación" +msgstr "Only for application administrators" -#: ../../../modules/web/Controllers/ConfigGeneralController.php:102 -msgid "Syslog remoto deshabilitado" -msgstr "Remote syslog disabled" +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:107 +msgid "Solo Admins" +msgstr "Only Admins" -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:72 -msgid "Error al guardar la configuración" -msgstr "Error while saving the configuration" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:29 +msgid "Nombre del plugin" +msgstr "Plugin name" -#: ../../../modules/web/Controllers/ConfigWikiController.php:87 -msgid "Faltan parámetros de DokuWiki" -msgstr "Missing DokuWiki parameters" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:41 +msgid "Versión del plugin" +msgstr "Plugin version" -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:368 -msgid "DokuWiki habiltada" -msgstr "DokuWiki enabled" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:46 +msgid "Versión Compatible" +msgstr "Compatible Version" -#: ../../../modules/web/Controllers/ConfigWikiController.php:104 -msgid "DokuWiki deshabilitada" -msgstr "DokuWiki disabled" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:53 +msgid "Versión de sysPass compatible" +msgstr "sysPass compatible version" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 -msgid "Buscar Evento" -msgstr "Search for Events" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:39 +msgid "Autor" +msgstr "Author" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:65 +msgid "Autor del plugin" +msgstr "Plugin author" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 +msgid "La aplicación necesita actualizarse" +msgstr "The application needs to be updated" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 +msgid "Para iniciar la actualización introduzca el código de seguridad" +msgstr "Please enter the security code to start the upgrade" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:13 +msgid "Solicitud de Cambio de Clave" +msgstr "Request Password Change" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 +msgid "Email del Usuario" +msgstr "User's Email" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:39 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:49 +msgid "Volver a iniciar sesión" +msgstr "Go back to login" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:46 +msgid "Solicitar" +msgstr "Request" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:56 +msgid "Cambiar" +msgstr "Change" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:107 +msgid "Ordenar resultados por visitas" +msgstr "Sort search results by views" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:109 +msgid "" +"Ordena los resultados de búsqueda por el número de visitas de las cuentas." +msgstr "Sorts accounts search results by the number of accounts views" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:124 +msgid "Barra de navegación superior" +msgstr "Navigation bar on top" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:126 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "Shows a navigation bar on top of the search results." + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:141 +msgid "Mostrar Acciones Ocultas" +msgstr "Show Hidden Actions" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:143 +msgid "" +"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." +msgstr "Always show the hidden actions on the accounts search page." + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:175 +msgid "Notificaciones In-App" +msgstr "In-App Notifications" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:177 +msgid "Habilita la consulta de notificaciones activas In-App." +msgstr "Enables the active In-App notifications polling" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 -#: ../../../config/actions.xml:325 -msgid "Buscar Categoría" -msgstr "Search for Category" +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:16 +#: ../../../config/actions.xml:277 +msgid "Ver Wiki" +msgstr "View Wiki" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +#, php-format +msgid "Resultados de búsqueda de '%s'" +msgstr "Search results of '%s'" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:37 +msgid "Página" +msgstr "Page" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 -#: ../../../config/actions.xml:355 -msgid "Buscar Cliente" -msgstr "Search for Client" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 -msgid "Buscar Campo" -msgstr "Search for Field" +#: ../../../config/actions.xml:7 +msgid "Buscar Cuentas" +msgstr "Search for Accounts" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 -#: ../../../config/actions.xml:475 -msgid "Buscar Archivo" -msgstr "Search for File" +#: ../../../config/actions.xml:25 +msgid "Peticiones" +msgstr "Requests" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 -#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 -msgid "Buscar Cuenta" -msgstr "Search for Account" +#: ../../../config/actions.xml:31 +msgid "Favoritos" +msgstr "Favorites" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 -#: ../../../config/actions.xml:601 -msgid "Buscar Usuario" -msgstr "Search for User" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 -msgid "Importar usuarios de LDAP" -msgstr "Import users from LDAP" +#: ../../../config/actions.xml:43 +msgid "Elementos y Personalización" +msgstr "Items and Customizations" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 -#: ../../../config/actions.xml:631 -msgid "Buscar Grupo" -msgstr "Search for Group" +#: ../../../config/actions.xml:49 +msgid "Gestión Categorías" +msgstr "Categories Management" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 -#: ../../../config/actions.xml:661 -msgid "Buscar Perfil" -msgstr "Search for Profile" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 -msgid "Buscar Token" -msgstr "Search for Token" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 -msgid "Fecha Creación" -msgstr "Creation Date" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 -msgid "Fecha Caducidad" -msgstr "Expiry Date " - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 -msgid "Notificar" -msgstr "Notify" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 -msgid "Enlaces" -msgstr "Links" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 -msgid "Buscar Enlace" -msgstr "Search for Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 -msgid "Ver Enlace" -msgstr "View Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 -msgid "Renovar Enlace" -msgstr "Renew Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 -msgid "Eliminar Enlace" -msgstr "Delete Link" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:123 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 -msgid "Etiquetas" -msgstr "Tags" +#: ../../../config/actions.xml:55 +msgid "Gestión Clientes" +msgstr "Customers Management" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 -#: ../../../config/actions.xml:529 -msgid "Buscar Etiqueta" -msgstr "Search for Tag" +#: ../../../config/actions.xml:61 +msgid "Gestión Autorizaciones API" +msgstr "API Authorizations Management" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 -#: ../../../config/actions.xml:505 -msgid "Nueva Etiqueta" -msgstr "New Tag" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 -#: ../../../config/actions.xml:517 -msgid "Editar Etiqueta" -msgstr "Edit Tag" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 -#: ../../../config/actions.xml:523 -msgid "Eliminar Etiqueta" -msgstr "Delete Tag" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 -msgid "Plugin" -msgstr "Plugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 -msgid "Estado" -msgstr "Status" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:334 -#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 -msgid "Plugins" -msgstr "Plugins" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 -#: ../../../config/actions.xml:547 -msgid "Buscar Plugin" -msgstr "Search for Plugin" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:120 -#: ../../../config/actions.xml:541 -msgid "Ver Plugin" -msgstr "View Plugin" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 -msgid "Habilitar" -msgstr "Enable" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 -msgid "Deshabilitar" -msgstr "Disable" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 -msgid "Restablecer Datos" -msgstr "Reset Data" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 -msgid "Componente" -msgstr "Component" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 -msgid "Leída" -msgstr "Read" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:65 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:105 -#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 -#: ../../../config/actions.xml:679 -msgid "Notificaciones" -msgstr "Notifications" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 -#: ../../../config/actions.xml:841 -msgid "Buscar Notificación" -msgstr "Search for Notification" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:103 -#: ../../../config/actions.xml:811 -msgid "Ver Notificación" -msgstr "View Notification" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 -#: ../../../config/actions.xml:835 -msgid "Marcar Notificación" -msgstr "Checkout Notification" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 -#: ../../../config/actions.xml:829 -msgid "Eliminar Notificación" -msgstr "Delete Notification" - -#: ../../../modules/web/Controllers/PublicLinkController.php:275 -#: ../../../modules/web/Controllers/PublicLinkController.php:310 -msgid "Enlace creado" -msgstr "Link created" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:89 -#: ../../../modules/web/Controllers/PublicLinkController.php:175 -msgid "Enlace actualizado" -msgstr "Link updated" - -#: ../../../modules/web/Controllers/PublicLinkController.php:245 -#: ../../../modules/web/Controllers/PublicLinkController.php:249 -msgid "Enlace eliminado" -msgstr "Link deleted" - -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:94 -#: ../../../modules/web/Controllers/TagController.php:234 -msgid "Etiqueta creada" -msgstr "Tag added" - -#: ../../../modules/api/Controllers/TagController.php:118 -#: ../../../modules/api/Controllers/TagController.php:123 -#: ../../../modules/web/Controllers/TagController.php:265 -msgid "Etiqueta actualizada" -msgstr "Tag updated" - -#: ../../../modules/api/Controllers/TagController.php:147 -#: ../../../modules/api/Controllers/TagController.php:152 -#: ../../../modules/web/Controllers/TagController.php:208 -msgid "Etiqueta eliminada" -msgstr "Tag removed" - -#: ../../../modules/web/Controllers/PluginController.php:181 -#: ../../../modules/web/Controllers/PluginController.php:184 -msgid "Plugin habilitado" -msgstr "Plugin enabled" - -#: ../../../modules/web/Controllers/PluginController.php:206 -#: ../../../modules/web/Controllers/PluginController.php:209 -msgid "Plugin deshabilitado" -msgstr "Plugin disabled" - -#: ../../../modules/web/Controllers/PluginController.php:231 -#: ../../../modules/web/Controllers/PluginController.php:234 -msgid "Plugin restablecido" -msgstr "Plugin reset" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:55 -msgid "Favorito añadido" -msgstr "Favorite added" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:73 -msgid "Favorito eliminado" -msgstr "Favorite deleted" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:269 -msgid "Importación de usuarios de LDAP realizada" -msgstr "LDAP users import finished" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1096 -msgid "Error al importar usuarios de LDAP" -msgstr "Error while importing the LDAP users" - -#: ../../../modules/web/Controllers/NotificationController.php:297 -#: ../../../modules/web/Controllers/NotificationController.php:301 -msgid "Notificación leída" -msgstr "Notification read" - -#: ../../../modules/web/Controllers/NotificationController.php:266 -#: ../../../modules/web/Controllers/NotificationController.php:270 -msgid "Notificación eliminada" -msgstr "Notification deleted" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1192 -msgid "Solicitud enviada por correo" -msgstr "Request sent by email" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 -msgid "Solicitud no enviada por correo" -msgstr "Request not sent by email" - -#: ../../../modules/web/Controllers/AccountController.php:943 -msgid "Solicitud realizada" -msgstr "Request done" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:427 -msgid "Ver Enlace Público" -msgstr "Show Public Link" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:233 -msgid "Detalles de Plugin" -msgstr "Plugin Details" - -#: ../../../../inc/SP/Controller/LoginController.class.php:375 -msgid "Error al obtener la clave maestra del usuario" -msgstr "Error while retrieving the user's Master Pass" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:327 -msgid "Es necesaria su clave anterior" -msgstr "Your previous password is needed" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:452 -#: ../../../../lib/SP/Services/Auth/LoginService.php:515 -msgid "Servidor LDAP" -msgstr "LDAP Server" - -#: ../../../../inc/SP/Core/Acl.class.php:198 -msgid "Buscar Categorías" -msgstr "Search for Categories" - -#: ../../../../inc/SP/Core/Acl.class.php:199 -msgid "Añadir Categoría" -msgstr "Add Category" - -#: ../../../../inc/SP/Core/Acl.class.php:203 -msgid "Buscar Clientes" -msgstr "Search for Client" - -#: ../../../../inc/SP/Core/Acl.class.php:204 -msgid "Añadir Cliente" -msgstr "Add Client" +#: ../../../config/actions.xml:67 +msgid "Gestión Campos Personalizados" +msgstr "Custom Fields Management" #. (itstool) path: action/text #: ../../../config/actions.xml:79 @@ -4936,2581 +4634,36 @@ msgstr "Accounts Management" msgid "Gestión de Etiquetas" msgstr "Tags Management" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 -msgid "No es posible crear el directorio de backups (\"%s\")" -msgstr "Unable to create the backups directory (\"%s\")" - -#: ../../../../lib/SP/Core/Events/EventDispatcherBase.php:85 -msgid "Observador no inicializado" -msgstr "Observer not initialized" - -#: ../../../../lib/SP/Core/Events/Event.php:56 -msgid "Es necesario un objeto" -msgstr "An object is needed" - -#: ../../../../lib/SP/Services/Install/Installer.php:141 -msgid "Indicar la clave de la BBDD" -msgstr "Please, enter the database password" - -#: ../../../../lib/SP/Services/Install/Installer.php:143 -msgid "Clave del usuario administrador de la Base de Datos" -msgstr "Database administrator's password" - -#: ../../../../lib/SP/Services/Install/MySQL.php:181 -msgid "Error al crear el usuario de conexión a MySQL '%s'" -msgstr "Error while creating the MySQL connection user '%s'" - -#: ../../../../lib/SP/Services/Install/MySQL.php:251 -msgid "La BBDD no existe" -msgstr "The database does not exist" - -#: ../../../../lib/SP/Services/Install/MySQL.php:253 -msgid "Es necesario crearla y asignar los permisos necesarios" -msgstr "You need to create it and assign the needed permissions" - -#: ../../../../lib/SP/Services/Install/MySQL.php:237 -msgid "Error al establecer permisos de la BBDD ('%s')" -msgstr "Error while setting the database permissions ('%s')" - -#: ../../../../lib/SP/Plugin/PluginManager.php:113 -#: ../../../../lib/SP/Plugin/PluginManager.php:256 -msgid "No es posible cargar el plugin \"%s\"" -msgstr "Unable to load the \"%s\" plugin" - -#: ../../../../lib/SP/Mvc/View/Template.php:341 -msgid "La plantilla no contiene archivos" -msgstr "Template does not contain files" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:121 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:125 -msgid "Error al actualizar la configuración" -msgstr "Error while updating the configuration" - -#: ../../../modules/web/Forms/AuthTokenForm.php:91 -msgid "Usuario no indicado" -msgstr "User not set" - -#: ../../../modules/web/Forms/AuthTokenForm.php:95 -msgid "Acción no indicada" -msgstr "Action not set" - -#: ../../../modules/web/Forms/TagForm.php:82 -msgid "Es necesario un nombre de etiqueta" -msgstr "A tag name is needed" - -#: ../../../../lib/SP/Http/XMLRPCResponseParse.php:69 -msgid "Respuesta XML-RPC inválida" -msgstr "Invalid XML-RPC response" - -#: ../../../../lib/SP/Services/Import/ImportService.php:89 -msgid "Tipo mime no soportado (\"%s\")" -msgstr "Mime type not supported (\"%s\")" - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:106 -msgid "Id de categoría no definido. No es posible importar cuenta." -msgstr "Category Id not set. Unable to import the account." - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:110 -msgid "Id de cliente no definido. No es posible importar cuenta." -msgstr "Client Id not set. Unable to import the account." - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:69 -msgid "Clave de encriptación no indicada" -msgstr "Encryption password not set" - -#: ../../../../lib/SP/Services/Import/CsvImport.php:50 -msgid "Formato detectado: %s" -msgstr "Detected format: %s" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 -msgid "El nodo \"%s\" no existe" -msgstr "The \"%s\" node doesn't exist" - -#: ../../../../lib/SP/Util/ImageUtil.php:48 -#: ../../../../lib/SP/Util/ImageUtil.php:99 -#: ../../../../lib/SP/Util/Util.php:180 ../../../../lib/SP/Util/Util.php:182 -msgid "Extensión '%s' no cargada" -msgstr "Extension '%s' not loaded" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:58 -msgid "Categoría duplicada" -msgstr "Duplicated category" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:77 -#: ../../../../lib/SP/Services/Category/CategoryService.php:98 -#: ../../../../lib/SP/Services/Category/CategoryService.php:115 -msgid "Categoría no encontrada" -msgstr "Category not found" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:75 -msgid "Error al crear el campo personalizado" -msgstr "Error while creating the custom field" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:259 -msgid "Error al eliminar el campo personalizado" -msgstr "Error while removing the custom field" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:118 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:165 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:193 -msgid "Error al actualizar el campo personalizado" -msgstr "Error while updating the custom field" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:162 -msgid "Campo personalizado no encontrado" -msgstr "Custom field not found" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:215 -msgid "No se encontraron campos personalizados" -msgstr "Custom fields not found" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:68 -msgid "No hay datos de campos personalizados" -msgstr "There aren't any data from custom fields" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldsUtil.php:263 -msgid "Error al migrar campos personalizados" -msgstr "Error while migrating the custom fields" - -#: ../../../../inc/SP/Mgmt/Files/File.class.php:103 -msgid "Archivo subido" -msgstr "File uploaded" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:55 -msgid "Grupo en uso" -msgstr "Group in use" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 -msgid "Actualizar Grupo" -msgstr "Update Group" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:140 -msgid "Error al asignar los usuarios al grupo" -msgstr "Error while setting users in the group" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:78 -msgid "Error al crear la notificación" -msgstr "Error while adding the notification" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:137 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:156 -msgid "Error al eliminar la notificación" -msgstr "Error while deleting the notification" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:118 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:429 -msgid "Error al modificar la notificación" -msgstr "Error while updating the notification" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:212 -msgid "Error al obtener la notificación" -msgstr "Error while retrieving notification" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:242 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:466 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:499 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:533 -msgid "Error al obtener las notificaciones" -msgstr "Error while retrieving the notifications" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:70 -msgid "Error al crear el plugin" -msgstr "Error while adding the plugin" - -#. (itstool) path: action/text -#: ../../../../lib/SP/Plugin/PluginManager.php:245 -#: ../../../config/actions.xml:535 -msgid "Nuevo Plugin" -msgstr "New Plugin" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:232 -msgid "Error al eliminar el plugin" -msgstr "Error while deleting the plugin" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:104 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:348 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:368 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:388 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:408 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:427 -msgid "Error al actualizar el plugin" -msgstr "Error while updating the plugin" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:42 -msgid "Habilitado" -msgstr "Enabled" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:239 -msgid "Error al crear perfil" -msgstr "Error while creating the profile" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:73 -msgid "Perfil en uso" -msgstr "Profile in use" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:79 -msgid "Error al eliminar perfil" -msgstr "Error while removing the profile" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:141 -msgid "Error al modificar perfil" -msgstr "Error while updating the profile" - -#: ../../../modules/web/Controllers/AccountController.php:223 -msgid "Enlace visualizado" -msgstr "Link viewed" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:341 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:389 -msgid "Error al actualizar enlace" -msgstr "Error while updating the link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:255 -msgid "Enlace ya creado" -msgstr "Link already created" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:282 -msgid "Error al crear enlace" -msgstr "Error while creating the link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:63 -msgid "Error al eliminar enlace" -msgstr "Error while removing the link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:424 -msgid "Error al renovar enlace" -msgstr "Error while renewing link" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:741 -#: ../../../../inc/themes/material-blue/views/account/actions.inc:69 -msgid "Actualizar Enlace" -msgstr "Update Link" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:466 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:507 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:528 -msgid "Error al obtener enlace" -msgstr "Error while retrieving the link" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:190 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "ON" -msgstr "ON" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "OFF" -msgstr "OFF" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:60 -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:108 -msgid "Etiqueta duplicada" -msgstr "Duplicated tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:69 -msgid "Error al crear etiqueta" -msgstr "Error while creating the tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:262 -msgid "Error al eliminar etiqueta" -msgstr "Error while removing the tag" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:118 -msgid "Error al actualizar etiqueta" -msgstr "Error while updating the tag" - -#: ../../../../inc/SP/Mgmt/Tags/Tag.class.php:181 -msgid "Error al obtener etiqueta" -msgstr "Error while retrieving the tag" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:63 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:430 -msgid "Login/email de usuario duplicados" -msgstr "Duplicated user login/email" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:234 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:551 -msgid "Error al obtener los datos del usuario" -msgstr "Error while retrieving the user's data" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:781 -msgid "Sincronización LDAP" -msgstr "LDAP synchronization" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:264 -msgid "No se encontraron objetos para sincronizar" -msgstr "There aren't any objects to synchronize" - -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:128 -msgid "Sincronización finalizada" -msgstr "Synchronization finished" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:97 -msgid "Error al migrar cuenta de usuario" -msgstr "Error while migrating the user account" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:137 -msgid "Error al obtener grupo de usuarios" -msgstr "Error while retrieving the users group" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:112 -msgid "Error en comprobación de hash" -msgstr "Error while checking hash" - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:87 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:155 -msgid "Hash inválido o expirado" -msgstr "Wrong hash or expired" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:86 -msgid "Error al generar el hash de recuperación" -msgstr "Error while generating the recovering hash" - -#: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:57 -msgid "Actualizando preferencias" -msgstr "Updating preferences" - -#: ../../../../lib/SP/Storage/XmlHandler.php:79 -msgid "No es posible leer/escribir el archivo: %s" -msgstr "Unable to read/write the file: %s" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:167 -msgid "No hay elementos para guardar" -msgstr "There aren't any items to save" - -#: ../../../../lib/SP/Util/Connection.php:157 -msgid "Socket no inicializado" -msgstr "Socket not initialized" - -#: ../../../../lib/SP/Util/Connection.php:164 -msgid "Error al enviar datos" -msgstr "Error while sending the data" - -#: ../../../../lib/SP/Util/Util.php:243 -msgid "Respuesta" -msgstr "Response" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 -msgid "Fallo de autentificación" -msgstr "Authentication error" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 -msgid "Error al realizar la consulta" -msgstr "Error while doing the query" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 -msgid "URL de conexión no establecida" -msgstr "Connection URL not set" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:33 -msgid "Ver Detalles" -msgstr "View Details" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:44 -msgid "Copiar" -msgstr "Copy" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:50 -msgid "Restaurar" -msgstr "Restore" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:55 -msgid "Descargar" -msgstr "Download" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:64 -msgid "Crítico" -msgstr "Critical" - -#: ../../../config/strings.js.inc:73 -msgid "Recibir notificaciones?" -msgstr "Send notifies?" - -#: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 -msgid "Marcar Favorito" -msgstr "Mark as Favorite" - -#. (itstool) path: action/text -#: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 -#: ../../../config/actions.xml:253 -msgid "Eliminar Favorito" -msgstr "Delete Favorite" - -#: ../../../config/strings.js.inc:76 -msgid "Limpiar Selección" -msgstr "Clear Selection" - -#: ../../../config/strings.js.inc:77 -msgid "Mostrar Favoritos" -msgstr "Show Favorites" - -#: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 -msgid "Mostrar Todos" -msgstr "Show All" - -#: ../../../config/strings.js.inc:81 -msgid "Ahora" -msgstr "Now" - -#: ../../../config/strings.js.inc:82 -msgid "" -"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" -msgstr "" -"This process will import the detected LDAP users. Would you like to continue?" - -#: ../../../config/strings.js.inc:83 -msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" -msgstr "This action will reset all plugin data. Do you want to continue?" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 -msgid "Fecha Caducidad Clave" -msgstr "Password Expiry Date" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 -msgid "Seleccionar Fecha" -msgstr "Select date" - -#: ../../../../inc/themes/material-blue/views/account/account-permissions.inc:9 -msgid "Accesos" -msgstr "Accesses" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 -msgid "Seleccionar Usuarios" -msgstr "Select Users" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 -msgid "Seleccionar Grupos" -msgstr "Select Groups" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 -msgid "Cuenta Privada" -msgstr "Private Account" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 -msgid "Privada" -msgstr "Private" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 -msgid "Seleccionar Etiquetas" -msgstr "Select Tags" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 -msgid "Cuenta Vinculada" -msgstr "Linked Account" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 -msgid "Seleccionar Cuenta" -msgstr "Select Account" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Public Link" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 -#: ../../../config/actions.xml:421 -msgid "Crear Enlace Público" -msgstr "Create Public Link" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 -msgid "Detalles" -msgstr "Details" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 -msgid "Fecha de Clave" -msgstr "Password Date" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Tamaño máximo de archivo: %d MB" -msgstr "Maximum file size: %d MB" - -#: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:3 -msgid "Cuentas Vinculadas" -msgstr "Linked Accounts" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 -msgid "Clave Caducada" -msgstr "Password Expired" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 -msgid "Ver en Wiki" -msgstr "View at Wiki" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 -msgid "Buscar cuentas con la clave caducada" -msgstr "Search for accounts with expired password" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 -msgid "Filtrar Favoritos" -msgstr "Favorites Filtering" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 -msgid "Más Filtros" -msgstr "More Filters" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 -msgid "Seleccionar Etiqueta" -msgstr "Select Tag" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 -msgid "Copia BBDD" -msgstr "DB Backup" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 -msgid "Copia sysPass" -msgstr "sysPass Backup" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 -msgid "Eventos" -msgstr "Events" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 -msgid "Habilitar Syslog" -msgstr "Enable Syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 -msgid "Habilitar Syslog Remoto" -msgstr "Enable Remote Syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 -msgid "Nombre o dirección IP" -msgstr "Hostname or IP address" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 -#: ../../../config/actions.xml:73 -msgid "Enlaces Públicos" -msgstr "Public Links" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 -msgid "Habilitar Enlaces Públicos" -msgstr "Enable Public Links" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 -msgid "" -"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " -"una cuenta." -msgstr "" -"Enables the ability to create public links to view an account's details" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 -msgid "" -"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." -msgstr "The linked accounts will be visible by anyone that have the link." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 -msgid "" -"Para crear enlaces, los usuarios tienen que tener activada la opción en su " -"perfl." -msgstr "" -"To create links, the users must have activated the option in their profiles." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 -msgid "Tiempo de caducidad" -msgstr "Expire time" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 -msgid "Número máximo de visitas" -msgstr "Maximum visits" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 -msgid "Usar imagen para clave" -msgstr "Use an image for password" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 -msgid "La clave de la cuenta es visualizada como una imagen." -msgstr "The account password is shown as image." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 -msgid "Copia de Configuración" -msgstr "Configuration Backup" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 -msgid "Plugins Cargados" -msgstr "Loaded Plugins" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 -msgid "Resultados" -msgstr "Results" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 -msgid "DokuWiki API" -msgstr "DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 -msgid "Habilitar API de DokuWiki" -msgstr "Enable DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 -msgid "" -"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." -msgstr "Enables DokuWiki XML-RPC API for Wiki links." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 -msgid "" -"Para que esta característica funcione, es necesario habilitar los enlaces " -"Wiki para el filtrado de cuentas." -msgstr "" -"In order to get this feature working, you should enable Wiki links for " -"accounts filtering" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 -msgid "URL API" -msgstr "API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 -msgid "URL de la API de DokuWiki." -msgstr "DokuWiki API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 -msgid "URL Base" -msgstr "Base URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 -msgid "URL base de DokuWiki." -msgstr "DokuWiki base URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 -msgid "Usuario para conectar a la API de DokuWiki." -msgstr "User for connecting to the DokuWiki API." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 -msgid "Namespace" -msgstr "Namespace" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 -msgid "Namespace utilizado para buscar las páginas." -msgstr "Namespace used to search pages." - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 -msgid "Nivel" -msgstr "Level" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 -msgid "Eliminar Seleccionados" -msgstr "Delete Selected" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 -msgid "Nombre del plugin" -msgstr "Plugin name" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 -msgid "Versión del plugin" -msgstr "Plugin version" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 -msgid "Versión Compatible" -msgstr "Compatible Version" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 -msgid "Versión de sysPass compatible" -msgstr "sysPass compatible version" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 -msgid "Autor" -msgstr "Author" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 -msgid "Autor del plugin" -msgstr "Plugin author" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 -msgid "Publicar enlace a cuenta" -msgstr "Share link to account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 -msgid "Publicar Enlace" -msgstr "Share Link" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 -msgid "Crear cuenta privada" -msgstr "Create private account" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 -msgid "Asignar permisos" -msgstr "Assign permissions" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 -msgid "Gestión de enlaces" -msgstr "Links management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 -msgid "Gestión de cuentas" -msgstr "Accounts management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 -msgid "Gestión de etiquetas" -msgstr "Tags management" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 -msgid "Hash" -msgstr "Hash" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 -msgid "Uso" -msgstr "Use" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:54 -#: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 -msgid "Nombre de la etiqueta" -msgstr "Tag name" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:40 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 -msgid "Hay %d notificaciones pendientes" -msgstr "There are %d unread notifications" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:165 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 -msgid "Demo" -msgstr "Demo" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 -msgid "Instalación %s" -msgstr "Installation %s" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 -msgid "Admin de sysPass" -msgstr "sysPass Admin" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 -msgid "Clave Anterior" -msgstr "Previous Password" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 -msgid "Actualización %s" -msgstr "Update %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 -msgid "" -"Este código se encuentra en el archivo de configuración de sysPass con la " -"etiqueta \"upgradeKey\"" -msgstr "" -"This code is set in the sysPass config file within the tag name \"upgradekey" -"\"" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 -#: ../../../config/actions.xml:277 -msgid "Ver Wiki" -msgstr "View Wiki" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 -msgid "Resultados de búsqueda de '%s'" -msgstr "Search results of '%s'" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 -msgid "Página" -msgstr "Page" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 -msgid "No instalado" -msgstr "Not installed" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 -msgid "Origen" -msgstr "Source" - -#: ../../../modules/web/Controllers/AccountController.php:226 -msgid "Agente" -msgstr "Agent" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 -msgid "" -"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." -"com/join/project/fmlsBuugyv" -msgstr "" -"To improve/add the translations, you can get involved at https://poeditor." -"com/join/project/fmlsBuugyv" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 -msgid "Indica si el idioma se encuentra disponible" -msgstr "Tells whether the language is available or not." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 -msgid "" -"Si no está instalado, es necesario instalar las locales en el sistema " -"operativo. Más información en Wiki." -msgstr "" -"If it is not installed, you would need install the right operating system " -"locales. More info at Wiki." - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:42 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:112 -msgid "No hay no hay notificaciones pendientes" -msgstr "There aren't any pending notifications" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 -msgid "He realizado una copia de seguridad completa de sysPass" -msgstr "I've done a full sysPass backup" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 -msgid "Por favor espere mientras el proceso se ejecuta" -msgstr "Please, wait while the process is running" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 -msgid "Crear Usuario" -msgstr "Add User" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 -msgid "Actualizar Usuario" -msgstr "Update User" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:284 -msgid "Actualizar Clave Usuario" -msgstr "Update User's Password" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 -msgid "Crear Grupo" -msgstr "Add Group" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 -msgid "Crear Perfil" -msgstr "Add Profile" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 -msgid "Actualizar Perfil" -msgstr "Update Profile" - -#: ../../../../lib/SP/Api/SyspassApi.php:368 -msgid "Crear Cliente" -msgstr "Add Client" - -#: ../../../../lib/SP/Api/SyspassApi.php:279 -msgid "Crear Categoría" -msgstr "Add Category" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 -msgid "Actualizar Categoría" -msgstr "Update Category" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:623 -msgid "Crear Autorización" -msgstr "Add Authorization" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -msgid "Crear Campo" -msgstr "Add Field" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 -msgid "Actualizar Campo" -msgstr "Update Field" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:731 -msgid "Crear Enlace" -msgstr "Create Link" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -msgid "Crear Etiqueta" -msgstr "Add Tag" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 -msgid "Actualizar Etiqueta" -msgstr "Update Tag" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:890 -msgid "Actualizar Plugin" -msgstr "Update Plugin" - -#: ../../../../lib/SP/Api/SyspassApi.php:188 -msgid "Crear Cuenta" -msgstr "Add Account" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1091 -msgid "Usuarios importados" -msgstr "Imported users" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 -#: ../../../modules/web/Controllers/AccountController.php:926 -msgid "Solicitud" -msgstr "Request" - -#: ../../../../lib/SP/Core/Acl/Acl.php:299 -msgid "Acceso denegado" -msgstr "Access denied" - -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:115 -msgid "Error al añadir las etiquetas de la cuenta" -msgstr "Error while adding the account's tags" - -#: ../../../../lib/SP/Util/ErrorUtil.php:148 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 -msgid "Se ha producido una excepción" -msgstr "An exception occured" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:179 -msgid "Nueva Notificación" -msgstr "New Notification" - -#: ../../../modules/web/Controllers/UserGroupController.php:219 -#: ../../../modules/web/Controllers/UserGroupController.php:222 -msgid "Grupos eliminados" -msgstr "Groups deleted" - -#: ../../../modules/web/Controllers/UserProfileController.php:203 -#: ../../../modules/web/Controllers/UserProfileController.php:206 -msgid "Perfiles eliminados" -msgstr "Profiles deleted" - -#: ../../../modules/web/Controllers/ClientController.php:201 -#: ../../../modules/web/Controllers/ClientController.php:204 -msgid "Clientes eliminados" -msgstr "Clients deleted" - -#: ../../../modules/web/Controllers/CategoryController.php:206 -#: ../../../modules/web/Controllers/CategoryController.php:209 -msgid "Categorías eliminadas" -msgstr "Categories deleted" - -#: ../../../modules/web/Controllers/AuthTokenController.php:212 -#: ../../../modules/web/Controllers/AuthTokenController.php:215 -msgid "Autorizaciones eliminadas" -msgstr "Authorizations deleted" - -#: ../../../modules/web/Controllers/CustomFieldController.php:197 -#: ../../../modules/web/Controllers/CustomFieldController.php:200 -msgid "Campos eliminados" -msgstr "Fields deleted" - -#: ../../../modules/web/Controllers/PublicLinkController.php:234 -#: ../../../modules/web/Controllers/PublicLinkController.php:237 -msgid "Enlaces eliminados" -msgstr "Links deleted" - -#: ../../../modules/web/Controllers/TagController.php:200 -msgid "Etiquetas eliminadas" -msgstr "Tags deleted" - -#: ../../../modules/web/Controllers/AccountFileController.php:320 -#: ../../../modules/web/Controllers/AccountFileController.php:323 -msgid "Archivos eliminados" -msgstr "Files deleted" - -#: ../../../modules/web/Controllers/AccountController.php:879 -#: ../../../modules/web/Controllers/AccountController.php:882 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:99 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:102 -#: ../../../modules/web/Controllers/AccountManagerController.php:131 -#: ../../../modules/web/Controllers/AccountManagerController.php:134 -msgid "Cuentas eliminadas" -msgstr "Accounts removed" - -#: ../../../modules/web/Controllers/NotificationController.php:327 -#: ../../../modules/web/Controllers/NotificationController.php:330 -msgid "Notificación creada" -msgstr "Notification created" - -#: ../../../modules/web/Controllers/NotificationController.php:251 -#: ../../../modules/web/Controllers/NotificationController.php:254 -msgid "Notificaciones eliminadas" -msgstr "Notifications deleted" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:270 -msgid "Usando clave temporal" -msgstr "Using temporary password" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:131 -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:181 -msgid "Clave temporal caducada" -msgstr "Temporary password expired" - -#: ../../../../inc/SP/Core/Init.class.php:506 -msgid "Sesión" -msgstr "Session" - -#: ../../../../lib/SP/Services/Install/MySQL.php:361 -msgid "Error al comprobar la base de datos" -msgstr "Error while checking the database" - -#: ../../../../lib/SP/Services/Install/MySQL.php:363 -msgid "Intente de nuevo la instalación" -msgstr "Please, try the installation again" - -#: ../../../modules/web/Forms/NotificationForm.php:92 -msgid "Es necesario un componente" -msgstr "A component is needed" - -#: ../../../modules/web/Forms/NotificationForm.php:96 -msgid "Es necesario un tipo" -msgstr "A type is needed" - -#: ../../../modules/web/Forms/NotificationForm.php:106 -msgid "Es necesario un destinatario" -msgstr "A target is needed" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:167 -msgid "Error procesando línea" -msgstr "Error while processing line" - -#: ../../../modules/web/Controllers/ConfigImportController.php:76 -msgid "Cuentas importadas" -msgstr "Accounts imported" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:164 -msgid "Archivo no encontrado" -msgstr "File not found" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:80 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:98 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:187 -#: ../../../../lib/SP/Services/UserGroup/UserToUserGroupService.php:57 -msgid "Grupo no encontrado" -msgstr "Group not found" - -#: ../../../../lib/SP/Services/Notification/NotificationService.php:102 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:121 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:180 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:210 -msgid "Notificación no encontrada" -msgstr "Notification not found" - -#: ../../../../lib/SP/Services/Plugin/PluginService.php:92 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:153 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:186 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:206 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:224 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:241 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:258 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:275 -msgid "Plugin no encontrado" -msgstr "Plugin not found" - -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:65 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:97 -msgid "Perfil no encontrado" -msgstr "Profile not found" - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:122 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:145 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:219 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:311 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:346 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:367 -msgid "Enlace no encontrado" -msgstr "Link not found" - -#: ../../../../lib/SP/Services/Tag/TagService.php:75 -#: ../../../../lib/SP/Services/Tag/TagService.php:94 -#: ../../../../lib/SP/Services/Tag/TagService.php:111 -msgid "Etiqueta no encontrada" -msgstr "Tag not found" - -#: ../../../../lib/SP/Services/User/UserService.php:192 -msgid "Usuario no encontrado" -msgstr "User not found" - -#: ../../../../lib/SP/Storage/Database/Database.php:131 -msgid "Consulta en blanco" -msgstr "Blank query" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 -msgid "Cuenta Privada Grupo" -msgstr "Private Account for Group" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 -msgid "Privada Grupo" -msgstr "Private for Group" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 -msgid "Sólo es necesaria para archivos XML de sysPass encriptados." -msgstr "It's only needed for sysPass XML files that have been encrypted." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 -msgid "" -"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " -"la actual." -msgstr "" -"It's only needed for sysPass XML files that have been encrypted with a " -"different master password from the current one." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 -msgid "Sólo es necesario para archivos CSV." -msgstr "It's only needed for CSV files." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 -msgid "" -"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" -"\"notas\"" -msgstr "" -"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" -"\"notes\"" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 -msgid "Crear cuenta privada para grupo" -msgstr "Create private account for group" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 -msgid "Notificación global" -msgstr "Global notification" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 -msgid "Global" -msgstr "Global" - -#: ../../../../lib/SP/Services/Service.php:115 -msgid "No es posible iniciar una transacción" -msgstr "Unable to start a transaction" - -#: ../../../../lib/SP/Services/Crypt/MasterPassService.php:101 -#: ../../../../lib/SP/Services/Import/ImportService.php:77 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "No es posible finalizar una transacción" -msgstr "Unable to finish a transaction" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 -msgid "Clave Maestra %s" -msgstr "Master Password %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 -msgid "" -"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " -"el siguiente inicio." -msgstr "" -"A new sysPass master password has been generated, so the next time you log " -"into the application it will be requested." - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 -msgid "La nueva clave es: %s" -msgstr "The new Master Password is: %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 -msgid "No olvide acceder lo antes posible para guardar los cambios." -msgstr "" -"Please, don't forget to log in as soon as possible to save the changes." - -#: ../../../config/strings.js.inc:84 -msgid "Este proceso puede durar algo de tiempo. Desea continuar?" -msgstr "This process could long some time. Do you wish to continue?" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 -msgid "Búsqueda" -msgstr "Searching" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 -msgid "" -"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." -msgstr "Sends an email to all users or only to those whose group is selected." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 -msgid "Enviar correo" -msgstr "Send email" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 -msgid "XML" -msgstr "XML" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 -msgid "CSV" -msgstr "CSV" - -#: ../../../../lib/SP/Services/Account/AccountService.php:163 -#: ../../../../lib/SP/Services/Account/AccountService.php:599 -msgid "Cuenta no encontrada" -msgstr "Account not found" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:161 -msgid "Hash de clave maestra actualizado" -msgstr "Master password hash updated" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 -msgid "Error al actualizar el hash de la clave maestra" -msgstr "Error while updating the master password hash" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:210 -#: ../../../config/actions.xml:823 -msgid "Editar Notificación" -msgstr "Edit Notification" - -#: ../../../modules/web/Controllers/UserController.php:266 -#: ../../../modules/web/Controllers/UserController.php:269 -msgid "Usuarios eliminados" -msgstr "Users deleted" - -#: ../../../modules/web/Controllers/NotificationController.php:360 -#: ../../../modules/web/Controllers/NotificationController.php:363 -msgid "Notificación actualizada" -msgstr "Notification updated" - -#: ../../../../lib/SP/Storage/Database/Database.php:259 -msgid "Restricción de integridad" -msgstr "Integrity constraint" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 -msgid "Actualizar hash de clave maestra" -msgstr "Update master password hash" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 -msgid "Modificada" -msgstr "Modified" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 -msgid "Eliminada" -msgstr "Removed" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 -msgid "Cuentas (H)" -msgstr "Accounts (H)" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:194 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:224 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:124 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:148 -msgid "Clave de encriptación incorrecta" -msgstr "Wrong encryption password" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:7 -msgid "Área de Texto" -msgstr "Text Area" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 -msgid "Devolver las cuentas en las que 'login' es propietario" -msgstr "Get the accounts in which the user login \"login\" is the owner" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 -msgid "Devolver las cuentas con grupo principal 'group_name'" -msgstr "Get the accounts which have the main group name \"group_name\"" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 -msgid "Devolver las cuentas privadas del usuario actual" -msgstr "Get the private accounts for the current user" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 -msgid "OP Cache" -msgstr "OP Cache" - -#: ../../../modules/web/Controllers/UpgradeController.php:71 -msgid "Código de seguridad incorrecto" -msgstr "Wrong security code" - -#: ../../../modules/web/Controllers/UpgradeController.php:67 -msgid "Es necesario confirmar la actualización" -msgstr "The updating need to be confirmed" - -#: ../../../modules/web/Controllers/UpgradeController.php:92 -msgid "En 5 segundos será redirigido al login" -msgstr "You will be redirected to log in within 5 seconds" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:70 -msgid "Error al aplicar la actualización de la aplicación" -msgstr "Error while applying the application update" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 -msgid "Tamaño máximo de archivo en kilobytes" -msgstr "Maximum file size in kilobytes" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 -msgid "Actualización de Aplicación" -msgstr "Application Update" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 -msgid "" -"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " -"o indique los IDs por defecto para los elementos huérfanos." -msgstr "" -"Some orphaned items have been found. Please, modify those items or enter the " -"default IDs for them." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 -msgid "Introducir un ID de usuario válido para cuentas" -msgstr "Enter a valid user ID for the accounts" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 -msgid "Introducir un ID de categoría válido para cuentas" -msgstr "Enter a valid category ID for the accounts" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 -msgid "Introducir un ID de cliente válido para cuentas" -msgstr "Enter a valid client ID for the accounts" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 -msgid "Introducir un ID de grupo válido para usuarios" -msgstr "Enter a valid group ID for the users" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 -msgid "Introducir un ID de perfil válido para usuarios" -msgstr "Enter a valid profile ID for the users" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 -msgid "" -"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " -"necesario reencriptar los datos almacenados" -msgstr "" -"This update uses a new encryption schema, so it will be needed to reencrypt " -"the whole encrypted data." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 -msgid "" -"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." -msgstr "It will be updated %s accounts. This process could take some time." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 -msgid "Para más información consulte: %s" -msgstr "You could get more info on: %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 -msgid "Introducir login de usuario válido" -msgstr "Enter a valid user login" - -#: ../../../../lib/SP/Services/Api/ApiService.php:96 -#: ../../../../lib/SP/Services/Auth/LoginService.php:137 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:103 -#: ../../../modules/web/Controllers/UserPassResetController.php:124 -msgid "Intentos excedidos" -msgstr "Attempts exceeded" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 -msgid "Clave del token" -msgstr "Token's password" - -#: ../../../../lib/SP/Services/Track/TrackService.php:162 -msgid "Intentos excedidos (%d/%d)" -msgstr "Attempts exceeded (%d/%d)" - -#: ../../../../lib/SP/Http/Address.php:49 -#: ../../../../lib/SP/Http/Address.php:51 -#: ../../../../lib/SP/Http/Address.php:68 -#: ../../../../lib/SP/Http/Address.php:70 -#: ../../../../lib/SP/Http/Address.php:90 -#: ../../../../lib/SP/Http/Address.php:109 -msgid "IP inválida" -msgstr "Invalid IP" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:139 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:277 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:291 -msgid "Token no encontrado" -msgstr "Token not found" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:68 -msgid "Error al crear track" -msgstr "Error while creating track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:85 -msgid "Error al eliminar track" -msgstr "Error while removing the track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:102 -msgid "Error al actualizar track" -msgstr "Error while updating the track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:146 -msgid "Error al obtener track" -msgstr "Error while retrieving the track" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:169 -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:202 -msgid "Error al obtener tracks" -msgstr "Error while retrieving the tracks" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 -msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." -msgstr "The exported items are accounts, clients, categories and tags." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 -msgid "Si no se indican los IDs, se crearán nuevos elementos." -msgstr "If the items IDs are not set, they will be created." - -#: ../../../../lib/SP/Services/Task/TaskService.php:184 -msgid "Esperando actualización de progreso ..." -msgstr "Waiting for progress updating ..." - -#: ../../../../inc/SP/Core/Upgrade/Account.class.php:47 -msgid "Actualizando IDs de cuentas" -msgstr "Updating account IDs" - -#: ../../../../inc/SP/Core/Upgrade/Category.class.php:48 -msgid "Actualizando IDs de categorías" -msgstr "Updating category IDs" - -#: ../../../../inc/SP/Core/Upgrade/Customer.class.php:48 -msgid "Actualizando IDs de clientes" -msgstr "Updating Client IDs" - -#: ../../../../inc/SP/Core/Upgrade/Group.class.php:51 -msgid "Actualizando IDs de grupos" -msgstr "Updating group IDs" - -#: ../../../../inc/SP/Core/Upgrade/Profile.class.php:54 -msgid "Actualizando IDs de perfil" -msgstr "Updating profile IDs" - -#: ../../../../inc/SP/Core/Upgrade/User.class.php:52 -msgid "Actualizando IDs de usuarios" -msgstr "Updating user IDs" - -#: ../../../config/strings.js.inc:87 -msgid "" -"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." -msgstr "Performing task. Please, do not close the browser window/tab." - -#: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 -msgid "Incluir Letras" -msgstr "Include Letters" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 -msgid "Sesión Encriptada" -msgstr "Encrypted Session" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 -msgid "Indica si los datos de la sesión están encriptados en el servidor" -msgstr "Tells whether the session data are encrypted in the server or not" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "Sí" -msgstr "Yes" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "No" -msgstr "No" - -#: ../../../config/strings.js.inc:89 -msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." -msgstr "Cookies disabled. The application won't work properly." - -#: ../../../config/strings.js.inc:90 -msgid "Portapapeles no soportado por el navegador." -msgstr "Clipboard not supported by your browser." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 -msgid "Atributo Login" -msgstr "Login Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 -msgid "" -"Define el atributo a utilizar para el login del usuario en la importación." -msgstr "Defines the attribute for the user's login when importing." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 -msgid "" -"Habilita el acceso a los usuarios que estén incluidos en los grupos " -"secundarios." -msgstr "Grants access to the users that are included in the secondary groups." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 -msgid "" -"Por defecto el usuario de un grupo secundario es permitido si el grupo " -"secundario está establecido como el primario del usuario." -msgstr "" -"By default, the user in a secondary group is granted if the secondary group " -"is set as the user's main group." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 -msgid "Acceso Grupos Secundarios" -msgstr "Secondary Groups Access" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 -msgid "Encriptar los datos de la sesión de PHP." -msgstr "Encrypt PHP session data" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 -msgid "" -"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " -"datos almacenados no serán legibles." -msgstr "" -"This feature increases the PHP sessions security, because the stored data " -"won't be readable." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 -msgid "Encriptar Sesión" -msgstr "Encrypt Session" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 -msgid "Atributo Nombre" -msgstr "Name Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 -msgid "" -"Define el atributo a utilizar para el nombre del usuario en la importación." -msgstr "Defines the attribute for the user's name when importing." - -#: ../../../config/strings.js.inc:92 -msgid "Hay una versión más reciente del plugin {0} ({1})" -msgstr "There is a more recent version of {0} plugin ({1})" - -#: ../../../../lib/SP/Bootstrap.php:267 -msgid "Versión de PHP requerida >= %s <= %s" -msgstr "Required PHP version >= %s <= %s" - -#: ../../../../lib/SP/Config/ConfigUtil.php:111 -msgid "Actual: %s - Necesario: 750" -msgstr "Current: %s - Needed: 750" - -#: ../../../../lib/SP/Core/Acl/Actions.php:176 -msgid "Acción no encontrada" -msgstr "Action not found" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:103 -#: ../../../../lib/SP/Core/Context/ContextBase.php:126 -msgid "Contexto ya inicializado" -msgstr "Context already initialized" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:109 -msgid "Contexto inválido" -msgstr "Invalid context" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:154 -msgid "Contexto no inicializado" -msgstr "Context not initialized" - -#: ../../../../lib/SP/Core/UI/Theme.php:193 -msgid "Clase no válida para iconos" -msgstr "Invalid icons class" - -#: ../../../../lib/SP/Mvc/Model/QueryCondition.php:71 -msgid "Tipo de filtro inválido" -msgstr "Invalid filter type" - -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:95 -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:157 -msgid "Tipo de objeto incorrecto" -msgstr "Wrong object type" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 -msgid "Realizado por: %s (%s)" -msgstr "Performed by: %s (%s)" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 -msgid "Dirección IP: %s" -msgstr "IP Address: %s" - -#: ../../../../lib/SP/Providers/Mail/MailProvider.php:91 -msgid "No es posible inicializar" -msgstr "Unable to initialize" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 -#: ../../../modules/web/Controllers/NotificationController.php:267 -#: ../../../modules/web/Controllers/NotificationController.php:298 -msgid "Notificación" -msgstr "Notification" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:302 -msgid "Error al eliminar los archivos" -msgstr "Error while deleting the files" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:292 -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:315 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:501 -#: ../../../../lib/SP/Services/Account/AccountService.php:616 -msgid "Error al eliminar las cuentas" -msgstr "Error while deleting the accounts" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:253 -msgid "Error al eliminar la categorías" -msgstr "Error while deleting the categories" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:264 -#: ../../../../lib/SP/Services/Client/ClientService.php:127 -msgid "Error al eliminar los clientes" -msgstr "Error while deleting the clients" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:239 -msgid "Error al eliminar los campos personalizados" -msgstr "Error while removing the custom fields" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:61 -msgid "Error al crear el tipo de campo" -msgstr "Error while creating the field type" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:97 -msgid "Error al actualizar el tipo de campo" -msgstr "Error while updating the field type" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:179 -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:198 -msgid "Error al eliminar el tipo de campo" -msgstr "Error while deleting the field type" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:179 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:302 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:140 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:159 -msgid "Error al eliminar las notificaciones" -msgstr "Error while deleting the notifications" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:447 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:493 -msgid "El enlace no existe" -msgstr "The link does not exist" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:243 -#: ../../../../lib/SP/Services/Tag/TagService.php:126 -msgid "Error al eliminar etiquetas" -msgstr "Error while removing the tags" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:353 -#: ../../../../lib/SP/Services/User/UserService.php:209 -msgid "Error al eliminar los usuarios" -msgstr "Error while deleting the users" - -#: ../../../../lib/SP/Services/User/UserPassService.php:256 -#: ../../../../lib/SP/Services/User/UserService.php:123 -#: ../../../../lib/SP/Services/User/UserService.php:154 -#: ../../../../lib/SP/Services/User/UserService.php:173 -msgid "El usuario no existe" -msgstr "The user does not exist" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:114 -msgid "Error al eliminar los perfiles" -msgstr "Error while removing the profiles" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 -msgid "Cuentas actualizadas: %d / %d" -msgstr "Accounts updated: %d / %d" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 -msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" -msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:145 -msgid "Error al eliminar archivos" -msgstr "Error while deleting the files" - -#: ../../../../lib/SP/Services/Api/ApiRequest.php:88 -msgid "Fomato incorrecto" -msgstr "Invalid format" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:43 -#: ../../../modules/api/Controllers/Help/TagHelp.php:65 -#: ../../../modules/api/Controllers/Help/TagHelp.php:89 -msgid "Id de etiqueta" -msgstr "Tag Id" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:158 -msgid "Error al eliminar tokens" -msgstr "Error while removing the tokens" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:763 -msgid "Exportación" -msgstr "Export" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:167 -msgid "Copiando base de datos" -msgstr "Copying database" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:303 -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:338 -msgid "Copiando aplicación" -msgstr "Copying application" - -#: ../../../../lib/SP/Services/Config/ConfigService.php:68 -#: ../../../../lib/SP/Services/Config/ConfigService.php:153 -msgid "Parámetro no encontrado (%s)" -msgstr "Parameter not found (%s)" - -#: ../../../../lib/SP/Services/Service.php:109 -msgid "Rollback" -msgstr "Rollback" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:160 -msgid "Error al comprobar clave temporal" -msgstr "Error while checking the temporary password" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:109 -msgid "Campo no encontrado" -msgstr "Field not found" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:130 -msgid "Error al eliminar los campos" -msgstr "Error while deleting the fields" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:233 -msgid "Exportando categorías" -msgstr "Exporting categories" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:345 -msgid "Exportando clientes" -msgstr "Exporting clients" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:391 -msgid "Exportando etiquetas" -msgstr "Exporting tags" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:435 -msgid "Exportando cuentas" -msgstr "Exporting accounts" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:158 -#: ../../../../lib/SP/Services/Import/KeepassImport.php:103 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:387 -msgid "Cuenta importada" -msgstr "Account imported" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:58 -msgid "Importación XML KeePass" -msgstr "KeePass XML Import" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:91 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:211 -msgid "Categoría importada" -msgstr "Category imported" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:58 -msgid "Importación XML sysPass" -msgstr "sysPass XML Import" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:162 -msgid "Datos desencriptados" -msgstr "Data unencrypted" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:250 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:290 -msgid "Cliente importado" -msgstr "Client imported" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:326 -msgid "Etiqueta importada" -msgstr "Tag imported" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:99 -msgid "Formato no detectado" -msgstr "Format not detected" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:107 -msgid "Not implemented" -msgstr "Not implemented" - -#: ../../../../lib/SP/Services/Install/MySQL.php:135 -msgid "No es posible comprobar el usuario de sysPass (%s)" -msgstr "Unable to check the sysPass user (%s)" - -#: ../../../../lib/SP/Services/Install/MySQL.php:213 -#: ../../../../lib/SP/Services/Install/MySQL.php:329 -#: ../../../../lib/SP/Services/Install/MySQL.php:341 -msgid "Error al crear la BBDD ('%s')" -msgstr "Error while creating the DB ('%s')" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 -msgid "Importado desde LDAP" -msgstr "Imported from LDAP" - -#: ../../../../lib/SP/Services/Mail/MailService.php:66 -msgid "Prueba de correo" -msgstr "Mail test" - -#: ../../../../lib/SP/Services/Mail/MailService.php:67 -msgid "" -"Esto es una prueba de correo para verificar el correcto funcionamiento de la " -"configuración." -msgstr "" -"This is a test email in order to verify that the configuration is working " -"right." - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:238 -msgid "Error al eliminar los enlaces" -msgstr "Error while removing the links" - -#: ../../../../lib/SP/Services/Task/TaskService.php:81 -msgid "No es posible crear archivo de bloqueo" -msgstr "Unable to create the lock file" - -#: ../../../../lib/SP/Services/Track/TrackService.php:163 -msgid "Segundos" -msgstr "Seconds" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:63 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:86 -msgid "Actualizar Aplicación" -msgstr "Update Application" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:57 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:59 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:102 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:139 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:171 -msgid "Actualización de campos personalizados" -msgstr "Custom fields update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:157 -#: ../../../modules/web/Controllers/CustomFieldController.php:235 -#: ../../../modules/web/Controllers/CustomFieldController.php:272 -msgid "Campo" -msgstr "Field" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:56 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "Actualización de enlaces públicos" -msgstr "Public links update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:90 -#: ../../../modules/web/Controllers/PublicLinkController.php:246 -msgid "Enlace" -msgstr "Link" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:115 -msgid "Error al eliminar los grupos" -msgstr "Error while deleting the groups" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 -msgid "No es posible leer el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:47 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:58 -msgid "Error al leer datos del archivo (%s)" -msgstr "Error while reading file data (%s)" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 -#: ../../../../lib/SP/Storage/File/FileCache.php:74 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 -msgid "No es posible crear el directorio (%s)" -msgstr "Unable to create the directory (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 -msgid "No es posible escribir en el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 -msgid "No es posible abrir el archivo (%s)" -msgstr "Unable to open the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:92 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:128 -msgid "Error al eliminar el archivo (%s)" -msgstr "Error while deleting the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:54 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:104 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:124 -msgid "No es posible leer/escribir el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 -msgid "Error al descomprimir datos del archivo (%s)" -msgstr "Error while decompressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 -msgid "Error al obtener los datos" -msgstr "Error while retrieving the data" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 -msgid "Error al comprimir datos del archivo (%s)" -msgstr "Error while compressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:112 -msgid "Error al escribir datos en el archivo (%s)" -msgstr "Error while writing data to file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 -msgid "Datos no cargados" -msgstr "Data not loaded" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 -msgid "No es posible cerrar el archivo (%s)" -msgstr "Unable to close the file (%s)" - -#: ../../../modules/api/Controllers/AccountController.php:70 -msgid "Cuenta visualizada" -msgstr "Account displayed" - -#: ../../../modules/api/Controllers/AccountController.php:102 -#: ../../../modules/web/Controllers/AccountController.php:554 -#: ../../../modules/web/Controllers/AccountController.php:610 -msgid "Clave visualizada" -msgstr "Password viewed" - -#: ../../../modules/api/Controllers/ConfigController.php:82 -#: ../../../modules/web/Controllers/ConfigBackupController.php:92 -msgid "Exportación de sysPass en XML" -msgstr "sysPass XML export" - -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:117 -#: ../../../modules/api/Controllers/TagController.php:146 -msgid "Etiqueta" -msgstr "Tag" - -#: ../../../modules/api/Init.php:135 -msgid "Es necesario actualizar" -msgstr "Updating needed" - -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "HTTPS" -msgstr "HTTPS" - -#: ../../../modules/web/Controllers/AccountController.php:649 -#: ../../../modules/web/Controllers/AccountController.php:683 -msgid "Clave copiada" -msgstr "Password copied" - -#: ../../../modules/web/Controllers/AccountFileController.php:83 -#: ../../../modules/web/Controllers/AccountFileController.php:96 -msgid "Archivo visualizado" -msgstr "File viewed" - -#: ../../../modules/web/Controllers/AccountFileController.php:136 -msgid "Archivo descargado" -msgstr "File downloaded" - -#: ../../../modules/web/Controllers/AccountFileController.php:186 -msgid "Extensión: %s" -msgstr "Extension: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:193 -msgid "Archivo: %s" -msgstr "File: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:201 -msgid "Máximo tamaño: %s" -msgstr "Maximum size: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:211 -msgid "Máximo tamaño: %d KB" -msgstr "Maximum size: %d KB" - -#: ../../../modules/web/Controllers/AccountFileController.php:334 -msgid "Archivo Eliminado" -msgstr "File Deleted" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 -#: ../../../modules/web/Controllers/AuthTokenController.php:226 -#: ../../../modules/web/Controllers/AuthTokenController.php:292 -#: ../../../modules/web/Controllers/AuthTokenController.php:301 -#: ../../../modules/web/Controllers/AuthTokenController.php:339 -msgid "Autorización" -msgstr "Authorization" - -#: ../../../modules/web/Controllers/AuthTokenController.php:338 -msgid "Autorización visualizada" -msgstr "Authorization viewed" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:78 -msgid "Archivos habilitados" -msgstr "Files enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:83 -msgid "Archivos deshabilitados" -msgstr "Files disabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:96 -msgid "Enlaces públicos habilitados" -msgstr "Public links enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:101 -msgid "Enlaces públicos deshabilitados" -msgstr "Public links disabled" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 -msgid "Esta clave estará activa hasta: %s" -msgstr "This password will be valid until: %s" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -msgid "Email enviado" -msgstr "Email sent" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -msgid "Error al enviar email" -msgstr "Error while sending the email" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:97 -msgid "Syslog remoto habilitado" -msgstr "Remote syslog enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:153 -msgid "Auth Basic habilitada" -msgstr "Auth Basic enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:159 -msgid "Auth Basic deshabiltada" -msgstr "Auth Basic disabled" - -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -msgid "No se importaron cuentas" -msgstr "No accounts were imported" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:115 -#: ../../../modules/web/Controllers/ConfigLdapController.php:238 -msgid "Parámetros de LDAP incorrectos" -msgstr "Wrong LDAP parameters" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:245 -msgid "Importación LDAP" -msgstr "LDAP Import" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 -msgid "Usuarios importados: %d / %d" -msgstr "Imported users: %d / %d" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 -msgid "Errores: %d" -msgstr "Errors: %d" - -#: ../../../modules/web/Controllers/ConfigMailController.php:145 -msgid "Compruebe su buzón de correo" -msgstr "Please, check your inbox" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:99 -msgid "DokuWiki habilitada" -msgstr "DokuWiki enabled" - -#: ../../../modules/web/Controllers/CustomFieldController.php:298 -msgid "Ver Campo" -msgstr "View Field" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 -#: ../../../config/actions.xml:439 -msgid "Actualizar Enlace Público" -msgstr "Update Public Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 -msgid "Nuevo Enlace" -msgstr "New Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 -msgid "No disponible" -msgstr "Unavailable" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 -msgid "Refrescar" -msgstr "Refresh" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 -msgid "Sólo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/Controllers/PublicLinkController.php:109 -msgid "Nuevo Enlace Público" -msgstr "New Public Link" - -#: ../../../modules/web/Controllers/PublicLinkController.php:196 -msgid "Editar Enlace Público" -msgstr "Edit Public Link" - -#: ../../../modules/web/Controllers/StatusController.php:94 -msgid "Versión no disponible" -msgstr "Version unavailable" - -#: ../../../modules/web/Controllers/StatusController.php:142 -msgid "Notificaciones no disponibles" -msgstr "Notifications not available" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 -#: ../../../config/actions.xml:511 -msgid "Ver Etiqueta" -msgstr "View Tag" - -#: ../../../modules/web/Controllers/UserPassResetController.php:90 -msgid "Datos incorrectos" -msgstr "Wrong data" - -#: ../../../modules/web/Controllers/UserPassResetController.php:94 -msgid "No es posible recuperar la clave" -msgstr "Unable to reset the password" - -#: ../../../modules/web/Forms/PublicLinkForm.php:85 -msgid "Es necesario una cuenta" -msgstr "An account is needed" - -#: ../../../config/strings.js.inc:91 -msgid "Realizando auto-login" -msgstr "Performing auto-login" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 -msgid "Abrir enlace a: %s" -msgstr "Open link to: %s" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 -msgid "Cuenta Privada (Grupo)" -msgstr "Private Account (Group)" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 -msgid "Notes" -msgstr "Notes" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 -msgid "Usar Auth Basic" -msgstr "Use Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:26 -msgid "Usar auto-login con Auth Basic" -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 -msgid "Dominio" -msgstr "Domain" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 -msgid "" -"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " -"el de Auth Basic." -msgstr "" -"The domain will be added to the sysPass user name for checking against the " -"Auth Basic one." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 -msgid "Nombre de dominio" -msgstr "Domain name" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 -msgid "" -"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default users group for newly SSO users" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 -msgid "" -"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default profile for the newly created SSO users." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 -msgid "Importación" -msgstr "Import" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 -msgid "Importar Grupos" -msgstr "Import Groups" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 -msgid "Atributo Nombre Grupo" -msgstr "Group Name Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 -msgid "" -"Define el atributo a utilizar para el nombre del grupo en la importación." -msgstr "Defines the attribute for the user group name when importing." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 -msgid "Filtro" -msgstr "Filter" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 -msgid "Filtro para importar usuarios o grupos de LDAP." -msgstr "Filter for importing LDAP users or groups." - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 -msgid "Destinatarios" -msgstr "Recipients" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 -msgid "Indica si el cliente es visible para todos los usuarios." -msgstr "Sets whether the client is visible by all users" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 -msgid "" -"Por defecto los clientes asignados a cuentas sólo son visibles para los " -"usuarios con acceso a las cuentas." -msgstr "" -"By default, the clients assigned to accounts only will be visible to users " -"who are granted to access to the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 -msgid "URL" -msgstr "URL" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 -msgid "Login SSO" -msgstr "SSO Login " - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 -msgid "Login de inicio de sesión con SSO" -msgstr "Session login with SSO" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 -msgid "Sólo para administradores de la aplicación" -msgstr "Only for application administrators" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 -msgid "Solo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 -msgid "Para iniciar la actualización introduzca el código de seguridad" -msgstr "Please enter the security code to start the upgrade" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:73 -msgid "No es posible cambiar el valor de la clave" -msgstr "Unable to change password value" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:345 -msgid "Filtro incorrecto" -msgstr "Wrong filter" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:159 -msgid "El campo personalizado no existe" -msgstr "Custom field not found" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:212 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:137 -msgid "Error al eliminar los plugins" -msgstr "Error while deleting the plugins" - -#: ../../../../lib/SP/Services/Account/AccountService.php:220 -msgid "Clave maestra no establecida" -msgstr "Master password not set" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:134 -msgid "Error al eliminar las categorías" -msgstr "Error while deleting categories" - -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:80 -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:87 -msgid "No es posible restaurar la configuración" -msgstr "Unable to restore configuration" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldTypeService.php:84 -msgid "Tipo de campo no encontrado" -msgstr "Field type not found" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:177 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:176 -msgid "Fallo en la verificación del hash de integridad" -msgstr "Error while checking integrity hash" - -#: ../../../../lib/SP/Services/Install/Installer.php:359 -msgid "Error al crear el usuario 'admin'" -msgstr "Error while creating 'admin' user" - -#: ../../../../lib/SP/Services/Install/MySQL.php:309 -msgid "Error al seleccionar la BBDD '%s' (%s)" -msgstr "Error while selecting '%s' database (%s)" - -#: ../../../../lib/SP/Services/Mail/MailService.php:186 -msgid "Servicio de correo no disponible" -msgstr "Mail service unavailable" - -#: ../../../../lib/SP/Services/Service.php:137 -#: ../../../../lib/SP/Services/Service.php:144 -msgid "Error ol obtener la clave maestra del contexto" -msgstr "Error while retrieving master pass from context" - -#: ../../../../lib/SP/Services/Service.php:160 -#: ../../../../lib/SP/Services/Service.php:164 -msgid "Error ol establecer la clave maestra en el contexto" -msgstr "Error while setting master password in context" - -#: ../../../../lib/SP/Services/Track/TrackService.php:87 -#: ../../../../lib/SP/Services/Track/TrackService.php:101 -#: ../../../../lib/SP/Services/Track/TrackService.php:128 -msgid "Track no encontrado" -msgstr "Track not found" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:55 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:85 -msgid "Actualización de autorizaciones API" -msgstr "API authorizations update" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 -msgid "No es posible leer desde el archivo (%s)" -msgstr "Unable to read from file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 -msgid "No es posible escribir el archivo (%s)" -msgstr "Unable to write in file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 -msgid "Archivo no encontrado (%s)" -msgstr "File not found (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 -msgid "No es posible eliminar el archivo (%s)" -msgstr "Unable to delete file (%s)" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:89 -#: ../../../../lib/SP/Storage/File/XmlHandler.php:309 -msgid "El nodo XML no existe" -msgstr "The XML node does not exist" - -#: ../../../../lib/SP/Util/ImageUtil.php:65 -msgid "Imagen no válida" -msgstr "Invalid image" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:117 -msgid "Verificación de datos exportados finalizada" -msgstr "Verification of exported data finished" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 -msgid "Encriptado" -msgstr "Encrypted" - -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:173 -msgid "Error al actualizar los datos del campo personalizado" -msgstr "Error while updating custom field's data" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 -msgid "Enlace Directo" -msgstr "Direct Link" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 -msgid "Parámetros especiales" -msgstr "Special parameters" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 -msgid "" -"Es posible utilizar uno o varios parámetros especiales separados por espacios" -msgstr "" -"You could use either one or several special parameters separated by blank " -"spaces" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 -msgid "Devolver la cuenta con ID" -msgstr "Returns the account for the given ID" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 -msgid "Operador para los parámetros especiales" -msgstr "Operator for special parameters" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 -msgid "Los datos serán encriptados al guardar" -msgstr "Data will be encrypted after saving" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 -msgid "Los datos serán desencriptados al guardar" -msgstr "Data will be unencrypted after saving" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 -msgid "Caducidad clave cuentas" -msgstr "Accounts password expiry" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 -msgid "Habilita la caducidad de la clave de cuentas." -msgstr "Enables the accounts password expiry date." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 -msgid "Tiempo caducidad clave" -msgstr "Password expiry time" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 -msgid "Número de días para la caducidad de la clave de cuenta." -msgstr "Number of days for the account expiry date." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 -msgid "Tiempo caducidad (días)" -msgstr "Expire time (days)" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 -msgid "" -"Confirmar el cambio de clave maestra después de haber leído las advertencias " -"anteriores." -msgstr "" -"Confirm the master password change after you have been read all the above " -"warnings." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 -msgid "Usar Auth Basic para autorizar los accesos a la aplicación." -msgstr "Use Auth Basic for authorizing the accesses to the application" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 -msgid "Usar Auth Basic SSO" -msgstr "Use Auth Basic SSO" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 -msgid "Usar auto-login con Auth Basic." -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 -msgid "Usar proxy para comprobación de actualizaciones y notificaciones." -msgstr "Use a proxy server for checking out for updates and notifications." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 -msgid "Usado en" -msgstr "Used in" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 -msgid "(*) Incluido en grupo" -msgstr "(*) Listed in group" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -msgid "La extensión '%s' no está disponible" -msgstr "The '%s' extension is unavailable" - -#: ../../../../lib/SP/Services/Service.php:133 -#: ../../../../lib/SP/Services/Service.php:140 -msgid "Error al obtener la clave maestra del contexto" -msgstr "Error while retrieving master password from context" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 -msgid "Esta extensión es necesaria para mostrar las claves como imágenes" -msgstr "This extension is needed to display passwords as images" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 -msgid "" -"Esta extensión es necesaria para generar los archivos de copia de seguridad " -"de la aplicación" -msgstr "This extension is needed to build the application's backup files" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 -msgid "" -"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" -msgstr "This extension is needed to check for sysPass updates and notices" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 -msgid "Extensiones no disponibles" -msgstr "Unavailable extensions" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 -msgid "Esta extensión es necesaria conectar con el servidor de LDAP" -msgstr "This extension is needed to connect to the LDAP server" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 -msgid "Esta extensión es necesaria conectar con DokuWiki" -msgstr "This extension is needed to connect with DokuWiki" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:31 -msgid "Favoritos" -msgstr "Favorites" - #. (itstool) path: action/text #: ../../../config/actions.xml:97 msgid "Gestión Plugins" msgstr "Plugins Management" +#. (itstool) path: action/text +#: ../../../config/actions.xml:103 +msgid "Usuarios y Accesos" +msgstr "Users and Accesses" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:109 +msgid "Seguridad y Auditoría" +msgstr "Security and Audit" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:115 +msgid "Gestión Usuarios" +msgstr "Users Management" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:121 +msgid "Gestión Grupos" +msgstr "Groups Management" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:127 +msgid "Gestión Perfiles" +msgstr "Profiles Management" + #. (itstool) path: action/text #: ../../../config/actions.xml:139 msgid "Buscar Eventos" @@ -7521,6 +4674,21 @@ msgstr "Search for Events" msgid "Limpiar Eventos" msgstr "Clear Events" +#. (itstool) path: action/text +#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 +msgid "Ver Cuenta" +msgstr "View Account" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:181 +msgid "Editar Clave de Cuenta" +msgstr "Edit Account Password" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 +msgid "Subir Archivo" +msgstr "Upload File" + #. (itstool) path: action/text #: ../../../config/actions.xml:229 msgid "Buscar Archivos" @@ -7556,11 +4724,6 @@ msgstr "Edit Wiki" msgid "Eliminar Wiki" msgstr "Delete Wiki" -#. (itstool) path: action/text -#: ../../../config/actions.xml:331 -msgid "Nuevo CLiente" -msgstr "New Client" - #. (itstool) path: action/text #: ../../../config/actions.xml:361 msgid "Nuevo Token API" @@ -7612,17 +4775,20 @@ msgid "Buscar Campo Personalizado" msgstr "Search for Custom Field" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 -#: ../../../config/actions.xml:433 -msgid "Eliminar Enlace Público" -msgstr "Delete Public Link" +#: ../../../config/actions.xml:427 +msgid "Ver Enlace Público" +msgstr "Show Public Link" #. (itstool) path: action/text #: ../../../config/actions.xml:445 msgid "Buscar Enlace Público" msgstr "Search for Public Link" +#. (itstool) path: action/text +#: ../../../config/actions.xml:535 +msgid "Nuevo Plugin" +msgstr "New Plugin" + #. (itstool) path: action/text #: ../../../config/actions.xml:553 msgid "Habilitar Plugin" @@ -7703,6 +4869,11 @@ msgstr "XML Import" msgid "Configuración Exportación" msgstr "Export Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:763 +msgid "Exportación" +msgstr "Export" + #. (itstool) path: action/text #: ../../../config/actions.xml:769 msgid "Configuración Email" @@ -7713,6 +4884,11 @@ msgstr "Email Configuration" msgid "Configuración LDAP" msgstr "LDAP Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:781 +msgid "Sincronización LDAP" +msgstr "LDAP synchronization" + #. (itstool) path: action/text #: ../../../config/actions.xml:787 msgid "Gestión de Cuenta (H)" @@ -7723,432 +4899,11 @@ msgstr "Account Management (H)" msgid "Crear Notificación" msgstr "Create Notification" -#: ../../../../lib/SP/Services/Import/SyspassImport.php:177 -msgid "" -"Si está importando un archivo exportado desde el mismo origen, los datos " -"pueden estar comprometidos." -msgstr "" -"If you are importing an exported file from the same origin, the data could " -"be compromised." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:154 -msgid "El archivo de actualización no contiene datos" -msgstr "The update file does not contain data" - -#: ../../../modules/api/Controllers/CategoryController.php:62 -msgid "Categoría visualizada" -msgstr "Category displayed" - -#: ../../../modules/api/Controllers/ClientController.php:63 -msgid "Cliente visualizado" -msgstr "Client displayed" - -#: ../../../modules/api/Controllers/ConfigController.php:58 -#: ../../../modules/api/Controllers/ConfigController.php:83 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 -msgid "Ruta" -msgstr "Path" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 -msgid "Array con Ids de etiquetas" -msgstr "Array with tags id" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 -msgid "Array con Ids de etiquetas a filtrar" -msgstr "Array with tags id for filtering" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 -msgid "Operador de filtrado" -msgstr "Filtering operator" - -#: ../../../modules/api/Controllers/TagController.php:61 -msgid "Etiqueta visualizada" -msgstr "Tag displayed" - -#: ../../../modules/web/Controllers/AccountFileController.php:387 -msgid "No hay archivos asociados a la cuenta" -msgstr "There are no linked files for the account" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:76 -msgid "Error al crear permiso" -msgstr "Error while creating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:115 -msgid "Error al actualizar permiso" -msgstr "Error while updating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:134 -msgid "Error al eliminar permiso" -msgstr "Error while removing the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:249 -msgid "Error al eliminar los permisos" -msgstr "Error while removing the permissions" - -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:84 -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:105 -msgid "Permiso no encontrada" -msgstr "Permission not found" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:71 -#: ../../../config/actions.xml:847 -msgid "Ver Permiso" -msgstr "View Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:156 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:157 -#: ../../../config/actions.xml:853 -msgid "Nuevo Permiso" -msgstr "New Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:211 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:174 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:175 -#: ../../../config/actions.xml:859 -msgid "Editar Permiso" -msgstr "Edit Permission" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:248 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:251 -msgid "Permisos eliminados" -msgstr "Permissions deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:259 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:263 -msgid "Permiso eliminado" -msgstr "Permission deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:289 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:293 -msgid "Permiso creado" -msgstr "Permission added" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:325 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:329 -msgid "Permiso actualizado" -msgstr "Permission updated" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:90 -msgid "Permisos por Defecto" -msgstr "Default Permissions" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 -msgid "Prioridad" -msgstr "Priority" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 -msgid "Forzado" -msgstr "Forced" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:141 -#: ../../../config/actions.xml:841 -msgid "Buscar Permiso" -msgstr "Search for Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:191 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:192 -#: ../../../config/actions.xml:865 -msgid "Eliminar Permiso" -msgstr "Delete Permission" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:208 -msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" -msgstr "An element of type user, group or profile need to be set" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:133 -msgid "No hay permisos definidos" -msgstr "There aren't any defined permissions" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:75 -msgid "" -"Prioridad de asignación en caso de coincidir con otros permisos asignados " -"por usuario, grupo o perfil." -msgstr "" -"Assignment priority if permissions match with others assigned by user, group " -"or profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 -msgid "Prioridad de asignación" -msgstr "Assignment Priority" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:107 -msgid "Indica si los permisos serán forzados al crear o modificar la cuenta." -msgstr "" -"Enforces the permissions to be set either on creating or updating an " -"account ." - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:109 -msgid "Los permisos serán añadidos a los existentes." -msgstr "Permissions will be merged with the existing ones." - -#. (itstool) path: action/text -#: ../../../config/actions.xml:835 -msgid "Gestión Permisos" -msgstr "Permissions Management" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 -msgid "Es necesaria una clave con al menos %d caracteres" -msgstr "Password needs to be %d characters long" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:77 -msgid "La clave no cumple los carácteres requeridos" -msgstr "Password does not contain the required characters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:82 -msgid "Es necesario que la clave contenga letras" -msgstr "Password needs to contain letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:86 -msgid "Es necesario que la clave contenga minúsculas" -msgstr "Password needs to contain lower case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:90 -msgid "Es necesario que la clave contenga mayúsculas" -msgstr "Password needs to contain upper case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:95 -msgid "Es necesario que la clave contenga números" -msgstr "Password needs to contain numbers" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:99 -msgid "Es necesario que la clave contenga símbolos" -msgstr "Password needs to contain symbols" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:301 -msgid "Error al desconectar del servidor de LDAP" -msgstr "Error while disconnecting from LDAP server" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:84 -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:105 -msgid "Valor no encontrada" -msgstr "Value not found" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:188 -msgid "Error al eliminar los valores" -msgstr "Error while deleting the values" - -#: ../../../../lib/SP/Services/Track/TrackService.php:208 -msgid "Dirección IP no establecida" -msgstr "IP address not set" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 -msgid "Valores Predeterminados" -msgstr "Preset Values" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 -#: ../../../config/actions.xml:853 -msgid "Buscar Valor" -msgstr "Search for Value" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 -msgid "Valor de Permiso" -msgstr "Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 -msgid "Nuevo Valor de Permiso" -msgstr "New Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 -msgid "Valor de Cuenta Privada" -msgstr "Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 -msgid "Nuevo Valor de Cuenta Privada" -msgstr "New Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 -msgid "Valor de Timeout de Sesión" -msgstr "Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 -msgid "Nuevo Valor de Timeout de Sesión" -msgstr "New Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 -msgid "Valor de Clave de Cuentas" -msgstr "Account Password Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 -msgid "Nuevo Valor de Clave de Cuentas" -msgstr "New Account Password Preset" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 -#: ../../../config/actions.xml:871 -msgid "Editar Valor" -msgstr "Edit Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 -#: ../../../config/actions.xml:877 -msgid "Eliminar Valor" -msgstr "Delete Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 -#: ../../../config/actions.xml:859 -msgid "Ver Valor" -msgstr "Display Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 -#: ../../../config/actions.xml:865 -msgid "Nuevo Valor" -msgstr "New Value" - -#: ../../../modules/web/Controllers/ItemPresetController.php:266 -#: ../../../modules/web/Controllers/ItemPresetController.php:269 -msgid "Valores eliminados" -msgstr "Values deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:277 -#: ../../../modules/web/Controllers/ItemPresetController.php:281 -msgid "Valor eliminado" -msgstr "Value deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:309 -#: ../../../modules/web/Controllers/ItemPresetController.php:314 -msgid "Valor creado" -msgstr "Value created" - -#: ../../../modules/web/Controllers/ItemPresetController.php:348 -#: ../../../modules/web/Controllers/ItemPresetController.php:353 -msgid "Valor actualizado" -msgstr "Value updated" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:116 -msgid "Tipo de valor no definido o incorrecto" -msgstr "Value type not set or incorrect" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:182 -msgid "Expresión regular inválida" -msgstr "Invalid regular expression" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 -msgid "Habilita la conexión mediante TLS." -msgstr "Enables the connection over TLS" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 -msgid "Puntuación" -msgstr "Score" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 -msgid "Expresión Regular" -msgstr "Regular Expression" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 -msgid "Incluir Minúsculas" -msgstr "Include Lowercase" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 -msgid "Las cuentas sólo serán visibles por el usuario." -msgstr "Accounts will be only visible by the user." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 -msgid "Los administradores no podrán acceder a las cuentas." -msgstr "Administrators won't be able to display the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 -msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." -msgstr "Accounts will be only visible by the user and his/her main group." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 -msgid "Dirección IP" -msgstr "IP Address" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 -msgid "Timeout" -msgstr "Timeout" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 -msgid "" -"Prioridad de asignación en caso de coincidir con otros valores asignados por " -"usuario, grupo o perfil." -msgstr "" -"Assignment priority if values match with others assigned by user, group or " -"profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 -msgid "" -"Indica si los valores serán forzados al crear o modificar los elementos." -msgstr "Enforces the values to be set either on creating or updating an item." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 -msgid "Los valores serán añadidos a los existentes." -msgstr "Values will be merged with the existing ones." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 -msgid "Valores por Defecto" -msgstr "Default Values" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 -msgid "Gestión de Valores por Defecto" -msgstr "Default Values Management" - #. (itstool) path: action/text #: ../../../config/actions.xml:847 msgid "Gestión Valores Predeterminados" msgstr "Preset Values Management" -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:118 -msgid "Error al vaciar tracks" -msgstr "Error while clearing tracks out" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 -msgid "Tracks" -msgstr "Tracks" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 -msgid "Fecha Desbloqueo" -msgstr "Date Unlocked" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 -#: ../../../config/actions.xml:889 -msgid "Buscar Track" -msgstr "Search for track" - -#: ../../../modules/web/Controllers/TrackController.php:110 -msgid "Track desbloqueado" -msgstr "Track unlocked" - -#: ../../../modules/web/Controllers/TrackController.php:135 -msgid "Tracks limpiados" -msgstr "Tracks cleared out" - -#: ../../../config/strings.js.inc:96 -msgid "Vaciar los tracks?" -msgstr "Clear tracks out?" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:109 -msgid "Seguridad y Auditoría" -msgstr "Security and Audit" - #. (itstool) path: action/text #: ../../../config/actions.xml:883 msgid "Gestión de Tracks" @@ -8164,47 +4919,2034 @@ msgstr "Unlock track" msgid "Vaciar tracks" msgstr "Clear tracks out" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 -msgid "Id de grupo" -msgstr "Group Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:4 +msgid "Color" +msgstr "Color" -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 -msgid "Array con Ids de usuarios" -msgstr "Array with users Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:5 +msgid "Número" +msgstr "Number" -#: ../../../modules/api/Controllers/UserGroupController.php:61 -msgid "Grupo visualizado" -msgstr "Group viewed" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:6 +msgid "Teléfono" +msgstr "Phone" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 -#: ../../../config/actions.xml:493 -msgid "Actualización Masiva" -msgstr "Bulk Update" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:7 +msgid "Área de Texto" +msgstr "Text Area" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 -msgid "Propietario" -msgstr "Owner" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:8 +msgid "Texto" +msgstr "Text" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 -msgid "Buscar cuentas por nombre de cliente" -msgstr "Search for accounts by client name" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:9 +msgid "Link" +msgstr "Link" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 -msgid "Buscar cuentas por nombre de categoría" -msgstr "Search for accounts by category name" +#~ msgid "CONSULTA INVÁLIDA" +#~ msgstr "CONSULTA INVÁLIDA" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 -msgid "Eliminar Historial" -msgstr "Delete History" +#~ msgid "La sesión no se ha iniciado o ha caducado" +#~ msgstr "A sessão não se iniciou ou caducou" + +#~ msgid "Es necesario un nombre de cuenta" +#~ msgstr "É necessário um nome de conta" + +#, fuzzy +#~ msgid "Es necesario un nombre de cliente" +#~ msgstr "É necessário um nome de cliente" + +#, fuzzy +#~ msgid "Es necesario un usuario" +#~ msgstr "É necessário um nome de utilizador" + +#~ msgid "Es necesaria una clave" +#~ msgstr "É necessária uma chave" + +#~ msgid "Es necesario una categoría" +#~ msgstr "É necessária um categoria" + +#~ msgid "Acción Inválida" +#~ msgstr "Acção Inválida" + +#~ msgid "Las claves no coinciden" +#~ msgstr "As palavras-chave não coincidem" + +#~ msgid "Error al crear la cuenta" +#~ msgstr "Erro ao criar a conta" + +#~ msgid "Error al modificar la cuenta" +#~ msgstr "Erro ao modificar a conta" + +#~ msgid "Error al eliminar la cuenta" +#~ msgstr "Erro ao eliminar a conta" + +#~ msgid "Error al actualizar la clave" +#~ msgstr "Erro ao actualizar a palavra-chave" + +#~ msgid "Cuenta restaurada" +#~ msgstr "Conta restaurada" + +#~ msgid "Error al restaurar cuenta" +#~ msgstr "Erro ao restaurar a conta" + +#, fuzzy +#~ msgid "Es necesario un nombre de usuario" +#~ msgstr "É necessário um nome de utilizador" + +#~ msgid "Es necesario un login" +#~ msgstr "É necessário um login" + +#~ msgid "Es necesario un perfil" +#~ msgstr "É necessário um perfil" + +#~ msgid "Es necesario un grupo" +#~ msgstr "É necessário um grupo" + +#~ msgid "Es necesario un email" +#~ msgstr "É necessário um email" + +#~ msgid "Ey, esto es una DEMO!!" +#~ msgstr "Ei, isto é uma DEMONSTRAÇÃO!!" + +#~ msgid "La clave no puede estar en blanco" +#~ msgstr "A palavra-chave não pode estar em branco" + +#~ msgid "Usuario creado" +#~ msgstr "Utilizador criado" + +#~ msgid "Error al crear el usuario" +#~ msgstr "Erro ao criar o utilizador" + +#~ msgid "Usuario actualizado" +#~ msgstr "Utilizador actualizado" + +#~ msgid "Error al actualizar el usuario" +#~ msgstr "Erro ao actualizar o utilizador" + +#~ msgid "Error al modificar la clave" +#~ msgstr "Erro ao modificar a palavra-chave" + +#~ msgid "No es posible eliminar, usuario en uso" +#~ msgstr "Não é possível eliminar, utilizador em uso" + +#~ msgid "Usuario eliminado" +#~ msgstr "Utilizador eliminado" + +#~ msgid "Error al eliminar el usuario" +#~ msgstr "Erro ao eliminar o utilizador" + +#~ msgid "Es necesario un nombre de grupo" +#~ msgstr "É necessário um nome de grupo" + +#~ msgid "Nombre de grupo duplicado" +#~ msgstr "Nome de grupo duplicado" + +#~ msgid "Error al crear el grupo" +#~ msgstr "Erro ao criar o grupo" + +#~ msgid "Error al actualizar el grupo" +#~ msgstr "Erro ao actualizar o grupo" + +#~ msgid "No es posible eliminar" +#~ msgstr "Não é possível eliminar" + +#~ msgid "Error al eliminar el grupo" +#~ msgstr "Erro ao eliminar o grupo" + +#~ msgid "Es necesario un nombre de perfil" +#~ msgstr "É necessário um nome de perfil" + +#~ msgid "Nombre de perfil duplicado" +#~ msgstr "Nome de perfil duplicado" + +#~ msgid "Perfil creado" +#~ msgstr "Perfil criado" + +#~ msgid "Perfil actualizado" +#~ msgstr "Perfil actualizado" + +#~ msgid "Perfil eliminado" +#~ msgstr "Perfil eliminado" + +#~ msgid "Es necesario un nombre de categoría" +#~ msgstr "É necessário um nome de categoria" + +#~ msgid "Autorización creada" +#~ msgstr "Autorização criada" + +#~ msgid "Autorización actualizada" +#~ msgstr "Autorização actualizada" + +#~ msgid "Autorización eliminada" +#~ msgstr "Autorização eliminada" + +#~ msgid "Nombre del campo no indicado" +#~ msgstr "Nome do campo não indicado" + +#~ msgid "Tipo del campo no indicado" +#~ msgstr "Tipo de campo não indicado" + +#~ msgid "Módulo del campo no indicado" +#~ msgstr "Módulo do campo não indicado" + +#~ msgid "Campo creado" +#~ msgstr "Campo criado" + +#~ msgid "Campo actualizado" +#~ msgstr "Campo actualizado" + +#~ msgid "Campo eliminado" +#~ msgstr "Campo eliminado" + +#~ msgid "Realizar Backup" +#~ msgstr "Realizar cópia de segurança" + +#~ msgid "Error al realizar el backup" +#~ msgstr "Erro ao realizar a cópia de segurança" + +#~ msgid "Revise el registro de eventos para más detalles" +#~ msgstr "Veja o registo de eventos para mais detalhes" + +#~ msgid "Copia de la aplicación y base de datos realizada correctamente" +#~ msgstr "Cópia da aplicação e da base de dados realizada correctamente" + +#~ msgid "Error al realizar la exportación de cuentas" +#~ msgstr "Erro ao exportar as contas" + +#~ msgid "Error al realizar la exportación" +#~ msgstr "Error ao realizar a exportação" + +#~ msgid "Exportación de cuentas realizada correctamente" +#~ msgstr "Exportação de contas realizada correctamente" + +#~ msgid "Los parámetros de LDAP no están configurados" +#~ msgstr "Os parâmetros de LDAP não estão configurados" + +#~ msgid "Conexión a LDAP correcta" +#~ msgstr "Conexão com LDAP OK" + +#~ msgid "Objetos encontrados" +#~ msgstr "Objectos encontrados" + +#~ msgid "Modificar Configuración" +#~ msgstr "Editar Configuração" + +#~ msgid "El tamaño máximo por archivo es de 16MB" +#~ msgstr "O tamanho máximo por arquivo é de 16MB" + +#, fuzzy +#~ msgid "Faltan parámetros de Proxy" +#~ msgstr "Faltam parâmetros do Proxy" + +#~ msgid "Proxy habiltado" +#~ msgstr "Proxy activado" + +#~ msgid "Proxy deshabilitado" +#~ msgstr "Proxy desactivado" + +#~ msgid "Sección" +#~ msgstr "Secção" + +#~ msgid "Faltan parámetros de Wiki" +#~ msgstr "Faltam parâmetros da Wiki" + +#~ msgid "Wiki habiltada" +#~ msgstr "Wiki activada" + +#~ msgid "Wiki deshabilitada" +#~ msgstr "Wiki desactivada" + +#~ msgid "Faltan parámetros de LDAP" +#~ msgstr "Faltam parâmetros de LDAP" + +#~ msgid "LDAP habiltado" +#~ msgstr "LDAP activado" + +#~ msgid "LDAP deshabilitado" +#~ msgstr "LDAP desactivado" + +#~ msgid "Faltan parámetros de Correo" +#~ msgstr "Faltam parâmetros de Correio" + +#~ msgid "Correo habiltado" +#~ msgstr "Correio activado" + +#~ msgid "Correo deshabilitado" +#~ msgstr "Correio desactivado" + +#~ msgid "Configuración actualizada" +#~ msgstr "Configuração actualizada" + +#~ msgid "Clave maestra no indicada" +#~ msgstr "Master password needed" + +#~ msgid "Se ha de confirmar el cambio de clave" +#~ msgstr "The password update must be confirmed" + +#~ msgid "Las claves son idénticas" +#~ msgstr "The passwords are the same" + +#~ msgid "Las claves maestras no coinciden" +#~ msgstr "The master passwords do not match" + +#~ msgid "La clave maestra actual no coincide" +#~ msgstr "The current master password does not match" + +#~ msgid "Errores al actualizar las claves de las cuentas" +#~ msgstr "Error while updating the accounts' passwords" + +#~ msgid "Errores al actualizar las claves de las cuentas del histórico" +#~ msgstr "Error while updating the accounts' passwords in history" + +#~ msgid "Errores al actualizar datos de campos personalizados" +#~ msgstr "Error while updating the custom fields data" + +#~ msgid "Error al guardar el hash de la clave maestra" +#~ msgstr "Error while saving the Master Password's hash" + +#~ msgid "Generar Clave Temporal" +#~ msgstr "Generate Temporary Password" + +#~ msgid "Clave Temporal Generada" +#~ msgstr "Temporary Password Generated" + +#~ msgid "Error al generar clave temporal" +#~ msgstr "Error while generating the temporary password" + +#~ msgid "Usuario/Clave no introducidos" +#~ msgstr "User/Pass not entered" + +#~ msgid "Inicio sesión" +#~ msgstr "Log in" + +#~ msgid "Error al guardar los datos de LDAP" +#~ msgstr "Error while saving the LDAP user data" + +#~ msgid "Error al actualizar la clave del usuario en la BBDD" +#~ msgstr "Error while updating the user's password in DB" + +#~ msgid "Login incorrecto" +#~ msgstr "Wrong login" + +#~ msgid "Cuenta expirada" +#~ msgstr "Account expired" + +#~ msgid "El usuario no tiene grupos asociados" +#~ msgstr "The user has no associated groups" + +#~ msgid "Usuario deshabilitado" +#~ msgstr "User disabled" + +#~ msgid "Error al obtener los datos del usuario de la BBDD" +#~ msgstr "Error while retrieving the user's data from DB" + +#~ msgid "La clave maestra no ha sido guardada o es incorrecta" +#~ msgstr "The Master Password either is not saved or is wrong" + +#~ msgid "Clave maestra incorrecta" +#~ msgstr "Wrong master password" + +#~ msgid "No hay extensiones permitidas" +#~ msgstr "There aren't any allowed extensions" + +#~ msgid "Tipo de archivo no soportado" +#~ msgstr "File type not allowed" + +#~ msgid "Archivo inválido" +#~ msgstr "Invalid file" + +#~ msgid "Error interno al leer el archivo" +#~ msgstr "Internal error while reading the file" + +#~ msgid "Archivo guardado" +#~ msgstr "File saved" + +#~ msgid "No se pudo guardar el archivo" +#~ msgstr "Error while saving file" + +#~ msgid "No es un ID de archivo válido" +#~ msgstr "Invalid file ID" + +#~ msgid "El archivo no existe" +#~ msgstr "The file does not exist" + +#~ msgid "Archivo eliminado" +#~ msgstr "File deleted" + +#~ msgid "Error al eliminar el archivo" +#~ msgstr "Error while deleting the file" + +#~ msgid "Parámetros incorrectos" +#~ msgstr "Wrong parameters" + +#~ msgid "Recuperación de Clave" +#~ msgstr "Password Recovery" + +#~ msgid "Solicitado para" +#~ msgstr "Requested for" + +#~ msgid "Solicitud enviada" +#~ msgstr "Request sent" + +#~ msgid "En breve recibirá un correo para completar la solicitud." +#~ msgstr "You will receive an email to complete the request shortly." + +#~ msgid "Modificar Clave Usuario" +#~ msgstr "Edit User Password" + +#~ msgid "La clave es incorrecta o no coincide" +#~ msgstr "Wrong password or does not match" + +#~ msgid "Es necesaria una descripción" +#~ msgstr "A description is needed" + +#~ msgid "Solicitud de Modificación de Cuenta" +#~ msgstr "Request for Account Modification" + +#~ msgid "Solicitante" +#~ msgstr "Requester" + +#~ msgid "Error al actualizar preferencias" +#~ msgstr "Error while updating the preferences" + +#~ msgid "Preferencias actualizadas" +#~ msgstr "Preferences updated" + +#~ msgid "La clave maestra no coincide" +#~ msgstr "The Master Password does not match" + +#~ msgid "No es posible acceder directamente a este archivo" +#~ msgstr "Unable to access to this file" + +#~ msgid "Error al actualizar el historial" +#~ msgstr "Error while updating history" + +#~ msgid "Actualizar Cuenta" +#~ msgstr "Update Account" + +#~ msgid "Error al actualizar los grupos secundarios" +#~ msgstr "Error while updating the secondary groups" + +#~ msgid "Error al actualizar los usuarios de la cuenta" +#~ msgstr "Error while updating the account users" + +#~ msgid "No se pudieron obtener los datos de la cuenta" +#~ msgstr "Error while retrieving the account data" + +#~ msgid "Error al eliminar grupos asociados a la cuenta" +#~ msgstr "Error while deleting the account's groups" + +#~ msgid "Error al eliminar usuarios asociados a la cuenta" +#~ msgstr "Error while deleting the account users" + +#~ msgid "Error al eliminar archivos asociados a la cuenta" +#~ msgstr "Error while deleting the account's files" + +#~ msgid "Inicio" +#~ msgstr "Start" + +#~ msgid "Error en el módulo de encriptación" +#~ msgstr "Error on the encryption module" + +#~ msgid "Error al obtener las claves de las cuentas" +#~ msgstr "Error while retrieving the accounts' passwords" + +#~ msgid "Fallo al actualizar la clave de la cuenta" +#~ msgstr "Error while updating the account's password" + +#~ msgid "Cuentas actualizadas" +#~ msgstr "Accounts updated" + +#~ msgid "No se pudieron obtener los datos de las cuentas" +#~ msgstr "Unable to retrieve the accounts data" + +#~ msgid "Actualizar Clave Maestra (H)" +#~ msgstr "Update Master Password (H)" + +#~ msgid "La clave maestra del registro no coincide" +#~ msgstr "The record's master password does not match" + +#~ msgid "Fallo al actualizar la clave del histórico" +#~ msgstr "Error on updating the history's master password" + +#~ msgid "Registros actualizados" +#~ msgstr "Records updated" + +#~ msgid "Gestión Aplicación" +#~ msgstr "Application Management" + +#~ msgid "Exportar" +#~ msgstr "Export" + +#~ msgid "Acceso no permitido" +#~ msgstr "Unauthorized access" + +#~ msgid "Error de codificación" +#~ msgstr "Encoding error" + +#~ msgid "La autorización ya existe" +#~ msgstr "The authorization already exist" + +#~ msgid "Actualizar Autorización" +#~ msgstr "Update Authorization" + +#~ msgid "Usuario no pertenece al grupo" +#~ msgstr "The user doesn't belong to the group" + +#~ msgid "Esta operación sólo es posible en entornos Linux" +#~ msgstr "This operation is only available on Linux environments" + +#~ msgid "Error al realizar backup en modo compatibilidad" +#~ msgstr "Error while doing the backup in compatibility mode" + +#~ msgid "Compruebe los permisos del directorio de backups" +#~ msgstr "Please, check the backup directory permissions" + +#~ msgid "Nombre de categoría duplicado" +#~ msgstr "Duplicated category name" + +#~ msgid "Error al crear la categoría" +#~ msgstr "Error while creating the category" + +#~ msgid "Error al eliminar la categoría" +#~ msgstr "Error while deleting the category" + +#~ msgid "Error al actualizar la categoría" +#~ msgstr "Error while updating the category" + +#~ msgid "Modificar configuración" +#~ msgstr "Update Configuration" + +#~ msgid "Parámetro" +#~ msgstr "Parameter" + +#~ msgid "Valor" +#~ msgstr "Value" + +#~ 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." + +#~ msgid "No es posible generar las claves RSA" +#~ msgstr "Unable to generate the RSA keys" + +#~ msgid "El archivo de clave no existe" +#~ msgstr "The key file does not exist" + +#~ msgid "Error importando cuenta" +#~ msgstr "Error while importing the account" + +#~ msgid "Registros no actualizados" +#~ msgstr "Records not updated" + +#~ msgid "Cliente duplicado" +#~ msgstr "Duplicated client" + +#~ msgid "Error al crear el cliente" +#~ msgstr "Error while creating the client" + +#~ msgid "Error al actualizar el cliente" +#~ msgstr "Error while updating the client" + +#~ msgid "Actualizar Cliente" +#~ msgstr "Update Client" + +#~ msgid "Error al eliminar el cliente" +#~ msgstr "Error while deleting the client" + +#~ msgid "No es posible conectar con la BD" +#~ msgstr "Unable to connect to the DB" + +#~ msgid "Compruebe los datos de conexión" +#~ msgstr "Please, check the connection parameters" + +#~ msgid "Realizado por" +#~ msgstr "Performed by" + +#~ msgid "Enviar Email" +#~ msgstr "Send Email" + +#~ msgid "Correo enviado" +#~ msgstr "Email sent" + +#~ msgid "Error al enviar correo" +#~ msgstr "Error while sending the email" + +#~ msgid "Destinatario" +#~ msgstr "Recipient" + +#~ msgid "CC" +#~ msgstr "CC" + +#~ msgid "Archivo no subido correctamente" +#~ msgstr "File successfully uploaded" + +#~ msgid "Verifique los permisos del usuario del servidor web" +#~ msgstr "Please check the web server user permissions" + +#~ msgid "Compruebe la extensión del archivo" +#~ msgstr "Please, check the file extension" + +#~ msgid "Compruebe la configuración de PHP para subir archivos" +#~ msgstr "Please, check PHP configuration for upload files" + +#~ msgid "Compruebe los permisos del directorio temporal" +#~ msgstr "Please, check the temporary directory permissions" + +#~ msgid "Error al eliminar los usuarios del grupo" +#~ msgstr "Error while deleting the group users" + +#~ msgid "Compruebe el formato del archivo" +#~ msgstr "Please, check the file format" + +#~ msgid "Importación finalizada" +#~ msgstr "Import finished" + +#~ msgid "La sesión no puede ser inicializada" +#~ msgstr "Session cannot be initialized" + +#~ msgid "El directorio \"/config\" no existe" +#~ msgstr "The \"/config\" directory does not exist." + +#~ msgid "No es posible escribir en el directorio \"config\"" +#~ msgstr "Unable to write into the \"/config\" directory" + +#~ msgid "Los permisos del directorio \"/config\" son incorrectos" +#~ msgstr "The \"/config\" directory permissions are wrong" + +#~ msgid "Finalizar sesión" +#~ msgstr "Logout session" + +#~ msgid "Tiempo inactivo" +#~ msgstr "Inactive time" + +#~ msgid "Tiempo total" +#~ msgstr "Total time" + +#~ msgid "Actualización" +#~ msgstr "Update" + +#~ msgid "Actualización de versión realizada." +#~ msgstr "Version updating done." + +#~ msgid "Indicar nombre de usuario admin" +#~ msgstr "Please, enter the admin username" + +#~ msgid "Usuario admin para acceso a la aplicación" +#~ msgstr "Admin user to log into the application" + +#~ msgid "Indicar la clave de admin" +#~ msgstr "Please, enter the admin's password" + +#~ msgid "Clave del usuario admin de la aplicación" +#~ msgstr "Application administrator's password" + +#~ msgid "Indicar la clave maestra" +#~ msgstr "Please, enter the Master Password" + +#~ msgid "Clave maestra para encriptar las claves" +#~ msgstr "Master password to encrypt the passwords" + +#~ msgid "Clave maestra muy corta" +#~ msgstr "Master password too short" + +#~ 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" + +#~ msgid "Indicar el usuario de la BBDD" +#~ msgstr "Please, enter the database user" + +#~ msgid "Usuario con permisos de administrador de la Base de Datos" +#~ msgstr "An user with database administrative rights" + +#~ msgid "Indicar el nombre de la BBDD" +#~ msgstr "Please, enter the database name" + +#~ msgid "Nombre para la BBDD de la aplicación pej. syspass" +#~ msgstr "Application database name. eg. syspass" + +#~ msgid "El nombre de la BBDD no puede contener \".\"" +#~ msgstr "Database name cannot contain \".\"" + +#~ msgid "Elimine los puntos del nombre de la Base de Datos" +#~ msgstr "Please, remove dots in database name" + +#~ msgid "Indicar el servidor de la BBDD" +#~ msgstr "Please, enter the database server" + +#~ msgid "Servidor donde se instalará la Base de Datos" +#~ msgstr "Server where the database will be installed" + +#~ msgid "No es posible comprobar el usuario de sysPass" +#~ msgstr "Unable to check the sysPass user" + +#~ msgid "Compruebe los permisos del usuario de conexión a la BD" +#~ msgstr "Please, check the DB connection user rights" + +#~ msgid "La BBDD ya existe" +#~ msgstr "The database already exists" + +#~ msgid "Indique una nueva Base de Datos o elimine la existente" +#~ msgstr "Please, enter a new database or delete the existing one" + +#~ msgid "Error al crear la BBDD" +#~ msgstr "Error while creating the DB" + +#~ msgid "Verifique los permisos del usuario de la Base de Datos" +#~ msgstr "Please check the database user permissions" + +#~ msgid "El archivo de estructura de la BBDD no existe" +#~ msgstr "The database structure file does not exist" + +#~ 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." + +#~ msgid "Error al seleccionar la BBDD" +#~ msgstr "Error while selecting the database." + +#~ msgid "" +#~ "No es posible usar la Base de Datos para crear la estructura. Compruebe " +#~ "los permisos y que no exista." +#~ msgstr "" +#~ "Unable to use the database to create the structure. Check permissions and " +#~ "it does not exist." + +#~ msgid "Error al crear la estructura de la Base de Datos." +#~ msgstr "Error while creating database structure." + +#~ msgid "Informe al desarrollador" +#~ msgstr "Warn to developer" + +#~ msgid "Error al actualizar la clave maestra del usuario \"admin\"" +#~ msgstr "Error while updating the Master Password for user \"admin\"" + +#~ msgid "No es posible conectar con el servidor de LDAP" +#~ msgstr "Unable to connect to the LDAP server" + +#~ msgid "Error al conectar (BIND)" +#~ msgstr "Connection error (BIND)" + +#~ msgid "Error al buscar objetos en DN base" +#~ msgstr "Error while searching objects in base DN" + +#~ msgid "Error al buscar RDN de grupo" +#~ msgstr "Error while searching the group RDN" + +#~ msgid "Error al localizar el usuario en LDAP" +#~ msgstr "Error while searching the user on LDAP" + +#~ msgid "Error al buscar el grupo de usuarios" +#~ msgstr "Error while searching users group" + +#~ msgid "Usuario verificado en grupo" +#~ msgstr "User in group verified" + +#~ msgid "Vaciar Eventos" +#~ msgstr "Clear Events" + +#~ msgid "Cliente no encontrado" +#~ msgstr "Client not found" + +#~ msgid "Error al obtener los usuarios" +#~ msgstr "Error while retrieving the users" + +#~ msgid "Migrar Perfiles" +#~ msgstr "Migrate Profiles" + +#~ msgid "Error al obtener perfiles" +#~ msgstr "Error while retrieving the profiles" + +#~ msgid "Operación realizada correctamente" +#~ msgstr "Operation completed successfully" + +#~ msgid "Fallo al realizar la operación" +#~ msgstr "Error while performing the operation" + +#~ msgid "Formato de XML inválido" +#~ msgstr "Invalid XML format" + +#~ msgid "Error al aplicar la actualización de la Base de Datos" +#~ msgstr "Error while updating the database" + +#~ msgid "Compruebe el registro de eventos para más detalles" +#~ msgstr "Please, check the event log for more details" + +#~ msgid "Error al aplicar la actualización auxiliar" +#~ msgstr "Error while applying an auxiliary update" + +#~ msgid "Actualizar BBDD" +#~ msgstr "Update DB" + +#~ msgid "No es necesario actualizar la Base de Datos." +#~ msgstr "Database update not needed." + +#~ msgid "Actualización de la Base de Datos realizada correctamente." +#~ msgstr "Database updating was completed successfully." + +#~ msgid "Actualizar Configuración" +#~ msgstr "Update Configuration" + +#~ msgid "No se pudo realizar la petición de cambio de clave." +#~ msgstr "Could not perform the password change request." + +#~ msgid "Usuario de LDAP" +#~ msgstr "LDAP User" + +#~ msgid "Activación Cuenta" +#~ msgstr "Account Activation" + +#~ msgid "Su cuenta está pendiente de activación." +#~ msgstr "Your account activation is pending." + +#~ msgid "En breve recibirá un email de confirmación." +#~ msgstr "You will receive a confirmation email shortly." + +#~ msgid "Nuevo usuario de LDAP" +#~ msgstr "New LDAP user" + +#~ msgid "Error al migrar grupo del usuario" +#~ msgstr "Error while migrating the user group" + +#~ msgid "Versión de PHP requerida >= " +#~ msgstr "Required PHP version >=" + +#~ msgid "" +#~ "Actualice la versión de PHP para que la aplicación funcione correctamente" +#~ msgstr "Please update the PHP version to run sysPass" + +#~ msgid "Exportar XML" +#~ msgstr "XML Export" + +#~ msgid "Error al crear el archivo XML" +#~ msgstr "Error while creating the XML file" + +#~ msgid "No es posible procesar el archivo XML" +#~ msgstr "Unable to process the XML file" + +#~ msgid "Archivo XML no soportado" +#~ msgstr "XML file not supported" + +#~ msgid "No es posible detectar la aplicación que exportó los datos" +#~ msgstr "Unable to detect the application the data was exported from" + +#~ msgid "Último backup" +#~ msgstr "Last backup" + +#~ msgid "Última exportación" +#~ msgstr "Last export" + +#~ msgid "Registro de eventos vaciado" +#~ msgstr "Event log cleared" + +#~ msgid "Error al vaciar el registro de eventos" +#~ msgstr "Error while clearing the event log out" + +#~ msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" +#~ msgstr "This PHP version is vulnerable to NULL Byte attack CVE-2006-7243)" + +#~ msgid "Actualice la versión de PHP para usar sysPass de forma segura" +#~ msgstr "Please update PHP version to run sysPass in a secure way" + +#~ msgid "No se encuentra el generador de números aleatorios." +#~ msgstr "Cannot find random number generator." + +#~ msgid "" +#~ "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" +#~ msgstr "" +#~ "Without this function, an attacker could take your account on password " +#~ "reset." + +#~ msgid "Instalación finalizada" +#~ msgstr "Installation finished" + +#~ msgid "Descargar nueva versión" +#~ msgstr "Download new version" + +#~ msgid "Token de autorización visualizado" +#~ msgstr "Authorization token viewed" + +#~ msgid "Autorizaciones" +#~ msgstr "Authorizations" + +#~ msgid "Hablitar edición" +#~ msgstr "Enable Edit" + +#~ msgid "Usuarios Secundarios" +#~ msgstr "Secondary Users" + +#~ msgid "Grupos Secundarios" +#~ msgstr "Secondary Groups" + +#~ msgid "Modificar Cuenta" +#~ msgstr "Edit Account" + +#~ msgid "No hay backups para descargar" +#~ msgstr "There aren't any backups for download" + +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "There aren't any XML files for download" + +#~ msgid "Se permite un máximo de 4 caracteres." +#~ msgstr "Max 4 characters allowed." + +#~ msgid "Primera página" +#~ msgstr "First page" + +#~ msgid "Página anterior" +#~ msgstr "Previous page" + +#~ msgid "Página siguiente" +#~ msgstr "Next page" + +#~ msgid "Última página" +#~ msgstr "Last page" + +#~ msgid "Comprobar" +#~ msgstr "Check" + +#~ msgid "Cambiar Clave" +#~ msgstr "Change Password" + +#~ msgid "Añadir" +#~ msgstr "Add" + +#~ msgid "Abrir enlace a" +#~ msgstr "Open link to" + +#~ msgid "Limpiar" +#~ msgstr "Clear" + +#~ msgid "Parámetros especiales:" +#~ msgstr "Special parameters" + +#~ msgid "Realizar" +#~ msgstr "Perform" + +#~ msgid "Extensión" +#~ msgstr "Extension" + +#~ msgid "Tamaño de archivo superado" +#~ msgstr "File size exceeded" + +#~ msgid "Solicitud no enviada" +#~ msgstr "Request not sent" + +#~ msgid "Compruebe datos de usuario o consulte con el administrador" +#~ msgstr "Please, check the user data or contact to the administrator" + +#~ msgid "La cuenta no existe" +#~ msgstr "The account doesn't exist" + +#~ msgid "Errores" +#~ msgstr "Errors" + +#~ msgid "Error al añadir favorito" +#~ msgstr "Error while adding favorite" + +#~ msgid "Error al eliminar favorito" +#~ msgstr "Error while deleting favorite" + +#~ msgid "Error al eliminar las etiquetas de la cuenta" +#~ msgstr "Error while removing the account's tags" + +#~ msgid "Método inválido" +#~ msgstr "Invalid Method" + +#~ msgid "Datos inválidos" +#~ msgstr "Invalid data" + +#~ msgid "Formato incorrecto" +#~ msgstr "Wrong format" + +#~ msgid "Nombre de categoría a buscar" +#~ msgstr "Category name to search for" + +#~ msgid "Nombre de cliente a buscar" +#~ msgstr "Client name to search for" + +#~ msgid "Método ya inicializado" +#~ msgstr "Method already initialized" + +#~ msgid "Método no disponible" +#~ msgstr "Method unavailable" + +#~ msgid "Los parámetros de DokuWiki no están configurados" +#~ msgstr "The DokuWiki parameters are not set" + +#~ msgid "Error" +#~ msgstr "Error" + +#~ msgid "Conexión correcta" +#~ msgstr "Connection successful" + +#~ msgid "Error de conexión a DokuWiki" +#~ msgstr "Error while connecting to DokuWiki" + +#~ msgid "Faltan parámetros de syslog remoto" +#~ msgstr "Missing remote syslog parameters" + +#~ msgid "Syslog remoto deshabilitado" +#~ msgstr "Remote syslog disabled" + +#~ msgid "Error al guardar la configuración" +#~ msgstr "Error while saving the configuration" + +#~ msgid "Faltan parámetros de DokuWiki" +#~ msgstr "Missing DokuWiki parameters" + +#~ msgid "DokuWiki habiltada" +#~ msgstr "DokuWiki enabled" + +#~ msgid "DokuWiki deshabilitada" +#~ msgstr "DokuWiki disabled" + +#~ msgid "Enlace creado" +#~ msgstr "Link created" + +#~ msgid "Enlace actualizado" +#~ msgstr "Link updated" + +#~ msgid "Enlace eliminado" +#~ msgstr "Link deleted" + +#~ msgid "Plugin habilitado" +#~ msgstr "Plugin enabled" + +#~ msgid "Plugin deshabilitado" +#~ msgstr "Plugin disabled" + +#~ msgid "Plugin restablecido" +#~ msgstr "Plugin reset" + +#~ msgid "Favorito añadido" +#~ msgstr "Favorite added" + +#~ msgid "Favorito eliminado" +#~ msgstr "Favorite deleted" + +#~ msgid "Importación de usuarios de LDAP realizada" +#~ msgstr "LDAP users import finished" + +#~ msgid "Error al importar usuarios de LDAP" +#~ msgstr "Error while importing the LDAP users" + +#~ msgid "Notificación leída" +#~ msgstr "Notification read" + +#~ msgid "Notificación eliminada" +#~ msgstr "Notification deleted" + +#~ msgid "Solicitud enviada por correo" +#~ msgstr "Request sent by email" + +#~ msgid "Solicitud no enviada por correo" +#~ msgstr "Request not sent by email" + +#~ msgid "Solicitud realizada" +#~ msgstr "Request done" + +#~ msgid "Detalles de Plugin" +#~ msgstr "Plugin Details" + +#~ msgid "Error al obtener la clave maestra del usuario" +#~ msgstr "Error while retrieving the user's Master Pass" + +#~ msgid "Es necesaria su clave anterior" +#~ msgstr "Your previous password is needed" + +#~ msgid "Servidor LDAP" +#~ msgstr "LDAP Server" + +#~ msgid "Buscar Categorías" +#~ msgstr "Search for Categories" + +#~ msgid "Añadir Categoría" +#~ msgstr "Add Category" + +#~ msgid "Buscar Clientes" +#~ msgstr "Search for Client" + +#~ msgid "Añadir Cliente" +#~ msgstr "Add Client" + +#~ msgid "Observador no inicializado" +#~ msgstr "Observer not initialized" + +#~ msgid "Es necesario un objeto" +#~ msgstr "An object is needed" + +#~ msgid "Indicar la clave de la BBDD" +#~ msgstr "Please, enter the database password" + +#~ msgid "Clave del usuario administrador de la Base de Datos" +#~ msgstr "Database administrator's password" + +#~ msgid "Error al crear el usuario de conexión a MySQL '%s'" +#~ msgstr "Error while creating the MySQL connection user '%s'" + +#~ msgid "La BBDD no existe" +#~ msgstr "The database does not exist" + +#~ msgid "Es necesario crearla y asignar los permisos necesarios" +#~ msgstr "You need to create it and assign the needed permissions" + +#~ msgid "Error al actualizar la configuración" +#~ msgstr "Error while updating the configuration" + +#~ msgid "Usuario no indicado" +#~ msgstr "User not set" + +#~ msgid "Acción no indicada" +#~ msgstr "Action not set" + +#~ msgid "Es necesario un nombre de etiqueta" +#~ msgstr "A tag name is needed" + +#~ msgid "Respuesta XML-RPC inválida" +#~ msgstr "Invalid XML-RPC response" + +#~ msgid "Id de categoría no definido. No es posible importar cuenta." +#~ msgstr "Category Id not set. Unable to import the account." + +#~ msgid "Id de cliente no definido. No es posible importar cuenta." +#~ msgstr "Client Id not set. Unable to import the account." + +#~ msgid "Clave de encriptación no indicada" +#~ msgstr "Encryption password not set" + +#~ msgid "Extensión '%s' no cargada" +#~ msgstr "Extension '%s' not loaded" + +#~ msgid "Categoría duplicada" +#~ msgstr "Duplicated category" + +#~ msgid "Categoría no encontrada" +#~ msgstr "Category not found" + +#~ msgid "Error al crear el campo personalizado" +#~ msgstr "Error while creating the custom field" + +#~ msgid "Error al eliminar el campo personalizado" +#~ msgstr "Error while removing the custom field" + +#~ msgid "Error al actualizar el campo personalizado" +#~ msgstr "Error while updating the custom field" + +#~ msgid "Campo personalizado no encontrado" +#~ msgstr "Custom field not found" + +#~ msgid "No se encontraron campos personalizados" +#~ msgstr "Custom fields not found" + +#~ msgid "No hay datos de campos personalizados" +#~ msgstr "There aren't any data from custom fields" + +#~ msgid "Error al migrar campos personalizados" +#~ msgstr "Error while migrating the custom fields" + +#~ msgid "Archivo subido" +#~ msgstr "File uploaded" + +#~ msgid "Grupo en uso" +#~ msgstr "Group in use" + +#~ msgid "Actualizar Grupo" +#~ msgstr "Update Group" + +#~ msgid "Error al asignar los usuarios al grupo" +#~ msgstr "Error while setting users in the group" + +#~ msgid "Error al crear la notificación" +#~ msgstr "Error while adding the notification" + +#~ msgid "Error al eliminar la notificación" +#~ msgstr "Error while deleting the notification" + +#~ msgid "Error al modificar la notificación" +#~ msgstr "Error while updating the notification" + +#~ msgid "Error al obtener la notificación" +#~ msgstr "Error while retrieving notification" + +#~ msgid "Error al obtener las notificaciones" +#~ msgstr "Error while retrieving the notifications" + +#~ msgid "Error al crear el plugin" +#~ msgstr "Error while adding the plugin" + +#~ msgid "Error al eliminar el plugin" +#~ msgstr "Error while deleting the plugin" + +#~ msgid "Error al actualizar el plugin" +#~ msgstr "Error while updating the plugin" + +#~ msgid "Habilitado" +#~ msgstr "Enabled" + +#~ msgid "Error al crear perfil" +#~ msgstr "Error while creating the profile" + +#~ msgid "Perfil en uso" +#~ msgstr "Profile in use" + +#~ msgid "Error al eliminar perfil" +#~ msgstr "Error while removing the profile" + +#~ msgid "Error al modificar perfil" +#~ msgstr "Error while updating the profile" + +#~ msgid "Enlace visualizado" +#~ msgstr "Link viewed" + +#~ msgid "Error al actualizar enlace" +#~ msgstr "Error while updating the link" + +#~ msgid "Enlace ya creado" +#~ msgstr "Link already created" + +#~ msgid "Error al crear enlace" +#~ msgstr "Error while creating the link" + +#~ msgid "Error al eliminar enlace" +#~ msgstr "Error while removing the link" + +#~ msgid "Error al renovar enlace" +#~ msgstr "Error while renewing link" + +#~ msgid "Actualizar Enlace" +#~ msgstr "Update Link" + +#~ msgid "Error al obtener enlace" +#~ msgstr "Error while retrieving the link" + +#~ msgid "ON" +#~ msgstr "ON" + +#~ msgid "OFF" +#~ msgstr "OFF" + +#~ msgid "Etiqueta duplicada" +#~ msgstr "Duplicated tag" + +#~ msgid "Error al crear etiqueta" +#~ msgstr "Error while creating the tag" + +#~ msgid "Error al eliminar etiqueta" +#~ msgstr "Error while removing the tag" + +#~ msgid "Error al actualizar etiqueta" +#~ msgstr "Error while updating the tag" + +#~ msgid "Error al obtener etiqueta" +#~ msgstr "Error while retrieving the tag" + +#~ msgid "Login/email de usuario duplicados" +#~ msgstr "Duplicated user login/email" + +#~ msgid "Error al obtener los datos del usuario" +#~ msgstr "Error while retrieving the user's data" + +#~ msgid "No se encontraron objetos para sincronizar" +#~ msgstr "There aren't any objects to synchronize" + +#~ msgid "Sincronización finalizada" +#~ msgstr "Synchronization finished" + +#~ msgid "Error al migrar cuenta de usuario" +#~ msgstr "Error while migrating the user account" + +#~ msgid "Error al obtener grupo de usuarios" +#~ msgstr "Error while retrieving the users group" + +#~ msgid "Error en comprobación de hash" +#~ msgstr "Error while checking hash" + +#~ msgid "Hash inválido o expirado" +#~ msgstr "Wrong hash or expired" + +#~ msgid "Error al generar el hash de recuperación" +#~ msgstr "Error while generating the recovering hash" + +#~ msgid "Actualizando preferencias" +#~ msgstr "Updating preferences" + +#~ msgid "No es posible leer/escribir el archivo: %s" +#~ msgstr "Unable to read/write the file: %s" + +#~ msgid "No hay elementos para guardar" +#~ msgstr "There aren't any items to save" + +#~ msgid "Socket no inicializado" +#~ msgstr "Socket not initialized" + +#~ msgid "Error al enviar datos" +#~ msgstr "Error while sending the data" + +#~ msgid "Respuesta" +#~ msgstr "Response" + +#~ msgid "Ver Detalles" +#~ msgstr "View Details" + +#~ msgid "Copiar" +#~ msgstr "Copy" + +#~ msgid "Restaurar" +#~ msgstr "Restore" + +#~ msgid "Descargar" +#~ msgstr "Download" + +#~ msgid "Crítico" +#~ msgstr "Critical" + +#~ msgid "Accesos" +#~ msgstr "Accesses" + +#~ msgid "Cuentas Vinculadas" +#~ msgstr "Linked Accounts" + +#~ msgid "Hay %d notificaciones pendientes" +#~ msgstr "There are %d unread notifications" + +#~ msgid "Agente" +#~ msgstr "Agent" + +#~ msgid "Crear Usuario" +#~ msgstr "Add User" + +#~ msgid "Actualizar Usuario" +#~ msgstr "Update User" + +#~ msgid "Actualizar Clave Usuario" +#~ msgstr "Update User's Password" + +#~ msgid "Crear Grupo" +#~ msgstr "Add Group" + +#~ msgid "Crear Perfil" +#~ msgstr "Add Profile" + +#~ msgid "Actualizar Perfil" +#~ msgstr "Update Profile" + +#~ msgid "Crear Cliente" +#~ msgstr "Add Client" + +#~ msgid "Crear Categoría" +#~ msgstr "Add Category" + +#~ msgid "Actualizar Categoría" +#~ msgstr "Update Category" + +#~ msgid "Crear Autorización" +#~ msgstr "Add Authorization" + +#~ msgid "Crear Campo" +#~ msgstr "Add Field" + +#~ msgid "Actualizar Campo" +#~ msgstr "Update Field" + +#~ msgid "Crear Enlace" +#~ msgstr "Create Link" + +#~ msgid "Crear Etiqueta" +#~ msgstr "Add Tag" + +#~ msgid "Actualizar Etiqueta" +#~ msgstr "Update Tag" + +#~ msgid "Actualizar Plugin" +#~ msgstr "Update Plugin" + +#~ msgid "Crear Cuenta" +#~ msgstr "Add Account" + +#~ msgid "Usuarios importados" +#~ msgstr "Imported users" + +#~ msgid "Acceso denegado" +#~ msgstr "Access denied" + +#~ msgid "Error al añadir las etiquetas de la cuenta" +#~ msgstr "Error while adding the account's tags" + +#~ msgid "Grupos eliminados" +#~ msgstr "Groups deleted" + +#~ msgid "Perfiles eliminados" +#~ msgstr "Profiles deleted" + +#~ msgid "Clientes eliminados" +#~ msgstr "Clients deleted" + +#~ msgid "Categorías eliminadas" +#~ msgstr "Categories deleted" + +#~ msgid "Autorizaciones eliminadas" +#~ msgstr "Authorizations deleted" + +#~ msgid "Campos eliminados" +#~ msgstr "Fields deleted" + +#~ msgid "Enlaces eliminados" +#~ msgstr "Links deleted" + +#~ msgid "Etiquetas eliminadas" +#~ msgstr "Tags deleted" + +#~ msgid "Archivos eliminados" +#~ msgstr "Files deleted" + +#~ msgid "Cuentas eliminadas" +#~ msgstr "Accounts removed" + +#~ msgid "Notificación creada" +#~ msgstr "Notification created" + +#~ msgid "Notificaciones eliminadas" +#~ msgstr "Notifications deleted" + +#~ msgid "Usando clave temporal" +#~ msgstr "Using temporary password" + +#~ msgid "Clave temporal caducada" +#~ msgstr "Temporary password expired" + +#~ msgid "Sesión" +#~ msgstr "Session" + +#~ msgid "Error al comprobar la base de datos" +#~ msgstr "Error while checking the database" + +#~ msgid "Intente de nuevo la instalación" +#~ msgstr "Please, try the installation again" + +#~ msgid "Es necesario un componente" +#~ msgstr "A component is needed" + +#~ msgid "Es necesario un tipo" +#~ msgstr "A type is needed" + +#~ msgid "Es necesario un destinatario" +#~ msgstr "A target is needed" + +#~ msgid "Error procesando línea" +#~ msgstr "Error while processing line" + +#~ msgid "Cuentas importadas" +#~ msgstr "Accounts imported" + +#~ msgid "Archivo no encontrado" +#~ msgstr "File not found" + +#~ msgid "Grupo no encontrado" +#~ msgstr "Group not found" + +#~ msgid "Notificación no encontrada" +#~ msgstr "Notification not found" + +#~ msgid "Plugin no encontrado" +#~ msgstr "Plugin not found" + +#~ msgid "Perfil no encontrado" +#~ msgstr "Profile not found" + +#~ msgid "Enlace no encontrado" +#~ msgstr "Link not found" + +#~ msgid "Etiqueta no encontrada" +#~ msgstr "Tag not found" + +#~ msgid "Usuario no encontrado" +#~ msgstr "User not found" + +#~ msgid "Consulta en blanco" +#~ msgstr "Blank query" + +#~ msgid "No es posible iniciar una transacción" +#~ msgstr "Unable to start a transaction" + +#~ msgid "No es posible finalizar una transacción" +#~ msgstr "Unable to finish a transaction" + +#~ msgid "Cuenta no encontrada" +#~ msgstr "Account not found" + +#~ msgid "Hash de clave maestra actualizado" +#~ msgstr "Master password hash updated" + +#~ msgid "Error al actualizar el hash de la clave maestra" +#~ msgstr "Error while updating the master password hash" + +#~ msgid "Usuarios eliminados" +#~ msgstr "Users deleted" + +#~ msgid "Notificación actualizada" +#~ msgstr "Notification updated" + +#~ msgid "Restricción de integridad" +#~ msgstr "Integrity constraint" + +#~ msgid "Clave de encriptación incorrecta" +#~ msgstr "Wrong encryption password" + +#~ msgid "Código de seguridad incorrecto" +#~ msgstr "Wrong security code" + +#~ msgid "Es necesario confirmar la actualización" +#~ msgstr "The updating need to be confirmed" + +#~ msgid "En 5 segundos será redirigido al login" +#~ msgstr "You will be redirected to log in within 5 seconds" + +#~ msgid "Error al aplicar la actualización de la aplicación" +#~ msgstr "Error while applying the application update" + +#~ msgid "Intentos excedidos" +#~ msgstr "Attempts exceeded" + +#~ msgid "Token no encontrado" +#~ msgstr "Token not found" + +#~ msgid "Error al crear track" +#~ msgstr "Error while creating track" + +#~ msgid "Error al eliminar track" +#~ msgstr "Error while removing the track" + +#~ msgid "Error al actualizar track" +#~ msgstr "Error while updating the track" + +#~ msgid "Error al obtener track" +#~ msgstr "Error while retrieving the track" + +#~ msgid "Error al obtener tracks" +#~ msgstr "Error while retrieving the tracks" + +#~ msgid "Actualizando IDs de cuentas" +#~ msgstr "Updating account IDs" + +#~ msgid "Actualizando IDs de categorías" +#~ msgstr "Updating category IDs" + +#~ msgid "Actualizando IDs de clientes" +#~ msgstr "Updating Client IDs" + +#~ msgid "Actualizando IDs de grupos" +#~ msgstr "Updating group IDs" + +#~ msgid "Actualizando IDs de perfil" +#~ msgstr "Updating profile IDs" + +#~ msgid "Actualizando IDs de usuarios" +#~ msgstr "Updating user IDs" + +#~ msgid "Acción no encontrada" +#~ msgstr "Action not found" + +#~ msgid "Contexto ya inicializado" +#~ msgstr "Context already initialized" + +#~ msgid "Contexto inválido" +#~ msgstr "Invalid context" + +#~ msgid "Contexto no inicializado" +#~ msgstr "Context not initialized" + +#~ msgid "Clase no válida para iconos" +#~ msgstr "Invalid icons class" + +#~ msgid "Tipo de filtro inválido" +#~ msgstr "Invalid filter type" + +#~ msgid "Tipo de objeto incorrecto" +#~ msgstr "Wrong object type" + +#~ msgid "No es posible inicializar" +#~ msgstr "Unable to initialize" + +#~ msgid "Error al eliminar los archivos" +#~ msgstr "Error while deleting the files" + +#~ msgid "Error al eliminar las cuentas" +#~ msgstr "Error while deleting the accounts" + +#~ msgid "Error al eliminar la categorías" +#~ msgstr "Error while deleting the categories" + +#~ msgid "Error al eliminar los clientes" +#~ msgstr "Error while deleting the clients" + +#~ msgid "Error al eliminar los campos personalizados" +#~ msgstr "Error while removing the custom fields" + +#~ msgid "Error al crear el tipo de campo" +#~ msgstr "Error while creating the field type" + +#~ msgid "Error al actualizar el tipo de campo" +#~ msgstr "Error while updating the field type" + +#~ msgid "Error al eliminar el tipo de campo" +#~ msgstr "Error while deleting the field type" + +#~ msgid "Error al eliminar las notificaciones" +#~ msgstr "Error while deleting the notifications" + +#~ msgid "El enlace no existe" +#~ msgstr "The link does not exist" + +#~ msgid "Error al eliminar etiquetas" +#~ msgstr "Error while removing the tags" + +#~ msgid "Error al eliminar los usuarios" +#~ msgstr "Error while deleting the users" + +#~ msgid "El usuario no existe" +#~ msgstr "The user does not exist" + +#~ msgid "Error al eliminar los perfiles" +#~ msgstr "Error while removing the profiles" + +#~ msgid "Error al eliminar archivos" +#~ msgstr "Error while deleting the files" + +#~ msgid "Fomato incorrecto" +#~ msgstr "Invalid format" + +#~ msgid "Error al eliminar tokens" +#~ msgstr "Error while removing the tokens" + +#~ msgid "Copiando base de datos" +#~ msgstr "Copying database" + +#~ msgid "Copiando aplicación" +#~ msgstr "Copying application" + +#~ msgid "Rollback" +#~ msgstr "Rollback" + +#~ msgid "Error al comprobar clave temporal" +#~ msgstr "Error while checking the temporary password" + +#~ msgid "Campo no encontrado" +#~ msgstr "Field not found" + +#~ msgid "Error al eliminar los campos" +#~ msgstr "Error while deleting the fields" + +#~ msgid "Exportando categorías" +#~ msgstr "Exporting categories" + +#~ msgid "Exportando clientes" +#~ msgstr "Exporting clients" + +#~ msgid "Exportando etiquetas" +#~ msgstr "Exporting tags" + +#~ msgid "Exportando cuentas" +#~ msgstr "Exporting accounts" + +#~ msgid "Cuenta importada" +#~ msgstr "Account imported" + +#~ msgid "Importación XML KeePass" +#~ msgstr "KeePass XML Import" + +#~ msgid "Categoría importada" +#~ msgstr "Category imported" + +#~ msgid "Importación XML sysPass" +#~ msgstr "sysPass XML Import" + +#~ msgid "Datos desencriptados" +#~ msgstr "Data unencrypted" + +#~ msgid "Cliente importado" +#~ msgstr "Client imported" + +#~ msgid "Etiqueta importada" +#~ msgstr "Tag imported" + +#~ msgid "Formato no detectado" +#~ msgstr "Format not detected" + +#~ msgid "Not implemented" +#~ msgstr "Not implemented" + +#~ msgid "Prueba de correo" +#~ msgstr "Mail test" + +#~ msgid "" +#~ "Esto es una prueba de correo para verificar el correcto funcionamiento de " +#~ "la configuración." +#~ msgstr "" +#~ "This is a test email in order to verify that the configuration is working " +#~ "right." + +#~ msgid "Error al eliminar los enlaces" +#~ msgstr "Error while removing the links" + +#~ msgid "Segundos" +#~ msgstr "Seconds" + +#~ msgid "Actualizar Aplicación" +#~ msgstr "Update Application" + +#~ msgid "Actualización de campos personalizados" +#~ msgstr "Custom fields update" + +#~ msgid "Campo" +#~ msgstr "Field" + +#~ msgid "Actualización de enlaces públicos" +#~ msgstr "Public links update" + +#~ msgid "Enlace" +#~ msgstr "Link" + +#~ msgid "Error al eliminar los grupos" +#~ msgstr "Error while deleting the groups" + +#~ msgid "Error al leer datos del archivo (%s)" +#~ msgstr "Error while reading file data (%s)" + +#~ msgid "Error al eliminar el archivo (%s)" +#~ msgstr "Error while deleting the file (%s)" + +#~ msgid "No es posible leer/escribir el archivo (%s)" +#~ msgstr "Unable to read/write the file (%s)" + +#~ msgid "Error al escribir datos en el archivo (%s)" +#~ msgstr "Error while writing data to file (%s)" + +#~ msgid "Cuenta visualizada" +#~ msgstr "Account displayed" + +#~ msgid "Clave visualizada" +#~ msgstr "Password viewed" + +#~ msgid "Exportación de sysPass en XML" +#~ msgstr "sysPass XML export" + +#~ msgid "Etiqueta" +#~ msgstr "Tag" + +#~ msgid "Es necesario actualizar" +#~ msgstr "Updating needed" + +#~ msgid "HTTPS" +#~ msgstr "HTTPS" + +#~ msgid "Clave copiada" +#~ msgstr "Password copied" + +#~ msgid "Archivo visualizado" +#~ msgstr "File viewed" + +#~ msgid "Archivo: %s" +#~ msgstr "File: %s" + +#~ msgid "Máximo tamaño: %s" +#~ msgstr "Maximum size: %s" + +#~ msgid "Máximo tamaño: %d KB" +#~ msgstr "Maximum size: %d KB" + +#~ msgid "Archivo Eliminado" +#~ msgstr "File Deleted" + +#~ msgid "Autorización" +#~ msgstr "Authorization" + +#~ msgid "Autorización visualizada" +#~ msgstr "Authorization viewed" + +#~ msgid "Archivos habilitados" +#~ msgstr "Files enabled" + +#~ msgid "Archivos deshabilitados" +#~ msgstr "Files disabled" + +#~ msgid "Enlaces públicos habilitados" +#~ msgstr "Public links enabled" + +#~ msgid "Enlaces públicos deshabilitados" +#~ msgstr "Public links disabled" + +#~ msgid "Email enviado" +#~ msgstr "Email sent" + +#~ msgid "Error al enviar email" +#~ msgstr "Error while sending the email" + +#~ msgid "Syslog remoto habilitado" +#~ msgstr "Remote syslog enabled" + +#~ msgid "Auth Basic habilitada" +#~ msgstr "Auth Basic enabled" + +#~ msgid "Auth Basic deshabiltada" +#~ msgstr "Auth Basic disabled" + +#~ msgid "No se importaron cuentas" +#~ msgstr "No accounts were imported" + +#~ msgid "Parámetros de LDAP incorrectos" +#~ msgstr "Wrong LDAP parameters" + +#~ msgid "Importación LDAP" +#~ msgstr "LDAP Import" + +#~ msgid "Compruebe su buzón de correo" +#~ msgstr "Please, check your inbox" + +#~ msgid "DokuWiki habilitada" +#~ msgstr "DokuWiki enabled" + +#~ msgid "Versión no disponible" +#~ msgstr "Version unavailable" + +#~ msgid "Notificaciones no disponibles" +#~ msgstr "Notifications not available" + +#~ msgid "Datos incorrectos" +#~ msgstr "Wrong data" + +#~ msgid "No es posible recuperar la clave" +#~ msgstr "Unable to reset the password" + +#~ msgid "Es necesario una cuenta" +#~ msgstr "An account is needed" + +#~ msgid "Usar auto-login con Auth Basic" +#~ msgstr "Use auto-login through Auth Basic" + +#~ msgid "No es posible cambiar el valor de la clave" +#~ msgstr "Unable to change password value" + +#~ msgid "Filtro incorrecto" +#~ msgstr "Wrong filter" + +#~ msgid "El campo personalizado no existe" +#~ msgstr "Custom field not found" + +#~ msgid "Error al eliminar los plugins" +#~ msgstr "Error while deleting the plugins" + +#~ msgid "Clave maestra no establecida" +#~ msgstr "Master password not set" + +#~ msgid "Error al eliminar las categorías" +#~ msgstr "Error while deleting categories" + +#~ msgid "No es posible restaurar la configuración" +#~ msgstr "Unable to restore configuration" + +#~ msgid "Tipo de campo no encontrado" +#~ msgstr "Field type not found" + +#~ msgid "Fallo en la verificación del hash de integridad" +#~ msgstr "Error while checking integrity hash" + +#~ msgid "Error al crear el usuario 'admin'" +#~ msgstr "Error while creating 'admin' user" + +#~ msgid "Servicio de correo no disponible" +#~ msgstr "Mail service unavailable" + +#~ msgid "Error ol obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master pass from context" + +#~ msgid "Error ol establecer la clave maestra en el contexto" +#~ msgstr "Error while setting master password in context" + +#~ msgid "Track no encontrado" +#~ msgstr "Track not found" + +#~ msgid "Actualización de autorizaciones API" +#~ msgstr "API authorizations update" + +#~ msgid "El nodo XML no existe" +#~ msgstr "The XML node does not exist" + +#~ msgid "Imagen no válida" +#~ msgstr "Invalid image" + +#~ msgid "Verificación de datos exportados finalizada" +#~ msgstr "Verification of exported data finished" + +#~ msgid "Error al actualizar los datos del campo personalizado" +#~ msgstr "Error while updating custom field's data" + +#~ msgid "Error al obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master password from context" + +#~ msgid "Nuevo CLiente" +#~ msgstr "New Client" + +#~ msgid "" +#~ "Si está importando un archivo exportado desde el mismo origen, los datos " +#~ "pueden estar comprometidos." +#~ msgstr "" +#~ "If you are importing an exported file from the same origin, the data " +#~ "could be compromised." + +#~ msgid "Categoría visualizada" +#~ msgstr "Category displayed" + +#~ msgid "Cliente visualizado" +#~ msgstr "Client displayed" + +#~ msgid "Etiqueta visualizada" +#~ msgstr "Tag displayed" + +#~ msgid "Error al crear permiso" +#~ msgstr "Error while creating the permission" + +#~ msgid "Error al actualizar permiso" +#~ msgstr "Error while updating the permission" + +#~ msgid "Error al eliminar permiso" +#~ msgstr "Error while removing the permission" + +#~ msgid "Error al eliminar los permisos" +#~ msgstr "Error while removing the permissions" + +#~ msgid "Permiso no encontrada" +#~ msgstr "Permission not found" + +#~ msgid "Ver Permiso" +#~ msgstr "View Permission" + +#~ msgid "Nuevo Permiso" +#~ msgstr "New Permission" + +#~ msgid "Editar Permiso" +#~ msgstr "Edit Permission" + +#~ msgid "Permisos eliminados" +#~ msgstr "Permissions deleted" + +#~ msgid "Permiso eliminado" +#~ msgstr "Permission deleted" + +#~ msgid "Permiso creado" +#~ msgstr "Permission added" + +#~ msgid "Permiso actualizado" +#~ msgstr "Permission updated" + +#~ msgid "Permisos por Defecto" +#~ msgstr "Default Permissions" + +#~ msgid "Buscar Permiso" +#~ msgstr "Search for Permission" + +#~ msgid "Eliminar Permiso" +#~ msgstr "Delete Permission" + +#~ msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" +#~ msgstr "An element of type user, group or profile need to be set" + +#~ msgid "No hay permisos definidos" +#~ msgstr "There aren't any defined permissions" + +#~ msgid "" +#~ "Prioridad de asignación en caso de coincidir con otros permisos asignados " +#~ "por usuario, grupo o perfil." +#~ msgstr "" +#~ "Assignment priority if permissions match with others assigned by user, " +#~ "group or profile." + +#~ msgid "" +#~ "Indica si los permisos serán forzados al crear o modificar la cuenta." +#~ msgstr "" +#~ "Enforces the permissions to be set either on creating or updating an " +#~ "account ." + +#~ msgid "Los permisos serán añadidos a los existentes." +#~ msgstr "Permissions will be merged with the existing ones." + +#~ msgid "Gestión Permisos" +#~ msgstr "Permissions Management" + +#~ msgid "La clave no cumple los carácteres requeridos" +#~ msgstr "Password does not contain the required characters" + +#~ msgid "Es necesario que la clave contenga letras" +#~ msgstr "Password needs to contain letters" + +#~ msgid "Es necesario que la clave contenga minúsculas" +#~ msgstr "Password needs to contain lower case letters" + +#~ msgid "Es necesario que la clave contenga mayúsculas" +#~ msgstr "Password needs to contain upper case letters" + +#~ msgid "Es necesario que la clave contenga números" +#~ msgstr "Password needs to contain numbers" + +#~ msgid "Es necesario que la clave contenga símbolos" +#~ msgstr "Password needs to contain symbols" + +#~ msgid "Error al desconectar del servidor de LDAP" +#~ msgstr "Error while disconnecting from LDAP server" + +#~ msgid "Valor no encontrada" +#~ msgstr "Value not found" + +#~ msgid "Error al eliminar los valores" +#~ msgstr "Error while deleting the values" + +#~ msgid "Dirección IP no establecida" +#~ msgstr "IP address not set" + +#~ msgid "Valores eliminados" +#~ msgstr "Values deleted" + +#~ msgid "Valor eliminado" +#~ msgstr "Value deleted" + +#~ msgid "Valor creado" +#~ msgstr "Value created" + +#~ msgid "Valor actualizado" +#~ msgstr "Value updated" + +#~ msgid "Tipo de valor no definido o incorrecto" +#~ msgstr "Value type not set or incorrect" + +#~ msgid "Expresión regular inválida" +#~ msgstr "Invalid regular expression" + +#~ msgid "Error al vaciar tracks" +#~ msgstr "Error while clearing tracks out" + +#~ msgid "Track desbloqueado" +#~ msgstr "Track unlocked" + +#~ msgid "Tracks limpiados" +#~ msgstr "Tracks cleared out" + +#~ msgid "Grupo visualizado" +#~ msgstr "Group viewed" + +#~ msgid "Plugin disponible" +#~ msgstr "Plugin available" + +#~ msgid "Plugin no disponible" +#~ msgstr "Plugin unavailable" + +#~ msgid "Plugin cargado" +#~ msgstr "Plugin loaded" diff --git a/app/locales/ru_RU/LC_MESSAGES/messages.mo b/app/locales/ru_RU/LC_MESSAGES/messages.mo index 44991bd7dd83babe8142d607e3e6b3f2987d6402..e9861b06a69e769912d230223351921bfb141921 100644 GIT binary patch delta 20499 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 UZOGr!CwbXAks>1P\n" "Language-Team: Alexander Titov,Alex Us\n" @@ -18,1584 +18,281 @@ msgstr "" "X-Poedit-SearchPath-1: ../../../../lib\n" "X-Poedit-SearchPath-2: ../../../config\n" -#: ../../../modules/web/Controllers/AccountFileController.php:161 -msgid "CONSULTA INVÁLIDA" -msgstr "ОШИБОЧНЫЙ ЗАПРОС" +#: ../../../../lib/SP/Bootstrap.php:278 +#, php-format +msgid "Versión de PHP requerida >= %s <= %s" +msgstr "Required PHP version >= %s <= %s" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:64 -msgid "La sesión no se ha iniciado o ha caducado" -msgstr "Сессия истекла или ошибка сессии" +#: ../../../../lib/SP/Config/ConfigUtil.php:111 +#, php-format +msgid "Actual: %s - Necesario: 750" +msgstr "Current: %s - Needed: 750" -#: ../../../modules/web/Forms/AccountForm.php:171 -msgid "Es necesario un nombre de cuenta" -msgstr "Необходимо имя учетной записи" +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +msgid "Error interno" +msgstr "Внутренняя ошибка" -#: ../../../modules/web/Forms/AccountForm.php:175 -#: ../../../modules/web/Forms/ClientForm.php:84 +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 +msgid "No se puede usar el módulo de encriptación" +msgstr "Модуль криптографии не может быть загружен" + +#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 #, fuzzy -msgid "Es necesario un nombre de cliente" -msgstr "Необходимо имя заказчика" +msgid "Error al generar datos cifrados" +msgstr "Ошибка при создании шифрованных данных" -#: ../../../modules/web/Forms/AccountForm.php:161 -#, fuzzy -msgid "Es necesario un usuario" -msgstr "Необходимо имя пользователя" +#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 +#: ../../../../lib/SP/Mvc/View/Template.php:127 +#, php-format +msgid "No es posible obtener la plantilla \"%s\" : %s" +msgstr "Не могу получить шаблон \"%s\" : %s" -#: ../../../modules/web/Forms/AccountForm.php:131 -msgid "Es necesaria una clave" -msgstr "Необходим пароль" +#: ../../../../lib/SP/Http/Address.php:49 +#: ../../../../lib/SP/Http/Address.php:68 +msgid "IP inválida" +msgstr "Неверный IP" -#: ../../../modules/web/Forms/AccountForm.php:179 -msgid "Es necesario una categoría" -msgstr "Необходима категория" +#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 +#, php-format +msgid "Es necesaria una clave con al menos %d caracteres" +msgstr "Password needs to be %d characters long" -#: ../../../../lib/SP/Mvc/Controller/ControllerTrait.php:114 -msgid "Acción Inválida" -msgstr "Ошибочное действие" +#: ../../../../lib/SP/Mvc/View/Template.php:302 +#: ../../../../lib/SP/Mvc/View/Template.php:366 +#, php-format +msgid "No es posible obtener la variable \"%s\"" +msgstr "Не могу получить переменную \"%s\"" -#: ../../../modules/web/Controllers/ConfigBackupController.php:86 -#: ../../../modules/web/Controllers/UserPassResetController.php:173 -#: ../../../modules/web/Forms/AccountForm.php:135 -#: ../../../modules/web/Forms/UserForm.php:161 -msgid "Las claves no coinciden" -msgstr "Пароль и подтверждение не совпадают" +#: ../../../../lib/SP/Mvc/View/Template.php:335 +#, php-format +msgid "No es posible destruir la variable \"%s\"" +msgstr "Нельзя удалить переменную \"%s\"" -#: ../../../modules/api/Controllers/AccountController.php:184 -#: ../../../modules/api/Controllers/AccountController.php:190 -#: ../../../modules/web/Controllers/AccountController.php:718 -#: ../../../modules/web/Controllers/AccountController.php:729 -msgid "Cuenta creada" -msgstr "Учетная запись создана" +#: ../../../../lib/SP/Mvc/View/Template.php:356 +msgid "La plantilla no contiene archivos" +msgstr "Шаблон не содержит файлов" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:200 -#, fuzzy -msgid "Error al crear la cuenta" -msgstr "Ошибка при создании учетной записи" +#: ../../../../lib/SP/Plugin/PluginManager.php:170 +#, php-format +msgid "Versión de plugin no compatible (%s)" +msgstr "Plugin version not compatible (%s)" -#: ../../../modules/web/Controllers/ConfigLdapController.php:95 -#: ../../../modules/web/Controllers/ConfigMailController.php:102 -#: ../../../config/strings.js.inc:80 -msgid "Sin cambios" -msgstr "Нет изменений" +#: ../../../../lib/SP/Plugin/PluginManager.php:192 +#, fuzzy, php-format +msgid "No es posible cargar el plugin \"%s\"" +msgstr "Невозможно загрузить плагин \"%s\"" -#: ../../../modules/api/Controllers/AccountController.php:234 -#: ../../../modules/api/Controllers/AccountController.php:240 -#: ../../../modules/web/Controllers/AccountController.php:763 -#: ../../../modules/web/Controllers/AccountController.php:774 -msgid "Cuenta actualizada" -msgstr "Информация об учетной записи изменена" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 +#, php-format +msgid "Realizado por: %s (%s)" +msgstr "Performed by: %s (%s)" -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:382 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:431 -#, fuzzy -msgid "Error al modificar la cuenta" -msgstr "Ошибка при изменении учетной записи" +#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 +#, php-format +msgid "Dirección IP: %s" +msgstr "IP Address: %s" -#: ../../../modules/api/Controllers/AccountController.php:309 -#: ../../../modules/api/Controllers/AccountController.php:315 -#: ../../../modules/web/Controllers/AccountController.php:893 -#: ../../../modules/web/Controllers/AccountController.php:898 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:110 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:115 -#: ../../../modules/web/Controllers/AccountManagerController.php:145 -#: ../../../modules/web/Controllers/AccountManagerController.php:150 -#, fuzzy -msgid "Cuenta eliminada" -msgstr "Учетная запись удалена" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:162 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:321 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:192 -#, fuzzy -msgid "Error al eliminar la cuenta" -msgstr "Ошибка при удалении учетной записи" - -#: ../../../modules/api/Controllers/AccountController.php:138 -#: ../../../modules/api/Controllers/AccountController.php:144 -#: ../../../modules/web/Controllers/AccountController.php:804 -#: ../../../modules/web/Controllers/AccountController.php:815 -#: ../../../modules/web/Controllers/UserController.php:411 -#: ../../../modules/web/Controllers/UserController.php:415 -#: ../../../modules/web/Controllers/UserPassResetController.php:186 -#: ../../../modules/web/Controllers/UserPassResetController.php:190 -msgid "Clave actualizada" -msgstr "Пароль изменен" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:436 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:235 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:260 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:233 -#, fuzzy -msgid "Error al actualizar la clave" -msgstr "Ошибка при изменении пароля" - -#: ../../../modules/web/Controllers/AccountController.php:843 -#: ../../../modules/web/Controllers/AccountController.php:854 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:145 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:150 -msgid "Cuenta restaurada" -msgstr "Учетная запись восстановлена" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:301 -#: ../../../../lib/SP/Services/Account/AccountService.php:582 -#, fuzzy -msgid "Error al restaurar cuenta" -msgstr "Ошибка восстановления учетной записи" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserController.php:439 -#: ../../../config/actions.xml:571 -msgid "Ver Usuario" -msgstr "Показать пользователя" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:188 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 -#: ../../../modules/web/Controllers/UserController.php:190 -#: ../../../config/actions.xml:583 -msgid "Editar Usuario" -msgstr "Редактировать пользователя" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 -#: ../../../modules/web/Controllers/UserController.php:105 -#: ../../../config/actions.xml:577 -msgid "Nuevo Usuario" -msgstr "Создать пользователя" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:170 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 -#: ../../../modules/web/Controllers/UserGroupController.php:330 -#: ../../../config/actions.xml:607 -msgid "Ver Grupo" -msgstr "Показать группу" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:187 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 -#: ../../../modules/web/Controllers/UserGroupController.php:182 -#: ../../../config/actions.xml:619 -msgid "Editar Grupo" -msgstr "Редактировать группу" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:152 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 -#: ../../../modules/web/Controllers/UserGroupController.php:112 -#: ../../../config/actions.xml:613 -msgid "Nuevo Grupo" -msgstr "Создать группу" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/UserProfileController.php:307 -#: ../../../config/actions.xml:637 -msgid "Ver Perfil" -msgstr "Показать профиль" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 -#: ../../../modules/web/Controllers/UserProfileController.php:166 -#: ../../../config/actions.xml:649 -msgid "Editar Perfil" -msgstr "Редактировать профиль" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:150 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 -#: ../../../modules/web/Controllers/UserProfileController.php:100 -#: ../../../config/actions.xml:643 -msgid "Nuevo Perfil" -msgstr "Создать профиль" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:307 -#: ../../../config/actions.xml:331 -#, fuzzy -msgid "Ver Cliente" -msgstr "Показать заказчика" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 -#: ../../../config/actions.xml:343 -#, fuzzy -msgid "Editar Cliente" -msgstr "Редактировать заказчика" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ClientController.php:100 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:87 -#: ../../../config/actions.xml:337 -#, fuzzy -msgid "Nuevo Cliente" -msgstr "Новый заказчик" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:320 -#: ../../../config/actions.xml:301 -msgid "Ver Categoría" -msgstr "Показать категорию" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:169 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 -#: ../../../config/actions.xml:313 -msgid "Editar Categoría" -msgstr "Редактировать категорию" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/CategoryController.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:151 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:112 -#: ../../../config/actions.xml:307 -msgid "Nueva Categoría" -msgstr "Создать категорию" - -#: ../../../modules/web/Controllers/AuthTokenController.php:330 -msgid "Ver Autorización" -msgstr "Показать авторизацию" - -#: ../../../modules/web/Controllers/AuthTokenController.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:154 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 -msgid "Nueva Autorización" -msgstr "Создать авторизацию" - -#: ../../../modules/web/Controllers/AuthTokenController.php:173 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 -msgid "Editar Autorización" -msgstr "Редактировать авторизацию" - -#: ../../../modules/web/Controllers/CustomFieldController.php:101 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:158 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 -msgid "Nuevo Campo" -msgstr "Создать поле" - -#: ../../../modules/web/Controllers/CustomFieldController.php:162 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 -msgid "Editar Campo" -msgstr "Изменить поле" - -#: ../../../modules/web/Forms/UserForm.php:111 -#, fuzzy -msgid "Es necesario un nombre de usuario" -msgstr "Необходимо имя пользователя" - -#: ../../../modules/web/Forms/UserForm.php:115 -msgid "Es necesario un login" -msgstr "Необходим логин" - -#: ../../../modules/web/Forms/UserForm.php:119 -msgid "Es necesario un perfil" -msgstr "Необходим профиль" - -#: ../../../modules/web/Forms/UserForm.php:123 -msgid "Es necesario un grupo" -msgstr "Необходима группа" - -#: ../../../modules/web/Forms/UserForm.php:127 -msgid "Es necesario un email" -msgstr "Необходим email" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:53 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:92 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:151 -#: ../../../modules/web/Controllers/ConfigImportController.php:56 -#: ../../../modules/web/Controllers/ConfigLdapController.php:218 -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:55 -#: ../../../modules/web/Forms/UserForm.php:131 -#: ../../../modules/web/Forms/UserForm.php:153 -#: ../../../modules/web/Forms/UserForm.php:171 -msgid "Ey, esto es una DEMO!!" -msgstr "Эй, это DEMO!!" - -#: ../../../modules/web/Controllers/UserPassResetController.php:169 -#: ../../../modules/web/Forms/AuthTokenForm.php:101 -#: ../../../modules/web/Forms/UserForm.php:157 -msgid "La clave no puede estar en blanco" -msgstr "Пароль не может быть пустым" - -#: ../../../modules/web/Controllers/UserController.php:311 -#: ../../../modules/web/Controllers/UserController.php:317 -msgid "Usuario creado" -msgstr "Пользователь создан" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:474 -#, fuzzy -msgid "Error al crear el usuario" -msgstr "Ошибка при создании пользователя" - -#: ../../../modules/web/Controllers/UserController.php:372 -#: ../../../modules/web/Controllers/UserController.php:378 -msgid "Usuario actualizado" -msgstr "Данные пользователя обновлены" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:100 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:677 -#: ../../../../lib/SP/Services/User/UserService.php:310 -#, fuzzy -msgid "Error al actualizar el usuario" -msgstr "Ошибка при обновлении данных пользователя" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:165 -#: ../../../../lib/SP/Services/User/UserService.php:331 -#, fuzzy -msgid "Error al modificar la clave" -msgstr "Ошибка изменения пароля" - -#: ../../../modules/web/Forms/UserForm.php:179 -msgid "No es posible eliminar, usuario en uso" -msgstr "Не могу удалить, пользователь работает" - -#: ../../../modules/web/Controllers/UserController.php:277 -#: ../../../modules/web/Controllers/UserController.php:281 -msgid "Usuario eliminado" -msgstr "Пользователь удален" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:184 -#, fuzzy -msgid "Error al eliminar el usuario" -msgstr "Ошибка удаления пользователя" - -#: ../../../modules/web/Forms/UserGroupForm.php:84 -msgid "Es necesario un nombre de grupo" -msgstr "Необходимо имя группы" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:306 -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:351 -msgid "Nombre de grupo duplicado" -msgstr "Указанное имя группы уже существует" - -#: ../../../modules/api/Controllers/UserGroupController.php:91 -#: ../../../modules/api/Controllers/UserGroupController.php:96 -#: ../../../modules/web/Controllers/UserGroupController.php:264 -#: ../../../modules/web/Controllers/UserGroupController.php:268 -msgid "Grupo creado" -msgstr "Группа создана" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:315 -#, fuzzy -msgid "Error al crear el grupo" -msgstr "Ошибка при создании группы" - -#: ../../../modules/api/Controllers/UserGroupController.php:122 -#: ../../../modules/api/Controllers/UserGroupController.php:127 -#: ../../../modules/web/Controllers/UserGroupController.php:303 -#: ../../../modules/web/Controllers/UserGroupController.php:307 -msgid "Grupo actualizado" -msgstr "Группа обновлена" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:361 -#, fuzzy -msgid "Error al actualizar el grupo" -msgstr "Ошибка при обновлении группы" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:14 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:9 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:245 -msgid "Usuarios" -msgstr "Пользователи" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 +msgid "Solicitud" +msgstr "Запрос" #. (itstool) path: action/text #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:125 #: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:156 #: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:74 -#: ../../../modules/web/Controllers/ConfigBackupController.php:120 -#: ../../../modules/web/Controllers/ConfigManagerController.php:171 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:96 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:20 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:389 +#: ../../../modules/web/Controllers/ConfigManagerController.php:175 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: ../../../config/actions.xml:13 msgid "Cuentas" msgstr "Учетные записи" -#: ../../../../inc/SP/Mgmt/Customers/Customer.class.php:115 -msgid "No es posible eliminar" -msgstr "Невозможно удалить" +#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 +msgid "Notificación" +msgstr "Notification" -#: ../../../modules/api/Controllers/UserGroupController.php:151 -#: ../../../modules/api/Controllers/UserGroupController.php:156 -#: ../../../modules/web/Controllers/UserGroupController.php:230 -#: ../../../modules/web/Controllers/UserGroupController.php:234 -msgid "Grupo eliminado" -msgstr "Группа удалена" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:62 -#, fuzzy -msgid "Error al eliminar el grupo" -msgstr "Ошибка при удалении группы" - -#: ../../../modules/web/Forms/UserProfileForm.php:116 -msgid "Es necesario un nombre de perfil" -msgstr "Необходимо имя профиля" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:230 -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:275 -msgid "Nombre de perfil duplicado" -msgstr "Профиль с таким именем уже существует" - -#: ../../../modules/web/Controllers/UserProfileController.php:248 -msgid "Perfil creado" -msgstr "Профиль создан" - -#: ../../../modules/web/Controllers/UserProfileController.php:284 -msgid "Perfil actualizado" -msgstr "Профиль изменен" - -#: ../../../modules/web/Controllers/UserProfileController.php:215 -#: ../../../modules/web/Controllers/UserProfileController.php:219 -msgid "Perfil eliminado" -msgstr "Профиль удален" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:77 -#: ../../../modules/api/Controllers/ClientController.php:93 -#: ../../../modules/api/Controllers/ClientController.php:98 -#: ../../../modules/web/Controllers/ClientController.php:244 -#: ../../../modules/web/Controllers/ClientController.php:248 -#, fuzzy -msgid "Cliente creado" -msgstr "Заказчик добавлен" - -#: ../../../modules/api/Controllers/ClientController.php:124 -#: ../../../modules/api/Controllers/ClientController.php:129 -#: ../../../modules/web/Controllers/ClientController.php:280 -#: ../../../modules/web/Controllers/ClientController.php:284 -#, fuzzy -msgid "Cliente actualizado" -msgstr "Информация о заказчике обновлена" - -#: ../../../modules/api/Controllers/ClientController.php:153 -#: ../../../modules/api/Controllers/ClientController.php:158 -#: ../../../modules/web/Controllers/ClientController.php:212 -#: ../../../modules/web/Controllers/ClientController.php:216 -#, fuzzy -msgid "Cliente eliminado" -msgstr "Заказчик удален" - -#: ../../../modules/web/Forms/CategoryForm.php:83 -msgid "Es necesario un nombre de categoría" -msgstr "Необходимо имя категории" - -#: ../../../modules/api/Controllers/CategoryController.php:91 -#: ../../../modules/api/Controllers/CategoryController.php:96 -#: ../../../modules/web/Controllers/CategoryController.php:253 -#: ../../../modules/web/Controllers/CategoryController.php:257 -msgid "Categoría creada" -msgstr "Категория создана" - -#: ../../../modules/api/Controllers/CategoryController.php:121 -#: ../../../modules/api/Controllers/CategoryController.php:126 -#: ../../../modules/web/Controllers/CategoryController.php:293 -#: ../../../modules/web/Controllers/CategoryController.php:297 -msgid "Categoría actualizada" -msgstr "Информация о категории изменена" - -#: ../../../modules/api/Controllers/CategoryController.php:150 -#: ../../../modules/api/Controllers/CategoryController.php:155 -#: ../../../modules/web/Controllers/CategoryController.php:219 -#: ../../../modules/web/Controllers/CategoryController.php:223 -msgid "Categoría eliminada" -msgstr "Категория удалена" - -#: ../../../modules/web/Controllers/AuthTokenController.php:258 -msgid "Autorización creada" -msgstr "Авторизация создана" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 -#: ../../../modules/web/Controllers/AuthTokenController.php:291 -#: ../../../modules/web/Controllers/AuthTokenController.php:300 -#: ../../../modules/web/Controllers/AuthTokenController.php:307 -msgid "Autorización actualizada" -msgstr "Авторизация изменена" - -#: ../../../modules/web/Controllers/AuthTokenController.php:225 -#: ../../../modules/web/Controllers/AuthTokenController.php:229 -msgid "Autorización eliminada" -msgstr "Авторизация удалена" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:87 -msgid "Nombre del campo no indicado" -msgstr "Имя поля не задано" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:91 -msgid "Tipo del campo no indicado" -msgstr "Тип поля не указан" - -#: ../../../modules/web/Forms/CustomFieldDefForm.php:95 -msgid "Módulo del campo no indicado" -msgstr "Для поля не указан модуль" - -#: ../../../modules/web/Controllers/CustomFieldController.php:234 -#: ../../../modules/web/Controllers/CustomFieldController.php:238 -msgid "Campo creado" -msgstr "Поле создано" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:74 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:87 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:156 -#: ../../../modules/web/Controllers/CustomFieldController.php:271 -#: ../../../modules/web/Controllers/CustomFieldController.php:275 -msgid "Campo actualizado" -msgstr "Поле обновлено" - -#: ../../../modules/web/Controllers/CustomFieldController.php:206 -msgid "Campo eliminado" -msgstr "Поле удалено" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:94 -msgid "Realizar Backup" -msgstr "Выполнить резервное копирование" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:112 -#, fuzzy -msgid "Error al realizar el backup" -msgstr "Ошибка при выполнении резервной копии" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:114 -#: ../../../../lib/SP/Services/Export/XmlExportService.php:167 -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -#, fuzzy -msgid "Revise el registro de eventos para más detalles" -msgstr "Проверьте журнал событий для деталей" - -#: ../../../modules/api/Controllers/ConfigController.php:57 -#: ../../../modules/web/Controllers/ConfigBackupController.php:64 -msgid "Copia de la aplicación y base de datos realizada correctamente" -msgstr "Резервная копия программы и базы успешно создана" - -#: ../../../modules/api/Controllers/ConfigController.php:61 -#: ../../../modules/web/Controllers/ConfigBackupController.php:67 -msgid "Proceso de backup finalizado" -msgstr "Процесс резервного копирования закончен" - -#: ../../../../inc/SP/Core/XmlExport.class.php:146 -#, fuzzy -msgid "Error al realizar la exportación de cuentas" -msgstr "Ошибка при экспорте учетных записей" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:165 -msgid "Error al realizar la exportación" -msgstr "Ошибка при экспорте" - -#: ../../../../inc/SP/Core/XmlExport.class.php:155 -msgid "Exportación de cuentas realizada correctamente" -msgstr "Экспорт успешно выполнен" - -#: ../../../modules/api/Controllers/ConfigController.php:91 -#: ../../../modules/api/Controllers/ConfigController.php:94 -#: ../../../modules/web/Controllers/ConfigBackupController.php:102 -#: ../../../modules/web/Controllers/ConfigBackupController.php:127 -msgid "Proceso de exportación finalizado" -msgstr "Процесс экспорта закончен" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:169 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:171 -#, fuzzy -msgid "Los parámetros de LDAP no están configurados" -msgstr "Параметры LDAP не указаны" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:95 -#: ../../../modules/web/Controllers/ConfigLdapController.php:154 -#: ../../../modules/web/Controllers/ConfigLdapController.php:197 -msgid "Conexión a LDAP correcta" -msgstr "Подключение к LDAP успешно" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:109 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:196 -msgid "Objetos encontrados" -msgstr "Найдено объектов" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:257 -msgid "Modificar Configuración" -msgstr "Изменить конфигурацию" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:70 -msgid "El tamaño máximo por archivo es de 16MB" -msgstr "Максимальный размер файла 16MB" - -#: ../../../config/strings.js.inc:45 -msgid "Extensión no permitida" -msgstr "Данный тип файла заблокирован" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:115 -#, fuzzy -msgid "Faltan parámetros de Proxy" -msgstr "Не указаны все параметры прокси" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:129 -msgid "Proxy habiltado" -msgstr "Прокси включен" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:134 -msgid "Proxy deshabilitado" -msgstr "Прокси выключен" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:223 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:309 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:375 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:422 -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:475 -msgid "Sección" -msgstr "Раздел" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:157 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:131 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:17 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:12 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:441 -msgid "General" -msgstr "Основное" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:59 -msgid "Faltan parámetros de Wiki" -msgstr "Пропущены настройки Wiki" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:69 -msgid "Wiki habiltada" -msgstr "WiKi включен" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:74 -msgid "Wiki deshabilitada" -msgstr "WiKi выключен" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:186 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:26 -#: ../../../config/actions.xml:37 -msgid "Wiki" -msgstr "Wiki" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:69 -#: ../../../modules/web/Controllers/ConfigLdapController.php:139 -#: ../../../modules/web/Controllers/ConfigLdapController.php:175 -msgid "Faltan parámetros de LDAP" -msgstr "Пропущены настройки LDAP" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:88 -msgid "LDAP habiltado" -msgstr "LDAP включен" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:93 -msgid "LDAP deshabilitado" -msgstr "LDAP выключен" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:205 -msgid "LDAP" -msgstr "LDAP" - -#: ../../../modules/web/Controllers/ConfigMailController.php:68 -#: ../../../modules/web/Controllers/ConfigMailController.php:125 -msgid "Faltan parámetros de Correo" -msgstr "Пропущены настройки почты" - -#: ../../../modules/web/Controllers/ConfigMailController.php:93 -msgid "Correo habiltado" -msgstr "Email включен" - -#: ../../../modules/web/Controllers/ConfigMailController.php:100 -msgid "Correo deshabilitado" -msgstr "Email выключен" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:231 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:10 -msgid "Correo" -msgstr "Mail" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:68 -msgid "Configuración actualizada" -msgstr "Конфигурация изменена" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:297 -#: ../../../../lib/SP/Services/Auth/LoginService.php:321 -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:144 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -#, fuzzy -msgid "Clave maestra actualizada" -msgstr "Мастер-пароль актуален" - -#: ../../../../lib/SP/Services/User/UpdatedMasterPassException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:145 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:68 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:142 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:116 -#, fuzzy -msgid "Reinicie la sesión para cambiarla" -msgstr "Перезайдите для вступления изменений" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:72 -#, fuzzy -msgid "Clave maestra no indicada" -msgstr "Необходим мастер-пароль" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:76 -msgid "Se ha de confirmar el cambio de clave" -msgstr "Изменение пароля должно быть подтверждено" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:80 -msgid "Las claves son idénticas" -msgstr "Пароли одинаковы" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:84 -msgid "Las claves maestras no coinciden" -msgstr "Мастер-пароль не совпадает" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:88 -msgid "La clave maestra actual no coincide" -msgstr "Текущий мастер-пароль ошибочен" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:89 -#, fuzzy -msgid "Errores al actualizar las claves de las cuentas" -msgstr "Ошибка при изменении паролей учетных записей" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:233 -#, fuzzy -msgid "Errores al actualizar las claves de las cuentas del histórico" -msgstr "Ошибка при обновлении истории паролей учетной записи" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:136 -#, fuzzy -msgid "Errores al actualizar datos de campos personalizados" -msgstr "Ошибка при изменении свободных полей учетной записи" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:71 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:77 #: ../../../../lib/SP/Services/Account/AccountCryptService.php:138 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:67 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:75 #: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:83 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:108 msgid "Actualizar Clave Maestra" msgstr "Изменить мастер-пароль" -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:138 -#, fuzzy -msgid "Error al guardar el hash de la clave maestra" -msgstr "Ошибка при сохранении хеша мастер-пароля" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 +#, php-format +msgid "Cuentas actualizadas: %d / %d" +msgstr "Accounts updated: %d / %d" -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:103 -msgid "Generar Clave Temporal" -msgstr "Сгенерировать временный пароль" +#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 +#, php-format +msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" +msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:82 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:157 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:288 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:291 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:167 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:117 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:124 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:250 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:257 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:42 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:53 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:101 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:26 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:20 -msgid "Clave" -msgstr "Пароль" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:200 -msgid "Clave Temporal Generada" -msgstr "Временный пароль" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:110 -#, fuzzy -msgid "Error al generar clave temporal" -msgstr "Ошибка генерации временного пароля" - -#: ../../../../inc/SP/Controller/LoginController.class.php:124 -msgid "Usuario/Clave no introducidos" -msgstr "Пользователь / пароль не введены" - -#: ../../../../inc/SP/Controller/LoginController.class.php:108 -msgid "Inicio sesión" -msgstr "Начало сессии" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:114 -#, fuzzy -msgid "Error al guardar los datos de LDAP" -msgstr "Ошибка при сохранении данных пользователя из LDAP" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:59 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:154 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:244 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:334 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:389 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:417 -#: ../../../../lib/SP/Services/Account/AccountService.php:227 -#: ../../../../lib/SP/Services/Account/AccountService.php:232 -#: ../../../../lib/SP/Services/Api/ApiService.php:129 -#: ../../../../lib/SP/Services/Api/ApiService.php:227 -#: ../../../../lib/SP/Services/Api/ApiService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:187 -#: ../../../../lib/SP/Services/Auth/LoginService.php:351 -#: ../../../../lib/SP/Services/Auth/LoginService.php:500 -#: ../../../../lib/SP/Services/Auth/LoginService.php:505 -#: ../../../../lib/SP/Services/Auth/LoginService.php:537 -#: ../../../../lib/SP/Services/Auth/LoginService.php:644 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:311 -#: ../../../../lib/SP/Services/CustomField/CustomFieldService.php:203 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:108 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:79 -#: ../../../../lib/SP/Services/User/UserPassService.php:232 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:122 -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:177 -msgid "Error interno" -msgstr "Внутренняя ошибка" - -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:224 -#, fuzzy -msgid "Error al actualizar la clave del usuario en la BBDD" -msgstr "Ошибка изменения пароля пользователя в БД" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:157 -#: ../../../../lib/SP/Services/Auth/LoginService.php:456 -#: ../../../../lib/SP/Services/Auth/LoginService.php:463 -#: ../../../../lib/SP/Services/Auth/LoginService.php:571 -#: ../../../../lib/SP/Services/Auth/LoginService.php:576 -#: ../../../../lib/SP/Services/Auth/LoginService.php:615 -#: ../../../../lib/SP/Services/Auth/LoginService.php:620 -#, fuzzy -msgid "Login incorrecto" -msgstr "Ошибка входа" - -#: ../../../../lib/SP/Core/Acl/Acl.php:301 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:112 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:155 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:110 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:142 -#: ../../../../lib/SP/Services/Auth/LoginService.php:217 -#: ../../../../lib/SP/Services/Auth/LoginService.php:235 -#: ../../../../lib/SP/Services/Auth/LoginService.php:386 -#: ../../../../lib/SP/Services/Auth/LoginService.php:453 -#: ../../../../lib/SP/Services/Auth/LoginService.php:561 #: ../../../../lib/SP/Services/Auth/LoginService.php:604 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:238 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: ../../../modules/web/Controllers/LoginController.php:102 -#: ../../../modules/web/Controllers/UserController.php:278 -#: ../../../modules/web/Controllers/UserController.php:312 -#: ../../../modules/web/Controllers/UserController.php:373 -#: ../../../modules/web/Controllers/UserController.php:412 -#: ../../../modules/web/Controllers/UserPassResetController.php:187 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:91 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:135 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:20 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:65 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:52 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:104 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:111 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:230 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:244 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:11 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:91 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:15 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:84 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:70 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 -msgid "Usuario" -msgstr "Пользователь" +msgid "N/D" +msgstr "N/A" -#: ../../../../lib/SP/Services/Auth/LoginService.php:471 -#: ../../../../lib/SP/Services/Auth/LoginService.php:476 -msgid "Cuenta expirada" -msgstr "Учетная запись просрочена" +#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 +#, php-format +msgid "No es posible crear el directorio de backups (\"%s\")" +msgstr "Невозможно создать каталог резервных копий (\"%s\")" -#: ../../../../lib/SP/Services/Auth/LoginService.php:484 -#: ../../../../lib/SP/Services/Auth/LoginService.php:489 -msgid "El usuario no tiene grupos asociados" -msgstr "Для пользователя не указаны группы" +#: ../../../../lib/SP/Services/Config/ConfigService.php:68 +#: ../../../../lib/SP/Services/Config/ConfigService.php:153 +#, php-format +msgid "Parámetro no encontrado (%s)" +msgstr "Parameter not found (%s)" -#: ../../../../lib/SP/Services/Auth/LoginService.php:605 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:10 -msgid "Autentificación" -msgstr "Аутентификация" +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 +#, php-format +msgid "Clave Maestra %s" +msgstr "Мастер пароль %s" -#: ../../../../lib/SP/Services/Auth/LoginService.php:216 -#: ../../../../lib/SP/Services/Auth/LoginService.php:223 -msgid "Usuario deshabilitado" -msgstr "Пользователь отключен" +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 +msgid "" +"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " +"el siguiente inicio." +msgstr "" +"Был сгенерирован новый мастер пароль, который необходимо будет ввести при " +"следующей авторизации в приложении" -#: ../../../../inc/SP/Controller/LoginController.class.php:246 +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 +#, php-format +msgid "La nueva clave es: %s" +msgstr "Новый мастер пароль: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 +#, php-format +msgid "Esta clave estará activa hasta: %s" +msgstr "This password will be valid until: %s" + +#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 #, fuzzy -msgid "Error al obtener los datos del usuario de la BBDD" -msgstr "Ошибка получения данных о пользователе из DB" +msgid "No olvide acceder lo antes posible para guardar los cambios." +msgstr "Пожалуйста, не забудьте залогиниться для сохранения изменений." -#: ../../../../lib/SP/Services/Auth/LoginService.php:339 +#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 +msgid "Actualizando datos encriptados" +msgstr "Обновление зашифрованных данных" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 +msgid "Categorías" +msgstr "Категории" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 #, fuzzy -msgid "La clave maestra no ha sido guardada o es incorrecta" -msgstr "Мастер-пароль не сохранен или ошибочен" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:282 -#: ../../../../lib/SP/Services/Auth/LoginService.php:288 -#: ../../../../lib/SP/Services/Auth/LoginService.php:306 -#: ../../../../lib/SP/Services/Auth/LoginService.php:312 -#, fuzzy -msgid "Clave maestra incorrecta" -msgstr "Неправильный мастер-пароль" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 -#: ../../../modules/web/Controllers/UserProfileController.php:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:60 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:124 -msgid "Perfil" -msgstr "Профиль" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:120 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:146 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:156 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:143 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:140 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 -#: ../../../modules/web/Controllers/UserGroupController.php:231 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:137 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:15 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:269 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:272 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:203 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:230 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:141 -msgid "Grupo" -msgstr "Группа" - -#: ../../../modules/web/Controllers/AccountFileController.php:370 -msgid "Gestión de archivos deshabilitada" -msgstr "Управление файлами отключено" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 -msgid "Subir Archivo" -msgstr "Загрузить файл" - -#: ../../../modules/web/Controllers/AccountFileController.php:167 -msgid "No hay extensiones permitidas" -msgstr "Нет доступных расширений" - -#: ../../../../lib/SP/Services/Import/FileImport.php:100 -#: ../../../modules/web/Controllers/AccountFileController.php:184 -msgid "Tipo de archivo no soportado" -msgstr "Данный тип файлов запрещен" - -#: ../../../modules/web/Controllers/AccountFileController.php:191 -msgid "Archivo inválido" -msgstr "Ошибочный файл" - -#: ../../../../lib/SP/Services/Import/FileImport.php:116 -#: ../../../modules/web/Controllers/AccountFileController.php:199 -#: ../../../modules/web/Controllers/AccountFileController.php:219 -#, fuzzy -msgid "Error interno al leer el archivo" -msgstr "Внутренняя ошибка чтения файла" - -#: ../../../modules/web/Controllers/AccountFileController.php:231 -#: ../../../modules/web/Controllers/AccountFileController.php:240 -msgid "Archivo guardado" -msgstr "Файл сохранен" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:77 -msgid "No se pudo guardar el archivo" -msgstr "Ошибка сохранения файла" - -#: ../../../../ajax/ajax_filesMgmt.php:154 -#: ../../../../ajax/ajax_filesMgmt.php:198 -msgid "No es un ID de archivo válido" -msgstr "Ошибочный ID файла" - -#: ../../../modules/web/Controllers/AccountFileController.php:70 -#: ../../../modules/web/Controllers/AccountFileController.php:122 -msgid "El archivo no existe" -msgstr "Файл не существует" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:177 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:38 -#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 -msgid "Descargar Archivo" -msgstr "Скачать файл" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: ../../../modules/web/Controllers/ItemPresetController.php:278 -#: ../../../modules/web/Controllers/ItemPresetController.php:311 -#: ../../../modules/web/Controllers/ItemPresetController.php:350 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:92 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:94 -msgid "ID" -msgstr "ID" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:122 -#: ../../../modules/web/Controllers/AccountFileController.php:84 -#: ../../../modules/web/Controllers/AccountFileController.php:97 -#: ../../../modules/web/Controllers/AccountFileController.php:137 -#: ../../../modules/web/Controllers/AccountFileController.php:232 -#: ../../../modules/web/Controllers/AccountFileController.php:329 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:70 -msgid "Archivo" -msgstr "Файл" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:451 -#: ../../../../lib/SP/Services/Auth/LoginService.php:514 -#: ../../../../lib/SP/Services/Auth/LoginService.php:560 -#: ../../../../lib/SP/Services/Auth/LoginService.php:603 -#: ../../../modules/web/Controllers/AccountFileController.php:235 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 -#: ../../../modules/web/Controllers/ItemPresetController.php:310 -#: ../../../modules/web/Controllers/ItemPresetController.php:349 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:33 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:16 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 -msgid "Tipo" -msgstr "Тип" - -#: ../../../modules/web/Controllers/AccountFileController.php:236 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 -msgid "Tamaño" -msgstr "Размер" - -#: ../../../modules/web/Controllers/AccountFileController.php:328 -msgid "Archivo eliminado" -msgstr "Файл удален" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:279 -#, fuzzy -msgid "Error al eliminar el archivo" -msgstr "Ошибка при удалении файла" - -#: ../../../../lib/SP/Services/Api/ApiService.php:152 -#, fuzzy -msgid "Parámetros incorrectos" -msgstr "Ошибочные параметры" - -#: ../../../modules/web/Controllers/UserPassResetController.php:101 -msgid "Recuperación de Clave" -msgstr "Восстановление пароля" - -#: ../../../modules/web/Controllers/UserPassResetController.php:102 -msgid "Solicitado para" -msgstr "Запрошено для" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "Solicitud enviada" -msgstr "Запрос отправлен" - -#: ../../../modules/web/Controllers/UserPassResetController.php:107 -msgid "En breve recibirá un correo para completar la solicitud." -msgstr "В скором времени вы получите email для завершения запроса." - -#: ../../../../ajax/ajax_passReset.php:86 -#: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:329 -msgid "Modificar Clave Usuario" -msgstr "Изменить пароль пользователя" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:26 -msgid "Login" -msgstr "Логин" - -#: ../../../../ajax/ajax_passReset.php:107 -msgid "La clave es incorrecta o no coincide" -msgstr "Ошибка пароля" - -#: ../../../modules/web/Controllers/AccountController.php:919 -#: ../../../modules/web/Forms/NotificationForm.php:100 -msgid "Es necesaria una descripción" -msgstr "Необходимо описание" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1173 -msgid "Solicitud de Modificación de Cuenta" -msgstr "Запрос на изменение учетной записи" - -#: ../../../modules/web/Controllers/AccountController.php:927 -msgid "Solicitante" -msgstr "Запросил" - -#: ../../../modules/web/Controllers/AccountController.php:224 -#: ../../../modules/web/Controllers/AccountController.php:555 -#: ../../../modules/web/Controllers/AccountController.php:611 -#: ../../../modules/web/Controllers/AccountController.php:650 -#: ../../../modules/web/Controllers/AccountController.php:684 -#: ../../../modules/web/Controllers/AccountController.php:719 -#: ../../../modules/web/Controllers/AccountController.php:764 -#: ../../../modules/web/Controllers/AccountController.php:805 -#: ../../../modules/web/Controllers/AccountController.php:844 -#: ../../../modules/web/Controllers/AccountController.php:894 -#: ../../../modules/web/Controllers/AccountController.php:928 -#: ../../../modules/web/Controllers/AccountFileController.php:233 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:111 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:146 -#: ../../../modules/web/Controllers/AccountManagerController.php:146 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:18 -msgid "Cuenta" -msgstr "Учетная запись" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:159 -#: ../../../modules/api/Controllers/AccountController.php:72 -#: ../../../modules/api/Controllers/AccountController.php:104 -#: ../../../modules/api/Controllers/AccountController.php:140 -#: ../../../modules/api/Controllers/AccountController.php:186 -#: ../../../modules/api/Controllers/AccountController.php:236 -#: ../../../modules/api/Controllers/AccountController.php:311 -#: ../../../modules/web/Controllers/AccountController.php:225 -#: ../../../modules/web/Controllers/AccountController.php:720 -#: ../../../modules/web/Controllers/AccountController.php:765 -#: ../../../modules/web/Controllers/AccountController.php:806 -#: ../../../modules/web/Controllers/AccountController.php:845 -#: ../../../modules/web/Controllers/AccountController.php:895 -#: ../../../modules/web/Controllers/AccountController.php:929 -#: ../../../modules/web/Controllers/AccountFileController.php:234 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:112 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:147 -#: ../../../modules/web/Controllers/AccountManagerController.php:147 -#: ../../../modules/web/Controllers/ClientController.php:213 -#: ../../../modules/web/Controllers/ClientController.php:245 -#: ../../../modules/web/Controllers/ClientController.php:281 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:39 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:29 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:72 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 -#, fuzzy -msgid "Cliente" -msgstr "Заказчик" - -#: ../../../modules/web/Controllers/AccountController.php:930 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:28 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:54 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 -msgid "Descripción" -msgstr "Описание" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:697 -#, fuzzy -msgid "Error al actualizar preferencias" -msgstr "Ошибка изменения настроек" - -#: ../../../modules/web/Controllers/UserSettingsGeneralController.php:70 -msgid "Preferencias actualizadas" -msgstr "Настройки изменены" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:509 -msgid "La clave maestra no coincide" -msgstr "Неверный мастер-пароль" - -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:132 -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:96 -msgid "No tiene permisos para acceder a esta cuenta" -msgstr "Нет прав для доступа к данной учетной записи" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 -#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 -msgid "Ver Clave" -msgstr "Показать пароль" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:67 -#: ../../../config/strings.js.inc:72 -msgid "Clave de Cuenta" -msgstr "Пароль учетной записи" - -#: ../../../../inc/SP/Http/Request.class.php:55 -#, fuzzy -msgid "No es posible acceder directamente a este archivo" -msgstr "Невозможно обратиться к файлу" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:143 -msgid "Error al actualizar el historial" -msgstr "Ошибка при обновлении истории" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -msgid "Actualizar Cuenta" -msgstr "Редактировать учетную запись" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:164 -#, fuzzy -msgid "Error al actualizar los grupos secundarios" -msgstr "Ошибка изменения вторичных групп" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:103 -#, fuzzy -msgid "Error al actualizar los usuarios de la cuenta" -msgstr "Ошибка изменения пользователей с доступом к учетной записи" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 -#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 -msgid "Restaurar Cuenta" -msgstr "Восстановление учетной записи" - -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:451 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:623 -#: ../../../../lib/SP/Services/Account/AccountHistoryService.php:75 -#, fuzzy -msgid "No se pudieron obtener los datos de la cuenta" -msgstr "Ошибка получения данных для учетной записи" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:256 -#: ../../../modules/web/Controllers/AccountController.php:300 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:278 -#: ../../../config/actions.xml:157 -msgid "Nueva Cuenta" -msgstr "Новая учетная запись" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:389 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:177 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:176 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 -#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 -#: ../../../config/actions.xml:793 -#, fuzzy -msgid "Eliminar Cuenta" -msgstr "Удалить учетную запись" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:106 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:139 -#: ../../../../lib/SP/Repositories/Account/AccountToUserGroupRepository.php:191 -#, fuzzy -msgid "Error al eliminar grupos asociados a la cuenta" -msgstr "Ошибка удаления групп учетной записи" - -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:76 -#: ../../../../lib/SP/Repositories/Account/AccountToUserRepository.php:132 -#, fuzzy -msgid "Error al eliminar usuarios asociados a la cuenta" -msgstr "Ошибка удаления пользователей учетной записи" - -#: ../../../../inc/SP/Mgmt/Files/FileUtil.class.php:102 -#, fuzzy -msgid "Error al eliminar archivos asociados a la cuenta" -msgstr "Ошибка удаления файлов учетной записи" - -#: ../../../../inc/SP/Account/AccountCrypt.class.php:70 -#: ../../../../inc/SP/Account/AccountCrypt.class.php:200 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:73 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:208 -msgid "Inicio" -msgstr "Старт" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:81 -#, fuzzy -msgid "Error en el módulo de encriptación" -msgstr "Ошибка в модуле шифрования" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:115 -#, fuzzy -msgid "Error al obtener las claves de las cuentas" -msgstr "Ошибка получения паролей для учетной записи" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:183 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:188 -#, fuzzy -msgid "Fallo al actualizar la clave de la cuenta" -msgstr "Ошибка изменения пароля учетной записи" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:193 -#: ../../../modules/web/Controllers/AccountManagerController.php:185 -#: ../../../modules/web/Controllers/AccountManagerController.php:188 -msgid "Cuentas actualizadas" -msgstr "Обновлены учетные записи" - -#: ../../../../inc/SP/Account/AccountUtil.class.php:132 -#, fuzzy -msgid "No se pudieron obtener los datos de las cuentas" -msgstr "Ошибка получения информации о учетной записи" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:212 -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:218 -msgid "Actualizar Clave Maestra (H)" -msgstr "Изменить мастер-пароль (H)" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:158 -msgid "La clave maestra del registro no coincide" -msgstr "Мастер-пароль не совпадает" - -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:157 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:160 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:283 -#: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:286 -#, fuzzy -msgid "Fallo al actualizar la clave del histórico" -msgstr "Ошибка обновления истории мастер-паролей" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:109 -msgid "Registros actualizados" -msgstr "Записи изменены" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:7 -#, fuzzy -msgid "Buscar Cuentas" -msgstr "Поиск учетных записей" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 -msgid "Ver Cuenta" -msgstr "Просмотр деталей учетной записи" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 -#: ../../../config/actions.xml:193 -msgid "Copiar Cuenta" -msgstr "Скопировать учетную запись" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountController.php:344 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:18 -#: ../../../config/actions.xml:163 -msgid "Editar Cuenta" -msgstr "Изменить учетную запись" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:181 -msgid "Editar Clave de Cuenta" -msgstr "Изменить пароль учетной записи" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 -#: ../../../config/actions.xml:259 -msgid "Ver Historial" -msgstr "Показать историю" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:277 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:405 -#: ../../../config/actions.xml:19 -msgid "Archivos" -msgstr "Файлы" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:25 -msgid "Peticiones" -msgstr "Включить запросы по email" - -#: ../../../../inc/SP/Core/Acl.class.php:196 -msgid "Gestión Aplicación" -msgstr "Управление" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:49 -msgid "Gestión Categorías" -msgstr "Управление категориями" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:55 -#, fuzzy -msgid "Gestión Clientes" -msgstr "Управление заказчиками" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:67 -msgid "Gestión Campos Personalizados" -msgstr "Управление свободными полями" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:61 -msgid "Gestión Autorizaciones API" -msgstr "Управление API авторизации" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:115 -msgid "Gestión Usuarios" -msgstr "Управление пользователями" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:121 -msgid "Gestión Grupos" -msgstr "Управление группами" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:127 -msgid "Gestión Perfiles" -msgstr "Управление профилями" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:348 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:61 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:22 -#: ../../../config/actions.xml:685 -msgid "Configuración" -msgstr "Конфигурация" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:442 -#: ../../../config/actions.xml:691 -msgid "Configuración General" -msgstr "Основная конфигурация" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:268 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:457 -msgid "Encriptación" -msgstr "Шифрование" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ConfigManagerController.php:322 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:17 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:70 -#: ../../../config/actions.xml:733 -msgid "Copia de Seguridad" -msgstr "Backup" - -#: ../../../../inc/SP/Core/Acl.class.php:220 -msgid "Exportar" -msgstr "Экспорт" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:489 -msgid "Importar" -msgstr "Импорт" - -#: ../../../../lib/SP/Services/Api/ApiService.php:186 -#: ../../../modules/api/Controllers/ControllerBase.php:146 -msgid "Acceso no permitido" -msgstr "Доступ запрещен к" - -#: ../../../../lib/SP/Http/Json.php:179 -msgid "Error de codificación" -msgstr "Ошибка кодирования" - -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:221 -#: ../../../../lib/SP/Repositories/AuthToken/AuthTokenRepository.php:309 -msgid "La autorización ya existe" -msgstr "Авторизация уже существует" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 -msgid "Actualizar Autorización" -msgstr "Обновить авторизацию" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:206 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 -msgid "Eliminar Autorización" -msgstr "Удалить авторизацию" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:141 -msgid "Usuario no pertenece al grupo" -msgstr "Пользователь не состоит в группе" +msgid "Clientes" +msgstr "Заказчики" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:77 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:104 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 +msgid "Usuarios" +msgstr "Пользователи" + +#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 +msgid "Grupos" +msgstr "Группы" + +#: ../../../../lib/SP/Services/Export/XmlExportService.php:123 +#: ../../../../lib/SP/Storage/File/FileCache.php:74 +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 +#, php-format +msgid "No es posible crear el directorio (%s)" +msgstr "Unable to create the directory (%s)" + +#: ../../../../lib/SP/Services/Import/CsvImport.php:50 +#, php-format +msgid "Formato detectado: %s" +msgstr "Определен формат: %s" + +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 +#, php-format +msgid "El número de campos es incorrecto (%d)" +msgstr "Неправильное количество полей (%d)" + +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 +#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 +#, fuzzy, php-format +msgid "Compruebe el formato del archivo CSV en línea %s" +msgstr "Пожалуйста, проверьте формат файла CSV в строке %s" + +#: ../../../../lib/SP/Services/Import/ImportService.php:89 +#, php-format +msgid "Tipo mime no soportado (\"%s\")" +msgstr "Тип mime не поддерживается (\"%s\")" + +#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 +#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 +#, php-format +msgid "El nodo \"%s\" no existe" +msgstr "Узел \"%s\" не существует" + +#: ../../../../lib/SP/Services/Install/MySQL.php:135 +#, php-format +msgid "No es posible comprobar el usuario de sysPass (%s)" +msgstr "Unable to check the sysPass user (%s)" + +#: ../../../../lib/SP/Services/Install/MySQL.php:213 +#: ../../../../lib/SP/Services/Install/MySQL.php:329 +#: ../../../../lib/SP/Services/Install/MySQL.php:341 +#, php-format +msgid "Error al crear la BBDD ('%s')" +msgstr "Error while creating the DB ('%s')" + +#: ../../../../lib/SP/Services/Install/MySQL.php:237 +#, fuzzy, php-format +msgid "Error al establecer permisos de la BBDD ('%s')" +msgstr "Ошибка при установке прав базы данных ('%s')" + +#: ../../../../lib/SP/Services/Install/MySQL.php:309 +#, php-format +msgid "Error al seleccionar la BBDD '%s' (%s)" +msgstr "Error while selecting '%s' database (%s)" + +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 +#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 +msgid "Importado desde LDAP" +msgstr "Imported from LDAP" + +#: ../../../../lib/SP/Services/Task/TaskService.php:81 +msgid "No es posible crear archivo de bloqueo" +msgstr "Unable to create the lock file" + +#: ../../../../lib/SP/Services/Task/TaskService.php:184 +msgid "Esperando actualización de progreso ..." +msgstr "Подождите, обновление" + +#: ../../../../lib/SP/Services/Track/TrackService.php:162 +#, php-format +msgid "Intentos excedidos (%d/%d)" +msgstr "Попыток осталось (%d/%d)" + +#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 +msgid "El archivo de actualización no contiene datos" +msgstr "The update file does not contain data" #: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 -#: ../../../modules/web/Controllers/UserController.php:224 -#: ../../../modules/web/Controllers/UserController.php:343 -#: ../../../modules/web/Controllers/UserPassResetController.php:105 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:231 +#: ../../../modules/web/Controllers/UserController.php:235 +#: ../../../modules/web/Controllers/UserController.php:356 +#: ../../../modules/web/Controllers/UserPassResetController.php:107 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Cambio de Clave" msgstr "Изменение пароля" @@ -1613,491 +310,684 @@ msgstr "" "Если Вы не запрашивали данное действие, пожалуйста, проигнорируйте данное " "письмо." -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:333 -msgid "Esta operación sólo es posible en entornos Linux" -msgstr "Данная операция возможна только в Linux" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 +msgid "Fallo de autentificación" +msgstr "Ошибка аутентификации" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:101 +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 #, fuzzy -msgid "Error al realizar backup en modo compatibilidad" -msgstr "Ошибка при создании резервной копии в режиме совместимости" +msgid "Error al realizar la consulta" +msgstr "Ошибка при выполнении запроса" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:138 -#, fuzzy -msgid "Compruebe los permisos del directorio de backups" -msgstr "Проверьте права на папку резервных копий" +#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 +msgid "URL de conexión no establecida" +msgstr "URL подключения не задан" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:107 -msgid "Nombre de categoría duplicado" -msgstr "Категория с таким именем уже существует" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 +#, php-format +msgid "Error al descomprimir datos del archivo (%s)" +msgstr "Error while decompressing the file data (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:68 -#, fuzzy -msgid "Error al crear la categoría" -msgstr "Ошибка при создании категории" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 +msgid "Error al obtener los datos" +msgstr "Error while retrieving the data" -#: ../../../../lib/SP/Services/Import/KeepassImport.php:104 -#: ../../../modules/web/Controllers/CategoryController.php:220 -#: ../../../modules/web/Controllers/CategoryController.php:254 -#: ../../../modules/web/Controllers/CategoryController.php:294 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:110 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:64 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:38 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:97 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:57 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 -msgid "Categoría" -msgstr "Категория" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 +#, php-format +msgid "Error al comprimir datos del archivo (%s)" +msgstr "Error while compressing the file data (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:275 -#, fuzzy -msgid "Error al eliminar la categoría" -msgstr "Ошибка при удалении категории" +#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 +msgid "Datos no cargados" +msgstr "Data not loaded" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:186 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 -#: ../../../config/actions.xml:319 -msgid "Eliminar Categoría" -msgstr "Удалить категорию" +#: ../../../../lib/SP/Storage/File/FileHandler.php:72 +#: ../../../../lib/SP/Storage/File/FileHandler.php:135 +#, php-format +msgid "No es posible escribir en el archivo (%s)" +msgstr "Unable to read/write the file (%s)" -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:125 -#, fuzzy -msgid "Error al actualizar la categoría" -msgstr "Ошибка изменения информации о категории" +#: ../../../../lib/SP/Storage/File/FileHandler.php:89 +#, php-format +msgid "No es posible abrir el archivo (%s)" +msgstr "Unable to open the file (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:108 -#: ../../../../inc/SP/Config/ConfigDB.class.php:148 -msgid "Modificar configuración" -msgstr "Изменить конфигурацию" +#: ../../../../lib/SP/Storage/File/FileHandler.php:104 +#: ../../../../lib/SP/Storage/File/FileHandler.php:118 +#, php-format +msgid "No es posible leer desde el archivo (%s)" +msgstr "Unable to read from file (%s)" -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:82 -msgid "Parámetro" -msgstr "Параметр" +#: ../../../../lib/SP/Storage/File/FileHandler.php:173 +#, php-format +msgid "No es posible cerrar el archivo (%s)" +msgstr "Unable to close the file (%s)" -#: ../../../../inc/SP/Config/ConfigDB.class.php:152 -msgid "Valor" -msgstr "Значение" +#: ../../../../lib/SP/Storage/File/FileHandler.php:219 +#, php-format +msgid "No es posible escribir el archivo (%s)" +msgstr "Unable to write in file (%s)" -#: ../../../../lib/SP/Util/ErrorUtil.php:128 +#: ../../../../lib/SP/Storage/File/FileHandler.php:234 +#, php-format +msgid "Archivo no encontrado (%s)" +msgstr "File not found (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:259 +#: ../../../../lib/SP/Storage/File/FileHandler.php:314 +#, php-format +msgid "No es posible leer el archivo (%s)" +msgstr "Unable to read/write the file (%s)" + +#: ../../../../lib/SP/Storage/File/FileHandler.php:286 +#, php-format +msgid "No es posible eliminar el archivo (%s)" +msgstr "Unable to delete file (%s)" + +#: ../../../../lib/SP/Util/ErrorUtil.php:148 msgid "Opción no disponible" msgstr "Опция недоступна" -#: ../../../../lib/SP/Core/Acl/AccountPermissionException.php:45 -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:129 -#: ../../../../lib/SP/Util/ErrorUtil.php:133 -#: ../../../../lib/SP/Util/ErrorUtil.php:137 -#: ../../../../lib/SP/Util/ErrorUtil.php:141 #: ../../../../lib/SP/Util/ErrorUtil.php:149 -#: ../../../../lib/SP/Util/ErrorUtil.php:156 +#: ../../../../lib/SP/Util/ErrorUtil.php:153 +#: ../../../../lib/SP/Util/ErrorUtil.php:157 +#: ../../../../lib/SP/Util/ErrorUtil.php:161 +#: ../../../../lib/SP/Util/ErrorUtil.php:169 +#: ../../../../lib/SP/Util/ErrorUtil.php:176 #: ../../../modules/web/Controllers/ErrorController.php:124 -#: ../../../modules/web/Controllers/UserPassResetController.php:94 #: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Consulte con el administrador" msgstr "Пожалуйста, свяжитесь с администратором" -#: ../../../../lib/SP/Core/Acl/UnauthorizedPageException.php:45 -#: ../../../../lib/SP/Util/ErrorUtil.php:136 +#: ../../../../lib/SP/Util/ErrorUtil.php:152 +msgid "No tiene permisos para acceder a esta cuenta" +msgstr "Нет прав для доступа к данной учетной записи" + +#: ../../../../lib/SP/Util/ErrorUtil.php:156 msgid "No tiene permisos para acceder a esta página" msgstr "Нет прав для доступа к данной странице" -#: ../../../../lib/SP/Core/Acl/UnauthorizedActionException.php:46 -#: ../../../../lib/SP/Util/ErrorUtil.php:140 -#: ../../../modules/web/Controllers/AccountFileController.php:261 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:59 -#: ../../../modules/web/Controllers/AccountManagerController.php:77 -#: ../../../modules/web/Controllers/AccountManagerController.php:204 -#: ../../../modules/web/Controllers/AuthTokenController.php:68 -#: ../../../modules/web/Controllers/AuthTokenController.php:105 -#: ../../../modules/web/Controllers/AuthTokenController.php:170 -#: ../../../modules/web/Controllers/AuthTokenController.php:200 -#: ../../../modules/web/Controllers/AuthTokenController.php:243 -#: ../../../modules/web/Controllers/AuthTokenController.php:278 -#: ../../../modules/web/Controllers/AuthTokenController.php:327 -#: ../../../modules/web/Controllers/CategoryController.php:66 -#: ../../../modules/web/Controllers/CategoryController.php:100 -#: ../../../modules/web/Controllers/CategoryController.php:164 -#: ../../../modules/web/Controllers/CategoryController.php:194 -#: ../../../modules/web/Controllers/CategoryController.php:237 -#: ../../../modules/web/Controllers/CategoryController.php:277 -#: ../../../modules/web/Controllers/CategoryController.php:317 -#: ../../../modules/web/Controllers/ClientController.php:64 -#: ../../../modules/web/Controllers/ClientController.php:96 -#: ../../../modules/web/Controllers/ClientController.php:160 -#: ../../../modules/web/Controllers/ClientController.php:190 -#: ../../../modules/web/Controllers/ClientController.php:230 -#: ../../../modules/web/Controllers/ClientController.php:268 -#: ../../../modules/web/Controllers/ClientController.php:304 -#: ../../../modules/web/Controllers/CustomFieldController.php:65 -#: ../../../modules/web/Controllers/CustomFieldController.php:97 -#: ../../../modules/web/Controllers/CustomFieldController.php:159 -#: ../../../modules/web/Controllers/CustomFieldController.php:189 -#: ../../../modules/web/Controllers/CustomFieldController.php:221 -#: ../../../modules/web/Controllers/CustomFieldController.php:258 -#: ../../../modules/web/Controllers/CustomFieldController.php:295 -#: ../../../modules/web/Controllers/EventlogController.php:101 -#: ../../../modules/web/Controllers/ItemPresetController.php:67 -#: ../../../modules/web/Controllers/ItemPresetController.php:151 -#: ../../../modules/web/Controllers/ItemPresetController.php:188 -#: ../../../modules/web/Controllers/ItemPresetController.php:226 -#: ../../../modules/web/Controllers/ItemPresetController.php:256 -#: ../../../modules/web/Controllers/ItemPresetController.php:295 -#: ../../../modules/web/Controllers/ItemPresetController.php:334 -#: ../../../modules/web/Controllers/NotificationController.php:100 -#: ../../../modules/web/Controllers/NotificationController.php:160 -#: ../../../modules/web/Controllers/NotificationController.php:175 -#: ../../../modules/web/Controllers/NotificationController.php:206 -#: ../../../modules/web/Controllers/NotificationController.php:237 -#: ../../../modules/web/Controllers/NotificationController.php:288 -#: ../../../modules/web/Controllers/NotificationController.php:315 -#: ../../../modules/web/Controllers/NotificationController.php:348 -#: ../../../modules/web/Controllers/PluginController.php:98 -#: ../../../modules/web/Controllers/PluginController.php:117 -#: ../../../modules/web/Controllers/PublicLinkController.php:71 -#: ../../../modules/web/Controllers/PublicLinkController.php:105 -#: ../../../modules/web/Controllers/PublicLinkController.php:167 -#: ../../../modules/web/Controllers/PublicLinkController.php:193 -#: ../../../modules/web/Controllers/PublicLinkController.php:223 -#: ../../../modules/web/Controllers/PublicLinkController.php:264 -#: ../../../modules/web/Controllers/PublicLinkController.php:296 -#: ../../../modules/web/Controllers/PublicLinkController.php:338 -#: ../../../modules/web/Controllers/TagController.php:65 -#: ../../../modules/web/Controllers/TagController.php:99 -#: ../../../modules/web/Controllers/TagController.php:159 -#: ../../../modules/web/Controllers/TagController.php:189 -#: ../../../modules/web/Controllers/TagController.php:223 -#: ../../../modules/web/Controllers/TagController.php:254 -#: ../../../modules/web/Controllers/TagController.php:285 -#: ../../../modules/web/Controllers/UserController.php:69 -#: ../../../modules/web/Controllers/UserController.php:101 -#: ../../../modules/web/Controllers/UserController.php:186 -#: ../../../modules/web/Controllers/UserController.php:218 -#: ../../../modules/web/Controllers/UserController.php:254 -#: ../../../modules/web/Controllers/UserController.php:296 -#: ../../../modules/web/Controllers/UserController.php:357 -#: ../../../modules/web/Controllers/UserController.php:398 -#: ../../../modules/web/Controllers/UserController.php:435 -#: ../../../modules/web/Controllers/UserGroupController.php:74 -#: ../../../modules/web/Controllers/UserGroupController.php:108 -#: ../../../modules/web/Controllers/UserGroupController.php:179 -#: ../../../modules/web/Controllers/UserGroupController.php:209 -#: ../../../modules/web/Controllers/UserGroupController.php:249 -#: ../../../modules/web/Controllers/UserGroupController.php:288 -#: ../../../modules/web/Controllers/UserGroupController.php:327 -#: ../../../modules/web/Controllers/UserProfileController.php:64 -#: ../../../modules/web/Controllers/UserProfileController.php:96 -#: ../../../modules/web/Controllers/UserProfileController.php:163 -#: ../../../modules/web/Controllers/UserProfileController.php:193 -#: ../../../modules/web/Controllers/UserProfileController.php:233 -#: ../../../modules/web/Controllers/UserProfileController.php:268 -#: ../../../modules/web/Controllers/UserProfileController.php:304 +#: ../../../../lib/SP/Util/ErrorUtil.php:160 msgid "No tiene permisos para realizar esta operación" msgstr "Нет прав для данной операции" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:56 -#: ../../../config/strings.js.inc:85 -msgid "Aviso" -msgstr "Предупреждение" - -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:105 -#: ../../../../inc/SP/Core/Upgrade/Crypt.class.php:116 -msgid "" -"Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." -msgstr "HASH возродил мастер-пароль. Дополнительных действий не требуется." - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:176 -msgid "No se puede usar el módulo de encriptación" -msgstr "Модуль криптографии не может быть загружен" - -#: ../../../../lib/SP/Core/Crypt/OldCrypt.php:186 +#: ../../../../lib/SP/Util/ErrorUtil.php:164 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 #, fuzzy -msgid "Error al generar datos cifrados" -msgstr "Ошибка при создании шифрованных данных" +msgid "Clave maestra actualizada" +msgstr "Мастер-пароль актуален" -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:102 -msgid "No es posible generar las claves RSA" -msgstr "Невозможно создать RSA ключи" - -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:135 -#: ../../../../lib/SP/Core/Crypt/CryptPKI.php:168 -msgid "El archivo de clave no existe" -msgstr "Файл ключа не существует" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:130 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:176 -msgid "El número de campos es incorrecto (%d)" -msgstr "Неправильное количество полей (%d)" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:132 -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:178 +#: ../../../../lib/SP/Util/ErrorUtil.php:165 +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 #, fuzzy -msgid "Compruebe el formato del archivo CSV en línea %s" -msgstr "Пожалуйста, проверьте формат файла CSV в строке %s" +msgid "Reinicie la sesión para cambiarla" +msgstr "Перезайдите для вступления изменений" -#: ../../../modules/web/Controllers/ConfigManagerController.php:339 +#: ../../../../lib/SP/Util/ErrorUtil.php:168 +#: ../../../../lib/SP/Util/ErrorUtil.php:175 +#, fuzzy +msgid "Se ha producido una excepción" +msgstr "Произошла ошибка" + +#: ../../../modules/api/Controllers/AccountController.php:144 +msgid "Clave actualizada" +msgstr "Пароль изменен" + +#: ../../../modules/api/Controllers/AccountController.php:194 +msgid "Cuenta creada" +msgstr "Учетная запись создана" + +#: ../../../modules/api/Controllers/AccountController.php:245 +msgid "Cuenta actualizada" +msgstr "Информация об учетной записи изменена" + +#: ../../../modules/api/Controllers/AccountController.php:320 +#, fuzzy +msgid "Cuenta eliminada" +msgstr "Учетная запись удалена" + +#: ../../../modules/api/Controllers/CategoryController.php:96 +msgid "Categoría creada" +msgstr "Категория создана" + +#: ../../../modules/api/Controllers/CategoryController.php:126 +msgid "Categoría actualizada" +msgstr "Информация о категории изменена" + +#: ../../../modules/api/Controllers/CategoryController.php:155 +msgid "Categoría eliminada" +msgstr "Категория удалена" + +#: ../../../modules/api/Controllers/ClientController.php:98 +#, fuzzy +msgid "Cliente creado" +msgstr "Заказчик добавлен" + +#: ../../../modules/api/Controllers/ClientController.php:129 +#, fuzzy +msgid "Cliente actualizado" +msgstr "Информация о заказчике обновлена" + +#: ../../../modules/api/Controllers/ClientController.php:158 +#, fuzzy +msgid "Cliente eliminado" +msgstr "Заказчик удален" + +#: ../../../modules/api/Controllers/ConfigController.php:61 +msgid "Proceso de backup finalizado" +msgstr "Процесс резервного копирования закончен" + +#: ../../../modules/api/Controllers/ConfigController.php:94 +msgid "Proceso de exportación finalizado" +msgstr "Процесс экспорта закончен" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 +msgid "Id de la cuenta" +msgstr "ID учетной записи" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 +#, fuzzy +msgid "Clave del token" +msgstr "Пароль токена" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 +#, fuzzy +msgid "Devolver detalles en la respuesta" +msgstr "Отправлены детали по запросу" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:69 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:85 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:89 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:92 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:155 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:163 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:293 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:296 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:170 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:126 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:253 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:260 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:35 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:98 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:27 +msgid "Clave" +msgstr "Пароль" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:114 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:181 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:90 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 +msgid "Fecha Caducidad Clave" +msgstr "Срок действия пароля" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:29 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:73 +msgid "Nombre de cuenta" +msgstr "Имя учетной записи" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 +msgid "Id de categoría" +msgstr "ID категории" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 +#, fuzzy +msgid "Id de cliente" +msgstr "ID заказчика" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:149 +msgid "Usuario de acceso" +msgstr "Пользователь доступа" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:136 +msgid "URL o IP de acceso" +msgstr "URL или IP доступа" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:134 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 +msgid "Notas sobre la cuenta" +msgstr "Заметки по учетной записи" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:198 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 +msgid "Cuenta Privada" +msgstr "Приватная учетная запись" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:217 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 +msgid "Cuenta Privada Grupo" +msgstr "Приватный аккаунт для группы" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:252 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:254 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:13 +msgid "Cuenta Vinculada" +msgstr "Связанная учетная запись" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 +msgid "Array con Ids de etiquetas" +msgstr "Array with tags id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 +#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 +msgid "Id de grupo" +msgstr "Group Id" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 +#: ../../../modules/api/Controllers/Help/TagHelp.php:77 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 +msgid "Texto a buscar" +msgstr "Текст для поиска" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 +#: ../../../modules/api/Controllers/Help/TagHelp.php:78 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 +msgid "Número de resultados a mostrar" +msgstr "Количество результатов для отображения" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 +msgid "Id de categoría a filtrar" +msgstr "ID категории для фильтра" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 +#, fuzzy +msgid "Id de cliente a filtrar" +msgstr "ID заказчика для фильтра" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 +msgid "Array con Ids de etiquetas a filtrar" +msgstr "Array with tags id for filtering" + +#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 +msgid "Operador de filtrado" +msgstr "Filtering operator" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:29 +msgid "Nombre de la categoría" +msgstr "Имя категории" + +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 +#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:41 +msgid "Descripción de la categoría" +msgstr "Описание категории" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:30 +#, fuzzy +msgid "Nombre del cliente" +msgstr "Имя заказчика" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:43 +#, fuzzy +msgid "Descripción del cliente" +msgstr "Описание заказчика" + +#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 +#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:99 +msgid "Global" +msgstr "Общее" + +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 +#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 +msgid "Ruta" +msgstr "Path" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:43 +#: ../../../modules/api/Controllers/Help/TagHelp.php:65 +#: ../../../modules/api/Controllers/Help/TagHelp.php:89 +msgid "Id de etiqueta" +msgstr "Tag Id" + +#: ../../../modules/api/Controllers/Help/TagHelp.php:54 +#: ../../../modules/api/Controllers/Help/TagHelp.php:66 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:29 +msgid "Nombre de la etiqueta" +msgstr "Имя тега" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:31 +msgid "Nombre del grupo" +msgstr "Имя группы" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:44 +msgid "Descripción del grupo" +msgstr "Описание группы" + +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 +#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 +msgid "Array con Ids de usuarios" +msgstr "Array with users Id" + +#: ../../../modules/api/Controllers/TagController.php:94 +msgid "Etiqueta creada" +msgstr "Тег добавлен" + +#: ../../../modules/api/Controllers/TagController.php:123 +msgid "Etiqueta actualizada" +msgstr "Тег обновлен" + +#: ../../../modules/api/Controllers/TagController.php:152 +msgid "Etiqueta eliminada" +msgstr "Тег удален" + +#: ../../../modules/api/Controllers/UserGroupController.php:96 +msgid "Grupo creado" +msgstr "Группа создана" + +#: ../../../modules/api/Controllers/UserGroupController.php:127 +msgid "Grupo actualizado" +msgstr "Группа обновлена" + +#: ../../../modules/api/Controllers/UserGroupController.php:156 +msgid "Grupo eliminado" +msgstr "Группа удалена" + +#: ../../../modules/web/Controllers/AccountController.php:149 +#: ../../../modules/web/Controllers/AccountController.php:204 +#: ../../../modules/web/Controllers/AccountController.php:489 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:56 +msgid "Detalles de Cuenta" +msgstr "Детали учетной записи" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:261 +#: ../../../modules/web/Controllers/AccountController.php:307 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:275 +#: ../../../config/actions.xml:157 +msgid "Nueva Cuenta" +msgstr "Новая учетная запись" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:353 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 +#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 +#: ../../../config/actions.xml:163 +msgid "Editar Cuenta" +msgstr "Изменить учетную запись" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountController.php:400 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 +#: ../../../config/actions.xml:169 ../../../config/actions.xml:487 +#: ../../../config/actions.xml:793 +#, fuzzy +msgid "Eliminar Cuenta" +msgstr "Удалить учетную запись" + +#: ../../../modules/web/Controllers/AccountController.php:445 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 +msgid "Modificar Clave de Cuenta" +msgstr "Изменить пароль учетной записи" + +#: ../../../modules/web/Controllers/AccountFileController.php:211 +#, php-format +msgid "Extensión: %s" +msgstr "Extension: %s" + +#: ../../../modules/web/Controllers/AccountFileController.php:405 +msgid "Gestión de archivos deshabilitada" +msgstr "Управление файлами отключено" + +#: ../../../modules/web/Controllers/AccountFileController.php:424 +msgid "No hay archivos asociados a la cuenta" +msgstr "There are no linked files for the account" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/AccountManagerController.php:216 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 +#: ../../../config/actions.xml:493 +msgid "Actualización Masiva" +msgstr "Bulk Update" + +#: ../../../modules/web/Controllers/AuthTokenController.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 +msgid "Nueva Autorización" +msgstr "Создать авторизацию" + +#: ../../../modules/web/Controllers/AuthTokenController.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 +msgid "Editar Autorización" +msgstr "Редактировать авторизацию" + +#: ../../../modules/web/Controllers/AuthTokenController.php:347 +msgid "Ver Autorización" +msgstr "Показать авторизацию" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:118 +#: ../../../config/actions.xml:307 +msgid "Nueva Categoría" +msgstr "Создать категорию" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 +#: ../../../config/actions.xml:313 +msgid "Editar Categoría" +msgstr "Редактировать категорию" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/CategoryController.php:335 +#: ../../../config/actions.xml:301 +msgid "Ver Categoría" +msgstr "Показать категорию" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:93 +#: ../../../config/actions.xml:337 +#, fuzzy +msgid "Nuevo Cliente" +msgstr "Новый заказчик" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:174 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 +#: ../../../config/actions.xml:343 +#, fuzzy +msgid "Editar Cliente" +msgstr "Редактировать заказчика" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ClientController.php:326 +#: ../../../config/actions.xml:331 +#, fuzzy +msgid "Ver Cliente" +msgstr "Показать заказчика" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:153 +#: ../../../modules/web/Controllers/ConfigLdapController.php:197 +msgid "Resultados" +msgstr "Результаты" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:159 +#: ../../../modules/web/Controllers/ConfigLdapController.php:204 +#, php-format +msgid "Objetos encontrados: %d" +msgstr "Найдено объектов: %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:279 +#, php-format +msgid "Usuarios importados: %d / %d" +msgstr "Imported users: %d / %d" + +#: ../../../modules/web/Controllers/ConfigLdapController.php:280 +#, php-format +msgid "Errores: %d" +msgstr "Errors: %d" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:161 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 +msgid "General" +msgstr "Основное" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:190 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:29 +#: ../../../config/actions.xml:37 +msgid "Wiki" +msgstr "Wiki" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:209 +msgid "LDAP" +msgstr "LDAP" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:235 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:12 +msgid "Correo" +msgstr "Mail" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:274 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 +msgid "Encriptación" +msgstr "Шифрование" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:302 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:61 +#, fuzzy +msgid "No se encontraron backups" +msgstr "Нет доступных резервных копий" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:312 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 +msgid "No se encontró archivo de exportación" +msgstr "Файл экспорта не найден" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ConfigManagerController.php:315 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:78 +#: ../../../config/actions.xml:733 +msgid "Copia de Seguridad" +msgstr "Backup" + +#: ../../../modules/web/Controllers/ConfigManagerController.php:332 msgid "Importar Cuentas" msgstr "Импорт учетных записей" -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:166 -#, fuzzy -msgid "Error importando cuenta" -msgstr "Ошибка импорта учетной записи" +#: ../../../modules/web/Controllers/ConfigManagerController.php:352 +msgid "No instalado" +msgstr "Не установлено" -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:27 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:341 -msgid "Campos Personalizados" -msgstr "Дополнительные поля" +#: ../../../modules/web/Controllers/ConfigManagerController.php:357 +msgid "Información" +msgstr "Информация" -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:76 -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:84 -msgid "Actualizando datos encriptados" -msgstr "Обновление зашифрованных данных" +#: ../../../modules/web/Controllers/CustomFieldController.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 +msgid "Nuevo Campo" +msgstr "Создать поле" -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:110 -msgid "Registros no actualizados" -msgstr "Записи не обновлены" +#: ../../../modules/web/Controllers/CustomFieldController.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 +msgid "Editar Campo" +msgstr "Изменить поле" -#. (itstool) path: strings/text -#: ../../../config/strings.xml:8 -msgid "Texto" -msgstr "Текст" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:98 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:112 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:247 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:41 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 -msgid "Fecha" -msgstr "Дата" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:5 -msgid "Número" -msgstr "Цифры" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:46 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:78 -msgid "Email" -msgstr "Email" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:6 -msgid "Teléfono" -msgstr "Телефон" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:9 -msgid "Link" -msgstr "Ссылка" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:4 -msgid "Color" -msgstr "Цвет" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:75 -#: ../../../modules/web/Controllers/ConfigBackupController.php:122 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 -msgid "Categorías" -msgstr "Категории" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:76 -#: ../../../modules/web/Controllers/ConfigBackupController.php:121 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:325 -#, fuzzy -msgid "Clientes" -msgstr "Заказчики" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:78 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:160 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:50 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:261 -msgid "Grupos" -msgstr "Группы" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:62 -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:116 -#, fuzzy -msgid "Cliente duplicado" -msgstr "Заказчик существует" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:80 -#, fuzzy -msgid "Error al crear el cliente" -msgstr "Ошибка при создании заказчика" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:136 -#, fuzzy -msgid "Error al actualizar el cliente" -msgstr "Ошибка при изменении информации о заказчике" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 -msgid "Actualizar Cliente" -msgstr "Изменить заказчика" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:283 -#, fuzzy -msgid "Error al eliminar el cliente" -msgstr "Ошибка при удалении заказчика" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:189 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 -#: ../../../config/actions.xml:349 -#, fuzzy -msgid "Eliminar Cliente" -msgstr "Удалить заказчика" - -#: ../../../../lib/SP/Services/Install/MySQL.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:97 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:117 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:164 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:176 -msgid "No es posible conectar con la BD" -msgstr "Невозможно подключиться к базе данных" - -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:99 -#: ../../../../lib/SP/Storage/Database/MySQLHandler.php:166 -#, fuzzy -msgid "Compruebe los datos de conexión" -msgstr "Пожалуйста, проверьте параметры подключения" - -#. Not available -#: ../../../../lib/SP/Core/Acl/Acl.php:294 -#: ../../../../lib/SP/Services/Auth/LoginService.php:600 -msgid "N/D" -msgstr "N/A" - -#: ../../../../lib/SP/Core/Acl/Acl.php:300 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:32 -msgid "Acción" -msgstr "Действие" - -#: ../../../../inc/SP/Log/Email.class.php:64 -msgid "Realizado por" -msgstr "Выполнено" - -#: ../../../../inc/SP/Log/Email.class.php:76 -#: ../../../../inc/SP/Log/Email.class.php:191 -msgid "Enviar Email" -msgstr "Отправить email" - -#: ../../../../lib/SP/Services/Mail/MailService.php:141 -#: ../../../modules/web/Controllers/ConfigMailController.php:138 -#: ../../../modules/web/Controllers/ConfigMailController.php:144 -msgid "Correo enviado" -msgstr "Email выслан" - -#: ../../../../lib/SP/Services/Mail/MailService.php:81 -#: ../../../../lib/SP/Services/Mail/MailService.php:151 -#, fuzzy -msgid "Error al enviar correo" -msgstr "Ошибка отправка email" - -#: ../../../../lib/SP/Services/Mail/MailService.php:142 -#: ../../../modules/web/Controllers/ConfigMailController.php:139 -msgid "Destinatario" -msgstr "Получатель" - -#: ../../../../inc/SP/Log/Email.class.php:85 -msgid "CC" -msgstr "CC" - -#: ../../../../lib/SP/Services/Import/FileImport.php:67 -#: ../../../../lib/SP/Services/Import/FileImport.php:88 -msgid "Archivo no subido correctamente" -msgstr "Файл успешно закачан" - -#: ../../../../lib/SP/Services/Import/FileImport.php:69 -#: ../../../../lib/SP/Services/Import/FileImport.php:90 -#, fuzzy -msgid "Verifique los permisos del usuario del servidor web" -msgstr "Пожалуйста, проверьте права пользователя веб-сервера " - -#: ../../../../lib/SP/Services/Import/FileImport.php:102 -#, fuzzy -msgid "Compruebe la extensión del archivo" -msgstr "Пожалуйста, проверьте расширение файла" - -#: ../../../../lib/SP/Services/Import/FileImport.php:118 -msgid "Compruebe la configuración de PHP para subir archivos" -msgstr "Пожалуйста, проверьте конфигурацию PHP для загрузки файлов" - -#: ../../../../lib/SP/Services/Import/FileImport.php:157 -#: ../../../../lib/SP/Services/Import/FileImport.php:183 -#, fuzzy -msgid "Compruebe los permisos del directorio temporal" -msgstr "Пожалуйста, проверьте права для временной папки" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:194 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:30 -#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 -msgid "Eliminar Archivo" -msgstr "Удалить файл" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 -#: ../../../config/actions.xml:625 -msgid "Eliminar Grupo" -msgstr "Удалить группу" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:108 -#, fuzzy -msgid "Error al eliminar los usuarios del grupo" -msgstr "Ошибка удаления пользователей из группы" - -#: ../../../../lib/SP/Services/Import/ImportService.php:91 -msgid "Compruebe el formato del archivo" -msgstr "Пожалуйста, проверьте формат файла" - -#: ../../../modules/web/Controllers/ConfigImportController.php:80 -#: ../../../modules/web/Controllers/ConfigLdapController.php:260 -msgid "Importación finalizada" -msgstr "Импорт завершен" - -#: ../../../modules/web/Controllers/ErrorController.php:123 -#, fuzzy -msgid "Error en la verificación de la base de datos" -msgstr "Ошибка проверки базы данных" - -#: ../../../../lib/SP/Core/Context/SessionContext.php:547 -msgid "La sesión no puede ser inicializada" -msgstr "Сессия не может быть запущена" - -#: ../../../../lib/SP/Config/ConfigUtil.php:94 -msgid "El directorio \"/config\" no existe" -msgstr "Папка \"/config\" не существует." - -#: ../../../../lib/SP/Config/ConfigUtil.php:100 -msgid "No es posible escribir en el directorio \"config\"" -msgstr "Невозможно произвести запись в папку \"/config\"" - -#: ../../../../lib/SP/Config/ConfigUtil.php:109 -msgid "Los permisos del directorio \"/config\" son incorrectos" -msgstr "Права для папки \"/config\" заданы неверно" +#: ../../../modules/web/Controllers/CustomFieldController.php:317 +msgid "Ver Campo" +msgstr "View Field" #: ../../../modules/web/Controllers/ErrorController.php:107 msgid "Aplicación en mantenimiento" @@ -2107,381 +997,1014 @@ msgstr "Программа на ослуживании" msgid "En breve estará operativa" msgstr "Скоро работа будет возобновлена" -#: ../../../modules/web/Controllers/LoginController.php:101 -msgid "Finalizar sesión" -msgstr "Завершить сессию" - -#: ../../../modules/web/Controllers/LoginController.php:103 -msgid "Tiempo inactivo" -msgstr "Время бездействия" - -#: ../../../modules/web/Controllers/LoginController.php:104 -msgid "Tiempo total" -msgstr "Общее время" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 -msgid "La aplicación necesita actualizarse" -msgstr "Необходимо обновить программу" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:43 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:174 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 -msgid "Actualizar" -msgstr "Обновить" - -#: ../../../../lib/SP/Controller/MainActionController.php:91 -#: ../../../../lib/SP/Controller/MainActionController.php:148 -msgid "Actualización" -msgstr "Обновить" - -#: ../../../../lib/SP/Controller/MainActionController.php:149 -msgid "Actualización de versión realizada." -msgstr "Обновление версии завершено." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:113 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:229 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:161 -#: ../../../modules/web/Controllers/ConfigBackupController.php:118 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:40 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:28 -msgid "Versión" -msgstr "Версия" - -#: ../../../../lib/SP/Services/Install/Installer.php:106 +#: ../../../modules/web/Controllers/ErrorController.php:123 #, fuzzy -msgid "Indicar nombre de usuario admin" -msgstr "Ввведи имя пользователя администратора" +msgid "Error en la verificación de la base de datos" +msgstr "Ошибка проверки базы данных" -#: ../../../../lib/SP/Services/Install/Installer.php:108 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 +msgid "Ver Actual" +msgstr "Просмотр текущей версии" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:360 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:310 +#: ../../../modules/web/themes/material-blue/views/config/general.inc:28 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:91 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:295 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:440 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:294 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:194 +msgid "Atrás" +msgstr "Назад" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 +msgid "Solicitar Modificación" +msgstr "Запросить изменение" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 +msgid "Restaurar cuenta desde este punto" +msgstr "Восстановить учетную запись из текущей точки" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:130 +msgid "Guardar" +msgstr "Сохранить" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 +#: ../../../config/actions.xml:439 +msgid "Actualizar Enlace Público" +msgstr "Update Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 +#: ../../../config/actions.xml:433 +msgid "Eliminar Enlace Público" +msgstr "Delete Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 +#: ../../../config/actions.xml:421 +msgid "Crear Enlace Público" +msgstr "Создать публичную ссылку" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 +#: ../../../config/actions.xml:175 ../../../config/actions.xml:265 +msgid "Ver Clave" +msgstr "Показать пароль" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 +msgid "Copiar Clave en Portapapeles" +msgstr "Копировать пароль в буфер" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 +#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 +#: ../../../config/actions.xml:193 +msgid "Copiar Cuenta" +msgstr "Скопировать учетную запись" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 +#: ../../../config/strings.js.inc:72 +msgid "Clave de Cuenta" +msgstr "Пароль учетной записи" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 +msgid "Más Acciones" +msgstr "Другие действия" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:232 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:59 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:34 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:40 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:35 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:41 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:80 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 #, fuzzy -msgid "Usuario admin para acceso a la aplicación" -msgstr "Пользователь администратора для входа в программу" +msgid "Cliente" +msgstr "Заказчик" -#: ../../../../lib/SP/Services/Install/Installer.php:113 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 #, fuzzy -msgid "Indicar la clave de admin" -msgstr "Введите административный пароль" +msgid "Ordenar por Cliente" +msgstr "Сортировать по заказчику" -#: ../../../../lib/SP/Services/Install/Installer.php:115 -msgid "Clave del usuario admin de la aplicación" -msgstr "Пароль администратора программы" +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:116 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:43 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:65 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:22 +msgid "Nombre" +msgstr "Имя" -#: ../../../../lib/SP/Services/Install/Installer.php:120 +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 +msgid "Ordenar por Nombre" +msgstr "Сортировать по имени" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:246 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:72 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:45 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:51 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:105 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 +msgid "Categoría" +msgstr "Категория" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 +msgid "Ordenar por Categoría" +msgstr "Сортировать по категории" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:253 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:67 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:73 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:141 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:61 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:149 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:113 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:233 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:247 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:24 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:94 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:75 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:77 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:19 +msgid "Usuario" +msgstr "Пользователь" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 +msgid "Ordenar por Usuario" +msgstr "Сортировать по имени пользователя" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:88 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:56 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:62 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:128 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:79 +msgid "URL / IP" +msgstr "URL / IP" + +#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 +msgid "Ordenar por URL / IP" +msgstr "Сортировать по URL / IP" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 +msgid "Eliminar Seleccionados" +msgstr "Удалить выбранные" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:158 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:42 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:44 +msgid "Propietario" +msgstr "Owner" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:175 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:50 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:52 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 +msgid "Grupo Principal" +msgstr "Основная группа" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 +#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 +msgid "Buscar Cuenta" +msgstr "Поиск учетной записи" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 +msgid "Cuentas (H)" +msgstr "Группы" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:122 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:122 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:48 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:55 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:38 +msgid "Fecha" +msgstr "Дата" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:126 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 +msgid "Estado" +msgstr "Статус" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +msgid "Modificada" +msgstr "Изменено" + +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 +msgid "Eliminada" +msgstr "Удалено" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 +#: ../../../config/actions.xml:187 ../../../config/actions.xml:805 +msgid "Restaurar Cuenta" +msgstr "Восстановление учетной записи" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 +msgid "Autorizaciones API" +msgstr "API авторизации" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 +msgid "Acción" +msgstr "Действие" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 +msgid "Buscar Token" +msgstr "Поиск токена" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 +msgid "Ver token de Autorización" +msgstr "Просмотр токена авторизации" + +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 +msgid "Eliminar Autorización" +msgstr "Удалить авторизацию" + +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:61 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:68 +msgid "Descripción" +msgstr "Описание" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 +#: ../../../config/actions.xml:325 +msgid "Buscar Categoría" +msgstr "Поиск категории" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 +#: ../../../config/actions.xml:319 +msgid "Eliminar Categoría" +msgstr "Удалить категорию" + +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:66 +msgid "SI" +msgstr "ДА" + +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: ../../../config/strings.js.inc:67 +msgid "NO" +msgstr "НЕТ" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 +#: ../../../config/actions.xml:355 #, fuzzy -msgid "Indicar la clave maestra" -msgstr "Введите мастер-пароль" +msgid "Buscar Cliente" +msgstr "Поиск заказчика" -#: ../../../../lib/SP/Services/Install/Installer.php:122 +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 +#: ../../../config/actions.xml:349 #, fuzzy -msgid "Clave maestra para encriptar las claves" -msgstr "Матер-пароль для шифрования паролей " +msgid "Eliminar Cliente" +msgstr "Удалить заказчика" -#: ../../../../lib/SP/Services/Install/Installer.php:127 -#, fuzzy -msgid "Clave maestra muy corta" -msgstr "Длина мастер-пароля мала" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 +msgid "Campos Personalizados" +msgstr "Дополнительные поля" -#: ../../../../lib/SP/Services/Install/Installer.php:129 -msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" -msgstr "Мастер-пароль должен быть не менее 11 символов" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 +msgid "Módulo" +msgstr "Модуль" -#: ../../../../lib/SP/Services/Install/Installer.php:134 -#, fuzzy -msgid "Indicar el usuario de la BBDD" -msgstr "Введите пользователя базы данных" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:23 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:30 +msgid "Tipo" +msgstr "Тип" -#: ../../../../lib/SP/Services/Install/Installer.php:136 -#, fuzzy -msgid "Usuario con permisos de administrador de la Base de Datos" -msgstr "Пользователь с правами администратора для базы данных" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:120 +msgid "Propiedades" +msgstr "Настройки" -#: ../../../../lib/SP/Services/Install/Installer.php:148 -#, fuzzy -msgid "Indicar el nombre de la BBDD" -msgstr "Введите имя базы данных" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 +msgid "Encriptado" +msgstr "Encrypted" -#: ../../../../lib/SP/Services/Install/Installer.php:150 -msgid "Nombre para la BBDD de la aplicación pej. syspass" -msgstr "Имя базы данных программы. Например, syspass" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 +msgid "Buscar Campo" +msgstr "Поиск поля" -#: ../../../../lib/SP/Services/Install/Installer.php:155 -msgid "El nombre de la BBDD no puede contener \".\"" -msgstr "Имя базы данных не может содержать \".\"" +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 +msgid "Eliminar Campo" +msgstr "Удалить поле" -#: ../../../../lib/SP/Services/Install/Installer.php:157 -msgid "Elimine los puntos del nombre de la Base de Datos" -msgstr "Пожалуйста, уберите точки из имени базы данных" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 +#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 +#: ../../../config/actions.xml:133 +msgid "Registro de Eventos" +msgstr "Журнал событий" -#: ../../../../lib/SP/Services/Install/Installer.php:162 -#, fuzzy -msgid "Indicar el servidor de la BBDD" -msgstr "Введите сервер баз данных" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:97 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:99 +msgid "ID" +msgstr "ID" -#: ../../../../lib/SP/Services/Install/Installer.php:164 -msgid "Servidor donde se instalará la Base de Datos" -msgstr "Сервер, на котором будет создана база данных" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 +msgid "Fecha / Hora" +msgstr "Дата / Время" -#: ../../../../inc/SP/Core/Installer.class.php:238 -msgid "No es posible comprobar el usuario de sysPass" -msgstr "Не могу проверить пользователя sysPass" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 +msgid "Nivel" +msgstr "Уровень" -#: ../../../../lib/SP/Services/Install/MySQL.php:137 -#, fuzzy -msgid "Compruebe los permisos del usuario de conexión a la BD" -msgstr "Пожалуйста, проверьте права на базу данных" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 +msgid "Evento" +msgstr "Событие" -#: ../../../../lib/SP/Services/Install/MySQL.php:201 -msgid "La BBDD ya existe" -msgstr "База данных уже существует" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:117 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 +msgid "Login" +msgstr "Логин" -#: ../../../../lib/SP/Services/Install/MySQL.php:203 -#, fuzzy -msgid "Indique una nueva Base de Datos o elimine la existente" -msgstr "Введите новую базу данных или удалите существующую" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 +msgid "IP" +msgstr "IP" -#: ../../../../inc/SP/Core/Installer.class.php:316 -#: ../../../../inc/SP/Core/Installer.class.php:419 -#, fuzzy -msgid "Error al crear la BBDD" -msgstr "Ошибка при создании БД" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 +msgid "Buscar Evento" +msgstr "Поиск событий" -#: ../../../../lib/SP/Services/Install/MySQL.php:215 -#: ../../../../lib/SP/Services/Install/MySQL.php:239 -#, fuzzy -msgid "Verifique los permisos del usuario de la Base de Datos" -msgstr "Пожалуйста, проверьте права доступа к базе данных " - -#: ../../../../lib/SP/Services/Install/MySQL.php:305 -msgid "El archivo de estructura de la BBDD no existe" -msgstr "Файл структуры базы данных не существует" - -#: ../../../../lib/SP/Services/Install/MySQL.php:307 -msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." -msgstr "" -"Невозможно создать базу данных программы. Пожалуйста, скачайте её заново." - -#: ../../../../lib/SP/Services/Install/MySQL.php:290 -#, fuzzy -msgid "Error al seleccionar la BBDD" -msgstr "Ошибка выбора базы данных." - -#: ../../../../lib/SP/Services/Install/MySQL.php:311 -msgid "" -"No es posible usar la Base de Datos para crear la estructura. Compruebe los " -"permisos y que no exista." -msgstr "" -"Невозможно использовать базу данных для создания её структуры. Проверьте " -"права доступа к базе данных." - -#: ../../../../lib/SP/Services/Install/MySQL.php:331 -msgid "Error al crear la estructura de la Base de Datos." -msgstr "Ошибка создания структуры базы данных." - -#: ../../../../lib/SP/Services/Install/Installer.php:318 -#: ../../../../lib/SP/Services/Install/Installer.php:369 -msgid "Informe al desarrollador" -msgstr "Предупреждение разработчику" - -#: ../../../../inc/SP/Core/Installer.class.php:484 -#, fuzzy -msgid "Error al actualizar la clave maestra del usuario \"admin\"" -msgstr "Ошибка обновления мастер-пароля для пользователя \"admin\"" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:141 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:188 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:193 -msgid "No es posible conectar con el servidor de LDAP" -msgstr "Невозможно подключиться к серверу LDAP" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:231 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:237 -msgid "Error al conectar (BIND)" -msgstr "Ошибка подключения (BIND)" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:249 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:254 -msgid "Error al buscar objetos en DN base" -msgstr "Ошибка поиска объектов в DN" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:119 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:125 -#, fuzzy -msgid "Error al buscar RDN de grupo" -msgstr "Ошибка поиска группы в RDN" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:200 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapActions.php:204 -#, fuzzy -msgid "Error al localizar el usuario en LDAP" -msgstr "Ошибка поиска пользователя в LDAP" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:139 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:113 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:120 -msgid "Error al buscar el grupo de usuarios" -msgstr "Ошибка поиска групп пользователя" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:111 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapStd.php:109 -msgid "Usuario verificado en grupo" -msgstr "Членство пользователя в группе проверено" - -#: ../../../../inc/SP/Controller/EventlogController.class.php:102 -msgid "Vaciar Eventos" -msgstr "Очистить записи" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 +msgid "Refrescar" +msgstr "Refresh" +#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:199 #: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 #, fuzzy msgid "Vaciar registro de eventos" msgstr "Очистить журнал событий" -#: ../../../../lib/SP/Services/Client/ClientService.php:76 -#: ../../../../lib/SP/Services/Client/ClientService.php:95 -#: ../../../../lib/SP/Services/Client/ClientService.php:110 -#, fuzzy -msgid "Cliente no encontrado" -msgstr "Заказчик не найден" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:280 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 +#: ../../../config/actions.xml:19 +msgid "Archivos" +msgstr "Файлы" -#: ../../../../inc/SP/Mgmt/Users/User.class.php:246 -#, fuzzy -msgid "Error al obtener los usuarios" -msgstr "Ошибка получения пользователей" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:25 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:30 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:23 +msgid "Cuenta" +msgstr "Учетная запись" -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:52 -msgid "Migrar Perfiles" -msgstr "Миграция профилей" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:82 -#, fuzzy -msgid "Error al obtener perfiles" -msgstr "Ошибка получения профилей" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:144 -msgid "Operación realizada correctamente" -msgstr "Успешно" - -#: ../../../../inc/SP/Mgmt/Profiles/ProfileUtil.class.php:149 -#, fuzzy -msgid "Fallo al realizar la operación" -msgstr "Не удалось выполнить операцию" +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:110 +msgid "Tamaño" +msgstr "Размер" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:202 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 -#: ../../../config/actions.xml:655 -msgid "Eliminar Perfil" -msgstr "Удалить профиль" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:119 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:68 -msgid "Formato de XML inválido" -msgstr "Ошибка в формате XML" - -#: ../../../../lib/SP/Html/DataGrid/DataGridBase.php:303 -#: ../../../../lib/SP/Mvc/View/Template.php:122 -msgid "No es posible obtener la plantilla \"%s\" : %s" -msgstr "Не могу получить шаблон \"%s\" : %s" - -#: ../../../../lib/SP/Mvc/View/Template.php:274 -#: ../../../../lib/SP/Mvc/View/Template.php:276 -msgid "No es posible obtener la variable \"%s\"" -msgstr "Не могу получить переменную \"%s\"" - -#: ../../../../lib/SP/Mvc/View/Template.php:322 -#: ../../../../lib/SP/Mvc/View/Template.php:324 -msgid "No es posible destruir la variable \"%s\"" -msgstr "Нельзя удалить переменную \"%s\"" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:175 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:179 -#, fuzzy -msgid "Error al aplicar la actualización de la Base de Datos" -msgstr "Ошибка обновления базы данных" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:72 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:98 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:106 -msgid "Compruebe el registro de eventos para más detalles" -msgstr "См. журнал событий для получения подробностей." - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:63 -msgid "Acceder" -msgstr "Войти" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:96 -#, fuzzy -msgid "Error al aplicar la actualización auxiliar" -msgstr "Ошибка применения дополнительного обновления" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:89 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:120 -msgid "Actualizar BBDD" -msgstr "Обновление БД" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:155 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:159 -msgid "No es necesario actualizar la Base de Datos." -msgstr "Обновление базы данных не требуется." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 -msgid "Actualización de la Base de Datos realizada correctamente." -msgstr "Обновление базы данных завершено успешно." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:70 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:202 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:228 -msgid "Actualizar Configuración" -msgstr "Обновить конфигурацию" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:240 -msgid "No se pudo realizar la petición de cambio de clave." -msgstr "Выполнить запрос на смену пароля невозможно." +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:145 +#: ../../../config/actions.xml:475 +msgid "Buscar Archivo" +msgstr "Поиск файла" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:51 +#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 +msgid "Ver Archivo" +msgstr "Показать файл" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:42 +#: ../../../config/actions.xml:217 ../../../config/actions.xml:457 +msgid "Descargar Archivo" +msgstr "Скачать файл" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:34 +#: ../../../config/actions.xml:223 ../../../config/actions.xml:463 +msgid "Eliminar Archivo" +msgstr "Удалить файл" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 +msgid "Valores Predeterminados" +msgstr "Preset Values" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:274 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:277 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:206 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:233 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:148 +msgid "Grupo" +msgstr "Группа" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:118 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:131 +msgid "Perfil" +msgstr "Профиль" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 +msgid "Prioridad" +msgstr "Priority" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 +msgid "Forzado" +msgstr "Forced" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 +#: ../../../config/actions.xml:853 +msgid "Buscar Valor" +msgstr "Search for Value" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 +msgid "Valor de Permiso" +msgstr "Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 +msgid "Nuevo Valor de Permiso" +msgstr "New Permission Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 +msgid "Valor de Cuenta Privada" +msgstr "Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 +msgid "Nuevo Valor de Cuenta Privada" +msgstr "New Private Account Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 +msgid "Valor de Timeout de Sesión" +msgstr "Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 +msgid "Nuevo Valor de Timeout de Sesión" +msgstr "New Session Timeout Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 +#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 +msgid "Valor de Clave de Cuentas" +msgstr "Account Password Preset" + +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 +msgid "Nuevo Valor de Clave de Cuentas" +msgstr "New Account Password Preset" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: ../../../modules/web/Controllers/ItemPresetController.php:239 +#: ../../../config/actions.xml:871 +msgid "Editar Valor" +msgstr "Edit Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 +#: ../../../config/actions.xml:877 +msgid "Eliminar Valor" +msgstr "Delete Value" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:109 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 +#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 +#: ../../../config/actions.xml:679 +msgid "Notificaciones" +msgstr "Уведомления" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:124 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:42 +msgid "Componente" +msgstr "Компонент" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:111 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:115 +msgid "Leída" +msgstr "Чтение" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 +msgid "Sólo Admins" +msgstr "Only Admins" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:164 +#: ../../../config/actions.xml:841 +msgid "Buscar Notificación" +msgstr "Поиск уведомления" + +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:180 +#: ../../../modules/web/Controllers/NotificationController.php:194 +msgid "Nueva Notificación" +msgstr "Новое уведомление" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:198 +#: ../../../modules/web/Controllers/NotificationController.php:113 +#: ../../../config/actions.xml:811 +msgid "Ver Notificación" +msgstr "Показать уведомление" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:228 +#: ../../../config/actions.xml:835 +msgid "Marcar Notificación" +msgstr "Проверить уведомление" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:246 +#: ../../../modules/web/Controllers/NotificationController.php:226 +#: ../../../config/actions.xml:823 +msgid "Editar Notificación" +msgstr "Редактировать уведомление" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 +#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:263 +#: ../../../config/actions.xml:829 +msgid "Eliminar Notificación" +msgstr "Удалить уведомление" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:331 +#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 +msgid "Plugins" +msgstr "Плагины" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 +msgid "Plugin" +msgstr "Плагин" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 +msgid "No disponible" +msgstr "Unavailable" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 +#: ../../../config/actions.xml:547 +msgid "Buscar Plugin" +msgstr "Поиск плагинов" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 +#: ../../../modules/web/Controllers/PluginController.php:136 +#: ../../../config/actions.xml:541 +msgid "Ver Plugin" +msgstr "Показать плагин" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 +msgid "Habilitar" +msgstr "Включить" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 +msgid "Deshabilitar" +msgstr "Отключить" + +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 +#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 +msgid "Restablecer Datos" +msgstr "Сбросить данные" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:49 +msgid "Enlaces" +msgstr "Ссылки" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:51 +msgid "Fecha Creación" +msgstr "Дата создания" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:193 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:59 +msgid "Fecha Caducidad" +msgstr "Действует до" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:43 +msgid "Notificar" +msgstr "Уведомление" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:14 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:16 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:75 +msgid "Visitas" +msgstr "Просмотров" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:149 +msgid "Buscar Enlace" +msgstr "Поиск ссылок" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:165 +msgid "Nuevo Enlace" +msgstr "New Link" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:183 +#: ../../../modules/web/Controllers/PublicLinkController.php:357 +msgid "Ver Enlace" +msgstr "Показать ссылку" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:199 +msgid "Renovar Enlace" +msgstr "Обновить ссылку" + +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 +#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:216 +msgid "Eliminar Enlace" +msgstr "Удалить ссылку" + +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:211 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:213 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 +msgid "Etiquetas" +msgstr "Теги" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:135 +#: ../../../config/actions.xml:529 +msgid "Buscar Etiqueta" +msgstr "Поиск тегов" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: ../../../modules/web/Controllers/TagController.php:108 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:226 +#: ../../../config/actions.xml:505 +msgid "Nueva Etiqueta" +msgstr "Новый тег" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: ../../../modules/web/Controllers/TagController.php:168 +#: ../../../config/actions.xml:517 +msgid "Editar Etiqueta" +msgstr "Редактировать тег" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:186 +#: ../../../config/actions.xml:523 +msgid "Eliminar Etiqueta" +msgstr "Удалить тег" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 +msgid "Tracks" +msgstr "Tracks" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 +msgid "Fecha Desbloqueo" +msgstr "Date Unlocked" + +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 +msgid "Origen" +msgstr "Источник" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 +#: ../../../config/actions.xml:889 +msgid "Buscar Track" +msgstr "Search for track" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:156 +#: ../../../config/actions.xml:601 +msgid "Buscar Usuario" +msgstr "Поиск пользователя" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:172 +#: ../../../modules/web/Controllers/UserController.php:115 +#: ../../../config/actions.xml:577 +msgid "Nuevo Usuario" +msgstr "Создать пользователя" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:189 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:190 +#: ../../../modules/web/Controllers/UserController.php:200 +#: ../../../config/actions.xml:583 +msgid "Editar Usuario" +msgstr "Редактировать пользователя" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:205 #: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:206 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:207 #: ../../../config/actions.xml:589 msgid "Eliminar Usuario" msgstr "Удалить пользователя" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:40 -msgid "Usuario de LDAP" -msgstr "Пользователь LDAP" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:224 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:460 +msgid "Importar usuarios de LDAP" +msgstr "Импорт пользователей из LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:122 -msgid "Activación Cuenta" -msgstr "Активация учетной записи" +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:242 +msgid "Ver Detalles de Usuario" +msgstr "Просмотр информации пользователя" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:123 -msgid "Su cuenta está pendiente de activación." -msgstr "Активация Вашей учетной записи в процессе." +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:259 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 +msgid "Cambiar Clave de Usuario" +msgstr "Изменить пароль пользователя" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:124 -msgid "En breve recibirá un email de confirmación." -msgstr "Вы получите письмо в скором времени." +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 +#: ../../../config/actions.xml:631 +msgid "Buscar Grupo" +msgstr "Поиск группы" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:131 -msgid "Nuevo usuario de LDAP" -msgstr "Пользователь LDAP" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: ../../../modules/web/Controllers/UserGroupController.php:117 +#: ../../../config/actions.xml:613 +msgid "Nuevo Grupo" +msgstr "Создать группу" -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:152 -#, fuzzy -msgid "Error al migrar grupo del usuario" -msgstr "Ошибка миграции группы пользователя" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: ../../../modules/web/Controllers/UserGroupController.php:344 +#: ../../../config/actions.xml:607 +msgid "Ver Grupo" +msgstr "Показать группу" -#: ../../../modules/web/Controllers/InstallController.php:62 -msgid "Versión de PHP requerida >= " -msgstr "Необходим PHP версии >= " +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: ../../../modules/web/Controllers/UserGroupController.php:188 +#: ../../../config/actions.xml:619 +msgid "Editar Grupo" +msgstr "Редактировать группу" -#: ../../../../lib/SP/Bootstrap.php:269 -msgid "" -"Actualice la versión de PHP para que la aplicación funcione correctamente" -msgstr "Пожалуйста, обновите PHP для использования sysPass" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 +#: ../../../config/actions.xml:625 +msgid "Eliminar Grupo" +msgstr "Удалить группу" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 +msgid "Perfiles" +msgstr "Профили" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 +#: ../../../config/actions.xml:661 +msgid "Buscar Perfil" +msgstr "Поиск профиля" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: ../../../modules/web/Controllers/UserProfileController.php:110 +#: ../../../config/actions.xml:643 +msgid "Nuevo Perfil" +msgstr "Создать профиль" + +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 +msgid "Ver Detalles de Perfil" +msgstr "Просмотр информации о профиле" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: ../../../modules/web/Controllers/UserProfileController.php:177 +#: ../../../config/actions.xml:649 +msgid "Editar Perfil" +msgstr "Редактировать профиль" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 +#: ../../../config/actions.xml:655 +msgid "Eliminar Perfil" +msgstr "Удалить профиль" + +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:262 +msgid "Buscar" +msgstr "Поиск" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:345 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:24 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 +#: ../../../config/actions.xml:685 +msgid "Configuración" +msgstr "Конфигурация" #: ../../../modules/web/Controllers/InstallController.php:59 msgid "Módulo no disponible" @@ -2491,30 +2014,58 @@ msgstr "Модуль недоступен" msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Без этого модуля программа не может работать корректно" -#: ../../../../inc/SP/Core/XmlExport.class.php:133 -msgid "Exportar XML" -msgstr "Экспорт XML" +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:73 +#: ../../../config/actions.xml:859 +msgid "Ver Valor" +msgstr "Display Value" -#: ../../../../lib/SP/Services/Export/XmlExportService.php:545 +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/ItemPresetController.php:207 +#: ../../../config/actions.xml:865 +msgid "Nuevo Valor" +msgstr "New Value" + +#: ../../../modules/web/Controllers/ItemsController.php:130 #, fuzzy -msgid "Error al crear el archivo XML" -msgstr "Ошибка создания файла XML" +msgid "No hay no hay notificaciones pendientes" +msgstr "Нет ожидающих уведомлений" -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:110 -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:81 -#, fuzzy -msgid "No es posible procesar el archivo XML" -msgstr "Невозможно обработать файл XML" +#: ../../../modules/web/Controllers/ItemsController.php:131 +#, php-format +msgid "Hay notificaciones pendientes: %d" +msgstr "There are pending notifications: %d" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:105 -msgid "Archivo XML no soportado" -msgstr "Файл XML не поддерживается" +#: ../../../modules/web/Controllers/PublicLinkController.php:114 +msgid "Nuevo Enlace Público" +msgstr "New Public Link" -#: ../../../../lib/SP/Services/Import/XmlFileImport.php:107 -msgid "No es posible detectar la aplicación que exportó los datos" -msgstr "Невозможно определить программу, из которой были экспортированы данные" +#: ../../../modules/web/Controllers/PublicLinkController.php:204 +msgid "Editar Enlace Público" +msgstr "Edit Public Link" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/TagController.php:302 +#: ../../../config/actions.xml:511 +msgid "Ver Etiqueta" +msgstr "View Tag" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserController.php:458 +#: ../../../config/actions.xml:571 +msgid "Ver Usuario" +msgstr "Показать пользователя" + +#. (itstool) path: action/text +#: ../../../modules/web/Controllers/UserProfileController.php:326 +#: ../../../config/actions.xml:637 +msgid "Ver Perfil" +msgstr "Показать профиль" + +#: ../../../modules/web/Controllers/UserSettingsManagerController.php:87 +msgid "Preferencias" +msgstr "Настройки" -#: ../../../../lib/SP/Storage/Database/QueryData.php:354 #: ../../../config/strings.js.inc:26 msgid "Error en la consulta" msgstr "Ошибка при запросе" @@ -2568,12 +2119,11 @@ msgid "Borrar elemento?" msgstr "Удалить элемент?" #: ../../../config/strings.js.inc:39 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:8 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:17 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:31 msgid "Página no encontrada" msgstr "Страница не найдена" -#: ../../../modules/web/Controllers/AccountFileController.php:108 #: ../../../config/strings.js.inc:40 msgid "Archivo no soportado para visualizar" msgstr "Предпросмотр файла недоступен" @@ -2594,54 +2144,58 @@ msgstr "Слишком много файлов" msgid "Tamaño de archivo no permitido" msgstr "Размер файла вне разрешений" +#: ../../../config/strings.js.inc:45 +msgid "Extensión no permitida" +msgstr "Данный тип файла заблокирован" + #: ../../../config/strings.js.inc:46 #, fuzzy msgid "Vaciar el registro de eventos?" msgstr "Очистить журнал событий?" #: ../../../config/strings.js.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:176 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:276 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:87 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:250 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:145 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:179 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:281 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:253 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:152 msgid "Seleccionar Grupo" msgstr "Выбрать группу" #: ../../../config/strings.js.inc:48 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:159 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:30 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:21 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:32 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:161 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:278 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:81 msgid "Seleccionar Usuario" msgstr "Выбрать пользователя" #: ../../../config/strings.js.inc:49 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:128 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:135 msgid "Seleccionar Perfil" msgstr "Выбрать профиль" #: ../../../config/strings.js.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:24 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:84 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:32 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 #, fuzzy msgid "Seleccionar Cliente" msgstr "Выбрать заказчика" #: ../../../config/strings.js.inc:51 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:68 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:103 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:33 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:52 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:41 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 msgid "Seleccionar Categoría" msgstr "Выбрать категорию" @@ -2674,54 +2228,44 @@ msgid "Mostrar Clave" msgstr "Показать пароль" #: ../../../config/strings.js.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:19 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:24 msgid "Copiar Usuario" msgstr "Скопировать пользователя" #. (itstool) path: action/text #: ../../../config/strings.js.inc:60 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:36 +#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:41 #: ../../../config/actions.xml:199 ../../../config/actions.xml:271 msgid "Copiar Clave" msgstr "Скопировать пароль" #: ../../../config/strings.js.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:74 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 msgid "Incluir Números" msgstr "Использовать цифры" #: ../../../config/strings.js.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:116 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 msgid "Incluir Mayúsculas" msgstr "Использовать заглавные буквы" #: ../../../config/strings.js.inc:63 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:102 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 #, fuzzy msgid "Incluir Símbolos" msgstr "Использовать символы" #: ../../../config/strings.js.inc:64 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:14 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 msgid "Longitud" msgstr "Длина" #: ../../../config/strings.js.inc:65 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 msgid "Seleccionar Acción" msgstr "Действие" -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:66 -msgid "SI" -msgstr "ДА" - -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:122 -#: ../../../config/strings.js.inc:67 -msgid "NO" -msgstr "НЕТ" - #: ../../../config/strings.js.inc:68 msgid "Aceptar" msgstr "Принять" @@ -2738,485 +2282,738 @@ msgstr "Пароль скопирован в буфер" msgid "Error al copiar al portapapeles" msgstr "Ошибка копирования в буфер" -#: ../../../modules/web/Controllers/AccountController.php:149 -#: ../../../modules/web/Controllers/AccountController.php:204 -#: ../../../modules/web/Controllers/AccountController.php:474 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/linkedAccounts.inc:26 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:45 -msgid "Detalles de Cuenta" -msgstr "Детали учетной записи" - -#: ../../../modules/web/Controllers/AccountController.php:432 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 -msgid "Modificar Clave de Cuenta" -msgstr "Изменить пароль учетной записи" - -#: ../../../../lib/SP/Plugin/PluginManager.php:246 -#: ../../../modules/api/Controllers/AccountController.php:71 -#: ../../../modules/api/Controllers/AccountController.php:103 -#: ../../../modules/api/Controllers/AccountController.php:139 -#: ../../../modules/api/Controllers/AccountController.php:185 -#: ../../../modules/api/Controllers/AccountController.php:235 -#: ../../../modules/api/Controllers/AccountController.php:310 -#: ../../../modules/api/Controllers/CategoryController.php:63 -#: ../../../modules/api/Controllers/CategoryController.php:92 -#: ../../../modules/api/Controllers/CategoryController.php:122 -#: ../../../modules/api/Controllers/CategoryController.php:151 -#: ../../../modules/api/Controllers/ClientController.php:64 -#: ../../../modules/api/Controllers/ClientController.php:94 -#: ../../../modules/api/Controllers/ClientController.php:125 -#: ../../../modules/api/Controllers/ClientController.php:154 -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:90 -#: ../../../modules/api/Controllers/TagController.php:119 -#: ../../../modules/api/Controllers/TagController.php:148 -#: ../../../modules/api/Controllers/UserGroupController.php:62 -#: ../../../modules/api/Controllers/UserGroupController.php:92 -#: ../../../modules/api/Controllers/UserGroupController.php:123 -#: ../../../modules/api/Controllers/UserGroupController.php:152 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:239 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:108 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:103 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:104 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:105 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:115 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:106 -#: ../../../modules/web/Controllers/UserGroupController.php:265 -#: ../../../modules/web/Controllers/UserGroupController.php:304 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:33 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:15 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:59 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:16 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:528 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:16 -msgid "Nombre" -msgstr "Имя" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:45 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:47 -msgid "Módulo" -msgstr "Модуль" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 -msgid "Eliminar Campo" -msgstr "Удалить поле" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 -msgid "Último backup" -msgstr "Последняя резервная копия" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:308 +#: ../../../config/strings.js.inc:73 #, fuzzy -msgid "No se encontraron backups" -msgstr "Нет доступных резервных копий" +msgid "Recibir notificaciones?" +msgstr "Отправить уведомления?" -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "Última exportación" -msgstr "Последний экспорт" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:320 -msgid "No se encontró archivo de exportación" -msgstr "Файл экспорта не найден" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:361 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:63 -msgid "Información" -msgstr "Информация" - -#: ../../../modules/web/Controllers/EventlogController.php:119 -#: ../../../modules/web/Controllers/EventlogController.php:122 -msgid "Registro de eventos vaciado" -msgstr "Журнал очищен" - -#: ../../../../lib/SP/Repositories/EventLog/EventlogRepository.php:53 -#, fuzzy -msgid "Error al vaciar el registro de eventos" -msgstr "Ошибка очистки журнала" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:38 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:193 -msgid "Admin Aplicación" -msgstr "Администратор программы" - -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:265 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:58 -msgid "Buscar" -msgstr "Поиск" +#: ../../../config/strings.js.inc:74 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:158 +msgid "Marcar Favorito" +msgstr "Пометить как избранное" #. (itstool) path: action/text -#: ../../../config/actions.xml:103 -msgid "Usuarios y Accesos" -msgstr "Пользователи и доступы" +#: ../../../config/strings.js.inc:75 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:148 +#: ../../../config/actions.xml:253 +msgid "Eliminar Favorito" +msgstr "Удалить избранное" -#. (itstool) path: action/text -#: ../../../config/actions.xml:43 -msgid "Elementos y Personalización" -msgstr "Элементы персонализации" +#: ../../../config/strings.js.inc:76 +msgid "Limpiar Selección" +msgstr "Очистить выбор" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 -#: ../../../modules/web/themes/material-blue/views/eventlog/index.inc:1 -#: ../../../config/actions.xml:133 -msgid "Registro de Eventos" -msgstr "Журнал событий" +#: ../../../config/strings.js.inc:77 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:78 +msgid "Mostrar Favoritos" +msgstr "Показать избранное" -#: ../../../modules/web/Controllers/InstallController.php:82 -msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" -msgstr "Данная версия PHP уязвима NULL Byte attack (CVE-2006-7243)" +#: ../../../config/strings.js.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:72 +msgid "Mostrar Todos" +msgstr "Показать все" -#: ../../../modules/web/Controllers/InstallController.php:83 -msgid "Actualice la versión de PHP para usar sysPass de forma segura" -msgstr "Пожалуйста, обновите версию PHP для безопасного использования sysPass" +#: ../../../config/strings.js.inc:79 +msgid "Ayuda" +msgstr "Помощь" -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "No se encuentra el generador de números aleatorios." -msgstr "Не могу найти генератор случайных чисел." +#: ../../../config/strings.js.inc:80 +msgid "Sin cambios" +msgstr "Нет изменений" -#: ../../../modules/web/Controllers/InstallController.php:90 +#: ../../../config/strings.js.inc:81 +msgid "Ahora" +msgstr "Сейчас" + +#: ../../../config/strings.js.inc:82 msgid "" -"Sin esta función un atacante puede utilizar su cuenta al resetear la clave" -msgstr "" -"Без этой функции, атакующий может завладеть вашим аккаунтом при сбросе " -"пароля." +"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" +msgstr "Этот процесс импортирует найденных пользователей из LDAP. Продолжить?" -#: ../../../modules/web/Controllers/InstallController.php:89 -msgid "Instalación finalizada" -msgstr "Установка завершена" +#: ../../../config/strings.js.inc:83 +msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" +msgstr "Это действие сбросит все данные плагина. Продолжить?" -#: ../../../../inc/SP/Controller/MainController.class.php:492 -msgid "Descargar nueva versión" -msgstr "Скачать новую версию" +#: ../../../config/strings.js.inc:84 +#, fuzzy +msgid "Este proceso puede durar algo de tiempo. Desea continuar?" +msgstr "Это длительный процесс. Продолжить?" + +#: ../../../config/strings.js.inc:85 +msgid "Aviso" +msgstr "Предупреждение" + +#: ../../../config/strings.js.inc:87 +msgid "" +"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." +msgstr "Выполнение задачи. Не закрывайте окно браузера / вкладку." + +#: ../../../config/strings.js.inc:88 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 +msgid "Incluir Letras" +msgstr "Использовать буквы" + +#: ../../../config/strings.js.inc:89 +msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." +msgstr "Куки отключены. Приложение не будет работать должным образом." + +#: ../../../config/strings.js.inc:90 +msgid "Portapapeles no soportado por el navegador." +msgstr "Буфер обмена не поддерживается вашим браузером." + +#: ../../../config/strings.js.inc:91 +msgid "Realizando auto-login" +msgstr "Performing auto-login" + +#: ../../../config/strings.js.inc:92 +msgid "Hay una versión más reciente del plugin {0} ({1})" +msgstr "There is a more recent version of {0} plugin ({1})" + +#: ../../../config/strings.js.inc:93 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:30 +msgid "Actualizado" +msgstr "Обновлено" + +#: ../../../config/strings.js.inc:94 +#: ../../../modules/web/themes/material-blue/views/main/update.inc:36 +msgid "Error al comprobar actualizaciones" +msgstr "Ошибка проверки обновлений" #: ../../../config/strings.js.inc:95 msgid "Avisos de sysPass" msgstr "Уведомления sysPass" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:233 +#: ../../../config/strings.js.inc:96 +msgid "Vaciar los tracks?" +msgstr "Clear tracks out?" + +#: ../../../config/strings.js.inc:97 +msgid "Archivo descargado" +msgstr "File downloaded" + +#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:21 #, fuzzy -msgid "Ordenar por Cliente" -msgstr "Сортировать по заказчику" +msgid "Javascript es necesario para el correcto funcionamiento" +msgstr "Javascript необходим для корректной работы" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:240 -msgid "Ordenar por Nombre" -msgstr "Сортировать по имени" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:247 -msgid "Ordenar por Categoría" -msgstr "Сортировать по категории" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:254 -msgid "Ordenar por Usuario" -msgstr "Сортировать по имени пользователя" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:261 -msgid "Ordenar por URL / IP" -msgstr "Сортировать по URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:260 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:44 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:50 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:49 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:122 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:68 -msgid "URL / IP" -msgstr "URL / IP" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:119 -msgid "Propiedades" -msgstr "Настройки" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:211 -#, fuzzy -msgid "Admin Cuentas" -msgstr "Администратор учетных записей" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:41 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:250 -msgid "Deshabilitado" -msgstr "Отключен" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:240 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:241 -msgid "Ver Detalles de Usuario" -msgstr "Просмотр информации пользователя" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:257 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:258 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:62 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:120 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:126 -msgid "Cambiar Clave de Usuario" -msgstr "Изменить пароль пользователя" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:168 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 -msgid "Ver Detalles de Perfil" -msgstr "Просмотр информации о профиле" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:172 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 -msgid "Ver token de Autorización" -msgstr "Просмотр токена авторизации" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:409 -msgid "Token de autorización visualizado" -msgstr "Отображение токена авторизации" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:407 -msgid "Autorizaciones" -msgstr "Авторизации" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:130 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:133 -msgid "Seguridad" -msgstr "Безопасность" - -#: ../../../modules/web/Controllers/UserSettingsManagerController.php:89 -msgid "Preferencias" -msgstr "Настройки" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:82 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:106 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:42 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:22 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:24 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:67 -msgid "Nombre de cuenta" -msgstr "Имя учетной записи" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:87 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:110 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:86 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:130 -msgid "URL o IP de acceso" -msgstr "URL или IP доступа" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:86 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:109 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:143 -msgid "Usuario de acceso" -msgstr "Пользователь доступа" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:77 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:162 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:169 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:108 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:31 -msgid "Clave (repetir)" -msgstr "Подтверждение пароля" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:117 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:71 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:156 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:162 -msgid "Notas" -msgstr "Заметки" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:88 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:124 -#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:201 -msgid "Notas sobre la cuenta" -msgstr "Заметки по учетной записи" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:18 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:209 -msgid "Permisos" -msgstr "Разрешения" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:28 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:53 -msgid "Hablitar edición" -msgstr "Разрешить изменения" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:173 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:45 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:47 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 -msgid "Grupo Principal" -msgstr "Основная группа" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Soltar archivos aquí (max. 5) o click para seleccionar" -msgstr "Перетащите файлы сюда (не более 5) или нажмите для выбора" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:325 -msgid "Tamaño máximo de archivo" -msgstr "Максимальный размер файла" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:129 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:131 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:264 -msgid "Historial" -msgstr "История" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:136 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:269 -msgid "Seleccionar fecha" -msgstr "Выберите дату" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:281 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:27 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:29 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:286 -msgid "Última Modificación" -msgstr "Последнее изменение" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:9 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:11 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:184 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:70 -msgid "Visitas" -msgstr "Просмотров" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:17 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:19 -msgid "Fecha Alta" -msgstr "Дата создания" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:62 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 -msgid "Creador" -msgstr "Создатель" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Usuarios Secundarios" -msgstr "Вторичные пользователи" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 -msgid "Grupos Secundarios" -msgstr "Вторичные группы" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:55 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:57 -msgid "Fecha Edición" -msgstr "Дата изменения" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:63 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:65 -msgid "Editor" -msgstr "Изменил" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 -msgid "Restaurar cuenta desde este punto" -msgstr "Восстановить учетную запись из текущей точки" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 -msgid "Copiar Clave en Portapapeles" -msgstr "Копировать пароль в буфер" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 -msgid "Ver Actual" -msgstr "Просмотр текущей версии" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:49 #: ../../../modules/web/themes/material-blue/views/_partials/error.inc:14 #: ../../../modules/web/themes/material-blue/views/_partials/error.inc:15 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-database.inc:14 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:13 #: ../../../modules/web/themes/material-blue/views/error/error-maintenance.inc:14 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:41 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 msgid "Volver" msgstr "Назад" -#: ../../../../inc/themes/material-blue/views/account/actions.inc:146 -msgid "Modificar Cuenta" -msgstr "Редактировать учетную запись" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 +msgid "Preferencias de usuario" +msgstr "Настройки пользователя" -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 -msgid "Solicitar Modificación" -msgstr "Запросить изменение" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 +msgid "Salir" +msgstr "Выйти" -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:51 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:121 -msgid "Guardar" -msgstr "Сохранить" +#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:53 +msgid "Demo" +msgstr "Демо" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:23 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:26 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:104 +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 +#, fuzzy +msgid "Indica si la conexión utiliza HTTPS." +msgstr "Указывает, используется ли соединение по протоколу HTTPS." + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:44 +msgid "" +"Las claves de formularios enviados se encriptan mediante PKI, el resto de " +"datos no." +msgstr "Пароли при передаче форм шифруются с PKI, остальные данные - нет." + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:66 +msgid "Ayuda :: FAQ :: Changelog" +msgstr "Help :: FAQ :: Changelog" + +#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:70 +msgid "Un proyecto de cygnux.org" +msgstr "Проект cygnux.org" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 +msgid "Parámetros especiales" +msgstr "Special parameters" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 +msgid "" +"Es posible utilizar uno o varios parámetros especiales separados por espacios" +msgstr "" +"You could use either one or several special parameters separated by blank " +"spaces" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 +#, fuzzy +msgid "Buscar cuentas a las que 'login' tenga acceso" +msgstr "Найти учетные записи, к которым есть доступ у указанного пользователя" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 +msgid "Devolver las cuentas en las que 'login' es propietario" +msgstr "" +"Получить учетные записи, в которых пользователь \"login\" является владельцем" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 +#, fuzzy +msgid "Buscar cuentas a las que 'group_name' tenga acceso" +msgstr "Найти учетные записи, к которым есть доступ у указанной группы" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 +msgid "Devolver las cuentas con grupo principal 'group_name'" +msgstr "" +"Получить учетные записи, имеющие название основной группы \"group_name\"" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 +msgid "Buscar cuentas con archivos con el nombre 'file_name'" +msgstr "Найти учетные записи с прикрепленным файлом" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 +msgid "Buscar cuentas por nombre de cliente" +msgstr "Search for accounts by client name" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 +msgid "Buscar cuentas por nombre de categoría" +msgstr "Search for accounts by category name" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 +msgid "Devolver la cuenta con ID" +msgstr "Returns the account for the given ID" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 +msgid "Buscar cuentas con la clave caducada" +msgstr "Поиск учетных записей с просроченным паролем" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 +msgid "Devolver las cuentas privadas del usuario actual" +msgstr "Получить приватные учетные записи для текущего пользователя" + +#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 +msgid "Operador para los parámetros especiales" +msgstr "Operator for special parameters" + +#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:17 +msgid "No se encontraron registros" +msgstr "Записи не найдены" + +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:168 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:115 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:38 +msgid "Clave (repetir)" +msgstr "Подтверждение пароля" + +#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:194 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 +msgid "Seleccionar Fecha" +msgstr "Выберите дату" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:19 +msgid "Histórico" +msgstr "История" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:28 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:45 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:22 +msgid "Detalles" +msgstr "Детали" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:127 +#: ../../../modules/web/themes/material-blue/views/account/account-link.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:200 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:169 +msgid "Notas" +msgstr "Заметки" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:140 +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:142 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:271 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:273 +msgid "Historial" +msgstr "История" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:147 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:278 +msgid "Seleccionar fecha" +msgstr "Выберите дату" + +#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:160 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:32 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:34 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 +msgid "Última Modificación" +msgstr "Последнее изменение" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:23 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:54 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:57 +msgid "Seleccionar Usuarios" +msgstr "Выберите пользователей" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:101 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 +msgid "Ver" +msgstr "Показать" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:64 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:132 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:136 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 +msgid "Editar" +msgstr "Изменить" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:91 +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:122 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 +msgid "Seleccionar Grupos" +msgstr "Выберите группы" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 +msgid "Privada" +msgstr "Приват" + +#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:223 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 +msgid "Privada Grupo" +msgstr "Приват для группы" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:15 +msgid "Solicitar Modificación de Cuenta" +msgstr "Запрос изменения учетной записи" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 +msgid "Petición" +msgstr "Запрос" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:52 +#, fuzzy +msgid "Descripción de la petición" +msgstr "Описание запроса" + +#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:74 +msgid "Enviar" +msgstr "Отправить" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:37 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 +msgid "Permisos" +msgstr "Разрешения" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:218 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 +msgid "Seleccionar Etiquetas" +msgstr "Выберите теги" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:262 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:26 +msgid "Seleccionar Cuenta" +msgstr "Выберите учетную запись" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:191 +msgid "Enlace Público" +msgstr "Публичная ссылка" + +#: ../../../modules/web/themes/material-blue/views/account/account.inc:314 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:316 +#: ../../../modules/web/themes/material-blue/views/account/account.inc:319 +msgid "Enlace Directo" +msgstr "Direct Link" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:22 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:24 +msgid "Fecha Alta" +msgstr "Дата создания" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:60 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:62 +msgid "Fecha Edición" +msgstr "Дата изменения" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:68 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:70 +msgid "Editor" +msgstr "Изменил" + +#: ../../../modules/web/themes/material-blue/views/account/details.inc:78 +#: ../../../modules/web/themes/material-blue/views/account/details.inc:80 +msgid "Fecha de Clave" +msgstr "Дата пароля" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:37 +msgid "Soltar archivos aquí (max. 5) o click para seleccionar" +msgstr "Перетащите файлы сюда (не более 5) или нажмите для выбора" + +#: ../../../modules/web/themes/material-blue/views/account/files.inc:39 +#, php-format +msgid "Tamaño máximo de archivo: %d MB" +msgstr "Максимальный размер файла: %d MB " + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:35 +msgid "Buscar en Wiki" +msgstr "Поиск в Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:82 +#, php-format +msgid "Abrir enlace a: %s" +msgstr "Open link to: %s" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:109 +msgid "Clave Caducada" +msgstr "Пароль просрочен" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:123 +msgid "Cuenta Privada (Grupo)" +msgstr "Private Account (Group)" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:166 +msgid "Notes" +msgstr "Notes" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 +msgid "Archivos adjuntos" +msgstr "Вложения" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:218 +msgid "Enlace a Wiki" +msgstr "Ссылка на Wiki" + +#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:210 +msgid "Ver en Wiki" +msgstr "Посмотреть в WiKi" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:57 +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 +#, fuzzy +msgid "Búsqueda global" +msgstr "Глобальный поиск" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:83 +msgid "Filtrar Favoritos" +msgstr "Фильтр избранного" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:98 +msgid "Cuentas por página" +msgstr "Учетных записей на страницу" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:104 +msgid "Más Filtros" +msgstr "Больше фильтров" + +#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:109 +msgid "Seleccionar Etiqueta" +msgstr "Выберите теги" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:22 +msgid "Los datos serán encriptados al guardar" +msgstr "Data will be encrypted after saving" + +#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:27 +msgid "Los datos serán desencriptados al guardar" +msgstr "Data will be unencrypted after saving" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:12 +#, php-format +msgid "La extensión '%s' no está disponible" +msgstr "The '%s' extension is unavailable" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:16 +msgid "Esta extensión es necesaria para mostrar las claves como imágenes" +msgstr "This extension is needed to display passwords as images" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:30 +msgid "Búsqueda" +msgstr "Поиск" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:36 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:56 +msgid "Resultados por página" +msgstr "Результатов на страницу" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:41 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:61 +msgid "Número de resultados por página a mostrar, al realizar una búsqueda." +msgstr "Число результатов поиска на страницу" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:52 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:72 +msgid "Número de resultados por página" +msgstr "Число результатов поиска на страницу" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:70 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 +msgid "Caducidad clave cuentas" +msgstr "Accounts password expiry" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:71 +msgid "Habilita la caducidad de la clave de cuentas." +msgstr "Enables the accounts password expiry date." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:79 +msgid "Tiempo caducidad clave" +msgstr "Password expiry time" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:84 +msgid "Número de días para la caducidad de la clave de cuenta." +msgstr "Number of days for the account expiry date." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:94 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 +msgid "Tiempo caducidad (días)" +msgstr "Expire time (days)" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:112 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:90 +msgid "Nombre de cuenta como enlace" +msgstr "Имя учетной записи как ссылка" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:113 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:92 +msgid "" +"Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " +"de la cuenta." +msgstr "Превращает имя учетной записи в ссылку на её детали на странице поиска" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:128 +msgid "Búsquedas globales" +msgstr "Глобальные поиски" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:129 +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 "" +"Позволяет пользователям производить поиск по всем учетным записям, но при " +"этом содержимое учетных записей, к которым нет доступа, не будет показано." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:144 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 +msgid "Imagen para mostrar clave" +msgstr "Показать пароль в виде изображения" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:146 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 +msgid "Generar una imagen con el texto de la clave de la cuenta." +msgstr "Генерирует изображение с паролем учетной записи." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:148 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 +msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." +msgstr "Полезно для ситуаций, когда копирование паролей не безопасно." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:164 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:158 +msgid "Resultados en Tarjetas" +msgstr "Результаты в виде карточек" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:166 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:160 +#, fuzzy +msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." +msgstr "Включает показ учетных записей в результатах поиска в виде карточек." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:182 +msgid "Acceso Grupos Secundarios" +msgstr "Доступ к дополнительным группам" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:184 +msgid "" +"Habilita el acceso a los usuarios que estén incluidos en los grupos " +"secundarios." +msgstr "" +"Предоставляет доступ к пользователям, которые включены во вторичные группы." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:186 +msgid "" +"Por defecto el usuario de un grupo secundario es permitido si el grupo " +"secundario está establecido como el primario del usuario." +msgstr "" +"По умолчанию пользователь во вторичной группе предоставляется, если " +"вторичная группа задана в качестве основной группы пользователя." + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:197 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 +#: ../../../config/actions.xml:73 +msgid "Enlaces Públicos" +msgstr "Публичные ссылки" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:215 +msgid "Habilitar Enlaces Públicos" +msgstr "Включить публичные ссылки" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:217 +msgid "" +"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " +"una cuenta." +msgstr "" +"Включает возможность создания публичных ссылок для просмотра деталей учетной " +"записи" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:219 +msgid "" +"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." +msgstr "Связанные учетные записи будут видны для всех, у кого есть ссылка." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:221 +msgid "" +"Para crear enlaces, los usuarios tienen que tener activada la opción en su " +"perfl." +msgstr "" +"Для создания ссылок пользователи должны включить соответствующую опцию в " +"своем профиле." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:237 +msgid "Usar imagen para clave" +msgstr "Использовать картинку для пароля" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:239 +msgid "La clave de la cuenta es visualizada como una imagen." +msgstr "Пароль учетной записи показан как картинка." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:248 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:257 +msgid "Tiempo de caducidad" +msgstr "Срок действия" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:263 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:272 +msgid "Número máximo de visitas" +msgstr "Максимум переходов" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:298 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 +msgid "Gestión de archivos" +msgstr "Управление файлами" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:299 +#, fuzzy +msgid "Habilita la subida/descarga de archivos para las cuentas." +msgstr "" +"Включает загрузку/скачивание файлов, которые могут прикрепляться к учетным " +"записям." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:307 +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:320 +msgid "Extensiones de archivos permitidas" +msgstr "Разрешенные расширения файлов" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 +msgid "Extensiones permitidas para la subida de archivos." +msgstr "Разрешенные расширения файлов для загрузки." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:315 +msgid "" +"Escribir extensión y pulsar intro para añadir. Es necesario guardar la " +"configuración." +msgstr "" +"Введите расширение и нажмите Enter для добавления. Не забудьте сохранить " +"настройки." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:328 +msgid "Tamaño máximo de archivo" +msgstr "Максимальный размер файла" + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:333 +msgid "Establece el tamaño máximo para subir archivos." +msgstr "Максимальный размер загружаемого файла." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:337 +msgid "El máximo absuluto es de 16MB." +msgstr "Абсолютный максимум 16MB." + +#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:348 +msgid "Tamaño máximo de archivo en kilobytes" +msgstr "Максимальный размер файла в килобайтах" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:16 +msgid "" +"Esta extensión es necesaria para generar los archivos de copia de seguridad " +"de la aplicación" +msgstr "This extension is needed to build the application's backup files" + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 msgid "Resultado" msgstr "Результат" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:34 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:112 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:115 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:41 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:120 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:123 msgid "Descargar Actual" msgstr "Скачать текущий" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:53 -#, fuzzy -msgid "No hay backups para descargar" -msgstr "Нет резервных копий для скачивания" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:51 +msgid "Copia BBDD" +msgstr "Резервная копия БД" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:52 -#: ../../../config/strings.js.inc:79 -msgid "Ayuda" -msgstr "Помощь" +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:58 +msgid "Copia sysPass" +msgstr "Резервная копия sysPass" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:80 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 "" "Резервное копирование позволяет сохранять базу данных, файлы и настройки." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:74 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:82 #, fuzzy msgid "" "Con este método es posible guardar todos los datos de sysPass en otro lugar " @@ -3225,27 +3022,22 @@ msgstr "" "Используя данный метод возможно сохранить все данные sysPass и использовать " "их в portable версии" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:93 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:185 msgid "Exportar Cuentas" msgstr "Экспорт учетных записей" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:125 -#, fuzzy -msgid "No hay archivos XML para descargar" -msgstr "Нет XML файлов для загрузки" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:132 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:140 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:139 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:147 msgid "Clave de Exportación" msgstr "Пароль экспорта" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:161 msgid "Clave de Exportación (repetir)" msgstr "Пароль экспорта (подтверждение)" -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:187 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." @@ -3253,7 +3045,13 @@ msgstr "" "Экспорт учетных записей позволяет сохранить данные в формат XML для " "дальнейшего импорта в другие инсталляции sysPass." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:184 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:189 +#, fuzzy +msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." +msgstr "" +"Экспортированные элементы - это учетные записи, заказчики, категории и теги." + +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:191 #, fuzzy msgid "" "Las claves de las cuentas son exportadas de forma encriptada para mayor " @@ -3262,7 +3060,7 @@ msgstr "" "Пароли учетных записей экспортируются в зашифрованном виде для улучшения " "защиты." -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:186 +#: ../../../modules/web/themes/material-blue/views/config/backup.inc:193 msgid "" "Es posible establecer una clave de exportación para guardar todos los datos " "encriptados en el archivo XML." @@ -3270,305 +3068,82 @@ msgstr "" "Можно задать пароль для экспорта, которым будет зашифрована вся информация в " "файле XML." -#: ../../../modules/web/themes/material-blue/views/_layouts/main.inc:16 -#, fuzzy -msgid "Javascript es necesario para el correcto funcionamiento" -msgstr "Javascript необходим для корректной работы" - -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:54 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:23 -msgid "Nombre de la categoría" -msgstr "Имя категории" - -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:55 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/category.inc:35 -msgid "Descripción de la categoría" -msgstr "Описание категории" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:22 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:5 -msgid "Sitio" -msgstr "Сайт" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:28 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:42 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:84 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:98 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:134 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:136 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:16 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:18 -msgid "Idioma" -msgstr "Язык" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:33 -msgid "" -"Establece el idioma global de la aplicación. Es posible establecer un idioma " -"por usuario en las preferencias." -msgstr "" -"Устанавливает глобальную настройку языка программы. Каждый пользователь " -"может изменить язык в своих настройках." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:55 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:65 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:30 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:32 -msgid "Tema Visual" -msgstr "Тема" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:60 -#, fuzzy -msgid "" -"Establece el tema visual global de la aplicación. Es posible establecer un " -"tema visual por usuario en las preferencias." -msgstr "" -"Устанавливает тему визуального оформления приложения. Каждый пользователь " -"может изменить тему в своих настройках." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:79 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:87 -msgid "Timeout de sesión (s)" -msgstr "Таймаут сессии (секунды)" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:28 -msgid "Habilitar log de eventos" -msgstr "Включить журнал событий" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:29 -msgid "Guarda las acciones realizadas en la aplicación." -msgstr "Вести запись действий в программе." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:120 -msgid "Habilitar depuración" -msgstr "Включить отладку" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:121 -msgid "" -"Muestra información relativa a la configuración de la aplicación y " -"rendimiento." -msgstr "Показывает информацию о программе и производительности." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:135 -msgid "Modo mantenimiento" -msgstr "Режим обслуживания" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:136 -#, fuzzy -msgid "" -"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " -"necesario modificar el archivo de configuración." -msgstr "" -"В данном режиме войти в программу невозможно. Для его отключения необходимо " -"редактировать файл конфигурации." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:150 -msgid "Comprobar actualizaciones" -msgstr "Проверка обновлений" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:151 -msgid "" -"Comprobar actualizaciones de la aplicación (sólo para los usuarios " -"administradores)." -msgstr "Проверяет обновления программы (только для администраторов)." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:165 -msgid "Comprobar notificaciones" -msgstr "Проверка уведомлений" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:166 -#, fuzzy -msgid "" -"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " -"para los usuarios administradores)." -msgstr "" -"Проверяет на наличие уведомлений безопасности (только для администраторов)." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:109 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:80 -msgid "Nombre de cuenta como enlace" -msgstr "Имя учетной записи как ссылка" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:110 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:82 -msgid "" -"Habilita el nombre de la cuenta de la búsqueda, como enlace a los detalles " -"de la cuenta." -msgstr "Превращает имя учетной записи в ссылку на её детали на странице поиска" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:295 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:406 -msgid "Gestión de archivos" -msgstr "Управление файлами" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:296 -#, fuzzy -msgid "Habilita la subida/descarga de archivos para las cuentas." -msgstr "" -"Включает загрузку/скачивание файлов, которые могут прикрепляться к учетным " -"записям." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:125 -msgid "Búsquedas globales" -msgstr "Глобальные поиски" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:126 -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 "" -"Позволяет пользователям производить поиск по всем учетным записям, но при " -"этом содержимое учетных записей, к которым нет доступа, не будет показано." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:304 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:317 -msgid "Extensiones de archivos permitidas" -msgstr "Разрешенные расширения файлов" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:309 -msgid "Extensiones permitidas para la subida de archivos." -msgstr "Разрешенные расширения файлов для загрузки." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:267 -msgid "Se permite un máximo de 4 caracteres." -msgstr "Максимальная длина расширения 4 символа." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:312 -msgid "" -"Escribir extensión y pulsar intro para añadir. Es necesario guardar la " -"configuración." -msgstr "" -"Введите расширение и нажмите Enter для добавления. Не забудьте сохранить " -"настройки." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:330 -msgid "Establece el tamaño máximo para subir archivos." -msgstr "Максимальный размер загружаемого файла." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:334 -msgid "El máximo absuluto es de 16MB." -msgstr "Абсолютный максимум 16MB." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:33 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:46 -msgid "Resultados por página" -msgstr "Результатов на страницу" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:38 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:51 -msgid "Número de resultados por página a mostrar, al realizar una búsqueda." -msgstr "Число результатов поиска на страницу" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:161 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:148 -msgid "Resultados en Tarjetas" -msgstr "Результаты в виде карточек" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:163 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:150 -#, fuzzy -msgid "Muestra los resultados de búsqueda de cuentas en formato tarjeta." -msgstr "Включает показ учетных записей в результатах поиска в виде карточек." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:141 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:144 -msgid "Imagen para mostrar clave" -msgstr "Показать пароль в виде изображения" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:143 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:146 -msgid "Generar una imagen con el texto de la clave de la cuenta." -msgstr "Генерирует изображение с паролем учетной записи." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:145 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:148 -msgid "Util para entornos donde copiar la clave supone un riesgo de seguridad." -msgstr "Полезно для ситуаций, когда копирование паролей не безопасно." - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:54 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:26 -#, fuzzy -msgid "Nombre del cliente" -msgstr "Имя заказчика" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:55 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:39 -#, fuzzy -msgid "Descripción del cliente" -msgstr "Описание заказчика" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 -msgid "Texto Ayuda" -msgstr "Текст помощи" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:76 -msgid "Obligatorio" -msgstr "Обязательно" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:14 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:150 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:165 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:47 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:53 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:48 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:17 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:153 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:167 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:50 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:56 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:57 +#: ../../../modules/web/themes/material-blue/views/login/index.inc:102 msgid "Clave Maestra" msgstr "Мастер-пароль" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:21 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:24 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:195 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:27 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:198 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:201 #, fuzzy msgid "Último cambio" msgstr "Последнее изменение" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:32 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:40 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:35 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:43 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:142 msgid "Clave Maestra actual" msgstr "Текущий мастер-пароль" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:46 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:54 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:49 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:57 msgid "Nueva Clave Maestra" msgstr "Новый мастер-пароль" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:68 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:63 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:71 msgid "Nueva Clave Maestra (repetir)" msgstr "Новый мастер-пароль (подтверждение)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:106 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:80 +msgid "Guarde la nueva clave en un lugar seguro." +msgstr "Необходимо сохранить новый пароль в надежном месте" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:84 +msgid "Se volverán a encriptar las claves de todas las cuentas." +msgstr "Все пароли учетных записей будут зашифрованы вновь." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:88 +msgid "Los usuarios deberán de introducir la nueva clave maestra." +msgstr "Пользователям потребуется ввести новый мастер-пароль." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:92 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:130 +#, fuzzy, php-format +msgid "" +"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." +msgstr "Будет обновлено %s записей. Этот процесс может занять некоторое время." + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:109 msgid "No modificar cuentas" msgstr "Не изменять учетные записи" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:108 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:111 msgid "Establece una nueva clave maestra sin re-encriptar las cuentas" msgstr "Устанавливает мастер-пароль без повторного шифрования учетных записей." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:124 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:127 #, fuzzy msgid "Confirmar cambio" msgstr "Подтвердите изменение" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:77 -msgid "Guarde la nueva clave en un lugar seguro." -msgstr "Необходимо сохранить новый пароль в надежном месте" +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:129 +msgid "" +"Confirmar el cambio de clave maestra después de haber leído las advertencias " +"anteriores." +msgstr "" +"Confirm the master password change after you have been read all the above " +"warnings." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:81 -msgid "Se volverán a encriptar las claves de todas las cuentas." -msgstr "Все пароли учетных записей будут зашифрованы вновь." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:85 -msgid "Los usuarios deberán de introducir la nueva clave maestra." -msgstr "Пользователям потребуется ввести новый мастер-пароль." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:155 #, fuzzy msgid "" "La clave maestra es utilizada para encriptar las claves de las cuentas de " @@ -3577,7 +3152,7 @@ msgstr "" "Мастер-пароль используется для шифрования паролей учетных записей в целях " "повышения безопасности." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:154 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:157 #, fuzzy msgid "" "Es recomendable cambiarla cada cierto tiempo y utilizar una clave compleja " @@ -3586,27 +3161,51 @@ msgstr "" "Рекомендуется регулярная смена и одновременное использование цифр, букв и " "символов." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:186 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:318 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:159 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:132 +#, php-format +msgid "Para más información consulte: %s" +msgstr "Вы можете получить дополнительную информацию: %s" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:169 +msgid "Actualizar hash de clave maestra" +msgstr "Обновить хэш мастер-пароля" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:189 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:323 msgid "Clave Temporal" msgstr "Временный пароль" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:200 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:213 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:203 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:218 msgid "No generada" msgstr "Не сгенерирован" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:205 #: ../../../modules/web/themes/material-blue/views/config/encryption.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:211 msgid "Válido hasta" msgstr "Действителен до" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:229 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:224 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:227 +msgid "Intentos" +msgstr "Попыток" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:234 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:244 msgid "Validez (s)" msgstr "Срок действия (секунды)" -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:320 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:263 +msgid "Enviar correo" +msgstr "Отправить письмо" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:265 +msgid "" +"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." +msgstr "Отправить письмо всем пользователям или выбранным группам" + +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:325 #, fuzzy msgid "" "La clave temporal es utilizada como clave maestra para los usuarios que " @@ -3616,126 +3215,305 @@ msgstr "" "Временный пароль используется как мастер-пароль для пользователей, которым " "необходимо войти и которым не предоставляется мастер-пароль." -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:332 msgid "Generar" msgstr "Сгенерировать пароль" -#: ../../../modules/web/themes/material-blue/views/_partials/no_records_found.inc:4 -#: ../../../modules/web/themes/material-blue/views/account/search-index.inc:11 -msgid "No se encontraron registros" -msgstr "Записи не найдены" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:12 +msgid "Autentificación" +msgstr "Аутентификация" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 -msgid "Fecha / Hora" -msgstr "Дата / Время" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:30 +msgid "Usar Auth Basic" +msgstr "Use Auth Basic" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 -msgid "Evento" -msgstr "Событие" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:31 +msgid "Usar Auth Basic para autorizar los accesos a la aplicación." +msgstr "Use Auth Basic for authorizing the accesses to the application" -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 -msgid "IP" -msgstr "IP" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:45 +msgid "Usar Auth Basic SSO" +msgstr "Use Auth Basic SSO" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:69 -msgid "Primera página" -msgstr "Первая страница" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:46 +msgid "Usar auto-login con Auth Basic." +msgstr "Use auto-login through Auth Basic" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:67 -msgid "Página anterior" -msgstr "Прошлая страница" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:54 +msgid "Dominio" +msgstr "Domain" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:68 -msgid "Página siguiente" -msgstr "Следующая страница" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:70 -msgid "Última página" -msgstr "Последняя страница" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:159 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:160 -#: ../../../modules/web/themes/material-blue/views/account/files-list.inc:45 -#: ../../../config/actions.xml:205 ../../../config/actions.xml:451 -msgid "Ver Archivo" -msgstr "Показать файл" - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 -#, fuzzy -msgid "Indica si la conexión utiliza HTTPS." -msgstr "Указывает, используется ли соединение по протоколу HTTPS." - -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:34 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:59 msgid "" -"Las claves de formularios enviados se encriptan mediante PKI, el resto de " -"datos no." -msgstr "Пароли при передаче форм шифруются с PKI, остальные данные - нет." +"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " +"el de Auth Basic." +msgstr "" +"The domain will be added to the sysPass user name for checking against the " +"Auth Basic one." -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:56 -msgid "Ayuda :: FAQ :: Changelog" -msgstr "Help :: FAQ :: Changelog" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:69 +msgid "Nombre de dominio" +msgstr "Domain name" -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:60 -msgid "Un proyecto de cygnux.org" -msgstr "Проект cygnux.org" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:55 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:239 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:249 +msgid "Grupo por Defecto" +msgstr "Группа по умолчанию" -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:54 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:68 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:26 -msgid "Nombre del grupo" -msgstr "Имя группы" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:80 +msgid "" +"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Sets the default users group for newly SSO users" -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:55 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:69 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:39 -msgid "Descripción del grupo" -msgstr "Описание группы" +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:264 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:274 +msgid "Perfil por Defecto" +msgstr "Профиль по умолчанию" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:105 +msgid "" +"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." +msgstr "Sets the default profile for the newly created SSO users." + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:98 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:101 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:173 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:176 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:72 +msgid "Eventos" +msgstr "События" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:30 +msgid "Habilitar log de eventos" +msgstr "Включить журнал событий" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:31 +msgid "Guarda las acciones realizadas en la aplicación." +msgstr "Вести запись действий в программе." + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:45 +msgid "Habilitar Syslog" +msgstr "Включить Syslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:60 +msgid "Habilitar Syslog Remoto" +msgstr "Включить удаленный Syslog" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:70 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:75 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:78 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:94 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:119 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:59 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:66 +msgid "Servidor" +msgstr "Сервер" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:78 +msgid "Nombre o dirección IP" +msgstr "Хост или IP-адрес" + +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:84 +#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:92 +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:72 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:79 +msgid "Puerto" +msgstr "Порт" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:12 +msgid "Proxy" +msgstr "Прокси" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:30 +msgid "Usar Proxy" +msgstr "Использовать прокси" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:31 +msgid "Usar proxy para comprobación de actualizaciones y notificaciones." +msgstr "Use a proxy server for checking out for updates and notifications." + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:47 +msgid "Servidor proxy" +msgstr "Прокси-сервер" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:61 +msgid "Puerto del servidor proxy" +msgstr "Порт прокси-сервера" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:75 +msgid "Usuario del servidor proxy" +msgstr "Пользователь для прокси-сервера" + +#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:89 +msgid "Clave del servidor proxy" +msgstr "Пароль для прокси-сервера" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:16 +msgid "" +"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" +msgstr "This extension is needed to check for sysPass updates and notices" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:24 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:15 +msgid "Sitio" +msgstr "Сайт" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:95 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:109 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:137 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:139 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:28 +msgid "Idioma" +msgstr "Язык" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:35 +msgid "" +"Establece el idioma global de la aplicación. Es posible establecer un idioma " +"por usuario en las preferencias." +msgstr "" +"Устанавливает глобальную настройку языка программы. Каждый пользователь " +"может изменить язык в своих настройках." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:39 +msgid "" +"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." +"com/join/project/fmlsBuugyv" +msgstr "" +"Для улучшения/добавления переводов Вы можете перейти по ссылке https://" +"poeditor.com/join/project/fmlsBuugyv" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:57 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:67 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:42 +msgid "Tema Visual" +msgstr "Тема" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:62 +#, fuzzy +msgid "" +"Establece el tema visual global de la aplicación. Es posible establecer un " +"tema visual por usuario en las preferencias." +msgstr "" +"Устанавливает тему визуального оформления приложения. Каждый пользователь " +"может изменить тему в своих настройках." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:81 +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:89 +msgid "Timeout de sesión (s)" +msgstr "Таймаут сессии (секунды)" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:107 +msgid "Forzar HTTPS" +msgstr "Форсировать HTTPS" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:108 +msgid "Fuerza para que todas las conexiones sean a través de HTTPS." +msgstr "Форсировать все соединения через HTTPS." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:122 +msgid "Habilitar depuración" +msgstr "Включить отладку" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:123 +msgid "" +"Muestra información relativa a la configuración de la aplicación y " +"rendimiento." +msgstr "Показывает информацию о программе и производительности." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:137 +msgid "Modo mantenimiento" +msgstr "Режим обслуживания" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:138 +#, fuzzy +msgid "" +"En este modo no se puede acceder a la aplicación. Para deshabilitarlo es " +"necesario modificar el archivo de configuración." +msgstr "" +"В данном режиме войти в программу невозможно. Для его отключения необходимо " +"редактировать файл конфигурации." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:152 +msgid "Comprobar actualizaciones" +msgstr "Проверка обновлений" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:153 +msgid "" +"Comprobar actualizaciones de la aplicación (sólo para los usuarios " +"administradores)." +msgstr "Проверяет обновления программы (только для администраторов)." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:167 +msgid "Comprobar notificaciones" +msgstr "Проверка уведомлений" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:168 +#, fuzzy +msgid "" +"Comprobar si existen notificaciones de seguridad o avisos de sysPass (sólo " +"para los usuarios administradores)." +msgstr "" +"Проверяет на наличие уведомлений безопасности (только для администраторов)." + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 +msgid "Encriptar Sesión" +msgstr "Зашифровать сеанс" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:184 +msgid "Encriptar los datos de la sesión de PHP." +msgstr "Шифрование данных сеанса PHP" + +#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:185 +msgid "" +"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " +"datos almacenados no serán legibles." +msgstr "" +"Эта функция повышает безопасность сеансов PHP, поскольку сохраненные данные " +"не будут читаемыми." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:12 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 msgid "Importar CSV/XML" msgstr "Импорт CSV/XML" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:16 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:26 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:18 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:28 msgid "Usuario por Defecto" msgstr "Пользователь по умолчанию" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:21 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:23 #, fuzzy msgid "Define el usuario por defecto para las cuentas importadas." msgstr "Задает пользователя по умолчанию для импортируемых учетных записей." -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:73 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:83 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:43 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:236 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:246 -msgid "Grupo por Defecto" -msgstr "Группа по умолчанию" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:50 #, fuzzy msgid "Define el grupo por defecto para las cuentas importadas." msgstr "Задает группу по умолчанию для импортируемых учетных записей." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:129 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:144 -msgid "Clave de Importación" -msgstr "Пароль для импорта (если требуется)" +#: ../../../modules/web/themes/material-blue/views/config/import.inc:72 +msgid "Archivo" +msgstr "Файл" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:178 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:193 -msgid "Delimitador CSV" -msgstr "Разделитель CSV" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:73 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:75 msgid "Soltar archivo aquí o click para seleccionar" msgstr "Перетащите файл сюда или нажмите для выбора" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 #, fuzzy msgid "" "Permite realizar la importación de Cuentas, Categorías y Clientes desde " @@ -3743,12 +3521,12 @@ msgid "" msgstr "" "Выполняет импорт учетных записей, категорий и заказчиков из файлов XML и CSV." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:105 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 msgid "" "Los formatos de archivos XML soportados son: sysPass, KeePass y KeePassX" msgstr "Поддерживаемые форматы файлов XML: sysPass, KeePass и KeePassX" -#: ../../../modules/web/themes/material-blue/views/config/import.inc:107 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 #, fuzzy msgid "" "Arrastar el archivo a importar a la zona indicada o hacer click sobre la " @@ -3756,7 +3534,7 @@ msgid "" msgstr "" "Перетащите файл для импорта в выделенную зону или нажмите на стрелочку." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:109 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 #, fuzzy msgid "" "Para archivos de KeePass o KeePassX, el nombre del cliente será igual a " @@ -3765,133 +3543,212 @@ msgstr "" "При импорте из KeePass или KeePassX, имя заказчика будет KeePass или " "KeePassX, а в качестве категории будет указано имя группы." -#: ../../../modules/web/themes/material-blue/views/config/import.inc:111 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 msgid "La importación de archivos CSV se realiza con el siguiente formato:" msgstr "Файл CSV должен быть в формате:" #: ../../../modules/web/themes/material-blue/views/config/import.inc:115 #, fuzzy msgid "" +"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" +"\"notas\"" +msgstr "" +"\"account_name\";\"customer\";\"category\";\"url\";\"user\";\"password\";" +"\"notes\" " + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:117 +#, fuzzy +msgid "" "En todos los casos, si el cliente o la categoría no están creados, se crean " "automáticamente." msgstr "Если заказчика или категории нет, они будут автоматически созданы." -#: ../../../modules/web/themes/material-blue/views/config/info.inc:5 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:125 +msgid "XML" +msgstr "XML" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:131 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:146 +msgid "Clave de Importación" +msgstr "Пароль для импорта (если требуется)" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:136 +msgid "Sólo es necesaria para archivos XML de sysPass encriptados." +msgstr "Это необходимо только для зашифрованных XML файлов syspass'а " + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:157 +msgid "" +"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " +"la actual." +msgstr "" +"Это необходимо только для XML файлов syspass'а, зашифрованных мастер-паролем " +"отличным от текущего." + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:174 +msgid "CSV" +msgstr "CSV" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:180 +#: ../../../modules/web/themes/material-blue/views/config/import.inc:195 +msgid "Delimitador CSV" +msgstr "Разделитель CSV" + +#: ../../../modules/web/themes/material-blue/views/config/import.inc:185 +msgid "Sólo es necesario para archivos CSV." +msgstr "Это необходимо только для CSV файлов." + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 msgid "Información de la Aplicación" msgstr "О программе" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:11 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:14 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:20 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:23 msgid "Versión sysPass" msgstr "Версия sysPass" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:21 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:24 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:30 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:33 msgid "Base de Datos" msgstr "База данных" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:35 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:38 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:44 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:47 msgid "PHP" msgstr "PHP" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:42 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:49 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:34 +msgid "Versión" +msgstr "Версия" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:51 msgid "Extensiones" msgstr "Расширения" -#: ../../../modules/web/themes/material-blue/views/config/info.inc:50 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 +msgid "Extensiones no disponibles" +msgstr "Unavailable extensions" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:59 msgid "Memoria Usada" msgstr "Используемая память" -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:142 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:189 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:68 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:37 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:64 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:67 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:91 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:116 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:57 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:64 -msgid "Servidor" -msgstr "Сервер" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Tasa de descarga" +msgstr "Download rate" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:34 -msgid "Login del usuario administrador de sysPass" -msgstr "Учетная запись администратора sysPass" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:66 +msgid "OP Cache" +msgstr "OP кеш" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:66 -msgid "Configurar BBDD" -msgstr "Конфигурация БД" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:85 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:88 +msgid "Copia de Configuración" +msgstr "Резервная копия конфигурации" -#: ../../../modules/web/themes/material-blue/views/install/index.inc:109 -msgid "Nombre de la base de datos para sysPass" -msgstr "Имя базы данных sysPass" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:100 +msgid "Indica si el idioma se encuentra disponible" +msgstr "Сообщает доступен язык или нет." -#: ../../../modules/web/themes/material-blue/views/install/index.inc:146 -msgid "Modo Hosting" -msgstr "Режим хостинга" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:104 +msgid "" +"Si no está instalado, es necesario instalar las locales en el sistema " +"operativo. Más información en Wiki." +msgstr "" +"Если не установлено, то необходимо установить правильные локали в ОС. " +"Подробности в WiKi." -#: ../../../modules/web/themes/material-blue/views/install/index.inc:153 -msgid "No crea ni verifica los permisos del usuario sobre la BBDD" -msgstr "Права доступа к БД не создаются и не проеряются" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:116 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:126 +msgid "Sesión Encriptada" +msgstr "Зашифрованная сессия" -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 -#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:167 -#: ../../../modules/web/themes/material-blue/views/install/index.inc:169 -msgid "Instalar" -msgstr "Установка" +#: ../../../modules/web/themes/material-blue/views/config/info.inc:121 +msgid "Indica si los datos de la sesión están encriptados en el servidor" +msgstr "Сообщает, зашифрованы ли данные сеанса на сервере или нет" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:43 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "Sí" +msgstr "Да" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:128 +msgid "No" +msgstr "Нет" + +#: ../../../modules/web/themes/material-blue/views/config/info.inc:133 +#: ../../../modules/web/themes/material-blue/views/config/info.inc:136 +msgid "Plugins Cargados" +msgstr "Загруженные плагины" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:16 +msgid "Esta extensión es necesaria conectar con el servidor de LDAP" +msgstr "This extension is needed to connect to the LDAP server" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:46 msgid "Habilitar LDAP" msgstr "Включить LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:45 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:48 #, fuzzy msgid "Habilita de autentificación mediante servidor LDAP." msgstr "Включает аутентификацию по LDAP" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:47 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:50 msgid "Este método utilizará MySQL en caso de fallo." msgstr "Этот метод будет переключаться на MySQL при сбоях." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:96 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:65 +msgid "Active Directory" +msgstr "Active Directory" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:67 +msgid "Habilita el modo de conexión con LDAP de Active Directory." +msgstr "Включает режим подключения Active Directory к серверу LDAP." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:84 +msgid "Habilita la conexión mediante TLS." +msgstr "Enables the connection over TLS" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:99 #, fuzzy msgid "Nombre o dirección IP del servidor de LDAP." msgstr "Адрес сервера LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:100 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:131 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:182 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:216 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:128 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:103 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:134 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:185 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:219 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:131 msgid "Ejemplos:" msgstr "Примеры:" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:125 msgid "Usuario de conexión" msgstr "Пользователь для подключения" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:127 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:130 msgid "Usuario para conectar con el servicio de LDAP." msgstr "Пользователь для подключения к серверу LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:152 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:155 msgid "Clave de conexión" msgstr "Пароль для подключения" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:173 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:197 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:160 +msgid "Clave del usuario de conexión a LDAP." +msgstr "Пароль пользователя для подключения к LDAP." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:176 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:200 msgid "Base de búsqueda" msgstr "Начинать поиск с" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:181 #, fuzzy msgid "Base en la que realizar la búsqueda de usuarios de LDAP." msgstr "Откуда начинать поиск в LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:208 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:211 #, fuzzy msgid "" "Grupo de LDAP al que debe de pertenecer el usuario para permitir el acceso." @@ -3899,624 +3756,81 @@ msgstr "" "Пользователи из LDAP должны состоять в указанной группе для получения " "доступа." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:212 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:215 msgid "Este grupo debe de estar ubicado en la base de búsquedas de LDAP." msgstr "" "Эта группа должна быть расположена в пространстве, в котором осуществляется " "поиск в LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:241 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:244 #, fuzzy msgid "" "Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Задает группу по умолчанию для новых пользователей из LDAP" -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:98 -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:108 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:261 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:271 -msgid "Perfil por Defecto" -msgstr "Профиль по умолчанию" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:269 #, fuzzy msgid "" "Define el perfil de usuarios por defecto para los nuevos usuarios de LDAP." msgstr "Задает профиль по умолчанию для новых пользователей из LDAP." -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:62 -msgid "Active Directory" -msgstr "Active Directory" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:321 +msgid "Importación" +msgstr "Import" -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:64 -msgid "Habilita el modo de conexión con LDAP de Active Directory." -msgstr "Включает режим подключения Active Directory к серверу LDAP." +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:327 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:337 +msgid "Atributo Login" +msgstr "Login Attribute" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:57 -msgid "Comprobar" -msgstr "Проверить" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:332 +msgid "" +"Define el atributo a utilizar para el login del usuario en la importación." +msgstr "Определяет атрибут входа пользователя при импорте." -#: ../../../modules/web/themes/material-blue/views/login/index.inc:72 -#, fuzzy -msgid "¿Olvidó su clave?" -msgstr "Забыли пароль?" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:350 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:360 +msgid "Atributo Nombre" +msgstr "Login Attribute" -#: ../../../modules/web/Controllers/UpgradeController.php:92 -#: ../../../modules/web/themes/material-blue/views/login/index.inc:78 -msgid "Aplicación actualizada correctamente" -msgstr "Программа успешно обновлена" +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:355 +msgid "" +"Define el atributo a utilizar para el nombre del usuario en la importación." +msgstr "Определяет атрибут для имени пользователя при импорте." -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:31 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:32 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:385 +msgid "Importar Grupos" +msgstr "Import Groups" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:394 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:404 +msgid "Atributo Nombre Grupo" +msgstr "Group Name Attribute" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:399 +msgid "" +"Define el atributo a utilizar para el nombre del grupo en la importación." +msgstr "Defines the attribute for the user group name when importing." + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:415 +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:429 +msgid "Filtro" +msgstr "Filter" + +#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:420 +msgid "Filtro para importar usuarios o grupos de LDAP." +msgstr "Filter for importing LDAP users or groups." + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:33 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:34 msgid "Habilitar notificaciones de correo" msgstr "Включить уведомления по email" -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:82 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:90 -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:51 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:70 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:77 -msgid "Puerto" -msgstr "Порт" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:95 -msgid "Habilitar Autentificación" -msgstr "Включить аутентификацию" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:136 -msgid "Deshabilitada" -msgstr "Отключена" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:146 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:154 -#, fuzzy -msgid "Dirección de correo de envío" -msgstr "Email получателя" - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:46 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 msgid "Habilitar peticiones por correo" msgstr "Включить запросы по email" -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:176 -#: ../../../modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:177 -msgid "Más Acciones" -msgstr "Другие действия" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:6 -msgid "Solicitud de Cambio de Clave" -msgstr "Запросить смену пароля" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 -msgid "Email del Usuario" -msgstr "Email" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:40 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:43 -msgid "Volver a iniciar sesión" -msgstr "Назад ко входу" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:45 -#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:47 -msgid "Solicitar" -msgstr "Запрос" - -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:48 -#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:50 -msgid "Cambiar" -msgstr "Изменение" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:37 -#, fuzzy -msgid "Cambiar Clave" -msgstr "Изменение пароля" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:97 -msgid "Ordenar resultados por visitas" -msgstr "Сортировать результаты поиска по числу просмотров" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:99 -#, fuzzy -msgid "" -"Ordena los resultados de búsqueda por el número de visitas de las cuentas." -msgstr "" -"Включает показ результатов поиска учетных записей с сортировкой по числу " -"просмотров." - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:114 -msgid "Barra de navegación superior" -msgstr "Верхняя навигация" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:116 -msgid "Mostrar una barra de navegación superior en las búsquedas." -msgstr "Закрепить панель навигации в верху страницы." - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:131 -msgid "Mostrar Acciones Ocultas" -msgstr "Показывать скрытые действия" - -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:133 -msgid "" -"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." -msgstr "" -"Всегда показывать скрытые действия на странице результатов поиска учетных " -"записей." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 -msgid "Nombre del perfil" -msgstr "Имя профиля" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:49 -msgid "Ver detalles de cuenta" -msgstr "Просмотр деталей учетной записи" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:31 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:99 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:103 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:125 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:174 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:26 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 -msgid "Ver" -msgstr "Показать" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 -msgid "Ver clave de cuenta" -msgstr "Показать пароль учетной записи" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 -msgid "Ver historial de cuenta" -msgstr "Показать историю учетной записи" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 -msgid "Editar cuenta" -msgstr "Изменить учетную запись" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:35 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:62 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:130 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:134 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:146 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:195 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:97 -msgid "Editar" -msgstr "Изменить" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:114 -msgid "Editar clave de cuenta" -msgstr "Изменить пароль учетной записи" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:113 -msgid "Editar Clave" -msgstr "Изменить пароль" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:32 -msgid "Añadir" -msgstr "Добавить" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:146 -msgid "Ver archivos de cuenta" -msgstr "Просмотр файлов учетной записи" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:473 -msgid "Backup" -msgstr "Резервное копирование" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:490 -msgid "Realizar importación de cuentas" -msgstr "Выполнить импорт учетной записи" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:21 -msgid "Gestión" -msgstr "Управление" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:246 -msgid "Gestión de usuarios" -msgstr "Управление пользователями" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:262 -msgid "Gestión de grupos" -msgstr "Управление группами" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:278 -msgid "Gestión de perfiles" -msgstr "Управление профилями" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 -msgid "Perfiles" -msgstr "Профили" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 -msgid "Gestión de categorías" -msgstr "Управление категориями" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:326 -#, fuzzy -msgid "Gestión de clientes" -msgstr "Управление заказчиками" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:342 -msgid "Gestión de campos personalizados" -msgstr "Управление свободными полями" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:358 -msgid "Gestión de autorizaciones API" -msgstr "Управление API авторизации" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:94 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:357 -msgid "Autorizaciones API" -msgstr "API авторизации" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:23 -msgid "Otros" -msgstr "Другие" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:510 -msgid "Ver log de eventos" -msgstr "Просмотр журнала событий" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:509 -msgid "Log de Eventos" -msgstr "Журнал событий" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:82 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:543 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:545 -msgid "Usado por" -msgstr "Используется" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:9 -msgid "Solicitar Modificación de Cuenta" -msgstr "Запрос изменения учетной записи" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:40 -msgid "Petición" -msgstr "Запрос" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:46 -#, fuzzy -msgid "Descripción de la petición" -msgstr "Описание запроса" - -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:60 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:357 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:166 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:305 -#: ../../../modules/web/themes/material-blue/views/config/general.inc:22 -#: ../../../modules/web/themes/material-blue/views/config/import.inc:89 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:151 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:292 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:437 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:206 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:291 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:167 -msgid "Atrás" -msgstr "Назад" - -#: ../../../modules/web/themes/material-blue/views/account/account-request.inc:67 -msgid "Enviar" -msgstr "Отправить" - -#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:11 -msgid "Filtro ON" -msgstr "Включен фильтр" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:24 -msgid "Buscar en Wiki" -msgstr "Поиск в Wiki" - -#: ../../../../inc/themes/material-blue/views/accountsearch/rows.inc:71 -msgid "Abrir enlace a" -msgstr "Открыть ссылку" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:169 -msgid "Archivos adjuntos" -msgstr "Вложения" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:196 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:207 -msgid "Enlace a Wiki" -msgstr "Ссылка на Wiki" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:53 -msgid "Limpiar" -msgstr "Очистить" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:128 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:79 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:81 -#: ../../../modules/api/Controllers/Help/TagHelp.php:77 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:81 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:16 -msgid "Texto a buscar" -msgstr "Текст для поиска" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:23 -msgid "Parámetros especiales:" -msgstr "Специальные параметры" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 -#, fuzzy -msgid "Buscar cuentas a las que 'login' tenga acceso" -msgstr "Найти учетные записи, к которым есть доступ у указанного пользователя" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 -#, fuzzy -msgid "Buscar cuentas a las que 'group_name' tenga acceso" -msgstr "Найти учетные записи, к которым есть доступ у указанной группы" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 -msgid "Buscar cuentas con archivos con el nombre 'file_name'" -msgstr "Найти учетные записи с прикрепленным файлом" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:47 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:51 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:225 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:226 -#, fuzzy -msgid "Búsqueda global" -msgstr "Глобальный поиск" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:79 -msgid "Cuentas por página" -msgstr "Учетных записей на страницу" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:76 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:149 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:152 -msgid "Salir" -msgstr "Выйти" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:58 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:12 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:85 -msgid "Opciones" -msgstr "Опции" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:65 -msgid "Regenerar Autorización" -msgstr "Обновить авторизацию" - -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 -#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 -msgid "Token" -msgstr "Токен" - -#: ../../../config/strings.js.inc:93 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:21 -msgid "Actualizado" -msgstr "Обновлено" - -#: ../../../config/strings.js.inc:94 -#: ../../../modules/web/themes/material-blue/views/main/update.inc:27 -msgid "Error al comprobar actualizaciones" -msgstr "Ошибка проверки обновлений" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:12 -msgid "Actualización de BBDD" -msgstr "Обновление БД" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:21 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 -msgid "Código de Seguridad" -msgstr "Код безопасности" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 -msgid "Iniciar Actualización" -msgstr "Начать обновление" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:38 -msgid "Nombre de usuario completo" -msgstr "Полное имя пользователя" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:52 -msgid "Login de inicio de sesión" -msgstr "Логин" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:85 -msgid "Dirección de correo" -msgstr "Адрес email" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:195 -msgid "Administrador de la aplicación" -msgstr "Администратор программы" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:213 -msgid "Administrador de cuentas" -msgstr "Администратор учетных записей" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:233 -msgid "Forzar cambio de clave" -msgstr "Запросить изменение пароля при следующем входе в систему" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:266 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:268 -msgid "Entradas" -msgstr "Записи" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:277 -msgid "Último Acceso" -msgstr "Последний доступ" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:293 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:295 -msgid "Fecha Clave Maestra" -msgstr "Дата мастер-пароля" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:44 -msgid "Habilitar enlaces Wiki" -msgstr "Включить ссылки Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:45 -#, fuzzy -msgid "" -"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " -"la búsqueda." -msgstr "" -"Включает возможность добавления внешней ссылки на страницу результатов " -"поиска учетной записи в Wiki." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:53 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:80 -msgid "URL de búsqueda Wiki" -msgstr "URL для поиска в Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:58 -#, fuzzy -msgid "URL que utiliza la wiki para realizar una búsqueda de una página." -msgstr "URL системы поиска в WiKi." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:62 -#, fuzzy -msgid "Como parámetro se utiliza el nombre del cliente." -msgstr "Использует имя заказчика как параметр." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:66 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:184 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:211 -msgid "Ejemplo:" -msgstr "Пример:" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:86 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:113 -msgid "URL de página en Wiki" -msgstr "URL на страницы Wiki" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:91 -#, fuzzy -msgid "URL que utiliza la wiki para acceder a los detalles de una página." -msgstr "URL страницы с данными из WiKi." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:95 -msgid "" -"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " -"de la Wiki." -msgstr "Имя учетной записи используется как параметр поиска в WiKi." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:119 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:133 -msgid "Prefijo para nombre de cuenta" -msgstr "Префикс учетной записи" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:124 -msgid "" -"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." -msgstr "Префикс учетных записей, для которых создавать ссылку на WiKi." - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:9 -msgid "Histórico" -msgstr "История" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:54 -msgid "Realizar" -msgstr "Выполнить" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:105 -msgid "Forzar HTTPS" -msgstr "Форсировать HTTPS" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:106 -msgid "Fuerza para que todas las conexiones sean a través de HTTPS." -msgstr "Форсировать все соединения через HTTPS." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:49 -#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:62 -msgid "Número de resultados por página" -msgstr "Число результатов поиска на страницу" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:10 -msgid "Proxy" -msgstr "Прокси" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:28 -msgid "Usar Proxy" -msgstr "Использовать прокси" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:45 -msgid "Servidor proxy" -msgstr "Прокси-сервер" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:59 -msgid "Puerto del servidor proxy" -msgstr "Порт прокси-сервера" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:73 -msgid "Usuario del servidor proxy" -msgstr "Пользователь для прокси-сервера" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:87 -msgid "Clave del servidor proxy" -msgstr "Пароль для прокси-сервера" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:26 -msgid "Nombre del campo" -msgstr "Имя поля" - -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:65 -msgid "Ayuda del campo" -msgstr "Подсказка" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:219 -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:222 -msgid "Intentos" -msgstr "Попыток" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:69 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:131 -msgid "Preferencias de usuario" -msgstr "Настройки пользователя" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:26 -msgid "Usuario administrador de sysPass" -msgstr "Учетная запись администратора sysPass" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:76 -msgid "Usuario acceso BBDD" -msgstr "Пользователь DB" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:84 -#, fuzzy -msgid "Usuario con permisos de administrador de MySQL" -msgstr "Используйте учетную запись с правами администратора базы данных" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:92 -msgid "Clave acceso BBDD" -msgstr "Пароль DB" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:101 -msgid "Nombre BBDD para sysPass" -msgstr "Имя базы данных sysPass" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:118 -msgid "Servidor BBDD para sysPass" -msgstr "Сервер DB" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:126 -msgid "Nombre del servidor para instalar la base de datos de sysPass" -msgstr "Имя сервера базы данных sysPass" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:157 -msgid "Clave del usuario de conexión a LDAP." -msgstr "Пароль пользователя для подключения к LDAP." - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:48 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:50 #, fuzzy msgid "" "Habilita que los usuarios puedan solicitar modificaciones o acceso a las " @@ -4525,573 +3839,872 @@ msgstr "" "Включить возможность создания запроса на изменение учетных записей, к " "которым у пользователя нет прав доступа." -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:32 -#, fuzzy -msgid "Crear nueva cuenta" -msgstr "Новая учетная запись" +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:97 +msgid "Habilitar Autentificación" +msgstr "Включить аутентификацию" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:31 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:132 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:135 +msgid "Seguridad" +msgstr "Безопасность" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:138 +msgid "Deshabilitada" +msgstr "Отключена" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:148 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:156 +#, fuzzy +msgid "Dirección de correo de envío" +msgstr "Email получателя" + +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:162 +#: ../../../modules/web/themes/material-blue/views/config/mail.inc:165 +msgid "Destinatarios" +msgstr "Recipients" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:16 +msgid "Esta extensión es necesaria conectar con DokuWiki" +msgstr "This extension is needed to connect with DokuWiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:47 +msgid "Habilitar enlaces Wiki" +msgstr "Включить ссылки Wiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:48 +#, fuzzy +msgid "" +"Habilita la opción de añadir un enlace a Wiki externa para los resultados de " +"la búsqueda." +msgstr "" +"Включает возможность добавления внешней ссылки на страницу результатов " +"поиска учетной записи в Wiki." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:56 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:83 +msgid "URL de búsqueda Wiki" +msgstr "URL для поиска в Wiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:61 +#, fuzzy +msgid "URL que utiliza la wiki para realizar una búsqueda de una página." +msgstr "URL системы поиска в WiKi." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:65 +#, fuzzy +msgid "Como parámetro se utiliza el nombre del cliente." +msgstr "Использует имя заказчика как параметр." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:69 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:102 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:187 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:214 +msgid "Ejemplo:" +msgstr "Пример:" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:89 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:116 +msgid "URL de página en Wiki" +msgstr "URL на страницы Wiki" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:94 +#, fuzzy +msgid "URL que utiliza la wiki para acceder a los detalles de una página." +msgstr "URL страницы с данными из WiKi." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:98 +msgid "" +"El nombre de la cuenta se utiliza como parámetro de la variable de búsqueda " +"de la Wiki." +msgstr "Имя учетной записи используется как параметр поиска в WiKi." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:122 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:136 +msgid "Prefijo para nombre de cuenta" +msgstr "Префикс учетной записи" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:127 +msgid "" +"Prefijo para determinar qué cuentas tienen un enlace a una página de la Wiki." +msgstr "Префикс учетных записей, для которых создавать ссылку на WiKi." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:146 +msgid "DokuWiki API" +msgstr "DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:164 +msgid "Habilitar API de DokuWiki" +msgstr "Включить DokuWiki API" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:166 +msgid "" +"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." +msgstr "Включает DokuWiki XML-RPC API для ссылок на WiKi." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:168 +msgid "" +"Para que esta característica funcione, es necesario habilitar los enlaces " +"Wiki para el filtrado de cuentas." +msgstr "" +"Для работы данной функции необходимо включить ссылки на WiKi для фильтрации " +"учетных записей" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:178 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:199 +msgid "URL API" +msgstr "API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:183 +msgid "URL de la API de DokuWiki." +msgstr "DokuWiki API URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:205 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:227 +msgid "URL Base" +msgstr "Base URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:210 +msgid "URL base de DokuWiki." +msgstr "DokuWiki base URL" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:238 +#, fuzzy +msgid "Usuario para conectar a la API de DokuWiki." +msgstr "Пользователь для подключения к DokuWiki API." + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:266 +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:282 +msgid "Namespace" +msgstr "Пространство имен" + +#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:271 +msgid "Namespace utilizado para buscar las páginas." +msgstr "Пространство имен для поиска страниц." + +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:17 +#: ../../../modules/web/themes/material-blue/views/error/error-database.inc:19 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:170 +#: ../../../modules/web/themes/material-blue/views/install/index.inc:172 +msgid "Instalar" +msgstr "Установка" + +#: ../../../modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 +msgid "Filtro ON" +msgstr "Включен фильтр" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:11 +#, php-format +msgid "Instalación %s" +msgstr "Установка %s" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:21 +msgid "Admin de sysPass" +msgstr "sysPass Admin" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:29 +msgid "Usuario administrador de sysPass" +msgstr "Учетная запись администратора sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:37 +msgid "Login del usuario administrador de sysPass" +msgstr "Учетная запись администратора sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:69 +msgid "Configurar BBDD" +msgstr "Конфигурация БД" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:79 +msgid "Usuario acceso BBDD" +msgstr "Пользователь DB" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:87 +#, fuzzy +msgid "Usuario con permisos de administrador de MySQL" +msgstr "Используйте учетную запись с правами администратора базы данных" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:95 +msgid "Clave acceso BBDD" +msgstr "Пароль DB" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:104 +msgid "Nombre BBDD para sysPass" +msgstr "Имя базы данных sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:112 +msgid "Nombre de la base de datos para sysPass" +msgstr "Имя базы данных sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:121 +msgid "Servidor BBDD para sysPass" +msgstr "Сервер DB" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:129 +msgid "Nombre del servidor para instalar la base de datos de sysPass" +msgstr "Имя сервера базы данных sysPass" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:149 +msgid "Modo Hosting" +msgstr "Режим хостинга" + +#: ../../../modules/web/themes/material-blue/views/install/index.inc:156 +msgid "No crea ni verifica los permisos del usuario sobre la BBDD" +msgstr "Права доступа к БД не создаются и не проеряются" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 +msgid "Otros" +msgstr "Другие" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 +msgid "Creador" +msgstr "Создатель" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 +msgid "Eliminar" +msgstr "Удалить" + +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 +msgid "Eliminar Historial" +msgstr "Delete History" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 +msgid "Opciones" +msgstr "Опции" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 +msgid "Regenerar Autorización" +msgstr "Обновить авторизацию" + +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: ../../../modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 +msgid "Token" +msgstr "Токен" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:54 +msgid "Indica si el cliente es visible para todos los usuarios." +msgstr "Sets whether the client is visible by all users" + +#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:57 +msgid "" +"Por defecto los clientes asignados a cuentas sólo son visibles para los " +"usuarios con acceso a las cuentas." +msgstr "" +"By default, the clients assigned to accounts only will be visible to users " +"who are granted to access to the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 +msgid "Nombre del campo" +msgstr "Имя поля" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 +msgid "Texto Ayuda" +msgstr "Текст помощи" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 +msgid "Ayuda del campo" +msgstr "Подсказка" + +#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 +msgid "Obligatorio" +msgstr "Обязательно" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 +msgid "Puntuación" +msgstr "Score" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 +msgid "Expresión Regular" +msgstr "Regular Expression" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 +msgid "Incluir Minúsculas" +msgstr "Include Lowercase" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 +msgid "Las cuentas sólo serán visibles por el usuario." +msgstr "Accounts will be only visible by the user." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 +msgid "Los administradores no podrán acceder a las cuentas." +msgstr "Administrators won't be able to display the accounts." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 +msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." +msgstr "Accounts will be only visible by the user and his/her main group." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 +msgid "Dirección IP" +msgstr "IP Address" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 +msgid "Timeout" +msgstr "Timeout" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 +msgid "" +"Prioridad de asignación en caso de coincidir con otros valores asignados por " +"usuario, grupo o perfil." +msgstr "" +"Assignment priority if values match with others assigned by user, group or " +"profile." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 +msgid "Prioridad de asignación" +msgstr "Assignment Priority" + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 +msgid "" +"Indica si los valores serán forzados al crear o modificar los elementos." +msgstr "Enforces the values to be set either on creating or updating an item." + +#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 +msgid "Los valores serán añadidos a los existentes." +msgstr "Values will be merged with the existing ones." + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:83 +msgid "Hash" +msgstr "Хэш" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:91 +msgid "URL" +msgstr "URL" + +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:101 +msgid "Uso" +msgstr "Использовать" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:44 +msgid "Nombre de usuario completo" +msgstr "Полное имя пользователя" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:58 +msgid "Login de inicio de sesión" +msgstr "Логин" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:69 +msgid "Login SSO" +msgstr "SSO Login " + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:77 +msgid "Login de inicio de sesión con SSO" +msgstr "Session login with SSO" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:84 +msgid "Email" +msgstr "Email" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:92 +msgid "Dirección de correo" +msgstr "Адрес email" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:200 +msgid "Admin Aplicación" +msgstr "Администратор программы" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:202 +msgid "Administrador de la aplicación" +msgstr "Администратор программы" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:218 +#, fuzzy +msgid "Admin Cuentas" +msgstr "Администратор учетных записей" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:220 +msgid "Administrador de cuentas" +msgstr "Администратор учетных записей" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:240 +msgid "Forzar cambio de clave" +msgstr "Запросить изменение пароля при следующем входе в систему" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:257 +msgid "Deshabilitado" +msgstr "Отключен" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:275 +msgid "Entradas" +msgstr "Записи" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:284 +msgid "Último Acceso" +msgstr "Последний доступ" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 +msgid "Fecha Clave Maestra" +msgstr "Дата мастер-пароля" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:311 +msgid "Usado en" +msgstr "Used in" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 +msgid "Usado por" +msgstr "Используется" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:108 +msgid "(*) Incluido en grupo" +msgstr "(*) Listed in group" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 +msgid "Gestión" +msgstr "Управление" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 #, fuzzy msgid "Crear" msgstr "Создать" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:130 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 +#, fuzzy +msgid "Crear nueva cuenta" +msgstr "Новая учетная запись" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 +msgid "Ver detalles de cuenta" +msgstr "Просмотр деталей учетной записи" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 +msgid "Ver clave de cuenta" +msgstr "Показать пароль учетной записи" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 +#: ../../../config/actions.xml:259 +msgid "Ver Historial" +msgstr "Показать историю" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 +msgid "Ver historial de cuenta" +msgstr "Показать историю учетной записи" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 +msgid "Editar cuenta" +msgstr "Изменить учетную запись" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 +msgid "Editar Clave" +msgstr "Изменить пароль" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 +msgid "Editar clave de cuenta" +msgstr "Изменить пароль учетной записи" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 #, fuzzy msgid "Eliminar cuenta" msgstr "Удалить учетную запись" -#: ../../../modules/web/themes/material-blue/inc/Icons.php:36 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:132 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:181 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:202 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:129 -msgid "Eliminar" -msgstr "Удалить" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 +msgid "Ver archivos de cuenta" +msgstr "Просмотр файлов учетной записи" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:458 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 +msgid "Publicar Enlace" +msgstr "Поделиться ссылкой" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 +msgid "Publicar enlace a cuenta" +msgstr "Поделиться ссылкой на учетную запись" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 +msgid "Crear cuenta privada" +msgstr "Создать приватную учетную запись" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 +msgid "Crear cuenta privada para grupo" +msgstr "Создать приватный аккаунт для группы" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 +msgid "Asignar permisos" +msgstr "Назначить права" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 +msgid "Gestión de usuarios" +msgstr "Управление пользователями" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 +msgid "Gestión de grupos" +msgstr "Управление группами" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 +msgid "Gestión de perfiles" +msgstr "Управление профилями" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 +msgid "Gestión de categorías" +msgstr "Управление категориями" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 +msgid "Gestión de etiquetas" +msgstr "Управление тегами" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 +#, fuzzy +msgid "Gestión de clientes" +msgstr "Управление заказчиками" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 +msgid "Gestión de campos personalizados" +msgstr "Управление свободными полями" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 +msgid "Gestión de autorizaciones API" +msgstr "Управление API авторизации" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 +msgid "Gestión de enlaces" +msgstr "Управление ссылками" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 +msgid "Gestión de cuentas" +msgstr "Управление учетными записями" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 +msgid "Valores por Defecto" +msgstr "Default Values" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 +msgid "Gestión de Valores por Defecto" +msgstr "Default Values Management" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 +#: ../../../config/actions.xml:691 +msgid "Configuración General" +msgstr "Основная конфигурация" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 msgid "Opciones de encriptación" msgstr "Настройки шифрования" -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:474 +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 +msgid "Backup" +msgstr "Резервное копирование" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 msgid "Realizar copia de seguridad y exportar" msgstr "Резервное копирование и экспорт" -#: ../../../../ajax/ajax_filesMgmt.php:97 -msgid "Extensión" -msgstr "Расширение" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 +msgid "Importar" +msgstr "Импорт" -#: ../../../modules/web/Controllers/AccountFileController.php:209 -msgid "Tamaño de archivo superado" -msgstr "Слишком большой размер файла" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 +msgid "Realizar importación de cuentas" +msgstr "Выполнить импорт учетной записи" -#: ../../../../ajax/ajax_passReset.php:77 -msgid "Solicitud no enviada" -msgstr "Запрос не отправлен" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 +msgid "Log de Eventos" +msgstr "Журнал событий" -#: ../../../../ajax/ajax_passReset.php:78 -msgid "Compruebe datos de usuario o consulte con el administrador" +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 +msgid "Ver log de eventos" +msgstr "Просмотр журнала событий" + +#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 +msgid "Nombre del perfil" +msgstr "Имя профиля" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:46 +msgid "Clave Anterior" +msgstr "Прошлый пароль" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:73 +msgid "Acceder" +msgstr "Войти" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:82 +#, fuzzy +msgid "¿Olvidó su clave?" +msgstr "Забыли пароль?" + +#: ../../../modules/web/themes/material-blue/views/login/index.inc:88 +msgid "Aplicación actualizada correctamente" +msgstr "Программа успешно обновлена" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 +#, php-format +msgid "Actualización %s" +msgstr "Обновить %s" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:20 +msgid "Actualización de BBDD" +msgstr "Обновление БД" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:22 +msgid "Actualización de Aplicación" +msgstr "Обновление приложения" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:28 +msgid "Código de Seguridad" +msgstr "Код безопасности" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 +#, fuzzy +msgid "" +"Este código se encuentra en el archivo de configuración de sysPass con la " +"etiqueta \"upgradeKey\"" msgstr "" -"Пожалуйста, проверьте данные пользователя или свяжитесь с администратором" +"Этот код задан в конфигурационном файле sysPass вместе с тегом \"upgradekey\"" -#: ../../../../lib/SP/Services/Account/AccountService.php:283 -#: ../../../../lib/SP/Services/Account/AccountService.php:672 -#: ../../../../lib/SP/Services/Account/AccountService.php:727 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:47 +msgid "" +"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " +"o indique los IDs por defecto para los elementos huérfanos." +msgstr "" +"Были найдены некоторые осиротевшие элементы. Пожалуйста, измените эти " +"элементы или введите идентификаторы по умолчанию для них." + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:49 +msgid "Si no se indican los IDs, se crearán nuevos elementos." +msgstr "Если идентификаторы элементов не установлены, они будут созданы." + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:74 +msgid "Introducir un ID de usuario válido para cuentas" +msgstr "Введите действительный идентификатор пользователя для учетных записей" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 +msgid "Introducir un ID de categoría válido para cuentas" +msgstr "Введите действительный идентификатор категории для учетных записей" + +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:96 #, fuzzy -msgid "La cuenta no existe" -msgstr "Учетная запись не существует" +msgid "Introducir un ID de cliente válido para cuentas" +msgstr "Введите действительный идентификатор заказчика для учетных записей" -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:194 -msgid "Errores" -msgstr "Ошибки" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 +msgid "Introducir un ID de grupo válido para usuarios" +msgstr "Введите действительный идентификатор группы для пользователей" -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:71 -msgid "Error al añadir favorito" -msgstr "Ошибка добавления в избранное" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 +msgid "Introducir un ID de perfil válido para usuarios" +msgstr "Введите действительный идентификатор профиля для пользователей" -#: ../../../../lib/SP/Repositories/Account/AccountToFavoriteRepository.php:91 -msgid "Error al eliminar favorito" -msgstr "Ошибка удаления из избранного" - -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:94 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:128 #, fuzzy -msgid "Error al eliminar las etiquetas de la cuenta" -msgstr "Ошибка при удалении тегов для учетной записи" +msgid "" +"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " +"necesario reencriptar los datos almacenados" +msgstr "" +"Это обновление использует новую схему шифрования, поэтому потребуется " +"перекодировать все зашифрованные данные." -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:107 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:78 -msgid "Método inválido" -msgstr "Ошибочный метод" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:150 +msgid "Introducir login de usuario válido" +msgstr "Введите существующий логин пользователя" -#: ../../../../lib/SP/Services/Api/ApiRequest.php:79 -#: ../../../../lib/SP/Services/Api/ApiRequest.php:113 -#: ../../../../lib/SP/Services/Api/ApiService.php:229 -msgid "Datos inválidos" -msgstr "Ошибочные данные" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:162 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 +msgid "He realizado una copia de seguridad completa de sysPass" +msgstr "Полная резервная копия sysPass выполнена" -#: ../../../../inc/SP/Api/ApiRequest.class.php:211 -msgid "Formato incorrecto" -msgstr "Ошибочный формат" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 +msgid "Por favor espere mientras el proceso se ejecuta" +msgstr "Пожалуйста, подождите пока процесс в работе" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:43 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:54 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:67 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:105 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:144 -msgid "Id de la cuenta" -msgstr "ID учетной записи" +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:184 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:49 +msgid "Actualizar" +msgstr "Обновить" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:56 +#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:186 +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:51 +msgid "Iniciar Actualización" +msgstr "Начать обновление" + +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:95 +msgid "Notificación global" +msgstr "Глобальное уведомление" + +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:103 +msgid "Sólo para administradores de la aplicación" +msgstr "Only for application administrators" + +#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:107 +msgid "Solo Admins" +msgstr "Only Admins" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:29 +msgid "Nombre del plugin" +msgstr "Имя плагина" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:41 #, fuzzy -msgid "Devolver detalles en la respuesta" -msgstr "Отправлены детали по запросу" +msgid "Versión del plugin" +msgstr "Версия плагина" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:129 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:80 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:82 -#: ../../../modules/api/Controllers/Help/TagHelp.php:78 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:82 -msgid "Número de resultados a mostrar" -msgstr "Количество результатов для отображения" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:46 +msgid "Versión Compatible" +msgstr "Совместимые версии" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:130 -msgid "Id de categoría a filtrar" -msgstr "ID категории для фильтра" +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:53 +msgid "Versión de sysPass compatible" +msgstr "Совместимые версии sysPass" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:131 +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:39 +msgid "Autor" +msgstr "Автор" + +#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:65 +msgid "Autor del plugin" +msgstr "Автор плагина" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:11 +msgid "La aplicación necesita actualizarse" +msgstr "Необходимо обновить программу" + +#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 +msgid "Para iniciar la actualización introduzca el código de seguridad" +msgstr "Please enter the security code to start the upgrade" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:6 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:13 +msgid "Solicitud de Cambio de Clave" +msgstr "Запросить смену пароля" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:29 +msgid "Email del Usuario" +msgstr "Email" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:39 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:49 +msgid "Volver a iniciar sesión" +msgstr "Назад ко входу" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: ../../../modules/web/themes/material-blue/views/userpassreset/request.inc:46 +msgid "Solicitar" +msgstr "Запрос" + +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +#: ../../../modules/web/themes/material-blue/views/userpassreset/reset.inc:56 +msgid "Cambiar" +msgstr "Изменение" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:107 +msgid "Ordenar resultados por visitas" +msgstr "Сортировать результаты поиска по числу просмотров" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:109 #, fuzzy -msgid "Id de cliente a filtrar" -msgstr "ID заказчика для фильтра" +msgid "" +"Ordena los resultados de búsqueda por el número de visitas de las cuentas." +msgstr "" +"Включает показ результатов поиска учетных записей с сортировкой по числу " +"просмотров." -#: ../../../modules/api/Controllers/Help/AccountHelp.php:83 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:107 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:43 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:66 -#: ../../../modules/api/Controllers/Help/CategoryHelp.php:91 -msgid "Id de categoría" -msgstr "ID категории" +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:124 +msgid "Barra de navegación superior" +msgstr "Верхняя навигация" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:84 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:108 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:43 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:67 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:93 +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:126 +msgid "Mostrar una barra de navegación superior en las búsquedas." +msgstr "Закрепить панель навигации в верху страницы." + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:141 +msgid "Mostrar Acciones Ocultas" +msgstr "Показывать скрытые действия" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:143 +msgid "" +"Mostrar las acciones ocultas para los elementos de la búsqueda de cuentas." +msgstr "" +"Всегда показывать скрытые действия на странице результатов поиска учетных " +"записей." + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:175 +msgid "Notificaciones In-App" +msgstr "In-App Notifications" + +#: ../../../modules/web/themes/material-blue/views/usersettings/general.inc:177 +msgid "Habilita la consulta de notificaciones activas In-App." +msgstr "Enables the active In-App notifications polling" + +#. (itstool) path: action/text +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:16 +#: ../../../config/actions.xml:277 +msgid "Ver Wiki" +msgstr "Показать WiKi" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +#, php-format +msgid "Resultados de búsqueda de '%s'" +msgstr "Результаты поиска '%s'" + +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:37 +msgid "Página" +msgstr "Страница" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:7 #, fuzzy -msgid "Id de cliente" -msgstr "ID заказчика" +msgid "Buscar Cuentas" +msgstr "Поиск учетных записей" -#: ../../../../lib/SP/Api/SyspassApi.php:511 -msgid "Nombre de categoría a buscar" -msgstr "Название категории для поиска" +#. (itstool) path: action/text +#: ../../../config/actions.xml:25 +msgid "Peticiones" +msgstr "Включить запросы по email" -#: ../../../../lib/SP/Api/SyspassApi.php:531 +#. (itstool) path: action/text +#: ../../../config/actions.xml:31 +msgid "Favoritos" +msgstr "Favorites" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:43 +msgid "Elementos y Personalización" +msgstr "Элементы персонализации" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:49 +msgid "Gestión Categorías" +msgstr "Управление категориями" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:55 #, fuzzy -msgid "Nombre de cliente a buscar" -msgstr "Название заказчика для поиска" - -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:212 -msgid "Método ya inicializado" -msgstr "Метод уже инициализирован" - -#: ../../../../lib/SP/Providers/Auth/AuthProvider.php:208 -msgid "Método no disponible" -msgstr "Метод недоступен" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:155 -#: ../../../modules/web/Controllers/ConfigLdapController.php:198 -msgid "Objetos encontrados: %d" -msgstr "Найдено объектов: %d" - -#: ../../../../lib/SP/Controller/ChecksController.php:127 -#, fuzzy -msgid "Los parámetros de DokuWiki no están configurados" -msgstr "Параметры DokuWiki не заданы" - -#: ../../../../lib/SP/Controller/ChecksController.php:135 -#: ../../../../lib/SP/Util/Wiki/DokuWikiApiBase.php:214 -msgid "Error" -msgstr "Ошибка" - -#: ../../../../lib/SP/Controller/ChecksController.php:137 -msgid "Conexión correcta" -msgstr "Успешное подключение" - -#: ../../../../lib/SP/Controller/ChecksController.php:141 -msgid "Error de conexión a DokuWiki" -msgstr "Ошибка при подключении к DokuWiki" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:89 -msgid "Faltan parámetros de syslog remoto" -msgstr "Пропущены параметры удаленного syslog" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:102 -msgid "Syslog remoto deshabilitado" -msgstr "Удаленный syslog отключен" - -#: ../../../modules/web/Controllers/Traits/ConfigTrait.php:72 -#, fuzzy -msgid "Error al guardar la configuración" -msgstr "Ошибка при сохранении конфигурации" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:87 -msgid "Faltan parámetros de DokuWiki" -msgstr "Пропущены параметры DokuWiki" - -#: ../../../../inc/SP/Controller/ConfigActionController.class.php:368 -msgid "DokuWiki habiltada" -msgstr "DokuWiki включен" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:104 -msgid "DokuWiki deshabilitada" -msgstr "DokuWiki выключен" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:166 -msgid "Buscar Evento" -msgstr "Поиск событий" +msgid "Gestión Clientes" +msgstr "Управление заказчиками" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:136 -#: ../../../config/actions.xml:325 -msgid "Buscar Categoría" -msgstr "Поиск категории" +#: ../../../config/actions.xml:61 +msgid "Gestión Autorizaciones API" +msgstr "Управление API авторизации" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:139 -#: ../../../config/actions.xml:355 -#, fuzzy -msgid "Buscar Cliente" -msgstr "Поиск заказчика" - -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:143 -msgid "Buscar Campo" -msgstr "Поиск поля" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:144 -#: ../../../config/actions.xml:475 -msgid "Buscar Archivo" -msgstr "Поиск файла" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:144 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:144 -#: ../../../config/actions.xml:499 ../../../config/actions.xml:799 -msgid "Buscar Cuenta" -msgstr "Поиск учетной записи" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:155 -#: ../../../config/actions.xml:601 -msgid "Buscar Usuario" -msgstr "Поиск пользователя" - -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:222 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:223 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:457 -msgid "Importar usuarios de LDAP" -msgstr "Импорт пользователей из LDAP" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:137 -#: ../../../config/actions.xml:631 -msgid "Buscar Grupo" -msgstr "Поиск группы" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:135 -#: ../../../config/actions.xml:661 -msgid "Buscar Perfil" -msgstr "Поиск профиля" - -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:139 -msgid "Buscar Token" -msgstr "Поиск токена" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:44 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:46 -msgid "Fecha Creación" -msgstr "Дата создания" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:182 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:54 -msgid "Fecha Caducidad" -msgstr "Действует до" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:31 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:38 -msgid "Notificar" -msgstr "Уведомление" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:95 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:43 -msgid "Enlaces" -msgstr "Ссылки" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:148 -msgid "Buscar Enlace" -msgstr "Поиск ссылок" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:182 -#: ../../../modules/web/Controllers/PublicLinkController.php:341 -msgid "Ver Enlace" -msgstr "Показать ссылку" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:197 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:198 -msgid "Renovar Enlace" -msgstr "Обновить ссылку" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:214 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:215 -msgid "Eliminar Enlace" -msgstr "Удалить ссылку" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:123 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:93 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:205 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:207 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:92 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:309 -msgid "Etiquetas" -msgstr "Теги" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:134 -#: ../../../config/actions.xml:529 -msgid "Buscar Etiqueta" -msgstr "Поиск тегов" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:150 -#: ../../../modules/web/Controllers/TagController.php:103 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:220 -#: ../../../config/actions.xml:505 -msgid "Nueva Etiqueta" -msgstr "Новый тег" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:167 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:168 -#: ../../../modules/web/Controllers/TagController.php:162 -#: ../../../config/actions.xml:517 -msgid "Editar Etiqueta" -msgstr "Редактировать тег" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:185 -#: ../../../config/actions.xml:523 -msgid "Eliminar Etiqueta" -msgstr "Удалить тег" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:101 -msgid "Plugin" -msgstr "Плагин" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:125 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 -msgid "Estado" -msgstr "Статус" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:89 -#: ../../../modules/web/Controllers/Helpers/LayoutHelper.php:334 -#: ../../../modules/web/themes/material-blue/views/plugin/index.inc:1 -msgid "Plugins" -msgstr "Плагины" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:134 -#: ../../../config/actions.xml:547 -msgid "Buscar Plugin" -msgstr "Поиск плагинов" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:149 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: ../../../modules/web/Controllers/PluginController.php:120 -#: ../../../config/actions.xml:541 -msgid "Ver Plugin" -msgstr "Показать плагин" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:166 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 -msgid "Habilitar" -msgstr "Включить" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:185 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 -msgid "Deshabilitar" -msgstr "Отключить" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:204 -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 -msgid "Restablecer Datos" -msgstr "Сбросить данные" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:123 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:28 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:35 -msgid "Componente" -msgstr "Компонент" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:145 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:104 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:108 -msgid "Leída" -msgstr "Чтение" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:108 -#: ../../../modules/web/themes/material-blue/inc/Icons.php:65 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:105 -#: ../../../modules/web/themes/material-blue/views/notification/index.inc:1 -#: ../../../config/actions.xml:679 -msgid "Notificaciones" -msgstr "Уведомления" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:163 -#: ../../../config/actions.xml:841 -msgid "Buscar Notificación" -msgstr "Поиск уведомления" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:196 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:197 -#: ../../../modules/web/Controllers/NotificationController.php:103 -#: ../../../config/actions.xml:811 -msgid "Ver Notificación" -msgstr "Показать уведомление" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:226 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:227 -#: ../../../config/actions.xml:835 -msgid "Marcar Notificación" -msgstr "Проверить уведомление" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:261 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:262 -#: ../../../config/actions.xml:829 -msgid "Eliminar Notificación" -msgstr "Удалить уведомление" - -#: ../../../modules/web/Controllers/PublicLinkController.php:275 -#: ../../../modules/web/Controllers/PublicLinkController.php:310 -msgid "Enlace creado" -msgstr "Ссылка создана" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:89 -#: ../../../modules/web/Controllers/PublicLinkController.php:175 -msgid "Enlace actualizado" -msgstr "Ссылка обновлена" - -#: ../../../modules/web/Controllers/PublicLinkController.php:245 -#: ../../../modules/web/Controllers/PublicLinkController.php:249 -msgid "Enlace eliminado" -msgstr "Ссылка удалена" - -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:94 -#: ../../../modules/web/Controllers/TagController.php:234 -msgid "Etiqueta creada" -msgstr "Тег добавлен" - -#: ../../../modules/api/Controllers/TagController.php:118 -#: ../../../modules/api/Controllers/TagController.php:123 -#: ../../../modules/web/Controllers/TagController.php:265 -msgid "Etiqueta actualizada" -msgstr "Тег обновлен" - -#: ../../../modules/api/Controllers/TagController.php:147 -#: ../../../modules/api/Controllers/TagController.php:152 -#: ../../../modules/web/Controllers/TagController.php:208 -msgid "Etiqueta eliminada" -msgstr "Тег удален" - -#: ../../../modules/web/Controllers/PluginController.php:181 -#: ../../../modules/web/Controllers/PluginController.php:184 -msgid "Plugin habilitado" -msgstr "Плагин включен" - -#: ../../../modules/web/Controllers/PluginController.php:206 -#: ../../../modules/web/Controllers/PluginController.php:209 -msgid "Plugin deshabilitado" -msgstr "Плагин отключен" - -#: ../../../modules/web/Controllers/PluginController.php:231 -#: ../../../modules/web/Controllers/PluginController.php:234 -msgid "Plugin restablecido" -msgstr "Плагин сброшен" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:55 -msgid "Favorito añadido" -msgstr "Добавлено в избранное" - -#: ../../../modules/web/Controllers/AccountFavoriteController.php:73 -msgid "Favorito eliminado" -msgstr "Удалено из избранного" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:269 -msgid "Importación de usuarios de LDAP realizada" -msgstr "Импорт пользователей из LDAP завершен" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1096 -#, fuzzy -msgid "Error al importar usuarios de LDAP" -msgstr "Ошибка при импорте пользователей из LDAP" - -#: ../../../modules/web/Controllers/NotificationController.php:297 -#: ../../../modules/web/Controllers/NotificationController.php:301 -msgid "Notificación leída" -msgstr "Уведомление прочитано" - -#: ../../../modules/web/Controllers/NotificationController.php:266 -#: ../../../modules/web/Controllers/NotificationController.php:270 -msgid "Notificación eliminada" -msgstr "Уведомление удалено" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1192 -msgid "Solicitud enviada por correo" -msgstr "Запрос отправлен по email" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 -msgid "Solicitud no enviada por correo" -msgstr "Запрос не отправлен по email" - -#: ../../../modules/web/Controllers/AccountController.php:943 -msgid "Solicitud realizada" -msgstr "Запрос выполнен" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:427 -#, fuzzy -msgid "Ver Enlace Público" -msgstr "Показать публичную ссылку" - -#: ../../../../inc/SP/Controller/ItemShowController.class.php:233 -msgid "Detalles de Plugin" -msgstr "Детали плагина" - -#: ../../../../inc/SP/Controller/LoginController.class.php:375 -#, fuzzy -msgid "Error al obtener la clave maestra del usuario" -msgstr "Ошибка при получении мастер-пароля пользователя" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:327 -msgid "Es necesaria su clave anterior" -msgstr "Необходим Ваш прошлый пароль" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:452 -#: ../../../../lib/SP/Services/Auth/LoginService.php:515 -msgid "Servidor LDAP" -msgstr "Сервер LDAP" - -#: ../../../../inc/SP/Core/Acl.class.php:198 -msgid "Buscar Categorías" -msgstr "Поиск категорий" - -#: ../../../../inc/SP/Core/Acl.class.php:199 -msgid "Añadir Categoría" -msgstr "Добавить категорию" - -#: ../../../../inc/SP/Core/Acl.class.php:203 -msgid "Buscar Clientes" -msgstr "Поиск заказчиков" - -#: ../../../../inc/SP/Core/Acl.class.php:204 -msgid "Añadir Cliente" -msgstr "Добавить заказчика" +#: ../../../config/actions.xml:67 +msgid "Gestión Campos Personalizados" +msgstr "Управление свободными полями" #. (itstool) path: action/text #: ../../../config/actions.xml:79 @@ -5108,2639 +4721,36 @@ msgstr "Управление учетными записями" msgid "Gestión de Etiquetas" msgstr "Управление тегами" -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:133 -msgid "No es posible crear el directorio de backups (\"%s\")" -msgstr "Невозможно создать каталог резервных копий (\"%s\")" - -#: ../../../../lib/SP/Core/Events/EventDispatcherBase.php:85 -msgid "Observador no inicializado" -msgstr "Наблюдатель не инициализирован" - -#: ../../../../lib/SP/Core/Events/Event.php:56 -msgid "Es necesario un objeto" -msgstr "Нужен объект" - -#: ../../../../lib/SP/Services/Install/Installer.php:141 -#, fuzzy -msgid "Indicar la clave de la BBDD" -msgstr "Введите пароль базы данных" - -#: ../../../../lib/SP/Services/Install/Installer.php:143 -msgid "Clave del usuario administrador de la Base de Datos" -msgstr "Пароль администратора базы данных" - -#: ../../../../lib/SP/Services/Install/MySQL.php:181 -msgid "Error al crear el usuario de conexión a MySQL '%s'" -msgstr "Ошибка при создании подключения к MySQL под пользователем '%s'" - -#: ../../../../lib/SP/Services/Install/MySQL.php:251 -#, fuzzy -msgid "La BBDD no existe" -msgstr "База данных не существует" - -#: ../../../../lib/SP/Services/Install/MySQL.php:253 -msgid "Es necesario crearla y asignar los permisos necesarios" -msgstr "Необходимо создать его и назначить нужные права" - -#: ../../../../lib/SP/Services/Install/MySQL.php:237 -#, fuzzy -msgid "Error al establecer permisos de la BBDD ('%s')" -msgstr "Ошибка при установке прав базы данных ('%s')" - -#: ../../../../lib/SP/Plugin/PluginManager.php:113 -#: ../../../../lib/SP/Plugin/PluginManager.php:256 -#, fuzzy -msgid "No es posible cargar el plugin \"%s\"" -msgstr "Невозможно загрузить плагин \"%s\"" - -#: ../../../../lib/SP/Mvc/View/Template.php:341 -msgid "La plantilla no contiene archivos" -msgstr "Шаблон не содержит файлов" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:121 -#: ../../../../lib/SP/Services/Upgrade/UpgradeConfigService.php:125 -msgid "Error al actualizar la configuración" -msgstr "Ошибка при обновлении конфигурации" - -#: ../../../modules/web/Forms/AuthTokenForm.php:91 -msgid "Usuario no indicado" -msgstr "Пользователь не установлен" - -#: ../../../modules/web/Forms/AuthTokenForm.php:95 -msgid "Acción no indicada" -msgstr "Действие не установлено" - -#: ../../../modules/web/Forms/TagForm.php:82 -msgid "Es necesario un nombre de etiqueta" -msgstr "Необходимо название тега" - -#: ../../../../lib/SP/Http/XMLRPCResponseParse.php:69 -msgid "Respuesta XML-RPC inválida" -msgstr "Ошибочный XML-RPC ответ" - -#: ../../../../lib/SP/Services/Import/ImportService.php:89 -msgid "Tipo mime no soportado (\"%s\")" -msgstr "Тип mime не поддерживается (\"%s\")" - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:106 -msgid "Id de categoría no definido. No es posible importar cuenta." -msgstr "ID категории не задано. Невозможно импортировать учетную запись." - -#: ../../../../lib/SP/Services/Import/ImportTrait.php:110 -#, fuzzy -msgid "Id de cliente no definido. No es posible importar cuenta." -msgstr "ID заказчика не задано. Невозможно импортировать учетную запись." - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:69 -msgid "Clave de encriptación no indicada" -msgstr "Пароль шифрования не задан" - -#: ../../../../lib/SP/Services/Import/CsvImport.php:50 -msgid "Formato detectado: %s" -msgstr "Определен формат: %s" - -#: ../../../../lib/SP/Services/Import/XmlImportBase.php:121 -#: ../../../../lib/SP/Services/Import/XmlImportTrait.php:70 -msgid "El nodo \"%s\" no existe" -msgstr "Узел \"%s\" не существует" - -#: ../../../../lib/SP/Util/ImageUtil.php:48 -#: ../../../../lib/SP/Util/ImageUtil.php:99 -#: ../../../../lib/SP/Util/Util.php:180 ../../../../lib/SP/Util/Util.php:182 -msgid "Extensión '%s' no cargada" -msgstr "Расширение '%s' не загружено" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:58 -msgid "Categoría duplicada" -msgstr "Категория существует" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:77 -#: ../../../../lib/SP/Services/Category/CategoryService.php:98 -#: ../../../../lib/SP/Services/Category/CategoryService.php:115 -msgid "Categoría no encontrada" -msgstr "Категория не найдена" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:75 -#, fuzzy -msgid "Error al crear el campo personalizado" -msgstr "Ошибка при создании свободного поля" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:259 -#, fuzzy -msgid "Error al eliminar el campo personalizado" -msgstr "Ошибка при удалении свободного поля" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:118 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:165 -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:193 -#, fuzzy -msgid "Error al actualizar el campo personalizado" -msgstr "Ошибка при обновлении свободного поля" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:162 -msgid "Campo personalizado no encontrado" -msgstr "Свободное поле не найдено" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldDef.php:215 -msgid "No se encontraron campos personalizados" -msgstr "Свободные поля не найдены" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldCryptService.php:68 -#, fuzzy -msgid "No hay datos de campos personalizados" -msgstr "Нет данных из свободных полей" - -#: ../../../../lib/SP/Mgmt/CustomFields/CustomFieldsUtil.php:263 -#, fuzzy -msgid "Error al migrar campos personalizados" -msgstr "Ошибка при миграции свободных полей" - -#: ../../../../inc/SP/Mgmt/Files/File.class.php:103 -msgid "Archivo subido" -msgstr "Файл загружен" - -#: ../../../../lib/SP/Repositories/UserGroup/UserGroupRepository.php:55 -msgid "Grupo en uso" -msgstr "Группа используется" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 -msgid "Actualizar Grupo" -msgstr "Обновить группу" - -#: ../../../../lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:140 -msgid "Error al asignar los usuarios al grupo" -msgstr "Ошибка при настройке пользователей в группе" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:78 -#, fuzzy -msgid "Error al crear la notificación" -msgstr "Ошибка при добавлении уведомления" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:137 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:156 -#, fuzzy -msgid "Error al eliminar la notificación" -msgstr "Ошибка при удалении уведомления" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:118 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:429 -#, fuzzy -msgid "Error al modificar la notificación" -msgstr "Ошибка при обновлении уведомления" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:212 -msgid "Error al obtener la notificación" -msgstr "Ошибка при получении уведомления" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:242 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:466 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:499 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:533 -#, fuzzy -msgid "Error al obtener las notificaciones" -msgstr "Ошибка при получении уведомлений" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:70 -#, fuzzy -msgid "Error al crear el plugin" -msgstr "Ошибка при добавлении плагина" - -#. (itstool) path: action/text -#: ../../../../lib/SP/Plugin/PluginManager.php:245 -#: ../../../config/actions.xml:535 -msgid "Nuevo Plugin" -msgstr "Новый плагин" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:232 -#, fuzzy -msgid "Error al eliminar el plugin" -msgstr "Ошибка при удалении плагина" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:104 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:348 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:368 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:388 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:408 -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:427 -#, fuzzy -msgid "Error al actualizar el plugin" -msgstr "Ошибка при обновлении плагина" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:42 -msgid "Habilitado" -msgstr "Включен" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:239 -#, fuzzy -msgid "Error al crear perfil" -msgstr "Ошибка при создании профиля" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:73 -msgid "Perfil en uso" -msgstr "Профиль используется" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:79 -#, fuzzy -msgid "Error al eliminar perfil" -msgstr "Ошибка при удалении профиля" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:141 -#, fuzzy -msgid "Error al modificar perfil" -msgstr "Ошибка при изменении профиля" - -#: ../../../modules/web/Controllers/AccountController.php:223 -msgid "Enlace visualizado" -msgstr "Ссылка показана" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:341 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:389 -#, fuzzy -msgid "Error al actualizar enlace" -msgstr "Ошибка при обновлении ссылки" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:255 -msgid "Enlace ya creado" -msgstr "Ссылка уже создана" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:282 -#, fuzzy -msgid "Error al crear enlace" -msgstr "Ошибка при создании ссылки" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:63 -#, fuzzy -msgid "Error al eliminar enlace" -msgstr "Ошибка при удалении ссылки" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:424 -msgid "Error al renovar enlace" -msgstr "Ошибка при обновлении ссылки" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:741 -#: ../../../../inc/themes/material-blue/views/account/actions.inc:69 -msgid "Actualizar Enlace" -msgstr "Обновить ссылку" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:466 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:507 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:528 -#, fuzzy -msgid "Error al obtener enlace" -msgstr "Ошибка при получении ссылки" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:190 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "ON" -msgstr "Включить" - -#: ../../../../lib/SP/DataModel/PublicLinkListData.php:88 -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "OFF" -msgstr "Выключить" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:60 -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:108 -msgid "Etiqueta duplicada" -msgstr "Дублированный тег" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:69 -#, fuzzy -msgid "Error al crear etiqueta" -msgstr "Ошибка при создании тега" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:262 -#, fuzzy -msgid "Error al eliminar etiqueta" -msgstr "Ошибка при удалении тега" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:118 -#, fuzzy -msgid "Error al actualizar etiqueta" -msgstr "Ошибка при обновлении тега" - -#: ../../../../inc/SP/Mgmt/Tags/Tag.class.php:181 -#, fuzzy -msgid "Error al obtener etiqueta" -msgstr "Ошибка при получении тега" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:63 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:430 -msgid "Login/email de usuario duplicados" -msgstr "Дублированный login/email" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:234 -#: ../../../../lib/SP/Repositories/User/UserRepository.php:551 -#, fuzzy -msgid "Error al obtener los datos del usuario" -msgstr "Ошибка при получении данных пользователя" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:781 -msgid "Sincronización LDAP" -msgstr "Синхронизация LDAP" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:264 -#, fuzzy -msgid "No se encontraron objetos para sincronizar" -msgstr "Нет объектов для синхронизации" - -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:128 -msgid "Sincronización finalizada" -msgstr "Синхронизация завершена" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:97 -#, fuzzy -msgid "Error al migrar cuenta de usuario" -msgstr "Ошибка при миграции учетной записи пользователя" - -#: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:137 -#, fuzzy -msgid "Error al obtener grupo de usuarios" -msgstr "Ошибка при получении группы пользователей" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:112 -#, fuzzy -msgid "Error en comprobación de hash" -msgstr "Ошибка при проверке хэша" - -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:87 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:155 -#, fuzzy -msgid "Hash inválido o expirado" -msgstr "Хэш ошибочен или просрочен" - -#: ../../../../lib/SP/Repositories/User/UserPassRecoverRepository.php:86 -msgid "Error al generar el hash de recuperación" -msgstr "Ошибка при генерации восстановительного хеша" - -#: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:57 -msgid "Actualizando preferencias" -msgstr "Обновление предпочтений" - -#: ../../../../lib/SP/Storage/XmlHandler.php:79 -msgid "No es posible leer/escribir el archivo: %s" -msgstr "Невозможно прочитать/записать файл: %s" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:167 -#, fuzzy -msgid "No hay elementos para guardar" -msgstr "Нет элементов для сохранения" - -#: ../../../../lib/SP/Util/Connection.php:157 -msgid "Socket no inicializado" -msgstr "Сокет не инициализирован" - -#: ../../../../lib/SP/Util/Connection.php:164 -#, fuzzy -msgid "Error al enviar datos" -msgstr "Ошибка при отправке данных" - -#: ../../../../lib/SP/Util/Util.php:243 -msgid "Respuesta" -msgstr "Ответ" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApi.php:68 -msgid "Fallo de autentificación" -msgstr "Ошибка аутентификации" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:196 -#, fuzzy -msgid "Error al realizar la consulta" -msgstr "Ошибка при выполнении запроса" - -#: ../../../../lib/SP/Services/Wiki/DokuWikiApiBase.php:228 -msgid "URL de conexión no establecida" -msgstr "URL подключения не задан" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:33 -msgid "Ver Detalles" -msgstr "Показать детали" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:44 -msgid "Copiar" -msgstr "Копировать" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:50 -msgid "Restaurar" -msgstr "Восстановить" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:55 -msgid "Descargar" -msgstr "Скачать" - -#: ../../../modules/web/themes/material-blue/inc/Icons.php:64 -msgid "Crítico" -msgstr "Критично" - -#: ../../../config/strings.js.inc:73 -#, fuzzy -msgid "Recibir notificaciones?" -msgstr "Отправить уведомления?" - -#: ../../../config/strings.js.inc:74 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:147 -msgid "Marcar Favorito" -msgstr "Пометить как избранное" - -#. (itstool) path: action/text -#: ../../../config/strings.js.inc:75 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:137 -#: ../../../config/actions.xml:253 -msgid "Eliminar Favorito" -msgstr "Удалить избранное" - -#: ../../../config/strings.js.inc:76 -msgid "Limpiar Selección" -msgstr "Очистить выбор" - -#: ../../../config/strings.js.inc:77 -msgid "Mostrar Favoritos" -msgstr "Показать избранное" - -#: ../../../config/strings.js.inc:78 -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:61 -msgid "Mostrar Todos" -msgstr "Показать все" - -#: ../../../config/strings.js.inc:81 -msgid "Ahora" -msgstr "Сейчас" - -#: ../../../config/strings.js.inc:82 -msgid "" -"Este proceso importará los usuarios de LDAP detectados. Desea continuar?" -msgstr "Этот процесс импортирует найденных пользователей из LDAP. Продолжить?" - -#: ../../../config/strings.js.inc:83 -msgid "Esta acción restablecerá todos los datos del plugin. Desea continuar?" -msgstr "Это действие сбросит все данные плагина. Продолжить?" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:70 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:91 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:114 -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:104 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:175 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:83 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:85 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:239 -msgid "Fecha Caducidad Clave" -msgstr "Срок действия пароля" - -#: ../../../modules/web/themes/material-blue/views/account/account-editpass.inc:101 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:188 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:250 -msgid "Seleccionar Fecha" -msgstr "Выберите дату" - -#: ../../../../inc/themes/material-blue/views/account/account-permissions.inc:9 -msgid "Accesos" -msgstr "Доступы" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:21 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:52 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:117 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:138 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:15 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:32 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:52 -msgid "Seleccionar Usuarios" -msgstr "Выберите пользователей" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:89 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:120 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:166 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:187 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:56 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:73 -msgid "Seleccionar Grupos" -msgstr "Выберите группы" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:89 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:112 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:193 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:106 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:19 -msgid "Cuenta Privada" -msgstr "Приватная учетная запись" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:199 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:177 -msgid "Privada" -msgstr "Приват" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:212 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:96 -msgid "Seleccionar Etiquetas" -msgstr "Выберите теги" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:92 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:115 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:245 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:247 -#: ../../../modules/web/themes/material-blue/views/account/viewpass.inc:8 -msgid "Cuenta Vinculada" -msgstr "Связанная учетная запись" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:255 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:21 -msgid "Seleccionar Cuenta" -msgstr "Выберите учетную запись" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:288 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:290 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:293 -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:180 -msgid "Enlace Público" -msgstr "Публичная ссылка" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 -#: ../../../config/actions.xml:421 -msgid "Crear Enlace Público" -msgstr "Создать публичную ссылку" - -#: ../../../modules/web/themes/material-blue/views/account/account-history.inc:18 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:39 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:15 -msgid "Detalles" -msgstr "Детали" - -#: ../../../modules/web/themes/material-blue/views/account/details.inc:73 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:75 -msgid "Fecha de Clave" -msgstr "Дата пароля" - -#: ../../../modules/web/themes/material-blue/views/account/files.inc:33 -msgid "Tamaño máximo de archivo: %d MB" -msgstr "Максимальный размер файла: %d MB " - -#: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:3 -msgid "Cuentas Vinculadas" -msgstr "Связанные учетные записи" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:98 -msgid "Clave Caducada" -msgstr "Пароль просрочен" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:199 -msgid "Ver en Wiki" -msgstr "Посмотреть в WiKi" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 -msgid "Buscar cuentas con la clave caducada" -msgstr "Поиск учетных записей с просроченным паролем" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:64 -msgid "Filtrar Favoritos" -msgstr "Фильтр избранного" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:85 -msgid "Más Filtros" -msgstr "Больше фильтров" - -#: ../../../modules/web/themes/material-blue/views/account/search-searchbox.inc:90 -msgid "Seleccionar Etiqueta" -msgstr "Выберите теги" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:43 -msgid "Copia BBDD" -msgstr "Резервная копия БД" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:50 -msgid "Copia sysPass" -msgstr "Резервная копия sysPass" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:96 -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:99 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:171 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:174 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:64 -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:66 -msgid "Eventos" -msgstr "События" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:43 -msgid "Habilitar Syslog" -msgstr "Включить Syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:58 -msgid "Habilitar Syslog Remoto" -msgstr "Включить удаленный Syslog" - -#: ../../../modules/web/themes/material-blue/views/config/general-events.inc:76 -msgid "Nombre o dirección IP" -msgstr "Хост или IP-адрес" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:194 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:373 -#: ../../../config/actions.xml:73 -msgid "Enlaces Públicos" -msgstr "Публичные ссылки" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:212 -msgid "Habilitar Enlaces Públicos" -msgstr "Включить публичные ссылки" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:214 -msgid "" -"Habilita la posibilidad de generar enlaces públicos para ver los detalles de " -"una cuenta." -msgstr "" -"Включает возможность создания публичных ссылок для просмотра деталей учетной " -"записи" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:216 -msgid "" -"Las cuentas enlazadas serán visibles por cualquiera que disponga del enlace." -msgstr "Связанные учетные записи будут видны для всех, у кого есть ссылка." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:218 -msgid "" -"Para crear enlaces, los usuarios tienen que tener activada la opción en su " -"perfl." -msgstr "" -"Для создания ссылок пользователи должны включить соответствующую опцию в " -"своем профиле." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:245 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:254 -msgid "Tiempo de caducidad" -msgstr "Срок действия" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:260 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:269 -msgid "Número máximo de visitas" -msgstr "Максимум переходов" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:234 -msgid "Usar imagen para clave" -msgstr "Использовать картинку для пароля" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:236 -msgid "La clave de la cuenta es visualizada como una imagen." -msgstr "Пароль учетной записи показан как картинка." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:74 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:77 -msgid "Copia de Configuración" -msgstr "Резервная копия конфигурации" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:122 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:125 -msgid "Plugins Cargados" -msgstr "Загруженные плагины" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:149 -#: ../../../modules/web/Controllers/ConfigLdapController.php:191 -msgid "Resultados" -msgstr "Результаты" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:143 -msgid "DokuWiki API" -msgstr "DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:161 -msgid "Habilitar API de DokuWiki" -msgstr "Включить DokuWiki API" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:163 -msgid "" -"Habilita la conexión a la API XML-RPC de DokuWiki para los enlaces Wiki." -msgstr "Включает DokuWiki XML-RPC API для ссылок на WiKi." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:165 -msgid "" -"Para que esta característica funcione, es necesario habilitar los enlaces " -"Wiki para el filtrado de cuentas." -msgstr "" -"Для работы данной функции необходимо включить ссылки на WiKi для фильтрации " -"учетных записей" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:175 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:196 -msgid "URL API" -msgstr "API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:180 -msgid "URL de la API de DokuWiki." -msgstr "DokuWiki API URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:202 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:224 -msgid "URL Base" -msgstr "Base URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:207 -msgid "URL base de DokuWiki." -msgstr "DokuWiki base URL" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:235 -#, fuzzy -msgid "Usuario para conectar a la API de DokuWiki." -msgstr "Пользователь для подключения к DokuWiki API." - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:263 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:279 -msgid "Namespace" -msgstr "Пространство имен" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:268 -msgid "Namespace utilizado para buscar las páginas." -msgstr "Пространство имен для поиска страниц." - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 -msgid "Nivel" -msgstr "Уровень" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:76 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:71 -#: ../../../modules/web/Controllers/Helpers/Grid/FileGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:86 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:87 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:72 -#: ../../../modules/web/Controllers/Helpers/Grid/TagGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:82 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGrid.php:83 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 -#: ../../../modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 -msgid "Eliminar Seleccionados" -msgstr "Удалить выбранные" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:23 -msgid "Nombre del plugin" -msgstr "Имя плагина" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:35 -#, fuzzy -msgid "Versión del plugin" -msgstr "Версия плагина" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:40 -msgid "Versión Compatible" -msgstr "Совместимые версии" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:47 -msgid "Versión de sysPass compatible" -msgstr "Совместимые версии sysPass" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:52 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:25 -msgid "Autor" -msgstr "Автор" - -#: ../../../modules/web/themes/material-blue/views/plugin/plugin.inc:59 -msgid "Autor del plugin" -msgstr "Автор плагина" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:162 -msgid "Publicar enlace a cuenta" -msgstr "Поделиться ссылкой на учетную запись" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:161 -msgid "Publicar Enlace" -msgstr "Поделиться ссылкой" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:178 -msgid "Crear cuenta privada" -msgstr "Создать приватную учетную запись" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:210 -msgid "Asignar permisos" -msgstr "Назначить права" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:374 -msgid "Gestión de enlaces" -msgstr "Управление ссылками" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:390 -msgid "Gestión de cuentas" -msgstr "Управление учетными записями" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 -msgid "Gestión de etiquetas" -msgstr "Управление тегами" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:76 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:78 -msgid "Hash" -msgstr "Хэш" - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:95 -msgid "Uso" -msgstr "Использовать" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:54 -#: ../../../modules/api/Controllers/Help/TagHelp.php:66 -#: ../../../modules/web/themes/material-blue/views/itemshow/tag.inc:23 -msgid "Nombre de la etiqueta" -msgstr "Имя тега" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:40 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:110 -msgid "Hay %d notificaciones pendientes" -msgstr "%d непрочитанных уведомлений" - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:165 -#: ../../../modules/web/themes/material-blue/views/_partials/footer.inc:43 -msgid "Demo" -msgstr "Демо" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:8 -msgid "Instalación %s" -msgstr "Установка %s" - -#: ../../../modules/web/themes/material-blue/views/install/index.inc:18 -msgid "Admin de sysPass" -msgstr "sysPass Admin" - -#: ../../../modules/web/themes/material-blue/views/login/index.inc:37 -msgid "Clave Anterior" -msgstr "Прошлый пароль" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:6 -msgid "Actualización %s" -msgstr "Обновить %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:29 -#, fuzzy -msgid "" -"Este código se encuentra en el archivo de configuración de sysPass con la " -"etiqueta \"upgradeKey\"" -msgstr "" -"Этот код задан в конфигурационном файле sysPass вместе с тегом \"upgradekey\"" - -#. (itstool) path: action/text -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:2 -#: ../../../config/actions.xml:277 -msgid "Ver Wiki" -msgstr "Показать WiKi" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:10 -msgid "Resultados de búsqueda de '%s'" -msgstr "Результаты поиска '%s'" - -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:13 -#: ../../../modules/web/themes/material-blue/views/wiki/wikipage.inc:23 -msgid "Página" -msgstr "Страница" - -#: ../../../modules/web/Controllers/ConfigManagerController.php:357 -msgid "No instalado" -msgstr "Не установлено" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 -msgid "Origen" -msgstr "Источник" - -#: ../../../modules/web/Controllers/AccountController.php:226 -msgid "Agente" -msgstr "Агент" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:37 -msgid "" -"Para mejorar/añadir las traducciones, puede colaborar en https://poeditor." -"com/join/project/fmlsBuugyv" -msgstr "" -"Для улучшения/добавления переводов Вы можете перейти по ссылке https://" -"poeditor.com/join/project/fmlsBuugyv" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:89 -msgid "Indica si el idioma se encuentra disponible" -msgstr "Сообщает доступен язык или нет." - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:93 -msgid "" -"Si no está instalado, es necesario instalar las locales en el sistema " -"operativo. Más información en Wiki." -msgstr "" -"Если не установлено, то необходимо установить правильные локали в ОС. " -"Подробности в WiKi." - -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:42 -#: ../../../modules/web/themes/material-blue/views/_partials/fixed-header.inc:112 -#, fuzzy -msgid "No hay no hay notificaciones pendientes" -msgstr "Нет ожидающих уведомлений" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:152 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:33 -msgid "He realizado una copia de seguridad completa de sysPass" -msgstr "Полная резервная копия sysPass выполнена" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:166 -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:41 -msgid "Por favor espere mientras el proceso se ejecuta" -msgstr "Пожалуйста, подождите пока процесс в работе" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 -msgid "Crear Usuario" -msgstr "Добавить пользователя" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 -msgid "Actualizar Usuario" -msgstr "Изменить пользователя" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:284 -msgid "Actualizar Clave Usuario" -msgstr "Изменить пароль пользователя" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 -msgid "Crear Grupo" -msgstr "Добавить группу" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 -msgid "Crear Perfil" -msgstr "Добавить профиль" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 -msgid "Actualizar Perfil" -msgstr "Изменить профиль" - -#: ../../../../lib/SP/Api/SyspassApi.php:368 -#, fuzzy -msgid "Crear Cliente" -msgstr "Добавить заказчика" - -#: ../../../../lib/SP/Api/SyspassApi.php:279 -msgid "Crear Categoría" -msgstr "Добавить категорию" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 -msgid "Actualizar Categoría" -msgstr "Изменить категорию" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:623 -msgid "Crear Autorización" -msgstr "Добавить авторизацию" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -msgid "Crear Campo" -msgstr "Добавить поле" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 -msgid "Actualizar Campo" -msgstr "Изменить поле" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:731 -#, fuzzy -msgid "Crear Enlace" -msgstr "Добавить ссылку" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -msgid "Crear Etiqueta" -msgstr "Добавить тег" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 -msgid "Actualizar Etiqueta" -msgstr "Изменить тег" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:890 -msgid "Actualizar Plugin" -msgstr "Обновить плагин" - -#: ../../../../lib/SP/Api/SyspassApi.php:188 -msgid "Crear Cuenta" -msgstr "Добавить учетную запись" - -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1091 -msgid "Usuarios importados" -msgstr "Импортированные пользователи" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:124 -#: ../../../modules/web/Controllers/AccountController.php:926 -msgid "Solicitud" -msgstr "Запрос" - -#: ../../../../lib/SP/Core/Acl/Acl.php:299 -msgid "Acceso denegado" -msgstr "Доступ запрещен" - -#: ../../../../lib/SP/Repositories/Account/AccountToTagRepository.php:115 -#, fuzzy -msgid "Error al añadir las etiquetas de la cuenta" -msgstr "Ошибка при добавлении тэгов учетной записи" - -#: ../../../../lib/SP/Util/ErrorUtil.php:148 -#: ../../../../lib/SP/Util/ErrorUtil.php:155 -#, fuzzy -msgid "Se ha producido una excepción" -msgstr "Произошла ошибка" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:179 -#: ../../../modules/web/Controllers/NotificationController.php:179 -msgid "Nueva Notificación" -msgstr "Новое уведомление" - -#: ../../../modules/web/Controllers/UserGroupController.php:219 -#: ../../../modules/web/Controllers/UserGroupController.php:222 -msgid "Grupos eliminados" -msgstr "Группы удалены" - -#: ../../../modules/web/Controllers/UserProfileController.php:203 -#: ../../../modules/web/Controllers/UserProfileController.php:206 -msgid "Perfiles eliminados" -msgstr "Профили удалены" - -#: ../../../modules/web/Controllers/ClientController.php:201 -#: ../../../modules/web/Controllers/ClientController.php:204 -#, fuzzy -msgid "Clientes eliminados" -msgstr "Заказчики удалены" - -#: ../../../modules/web/Controllers/CategoryController.php:206 -#: ../../../modules/web/Controllers/CategoryController.php:209 -msgid "Categorías eliminadas" -msgstr "Категории удалены" - -#: ../../../modules/web/Controllers/AuthTokenController.php:212 -#: ../../../modules/web/Controllers/AuthTokenController.php:215 -msgid "Autorizaciones eliminadas" -msgstr "Авторизация удалена" - -#: ../../../modules/web/Controllers/CustomFieldController.php:197 -#: ../../../modules/web/Controllers/CustomFieldController.php:200 -msgid "Campos eliminados" -msgstr "Поля удалены" - -#: ../../../modules/web/Controllers/PublicLinkController.php:234 -#: ../../../modules/web/Controllers/PublicLinkController.php:237 -msgid "Enlaces eliminados" -msgstr "Ссылки удалены" - -#: ../../../modules/web/Controllers/TagController.php:200 -msgid "Etiquetas eliminadas" -msgstr "Тэги удалены" - -#: ../../../modules/web/Controllers/AccountFileController.php:320 -#: ../../../modules/web/Controllers/AccountFileController.php:323 -msgid "Archivos eliminados" -msgstr "Файлы удалены" - -#: ../../../modules/web/Controllers/AccountController.php:879 -#: ../../../modules/web/Controllers/AccountController.php:882 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:99 -#: ../../../modules/web/Controllers/AccountHistoryManagerController.php:102 -#: ../../../modules/web/Controllers/AccountManagerController.php:131 -#: ../../../modules/web/Controllers/AccountManagerController.php:134 -msgid "Cuentas eliminadas" -msgstr "Учетные записи удалены" - -#: ../../../modules/web/Controllers/NotificationController.php:327 -#: ../../../modules/web/Controllers/NotificationController.php:330 -msgid "Notificación creada" -msgstr "Создано уведомление" - -#: ../../../modules/web/Controllers/NotificationController.php:251 -#: ../../../modules/web/Controllers/NotificationController.php:254 -msgid "Notificaciones eliminadas" -msgstr "Уведомление удалено" - -#: ../../../../lib/SP/Services/Auth/LoginService.php:270 -msgid "Usando clave temporal" -msgstr "Использование временного пароля" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:131 -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:181 -msgid "Clave temporal caducada" -msgstr "Временный пароль недействителен" - -#: ../../../../inc/SP/Core/Init.class.php:506 -msgid "Sesión" -msgstr "Сессия" - -#: ../../../../lib/SP/Services/Install/MySQL.php:361 -msgid "Error al comprobar la base de datos" -msgstr "Ошибка при проверке базы данных" - -#: ../../../../lib/SP/Services/Install/MySQL.php:363 -msgid "Intente de nuevo la instalación" -msgstr "Пожалуйста, повторите попытку установки еще раз" - -#: ../../../modules/web/Forms/NotificationForm.php:92 -msgid "Es necesario un componente" -msgstr "Нужен компонент" - -#: ../../../modules/web/Forms/NotificationForm.php:96 -msgid "Es necesario un tipo" -msgstr "Нужен тип" - -#: ../../../modules/web/Forms/NotificationForm.php:106 -msgid "Es necesario un destinatario" -msgstr "Нужна цель" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:167 -msgid "Error procesando línea" -msgstr "Ошибка при обработке линии" - -#: ../../../modules/web/Controllers/ConfigImportController.php:76 -msgid "Cuentas importadas" -msgstr "Учетные записи импортированы" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:164 -msgid "Archivo no encontrado" -msgstr "Файл не найден" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:80 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:98 -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:187 -#: ../../../../lib/SP/Services/UserGroup/UserToUserGroupService.php:57 -msgid "Grupo no encontrado" -msgstr "Группа не найдена" - -#: ../../../../lib/SP/Services/Notification/NotificationService.php:102 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:121 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:180 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:210 -msgid "Notificación no encontrada" -msgstr "Уведомление не найдено" - -#: ../../../../lib/SP/Services/Plugin/PluginService.php:92 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:153 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:186 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:206 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:224 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:241 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:258 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:275 -msgid "Plugin no encontrado" -msgstr "Плагин не найден" - -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:65 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:97 -msgid "Perfil no encontrado" -msgstr "Профиль не найден" - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:122 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:145 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:219 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:311 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:346 -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:367 -msgid "Enlace no encontrado" -msgstr "Ссылка не найдена" - -#: ../../../../lib/SP/Services/Tag/TagService.php:75 -#: ../../../../lib/SP/Services/Tag/TagService.php:94 -#: ../../../../lib/SP/Services/Tag/TagService.php:111 -msgid "Etiqueta no encontrada" -msgstr "Тэг не найден" - -#: ../../../../lib/SP/Services/User/UserService.php:192 -msgid "Usuario no encontrado" -msgstr "Пользователь не найден" - -#: ../../../../lib/SP/Storage/Database/Database.php:131 -msgid "Consulta en blanco" -msgstr "Пустой запрос" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:90 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:113 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:210 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:38 -msgid "Cuenta Privada Grupo" -msgstr "Приватный аккаунт для группы" - -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:216 -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:193 -msgid "Privada Grupo" -msgstr "Приват для группы" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:134 -msgid "Sólo es necesaria para archivos XML de sysPass encriptados." -msgstr "Это необходимо только для зашифрованных XML файлов syspass'а " - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:155 -msgid "" -"Sólo es necesaria para archivos XML de sysPass con clave maestra distinta de " -"la actual." -msgstr "" -"Это необходимо только для XML файлов syspass'а, зашифрованных мастер-паролем " -"отличным от текущего." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:183 -msgid "Sólo es necesario para archivos CSV." -msgstr "Это необходимо только для CSV файлов." - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:113 -#, fuzzy -msgid "" -"\"nombre_de_cuenta\";\"cliente\";\"categoría\";\"url\";\"usuario\";\"clave\";" -"\"notas\"" -msgstr "" -"\"account_name\";\"customer\";\"category\";\"url\";\"user\";\"password\";" -"\"notes\" " - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:194 -msgid "Crear cuenta privada para grupo" -msgstr "Создать приватный аккаунт для группы" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:88 -msgid "Notificación global" -msgstr "Глобальное уведомление" - -#: ../../../modules/api/Controllers/Help/ClientHelp.php:56 -#: ../../../modules/api/Controllers/Help/ClientHelp.php:70 -#: ../../../modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:147 -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:62 -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:92 -msgid "Global" -msgstr "Общее" - -#: ../../../../lib/SP/Services/Service.php:115 -msgid "No es posible iniciar una transacción" -msgstr "Невозможно начать транзакцию" - -#: ../../../../lib/SP/Services/Crypt/MasterPassService.php:101 -#: ../../../../lib/SP/Services/Import/ImportService.php:77 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "No es posible finalizar una transacción" -msgstr "Невозможно закончить транзакцию" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 -msgid "Clave Maestra %s" -msgstr "Мастер пароль %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:214 -msgid "" -"Se ha generado una nueva clave para el acceso a sysPass y se solicitará en " -"el siguiente inicio." -msgstr "" -"Был сгенерирован новый мастер пароль, который необходимо будет ввести при " -"следующей авторизации в приложении" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:216 -msgid "La nueva clave es: %s" -msgstr "Новый мастер пароль: %s" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:220 -#, fuzzy -msgid "No olvide acceder lo antes posible para guardar los cambios." -msgstr "Пожалуйста, не забудьте залогиниться для сохранения изменений." - -#: ../../../config/strings.js.inc:84 -#, fuzzy -msgid "Este proceso puede durar algo de tiempo. Desea continuar?" -msgstr "Это длительный процесс. Продолжить?" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:27 -msgid "Búsqueda" -msgstr "Поиск" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:260 -msgid "" -"Envía un correo a todos los usuarios o sólo a los del grupo seleccionado." -msgstr "Отправить письмо всем пользователям или выбранным группам" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:258 -msgid "Enviar correo" -msgstr "Отправить письмо" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:123 -msgid "XML" -msgstr "XML" - -#: ../../../modules/web/themes/material-blue/views/config/import.inc:172 -msgid "CSV" -msgstr "CSV" - -#: ../../../../lib/SP/Services/Account/AccountService.php:163 -#: ../../../../lib/SP/Services/Account/AccountService.php:599 -msgid "Cuenta no encontrada" -msgstr "У" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:159 -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:161 -msgid "Hash de clave maestra actualizado" -msgstr "Хэш мастер-пароля обновлен" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:168 -msgid "Error al actualizar el hash de la clave maestra" -msgstr "Ошибка при обновлении хэша мастер-пароля" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:244 -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:245 -#: ../../../modules/web/Controllers/NotificationController.php:210 -#: ../../../config/actions.xml:823 -msgid "Editar Notificación" -msgstr "Редактировать уведомление" - -#: ../../../modules/web/Controllers/UserController.php:266 -#: ../../../modules/web/Controllers/UserController.php:269 -msgid "Usuarios eliminados" -msgstr "Пользователи удалены" - -#: ../../../modules/web/Controllers/NotificationController.php:360 -#: ../../../modules/web/Controllers/NotificationController.php:363 -msgid "Notificación actualizada" -msgstr "Уведомление обновлено" - -#: ../../../../lib/SP/Storage/Database/Database.php:259 -msgid "Restricción de integridad" -msgstr "Ограничение целостности" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:166 -msgid "Actualizar hash de clave maestra" -msgstr "Обновить хэш мастер-пароля" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:128 -msgid "Modificada" -msgstr "Изменено" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 -msgid "Eliminada" -msgstr "Удалено" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:91 -msgid "Cuentas (H)" -msgstr "Группы" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:194 -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:224 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:124 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:148 -msgid "Clave de encriptación incorrecta" -msgstr "Неверный пароль шифрования" - -#. (itstool) path: strings/text -#: ../../../config/strings.xml:7 -msgid "Área de Texto" -msgstr "Текстовое поле" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 -msgid "Devolver las cuentas en las que 'login' es propietario" -msgstr "" -"Получить учетные записи, в которых пользователь \"login\" является владельцем" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 -msgid "Devolver las cuentas con grupo principal 'group_name'" -msgstr "" -"Получить учетные записи, имеющие название основной группы \"group_name\"" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 -msgid "Devolver las cuentas privadas del usuario actual" -msgstr "Получить приватные учетные записи для текущего пользователя" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:55 -msgid "OP Cache" -msgstr "OP кеш" - -#: ../../../modules/web/Controllers/UpgradeController.php:71 -msgid "Código de seguridad incorrecto" -msgstr "Неверный секретный код" - -#: ../../../modules/web/Controllers/UpgradeController.php:67 -msgid "Es necesario confirmar la actualización" -msgstr "Нужно подтверждение для обновления" - -#: ../../../modules/web/Controllers/UpgradeController.php:92 -msgid "En 5 segundos será redirigido al login" -msgstr "Вы будете перенаправлены на вход в течение 5 секунд" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:70 -msgid "Error al aplicar la actualización de la aplicación" -msgstr "Ошибка при применении обновления" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:345 -msgid "Tamaño máximo de archivo en kilobytes" -msgstr "Максимальный размер файла в килобайтах" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:14 -msgid "Actualización de Aplicación" -msgstr "Обновление приложения" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:37 -msgid "" -"Se han encontrado elementos huérfanos. Por favor, modifique estos elementos " -"o indique los IDs por defecto para los elementos huérfanos." -msgstr "" -"Были найдены некоторые осиротевшие элементы. Пожалуйста, измените эти " -"элементы или введите идентификаторы по умолчанию для них." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:61 -msgid "Introducir un ID de usuario válido para cuentas" -msgstr "Введите действительный идентификатор пользователя для учетных записей" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:73 -msgid "Introducir un ID de categoría válido para cuentas" -msgstr "Введите действительный идентификатор категории для учетных записей" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:85 -#, fuzzy -msgid "Introducir un ID de cliente válido para cuentas" -msgstr "Введите действительный идентификатор заказчика для учетных записей" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:98 -msgid "Introducir un ID de grupo válido para usuarios" -msgstr "Введите действительный идентификатор группы для пользователей" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:108 -msgid "Introducir un ID de perfil válido para usuarios" -msgstr "Введите действительный идентификатор профиля для пользователей" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:118 -#, fuzzy -msgid "" -"Esta actualización utiliza un nuevo esquema de encriptación, por lo que es " -"necesario reencriptar los datos almacenados" -msgstr "" -"Это обновление использует новую схему шифрования, поэтому потребуется " -"перекодировать все зашифрованные данные." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:89 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:120 -#, fuzzy -msgid "" -"Se van a actualizar %s cuentas. Este proceso puede tardar algo de tiempo." -msgstr "Будет обновлено %s записей. Этот процесс может занять некоторое время." - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:156 -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:122 -msgid "Para más información consulte: %s" -msgstr "Вы можете получить дополнительную информацию: %s" - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:140 -msgid "Introducir login de usuario válido" -msgstr "Введите существующий логин пользователя" - -#: ../../../../lib/SP/Services/Api/ApiService.php:96 -#: ../../../../lib/SP/Services/Auth/LoginService.php:137 -#: ../../../../lib/SP/Services/UserPassRecover/UserPassRecoverService.php:103 -#: ../../../modules/web/Controllers/UserPassResetController.php:124 -msgid "Intentos excedidos" -msgstr "Много попыток" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:55 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:68 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:81 -#, fuzzy -msgid "Clave del token" -msgstr "Пароль токена" - -#: ../../../../lib/SP/Services/Track/TrackService.php:162 -msgid "Intentos excedidos (%d/%d)" -msgstr "Попыток осталось (%d/%d)" - -#: ../../../../lib/SP/Http/Address.php:49 -#: ../../../../lib/SP/Http/Address.php:51 -#: ../../../../lib/SP/Http/Address.php:68 -#: ../../../../lib/SP/Http/Address.php:70 -#: ../../../../lib/SP/Http/Address.php:90 -#: ../../../../lib/SP/Http/Address.php:109 -msgid "IP inválida" -msgstr "Неверный IP" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:139 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:277 -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:291 -msgid "Token no encontrado" -msgstr "ТОкен не найден" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:68 -msgid "Error al crear track" -msgstr "Ошибка при создании трека" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:85 -msgid "Error al eliminar track" -msgstr "Ошибка при удалении трека" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:102 -msgid "Error al actualizar track" -msgstr "Ошибка при обновлении трека" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:146 -msgid "Error al obtener track" -msgstr "Ошибка при извлечении трека" - -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:169 -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:202 -msgid "Error al obtener tracks" -msgstr "Ошибка при извлечении трека" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:182 -#, fuzzy -msgid "Los elementos exportados son cuentas, clientes, categorías y etiquetas." -msgstr "" -"Экспортированные элементы - это учетные записи, заказчики, категории и теги." - -#: ../../../modules/web/themes/material-blue/views/main/upgrade.inc:39 -msgid "Si no se indican los IDs, se crearán nuevos elementos." -msgstr "Если идентификаторы элементов не установлены, они будут созданы." - -#: ../../../../lib/SP/Services/Task/TaskService.php:184 -msgid "Esperando actualización de progreso ..." -msgstr "Подождите, обновление" - -#: ../../../../inc/SP/Core/Upgrade/Account.class.php:47 -msgid "Actualizando IDs de cuentas" -msgstr "Обновление ID аккаунта" - -#: ../../../../inc/SP/Core/Upgrade/Category.class.php:48 -msgid "Actualizando IDs de categorías" -msgstr "Обновление ID категории" - -#: ../../../../inc/SP/Core/Upgrade/Customer.class.php:48 -msgid "Actualizando IDs de clientes" -msgstr "Обновление ID заказчика" - -#: ../../../../inc/SP/Core/Upgrade/Group.class.php:51 -msgid "Actualizando IDs de grupos" -msgstr "Обновление ID группы" - -#: ../../../../inc/SP/Core/Upgrade/Profile.class.php:54 -msgid "Actualizando IDs de perfil" -msgstr "Обновление ID профиля" - -#: ../../../../inc/SP/Core/Upgrade/User.class.php:52 -msgid "Actualizando IDs de usuarios" -msgstr "Обновление ID пользоввателя" - -#: ../../../config/strings.js.inc:87 -msgid "" -"Realizando tarea. Por favor, no cierre la ventana/pestaña del navegador." -msgstr "Выполнение задачи. Не закрывайте окно браузера / вкладку." - -#: ../../../config/strings.js.inc:88 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:88 -msgid "Incluir Letras" -msgstr "Использовать буквы" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:105 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:115 -msgid "Sesión Encriptada" -msgstr "Зашифрованная сессия" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:110 -msgid "Indica si los datos de la sesión están encriptados en el servidor" -msgstr "Сообщает, зашифрованы ли данные сеанса на сервере или нет" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "Sí" -msgstr "Да" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/themes/material-blue/views/config/info.inc:117 -msgid "No" -msgstr "Нет" - -#: ../../../config/strings.js.inc:89 -msgid "Cookies deshabilitadas. La aplicación no funcionará correctamente." -msgstr "Куки отключены. Приложение не будет работать должным образом." - -#: ../../../config/strings.js.inc:90 -msgid "Portapapeles no soportado por el navegador." -msgstr "Буфер обмена не поддерживается вашим браузером." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:324 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:334 -msgid "Atributo Login" -msgstr "Login Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:329 -msgid "" -"Define el atributo a utilizar para el login del usuario en la importación." -msgstr "Определяет атрибут входа пользователя при импорте." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:181 -msgid "" -"Habilita el acceso a los usuarios que estén incluidos en los grupos " -"secundarios." -msgstr "" -"Предоставляет доступ к пользователям, которые включены во вторичные группы." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:183 -msgid "" -"Por defecto el usuario de un grupo secundario es permitido si el grupo " -"secundario está establecido como el primario del usuario." -msgstr "" -"По умолчанию пользователь во вторичной группе предоставляется, если " -"вторичная группа задана в качестве основной группы пользователя." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:179 -msgid "Acceso Grupos Secundarios" -msgstr "Доступ к дополнительным группам" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:182 -msgid "Encriptar los datos de la sesión de PHP." -msgstr "Шифрование данных сеанса PHP" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:183 -msgid "" -"Esta funcionalidad incrementa la seguridad de las sesiones de PHP ya que los " -"datos almacenados no serán legibles." -msgstr "" -"Эта функция повышает безопасность сеансов PHP, поскольку сохраненные данные " -"не будут читаемыми." - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:180 -msgid "Encriptar Sesión" -msgstr "Зашифровать сеанс" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:347 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:357 -msgid "Atributo Nombre" -msgstr "Login Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:352 -msgid "" -"Define el atributo a utilizar para el nombre del usuario en la importación." -msgstr "Определяет атрибут для имени пользователя при импорте." - -#: ../../../config/strings.js.inc:92 -msgid "Hay una versión más reciente del plugin {0} ({1})" -msgstr "There is a more recent version of {0} plugin ({1})" - -#: ../../../../lib/SP/Bootstrap.php:267 -msgid "Versión de PHP requerida >= %s <= %s" -msgstr "Required PHP version >= %s <= %s" - -#: ../../../../lib/SP/Config/ConfigUtil.php:111 -msgid "Actual: %s - Necesario: 750" -msgstr "Current: %s - Needed: 750" - -#: ../../../../lib/SP/Core/Acl/Actions.php:176 -msgid "Acción no encontrada" -msgstr "Action not found" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:103 -#: ../../../../lib/SP/Core/Context/ContextBase.php:126 -msgid "Contexto ya inicializado" -msgstr "Context already initialized" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:109 -msgid "Contexto inválido" -msgstr "Invalid context" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:154 -msgid "Contexto no inicializado" -msgstr "Context not initialized" - -#: ../../../../lib/SP/Core/UI/Theme.php:193 -msgid "Clase no válida para iconos" -msgstr "Invalid icons class" - -#: ../../../../lib/SP/Mvc/Model/QueryCondition.php:71 -msgid "Tipo de filtro inválido" -msgstr "Invalid filter type" - -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:95 -#: ../../../../lib/SP/Mvc/View/Components/SelectItemAdapter.php:157 -msgid "Tipo de objeto incorrecto" -msgstr "Wrong object type" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:124 -msgid "Realizado por: %s (%s)" -msgstr "Performed by: %s (%s)" - -#: ../../../../lib/SP/Providers/Mail/MailHandler.php:125 -msgid "Dirección IP: %s" -msgstr "IP Address: %s" - -#: ../../../../lib/SP/Providers/Mail/MailProvider.php:91 -msgid "No es posible inicializar" -msgstr "Unable to initialize" - -#: ../../../../lib/SP/Providers/Notification/NotificationHandler.php:155 -#: ../../../modules/web/Controllers/NotificationController.php:267 -#: ../../../modules/web/Controllers/NotificationController.php:298 -msgid "Notificación" -msgstr "Notification" - -#: ../../../../lib/SP/Repositories/Account/AccountFileRepository.php:302 -msgid "Error al eliminar los archivos" -msgstr "Error while deleting the files" - -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:292 -#: ../../../../lib/SP/Repositories/Account/AccountHistoryRepository.php:315 -#: ../../../../lib/SP/Repositories/Account/AccountRepository.php:501 -#: ../../../../lib/SP/Services/Account/AccountService.php:616 -msgid "Error al eliminar las cuentas" -msgstr "Error while deleting the accounts" - -#: ../../../../lib/SP/Repositories/Category/CategoryRepository.php:253 -msgid "Error al eliminar la categorías" -msgstr "Error while deleting the categories" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:264 -#: ../../../../lib/SP/Services/Client/ClientService.php:127 -msgid "Error al eliminar los clientes" -msgstr "Error while deleting the clients" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:239 -msgid "Error al eliminar los campos personalizados" -msgstr "Error while removing the custom fields" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:61 -msgid "Error al crear el tipo de campo" -msgstr "Error while creating the field type" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:97 -msgid "Error al actualizar el tipo de campo" -msgstr "Error while updating the field type" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:179 -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:198 -msgid "Error al eliminar el tipo de campo" -msgstr "Error while deleting the field type" - -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:179 -#: ../../../../lib/SP/Repositories/Notification/NotificationRepository.php:302 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:140 -#: ../../../../lib/SP/Services/Notification/NotificationService.php:159 -msgid "Error al eliminar las notificaciones" -msgstr "Error while deleting the notifications" - -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:447 -#: ../../../../lib/SP/Repositories/PublicLink/PublicLinkRepository.php:493 -msgid "El enlace no existe" -msgstr "The link does not exist" - -#: ../../../../lib/SP/Repositories/Tag/TagRepository.php:243 -#: ../../../../lib/SP/Services/Tag/TagService.php:126 -msgid "Error al eliminar etiquetas" -msgstr "Error while removing the tags" - -#: ../../../../lib/SP/Repositories/User/UserRepository.php:353 -#: ../../../../lib/SP/Services/User/UserService.php:209 -msgid "Error al eliminar los usuarios" -msgstr "Error while deleting the users" - -#: ../../../../lib/SP/Services/User/UserPassService.php:256 -#: ../../../../lib/SP/Services/User/UserService.php:123 -#: ../../../../lib/SP/Services/User/UserService.php:154 -#: ../../../../lib/SP/Services/User/UserService.php:173 -msgid "El usuario no existe" -msgstr "The user does not exist" - -#: ../../../../lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 -#: ../../../../lib/SP/Services/UserProfile/UserProfileService.php:114 -msgid "Error al eliminar los perfiles" -msgstr "Error while removing the profiles" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:139 -msgid "Cuentas actualizadas: %d / %d" -msgstr "Accounts updated: %d / %d" - -#: ../../../../lib/SP/Services/Account/AccountCryptService.php:148 -msgid "Cuentas actualizadas: %d / %d - %d%% - ETA: %ds (%.2f/s)" -msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" - -#: ../../../../lib/SP/Services/Account/AccountFileService.php:145 -msgid "Error al eliminar archivos" -msgstr "Error while deleting the files" - -#: ../../../../lib/SP/Services/Api/ApiRequest.php:88 -msgid "Fomato incorrecto" -msgstr "Invalid format" - -#: ../../../modules/api/Controllers/Help/TagHelp.php:43 -#: ../../../modules/api/Controllers/Help/TagHelp.php:65 -#: ../../../modules/api/Controllers/Help/TagHelp.php:89 -msgid "Id de etiqueta" -msgstr "Tag Id" - -#: ../../../../lib/SP/Services/AuthToken/AuthTokenService.php:158 -msgid "Error al eliminar tokens" -msgstr "Error while removing the tokens" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:763 -msgid "Exportación" -msgstr "Export" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:167 -msgid "Copiando base de datos" -msgstr "Copying database" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:303 -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:338 -msgid "Copiando aplicación" -msgstr "Copying application" - -#: ../../../../lib/SP/Services/Config/ConfigService.php:68 -#: ../../../../lib/SP/Services/Config/ConfigService.php:153 -msgid "Parámetro no encontrado (%s)" -msgstr "Parameter not found (%s)" - -#: ../../../../lib/SP/Services/Service.php:109 -msgid "Rollback" -msgstr "Rollback" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:160 -msgid "Error al comprobar clave temporal" -msgstr "Error while checking the temporary password" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:109 -msgid "Campo no encontrado" -msgstr "Field not found" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldDefService.php:130 -msgid "Error al eliminar los campos" -msgstr "Error while deleting the fields" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:233 -msgid "Exportando categorías" -msgstr "Exporting categories" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:345 -msgid "Exportando clientes" -msgstr "Exporting clients" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:391 -msgid "Exportando etiquetas" -msgstr "Exporting tags" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:435 -msgid "Exportando cuentas" -msgstr "Exporting accounts" - -#: ../../../../lib/SP/Services/Import/CsvImportBase.php:158 -#: ../../../../lib/SP/Services/Import/KeepassImport.php:103 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:387 -msgid "Cuenta importada" -msgstr "Account imported" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:58 -msgid "Importación XML KeePass" -msgstr "KeePass XML Import" - -#: ../../../../lib/SP/Services/Import/KeepassImport.php:91 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:211 -msgid "Categoría importada" -msgstr "Category imported" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:58 -msgid "Importación XML sysPass" -msgstr "sysPass XML Import" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:162 -msgid "Datos desencriptados" -msgstr "Data unencrypted" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:250 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:290 -msgid "Cliente importado" -msgstr "Client imported" - -#: ../../../../lib/SP/Services/Import/SyspassImport.php:326 -msgid "Etiqueta importada" -msgstr "Tag imported" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:99 -msgid "Formato no detectado" -msgstr "Format not detected" - -#: ../../../../lib/SP/Services/Import/XmlImport.php:107 -msgid "Not implemented" -msgstr "Not implemented" - -#: ../../../../lib/SP/Services/Install/MySQL.php:135 -msgid "No es posible comprobar el usuario de sysPass (%s)" -msgstr "Unable to check the sysPass user (%s)" - -#: ../../../../lib/SP/Services/Install/MySQL.php:213 -#: ../../../../lib/SP/Services/Install/MySQL.php:329 -#: ../../../../lib/SP/Services/Install/MySQL.php:341 -msgid "Error al crear la BBDD ('%s')" -msgstr "Error while creating the DB ('%s')" - -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:134 -#: ../../../../lib/SP/Services/Ldap/LdapImportService.php:229 -msgid "Importado desde LDAP" -msgstr "Imported from LDAP" - -#: ../../../../lib/SP/Services/Mail/MailService.php:66 -msgid "Prueba de correo" -msgstr "Mail test" - -#: ../../../../lib/SP/Services/Mail/MailService.php:67 -msgid "" -"Esto es una prueba de correo para verificar el correcto funcionamiento de la " -"configuración." -msgstr "" -"This is a test email in order to verify that the configuration is working " -"right." - -#: ../../../../lib/SP/Services/PublicLink/PublicLinkService.php:238 -msgid "Error al eliminar los enlaces" -msgstr "Error while removing the links" - -#: ../../../../lib/SP/Services/Task/TaskService.php:81 -msgid "No es posible crear archivo de bloqueo" -msgstr "Unable to create the lock file" - -#: ../../../../lib/SP/Services/Track/TrackService.php:163 -msgid "Segundos" -msgstr "Seconds" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:63 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAppService.php:86 -msgid "Actualizar Aplicación" -msgstr "Update Application" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:57 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:59 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:102 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:139 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:171 -msgid "Actualización de campos personalizados" -msgstr "Custom fields update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:88 -#: ../../../../lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:157 -#: ../../../modules/web/Controllers/CustomFieldController.php:235 -#: ../../../modules/web/Controllers/CustomFieldController.php:272 -msgid "Campo" -msgstr "Field" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:56 -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:102 -msgid "Actualización de enlaces públicos" -msgstr "Public links update" - -#: ../../../../lib/SP/Services/Upgrade/UpgradePublicLink.php:90 -#: ../../../modules/web/Controllers/PublicLinkController.php:246 -msgid "Enlace" -msgstr "Link" - -#: ../../../../lib/SP/Services/UserGroup/UserGroupService.php:115 -msgid "Error al eliminar los grupos" -msgstr "Error while deleting the groups" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:225 -#: ../../../../lib/SP/Storage/File/FileHandler.php:280 -msgid "No es posible leer el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:47 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:58 -msgid "Error al leer datos del archivo (%s)" -msgstr "Error while reading file data (%s)" - -#: ../../../../lib/SP/Services/Export/XmlExportService.php:114 -#: ../../../../lib/SP/Storage/File/FileCache.php:74 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:116 -msgid "No es posible crear el directorio (%s)" -msgstr "Unable to create the directory (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:69 -#: ../../../../lib/SP/Storage/File/FileHandler.php:132 -msgid "No es posible escribir en el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:86 -msgid "No es posible abrir el archivo (%s)" -msgstr "Unable to open the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCache.php:92 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:128 -msgid "Error al eliminar el archivo (%s)" -msgstr "Error while deleting the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:54 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:104 -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:124 -msgid "No es posible leer/escribir el archivo (%s)" -msgstr "Unable to read/write the file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:57 -msgid "Error al descomprimir datos del archivo (%s)" -msgstr "Error while decompressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:61 -msgid "Error al obtener los datos" -msgstr "Error while retrieving the data" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:99 -msgid "Error al comprimir datos del archivo (%s)" -msgstr "Error while compressing the file data (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:112 -msgid "Error al escribir datos en el archivo (%s)" -msgstr "Error while writing data to file (%s)" - -#: ../../../../lib/SP/Storage/File/FileCachePacked.php:144 -msgid "Datos no cargados" -msgstr "Data not loaded" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:170 -msgid "No es posible cerrar el archivo (%s)" -msgstr "Unable to close the file (%s)" - -#: ../../../modules/api/Controllers/AccountController.php:70 -msgid "Cuenta visualizada" -msgstr "Account displayed" - -#: ../../../modules/api/Controllers/AccountController.php:102 -#: ../../../modules/web/Controllers/AccountController.php:554 -#: ../../../modules/web/Controllers/AccountController.php:610 -msgid "Clave visualizada" -msgstr "Password viewed" - -#: ../../../modules/api/Controllers/ConfigController.php:82 -#: ../../../modules/web/Controllers/ConfigBackupController.php:92 -msgid "Exportación de sysPass en XML" -msgstr "sysPass XML export" - -#: ../../../modules/api/Controllers/TagController.php:62 -#: ../../../modules/api/Controllers/TagController.php:89 -#: ../../../modules/api/Controllers/TagController.php:117 -#: ../../../modules/api/Controllers/TagController.php:146 -msgid "Etiqueta" -msgstr "Tag" - -#: ../../../modules/api/Init.php:135 -msgid "Es necesario actualizar" -msgstr "Updating needed" - -#: ../../../modules/web/Controllers/AccountController.php:227 -msgid "HTTPS" -msgstr "HTTPS" - -#: ../../../modules/web/Controllers/AccountController.php:649 -#: ../../../modules/web/Controllers/AccountController.php:683 -msgid "Clave copiada" -msgstr "Password copied" - -#: ../../../modules/web/Controllers/AccountFileController.php:83 -#: ../../../modules/web/Controllers/AccountFileController.php:96 -msgid "Archivo visualizado" -msgstr "File viewed" - -#: ../../../modules/web/Controllers/AccountFileController.php:136 -msgid "Archivo descargado" -msgstr "File downloaded" - -#: ../../../modules/web/Controllers/AccountFileController.php:186 -msgid "Extensión: %s" -msgstr "Extension: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:193 -msgid "Archivo: %s" -msgstr "File: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:201 -msgid "Máximo tamaño: %s" -msgstr "Maximum size: %s" - -#: ../../../modules/web/Controllers/AccountFileController.php:211 -msgid "Máximo tamaño: %d KB" -msgstr "Maximum size: %d KB" - -#: ../../../modules/web/Controllers/AccountFileController.php:334 -msgid "Archivo Eliminado" -msgstr "File Deleted" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 -#: ../../../modules/web/Controllers/AuthTokenController.php:226 -#: ../../../modules/web/Controllers/AuthTokenController.php:292 -#: ../../../modules/web/Controllers/AuthTokenController.php:301 -#: ../../../modules/web/Controllers/AuthTokenController.php:339 -msgid "Autorización" -msgstr "Authorization" - -#: ../../../modules/web/Controllers/AuthTokenController.php:338 -msgid "Autorización visualizada" -msgstr "Authorization viewed" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:78 -msgid "Archivos habilitados" -msgstr "Files enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:83 -msgid "Archivos deshabilitados" -msgstr "Files disabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:96 -msgid "Enlaces públicos habilitados" -msgstr "Public links enabled" - -#: ../../../modules/web/Controllers/ConfigAccountController.php:101 -msgid "Enlaces públicos deshabilitados" -msgstr "Public links disabled" - -#: ../../../../lib/SP/Services/Crypt/TemporaryMasterPassService.php:218 -msgid "Esta clave estará activa hasta: %s" -msgstr "This password will be valid until: %s" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:190 -msgid "Email enviado" -msgstr "Email sent" - -#: ../../../modules/web/Controllers/ConfigEncryptionController.php:196 -msgid "Error al enviar email" -msgstr "Error while sending the email" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:97 -msgid "Syslog remoto habilitado" -msgstr "Remote syslog enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:153 -msgid "Auth Basic habilitada" -msgstr "Auth Basic enabled" - -#: ../../../modules/web/Controllers/ConfigGeneralController.php:159 -msgid "Auth Basic deshabiltada" -msgstr "Auth Basic disabled" - -#: ../../../modules/web/Controllers/ConfigImportController.php:83 -msgid "No se importaron cuentas" -msgstr "No accounts were imported" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:115 -#: ../../../modules/web/Controllers/ConfigLdapController.php:238 -msgid "Parámetros de LDAP incorrectos" -msgstr "Wrong LDAP parameters" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:245 -msgid "Importación LDAP" -msgstr "LDAP Import" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:271 -msgid "Usuarios importados: %d / %d" -msgstr "Imported users: %d / %d" - -#: ../../../modules/web/Controllers/ConfigLdapController.php:272 -msgid "Errores: %d" -msgstr "Errors: %d" - -#: ../../../modules/web/Controllers/ConfigMailController.php:145 -msgid "Compruebe su buzón de correo" -msgstr "Please, check your inbox" - -#: ../../../modules/web/Controllers/ConfigWikiController.php:99 -msgid "DokuWiki habilitada" -msgstr "DokuWiki enabled" - -#: ../../../modules/web/Controllers/CustomFieldController.php:298 -msgid "Ver Campo" -msgstr "View Field" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 -#: ../../../config/actions.xml:439 -msgid "Actualizar Enlace Público" -msgstr "Update Public Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:163 -#: ../../../modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:164 -msgid "Nuevo Enlace" -msgstr "New Link" - -#: ../../../modules/web/Controllers/Helpers/Grid/PluginGrid.php:118 -msgid "No disponible" -msgstr "Unavailable" - -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 -#: ../../../modules/web/Controllers/Helpers/Grid/EventlogGrid.php:183 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 -msgid "Refrescar" -msgstr "Refresh" - -#: ../../../modules/web/Controllers/Helpers/Grid/NotificationGrid.php:146 -msgid "Sólo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/Controllers/PublicLinkController.php:109 -msgid "Nuevo Enlace Público" -msgstr "New Public Link" - -#: ../../../modules/web/Controllers/PublicLinkController.php:196 -msgid "Editar Enlace Público" -msgstr "Edit Public Link" - -#: ../../../modules/web/Controllers/StatusController.php:94 -msgid "Versión no disponible" -msgstr "Version unavailable" - -#: ../../../modules/web/Controllers/StatusController.php:142 -msgid "Notificaciones no disponibles" -msgstr "Notifications not available" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/TagController.php:288 -#: ../../../config/actions.xml:511 -msgid "Ver Etiqueta" -msgstr "View Tag" - -#: ../../../modules/web/Controllers/UserPassResetController.php:90 -msgid "Datos incorrectos" -msgstr "Wrong data" - -#: ../../../modules/web/Controllers/UserPassResetController.php:94 -msgid "No es posible recuperar la clave" -msgstr "Unable to reset the password" - -#: ../../../modules/web/Forms/PublicLinkForm.php:85 -msgid "Es necesario una cuenta" -msgstr "An account is needed" - -#: ../../../config/strings.js.inc:91 -msgid "Realizando auto-login" -msgstr "Performing auto-login" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:71 -msgid "Abrir enlace a: %s" -msgstr "Open link to: %s" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:112 -msgid "Cuenta Privada (Grupo)" -msgstr "Private Account (Group)" - -#: ../../../modules/web/themes/material-blue/views/account/search-rows.inc:155 -msgid "Notes" -msgstr "Notes" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:28 -msgid "Usar Auth Basic" -msgstr "Use Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:26 -msgid "Usar auto-login con Auth Basic" -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:52 -msgid "Dominio" -msgstr "Domain" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:57 -msgid "" -"El dominio será añadido al nombre de usuario de sysPass para comprobarlo con " -"el de Auth Basic." -msgstr "" -"The domain will be added to the sysPass user name for checking against the " -"Auth Basic one." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:67 -msgid "Nombre de dominio" -msgstr "Domain name" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:78 -msgid "" -"Define el grupo de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default users group for newly SSO users" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:103 -msgid "" -"Define el perfil de usuarios por defecto para los nuevos usuarios de SSO." -msgstr "Sets the default profile for the newly created SSO users." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:318 -msgid "Importación" -msgstr "Import" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:382 -msgid "Importar Grupos" -msgstr "Import Groups" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:391 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:401 -msgid "Atributo Nombre Grupo" -msgstr "Group Name Attribute" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:396 -msgid "" -"Define el atributo a utilizar para el nombre del grupo en la importación." -msgstr "Defines the attribute for the user group name when importing." - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:412 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:426 -msgid "Filtro" -msgstr "Filter" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:417 -msgid "Filtro para importar usuarios o grupos de LDAP." -msgstr "Filter for importing LDAP users or groups." - -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:160 -#: ../../../modules/web/themes/material-blue/views/config/mail.inc:163 -msgid "Destinatarios" -msgstr "Recipients" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:50 -msgid "Indica si el cliente es visible para todos los usuarios." -msgstr "Sets whether the client is visible by all users" - -#: ../../../modules/web/themes/material-blue/views/itemshow/client.inc:53 -msgid "" -"Por defecto los clientes asignados a cuentas sólo son visibles para los " -"usuarios con acceso a las cuentas." -msgstr "" -"By default, the clients assigned to accounts only will be visible to users " -"who are granted to access to the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:84 -#: ../../../modules/web/themes/material-blue/views/itemshow/public_link.inc:86 -msgid "URL" -msgstr "URL" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:63 -msgid "Login SSO" -msgstr "SSO Login " - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:71 -msgid "Login de inicio de sesión con SSO" -msgstr "Session login with SSO" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:96 -msgid "Sólo para administradores de la aplicación" -msgstr "Only for application administrators" - -#: ../../../modules/web/themes/material-blue/views/notification/notification.inc:100 -msgid "Solo Admins" -msgstr "Only Admins" - -#: ../../../modules/web/themes/material-blue/views/upgrade/index.inc:16 -msgid "Para iniciar la actualización introduzca el código de seguridad" -msgstr "Please enter the security code to start the upgrade" - -#: ../../../../lib/SP/Core/Context/ContextBase.php:73 -msgid "No es posible cambiar el valor de la clave" -msgstr "Unable to change password value" - -#: ../../../../lib/SP/Repositories/Client/ClientRepository.php:345 -msgid "Filtro incorrecto" -msgstr "Wrong filter" - -#: ../../../../lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:159 -msgid "El campo personalizado no existe" -msgstr "Custom field not found" - -#: ../../../../lib/SP/Repositories/Plugin/PluginRepository.php:212 -#: ../../../../lib/SP/Services/Plugin/PluginService.php:137 -msgid "Error al eliminar los plugins" -msgstr "Error while deleting the plugins" - -#: ../../../../lib/SP/Services/Account/AccountService.php:220 -msgid "Clave maestra no establecida" -msgstr "Master password not set" - -#: ../../../../lib/SP/Services/Category/CategoryService.php:134 -msgid "Error al eliminar las categorías" -msgstr "Error while deleting categories" - -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:80 -#: ../../../../lib/SP/Services/Config/ConfigBackupService.php:87 -msgid "No es posible restaurar la configuración" -msgstr "Unable to restore configuration" - -#: ../../../../lib/SP/Services/CustomField/CustomFieldTypeService.php:84 -msgid "Tipo de campo no encontrado" -msgstr "Field type not found" - -#: ../../../../lib/SP/Services/Export/XmlVerifyService.php:177 -#: ../../../../lib/SP/Services/Import/SyspassImport.php:176 -msgid "Fallo en la verificación del hash de integridad" -msgstr "Error while checking integrity hash" - -#: ../../../../lib/SP/Services/Install/Installer.php:359 -msgid "Error al crear el usuario 'admin'" -msgstr "Error while creating 'admin' user" - -#: ../../../../lib/SP/Services/Install/MySQL.php:309 -msgid "Error al seleccionar la BBDD '%s' (%s)" -msgstr "Error while selecting '%s' database (%s)" - -#: ../../../../lib/SP/Services/Mail/MailService.php:186 -msgid "Servicio de correo no disponible" -msgstr "Mail service unavailable" - -#: ../../../../lib/SP/Services/Service.php:137 -#: ../../../../lib/SP/Services/Service.php:144 -msgid "Error ol obtener la clave maestra del contexto" -msgstr "Error while retrieving master pass from context" - -#: ../../../../lib/SP/Services/Service.php:160 -#: ../../../../lib/SP/Services/Service.php:164 -msgid "Error ol establecer la clave maestra en el contexto" -msgstr "Error while setting master password in context" - -#: ../../../../lib/SP/Services/Track/TrackService.php:87 -#: ../../../../lib/SP/Services/Track/TrackService.php:101 -#: ../../../../lib/SP/Services/Track/TrackService.php:128 -msgid "Track no encontrado" -msgstr "Track not found" - -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:55 -#: ../../../../lib/SP/Services/Upgrade/UpgradeAuthToken.php:85 -msgid "Actualización de autorizaciones API" -msgstr "API authorizations update" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:101 -#: ../../../../lib/SP/Storage/File/FileHandler.php:115 -msgid "No es posible leer desde el archivo (%s)" -msgstr "Unable to read from file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:185 -msgid "No es posible escribir el archivo (%s)" -msgstr "Unable to write in file (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:200 -msgid "Archivo no encontrado (%s)" -msgstr "File not found (%s)" - -#: ../../../../lib/SP/Storage/File/FileHandler.php:252 -msgid "No es posible eliminar el archivo (%s)" -msgstr "Unable to delete file (%s)" - -#: ../../../../lib/SP/Storage/File/XmlHandler.php:89 -#: ../../../../lib/SP/Storage/File/XmlHandler.php:309 -msgid "El nodo XML no existe" -msgstr "The XML node does not exist" - -#: ../../../../lib/SP/Util/ImageUtil.php:65 -msgid "Imagen no válida" -msgstr "Invalid image" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:117 -msgid "Verificación de datos exportados finalizada" -msgstr "Verification of exported data finished" - -#: ../../../modules/web/Controllers/ConfigBackupController.php:119 -#: ../../../modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:127 -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:13 -#: ../../../modules/web/themes/material-blue/views/itemshow/custom_field.inc:86 -msgid "Encriptado" -msgstr "Encrypted" - -#: ../../../modules/web/Controllers/Traits/ItemTrait.php:173 -msgid "Error al actualizar los datos del campo personalizado" -msgstr "Error while updating custom field's data" - -#: ../../../modules/web/themes/material-blue/views/account/account.inc:301 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:303 -#: ../../../modules/web/themes/material-blue/views/account/account.inc:306 -msgid "Enlace Directo" -msgstr "Direct Link" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 -msgid "Parámetros especiales" -msgstr "Special parameters" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 -msgid "" -"Es posible utilizar uno o varios parámetros especiales separados por espacios" -msgstr "" -"You could use either one or several special parameters separated by blank " -"spaces" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 -msgid "Devolver la cuenta con ID" -msgstr "Returns the account for the given ID" - -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 -msgid "Operador para los parámetros especiales" -msgstr "Operator for special parameters" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:18 -msgid "Los datos serán encriptados al guardar" -msgstr "Data will be encrypted after saving" - -#: ../../../modules/web/themes/material-blue/views/common/aux-customfields.inc:23 -msgid "Los datos serán desencriptados al guardar" -msgstr "Data will be unencrypted after saving" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:67 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:20 -msgid "Caducidad clave cuentas" -msgstr "Accounts password expiry" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:68 -msgid "Habilita la caducidad de la clave de cuentas." -msgstr "Enables the accounts password expiry date." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:76 -msgid "Tiempo caducidad clave" -msgstr "Password expiry time" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:81 -msgid "Número de días para la caducidad de la clave de cuenta." -msgstr "Number of days for the account expiry date." - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:91 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:28 -msgid "Tiempo caducidad (días)" -msgstr "Expire time (days)" - -#: ../../../modules/web/themes/material-blue/views/config/encryption.inc:126 -msgid "" -"Confirmar el cambio de clave maestra después de haber leído las advertencias " -"anteriores." -msgstr "" -"Confirm the master password change after you have been read all the above " -"warnings." - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:29 -msgid "Usar Auth Basic para autorizar los accesos a la aplicación." -msgstr "Use Auth Basic for authorizing the accesses to the application" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:43 -msgid "Usar Auth Basic SSO" -msgstr "Use Auth Basic SSO" - -#: ../../../modules/web/themes/material-blue/views/config/general-auth.inc:44 -msgid "Usar auto-login con Auth Basic." -msgstr "Use auto-login through Auth Basic" - -#: ../../../modules/web/themes/material-blue/views/config/general-proxy.inc:29 -msgid "Usar proxy para comprobación de actualizaciones y notificaciones." -msgstr "Use a proxy server for checking out for updates and notifications." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:302 -#: ../../../modules/web/themes/material-blue/views/itemshow/user.inc:304 -msgid "Usado en" -msgstr "Used in" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_group.inc:102 -msgid "(*) Incluido en grupo" -msgstr "(*) Listed in group" - -#: ../../../../lib/SP/Services/Backup/FileBackupService.php:295 -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:5 -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:10 -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:9 -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:9 -msgid "La extensión '%s' no está disponible" -msgstr "The '%s' extension is unavailable" - -#: ../../../../lib/SP/Services/Service.php:133 -#: ../../../../lib/SP/Services/Service.php:140 -msgid "Error al obtener la clave maestra del contexto" -msgstr "Error while retrieving master password from context" - -#: ../../../modules/web/themes/material-blue/views/config/accounts.inc:13 -msgid "Esta extensión es necesaria para mostrar las claves como imágenes" -msgstr "This extension is needed to display passwords as images" - -#: ../../../modules/web/themes/material-blue/views/config/backup.inc:9 -msgid "" -"Esta extensión es necesaria para generar los archivos de copia de seguridad " -"de la aplicación" -msgstr "This extension is needed to build the application's backup files" - -#: ../../../modules/web/themes/material-blue/views/config/general-site.inc:14 -msgid "" -"Esta extensión es necesaria comprobar las actualizaciones y notificaciones" -msgstr "This extension is needed to check for sysPass updates and notices" - -#: ../../../modules/web/themes/material-blue/views/config/info.inc:46 -msgid "Extensiones no disponibles" -msgstr "Unavailable extensions" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:13 -msgid "Esta extensión es necesaria conectar con el servidor de LDAP" -msgstr "This extension is needed to connect to the LDAP server" - -#: ../../../modules/web/themes/material-blue/views/config/wiki.inc:13 -msgid "Esta extensión es necesaria conectar con DokuWiki" -msgstr "This extension is needed to connect with DokuWiki" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:31 -msgid "Favoritos" -msgstr "Favorites" - #. (itstool) path: action/text #: ../../../config/actions.xml:97 msgid "Gestión Plugins" msgstr "Plugins Management" +#. (itstool) path: action/text +#: ../../../config/actions.xml:103 +msgid "Usuarios y Accesos" +msgstr "Пользователи и доступы" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:109 +msgid "Seguridad y Auditoría" +msgstr "Security and Audit" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:115 +msgid "Gestión Usuarios" +msgstr "Управление пользователями" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:121 +msgid "Gestión Grupos" +msgstr "Управление группами" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:127 +msgid "Gestión Perfiles" +msgstr "Управление профилями" + #. (itstool) path: action/text #: ../../../config/actions.xml:139 msgid "Buscar Eventos" @@ -7751,6 +4761,21 @@ msgstr "Search for Events" msgid "Limpiar Eventos" msgstr "Clear Events" +#. (itstool) path: action/text +#: ../../../config/actions.xml:151 ../../../config/actions.xml:481 +msgid "Ver Cuenta" +msgstr "Просмотр деталей учетной записи" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:181 +msgid "Editar Clave de Cuenta" +msgstr "Изменить пароль учетной записи" + +#. (itstool) path: action/text +#: ../../../config/actions.xml:211 ../../../config/actions.xml:469 +msgid "Subir Archivo" +msgstr "Загрузить файл" + #. (itstool) path: action/text #: ../../../config/actions.xml:229 msgid "Buscar Archivos" @@ -7786,11 +4811,6 @@ msgstr "Edit Wiki" msgid "Eliminar Wiki" msgstr "Delete Wiki" -#. (itstool) path: action/text -#: ../../../config/actions.xml:331 -msgid "Nuevo CLiente" -msgstr "New Client" - #. (itstool) path: action/text #: ../../../config/actions.xml:361 msgid "Nuevo Token API" @@ -7842,17 +4862,21 @@ msgid "Buscar Campo Personalizado" msgstr "Search for Custom Field" #. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 -#: ../../../modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 -#: ../../../config/actions.xml:433 -msgid "Eliminar Enlace Público" -msgstr "Delete Public Link" +#: ../../../config/actions.xml:427 +#, fuzzy +msgid "Ver Enlace Público" +msgstr "Показать публичную ссылку" #. (itstool) path: action/text #: ../../../config/actions.xml:445 msgid "Buscar Enlace Público" msgstr "Search for Public Link" +#. (itstool) path: action/text +#: ../../../config/actions.xml:535 +msgid "Nuevo Plugin" +msgstr "Новый плагин" + #. (itstool) path: action/text #: ../../../config/actions.xml:553 msgid "Habilitar Plugin" @@ -7933,6 +4957,11 @@ msgstr "XML Import" msgid "Configuración Exportación" msgstr "Export Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:763 +msgid "Exportación" +msgstr "Export" + #. (itstool) path: action/text #: ../../../config/actions.xml:769 msgid "Configuración Email" @@ -7943,6 +4972,11 @@ msgstr "Email Configuration" msgid "Configuración LDAP" msgstr "LDAP Configuration" +#. (itstool) path: action/text +#: ../../../config/actions.xml:781 +msgid "Sincronización LDAP" +msgstr "Синхронизация LDAP" + #. (itstool) path: action/text #: ../../../config/actions.xml:787 msgid "Gestión de Cuenta (H)" @@ -7953,432 +4987,11 @@ msgstr "Account Management (H)" msgid "Crear Notificación" msgstr "Create Notification" -#: ../../../../lib/SP/Services/Import/SyspassImport.php:177 -msgid "" -"Si está importando un archivo exportado desde el mismo origen, los datos " -"pueden estar comprometidos." -msgstr "" -"If you are importing an exported file from the same origin, the data could " -"be compromised." - -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:152 -#: ../../../../lib/SP/Services/Upgrade/UpgradeDatabaseService.php:154 -msgid "El archivo de actualización no contiene datos" -msgstr "The update file does not contain data" - -#: ../../../modules/api/Controllers/CategoryController.php:62 -msgid "Categoría visualizada" -msgstr "Category displayed" - -#: ../../../modules/api/Controllers/ClientController.php:63 -msgid "Cliente visualizado" -msgstr "Client displayed" - -#: ../../../modules/api/Controllers/ConfigController.php:58 -#: ../../../modules/api/Controllers/ConfigController.php:83 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:43 -#: ../../../modules/api/Controllers/Help/ConfigHelp.php:54 -msgid "Ruta" -msgstr "Path" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:93 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:116 -msgid "Array con Ids de etiquetas" -msgstr "Array with tags id" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:132 -msgid "Array con Ids de etiquetas a filtrar" -msgstr "Array with tags id for filtering" - -#: ../../../modules/api/Controllers/Help/AccountHelp.php:133 -msgid "Operador de filtrado" -msgstr "Filtering operator" - -#: ../../../modules/api/Controllers/TagController.php:61 -msgid "Etiqueta visualizada" -msgstr "Tag displayed" - -#: ../../../modules/web/Controllers/AccountFileController.php:387 -msgid "No hay archivos asociados a la cuenta" -msgstr "There are no linked files for the account" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:76 -msgid "Error al crear permiso" -msgstr "Error while creating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:115 -msgid "Error al actualizar permiso" -msgstr "Error while updating the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:134 -msgid "Error al eliminar permiso" -msgstr "Error while removing the permission" - -#: ../../../../lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:249 -msgid "Error al eliminar los permisos" -msgstr "Error while removing the permissions" - -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:84 -#: ../../../../lib/SP/Services/Account/AccountDefaultPermissionService.php:105 -msgid "Permiso no encontrada" -msgstr "Permission not found" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:71 -#: ../../../config/actions.xml:847 -msgid "Ver Permiso" -msgstr "View Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:181 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:156 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:157 -#: ../../../config/actions.xml:853 -msgid "Nuevo Permiso" -msgstr "New Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:211 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:174 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:175 -#: ../../../config/actions.xml:859 -msgid "Editar Permiso" -msgstr "Edit Permission" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:248 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:251 -msgid "Permisos eliminados" -msgstr "Permissions deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:259 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:263 -msgid "Permiso eliminado" -msgstr "Permission deleted" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:289 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:293 -msgid "Permiso creado" -msgstr "Permission added" - -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:325 -#: ../../../modules/web/Controllers/AccountDefaultPermissionController.php:329 -msgid "Permiso actualizado" -msgstr "Permission updated" - -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:90 -msgid "Permisos por Defecto" -msgstr "Default Permissions" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:78 -msgid "Prioridad" -msgstr "Priority" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:115 -msgid "Forzado" -msgstr "Forced" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:141 -#: ../../../config/actions.xml:841 -msgid "Buscar Permiso" -msgstr "Search for Permission" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:191 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountDefaultPermissionGrid.php:192 -#: ../../../config/actions.xml:865 -msgid "Eliminar Permiso" -msgstr "Delete Permission" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:208 -msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" -msgstr "An element of type user, group or profile need to be set" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:133 -msgid "No hay permisos definidos" -msgstr "There aren't any defined permissions" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:75 -msgid "" -"Prioridad de asignación en caso de coincidir con otros permisos asignados " -"por usuario, grupo o perfil." -msgstr "" -"Assignment priority if permissions match with others assigned by user, group " -"or profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:95 -msgid "Prioridad de asignación" -msgstr "Assignment Priority" - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:107 -msgid "Indica si los permisos serán forzados al crear o modificar la cuenta." -msgstr "" -"Enforces the permissions to be set either on creating or updating an " -"account ." - -#: ../../../modules/web/themes/material-blue/views/itemshow/account_default_permission.inc:109 -msgid "Los permisos serán añadidos a los existentes." -msgstr "Permissions will be merged with the existing ones." - -#. (itstool) path: action/text -#: ../../../config/actions.xml:835 -msgid "Gestión Permisos" -msgstr "Permissions Management" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 -msgid "Es necesaria una clave con al menos %d caracteres" -msgstr "Password needs to be %d characters long" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:77 -msgid "La clave no cumple los carácteres requeridos" -msgstr "Password does not contain the required characters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:82 -msgid "Es necesario que la clave contenga letras" -msgstr "Password needs to contain letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:86 -msgid "Es necesario que la clave contenga minúsculas" -msgstr "Password needs to contain lower case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:90 -msgid "Es necesario que la clave contenga mayúsculas" -msgstr "Password needs to contain upper case letters" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:95 -msgid "Es necesario que la clave contenga números" -msgstr "Password needs to contain numbers" - -#: ../../../../lib/SP/Mvc/Controller/Validators/PasswordValidator.php:99 -msgid "Es necesario que la clave contenga símbolos" -msgstr "Password needs to contain symbols" - -#: ../../../../lib/SP/Providers/Auth/Ldap/LdapConnection.php:301 -msgid "Error al desconectar del servidor de LDAP" -msgstr "Error while disconnecting from LDAP server" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:84 -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:105 -msgid "Valor no encontrada" -msgstr "Value not found" - -#: ../../../../lib/SP/Services/ItemPreset/ItemPresetService.php:188 -msgid "Error al eliminar los valores" -msgstr "Error while deleting the values" - -#: ../../../../lib/SP/Services/Track/TrackService.php:208 -msgid "Dirección IP no establecida" -msgstr "IP address not set" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:94 -msgid "Valores Predeterminados" -msgstr "Preset Values" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:145 -#: ../../../config/actions.xml:853 -msgid "Buscar Valor" -msgstr "Search for Value" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:160 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:66 -msgid "Valor de Permiso" -msgstr "Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:161 -msgid "Nuevo Valor de Permiso" -msgstr "New Permission Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:184 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:86 -msgid "Valor de Cuenta Privada" -msgstr "Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:185 -msgid "Nuevo Valor de Cuenta Privada" -msgstr "New Private Account Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:208 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:102 -msgid "Valor de Timeout de Sesión" -msgstr "Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:209 -msgid "Nuevo Valor de Timeout de Sesión" -msgstr "New Session Timeout Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:232 -#: ../../../modules/web/Controllers/Helpers/ItemPresetHelper.php:117 -msgid "Valor de Clave de Cuentas" -msgstr "Account Password Preset" - -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:233 -msgid "Nuevo Valor de Clave de Cuentas" -msgstr "New Account Password Preset" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:256 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:257 -#: ../../../modules/web/Controllers/ItemPresetController.php:229 -#: ../../../config/actions.xml:871 -msgid "Editar Valor" -msgstr "Edit Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:273 -#: ../../../modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:274 -#: ../../../config/actions.xml:877 -msgid "Eliminar Valor" -msgstr "Delete Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:70 -#: ../../../config/actions.xml:859 -msgid "Ver Valor" -msgstr "Display Value" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/ItemPresetController.php:199 -#: ../../../config/actions.xml:865 -msgid "Nuevo Valor" -msgstr "New Value" - -#: ../../../modules/web/Controllers/ItemPresetController.php:266 -#: ../../../modules/web/Controllers/ItemPresetController.php:269 -msgid "Valores eliminados" -msgstr "Values deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:277 -#: ../../../modules/web/Controllers/ItemPresetController.php:281 -msgid "Valor eliminado" -msgstr "Value deleted" - -#: ../../../modules/web/Controllers/ItemPresetController.php:309 -#: ../../../modules/web/Controllers/ItemPresetController.php:314 -msgid "Valor creado" -msgstr "Value created" - -#: ../../../modules/web/Controllers/ItemPresetController.php:348 -#: ../../../modules/web/Controllers/ItemPresetController.php:353 -msgid "Valor actualizado" -msgstr "Value updated" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:116 -msgid "Tipo de valor no definido o incorrecto" -msgstr "Value type not set or incorrect" - -#: ../../../modules/web/Forms/ItemsPresetForm.php:182 -msgid "Expresión regular inválida" -msgstr "Invalid regular expression" - -#: ../../../modules/web/themes/material-blue/views/config/ldap.inc:81 -msgid "Habilita la conexión mediante TLS." -msgstr "Enables the connection over TLS" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:34 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:42 -msgid "Puntuación" -msgstr "Score" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:48 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:55 -msgid "Expresión Regular" -msgstr "Regular Expression" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:130 -msgid "Incluir Minúsculas" -msgstr "Include Lowercase" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:21 -msgid "Las cuentas sólo serán visibles por el usuario." -msgstr "Accounts will be only visible by the user." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:23 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:42 -msgid "Los administradores no podrán acceder a las cuentas." -msgstr "Administrators won't be able to display the accounts." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:40 -msgid "Las cuentas sólo serán visibles por el usuario y su grupo principal." -msgstr "Accounts will be only visible by the user and his/her main group." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:6 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:14 -msgid "Dirección IP" -msgstr "IP Address" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:19 -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:27 -msgid "Timeout" -msgstr "Timeout" - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 -msgid "" -"Prioridad de asignación en caso de coincidir con otros valores asignados por " -"usuario, grupo o perfil." -msgstr "" -"Assignment priority if values match with others assigned by user, group or " -"profile." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:117 -msgid "" -"Indica si los valores serán forzados al crear o modificar los elementos." -msgstr "Enforces the values to be set either on creating or updating an item." - -#: ../../../modules/web/themes/material-blue/views/itemshow/item_preset.inc:119 -msgid "Los valores serán añadidos a los existentes." -msgstr "Values will be merged with the existing ones." - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:421 -msgid "Valores por Defecto" -msgstr "Default Values" - -#: ../../../modules/web/themes/material-blue/views/itemshow/user_profile.inc:422 -msgid "Gestión de Valores por Defecto" -msgstr "Default Values Management" - #. (itstool) path: action/text #: ../../../config/actions.xml:847 msgid "Gestión Valores Predeterminados" msgstr "Preset Values Management" -#: ../../../../lib/SP/Repositories/Track/TrackRepository.php:118 -msgid "Error al vaciar tracks" -msgstr "Error while clearing tracks out" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 -msgid "Tracks" -msgstr "Tracks" - -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 -msgid "Fecha Desbloqueo" -msgstr "Date Unlocked" - -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 -#: ../../../config/actions.xml:889 -msgid "Buscar Track" -msgstr "Search for track" - -#: ../../../modules/web/Controllers/TrackController.php:110 -msgid "Track desbloqueado" -msgstr "Track unlocked" - -#: ../../../modules/web/Controllers/TrackController.php:135 -msgid "Tracks limpiados" -msgstr "Tracks cleared out" - -#: ../../../config/strings.js.inc:96 -msgid "Vaciar los tracks?" -msgstr "Clear tracks out?" - -#. (itstool) path: action/text -#: ../../../config/actions.xml:109 -msgid "Seguridad y Auditoría" -msgstr "Security and Audit" - #. (itstool) path: action/text #: ../../../config/actions.xml:883 msgid "Gestión de Tracks" @@ -8394,47 +5007,2171 @@ msgstr "Unlock track" msgid "Vaciar tracks" msgstr "Clear tracks out" -#: ../../../modules/api/Controllers/Help/AccountHelp.php:94 -#: ../../../modules/api/Controllers/Help/AccountHelp.php:117 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:43 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:67 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:93 -msgid "Id de grupo" -msgstr "Group Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:4 +msgid "Color" +msgstr "Цвет" -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:56 -#: ../../../modules/api/Controllers/Help/UserGroupHelp.php:70 -msgid "Array con Ids de usuarios" -msgstr "Array with users Id" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:5 +msgid "Número" +msgstr "Цифры" -#: ../../../modules/api/Controllers/UserGroupController.php:61 -msgid "Grupo visualizado" -msgstr "Group viewed" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:6 +msgid "Teléfono" +msgstr "Телефон" -#. (itstool) path: action/text -#: ../../../modules/web/Controllers/AccountManagerController.php:207 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:193 -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:194 -#: ../../../config/actions.xml:493 -msgid "Actualización Masiva" -msgstr "Bulk Update" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:7 +msgid "Área de Texto" +msgstr "Текстовое поле" -#: ../../../modules/web/Controllers/Helpers/Grid/AccountGrid.php:111 -#: ../../../modules/web/themes/material-blue/views/account/account-permissions.inc:156 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:37 -#: ../../../modules/web/themes/material-blue/views/account/details.inc:39 -msgid "Propietario" -msgstr "Owner" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:8 +msgid "Texto" +msgstr "Текст" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 -msgid "Buscar cuentas por nombre de cliente" -msgstr "Search for accounts by client name" +#. (itstool) path: strings/text +#: ../../../config/strings.xml:9 +msgid "Link" +msgstr "Ссылка" -#: ../../../modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 -msgid "Buscar cuentas por nombre de categoría" -msgstr "Search for accounts by category name" +#~ msgid "CONSULTA INVÁLIDA" +#~ msgstr "ОШИБОЧНЫЙ ЗАПРОС" -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:228 -#: ../../../modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:230 -msgid "Eliminar Historial" -msgstr "Delete History" +#~ msgid "La sesión no se ha iniciado o ha caducado" +#~ msgstr "Сессия истекла или ошибка сессии" + +#~ msgid "Es necesario un nombre de cuenta" +#~ msgstr "Необходимо имя учетной записи" + +#, fuzzy +#~ msgid "Es necesario un nombre de cliente" +#~ msgstr "Необходимо имя заказчика" + +#, fuzzy +#~ msgid "Es necesario un usuario" +#~ msgstr "Необходимо имя пользователя" + +#~ msgid "Es necesaria una clave" +#~ msgstr "Необходим пароль" + +#~ msgid "Es necesario una categoría" +#~ msgstr "Необходима категория" + +#~ msgid "Acción Inválida" +#~ msgstr "Ошибочное действие" + +#~ msgid "Las claves no coinciden" +#~ msgstr "Пароль и подтверждение не совпадают" + +#, fuzzy +#~ msgid "Error al crear la cuenta" +#~ msgstr "Ошибка при создании учетной записи" + +#, fuzzy +#~ msgid "Error al modificar la cuenta" +#~ msgstr "Ошибка при изменении учетной записи" + +#, fuzzy +#~ msgid "Error al eliminar la cuenta" +#~ msgstr "Ошибка при удалении учетной записи" + +#, fuzzy +#~ msgid "Error al actualizar la clave" +#~ msgstr "Ошибка при изменении пароля" + +#~ msgid "Cuenta restaurada" +#~ msgstr "Учетная запись восстановлена" + +#, fuzzy +#~ msgid "Error al restaurar cuenta" +#~ msgstr "Ошибка восстановления учетной записи" + +#, fuzzy +#~ msgid "Es necesario un nombre de usuario" +#~ msgstr "Необходимо имя пользователя" + +#~ msgid "Es necesario un login" +#~ msgstr "Необходим логин" + +#~ msgid "Es necesario un perfil" +#~ msgstr "Необходим профиль" + +#~ msgid "Es necesario un grupo" +#~ msgstr "Необходима группа" + +#~ msgid "Es necesario un email" +#~ msgstr "Необходим email" + +#~ msgid "Ey, esto es una DEMO!!" +#~ msgstr "Эй, это DEMO!!" + +#~ msgid "La clave no puede estar en blanco" +#~ msgstr "Пароль не может быть пустым" + +#~ msgid "Usuario creado" +#~ msgstr "Пользователь создан" + +#, fuzzy +#~ msgid "Error al crear el usuario" +#~ msgstr "Ошибка при создании пользователя" + +#~ msgid "Usuario actualizado" +#~ msgstr "Данные пользователя обновлены" + +#, fuzzy +#~ msgid "Error al actualizar el usuario" +#~ msgstr "Ошибка при обновлении данных пользователя" + +#, fuzzy +#~ msgid "Error al modificar la clave" +#~ msgstr "Ошибка изменения пароля" + +#~ msgid "No es posible eliminar, usuario en uso" +#~ msgstr "Не могу удалить, пользователь работает" + +#~ msgid "Usuario eliminado" +#~ msgstr "Пользователь удален" + +#, fuzzy +#~ msgid "Error al eliminar el usuario" +#~ msgstr "Ошибка удаления пользователя" + +#~ msgid "Es necesario un nombre de grupo" +#~ msgstr "Необходимо имя группы" + +#~ msgid "Nombre de grupo duplicado" +#~ msgstr "Указанное имя группы уже существует" + +#, fuzzy +#~ msgid "Error al crear el grupo" +#~ msgstr "Ошибка при создании группы" + +#, fuzzy +#~ msgid "Error al actualizar el grupo" +#~ msgstr "Ошибка при обновлении группы" + +#~ msgid "No es posible eliminar" +#~ msgstr "Невозможно удалить" + +#, fuzzy +#~ msgid "Error al eliminar el grupo" +#~ msgstr "Ошибка при удалении группы" + +#~ msgid "Es necesario un nombre de perfil" +#~ msgstr "Необходимо имя профиля" + +#~ msgid "Nombre de perfil duplicado" +#~ msgstr "Профиль с таким именем уже существует" + +#~ msgid "Perfil creado" +#~ msgstr "Профиль создан" + +#~ msgid "Perfil actualizado" +#~ msgstr "Профиль изменен" + +#~ msgid "Perfil eliminado" +#~ msgstr "Профиль удален" + +#~ msgid "Es necesario un nombre de categoría" +#~ msgstr "Необходимо имя категории" + +#~ msgid "Autorización creada" +#~ msgstr "Авторизация создана" + +#~ msgid "Autorización actualizada" +#~ msgstr "Авторизация изменена" + +#~ msgid "Autorización eliminada" +#~ msgstr "Авторизация удалена" + +#~ msgid "Nombre del campo no indicado" +#~ msgstr "Имя поля не задано" + +#~ msgid "Tipo del campo no indicado" +#~ msgstr "Тип поля не указан" + +#~ msgid "Módulo del campo no indicado" +#~ msgstr "Для поля не указан модуль" + +#~ msgid "Campo creado" +#~ msgstr "Поле создано" + +#~ msgid "Campo actualizado" +#~ msgstr "Поле обновлено" + +#~ msgid "Campo eliminado" +#~ msgstr "Поле удалено" + +#~ msgid "Realizar Backup" +#~ msgstr "Выполнить резервное копирование" + +#, fuzzy +#~ msgid "Error al realizar el backup" +#~ msgstr "Ошибка при выполнении резервной копии" + +#, fuzzy +#~ msgid "Revise el registro de eventos para más detalles" +#~ msgstr "Проверьте журнал событий для деталей" + +#~ msgid "Copia de la aplicación y base de datos realizada correctamente" +#~ msgstr "Резервная копия программы и базы успешно создана" + +#, fuzzy +#~ msgid "Error al realizar la exportación de cuentas" +#~ msgstr "Ошибка при экспорте учетных записей" + +#~ msgid "Error al realizar la exportación" +#~ msgstr "Ошибка при экспорте" + +#~ msgid "Exportación de cuentas realizada correctamente" +#~ msgstr "Экспорт успешно выполнен" + +#, fuzzy +#~ msgid "Los parámetros de LDAP no están configurados" +#~ msgstr "Параметры LDAP не указаны" + +#~ msgid "Conexión a LDAP correcta" +#~ msgstr "Подключение к LDAP успешно" + +#~ msgid "Objetos encontrados" +#~ msgstr "Найдено объектов" + +#~ msgid "Modificar Configuración" +#~ msgstr "Изменить конфигурацию" + +#~ msgid "El tamaño máximo por archivo es de 16MB" +#~ msgstr "Максимальный размер файла 16MB" + +#, fuzzy +#~ msgid "Faltan parámetros de Proxy" +#~ msgstr "Не указаны все параметры прокси" + +#~ msgid "Proxy habiltado" +#~ msgstr "Прокси включен" + +#~ msgid "Proxy deshabilitado" +#~ msgstr "Прокси выключен" + +#~ msgid "Sección" +#~ msgstr "Раздел" + +#~ msgid "Faltan parámetros de Wiki" +#~ msgstr "Пропущены настройки Wiki" + +#~ msgid "Wiki habiltada" +#~ msgstr "WiKi включен" + +#~ msgid "Wiki deshabilitada" +#~ msgstr "WiKi выключен" + +#~ msgid "Faltan parámetros de LDAP" +#~ msgstr "Пропущены настройки LDAP" + +#~ msgid "LDAP habiltado" +#~ msgstr "LDAP включен" + +#~ msgid "LDAP deshabilitado" +#~ msgstr "LDAP выключен" + +#~ msgid "Faltan parámetros de Correo" +#~ msgstr "Пропущены настройки почты" + +#~ msgid "Correo habiltado" +#~ msgstr "Email включен" + +#~ msgid "Correo deshabilitado" +#~ msgstr "Email выключен" + +#~ msgid "Configuración actualizada" +#~ msgstr "Конфигурация изменена" + +#, fuzzy +#~ msgid "Clave maestra no indicada" +#~ msgstr "Необходим мастер-пароль" + +#~ msgid "Se ha de confirmar el cambio de clave" +#~ msgstr "Изменение пароля должно быть подтверждено" + +#~ msgid "Las claves son idénticas" +#~ msgstr "Пароли одинаковы" + +#~ msgid "Las claves maestras no coinciden" +#~ msgstr "Мастер-пароль не совпадает" + +#~ msgid "La clave maestra actual no coincide" +#~ msgstr "Текущий мастер-пароль ошибочен" + +#, fuzzy +#~ msgid "Errores al actualizar las claves de las cuentas" +#~ msgstr "Ошибка при изменении паролей учетных записей" + +#, fuzzy +#~ msgid "Errores al actualizar las claves de las cuentas del histórico" +#~ msgstr "Ошибка при обновлении истории паролей учетной записи" + +#, fuzzy +#~ msgid "Errores al actualizar datos de campos personalizados" +#~ msgstr "Ошибка при изменении свободных полей учетной записи" + +#, fuzzy +#~ msgid "Error al guardar el hash de la clave maestra" +#~ msgstr "Ошибка при сохранении хеша мастер-пароля" + +#~ msgid "Generar Clave Temporal" +#~ msgstr "Сгенерировать временный пароль" + +#~ msgid "Clave Temporal Generada" +#~ msgstr "Временный пароль" + +#, fuzzy +#~ msgid "Error al generar clave temporal" +#~ msgstr "Ошибка генерации временного пароля" + +#~ msgid "Usuario/Clave no introducidos" +#~ msgstr "Пользователь / пароль не введены" + +#~ msgid "Inicio sesión" +#~ msgstr "Начало сессии" + +#, fuzzy +#~ msgid "Error al guardar los datos de LDAP" +#~ msgstr "Ошибка при сохранении данных пользователя из LDAP" + +#, fuzzy +#~ msgid "Error al actualizar la clave del usuario en la BBDD" +#~ msgstr "Ошибка изменения пароля пользователя в БД" + +#, fuzzy +#~ msgid "Login incorrecto" +#~ msgstr "Ошибка входа" + +#~ msgid "Cuenta expirada" +#~ msgstr "Учетная запись просрочена" + +#~ msgid "El usuario no tiene grupos asociados" +#~ msgstr "Для пользователя не указаны группы" + +#~ msgid "Usuario deshabilitado" +#~ msgstr "Пользователь отключен" + +#, fuzzy +#~ msgid "Error al obtener los datos del usuario de la BBDD" +#~ msgstr "Ошибка получения данных о пользователе из DB" + +#, fuzzy +#~ msgid "La clave maestra no ha sido guardada o es incorrecta" +#~ msgstr "Мастер-пароль не сохранен или ошибочен" + +#, fuzzy +#~ msgid "Clave maestra incorrecta" +#~ msgstr "Неправильный мастер-пароль" + +#~ msgid "No hay extensiones permitidas" +#~ msgstr "Нет доступных расширений" + +#~ msgid "Tipo de archivo no soportado" +#~ msgstr "Данный тип файлов запрещен" + +#~ msgid "Archivo inválido" +#~ msgstr "Ошибочный файл" + +#, fuzzy +#~ msgid "Error interno al leer el archivo" +#~ msgstr "Внутренняя ошибка чтения файла" + +#~ msgid "Archivo guardado" +#~ msgstr "Файл сохранен" + +#~ msgid "No se pudo guardar el archivo" +#~ msgstr "Ошибка сохранения файла" + +#~ msgid "No es un ID de archivo válido" +#~ msgstr "Ошибочный ID файла" + +#~ msgid "El archivo no existe" +#~ msgstr "Файл не существует" + +#~ msgid "Archivo eliminado" +#~ msgstr "Файл удален" + +#, fuzzy +#~ msgid "Error al eliminar el archivo" +#~ msgstr "Ошибка при удалении файла" + +#, fuzzy +#~ msgid "Parámetros incorrectos" +#~ msgstr "Ошибочные параметры" + +#~ msgid "Recuperación de Clave" +#~ msgstr "Восстановление пароля" + +#~ msgid "Solicitado para" +#~ msgstr "Запрошено для" + +#~ msgid "Solicitud enviada" +#~ msgstr "Запрос отправлен" + +#~ msgid "En breve recibirá un correo para completar la solicitud." +#~ msgstr "В скором времени вы получите email для завершения запроса." + +#~ msgid "Modificar Clave Usuario" +#~ msgstr "Изменить пароль пользователя" + +#~ msgid "La clave es incorrecta o no coincide" +#~ msgstr "Ошибка пароля" + +#~ msgid "Es necesaria una descripción" +#~ msgstr "Необходимо описание" + +#~ msgid "Solicitud de Modificación de Cuenta" +#~ msgstr "Запрос на изменение учетной записи" + +#~ msgid "Solicitante" +#~ msgstr "Запросил" + +#, fuzzy +#~ msgid "Error al actualizar preferencias" +#~ msgstr "Ошибка изменения настроек" + +#~ msgid "Preferencias actualizadas" +#~ msgstr "Настройки изменены" + +#~ msgid "La clave maestra no coincide" +#~ msgstr "Неверный мастер-пароль" + +#, fuzzy +#~ msgid "No es posible acceder directamente a este archivo" +#~ msgstr "Невозможно обратиться к файлу" + +#~ msgid "Error al actualizar el historial" +#~ msgstr "Ошибка при обновлении истории" + +#~ msgid "Actualizar Cuenta" +#~ msgstr "Редактировать учетную запись" + +#, fuzzy +#~ msgid "Error al actualizar los grupos secundarios" +#~ msgstr "Ошибка изменения вторичных групп" + +#, fuzzy +#~ msgid "Error al actualizar los usuarios de la cuenta" +#~ msgstr "Ошибка изменения пользователей с доступом к учетной записи" + +#, fuzzy +#~ msgid "No se pudieron obtener los datos de la cuenta" +#~ msgstr "Ошибка получения данных для учетной записи" + +#, fuzzy +#~ msgid "Error al eliminar grupos asociados a la cuenta" +#~ msgstr "Ошибка удаления групп учетной записи" + +#, fuzzy +#~ msgid "Error al eliminar usuarios asociados a la cuenta" +#~ msgstr "Ошибка удаления пользователей учетной записи" + +#, fuzzy +#~ msgid "Error al eliminar archivos asociados a la cuenta" +#~ msgstr "Ошибка удаления файлов учетной записи" + +#~ msgid "Inicio" +#~ msgstr "Старт" + +#, fuzzy +#~ msgid "Error en el módulo de encriptación" +#~ msgstr "Ошибка в модуле шифрования" + +#, fuzzy +#~ msgid "Error al obtener las claves de las cuentas" +#~ msgstr "Ошибка получения паролей для учетной записи" + +#, fuzzy +#~ msgid "Fallo al actualizar la clave de la cuenta" +#~ msgstr "Ошибка изменения пароля учетной записи" + +#~ msgid "Cuentas actualizadas" +#~ msgstr "Обновлены учетные записи" + +#, fuzzy +#~ msgid "No se pudieron obtener los datos de las cuentas" +#~ msgstr "Ошибка получения информации о учетной записи" + +#~ msgid "Actualizar Clave Maestra (H)" +#~ msgstr "Изменить мастер-пароль (H)" + +#~ msgid "La clave maestra del registro no coincide" +#~ msgstr "Мастер-пароль не совпадает" + +#, fuzzy +#~ msgid "Fallo al actualizar la clave del histórico" +#~ msgstr "Ошибка обновления истории мастер-паролей" + +#~ msgid "Registros actualizados" +#~ msgstr "Записи изменены" + +#~ msgid "Gestión Aplicación" +#~ msgstr "Управление" + +#~ msgid "Exportar" +#~ msgstr "Экспорт" + +#~ msgid "Acceso no permitido" +#~ msgstr "Доступ запрещен к" + +#~ msgid "Error de codificación" +#~ msgstr "Ошибка кодирования" + +#~ msgid "La autorización ya existe" +#~ msgstr "Авторизация уже существует" + +#~ msgid "Actualizar Autorización" +#~ msgstr "Обновить авторизацию" + +#~ msgid "Usuario no pertenece al grupo" +#~ msgstr "Пользователь не состоит в группе" + +#~ msgid "Esta operación sólo es posible en entornos Linux" +#~ msgstr "Данная операция возможна только в Linux" + +#, fuzzy +#~ msgid "Error al realizar backup en modo compatibilidad" +#~ msgstr "Ошибка при создании резервной копии в режиме совместимости" + +#, fuzzy +#~ msgid "Compruebe los permisos del directorio de backups" +#~ msgstr "Проверьте права на папку резервных копий" + +#~ msgid "Nombre de categoría duplicado" +#~ msgstr "Категория с таким именем уже существует" + +#, fuzzy +#~ msgid "Error al crear la categoría" +#~ msgstr "Ошибка при создании категории" + +#, fuzzy +#~ msgid "Error al eliminar la categoría" +#~ msgstr "Ошибка при удалении категории" + +#, fuzzy +#~ msgid "Error al actualizar la categoría" +#~ msgstr "Ошибка изменения информации о категории" + +#~ msgid "Modificar configuración" +#~ msgstr "Изменить конфигурацию" + +#~ msgid "Parámetro" +#~ msgstr "Параметр" + +#~ msgid "Valor" +#~ msgstr "Значение" + +#~ msgid "" +#~ "Se ha regenerado el HASH de clave maestra. No es necesaria ninguna acción." +#~ msgstr "HASH возродил мастер-пароль. Дополнительных действий не требуется." + +#~ msgid "No es posible generar las claves RSA" +#~ msgstr "Невозможно создать RSA ключи" + +#~ msgid "El archivo de clave no existe" +#~ msgstr "Файл ключа не существует" + +#, fuzzy +#~ msgid "Error importando cuenta" +#~ msgstr "Ошибка импорта учетной записи" + +#~ msgid "Registros no actualizados" +#~ msgstr "Записи не обновлены" + +#, fuzzy +#~ msgid "Cliente duplicado" +#~ msgstr "Заказчик существует" + +#, fuzzy +#~ msgid "Error al crear el cliente" +#~ msgstr "Ошибка при создании заказчика" + +#, fuzzy +#~ msgid "Error al actualizar el cliente" +#~ msgstr "Ошибка при изменении информации о заказчике" + +#~ msgid "Actualizar Cliente" +#~ msgstr "Изменить заказчика" + +#, fuzzy +#~ msgid "Error al eliminar el cliente" +#~ msgstr "Ошибка при удалении заказчика" + +#~ msgid "No es posible conectar con la BD" +#~ msgstr "Невозможно подключиться к базе данных" + +#, fuzzy +#~ msgid "Compruebe los datos de conexión" +#~ msgstr "Пожалуйста, проверьте параметры подключения" + +#~ msgid "Realizado por" +#~ msgstr "Выполнено" + +#~ msgid "Enviar Email" +#~ msgstr "Отправить email" + +#~ msgid "Correo enviado" +#~ msgstr "Email выслан" + +#, fuzzy +#~ msgid "Error al enviar correo" +#~ msgstr "Ошибка отправка email" + +#~ msgid "Destinatario" +#~ msgstr "Получатель" + +#~ msgid "CC" +#~ msgstr "CC" + +#~ msgid "Archivo no subido correctamente" +#~ msgstr "Файл успешно закачан" + +#, fuzzy +#~ msgid "Verifique los permisos del usuario del servidor web" +#~ msgstr "Пожалуйста, проверьте права пользователя веб-сервера " + +#, fuzzy +#~ msgid "Compruebe la extensión del archivo" +#~ msgstr "Пожалуйста, проверьте расширение файла" + +#~ msgid "Compruebe la configuración de PHP para subir archivos" +#~ msgstr "Пожалуйста, проверьте конфигурацию PHP для загрузки файлов" + +#, fuzzy +#~ msgid "Compruebe los permisos del directorio temporal" +#~ msgstr "Пожалуйста, проверьте права для временной папки" + +#, fuzzy +#~ msgid "Error al eliminar los usuarios del grupo" +#~ msgstr "Ошибка удаления пользователей из группы" + +#~ msgid "Compruebe el formato del archivo" +#~ msgstr "Пожалуйста, проверьте формат файла" + +#~ msgid "Importación finalizada" +#~ msgstr "Импорт завершен" + +#~ msgid "La sesión no puede ser inicializada" +#~ msgstr "Сессия не может быть запущена" + +#~ msgid "El directorio \"/config\" no existe" +#~ msgstr "Папка \"/config\" не существует." + +#~ msgid "No es posible escribir en el directorio \"config\"" +#~ msgstr "Невозможно произвести запись в папку \"/config\"" + +#~ msgid "Los permisos del directorio \"/config\" son incorrectos" +#~ msgstr "Права для папки \"/config\" заданы неверно" + +#~ msgid "Finalizar sesión" +#~ msgstr "Завершить сессию" + +#~ msgid "Tiempo inactivo" +#~ msgstr "Время бездействия" + +#~ msgid "Tiempo total" +#~ msgstr "Общее время" + +#~ msgid "Actualización" +#~ msgstr "Обновить" + +#~ msgid "Actualización de versión realizada." +#~ msgstr "Обновление версии завершено." + +#, fuzzy +#~ msgid "Indicar nombre de usuario admin" +#~ msgstr "Ввведи имя пользователя администратора" + +#, fuzzy +#~ msgid "Usuario admin para acceso a la aplicación" +#~ msgstr "Пользователь администратора для входа в программу" + +#, fuzzy +#~ msgid "Indicar la clave de admin" +#~ msgstr "Введите административный пароль" + +#~ msgid "Clave del usuario admin de la aplicación" +#~ msgstr "Пароль администратора программы" + +#, fuzzy +#~ msgid "Indicar la clave maestra" +#~ msgstr "Введите мастер-пароль" + +#, fuzzy +#~ msgid "Clave maestra para encriptar las claves" +#~ msgstr "Матер-пароль для шифрования паролей " + +#, fuzzy +#~ msgid "Clave maestra muy corta" +#~ msgstr "Длина мастер-пароля мала" + +#~ msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" +#~ msgstr "Мастер-пароль должен быть не менее 11 символов" + +#, fuzzy +#~ msgid "Indicar el usuario de la BBDD" +#~ msgstr "Введите пользователя базы данных" + +#, fuzzy +#~ msgid "Usuario con permisos de administrador de la Base de Datos" +#~ msgstr "Пользователь с правами администратора для базы данных" + +#, fuzzy +#~ msgid "Indicar el nombre de la BBDD" +#~ msgstr "Введите имя базы данных" + +#~ msgid "Nombre para la BBDD de la aplicación pej. syspass" +#~ msgstr "Имя базы данных программы. Например, syspass" + +#~ msgid "El nombre de la BBDD no puede contener \".\"" +#~ msgstr "Имя базы данных не может содержать \".\"" + +#~ msgid "Elimine los puntos del nombre de la Base de Datos" +#~ msgstr "Пожалуйста, уберите точки из имени базы данных" + +#, fuzzy +#~ msgid "Indicar el servidor de la BBDD" +#~ msgstr "Введите сервер баз данных" + +#~ msgid "Servidor donde se instalará la Base de Datos" +#~ msgstr "Сервер, на котором будет создана база данных" + +#~ msgid "No es posible comprobar el usuario de sysPass" +#~ msgstr "Не могу проверить пользователя sysPass" + +#, fuzzy +#~ msgid "Compruebe los permisos del usuario de conexión a la BD" +#~ msgstr "Пожалуйста, проверьте права на базу данных" + +#~ msgid "La BBDD ya existe" +#~ msgstr "База данных уже существует" + +#, fuzzy +#~ msgid "Indique una nueva Base de Datos o elimine la existente" +#~ msgstr "Введите новую базу данных или удалите существующую" + +#, fuzzy +#~ msgid "Error al crear la BBDD" +#~ msgstr "Ошибка при создании БД" + +#, fuzzy +#~ msgid "Verifique los permisos del usuario de la Base de Datos" +#~ msgstr "Пожалуйста, проверьте права доступа к базе данных " + +#~ msgid "El archivo de estructura de la BBDD no existe" +#~ msgstr "Файл структуры базы данных не существует" + +#~ msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." +#~ msgstr "" +#~ "Невозможно создать базу данных программы. Пожалуйста, скачайте её заново." + +#, fuzzy +#~ msgid "Error al seleccionar la BBDD" +#~ msgstr "Ошибка выбора базы данных." + +#~ msgid "" +#~ "No es posible usar la Base de Datos para crear la estructura. Compruebe " +#~ "los permisos y que no exista." +#~ msgstr "" +#~ "Невозможно использовать базу данных для создания её структуры. Проверьте " +#~ "права доступа к базе данных." + +#~ msgid "Error al crear la estructura de la Base de Datos." +#~ msgstr "Ошибка создания структуры базы данных." + +#~ msgid "Informe al desarrollador" +#~ msgstr "Предупреждение разработчику" + +#, fuzzy +#~ msgid "Error al actualizar la clave maestra del usuario \"admin\"" +#~ msgstr "Ошибка обновления мастер-пароля для пользователя \"admin\"" + +#~ msgid "No es posible conectar con el servidor de LDAP" +#~ msgstr "Невозможно подключиться к серверу LDAP" + +#~ msgid "Error al conectar (BIND)" +#~ msgstr "Ошибка подключения (BIND)" + +#~ msgid "Error al buscar objetos en DN base" +#~ msgstr "Ошибка поиска объектов в DN" + +#, fuzzy +#~ msgid "Error al buscar RDN de grupo" +#~ msgstr "Ошибка поиска группы в RDN" + +#, fuzzy +#~ msgid "Error al localizar el usuario en LDAP" +#~ msgstr "Ошибка поиска пользователя в LDAP" + +#~ msgid "Error al buscar el grupo de usuarios" +#~ msgstr "Ошибка поиска групп пользователя" + +#~ msgid "Usuario verificado en grupo" +#~ msgstr "Членство пользователя в группе проверено" + +#~ msgid "Vaciar Eventos" +#~ msgstr "Очистить записи" + +#, fuzzy +#~ msgid "Cliente no encontrado" +#~ msgstr "Заказчик не найден" + +#, fuzzy +#~ msgid "Error al obtener los usuarios" +#~ msgstr "Ошибка получения пользователей" + +#~ msgid "Migrar Perfiles" +#~ msgstr "Миграция профилей" + +#, fuzzy +#~ msgid "Error al obtener perfiles" +#~ msgstr "Ошибка получения профилей" + +#~ msgid "Operación realizada correctamente" +#~ msgstr "Успешно" + +#, fuzzy +#~ msgid "Fallo al realizar la operación" +#~ msgstr "Не удалось выполнить операцию" + +#~ msgid "Formato de XML inválido" +#~ msgstr "Ошибка в формате XML" + +#, fuzzy +#~ msgid "Error al aplicar la actualización de la Base de Datos" +#~ msgstr "Ошибка обновления базы данных" + +#~ msgid "Compruebe el registro de eventos para más detalles" +#~ msgstr "См. журнал событий для получения подробностей." + +#, fuzzy +#~ msgid "Error al aplicar la actualización auxiliar" +#~ msgstr "Ошибка применения дополнительного обновления" + +#~ msgid "Actualizar BBDD" +#~ msgstr "Обновление БД" + +#~ msgid "No es necesario actualizar la Base de Datos." +#~ msgstr "Обновление базы данных не требуется." + +#~ msgid "Actualización de la Base de Datos realizada correctamente." +#~ msgstr "Обновление базы данных завершено успешно." + +#~ msgid "Actualizar Configuración" +#~ msgstr "Обновить конфигурацию" + +#~ msgid "No se pudo realizar la petición de cambio de clave." +#~ msgstr "Выполнить запрос на смену пароля невозможно." + +#~ msgid "Usuario de LDAP" +#~ msgstr "Пользователь LDAP" + +#~ msgid "Activación Cuenta" +#~ msgstr "Активация учетной записи" + +#~ msgid "Su cuenta está pendiente de activación." +#~ msgstr "Активация Вашей учетной записи в процессе." + +#~ msgid "En breve recibirá un email de confirmación." +#~ msgstr "Вы получите письмо в скором времени." + +#~ msgid "Nuevo usuario de LDAP" +#~ msgstr "Пользователь LDAP" + +#, fuzzy +#~ msgid "Error al migrar grupo del usuario" +#~ msgstr "Ошибка миграции группы пользователя" + +#~ msgid "Versión de PHP requerida >= " +#~ msgstr "Необходим PHP версии >= " + +#~ msgid "" +#~ "Actualice la versión de PHP para que la aplicación funcione correctamente" +#~ msgstr "Пожалуйста, обновите PHP для использования sysPass" + +#~ msgid "Exportar XML" +#~ msgstr "Экспорт XML" + +#, fuzzy +#~ msgid "Error al crear el archivo XML" +#~ msgstr "Ошибка создания файла XML" + +#, fuzzy +#~ msgid "No es posible procesar el archivo XML" +#~ msgstr "Невозможно обработать файл XML" + +#~ msgid "Archivo XML no soportado" +#~ msgstr "Файл XML не поддерживается" + +#~ msgid "No es posible detectar la aplicación que exportó los datos" +#~ msgstr "" +#~ "Невозможно определить программу, из которой были экспортированы данные" + +#~ msgid "Último backup" +#~ msgstr "Последняя резервная копия" + +#~ msgid "Última exportación" +#~ msgstr "Последний экспорт" + +#~ msgid "Registro de eventos vaciado" +#~ msgstr "Журнал очищен" + +#, fuzzy +#~ msgid "Error al vaciar el registro de eventos" +#~ msgstr "Ошибка очистки журнала" + +#~ msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" +#~ msgstr "Данная версия PHP уязвима NULL Byte attack (CVE-2006-7243)" + +#~ msgid "Actualice la versión de PHP para usar sysPass de forma segura" +#~ msgstr "" +#~ "Пожалуйста, обновите версию PHP для безопасного использования sysPass" + +#~ msgid "No se encuentra el generador de números aleatorios." +#~ msgstr "Не могу найти генератор случайных чисел." + +#~ msgid "" +#~ "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" +#~ msgstr "" +#~ "Без этой функции, атакующий может завладеть вашим аккаунтом при сбросе " +#~ "пароля." + +#~ msgid "Instalación finalizada" +#~ msgstr "Установка завершена" + +#~ msgid "Descargar nueva versión" +#~ msgstr "Скачать новую версию" + +#~ msgid "Token de autorización visualizado" +#~ msgstr "Отображение токена авторизации" + +#~ msgid "Autorizaciones" +#~ msgstr "Авторизации" + +#~ msgid "Hablitar edición" +#~ msgstr "Разрешить изменения" + +#~ msgid "Usuarios Secundarios" +#~ msgstr "Вторичные пользователи" + +#~ msgid "Grupos Secundarios" +#~ msgstr "Вторичные группы" + +#~ msgid "Modificar Cuenta" +#~ msgstr "Редактировать учетную запись" + +#, fuzzy +#~ msgid "No hay backups para descargar" +#~ msgstr "Нет резервных копий для скачивания" + +#, fuzzy +#~ msgid "No hay archivos XML para descargar" +#~ msgstr "Нет XML файлов для загрузки" + +#~ msgid "Se permite un máximo de 4 caracteres." +#~ msgstr "Максимальная длина расширения 4 символа." + +#~ msgid "Primera página" +#~ msgstr "Первая страница" + +#~ msgid "Página anterior" +#~ msgstr "Прошлая страница" + +#~ msgid "Página siguiente" +#~ msgstr "Следующая страница" + +#~ msgid "Última página" +#~ msgstr "Последняя страница" + +#~ msgid "Comprobar" +#~ msgstr "Проверить" + +#, fuzzy +#~ msgid "Cambiar Clave" +#~ msgstr "Изменение пароля" + +#~ msgid "Añadir" +#~ msgstr "Добавить" + +#~ msgid "Abrir enlace a" +#~ msgstr "Открыть ссылку" + +#~ msgid "Limpiar" +#~ msgstr "Очистить" + +#~ msgid "Parámetros especiales:" +#~ msgstr "Специальные параметры" + +#~ msgid "Realizar" +#~ msgstr "Выполнить" + +#~ msgid "Extensión" +#~ msgstr "Расширение" + +#~ msgid "Tamaño de archivo superado" +#~ msgstr "Слишком большой размер файла" + +#~ msgid "Solicitud no enviada" +#~ msgstr "Запрос не отправлен" + +#~ msgid "Compruebe datos de usuario o consulte con el administrador" +#~ msgstr "" +#~ "Пожалуйста, проверьте данные пользователя или свяжитесь с администратором" + +#, fuzzy +#~ msgid "La cuenta no existe" +#~ msgstr "Учетная запись не существует" + +#~ msgid "Errores" +#~ msgstr "Ошибки" + +#~ msgid "Error al añadir favorito" +#~ msgstr "Ошибка добавления в избранное" + +#~ msgid "Error al eliminar favorito" +#~ msgstr "Ошибка удаления из избранного" + +#, fuzzy +#~ msgid "Error al eliminar las etiquetas de la cuenta" +#~ msgstr "Ошибка при удалении тегов для учетной записи" + +#~ msgid "Método inválido" +#~ msgstr "Ошибочный метод" + +#~ msgid "Datos inválidos" +#~ msgstr "Ошибочные данные" + +#~ msgid "Formato incorrecto" +#~ msgstr "Ошибочный формат" + +#~ msgid "Nombre de categoría a buscar" +#~ msgstr "Название категории для поиска" + +#, fuzzy +#~ msgid "Nombre de cliente a buscar" +#~ msgstr "Название заказчика для поиска" + +#~ msgid "Método ya inicializado" +#~ msgstr "Метод уже инициализирован" + +#~ msgid "Método no disponible" +#~ msgstr "Метод недоступен" + +#, fuzzy +#~ msgid "Los parámetros de DokuWiki no están configurados" +#~ msgstr "Параметры DokuWiki не заданы" + +#~ msgid "Error" +#~ msgstr "Ошибка" + +#~ msgid "Conexión correcta" +#~ msgstr "Успешное подключение" + +#~ msgid "Error de conexión a DokuWiki" +#~ msgstr "Ошибка при подключении к DokuWiki" + +#~ msgid "Faltan parámetros de syslog remoto" +#~ msgstr "Пропущены параметры удаленного syslog" + +#~ msgid "Syslog remoto deshabilitado" +#~ msgstr "Удаленный syslog отключен" + +#, fuzzy +#~ msgid "Error al guardar la configuración" +#~ msgstr "Ошибка при сохранении конфигурации" + +#~ msgid "Faltan parámetros de DokuWiki" +#~ msgstr "Пропущены параметры DokuWiki" + +#~ msgid "DokuWiki habiltada" +#~ msgstr "DokuWiki включен" + +#~ msgid "DokuWiki deshabilitada" +#~ msgstr "DokuWiki выключен" + +#~ msgid "Enlace creado" +#~ msgstr "Ссылка создана" + +#~ msgid "Enlace actualizado" +#~ msgstr "Ссылка обновлена" + +#~ msgid "Enlace eliminado" +#~ msgstr "Ссылка удалена" + +#~ msgid "Plugin habilitado" +#~ msgstr "Плагин включен" + +#~ msgid "Plugin deshabilitado" +#~ msgstr "Плагин отключен" + +#~ msgid "Plugin restablecido" +#~ msgstr "Плагин сброшен" + +#~ msgid "Favorito añadido" +#~ msgstr "Добавлено в избранное" + +#~ msgid "Favorito eliminado" +#~ msgstr "Удалено из избранного" + +#~ msgid "Importación de usuarios de LDAP realizada" +#~ msgstr "Импорт пользователей из LDAP завершен" + +#, fuzzy +#~ msgid "Error al importar usuarios de LDAP" +#~ msgstr "Ошибка при импорте пользователей из LDAP" + +#~ msgid "Notificación leída" +#~ msgstr "Уведомление прочитано" + +#~ msgid "Notificación eliminada" +#~ msgstr "Уведомление удалено" + +#~ msgid "Solicitud enviada por correo" +#~ msgstr "Запрос отправлен по email" + +#~ msgid "Solicitud no enviada por correo" +#~ msgstr "Запрос не отправлен по email" + +#~ msgid "Solicitud realizada" +#~ msgstr "Запрос выполнен" + +#~ msgid "Detalles de Plugin" +#~ msgstr "Детали плагина" + +#, fuzzy +#~ msgid "Error al obtener la clave maestra del usuario" +#~ msgstr "Ошибка при получении мастер-пароля пользователя" + +#~ msgid "Es necesaria su clave anterior" +#~ msgstr "Необходим Ваш прошлый пароль" + +#~ msgid "Servidor LDAP" +#~ msgstr "Сервер LDAP" + +#~ msgid "Buscar Categorías" +#~ msgstr "Поиск категорий" + +#~ msgid "Añadir Categoría" +#~ msgstr "Добавить категорию" + +#~ msgid "Buscar Clientes" +#~ msgstr "Поиск заказчиков" + +#~ msgid "Añadir Cliente" +#~ msgstr "Добавить заказчика" + +#~ msgid "Observador no inicializado" +#~ msgstr "Наблюдатель не инициализирован" + +#~ msgid "Es necesario un objeto" +#~ msgstr "Нужен объект" + +#, fuzzy +#~ msgid "Indicar la clave de la BBDD" +#~ msgstr "Введите пароль базы данных" + +#~ msgid "Clave del usuario administrador de la Base de Datos" +#~ msgstr "Пароль администратора базы данных" + +#~ msgid "Error al crear el usuario de conexión a MySQL '%s'" +#~ msgstr "Ошибка при создании подключения к MySQL под пользователем '%s'" + +#, fuzzy +#~ msgid "La BBDD no existe" +#~ msgstr "База данных не существует" + +#~ msgid "Es necesario crearla y asignar los permisos necesarios" +#~ msgstr "Необходимо создать его и назначить нужные права" + +#~ msgid "Error al actualizar la configuración" +#~ msgstr "Ошибка при обновлении конфигурации" + +#~ msgid "Usuario no indicado" +#~ msgstr "Пользователь не установлен" + +#~ msgid "Acción no indicada" +#~ msgstr "Действие не установлено" + +#~ msgid "Es necesario un nombre de etiqueta" +#~ msgstr "Необходимо название тега" + +#~ msgid "Respuesta XML-RPC inválida" +#~ msgstr "Ошибочный XML-RPC ответ" + +#~ msgid "Id de categoría no definido. No es posible importar cuenta." +#~ msgstr "ID категории не задано. Невозможно импортировать учетную запись." + +#, fuzzy +#~ msgid "Id de cliente no definido. No es posible importar cuenta." +#~ msgstr "ID заказчика не задано. Невозможно импортировать учетную запись." + +#~ msgid "Clave de encriptación no indicada" +#~ msgstr "Пароль шифрования не задан" + +#~ msgid "Extensión '%s' no cargada" +#~ msgstr "Расширение '%s' не загружено" + +#~ msgid "Categoría duplicada" +#~ msgstr "Категория существует" + +#~ msgid "Categoría no encontrada" +#~ msgstr "Категория не найдена" + +#, fuzzy +#~ msgid "Error al crear el campo personalizado" +#~ msgstr "Ошибка при создании свободного поля" + +#, fuzzy +#~ msgid "Error al eliminar el campo personalizado" +#~ msgstr "Ошибка при удалении свободного поля" + +#, fuzzy +#~ msgid "Error al actualizar el campo personalizado" +#~ msgstr "Ошибка при обновлении свободного поля" + +#~ msgid "Campo personalizado no encontrado" +#~ msgstr "Свободное поле не найдено" + +#~ msgid "No se encontraron campos personalizados" +#~ msgstr "Свободные поля не найдены" + +#, fuzzy +#~ msgid "No hay datos de campos personalizados" +#~ msgstr "Нет данных из свободных полей" + +#, fuzzy +#~ msgid "Error al migrar campos personalizados" +#~ msgstr "Ошибка при миграции свободных полей" + +#~ msgid "Archivo subido" +#~ msgstr "Файл загружен" + +#~ msgid "Grupo en uso" +#~ msgstr "Группа используется" + +#~ msgid "Actualizar Grupo" +#~ msgstr "Обновить группу" + +#~ msgid "Error al asignar los usuarios al grupo" +#~ msgstr "Ошибка при настройке пользователей в группе" + +#, fuzzy +#~ msgid "Error al crear la notificación" +#~ msgstr "Ошибка при добавлении уведомления" + +#, fuzzy +#~ msgid "Error al eliminar la notificación" +#~ msgstr "Ошибка при удалении уведомления" + +#, fuzzy +#~ msgid "Error al modificar la notificación" +#~ msgstr "Ошибка при обновлении уведомления" + +#~ msgid "Error al obtener la notificación" +#~ msgstr "Ошибка при получении уведомления" + +#, fuzzy +#~ msgid "Error al obtener las notificaciones" +#~ msgstr "Ошибка при получении уведомлений" + +#, fuzzy +#~ msgid "Error al crear el plugin" +#~ msgstr "Ошибка при добавлении плагина" + +#, fuzzy +#~ msgid "Error al eliminar el plugin" +#~ msgstr "Ошибка при удалении плагина" + +#, fuzzy +#~ msgid "Error al actualizar el plugin" +#~ msgstr "Ошибка при обновлении плагина" + +#~ msgid "Habilitado" +#~ msgstr "Включен" + +#, fuzzy +#~ msgid "Error al crear perfil" +#~ msgstr "Ошибка при создании профиля" + +#~ msgid "Perfil en uso" +#~ msgstr "Профиль используется" + +#, fuzzy +#~ msgid "Error al eliminar perfil" +#~ msgstr "Ошибка при удалении профиля" + +#, fuzzy +#~ msgid "Error al modificar perfil" +#~ msgstr "Ошибка при изменении профиля" + +#~ msgid "Enlace visualizado" +#~ msgstr "Ссылка показана" + +#, fuzzy +#~ msgid "Error al actualizar enlace" +#~ msgstr "Ошибка при обновлении ссылки" + +#~ msgid "Enlace ya creado" +#~ msgstr "Ссылка уже создана" + +#, fuzzy +#~ msgid "Error al crear enlace" +#~ msgstr "Ошибка при создании ссылки" + +#, fuzzy +#~ msgid "Error al eliminar enlace" +#~ msgstr "Ошибка при удалении ссылки" + +#~ msgid "Error al renovar enlace" +#~ msgstr "Ошибка при обновлении ссылки" + +#~ msgid "Actualizar Enlace" +#~ msgstr "Обновить ссылку" + +#, fuzzy +#~ msgid "Error al obtener enlace" +#~ msgstr "Ошибка при получении ссылки" + +#~ msgid "ON" +#~ msgstr "Включить" + +#~ msgid "OFF" +#~ msgstr "Выключить" + +#~ msgid "Etiqueta duplicada" +#~ msgstr "Дублированный тег" + +#, fuzzy +#~ msgid "Error al crear etiqueta" +#~ msgstr "Ошибка при создании тега" + +#, fuzzy +#~ msgid "Error al eliminar etiqueta" +#~ msgstr "Ошибка при удалении тега" + +#, fuzzy +#~ msgid "Error al actualizar etiqueta" +#~ msgstr "Ошибка при обновлении тега" + +#, fuzzy +#~ msgid "Error al obtener etiqueta" +#~ msgstr "Ошибка при получении тега" + +#~ msgid "Login/email de usuario duplicados" +#~ msgstr "Дублированный login/email" + +#, fuzzy +#~ msgid "Error al obtener los datos del usuario" +#~ msgstr "Ошибка при получении данных пользователя" + +#, fuzzy +#~ msgid "No se encontraron objetos para sincronizar" +#~ msgstr "Нет объектов для синхронизации" + +#~ msgid "Sincronización finalizada" +#~ msgstr "Синхронизация завершена" + +#, fuzzy +#~ msgid "Error al migrar cuenta de usuario" +#~ msgstr "Ошибка при миграции учетной записи пользователя" + +#, fuzzy +#~ msgid "Error al obtener grupo de usuarios" +#~ msgstr "Ошибка при получении группы пользователей" + +#, fuzzy +#~ msgid "Error en comprobación de hash" +#~ msgstr "Ошибка при проверке хэша" + +#, fuzzy +#~ msgid "Hash inválido o expirado" +#~ msgstr "Хэш ошибочен или просрочен" + +#~ msgid "Error al generar el hash de recuperación" +#~ msgstr "Ошибка при генерации восстановительного хеша" + +#~ msgid "Actualizando preferencias" +#~ msgstr "Обновление предпочтений" + +#~ msgid "No es posible leer/escribir el archivo: %s" +#~ msgstr "Невозможно прочитать/записать файл: %s" + +#, fuzzy +#~ msgid "No hay elementos para guardar" +#~ msgstr "Нет элементов для сохранения" + +#~ msgid "Socket no inicializado" +#~ msgstr "Сокет не инициализирован" + +#, fuzzy +#~ msgid "Error al enviar datos" +#~ msgstr "Ошибка при отправке данных" + +#~ msgid "Respuesta" +#~ msgstr "Ответ" + +#~ msgid "Ver Detalles" +#~ msgstr "Показать детали" + +#~ msgid "Copiar" +#~ msgstr "Копировать" + +#~ msgid "Restaurar" +#~ msgstr "Восстановить" + +#~ msgid "Descargar" +#~ msgstr "Скачать" + +#~ msgid "Crítico" +#~ msgstr "Критично" + +#~ msgid "Accesos" +#~ msgstr "Доступы" + +#~ msgid "Cuentas Vinculadas" +#~ msgstr "Связанные учетные записи" + +#~ msgid "Hay %d notificaciones pendientes" +#~ msgstr "%d непрочитанных уведомлений" + +#~ msgid "Agente" +#~ msgstr "Агент" + +#~ msgid "Crear Usuario" +#~ msgstr "Добавить пользователя" + +#~ msgid "Actualizar Usuario" +#~ msgstr "Изменить пользователя" + +#~ msgid "Actualizar Clave Usuario" +#~ msgstr "Изменить пароль пользователя" + +#~ msgid "Crear Grupo" +#~ msgstr "Добавить группу" + +#~ msgid "Crear Perfil" +#~ msgstr "Добавить профиль" + +#~ msgid "Actualizar Perfil" +#~ msgstr "Изменить профиль" + +#, fuzzy +#~ msgid "Crear Cliente" +#~ msgstr "Добавить заказчика" + +#~ msgid "Crear Categoría" +#~ msgstr "Добавить категорию" + +#~ msgid "Actualizar Categoría" +#~ msgstr "Изменить категорию" + +#~ msgid "Crear Autorización" +#~ msgstr "Добавить авторизацию" + +#~ msgid "Crear Campo" +#~ msgstr "Добавить поле" + +#~ msgid "Actualizar Campo" +#~ msgstr "Изменить поле" + +#, fuzzy +#~ msgid "Crear Enlace" +#~ msgstr "Добавить ссылку" + +#~ msgid "Crear Etiqueta" +#~ msgstr "Добавить тег" + +#~ msgid "Actualizar Etiqueta" +#~ msgstr "Изменить тег" + +#~ msgid "Actualizar Plugin" +#~ msgstr "Обновить плагин" + +#~ msgid "Crear Cuenta" +#~ msgstr "Добавить учетную запись" + +#~ msgid "Usuarios importados" +#~ msgstr "Импортированные пользователи" + +#~ msgid "Acceso denegado" +#~ msgstr "Доступ запрещен" + +#, fuzzy +#~ msgid "Error al añadir las etiquetas de la cuenta" +#~ msgstr "Ошибка при добавлении тэгов учетной записи" + +#~ msgid "Grupos eliminados" +#~ msgstr "Группы удалены" + +#~ msgid "Perfiles eliminados" +#~ msgstr "Профили удалены" + +#, fuzzy +#~ msgid "Clientes eliminados" +#~ msgstr "Заказчики удалены" + +#~ msgid "Categorías eliminadas" +#~ msgstr "Категории удалены" + +#~ msgid "Autorizaciones eliminadas" +#~ msgstr "Авторизация удалена" + +#~ msgid "Campos eliminados" +#~ msgstr "Поля удалены" + +#~ msgid "Enlaces eliminados" +#~ msgstr "Ссылки удалены" + +#~ msgid "Etiquetas eliminadas" +#~ msgstr "Тэги удалены" + +#~ msgid "Archivos eliminados" +#~ msgstr "Файлы удалены" + +#~ msgid "Cuentas eliminadas" +#~ msgstr "Учетные записи удалены" + +#~ msgid "Notificación creada" +#~ msgstr "Создано уведомление" + +#~ msgid "Notificaciones eliminadas" +#~ msgstr "Уведомление удалено" + +#~ msgid "Usando clave temporal" +#~ msgstr "Использование временного пароля" + +#~ msgid "Clave temporal caducada" +#~ msgstr "Временный пароль недействителен" + +#~ msgid "Sesión" +#~ msgstr "Сессия" + +#~ msgid "Error al comprobar la base de datos" +#~ msgstr "Ошибка при проверке базы данных" + +#~ msgid "Intente de nuevo la instalación" +#~ msgstr "Пожалуйста, повторите попытку установки еще раз" + +#~ msgid "Es necesario un componente" +#~ msgstr "Нужен компонент" + +#~ msgid "Es necesario un tipo" +#~ msgstr "Нужен тип" + +#~ msgid "Es necesario un destinatario" +#~ msgstr "Нужна цель" + +#~ msgid "Error procesando línea" +#~ msgstr "Ошибка при обработке линии" + +#~ msgid "Cuentas importadas" +#~ msgstr "Учетные записи импортированы" + +#~ msgid "Archivo no encontrado" +#~ msgstr "Файл не найден" + +#~ msgid "Grupo no encontrado" +#~ msgstr "Группа не найдена" + +#~ msgid "Notificación no encontrada" +#~ msgstr "Уведомление не найдено" + +#~ msgid "Plugin no encontrado" +#~ msgstr "Плагин не найден" + +#~ msgid "Perfil no encontrado" +#~ msgstr "Профиль не найден" + +#~ msgid "Enlace no encontrado" +#~ msgstr "Ссылка не найдена" + +#~ msgid "Etiqueta no encontrada" +#~ msgstr "Тэг не найден" + +#~ msgid "Usuario no encontrado" +#~ msgstr "Пользователь не найден" + +#~ msgid "Consulta en blanco" +#~ msgstr "Пустой запрос" + +#~ msgid "No es posible iniciar una transacción" +#~ msgstr "Невозможно начать транзакцию" + +#~ msgid "No es posible finalizar una transacción" +#~ msgstr "Невозможно закончить транзакцию" + +#~ msgid "Cuenta no encontrada" +#~ msgstr "У" + +#~ msgid "Hash de clave maestra actualizado" +#~ msgstr "Хэш мастер-пароля обновлен" + +#~ msgid "Error al actualizar el hash de la clave maestra" +#~ msgstr "Ошибка при обновлении хэша мастер-пароля" + +#~ msgid "Usuarios eliminados" +#~ msgstr "Пользователи удалены" + +#~ msgid "Notificación actualizada" +#~ msgstr "Уведомление обновлено" + +#~ msgid "Restricción de integridad" +#~ msgstr "Ограничение целостности" + +#~ msgid "Clave de encriptación incorrecta" +#~ msgstr "Неверный пароль шифрования" + +#~ msgid "Código de seguridad incorrecto" +#~ msgstr "Неверный секретный код" + +#~ msgid "Es necesario confirmar la actualización" +#~ msgstr "Нужно подтверждение для обновления" + +#~ msgid "En 5 segundos será redirigido al login" +#~ msgstr "Вы будете перенаправлены на вход в течение 5 секунд" + +#~ msgid "Error al aplicar la actualización de la aplicación" +#~ msgstr "Ошибка при применении обновления" + +#~ msgid "Intentos excedidos" +#~ msgstr "Много попыток" + +#~ msgid "Token no encontrado" +#~ msgstr "ТОкен не найден" + +#~ msgid "Error al crear track" +#~ msgstr "Ошибка при создании трека" + +#~ msgid "Error al eliminar track" +#~ msgstr "Ошибка при удалении трека" + +#~ msgid "Error al actualizar track" +#~ msgstr "Ошибка при обновлении трека" + +#~ msgid "Error al obtener track" +#~ msgstr "Ошибка при извлечении трека" + +#~ msgid "Error al obtener tracks" +#~ msgstr "Ошибка при извлечении трека" + +#~ msgid "Actualizando IDs de cuentas" +#~ msgstr "Обновление ID аккаунта" + +#~ msgid "Actualizando IDs de categorías" +#~ msgstr "Обновление ID категории" + +#~ msgid "Actualizando IDs de clientes" +#~ msgstr "Обновление ID заказчика" + +#~ msgid "Actualizando IDs de grupos" +#~ msgstr "Обновление ID группы" + +#~ msgid "Actualizando IDs de perfil" +#~ msgstr "Обновление ID профиля" + +#~ msgid "Actualizando IDs de usuarios" +#~ msgstr "Обновление ID пользоввателя" + +#~ msgid "Acción no encontrada" +#~ msgstr "Action not found" + +#~ msgid "Contexto ya inicializado" +#~ msgstr "Context already initialized" + +#~ msgid "Contexto inválido" +#~ msgstr "Invalid context" + +#~ msgid "Contexto no inicializado" +#~ msgstr "Context not initialized" + +#~ msgid "Clase no válida para iconos" +#~ msgstr "Invalid icons class" + +#~ msgid "Tipo de filtro inválido" +#~ msgstr "Invalid filter type" + +#~ msgid "Tipo de objeto incorrecto" +#~ msgstr "Wrong object type" + +#~ msgid "No es posible inicializar" +#~ msgstr "Unable to initialize" + +#~ msgid "Error al eliminar los archivos" +#~ msgstr "Error while deleting the files" + +#~ msgid "Error al eliminar las cuentas" +#~ msgstr "Error while deleting the accounts" + +#~ msgid "Error al eliminar la categorías" +#~ msgstr "Error while deleting the categories" + +#~ msgid "Error al eliminar los clientes" +#~ msgstr "Error while deleting the clients" + +#~ msgid "Error al eliminar los campos personalizados" +#~ msgstr "Error while removing the custom fields" + +#~ msgid "Error al crear el tipo de campo" +#~ msgstr "Error while creating the field type" + +#~ msgid "Error al actualizar el tipo de campo" +#~ msgstr "Error while updating the field type" + +#~ msgid "Error al eliminar el tipo de campo" +#~ msgstr "Error while deleting the field type" + +#~ msgid "Error al eliminar las notificaciones" +#~ msgstr "Error while deleting the notifications" + +#~ msgid "El enlace no existe" +#~ msgstr "The link does not exist" + +#~ msgid "Error al eliminar etiquetas" +#~ msgstr "Error while removing the tags" + +#~ msgid "Error al eliminar los usuarios" +#~ msgstr "Error while deleting the users" + +#~ msgid "El usuario no existe" +#~ msgstr "The user does not exist" + +#~ msgid "Error al eliminar los perfiles" +#~ msgstr "Error while removing the profiles" + +#~ msgid "Error al eliminar archivos" +#~ msgstr "Error while deleting the files" + +#~ msgid "Fomato incorrecto" +#~ msgstr "Invalid format" + +#~ msgid "Error al eliminar tokens" +#~ msgstr "Error while removing the tokens" + +#~ msgid "Copiando base de datos" +#~ msgstr "Copying database" + +#~ msgid "Copiando aplicación" +#~ msgstr "Copying application" + +#~ msgid "Rollback" +#~ msgstr "Rollback" + +#~ msgid "Error al comprobar clave temporal" +#~ msgstr "Error while checking the temporary password" + +#~ msgid "Campo no encontrado" +#~ msgstr "Field not found" + +#~ msgid "Error al eliminar los campos" +#~ msgstr "Error while deleting the fields" + +#~ msgid "Exportando categorías" +#~ msgstr "Exporting categories" + +#~ msgid "Exportando clientes" +#~ msgstr "Exporting clients" + +#~ msgid "Exportando etiquetas" +#~ msgstr "Exporting tags" + +#~ msgid "Exportando cuentas" +#~ msgstr "Exporting accounts" + +#~ msgid "Cuenta importada" +#~ msgstr "Account imported" + +#~ msgid "Importación XML KeePass" +#~ msgstr "KeePass XML Import" + +#~ msgid "Categoría importada" +#~ msgstr "Category imported" + +#~ msgid "Importación XML sysPass" +#~ msgstr "sysPass XML Import" + +#~ msgid "Datos desencriptados" +#~ msgstr "Data unencrypted" + +#~ msgid "Cliente importado" +#~ msgstr "Client imported" + +#~ msgid "Etiqueta importada" +#~ msgstr "Tag imported" + +#~ msgid "Formato no detectado" +#~ msgstr "Format not detected" + +#~ msgid "Not implemented" +#~ msgstr "Not implemented" + +#~ msgid "Prueba de correo" +#~ msgstr "Mail test" + +#~ msgid "" +#~ "Esto es una prueba de correo para verificar el correcto funcionamiento de " +#~ "la configuración." +#~ msgstr "" +#~ "This is a test email in order to verify that the configuration is working " +#~ "right." + +#~ msgid "Error al eliminar los enlaces" +#~ msgstr "Error while removing the links" + +#~ msgid "Segundos" +#~ msgstr "Seconds" + +#~ msgid "Actualizar Aplicación" +#~ msgstr "Update Application" + +#~ msgid "Actualización de campos personalizados" +#~ msgstr "Custom fields update" + +#~ msgid "Campo" +#~ msgstr "Field" + +#~ msgid "Actualización de enlaces públicos" +#~ msgstr "Public links update" + +#~ msgid "Enlace" +#~ msgstr "Link" + +#~ msgid "Error al eliminar los grupos" +#~ msgstr "Error while deleting the groups" + +#~ msgid "Error al leer datos del archivo (%s)" +#~ msgstr "Error while reading file data (%s)" + +#~ msgid "Error al eliminar el archivo (%s)" +#~ msgstr "Error while deleting the file (%s)" + +#~ msgid "No es posible leer/escribir el archivo (%s)" +#~ msgstr "Unable to read/write the file (%s)" + +#~ msgid "Error al escribir datos en el archivo (%s)" +#~ msgstr "Error while writing data to file (%s)" + +#~ msgid "Cuenta visualizada" +#~ msgstr "Account displayed" + +#~ msgid "Clave visualizada" +#~ msgstr "Password viewed" + +#~ msgid "Exportación de sysPass en XML" +#~ msgstr "sysPass XML export" + +#~ msgid "Etiqueta" +#~ msgstr "Tag" + +#~ msgid "Es necesario actualizar" +#~ msgstr "Updating needed" + +#~ msgid "HTTPS" +#~ msgstr "HTTPS" + +#~ msgid "Clave copiada" +#~ msgstr "Password copied" + +#~ msgid "Archivo visualizado" +#~ msgstr "File viewed" + +#~ msgid "Archivo: %s" +#~ msgstr "File: %s" + +#~ msgid "Máximo tamaño: %s" +#~ msgstr "Maximum size: %s" + +#~ msgid "Máximo tamaño: %d KB" +#~ msgstr "Maximum size: %d KB" + +#~ msgid "Archivo Eliminado" +#~ msgstr "File Deleted" + +#~ msgid "Autorización" +#~ msgstr "Authorization" + +#~ msgid "Autorización visualizada" +#~ msgstr "Authorization viewed" + +#~ msgid "Archivos habilitados" +#~ msgstr "Files enabled" + +#~ msgid "Archivos deshabilitados" +#~ msgstr "Files disabled" + +#~ msgid "Enlaces públicos habilitados" +#~ msgstr "Public links enabled" + +#~ msgid "Enlaces públicos deshabilitados" +#~ msgstr "Public links disabled" + +#~ msgid "Email enviado" +#~ msgstr "Email sent" + +#~ msgid "Error al enviar email" +#~ msgstr "Error while sending the email" + +#~ msgid "Syslog remoto habilitado" +#~ msgstr "Remote syslog enabled" + +#~ msgid "Auth Basic habilitada" +#~ msgstr "Auth Basic enabled" + +#~ msgid "Auth Basic deshabiltada" +#~ msgstr "Auth Basic disabled" + +#~ msgid "No se importaron cuentas" +#~ msgstr "No accounts were imported" + +#~ msgid "Parámetros de LDAP incorrectos" +#~ msgstr "Wrong LDAP parameters" + +#~ msgid "Importación LDAP" +#~ msgstr "LDAP Import" + +#~ msgid "Compruebe su buzón de correo" +#~ msgstr "Please, check your inbox" + +#~ msgid "DokuWiki habilitada" +#~ msgstr "DokuWiki enabled" + +#~ msgid "Versión no disponible" +#~ msgstr "Version unavailable" + +#~ msgid "Notificaciones no disponibles" +#~ msgstr "Notifications not available" + +#~ msgid "Datos incorrectos" +#~ msgstr "Wrong data" + +#~ msgid "No es posible recuperar la clave" +#~ msgstr "Unable to reset the password" + +#~ msgid "Es necesario una cuenta" +#~ msgstr "An account is needed" + +#~ msgid "Usar auto-login con Auth Basic" +#~ msgstr "Use auto-login through Auth Basic" + +#~ msgid "No es posible cambiar el valor de la clave" +#~ msgstr "Unable to change password value" + +#~ msgid "Filtro incorrecto" +#~ msgstr "Wrong filter" + +#~ msgid "El campo personalizado no existe" +#~ msgstr "Custom field not found" + +#~ msgid "Error al eliminar los plugins" +#~ msgstr "Error while deleting the plugins" + +#~ msgid "Clave maestra no establecida" +#~ msgstr "Master password not set" + +#~ msgid "Error al eliminar las categorías" +#~ msgstr "Error while deleting categories" + +#~ msgid "No es posible restaurar la configuración" +#~ msgstr "Unable to restore configuration" + +#~ msgid "Tipo de campo no encontrado" +#~ msgstr "Field type not found" + +#~ msgid "Fallo en la verificación del hash de integridad" +#~ msgstr "Error while checking integrity hash" + +#~ msgid "Error al crear el usuario 'admin'" +#~ msgstr "Error while creating 'admin' user" + +#~ msgid "Servicio de correo no disponible" +#~ msgstr "Mail service unavailable" + +#~ msgid "Error ol obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master pass from context" + +#~ msgid "Error ol establecer la clave maestra en el contexto" +#~ msgstr "Error while setting master password in context" + +#~ msgid "Track no encontrado" +#~ msgstr "Track not found" + +#~ msgid "Actualización de autorizaciones API" +#~ msgstr "API authorizations update" + +#~ msgid "El nodo XML no existe" +#~ msgstr "The XML node does not exist" + +#~ msgid "Imagen no válida" +#~ msgstr "Invalid image" + +#~ msgid "Verificación de datos exportados finalizada" +#~ msgstr "Verification of exported data finished" + +#~ msgid "Error al actualizar los datos del campo personalizado" +#~ msgstr "Error while updating custom field's data" + +#~ msgid "Error al obtener la clave maestra del contexto" +#~ msgstr "Error while retrieving master password from context" + +#~ msgid "Nuevo CLiente" +#~ msgstr "New Client" + +#~ msgid "" +#~ "Si está importando un archivo exportado desde el mismo origen, los datos " +#~ "pueden estar comprometidos." +#~ msgstr "" +#~ "If you are importing an exported file from the same origin, the data " +#~ "could be compromised." + +#~ msgid "Categoría visualizada" +#~ msgstr "Category displayed" + +#~ msgid "Cliente visualizado" +#~ msgstr "Client displayed" + +#~ msgid "Etiqueta visualizada" +#~ msgstr "Tag displayed" + +#~ msgid "Error al crear permiso" +#~ msgstr "Error while creating the permission" + +#~ msgid "Error al actualizar permiso" +#~ msgstr "Error while updating the permission" + +#~ msgid "Error al eliminar permiso" +#~ msgstr "Error while removing the permission" + +#~ msgid "Error al eliminar los permisos" +#~ msgstr "Error while removing the permissions" + +#~ msgid "Permiso no encontrada" +#~ msgstr "Permission not found" + +#~ msgid "Ver Permiso" +#~ msgstr "View Permission" + +#~ msgid "Nuevo Permiso" +#~ msgstr "New Permission" + +#~ msgid "Editar Permiso" +#~ msgstr "Edit Permission" + +#~ msgid "Permisos eliminados" +#~ msgstr "Permissions deleted" + +#~ msgid "Permiso eliminado" +#~ msgstr "Permission deleted" + +#~ msgid "Permiso creado" +#~ msgstr "Permission added" + +#~ msgid "Permiso actualizado" +#~ msgstr "Permission updated" + +#~ msgid "Permisos por Defecto" +#~ msgstr "Default Permissions" + +#~ msgid "Buscar Permiso" +#~ msgstr "Search for Permission" + +#~ msgid "Eliminar Permiso" +#~ msgstr "Delete Permission" + +#~ msgid "Es necesario asignar un elemento del tipo usuario, grupo o perfil" +#~ msgstr "An element of type user, group or profile need to be set" + +#~ msgid "No hay permisos definidos" +#~ msgstr "There aren't any defined permissions" + +#~ msgid "" +#~ "Prioridad de asignación en caso de coincidir con otros permisos asignados " +#~ "por usuario, grupo o perfil." +#~ msgstr "" +#~ "Assignment priority if permissions match with others assigned by user, " +#~ "group or profile." + +#~ msgid "" +#~ "Indica si los permisos serán forzados al crear o modificar la cuenta." +#~ msgstr "" +#~ "Enforces the permissions to be set either on creating or updating an " +#~ "account ." + +#~ msgid "Los permisos serán añadidos a los existentes." +#~ msgstr "Permissions will be merged with the existing ones." + +#~ msgid "Gestión Permisos" +#~ msgstr "Permissions Management" + +#~ msgid "La clave no cumple los carácteres requeridos" +#~ msgstr "Password does not contain the required characters" + +#~ msgid "Es necesario que la clave contenga letras" +#~ msgstr "Password needs to contain letters" + +#~ msgid "Es necesario que la clave contenga minúsculas" +#~ msgstr "Password needs to contain lower case letters" + +#~ msgid "Es necesario que la clave contenga mayúsculas" +#~ msgstr "Password needs to contain upper case letters" + +#~ msgid "Es necesario que la clave contenga números" +#~ msgstr "Password needs to contain numbers" + +#~ msgid "Es necesario que la clave contenga símbolos" +#~ msgstr "Password needs to contain symbols" + +#~ msgid "Error al desconectar del servidor de LDAP" +#~ msgstr "Error while disconnecting from LDAP server" + +#~ msgid "Valor no encontrada" +#~ msgstr "Value not found" + +#~ msgid "Error al eliminar los valores" +#~ msgstr "Error while deleting the values" + +#~ msgid "Dirección IP no establecida" +#~ msgstr "IP address not set" + +#~ msgid "Valores eliminados" +#~ msgstr "Values deleted" + +#~ msgid "Valor eliminado" +#~ msgstr "Value deleted" + +#~ msgid "Valor creado" +#~ msgstr "Value created" + +#~ msgid "Valor actualizado" +#~ msgstr "Value updated" + +#~ msgid "Tipo de valor no definido o incorrecto" +#~ msgstr "Value type not set or incorrect" + +#~ msgid "Expresión regular inválida" +#~ msgstr "Invalid regular expression" + +#~ msgid "Error al vaciar tracks" +#~ msgstr "Error while clearing tracks out" + +#~ msgid "Track desbloqueado" +#~ msgstr "Track unlocked" + +#~ msgid "Tracks limpiados" +#~ msgstr "Tracks cleared out" + +#~ msgid "Grupo visualizado" +#~ msgstr "Group viewed" + +#~ msgid "Plugin disponible" +#~ msgstr "Plugin available" + +#~ msgid "Plugin no disponible" +#~ msgstr "Plugin unavailable" + +#~ msgid "Plugin cargado" +#~ msgstr "Plugin loaded" diff --git a/app/modules/web/Controllers/AccountFileController.php b/app/modules/web/Controllers/AccountFileController.php index 49586b4d..1203f877 100644 --- a/app/modules/web/Controllers/AccountFileController.php +++ b/app/modules/web/Controllers/AccountFileController.php @@ -161,6 +161,8 @@ final class AccountFileController extends ControllerBase implements CrudControll $response->send(true); } catch (\Exception $e) { processException($e); + + $this->eventDispatcher->notifyEvent('exception', new Event($e)); } return ''; diff --git a/app/modules/web/Controllers/ConfigBackupController.php b/app/modules/web/Controllers/ConfigBackupController.php index 15d66780..d3c730ba 100644 --- a/app/modules/web/Controllers/ConfigBackupController.php +++ b/app/modules/web/Controllers/ConfigBackupController.php @@ -34,6 +34,7 @@ use SP\Modules\Web\Controllers\Traits\ConfigTrait; use SP\Services\Backup\FileBackupService; use SP\Services\Export\XmlExportService; use SP\Services\Export\XmlVerifyService; +use SP\Storage\File\FileHandler; /** * Class ConfigBackupController @@ -127,6 +128,9 @@ final class ConfigBackupController extends SimpleControllerBase ) ); + // Create the XML archive after verifying the export integrity + $export->createArchive(); + return $this->returnJsonResponse(JsonResponse::JSON_SUCCESS, __u('Proceso de exportación finalizado')); } catch (\Exception $e) { processException($e); @@ -139,6 +143,132 @@ final class ConfigBackupController extends SimpleControllerBase /** * @return bool + * @throws \SP\Core\Exceptions\SPException + */ + public function downloadExportAction() + { + $this->checkSecurityToken($this->previousSk, $this->request); + + try { + SessionContext::close(); + + $filePath = XmlExportService::getExportFilename(BACKUP_PATH, $this->configData->getExportHash(), true); + + $file = new FileHandler($filePath); + $file->checkFileExists(); + + $this->eventDispatcher->notifyEvent('download.exportFile', + new Event($this, EventMessage::factory() + ->addDescription(__u('Archivo descargado')) + ->addDetail(__u('Archivo'), $file->getFile())) + ); + + $response = $this->router->response(); + $response->header('Cache-Control', 'max-age=60, must-revalidate'); + $response->header('Content-length', $file->getFileSize()); + $response->header('Content-type', $file->getFileType()); + $response->header('Content-Description', ' sysPass file'); + $response->header('Content-transfer-encoding', 'chunked'); + $response->header('Content-Disposition', 'attachment; filename="' . basename($file->getFile()) . '"'); + $response->header('Set-Cookie', 'fileDownload=true; path=/'); + $response->send(); + + $file->readChunked(); + } catch (\Exception $e) { + processException($e); + + $this->eventDispatcher->notifyEvent('exception', new Event($e)); + } + + return ''; + } + + /** + * @return bool + * @throws \SP\Core\Exceptions\SPException + */ + public function downloadBackupAppAction() + { + $this->checkSecurityToken($this->previousSk, $this->request); + + try { + SessionContext::close(); + + $filePath = FileBackupService::getAppBackupFilename(BACKUP_PATH, $this->configData->getBackupHash(), true); + + $file = new FileHandler($filePath); + $file->checkFileExists(); + + $this->eventDispatcher->notifyEvent('download.backupAppFile', + new Event($this, EventMessage::factory() + ->addDescription(__u('Archivo descargado')) + ->addDetail(__u('Archivo'), $file->getFile())) + ); + + $response = $this->router->response(); + $response->header('Cache-Control', 'max-age=60, must-revalidate'); + $response->header('Content-length', $file->getFileSize()); + $response->header('Content-type', $file->getFileType()); + $response->header('Content-Description', ' sysPass file'); + $response->header('Content-transfer-encoding', 'chunked'); + $response->header('Content-Disposition', 'attachment; filename="' . basename($file->getFile()) . '"'); + $response->header('Set-Cookie', 'fileDownload=true; path=/'); + $response->send(); + + $file->readChunked(); + } catch (\Exception $e) { + processException($e); + + $this->eventDispatcher->notifyEvent('exception', new Event($e)); + } + + return ''; + } + + /** + * @return bool + * @throws \SP\Core\Exceptions\SPException + */ + public function downloadBackupDbAction() + { + $this->checkSecurityToken($this->previousSk, $this->request); + + try { + SessionContext::close(); + + $filePath = FileBackupService::getDbBackupFilename(BACKUP_PATH, $this->configData->getBackupHash(), true); + + $file = new FileHandler($filePath); + $file->checkFileExists(); + + $this->eventDispatcher->notifyEvent('download.backupDbFile', + new Event($this, EventMessage::factory() + ->addDescription(__u('Archivo descargado')) + ->addDetail(__u('Archivo'), $file->getFile())) + ); + + $response = $this->router->response(); + $response->header('Cache-Control', 'max-age=60, must-revalidate'); + $response->header('Content-length', $file->getFileSize()); + $response->header('Content-type', $file->getFileType()); + $response->header('Content-Description', ' sysPass file'); + $response->header('Content-transfer-encoding', 'chunked'); + $response->header('Content-Disposition', 'attachment; filename="' . basename($file->getFile()) . '"'); + $response->header('Set-Cookie', 'fileDownload=true; path=/'); + $response->send(); + + $file->readChunked(); + } catch (\Exception $e) { + processException($e); + + $this->eventDispatcher->notifyEvent('exception', new Event($e)); + } + + return ''; + } + + /** + * initialize */ protected function initialize() { @@ -148,7 +278,7 @@ final class ConfigBackupController extends SimpleControllerBase } catch (UnauthorizedPageException $e) { $this->eventDispatcher->notifyEvent('exception', new Event($e)); - return $this->returnJsonResponseException($e); + $this->returnJsonResponseException($e); } } } \ No newline at end of file diff --git a/app/modules/web/Controllers/ConfigManagerController.php b/app/modules/web/Controllers/ConfigManagerController.php index 2a8433ed..3675a145 100644 --- a/app/modules/web/Controllers/ConfigManagerController.php +++ b/app/modules/web/Controllers/ConfigManagerController.php @@ -24,7 +24,6 @@ namespace SP\Modules\Web\Controllers; -use SP\Bootstrap; use SP\Core\Acl\Acl; use SP\Core\AppInfoInterface; use SP\Core\Crypt\CryptSessionHandler; @@ -37,14 +36,19 @@ use SP\Plugin\PluginManager; use SP\Providers\Log\LogInterface; use SP\Providers\Mail\MailHandler; use SP\Services\Account\AccountService; +use SP\Services\Backup\FileBackupService; use SP\Services\Config\ConfigService; use SP\Services\Crypt\TemporaryMasterPassService; +use SP\Services\Export\XmlExportService; use SP\Services\Task\Task; use SP\Services\User\UserService; use SP\Services\UserGroup\UserGroupService; use SP\Services\UserProfile\UserProfileService; use SP\Storage\Database\DatabaseUtil; use SP\Storage\Database\DBStorageInterface; +use SP\Storage\File\FileException; +use SP\Storage\File\FileHandler; +use SP\Util\Util; /** * Class ConfigManagerController @@ -233,6 +237,8 @@ final class ConfigManagerController extends ControllerBase /** * @return DataTab + * @throws \DI\DependencyException + * @throws \DI\NotFoundException * @throws \SP\Core\Exceptions\ConstraintException * @throws \SP\Core\Exceptions\QueryException * @throws \SP\Repositories\NoSuchItemException @@ -280,44 +286,31 @@ final class ConfigManagerController extends ControllerBase $template->assign('pharIsAvailable', $this->extensionChecker->checkPharAvailable()); $template->assign('siteName', AppInfoInterface::APP_NAME); - $template->assign('backupDir', BACKUP_PATH); - $template->assign('backupPath', Bootstrap::$WEBROOT . '/backup'); - $backupHash = $this->configData->getBackupHash(); - $exportHash = $this->configData->getExportHash(); + $backupAppFile = new FileHandler(FileBackupService::getAppBackupFilename(BACKUP_PATH, $this->configData->getBackupHash(), true)); + $backupDbFile = new FileHandler(FileBackupService::getDbBackupFilename(BACKUP_PATH, $this->configData->getBackupHash(), true)); + $exportFile = new FileHandler(XmlExportService::getExportFilename(BACKUP_PATH, $this->configData->getExportHash(), true)); - $backupFile = $template->siteName . '-' . $backupHash . '.tar.gz'; + try { + $backupAppFile->checkFileExists(); + $backupDbFile->checkFileExists(); - $template->assign('backupFile', [ - 'absolute' => BACKUP_PATH . DIRECTORY_SEPARATOR . $backupFile, - 'relative' => $template->backupPath . '/' . $backupFile, - 'filename' => $backupFile - ]); + $template->assign('hasBackup', true); + $template->assign('lastBackupTime', date('r', $backupAppFile->getFileTime())); + } catch (FileException $e) { + $template->assign('hasBackup', false); + $template->assign('lastBackupTime', __('No se encontraron backups')); + } - $backupDbFile = $template->siteName . '_db-' . $backupHash . '.sql'; + try { + $exportFile->checkFileExists(); - $template->assign('backupDbFile', [ - 'absolute' => BACKUP_PATH . DIRECTORY_SEPARATOR . $backupDbFile, - 'relative' => $template->backupPath . '/' . $backupDbFile, - 'filename' => $backupDbFile - ]); - - clearstatcache(true, $template->backupFile['absolute']); - clearstatcache(true, $template->backupDbFile['absolute']); - - $template->assign('lastBackupTime', file_exists($template->backupFile['absolute']) ? __('Último backup') . ': ' . date('r', filemtime($template->backupFile['absolute'])) : __('No se encontraron backups')); - - $exportFile = $template->siteName . '-' . $exportHash . '.xml'; - - $template->assign('exportFile', [ - 'absolute' => BACKUP_PATH . DIRECTORY_SEPARATOR . $exportFile, - 'relative' => $template->backupPath . '/' . $exportFile, - 'filename' => $exportFile - ]); - - clearstatcache(true, $template->exportFile['absolute']); - - $template->assign('lastExportTime', file_exists($template->exportFile['absolute']) ? __('Última exportación') . ': ' . date('r', filemtime($template->exportFile['absolute'])) : __('No se encontró archivo de exportación')); + $template->assign('hasExport', true); + $template->assign('lastExportTime', date('r', $exportFile->getFileTime())); + } catch (FileException $e) { + $template->assign('hasExport', false); + $template->assign('lastExportTime', __('No se encontró archivo de exportación')); + } return new DataTab(__('Copia de Seguridad'), $template); } @@ -341,6 +334,8 @@ final class ConfigManagerController extends ControllerBase /** * @return DataTab + * @throws \DI\DependencyException + * @throws \DI\NotFoundException * @throws \SP\Repositories\NoSuchItemException * @throws \SP\Services\ServiceException */ @@ -357,6 +352,7 @@ final class ConfigManagerController extends ControllerBase $template->assign('locale', Language::$localeStatus ?: sprintf('%s (%s)', $this->configData->getSiteLang(), __('No instalado'))); $template->assign('securedSession', CryptSessionHandler::$isSecured); $template->assign('missingExtensions', $this->extensionChecker->getMissing()); + $template->assign('downloadRate', round(Util::getMaxDownloadChunk() / 1024 / 1024)); return new DataTab(__('Información'), $template); } diff --git a/app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php b/app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php index a9c4cbe5..cfe5a2ac 100644 --- a/app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php +++ b/app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php @@ -124,29 +124,28 @@ final class EventlogGrid extends GridBase $gridData->addDataRowSource('login'); $gridData->addDataRowSource('ipAddress', false, function ($value) use ($isDemoMode) { - return $isDemoMode ? preg_replace('#\d+#', '*', $value) : $value; + return $isDemoMode ? '*.*.*.*' : $value; }); $gridData->addDataRowSource('description', false, function ($value) use ($isDemoMode) { if ($isDemoMode) { - $value = preg_replace('/\\d+\\.\\d+\\.\\d+\\.\\d+/', "*.*.*.*", $value); + $value = preg_replace('/\d+\.\d+\.\d+\.\d+/', '*.*.*.*', $value); } - $text = str_replace(';;', PHP_EOL, $value); - - if (preg_match('/^SQL.*/m', $text)) { - $text = preg_replace([ + if (preg_match('/^SQL.*/m', $value)) { + $value = preg_replace([ '/([a-zA-Z_]+),/m', '/(UPDATE|DELETE|TRUNCATE|INSERT|SELECT|WHERE|LEFT|ORDER|LIMIT|FROM)/m'], ['\\1,
', '
\\1'], - $text); + $value); } -// if (strlen($text) >= 100) { -// $text = wordwrap($text, 100, PHP_EOL, true); -// } - - return str_replace(PHP_EOL, '
', $text); + return wordwrap( + str_replace([';;', PHP_EOL], '
', $value), + 100, + '
', + true + ); }, false); $gridData->setData($this->queryResult); diff --git a/app/modules/web/Controllers/Helpers/Grid/FileGrid.php b/app/modules/web/Controllers/Helpers/Grid/FileGrid.php index f81166aa..0f9740f6 100644 --- a/app/modules/web/Controllers/Helpers/Grid/FileGrid.php +++ b/app/modules/web/Controllers/Helpers/Grid/FileGrid.php @@ -162,6 +162,7 @@ final class FileGrid extends GridBase $gridAction->setIcon($this->icons->getIconView()); $gridAction->setOnClickFunction('file/view'); $gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::ACCOUNT_FILE_VIEW)); + $gridAction->setFilterRowSource('type', 'application/pdf'); return $gridAction; } @@ -179,6 +180,9 @@ final class FileGrid extends GridBase $gridAction->setIcon($this->icons->getIconDownload()); $gridAction->setOnClickFunction('file/download'); $gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::ACCOUNT_FILE_DOWNLOAD)); + $gridAction->setRuntimeData(function ($dataItem) use ($gridAction) { + return ['item-type' => $dataItem->type]; + }); return $gridAction; } diff --git a/app/modules/web/Controllers/Helpers/LayoutHelper.php b/app/modules/web/Controllers/Helpers/LayoutHelper.php index 46810345..34297dae 100644 --- a/app/modules/web/Controllers/Helpers/LayoutHelper.php +++ b/app/modules/web/Controllers/Helpers/LayoutHelper.php @@ -37,7 +37,7 @@ use SP\Html\DataGrid\Action\DataGridAction; use SP\Http\Uri; use SP\Plugin\PluginManager; use SP\Services\Install\Installer; -use SP\Util\Version; +use SP\Util\VersionUtil; /** * Class LayoutHelper @@ -134,7 +134,7 @@ final class LayoutHelper extends HelperBase */ protected function getResourcesLinks() { - $version = Version::getVersionStringNormalized(); + $version = VersionUtil::getVersionStringNormalized(); $jsUri = new Uri(Bootstrap::$WEBURI . '/index.php'); $jsUri->addParam('_r', 'resource/js'); diff --git a/app/modules/web/Controllers/PublicLinkController.php b/app/modules/web/Controllers/PublicLinkController.php index 99449c8a..4dcba672 100644 --- a/app/modules/web/Controllers/PublicLinkController.php +++ b/app/modules/web/Controllers/PublicLinkController.php @@ -40,7 +40,7 @@ use SP\Mvc\Controller\CrudControllerInterface; use SP\Mvc\View\Components\SelectItemAdapter; use SP\Services\Account\AccountService; use SP\Services\PublicLink\PublicLinkService; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class PublicLinkController @@ -314,7 +314,7 @@ final class PublicLinkController extends ControllerBase implements CrudControlle $publicLinkData->setTypeId(PublicLinkService::TYPE_ACCOUNT); $publicLinkData->setItemId($accountId); $publicLinkData->setNotify((bool)$notify); - $publicLinkData->setHash(Util::generateRandomBytes()); + $publicLinkData->setHash(PasswordUtil::generateRandomBytes()); $this->publicLinkService->create($publicLinkData); diff --git a/app/modules/web/Controllers/StatusController.php b/app/modules/web/Controllers/StatusController.php index 298eb139..e4c2f164 100644 --- a/app/modules/web/Controllers/StatusController.php +++ b/app/modules/web/Controllers/StatusController.php @@ -30,7 +30,7 @@ use SP\Core\AppInfoInterface; use SP\Core\Exceptions\CheckException; use SP\Http\JsonResponse; use SP\Modules\Web\Controllers\Traits\JsonTrait; -use SP\Util\Version; +use SP\Util\VersionUtil; /** * Class StatusController @@ -73,7 +73,7 @@ final class StatusController extends SimpleControllerBase if (preg_match('/v?(?P\d+)\.(?P\d+)\.(?P\d+)\.(?P\d+)(?P\-[a-z0-9\.]+)?$/', $requestData->tag_name, $matches)) { $pubVersion = $matches['major'] . $matches['minor'] . $matches['patch'] . '.' . $matches['build']; - if (Version::checkVersion(Version::getVersionStringNormalized(), $pubVersion)) { + if (VersionUtil::checkVersion(VersionUtil::getVersionStringNormalized(), $pubVersion)) { return $this->returnJsonResponseData([ 'version' => $requestData->tag_name, 'url' => $requestData->html_url, diff --git a/app/modules/web/themes/material-blue/views/config/backup.inc b/app/modules/web/themes/material-blue/views/config/backup.inc index 76f7d3a3..3f38c1bd 100644 --- a/app/modules/web/themes/material-blue/views/config/backup.inc +++ b/app/modules/web/themes/material-blue/views/config/backup.inc @@ -35,10 +35,7 @@ - + @@ -46,21 +43,22 @@

- - + + + - + - + @@ -116,9 +114,7 @@ - + @@ -126,15 +122,14 @@
- - + + - + diff --git a/app/modules/web/themes/material-blue/views/config/info.inc b/app/modules/web/themes/material-blue/views/config/info.inc index 690c64cb..eff15099 100644 --- a/app/modules/web/themes/material-blue/views/config/info.inc +++ b/app/modules/web/themes/material-blue/views/config/info.inc @@ -9,7 +9,7 @@
info -
@@ -22,7 +22,7 @@
- + @@ -59,6 +59,8 @@
+
+ =')): ?>
diff --git a/app/modules/web/themes/material-blue/views/grid/datagrid-rows.inc b/app/modules/web/themes/material-blue/views/grid/datagrid-rows.inc index da4ea2c8..9566059c 100644 --- a/app/modules/web/themes/material-blue/views/grid/datagrid-rows.inc +++ b/app/modules/web/themes/material-blue/views/grid/datagrid-rows.inc @@ -15,20 +15,28 @@ if (!isset($data)) { getData()->getDataCount() > 0): $numFields = count($data->getData()->getDataRowSources()); - foreach ($data->getData()->getData() as $dataIndex => $dataItem): ?> - + foreach ($data->getData()->getData() as $dataIndex => $dataItem): + $itemId = $dataItem->{$data->getData()->getDataRowSourceId()}; + ?> + getData()->getDataRowSources() as $rowSrc): ?> {$rowSrc['name']}(); else: $value = $dataItem->{$rowSrc['name']}; endif; - $value = $rowSrc['filter'] !== null ? $rowSrc['filter']($value) : $value; + if ($rowSrc['filter'] !== null): + $value = $rowSrc['filter']($value); + endif; if ($value !== ''): - $value = $rowSrc['truncate'] === true ? Html::truncate($value, 150 / $numFields) : $value; + if ($rowSrc['truncate'] === true): + $value = Html::truncate($value, 150 / $numFields); + endif; else: $value = ' '; endif; @@ -36,9 +44,12 @@ if (!isset($data)) { - getData()->getDataRowSourcesWithIcon()) > 0): ?> + getData()->getDataRowSourcesWithIcon(); + + if (count($rowIcons) > 0): ?> - getData()->getDataRowSourcesWithIcon() as $rowSrcIcon): ?> + {$rowSrcIcon['field']} == $rowSrcIcon['value']): ?> getIcon(); ?> @@ -52,25 +63,33 @@ if (!isset($data)) {
getDataActions() as $action): if (!$action->isSkip()): + $actionUid = uniqid('btn-action-', true); $filter = $action->getFilterRowSource(); - if ($filter !== null) { + if ($filter !== null): /** @var array $filter */ - foreach ($filter as $f) { - if ($dataItem->{$f['field']} == $f['value']) { + foreach ($filter as $f): + if ($dataItem->{$f['field']} == $f['value']): continue 2; - } - } - } + endif; + endforeach; + endif; + + if ($action->getRuntimeData() !== null) : + $nodeData = array_merge($action->getData(), $action->getRuntimeData()($dataItem)); + else: + $nodeData = $action->getData(); + endif; ?> - getData() as $dataName => $dataValue): echo 'data-', $dataName, '=', '"', $dataValue, '"'; endforeach; ?> - >getIcon()->getIcon(); ?> + $dataValue): + echo 'data-', $dataName, '=', '"', $dataValue, '"'; + endforeach; ?>>getIcon()->getIcon(); ?> getTitle(); ?> diff --git a/app/modules/web/themes/material-blue/views/main/upgrade.inc b/app/modules/web/themes/material-blue/views/main/upgrade.inc index ff9d5e4f..dc447f44 100644 --- a/app/modules/web/themes/material-blue/views/main/upgrade.inc +++ b/app/modules/web/themes/material-blue/views/main/upgrade.inc @@ -9,7 +9,7 @@
-

@@ -37,7 +37,7 @@
- 0): ?>
@@ -120,7 +120,7 @@ - +
  • diff --git a/composer.json b/composer.json index 0d777e8e..88cedacf 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,8 @@ "ext-dom": "*", "ext-gd": "*", "ext-json": "*", - "ext-gettext": "*" + "ext-gettext": "*", + "ext-fileinfo": "*" }, "require-dev": { "phpunit/phpunit": "^6", diff --git a/lib/SP/Bootstrap.php b/lib/SP/Bootstrap.php index d4a25b07..af6e5a4e 100644 --- a/lib/SP/Bootstrap.php +++ b/lib/SP/Bootstrap.php @@ -47,7 +47,7 @@ use SP\Services\Upgrade\UpgradeConfigService; use SP\Services\Upgrade\UpgradeUtil; use SP\Util\Checks; use SP\Util\Filter; -use SP\Util\Version; +use SP\Util\VersionUtil; use Symfony\Component\Debug\Debug; defined('APP_ROOT') || die(); @@ -408,7 +408,7 @@ final class Bootstrap { if (file_exists(OLD_CONFIG_FILE)) { $upgradeConfigService = self::$container->get(UpgradeConfigService::class); - $upgradeConfigService->upgradeOldConfigFile(Version::getVersionStringNormalized()); + $upgradeConfigService->upgradeOldConfigFile(VersionUtil::getVersionStringNormalized()); } $configVersion = UpgradeUtil::fixVersionNumber($this->configData->getConfigVersion()); diff --git a/lib/SP/Config/Config.php b/lib/SP/Config/Config.php index 57d90771..8a013d02 100644 --- a/lib/SP/Config/Config.php +++ b/lib/SP/Config/Config.php @@ -32,7 +32,7 @@ use SP\Core\Exceptions\ConfigException; use SP\Services\Config\ConfigBackupService; use SP\Storage\File\FileException; use SP\Storage\File\XmlFileStorageInterface; -use SP\Util\Util; +use SP\Util\PasswordUtil; defined('APP_ROOT') || die(); @@ -244,7 +244,7 @@ final class Config if (empty($this->configData->getUpgradeKey())) { logger('Generating upgrade key'); - return $this->saveConfig($this->configData->setUpgradeKey(Util::generateRandomBytes(16)), false); + return $this->saveConfig($this->configData->setUpgradeKey(PasswordUtil::generateRandomBytes(16)), false); } return $this; diff --git a/lib/SP/Html/DataGrid/Action/DataGridActionBase.php b/lib/SP/Html/DataGrid/Action/DataGridActionBase.php index 6e4eac4c..1a0ead18 100644 --- a/lib/SP/Html/DataGrid/Action/DataGridActionBase.php +++ b/lib/SP/Html/DataGrid/Action/DataGridActionBase.php @@ -36,88 +36,98 @@ defined('APP_ROOT') || die(); abstract class DataGridActionBase implements DataGridActionInterface { /** - * El objeto reflexivo que determina si se muestra la acción + * The runtime function that determines if the action should be displayed * * @var callable */ protected $runtimeFilter; /** - * El nombre de la acción + * The runtime function to pass in the row dato to the action + * + * @var callable + */ + protected $runtimeData; + /** + * Action's name * * @var string */ protected $name = ''; /** - * El título de la acción + * Action's title * * @var string */ protected $title = ''; /** - * El id de la acción + * Action's title ID * * @var int */ protected $id = 0; /** - * La función javascript del evento OnClick + * The JavaScript function to be triggered on OnClick event * * @var string */ protected $onClickFunction = ''; /** - * Los argumentos de la función OnClick + * The OnClick event arguments * * @var array */ protected $onClickArgs; /** - * El icono de la acción + * Action's icon * * @var IconInterface */ protected $icon; /** - * Si se debe de omitir para los elementos del listado + * Sets whether this action should be skipped from listing in rows * * @var bool */ protected $isSkip = false; /** - * La columna de origen de datos que condiciona esta acción + * The row name which determines whether the action is displayed * * @var array */ protected $filterRowSource; /** - * Si es una acción de ayuda + * Sets as a help action * * @var bool */ protected $isHelper; /** - * El tipo de acción + * Action's type * * @var int */ protected $type = 0; /** - * Atributos de datos adicionales + * Data attributes (ie. data-*) * * @var array */ protected $data; /** - * Atributos adicionales + * Additional attributes (ie. name=*) * * @var array */ protected $attributes; /** + * CSS classes + * * @var array */ protected $classes; /** + * Sets as a selection action, that is, to be displayed on a selection menu + * * @var bool */ protected $isSelection = false; @@ -531,4 +541,26 @@ abstract class DataGridActionBase implements DataGridActionInterface return $this; } + + /** + * @return callable + */ + public function getRuntimeData() + { + return $this->runtimeData; + } + + /** + * Sets the runtime data function + * + * @param callable $function + * + * @return $this + */ + public function setRuntimeData(callable $function) + { + $this->runtimeData = $function; + + return $this; + } } diff --git a/lib/SP/Html/DataGrid/Action/DataGridActionInterface.php b/lib/SP/Html/DataGrid/Action/DataGridActionInterface.php index 073dafe0..b02eb383 100644 --- a/lib/SP/Html/DataGrid/Action/DataGridActionInterface.php +++ b/lib/SP/Html/DataGrid/Action/DataGridActionInterface.php @@ -228,4 +228,11 @@ interface DataGridActionInterface * @return bool */ public function isSelection(): bool; + + /** + * Returns the runtime function to pass in the row dato to the action + * + * @return callable + */ + public function getRuntimeData(); } \ No newline at end of file diff --git a/lib/SP/Html/DataGrid/DataGridDataInterface.php b/lib/SP/Html/DataGrid/DataGridDataInterface.php index d3d612ce..f9c069cb 100644 --- a/lib/SP/Html/DataGrid/DataGridDataInterface.php +++ b/lib/SP/Html/DataGrid/DataGridDataInterface.php @@ -87,8 +87,6 @@ interface DataGridDataInterface * @param $source string * @param $icon IconInterface * @param mixed $value Valor para mostrar el icono - * - * @return */ public function addDataRowSourceWithIcon($source, IconInterface $icon, $value = 1); diff --git a/lib/SP/Mvc/View/Template.php b/lib/SP/Mvc/View/Template.php index 689ad79e..04b72202 100644 --- a/lib/SP/Mvc/View/Template.php +++ b/lib/SP/Mvc/View/Template.php @@ -26,6 +26,7 @@ namespace SP\Mvc\View; defined('APP_ROOT') || die(); +use SP\Bootstrap; use SP\Core\Exceptions\FileNotFoundException; use SP\Core\UI\Theme; use SP\Core\UI\ThemeInterface; @@ -368,6 +369,10 @@ final class Template return $this->vars->get($key, $default); }; + $_getRoute = function ($path) use ($sk) { + return Bootstrap::$WEBURI . '/index.php?r=' . $path . '&sk=' . $sk; + }; + ob_start(); // Añadimos las plantillas diff --git a/lib/SP/Services/Auth/LoginService.php b/lib/SP/Services/Auth/LoginService.php index 494a8e1f..22120480 100644 --- a/lib/SP/Services/Auth/LoginService.php +++ b/lib/SP/Services/Auth/LoginService.php @@ -51,7 +51,7 @@ use SP\Services\User\UserPassService; use SP\Services\User\UserService; use SP\Services\UserPassRecover\UserPassRecoverService; use SP\Services\UserProfile\UserProfileService; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class LoginService @@ -238,7 +238,7 @@ final class LoginService extends Service ->addDetail(__u('Usuario'), $userLoginResponse->getLogin())) ); - $hash = Util::generateRandomBytes(16); + $hash = PasswordUtil::generateRandomBytes(16); $this->dic->get(UserPassRecoverService::class)->add($userLoginResponse->getId(), $hash); diff --git a/lib/SP/Services/AuthToken/AuthTokenService.php b/lib/SP/Services/AuthToken/AuthTokenService.php index 869d7ac8..13cc105e 100644 --- a/lib/SP/Services/AuthToken/AuthTokenService.php +++ b/lib/SP/Services/AuthToken/AuthTokenService.php @@ -37,7 +37,7 @@ use SP\Services\Service; use SP\Services\ServiceException; use SP\Services\ServiceItemTrait; use SP\Storage\Database\QueryResult; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class AuthTokenService @@ -216,7 +216,7 @@ final class AuthTokenService extends Service */ private function generateToken() { - return Util::generateRandomBytes(32); + return PasswordUtil::generateRandomBytes(32); } /** diff --git a/lib/SP/Services/Backup/FileBackupService.php b/lib/SP/Services/Backup/FileBackupService.php index 4b6490f3..a8ff0ae9 100644 --- a/lib/SP/Services/Backup/FileBackupService.php +++ b/lib/SP/Services/Backup/FileBackupService.php @@ -35,6 +35,7 @@ use SP\Services\ServiceException; use SP\Storage\Database\Database; use SP\Storage\Database\DatabaseUtil; use SP\Storage\Database\QueryData; +use SP\Storage\File\ArchiveHandler; use SP\Storage\File\FileHandler; use SP\Util\Checks; @@ -65,7 +66,10 @@ final class FileBackupService extends Service * @var PhpExtensionChecker */ private $extensionChecker; - + /** + * @var string + */ + private $hash; /** * Realizar backup de la BBDD y aplicación. @@ -81,10 +85,10 @@ final class FileBackupService extends Service $this->checkBackupDir(); // Generar hash unico para evitar descargas no permitidas - $backupUniqueHash = sha1(uniqid('sysPassBackup', true)); + $this->hash = sha1(uniqid('sysPassBackup', true)); - $this->backupFileApp = $this->path . DIRECTORY_SEPARATOR . AppInfoInterface::APP_NAME . '-' . $backupUniqueHash . '.tar'; - $this->backupFileDb = $this->path . DIRECTORY_SEPARATOR . AppInfoInterface::APP_NAME . '_db-' . $backupUniqueHash . '.sql'; + $this->backupFileApp = self::getAppBackupFilename($path, $this->hash); + $this->backupFileDb = self::getDbBackupFilename($path, $this->hash); try { $this->deleteOldBackups(); @@ -93,15 +97,15 @@ final class FileBackupService extends Service new Event($this, EventMessage::factory()->addDescription(__u('Realizar Backup')))); - $this->backupTables('*', new FileHandler($this->backupFileDb)); + $this->backupTables(new FileHandler($this->backupFileDb), '*'); - if (!$this->backupApp($this->backupFileApp) - && !$this->backupAppLegacyLinux($this->backupFileApp) + if (!$this->backupApp() + && !$this->backupAppLegacyLinux() ) { throw new ServiceException(__u('Error al realizar backup en modo compatibilidad')); } - $this->configData->setBackupHash($backupUniqueHash); + $this->configData->setBackupHash($this->hash); $this->config->saveConfig($this->configData); } catch (ServiceException $e) { throw $e; @@ -141,12 +145,48 @@ final class FileBackupService extends Service return true; } + /** + * @param string $path + * @param string $hash + * @param bool $compressed + * + * @return string + */ + public static function getAppBackupFilename(string $path, string $hash, bool $compressed = false) + { + $file = $path . DIRECTORY_SEPARATOR . AppInfoInterface::APP_NAME . '_app-' . $hash; + + if ($compressed) { + return $file . ArchiveHandler::COMPRESS_EXTENSION; + } + + return $file; + } + + /** + * @param string $path + * @param string $hash + * @param bool $compressed + * + * @return string + */ + public static function getDbBackupFilename(string $path, string $hash, bool $compressed = false) + { + $file = $path . DIRECTORY_SEPARATOR . AppInfoInterface::APP_NAME . '_db-' . $hash; + + if ($compressed) { + return $file . ArchiveHandler::COMPRESS_EXTENSION; + } + + return $file . '.sql'; + } + /** * Eliminar las copias de seguridad anteriores */ private function deleteOldBackups() { - array_map('unlink', glob($this->path . DIRECTORY_SEPARATOR . '*.tar.gz')); + array_map('unlink', glob($this->path . DIRECTORY_SEPARATOR . '*' . ArchiveHandler::COMPRESS_EXTENSION)); array_map('unlink', glob($this->path . DIRECTORY_SEPARATOR . '*.sql')); } @@ -154,13 +194,15 @@ final class FileBackupService extends Service * Backup de las tablas de la BBDD. * Utilizar '*' para toda la BBDD o 'table1 table2 table3...' * - * @param string|array $tables * @param \SP\Storage\File\FileHandler $fileHandler + * @param string|array $tables * - * @throws \Exception + * @throws \SP\Core\Exceptions\ConstraintException + * @throws \SP\Core\Exceptions\QueryException * @throws \SP\Storage\File\FileException + * @throws \SP\Core\Exceptions\CheckException */ - private function backupTables($tables = '*', FileHandler $fileHandler) + private function backupTables(FileHandler $fileHandler, $tables = '*') { $this->eventDispatcher->notifyEvent('run.backup.process', new Event($this, @@ -277,56 +319,40 @@ final class FileBackupService extends Service $fileHandler->write($sqlOut); $fileHandler->close(); + + $archive = new ArchiveHandler($fileHandler->getFile(), $this->extensionChecker); + $archive->compressFile($fileHandler->getFile()); + + $fileHandler->delete(); } /** * Realizar un backup de la aplicación y comprimirlo. * - * @param string $backupFile nombre del archivo de backup - * * @return bool * @throws \SP\Core\Exceptions\CheckException + * @throws \SP\Storage\File\FileException */ - private function backupApp($backupFile) + private function backupApp() { - if (!$this->extensionChecker->checkPharAvailable()) { - $this->eventDispatcher->notifyEvent('error', - new Event($this, EventMessage::factory() - ->addDescription(sprintf(__('La extensión \'%s\' no está disponible'), 'phar'))) - ); - - return false; - } - $this->eventDispatcher->notifyEvent('run.backup.process', new Event($this, EventMessage::factory() ->addDescription(__u('Copiando aplicación'))) ); - $compressedFile = $backupFile . '.gz'; + $archive = new ArchiveHandler($this->backupFileApp, $this->extensionChecker); + $archive->compressDirectory(APP_ROOT, '#^(?!(.*backup))(.*)$#i'); - if (file_exists($compressedFile)) { - unlink($compressedFile); - } - - $archive = new \PharData($backupFile); - $archive->buildFromDirectory(APP_ROOT, '/^(?!backup).*$/i'); - $archive->compress(\Phar::GZ); - - unlink($backupFile); - - return file_exists($compressedFile); + return true; } /** * Realizar un backup de la aplicación y comprimirlo usando aplicaciones del SO Linux. * - * @param string $backupFile nombre del archivo de backup - * * @return int Con el código de salida del comando ejecutado * @throws ServiceException */ - private function backupAppLegacyLinux($backupFile) + private function backupAppLegacyLinux() { if (Checks::checkIsWindows()) { throw new ServiceException( @@ -338,9 +364,7 @@ final class FileBackupService extends Service ->addDescription(__u('Copiando aplicación'))) ); - $compressedFile = $backupFile . '.gz'; - - $command = 'tar czf ' . $compressedFile . ' ' . BASE_PATH . ' --exclude "' . $this->path . '" 2>&1'; + $command = 'tar czf ' . $this->backupFileApp . ArchiveHandler::COMPRESS_EXTENSION . ' ' . BASE_PATH . ' --exclude "' . $this->path . '" 2>&1'; exec($command, $resOut, $resBakApp); return $resBakApp; @@ -349,17 +373,9 @@ final class FileBackupService extends Service /** * @return string */ - public function getBackupFileApp(): string + public function getHash(): string { - return $this->backupFileApp; - } - - /** - * @return string - */ - public function getBackupFileDb(): string - { - return $this->backupFileDb; + return $this->hash; } /** diff --git a/lib/SP/Services/Crypt/TemporaryMasterPassService.php b/lib/SP/Services/Crypt/TemporaryMasterPassService.php index c039fb32..ae2e7d51 100644 --- a/lib/SP/Services/Crypt/TemporaryMasterPassService.php +++ b/lib/SP/Services/Crypt/TemporaryMasterPassService.php @@ -37,7 +37,7 @@ use SP\Services\Mail\MailService; use SP\Services\Service; use SP\Services\ServiceException; use SP\Services\User\UserService; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class TemporaryMasterPassService @@ -82,7 +82,7 @@ final class TemporaryMasterPassService extends Service $this->maxTime = time() + $maxTime; // Encriptar la clave maestra con hash aleatorio generado - $randomKey = Util::generateRandomBytes(32); + $randomKey = PasswordUtil::generateRandomBytes(32); $secureKey = Crypt::makeSecuredKey($randomKey); $configRequest = new ConfigRequest(); diff --git a/lib/SP/Services/Export/XmlExportService.php b/lib/SP/Services/Export/XmlExportService.php index 35ad089b..ed243264 100644 --- a/lib/SP/Services/Export/XmlExportService.php +++ b/lib/SP/Services/Export/XmlExportService.php @@ -33,6 +33,7 @@ use SP\Core\Crypt\Crypt; use SP\Core\Crypt\Hash; use SP\Core\Events\Event; use SP\Core\Events\EventMessage; +use SP\Core\PhpExtensionChecker; use SP\DataModel\CategoryData; use SP\Services\Account\AccountService; use SP\Services\Account\AccountToTagService; @@ -41,7 +42,9 @@ use SP\Services\Client\ClientService; use SP\Services\Service; use SP\Services\ServiceException; use SP\Services\Tag\TagService; -use SP\Util\Version; +use SP\Storage\File\ArchiveHandler; +use SP\Storage\File\FileHandler; +use SP\Util\VersionUtil; defined('APP_ROOT') || die(); @@ -55,7 +58,11 @@ final class XmlExportService extends Service /** * @var ConfigData */ - protected $configData; + private $configData; + /** + * @var + */ + private $extensionChecker; /** * @var \DOMDocument */ @@ -110,7 +117,9 @@ final class XmlExportService extends Service */ private function setExportPath(string $exportPath) { - if (!is_dir($exportPath) && @mkdir($exportPath, 0700, true) === false) { + if (!is_dir($exportPath) + && @mkdir($exportPath, 0700, true) === false + ) { throw new ServiceException(sprintf(__('No es posible crear el directorio (%s)'), $exportPath)); } @@ -125,11 +134,29 @@ final class XmlExportService extends Service private function generateExportFilename(): string { // Generar hash unico para evitar descargas no permitidas - $exportUniqueHash = sha1(uniqid('sysPassExport', true)); - $this->configData->setExportHash($exportUniqueHash); + $hash = sha1(uniqid('sysPassExport', true)); + $this->configData->setExportHash($hash); $this->config->saveConfig($this->configData); - return $this->exportPath . DIRECTORY_SEPARATOR . AppInfoInterface::APP_NAME . '-' . $exportUniqueHash . '.xml'; + return self::getExportFilename($this->exportPath, $hash); + } + + /** + * @param string $path + * @param string $hash + * @param bool $compressed + * + * @return string + */ + public static function getExportFilename(string $path, string $hash, bool $compressed = false) + { + $file = $path . DIRECTORY_SEPARATOR . AppInfoInterface::APP_NAME . '_export-' . $hash; + + if ($compressed) { + return $file . ArchiveHandler::COMPRESS_EXTENSION; + } + + return $file . '.xml'; } /** @@ -137,7 +164,11 @@ final class XmlExportService extends Service */ private function deleteOldExports() { - array_map('unlink', glob($this->exportPath . DIRECTORY_SEPARATOR . '*.xml')); + $path = $this->exportPath . DIRECTORY_SEPARATOR . AppInfoInterface::APP_NAME; + + array_map(function ($file) { + return @unlink($file); + }, array_merge(glob($path . '_export-*'), glob($path . '*.xml'))); } /** @@ -198,7 +229,7 @@ final class XmlExportService extends Service $nodeMeta = $this->xml->createElement('Meta'); $metaGenerator = $this->xml->createElement('Generator', 'sysPass'); - $metaVersion = $this->xml->createElement('Version', Version::getVersionStringNormalized()); + $metaVersion = $this->xml->createElement('Version', VersionUtil::getVersionStringNormalized()); $metaTime = $this->xml->createElement('Time', time()); $metaUser = $this->xml->createElement('User', $userData->getLogin()); $metaUser->setAttribute('id', $userData->getId()); @@ -549,6 +580,19 @@ final class XmlExportService extends Service } } + /** + * @throws \SP\Core\Exceptions\CheckException + * @throws \SP\Storage\File\FileException + */ + public function createArchive() + { + $archive = new ArchiveHandler($this->exportFile, $this->extensionChecker); + $archive->compressFile($this->exportFile); + + $file = new FileHandler($this->exportFile); + $file->delete(); + } + /** * @return string */ @@ -571,6 +615,7 @@ final class XmlExportService extends Service */ protected function initialize() { + $this->extensionChecker = $this->dic->get(PhpExtensionChecker::class); $this->configData = $this->config->getConfigData(); $this->xml = new \DOMDocument('1.0', 'UTF-8'); } diff --git a/lib/SP/Services/Install/Installer.php b/lib/SP/Services/Install/Installer.php index 5b3ab16d..a08e3aad 100644 --- a/lib/SP/Services/Install/Installer.php +++ b/lib/SP/Services/Install/Installer.php @@ -42,8 +42,8 @@ use SP\Services\UserGroup\UserGroupService; use SP\Services\UserProfile\UserProfileService; use SP\Storage\Database\Database; use SP\Storage\Database\DBStorageInterface; -use SP\Util\Util; -use SP\Util\Version; +use SP\Util\PasswordUtil; +use SP\Util\VersionUtil; defined('APP_ROOT') || die(); @@ -57,7 +57,7 @@ final class Installer extends Service */ const VERSION = [3, 0, 0]; const VERSION_TEXT = '3.0-beta'; - const BUILD = 18102401; + const BUILD = 18102801; /** * @var DatabaseSetupInterface @@ -185,7 +185,7 @@ final class Installer extends Service $this->saveMasterPassword(); $this->createAdminAccount(); - $version = Version::getVersionStringNormalized(); + $version = VersionUtil::getVersionStringNormalized(); $this->dic->get(ConfigService::class) ->create(new \SP\DataModel\ConfigData('version', $version)); @@ -235,11 +235,11 @@ final class Installer extends Service private function setupConfig() { // Generate a random salt that is used to salt the local user passwords - $this->configData->setPasswordSalt(Util::generateRandomBytes(30)); + $this->configData->setPasswordSalt(PasswordUtil::generateRandomBytes(30)); // Sets version and remove upgrade key - $this->configData->setConfigVersion(Version::getVersionStringNormalized()); - $this->configData->setDatabaseVersion(Version::getVersionStringNormalized()); + $this->configData->setConfigVersion(VersionUtil::getVersionStringNormalized()); + $this->configData->setDatabaseVersion(VersionUtil::getVersionStringNormalized()); $this->configData->setUpgradeKey(null); // Set DB connection info diff --git a/lib/SP/Services/Install/MySQL.php b/lib/SP/Services/Install/MySQL.php index 8e9aeeec..01318fbd 100644 --- a/lib/SP/Services/Install/MySQL.php +++ b/lib/SP/Services/Install/MySQL.php @@ -34,7 +34,7 @@ use SP\Storage\Database\MySQLFileParser; use SP\Storage\Database\MySQLHandler; use SP\Storage\File\FileException; use SP\Storage\File\FileHandler; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class MySQL @@ -111,7 +111,7 @@ final class MySQL implements DatabaseSetupInterface public function setupDbUser() { $user = substr(uniqid('sp_'), 0, 16); - $pass = Util::randomPassword(); + $pass = PasswordUtil::randomPassword(); try { // Comprobar si el usuario proporcionado existe diff --git a/lib/SP/Services/PublicLink/PublicLinkKey.php b/lib/SP/Services/PublicLink/PublicLinkKey.php index 5fbaafc0..b974ba2f 100644 --- a/lib/SP/Services/PublicLink/PublicLinkKey.php +++ b/lib/SP/Services/PublicLink/PublicLinkKey.php @@ -24,7 +24,7 @@ namespace SP\Services\PublicLink; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class PublicLinkKey @@ -55,7 +55,7 @@ final class PublicLinkKey $this->salt = $salt; if ($hash === null) { - $this->hash = Util::generateRandomBytes(); + $this->hash = PasswordUtil::generateRandomBytes(); } else { $this->hash = $hash; } diff --git a/lib/SP/Services/Upgrade/UpgradeAppService.php b/lib/SP/Services/Upgrade/UpgradeAppService.php index 7a2342d3..34adc09f 100644 --- a/lib/SP/Services/Upgrade/UpgradeAppService.php +++ b/lib/SP/Services/Upgrade/UpgradeAppService.php @@ -28,7 +28,7 @@ use SP\Config\ConfigData; use SP\Core\Events\Event; use SP\Core\Events\EventMessage; use SP\Services\Service; -use SP\Util\Version; +use SP\Util\VersionUtil; /** * Class UpgradeAppService @@ -46,7 +46,7 @@ final class UpgradeAppService extends Service implements UpgradeInterface */ public static function needsUpgrade($version) { - return Version::checkVersion($version, self::UPGRADES); + return VersionUtil::checkVersion($version, self::UPGRADES); } /** @@ -64,7 +64,7 @@ final class UpgradeAppService extends Service implements UpgradeInterface ); foreach (self::UPGRADES as $appVersion) { - if (Version::checkVersion($version, $appVersion)) { + if (VersionUtil::checkVersion($version, $appVersion)) { if ($this->applyUpgrade($appVersion) === false) { throw new UpgradeException( __u('Error al aplicar la actualización de la aplicación'), diff --git a/lib/SP/Services/Upgrade/UpgradeConfigService.php b/lib/SP/Services/Upgrade/UpgradeConfigService.php index dd8bfaa7..a2893476 100644 --- a/lib/SP/Services/Upgrade/UpgradeConfigService.php +++ b/lib/SP/Services/Upgrade/UpgradeConfigService.php @@ -28,7 +28,7 @@ use SP\Config\ConfigData; use SP\Core\Events\Event; use SP\Core\Events\EventMessage; use SP\Services\Service; -use SP\Util\Version; +use SP\Util\VersionUtil; /** * Class UpgradeService @@ -53,7 +53,7 @@ final class UpgradeConfigService extends Service implements UpgradeInterface */ public static function needsUpgrade($version) { - return Version::checkVersion(Version::checkVersion($version, Version::getVersionArrayNormalized()), self::UPGRADES); + return VersionUtil::checkVersion(VersionUtil::checkVersion($version, VersionUtil::getVersionArrayNormalized()), self::UPGRADES); } /** @@ -203,7 +203,7 @@ final class UpgradeConfigService extends Service implements UpgradeInterface $this->eventDispatcher->notifyEvent('upgrade.config.start', new Event($this, $message)); foreach (self::UPGRADES as $upgradeVersion) { - if (Version::checkVersion($version, $upgradeVersion)) { + if (VersionUtil::checkVersion($version, $upgradeVersion)) { $this->applyUpgrade($upgradeVersion); } } diff --git a/lib/SP/Services/Upgrade/UpgradeDatabaseService.php b/lib/SP/Services/Upgrade/UpgradeDatabaseService.php index 09bd7f74..dd89bd9a 100644 --- a/lib/SP/Services/Upgrade/UpgradeDatabaseService.php +++ b/lib/SP/Services/Upgrade/UpgradeDatabaseService.php @@ -32,7 +32,7 @@ use SP\Storage\Database\Database; use SP\Storage\Database\MySQLFileParser; use SP\Storage\File\FileException; use SP\Storage\File\FileHandler; -use SP\Util\Version; +use SP\Util\VersionUtil; /** * Class UpgradeDatabaseService @@ -69,7 +69,7 @@ final class UpgradeDatabaseService extends Service implements UpgradeInterface */ public static function needsUpgrade($version) { - return empty($version) || Version::checkVersion($version, self::UPGRADES); + return empty($version) || VersionUtil::checkVersion($version, self::UPGRADES); } /** @@ -90,7 +90,7 @@ final class UpgradeDatabaseService extends Service implements UpgradeInterface ); foreach (self::UPGRADES as $upgradeVersion) { - if (Version::checkVersion($version, $upgradeVersion)) { + if (VersionUtil::checkVersion($version, $upgradeVersion)) { if ($this->applyPreUpgrade($upgradeVersion) === false) { throw new UpgradeException( __u('Error al aplicar la actualización auxiliar'), diff --git a/lib/SP/Services/Upgrade/UpgradeUtil.php b/lib/SP/Services/Upgrade/UpgradeUtil.php index 70caa80c..9f72655c 100644 --- a/lib/SP/Services/Upgrade/UpgradeUtil.php +++ b/lib/SP/Services/Upgrade/UpgradeUtil.php @@ -25,8 +25,8 @@ namespace SP\Services\Upgrade; use SP\Config\Config; -use SP\Util\Util; -use SP\Util\Version; +use SP\Util\PasswordUtil; +use SP\Util\VersionUtil; /** * Class UpgradeUtil @@ -63,12 +63,12 @@ final class UpgradeUtil */ public function checkDbVersion() { - $appVersion = Version::getVersionStringNormalized(); + $appVersion = VersionUtil::getVersionStringNormalized(); $databaseVersion = UserUpgrade::fixVersionNumber(ConfigDB::getValue('version')); - if (Version::checkVersion($databaseVersion, $appVersion) + if (VersionUtil::checkVersion($databaseVersion, $appVersion) && Request::analyze('nodbupgrade', 0) === 0 - && Version::checkVersion($databaseVersion, self::$dbUpgrade) + && VersionUtil::checkVersion($databaseVersion, self::$dbUpgrade) && !$this->configData->isMaintenance() ) { $this->setUpgradeKey('db'); @@ -91,7 +91,7 @@ final class UpgradeUtil $upgradeKey = $configData->getUpgradeKey(); if (empty($upgradeKey)) { - $configData->setUpgradeKey(Util::generateRandomBytes(32)); + $configData->setUpgradeKey(PasswordUtil::generateRandomBytes(32)); } $configData->setMaintenance(true); @@ -112,7 +112,7 @@ final class UpgradeUtil { $appVersion = UserUpgrade::fixVersionNumber($this->configData->getConfigVersion()); - if (Version::checkVersion($appVersion, self::$appUpgrade) && !$this->configData->isMaintenance()) { + if (VersionUtil::checkVersion($appVersion, self::$appUpgrade) && !$this->configData->isMaintenance()) { $this->setUpgradeKey('app'); // FIXME: send link for upgrading diff --git a/lib/SP/Services/UserPassRecover/UserPassRecoverService.php b/lib/SP/Services/UserPassRecover/UserPassRecoverService.php index 3dd61a16..5148e955 100644 --- a/lib/SP/Services/UserPassRecover/UserPassRecoverService.php +++ b/lib/SP/Services/UserPassRecover/UserPassRecoverService.php @@ -29,7 +29,7 @@ use SP\Core\Messages\MailMessage; use SP\Html\Html; use SP\Services\Service; use SP\Services\ServiceException; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class UserPassRecoverService @@ -103,7 +103,7 @@ final class UserPassRecoverService extends Service throw new ServiceException(__u('Intentos excedidos'), ServiceException::WARNING); } - $hash = Util::generateRandomBytes(16); + $hash = PasswordUtil::generateRandomBytes(16); $this->add($id, $hash); diff --git a/lib/SP/Storage/File/ArchiveHandler.php b/lib/SP/Storage/File/ArchiveHandler.php new file mode 100644 index 00000000..5a25e55f --- /dev/null +++ b/lib/SP/Storage/File/ArchiveHandler.php @@ -0,0 +1,117 @@ +. + */ + +namespace SP\Storage\File; + + +use SP\Core\Exceptions\CheckException; +use SP\Core\PhpExtensionChecker; + +/** + * Class ArchiveHandler + * + * @package SP\Storage\File + */ +final class ArchiveHandler +{ + const COMPRESS_EXTENSION = '.tar.gz'; + + /** + * @var PhpExtensionChecker + */ + private $extensionChecker; + /** + * @var FileHandler + */ + private $archive; + + /** + * ArchiveHandler constructor. + * + * @param string $archive + * @param PhpExtensionChecker $extensionChecker + */ + public function __construct(string $archive, PhpExtensionChecker $extensionChecker) + { + $this->extensionChecker = $extensionChecker; + $this->archive = new FileHandler($archive . self::getArchiveExtension()); + } + + /** + * @return bool|string + */ + private static function getArchiveExtension() + { + return substr(self::COMPRESS_EXTENSION, 0, strrpos(self::COMPRESS_EXTENSION, '.')); + } + + /** + * Realizar un backup de la aplicación y comprimirlo. + * + * @param string $directory + * @param string|null $regex + * + * @throws CheckException + * @throws FileException + */ + public function compressDirectory(string $directory, string $regex = null) + { + $this->extensionChecker->checkPharAvailable(true); + + $archive = new \PharData($this->archive->getFile()); + $archive->buildFromDirectory($directory, $regex); + $archive->compress(\Phar::GZ); + + // Delete the non-compressed archive + $this->archive->delete(); + } + + /** + * Realizar un backup de la aplicación y comprimirlo. + * + * @param string $file + * + * @throws CheckException + * @throws FileException + */ + public function compressFile(string $file) + { + $this->extensionChecker->checkPharAvailable(true); + + $archive = new \PharData($this->archive->getFile()); + $archive->addFile($file, basename($file)); + $archive->compress(\Phar::GZ); + + // Delete the non-compressed archive + $this->archive->delete(); + } + + /** + * @return FileHandler + */ + public function getArchive(): FileHandler + { + return $this->archive; + } +} \ No newline at end of file diff --git a/lib/SP/Storage/File/FileHandler.php b/lib/SP/Storage/File/FileHandler.php index 090a35dc..9d1a76b4 100644 --- a/lib/SP/Storage/File/FileHandler.php +++ b/lib/SP/Storage/File/FileHandler.php @@ -24,6 +24,8 @@ namespace SP\Storage\File; +use SP\Util\Util; + /** * Class FileHandler * @@ -32,6 +34,7 @@ namespace SP\Storage\File; final class FileHandler { const CHUNK_LENGTH = 8192; + const CHUNK_FACTOR = 3; /** * @var string */ @@ -173,6 +176,37 @@ final class FileHandler return $this; } + /** + * @param callable $chunker + * @param float $rate + * + * @throws FileException + */ + public function readChunked(callable $chunker = null, float $rate = null) + { + $maxRate = Util::getMaxDownloadChunk() / self::CHUNK_FACTOR; + + if ($rate === null || $rate > $maxRate) { + $rate = $maxRate; + } + + if (!is_resource($this->handle)) { + $this->open('rb'); + } + + while (!feof($this->handle)) { + if ($chunker !== null) { + $chunker(fread($this->handle, round($rate))); + } else { + print fread($this->handle, round($rate)); + ob_flush(); + flush(); + } + } + + $this->close(); + } + /** * Checks if the file is writable * diff --git a/lib/SP/Util/PasswordUtil.php b/lib/SP/Util/PasswordUtil.php new file mode 100644 index 00000000..2697944b --- /dev/null +++ b/lib/SP/Util/PasswordUtil.php @@ -0,0 +1,141 @@ +. + */ + +namespace SP\Util; + + +use Defuse\Crypto\Core; +use Defuse\Crypto\Encoding; + +/** + * Class PasswordUtil + * + * @package SP\Util + */ +final class PasswordUtil +{ + const CHARS = 'abcdefghijklmnopqrstuwxyz'; + const CHARS_SPECIAL = '@$%&/()!_:.;{}^-'; + const CHARS_NUMBER = '0123456789'; + const FLAG_PASSWORD_NUMBER = 2; + const FLAG_PASSWORD_SPECIAL = 4; + const FLAG_PASSWORD_STRENGTH = 8; + + /** + * Generate a ramdom password + * + * @param int $length Password length + * @param int $flags Password chars included and checking strength flags + * + * @return string + */ + public static function randomPassword($length = 16, int $flags = null) + { + if ($flags === null) { + $flags = self::FLAG_PASSWORD_SPECIAL | self::FLAG_PASSWORD_NUMBER | self::FLAG_PASSWORD_STRENGTH; + } + + $useSpecial = ($flags & self::FLAG_PASSWORD_SPECIAL) > 0; + $useNumbers = ($flags & self::FLAG_PASSWORD_NUMBER) > 0; + + $alphabet = self::CHARS . strtoupper(self::CHARS); + + if ($useSpecial) { + $alphabet .= self::CHARS_SPECIAL; + } + + if ($useNumbers) { + $alphabet .= self::CHARS_NUMBER; + } + + /** + * @return array + */ + $passGen = function () use ($alphabet, $length) { + $pass = []; + $alphaLength = strlen($alphabet) - 1; //put the length -1 in cache + + for ($i = 0; $i < $length; $i++) { + $n = mt_rand(0, $alphaLength); + $pass[] = $alphabet[$n]; + } + + return $pass; + }; + + if ($flags & self::FLAG_PASSWORD_STRENGTH) { + do { + $pass = $passGen(); + $strength = self::checkStrength($pass); + + $res = $strength['lower'] > 0 && $strength['upper'] > 0; + + if ($useSpecial === true) { + $res = $res && $strength['special'] > 0; + } + + if ($useNumbers === true) { + $res = $res && $strength['number'] > 0; + } + } while ($res === false); + + return implode('', $pass); + } + + return implode($passGen()); + } + + /** + * @param array $pass + * + * @return array + */ + public static function checkStrength(array $pass) + { + $charsUpper = strtoupper(self::CHARS); + $strength = ['lower' => 0, 'upper' => 0, 'special' => 0, 'number' => 0]; + + foreach ($pass as $char) { + $strength['lower'] += substr_count(self::CHARS, $char); + $strength['upper'] += substr_count($charsUpper, $char); + $strength['special'] += substr_count(self::CHARS_SPECIAL, $char); + $strength['number'] += substr_count(self::CHARS_NUMBER, $char); + } + + return $strength; + } + + /** + * Generar una cadena aleatoria usuando criptografía. + * + * @param int $length opcional, con la longitud de la cadena + * + * @return string + * @throws \Defuse\Crypto\Exception\EnvironmentIsBrokenException + */ + public static function generateRandomBytes($length = 30) + { + return Encoding::binToHex(Core::secureRandom($length)); + } +} \ No newline at end of file diff --git a/lib/SP/Util/Util.php b/lib/SP/Util/Util.php index d57588aa..f55fffc2 100644 --- a/lib/SP/Util/Util.php +++ b/lib/SP/Util/Util.php @@ -24,8 +24,7 @@ namespace SP\Util; -use Defuse\Crypto\Core; -use Defuse\Crypto\Encoding; +use SP\Storage\File\FileHandler; defined('APP_ROOT') || die(); @@ -34,92 +33,6 @@ defined('APP_ROOT') || die(); */ final class Util { - /** - * Generar una clave aleatoria - * - * @param int $length Longitud de la clave - * @param bool $useNumbers Usar números - * @param bool $useSpecial Usar carácteres especiales - * @param bool $checKStrength - * - * @return string - */ - public static function randomPassword($length = 16, $useNumbers = true, $useSpecial = true, $checKStrength = true) - { - $charsLower = 'abcdefghijklmnopqrstuwxyz'; - $charsUpper = 'ABCDEFGHIJKLMNOPQRSTUWXYZ'; - - $alphabet = $charsLower . $charsUpper; - - if ($useSpecial === true) { - $charsSpecial = '@$%&/()!_:.;{}^'; - $alphabet .= $charsSpecial; - } - - if ($useNumbers === true) { - $charsNumbers = '0123456789'; - $alphabet .= $charsNumbers; - } - - /** - * @return array - */ - $passGen = function () use ($alphabet, $length) { - $pass = []; - $alphaLength = strlen($alphabet) - 1; //put the length -1 in cache - - for ($i = 0; $i < $length; $i++) { - $n = mt_rand(0, $alphaLength); - $pass[] = $alphabet[$n]; - } - - return $pass; - }; - - if ($checKStrength === true) { - do { - $pass = $passGen(); - $strength = ['lower' => 0, 'upper' => 0, 'special' => 0, 'number' => 0]; - - foreach ($pass as $char) { - if (strpos($charsLower, $char) !== false) { - $strength['lower']++; - } elseif (strpos($charsUpper, $char) !== false) { - $strength['upper']++; - } elseif ($useSpecial === true && strpos($charsSpecial, $char) !== false) { - $strength['special']++; - } elseif ($useNumbers === true && strpos($charsNumbers, $char) !== false) { - $strength['number']++; - } - } - - if ($useSpecial === false) { - unset($strength['special']); - } - - if ($useNumbers === false) { - unset($strength['number']); - } - } while (in_array(0, $strength, true)); - - return implode($pass); - } - - return implode($passGen()); - } - - /** - * Generar una cadena aleatoria usuando criptografía. - * - * @param int $length opcional, con la longitud de la cadena - * - * @return string - * @throws \Defuse\Crypto\Exception\EnvironmentIsBrokenException - */ - public static function generateRandomBytes($length = 30) - { - return Encoding::binToHex(Core::secureRandom($length)); - } /** * Comprueba y devuelve un directorio temporal válido @@ -166,13 +79,32 @@ final class Util /** * Obtener el tamaño máximo de subida de PHP. */ - public static function getMaxUpload() + public static function getMaxUpload(): int { - $max_upload = (int)ini_get('upload_max_filesize'); - $max_post = (int)ini_get('post_max_size'); - $memory_limit = (int)ini_get('memory_limit'); + return min(self::convertShortUnit(ini_get('upload_max_filesize')), + self::convertShortUnit(ini_get('post_max_size')), + self::convertShortUnit(ini_get('memory_limit'))); + } - return min($max_upload, $max_post, $memory_limit); + /** + * @param $value + * + * @return int + */ + public static function convertShortUnit($value): int + { + if (preg_match('/(\d+)(\w+)/', $value, $match)) { + switch (strtoupper($match[2])) { + case 'K': + return (int)$match[1] * 1024; + case 'M': + return (int)$match[1] * pow(1024, 2); + case 'G': + return (int)$match[1] * pow(1024, 3); + } + } + + return (int)$value; } /** @@ -193,11 +125,15 @@ final class Util $in = is_string($in) ? strtolower($in) : $in; // if not strict, we only have to check if something is false - if (in_array($in, ['false', 'no', 'n', '0', 'off', false, 0], true) || !$in) { + if (in_array($in, ['false', 'no', 'n', '0', 'off', false, 0], true) + || !$in + ) { return false; } - if ($strict && in_array($in, ['true', 'yes', 'y', '1', 'on', true, 1], true)) { + if ($strict + && in_array($in, ['true', 'yes', 'y', '1', 'on', true, 1], true) + ) { return true; } @@ -348,4 +284,12 @@ final class Util return intval($value); }, explode($delimiter, $itemsId)); } + + /** + * @return int + */ + public static function getMaxDownloadChunk(): int + { + return self::convertShortUnit(ini_get('memory_limit')) / FileHandler::CHUNK_FACTOR; + } } diff --git a/lib/SP/Util/Version.php b/lib/SP/Util/VersionUtil.php similarity index 98% rename from lib/SP/Util/Version.php rename to lib/SP/Util/VersionUtil.php index 72e19ba5..9bdb351d 100644 --- a/lib/SP/Util/Version.php +++ b/lib/SP/Util/VersionUtil.php @@ -27,11 +27,11 @@ namespace SP\Util; use SP\Services\Install\Installer; /** - * Class Version + * Class VersionUtil * * @package SP\Util */ -final class Version +final class VersionUtil { /** * Devolver versión normalizada en cadena diff --git a/public/js/app-actions.js b/public/js/app-actions.js index 12081483..09b7b228 100644 --- a/public/js/app-actions.js +++ b/public/js/app-actions.js @@ -934,7 +934,7 @@ sysPass.Actions = function (log) { sk: sysPassApp.sk.get() }); - if (fileType === 'PDF') { + if (fileType === 'PDF' || fileType === 'application/pdf') { window.open(url, '_blank'); return; } diff --git a/public/js/app-actions.min.js b/public/js/app-actions.min.js index 9d35bee0..7c6ffdd0 100644 --- a/public/js/app-actions.min.js +++ b/public/js/app-actions.min.js @@ -35,23 +35,24 @@ d=sysPassApp.requests.getRequestOpts();d.method="get";d.url=sysPassApp.util.getU return a&&($(a).find(".is-selected").each(function(){b.push($(this).data("item-id"))}),0===b.length)?!1:b}},v=function(a){var b=$("#taskStatus");b.empty().html(sysPassApp.config.LANG[62]);var d=sysPassApp.requests.getRequestOpts();d.method="get";d.url=sysPassApp.util.getUrl(e.entrypoint,{r:["task/runTask",a]});return sysPassApp.requests.getActionEvent(d,function(a){a=a.task+" - "+a.message+" - "+a.time+" - "+a.progress+"%";a+="
    "+sysPassApp.config.LANG[62];b.empty().html(a)})};return{getContent:f, showFloatingBox:h,closeFloatingBox:q,appMgmt:u,account:m,accountManager:{restore:function(a){c.info("accountManager:restore");g.state.update(a);var b=a.data("item-id"),d=sysPassApp.requests.getRequestOpts();d.method="get";d.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(d,function(d){sysPassApp.msg.out(d);0===d.status&&((d=a.data("action-next"))?f({r:[d,b]}):f({r:g.state.tab.route,tabIndex:g.state.tab.index}))})}}, file:{view:function(a){c.info("file:view");var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(b,function(b){if(0!==b.status)return sysPassApp.msg.out(b);p(a,b.data.html)})},download:function(a){c.info("file:download");var b=a.data("item-type");a=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get()}); -"PDF"===b?window.open(a,"_blank"):$.fileDownload(a,{httpMethod:"GET",successCallback:function(a){sysPassApp.msg.ok(sysPassApp.config.LANG[72])}})},delete:function(a){c.info("file:delete");var b='

    '+sysPassApp.config.LANG[15]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b=sysPassApp.requests.getRequestOpts(); -b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a);0===a.status&&m.listFiles($("#list-account-files"))})}}})}},checks:{wiki:function(a){c.info("checks:wiki");a=$(a.data("src"));a.find("[name='sk']").val(sysPassApp.sk.get());var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint;b.data=a.serialize();sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a); -0===a.status&&$("#dokuWikiResCheck").html(a.data)})}},config:{save:function(a){c.info("config:save");g.save(a)},masterpass:function(a){var b='

    '+sysPassApp.config.LANG[59]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(b){b.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44]);a.find(":input[type=password]").val("")}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){var d;(b=a.find("input[name='taskId']").val())&& -(d=v(b));var c=sysPassApp.requests.getRequestOpts();c.url=e.entrypoint;c.useFullLoading=!!b;c.data=a.serialize();sysPassApp.requests.getActionCall(c,function(b){sysPassApp.msg.out(b);a.find(":input[type=password]").val("");void 0!==d&&d.close()})}}})},backup:function(a){c.info("config:backup");g.state.update(a);var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"?r="+a.data("action-route");b.useFullLoading=!0;b.data=a.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(b, -function(a){sysPassApp.msg.out(a);0===a.status&&f({r:g.state.tab.route,tabIndex:g.state.tab.index})})},export:function(a){c.info("config:export");g.save(a)},import:function(a){c.info("config:import");var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"?r="+a.data("action-route");b.data=a.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a)})},refreshMpass:function(a){c.info("config:import");var b=sysPassApp.requests.getRequestOpts(); -b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("action-route"),sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a)})},mailCheck:function(a){c.info("config:mailCheck");var b=$(a.data("src")),d=sysPassApp.requests.getRequestOpts();d.url=e.entrypoint+"?r="+a.data("action-route");d.data=b.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(d,function(a){sysPassApp.msg.out(a)})}},main:w,user:{showSettings:function(a){c.info("user:showSettings"); -f({r:a.data("action-route")},"userSettings")},saveSettings:function(a){c.info("user:saveSettings");g.save(a)},password:function(a){c.info("user:password");var b=sysPassApp.requests.getRequestOpts();b.type="html";b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(a){0===a.length?w.logout():h(a)})},passreset:function(a){c.info("user:passreset");var b=sysPassApp.requests.getRequestOpts(); -b.url=e.entrypoint+"/?r="+a.data("action-route");b.data=a.serialize();sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a);0===a.status&&setTimeout(function(){sysPassApp.util.redirect("index.php")},2E3)})}},link:{save:function(a){c.info("link:save");var b=function(b){var d=a.data("account-id"),c=sysPassApp.requests.getRequestOpts();c.method="get";d?c.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),d,b],sk:sysPassApp.sk.get(),isAjax:1}):(c.url=sysPassApp.util.getUrl(e.entrypoint, -{r:a.data("action-route"),sk:sysPassApp.sk.get(),isAjax:1}),c.data=a.serialize());sysPassApp.requests.getActionCall(c,function(b){sysPassApp.msg.out(b);0===b.status&&f({r:[a.data("action-next"),d]})})},d='

    '+sysPassApp.config.LANG[48]+"

    ";mdlDialog().show({text:d,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();b(0)}},positive:{title:sysPassApp.config.LANG[43],onClick:function(a){a.preventDefault();b(1)}}})},delete:function(a){c.info("link:delete"); -var b='

    '+sysPassApp.config.LANG[12]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b, -function(b){sysPassApp.msg.out(b);0===b.status&&f({r:[a.data("action-next"),a.data("account-id")]})})}}})},refresh:function(a){c.info("link:refresh");g.state.update(a);var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);0===b.status&&((b=a.data("action-next"))?f({r:[b,a.data("account-id")]}):f({r:g.state.tab.route, -tabIndex:g.state.tab.index}))})}},eventlog:{clear:function(a){var b='

    '+sysPassApp.config.LANG[20]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();g.save(a)}}})}},ajaxUrl:e,plugin:{toggle:function(a){c.info("plugin:enable");g.state.update(a);var b=sysPassApp.requests.getRequestOpts(); -b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a);0===a.status&&setTimeout(function(){sysPassApp.util.redirect("index.php")},2E3)})},reset:function(a){c.info("plugin:reset");var b='

    '+sysPassApp.config.LANG[58]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault(); -sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();g.save(a)}}})},search:function(a){c.info("plugin:search");l.search(a)},show:function(a){c.info("plugin:show");u.show(a)},save:function(a){c.info("plugin:save");var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"?r="+a.data("route");b.data=a.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);0===b.status&& -(f({r:a.data("action-next")}),$.magnificPopup.close())})},nav:function(a){c.info("plugin:nav");l.nav(a)}},notification:r,wiki:{show:function(a){c.info("wiki:show");var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("action-route"),pageName:a.data("pagename"),actionId:a.data("action-id"),sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(a){0!==a.status?sysPassApp.msg.out(a):h(a.data.html)})}},items:{get:function(a){c.info("items:get"); -var b=a[0].selectize;b.clearOptions();b.load(function(c){var d=sysPassApp.requests.getRequestOpts();d.method="get";d.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(d,function(d){c(d.data);b.setValue(a.data("selected-id"),!0);sysPassApp.triggers.updateFormHash()})})},update:function(a){c.info("items:update");var b=$("#"+a.data("item-dst"))[0].selectize,d=b.getValue();b.clearOptions();b.load(function(c){var f= -sysPassApp.requests.getRequestOpts();f.method="get";f.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("item-route"),sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(f,function(a){c(a);b.setValue(d,!0)})})}},ldap:{check:function(a){c.info("ldap:check");var b=$(a.data("src")),d=sysPassApp.requests.getRequestOpts();d.url=e.entrypoint+"?r="+a.data("action-route");d.data=b.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(d,function(a){sysPassApp.msg.out(a);0===a.status&& -void 0!==a.data.template&&void 0!==a.data.items&&h(a.data.template,{open:function(){var b=$("#ldap-results").find(".list-wrap").empty();a.data.items.forEach(function(a){b.append(sysPassApp.theme.html.getList(a.items,a.icon))})}})})},import:function(a){c.info("ldap:import");var b='

    '+sysPassApp.config.LANG[57]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}}, -positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b=$(a.data("src"));var c=sysPassApp.requests.getRequestOpts();c.url=e.entrypoint+"?r="+a.data("action-route");c.data=b.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(c,function(a){sysPassApp.msg.out(a)})}}})}},track:{unlock:function(a){c.info("track:unlock");var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(), -isAjax:1});sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);g.refresh(a)})},clear:function(a){c.info("track:clear");var b='

    '+sysPassApp.config.LANG[71]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();g.save(a)}}})}}}}; +"PDF"===b||"application/pdf"===b?window.open(a,"_blank"):$.fileDownload(a,{httpMethod:"GET",successCallback:function(a){sysPassApp.msg.ok(sysPassApp.config.LANG[72])}})},delete:function(a){c.info("file:delete");var b='

    '+sysPassApp.config.LANG[15]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b= +sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a);0===a.status&&m.listFiles($("#list-account-files"))})}}})}},checks:{wiki:function(a){c.info("checks:wiki");a=$(a.data("src"));a.find("[name='sk']").val(sysPassApp.sk.get());var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint;b.data=a.serialize();sysPassApp.requests.getActionCall(b, +function(a){sysPassApp.msg.out(a);0===a.status&&$("#dokuWikiResCheck").html(a.data)})}},config:{save:function(a){c.info("config:save");g.save(a)},masterpass:function(a){var b='

    '+sysPassApp.config.LANG[59]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(b){b.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44]);a.find(":input[type=password]").val("")}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){var d; +(b=a.find("input[name='taskId']").val())&&(d=v(b));var c=sysPassApp.requests.getRequestOpts();c.url=e.entrypoint;c.useFullLoading=!!b;c.data=a.serialize();sysPassApp.requests.getActionCall(c,function(b){sysPassApp.msg.out(b);a.find(":input[type=password]").val("");void 0!==d&&d.close()})}}})},backup:function(a){c.info("config:backup");g.state.update(a);var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"?r="+a.data("action-route");b.useFullLoading=!0;b.data=a.serialize()+"&sk="+sysPassApp.sk.get(); +sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a);0===a.status&&f({r:g.state.tab.route,tabIndex:g.state.tab.index})})},export:function(a){c.info("config:export");g.save(a)},import:function(a){c.info("config:import");var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"?r="+a.data("action-route");b.data=a.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a)})},refreshMpass:function(a){c.info("config:import");var b= +sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("action-route"),sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a)})},mailCheck:function(a){c.info("config:mailCheck");var b=$(a.data("src")),d=sysPassApp.requests.getRequestOpts();d.url=e.entrypoint+"?r="+a.data("action-route");d.data=b.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(d,function(a){sysPassApp.msg.out(a)})}}, +main:w,user:{showSettings:function(a){c.info("user:showSettings");f({r:a.data("action-route")},"userSettings")},saveSettings:function(a){c.info("user:saveSettings");g.save(a)},password:function(a){c.info("user:password");var b=sysPassApp.requests.getRequestOpts();b.type="html";b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(a){0===a.length?w.logout():h(a)})},passreset:function(a){c.info("user:passreset"); +var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"/?r="+a.data("action-route");b.data=a.serialize();sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a);0===a.status&&setTimeout(function(){sysPassApp.util.redirect("index.php")},2E3)})}},link:{save:function(a){c.info("link:save");var b=function(b){var d=a.data("account-id"),c=sysPassApp.requests.getRequestOpts();c.method="get";d?c.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),d,b],sk:sysPassApp.sk.get(), +isAjax:1}):(c.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("action-route"),sk:sysPassApp.sk.get(),isAjax:1}),c.data=a.serialize());sysPassApp.requests.getActionCall(c,function(b){sysPassApp.msg.out(b);0===b.status&&f({r:[a.data("action-next"),d]})})},d='

    '+sysPassApp.config.LANG[48]+"

    ";mdlDialog().show({text:d,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();b(0)}},positive:{title:sysPassApp.config.LANG[43],onClick:function(a){a.preventDefault(); +b(1)}}})},delete:function(a){c.info("link:delete");var b='

    '+sysPassApp.config.LANG[12]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")], +sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);0===b.status&&f({r:[a.data("action-next"),a.data("account-id")]})})}}})},refresh:function(a){c.info("link:refresh");g.state.update(a);var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);0===b.status&& +((b=a.data("action-next"))?f({r:[b,a.data("account-id")]}):f({r:g.state.tab.route,tabIndex:g.state.tab.index}))})}},eventlog:{clear:function(a){var b='

    '+sysPassApp.config.LANG[20]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();g.save(a)}}})}},ajaxUrl:e,plugin:{toggle:function(a){c.info("plugin:enable"); +g.state.update(a);var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a);0===a.status&&setTimeout(function(){sysPassApp.util.redirect("index.php")},2E3)})},reset:function(a){c.info("plugin:reset");var b='

    '+sysPassApp.config.LANG[58]+"

    ";mdlDialog().show({text:b, +negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();g.save(a)}}})},search:function(a){c.info("plugin:search");l.search(a)},show:function(a){c.info("plugin:show");u.show(a)},save:function(a){c.info("plugin:save");var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"?r="+a.data("route");b.data=a.serialize()+"&sk="+sysPassApp.sk.get(); +sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);0===b.status&&(f({r:a.data("action-next")}),$.magnificPopup.close())})},nav:function(a){c.info("plugin:nav");l.nav(a)}},notification:r,wiki:{show:function(a){c.info("wiki:show");var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("action-route"),pageName:a.data("pagename"),actionId:a.data("action-id"),sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b, +function(a){0!==a.status?sysPassApp.msg.out(a):h(a.data.html)})}},items:{get:function(a){c.info("items:get");var b=a[0].selectize;b.clearOptions();b.load(function(c){var d=sysPassApp.requests.getRequestOpts();d.method="get";d.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(d,function(d){c(d.data);b.setValue(a.data("selected-id"),!0);sysPassApp.triggers.updateFormHash()})})},update:function(a){c.info("items:update"); +var b=$("#"+a.data("item-dst"))[0].selectize,d=b.getValue();b.clearOptions();b.load(function(c){var f=sysPassApp.requests.getRequestOpts();f.method="get";f.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("item-route"),sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(f,function(a){c(a);b.setValue(d,!0)})})}},ldap:{check:function(a){c.info("ldap:check");var b=$(a.data("src")),d=sysPassApp.requests.getRequestOpts();d.url=e.entrypoint+"?r="+a.data("action-route");d.data=b.serialize()+"&sk="+ +sysPassApp.sk.get();sysPassApp.requests.getActionCall(d,function(a){sysPassApp.msg.out(a);0===a.status&&void 0!==a.data.template&&void 0!==a.data.items&&h(a.data.template,{open:function(){var b=$("#ldap-results").find(".list-wrap").empty();a.data.items.forEach(function(a){b.append(sysPassApp.theme.html.getList(a.items,a.icon))})}})})},import:function(a){c.info("ldap:import");var b='

    '+sysPassApp.config.LANG[57]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44], +onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b=$(a.data("src"));var c=sysPassApp.requests.getRequestOpts();c.url=e.entrypoint+"?r="+a.data("action-route");c.data=b.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(c,function(a){sysPassApp.msg.out(a)})}}})}},track:{unlock:function(a){c.info("track:unlock");var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url= +sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);g.refresh(a)})},clear:function(a){c.info("track:clear");var b='

    '+sysPassApp.config.LANG[71]+"

    ";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43], +onClick:function(b){b.preventDefault();g.save(a)}}})}}}}; diff --git a/tests/SP/Core/Crypt/CryptPKITest.php b/tests/SP/Core/Crypt/CryptPKITest.php index 70d6d9bf..289fdb7b 100644 --- a/tests/SP/Core/Crypt/CryptPKITest.php +++ b/tests/SP/Core/Crypt/CryptPKITest.php @@ -27,7 +27,7 @@ namespace SP\Tests\SP\Core\Crypt; use phpseclib\Crypt\RSA; use PHPUnit\Framework\TestCase; use SP\Core\Crypt\CryptPKI; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class CryptPKITest @@ -49,7 +49,7 @@ class CryptPKITest extends TestCase { $length = (CryptPKI::KEY_SIZE / 8) - 11; - $random = Util::generateRandomBytes($length); + $random = PasswordUtil::generateRandomBytes($length); $data = $this->cryptPki->encryptRSA($random); @@ -67,7 +67,7 @@ class CryptPKITest extends TestCase { $length = (CryptPKI::KEY_SIZE / 8) - 11; - $random = Util::randomPassword($length); + $random = PasswordUtil::randomPassword($length); $data = $this->cryptPki->encryptRSA($random); @@ -84,7 +84,7 @@ class CryptPKITest extends TestCase { $length = ((CryptPKI::KEY_SIZE / 8) - 11) + 1; - $random = Util::generateRandomBytes($length); + $random = PasswordUtil::generateRandomBytes($length); $data = $this->cryptPki->encryptRSA($random); @@ -123,7 +123,7 @@ class CryptPKITest extends TestCase { $length = (CryptPKI::KEY_SIZE / 8) - 11; - $random = Util::generateRandomBytes($length); + $random = PasswordUtil::generateRandomBytes($length); $data = $this->cryptPki->encryptRSA($random); @@ -132,7 +132,7 @@ class CryptPKITest extends TestCase $this->assertEquals($random, $this->cryptPki->decryptRSA($data)); // Encrypt a long message - $random = Util::generateRandomBytes(128); + $random = PasswordUtil::generateRandomBytes(128); $data = $this->cryptPki->encryptRSA($random); diff --git a/tests/SP/Core/Crypt/HashTest.php b/tests/SP/Core/Crypt/HashTest.php index b371a778..3051085d 100644 --- a/tests/SP/Core/Crypt/HashTest.php +++ b/tests/SP/Core/Crypt/HashTest.php @@ -27,7 +27,7 @@ namespace SP\Tests\SP\Core\Crypt; use Faker\Factory; use PHPUnit\Framework\TestCase; use SP\Core\Crypt\Hash; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class HashTest @@ -42,7 +42,7 @@ class HashTest extends TestCase public function testHashKey() { for ($i = 2; $i <= 128; $i *= 2) { - $key = Util::generateRandomBytes($i); + $key = PasswordUtil::generateRandomBytes($i); $hash = Hash::hashKey($key); $this->assertNotEmpty($hash); @@ -60,7 +60,7 @@ class HashTest extends TestCase for ($i = 2; $i <= 128; $i *= 2) { $text = $faker->text; - $key = Util::generateRandomBytes($i); + $key = PasswordUtil::generateRandomBytes($i); $hash = Hash::signMessage($text, $key); $this->assertNotEmpty($hash); diff --git a/tests/SP/Core/Crypt/VaultTest.php b/tests/SP/Core/Crypt/VaultTest.php index 210e1676..9051f2e7 100644 --- a/tests/SP/Core/Crypt/VaultTest.php +++ b/tests/SP/Core/Crypt/VaultTest.php @@ -26,7 +26,7 @@ namespace SP\Tests\Core\Crypt; use PHPUnit\Framework\TestCase; use SP\Core\Crypt\Vault; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class VaultTest @@ -48,7 +48,7 @@ class VaultTest extends TestCase */ protected function setUp() { - $this->key = Util::generateRandomBytes(); + $this->key = PasswordUtil::generateRandomBytes(); } /** @@ -60,7 +60,7 @@ class VaultTest extends TestCase $vault->saveData('prueba', $this->key); $this->assertEquals('prueba', $vault->getData($this->key)); - $randomData = Util::generateRandomBytes(); + $randomData = PasswordUtil::generateRandomBytes(); $vault = new Vault(); $vault->saveData($randomData, $this->key); diff --git a/tests/SP/Repositories/AccountHistoryRepositoryTest.php b/tests/SP/Repositories/AccountHistoryRepositoryTest.php index ace83710..48980adc 100644 --- a/tests/SP/Repositories/AccountHistoryRepositoryTest.php +++ b/tests/SP/Repositories/AccountHistoryRepositoryTest.php @@ -31,7 +31,7 @@ use SP\Repositories\Account\AccountHistoryRepository; use SP\Services\Account\AccountPasswordRequest; use SP\Storage\Database\DatabaseConnectionData; use SP\Tests\DatabaseTestCase; -use SP\Util\Util; +use SP\Util\PasswordUtil; use function SP\Tests\setupContext; /** @@ -144,13 +144,13 @@ class AccountHistoryRepositoryTest extends DatabaseTestCase */ public function testCreate() { - $result = self::$repository->create(new AccountHistoryCreateDto(2, true, false, Util::generateRandomBytes())); + $result = self::$repository->create(new AccountHistoryCreateDto(2, true, false, PasswordUtil::generateRandomBytes())); $this->assertEquals(8, $result); - $result = self::$repository->create(new AccountHistoryCreateDto(2, true, true, Util::generateRandomBytes())); + $result = self::$repository->create(new AccountHistoryCreateDto(2, true, true, PasswordUtil::generateRandomBytes())); $this->assertEquals(9, $result); - $result = self::$repository->create(new AccountHistoryCreateDto(10, true, false, Util::generateRandomBytes())); + $result = self::$repository->create(new AccountHistoryCreateDto(10, true, false, PasswordUtil::generateRandomBytes())); $this->assertEquals(0, $result); $this->assertEquals(7, $this->conn->getRowCount('AccountHistory')); @@ -222,9 +222,9 @@ class AccountHistoryRepositoryTest extends DatabaseTestCase { $request = new AccountPasswordRequest(); $request->id = 3; - $request->pass = Util::generateRandomBytes(); - $request->key = Util::generateRandomBytes(); - $request->hash = Util::generateRandomBytes(); + $request->pass = PasswordUtil::generateRandomBytes(); + $request->key = PasswordUtil::generateRandomBytes(); + $request->hash = PasswordUtil::generateRandomBytes(); $this->assertEquals(1, self::$repository->updatePassword($request)); diff --git a/tests/SP/Repositories/AuthTokenRepositoryTest.php b/tests/SP/Repositories/AuthTokenRepositoryTest.php index 7df3196d..18e3664e 100644 --- a/tests/SP/Repositories/AuthTokenRepositoryTest.php +++ b/tests/SP/Repositories/AuthTokenRepositoryTest.php @@ -35,6 +35,7 @@ use SP\Repositories\AuthToken\AuthTokenRepository; use SP\Repositories\DuplicatedItemException; use SP\Storage\Database\DatabaseConnectionData; use SP\Tests\DatabaseTestCase; +use SP\Util\PasswordUtil; use SP\Util\Util; use function SP\Tests\setupContext; @@ -173,7 +174,7 @@ class AuthTokenRepositoryTest extends DatabaseTestCase */ public function testRefreshTokenByUserId() { - $token = Util::generateRandomBytes(); + $token = PasswordUtil::generateRandomBytes(); // Comprobar actualización con usuario que existe $this->assertEquals(2, self::$repository->refreshTokenByUserId(1, $token)); @@ -193,7 +194,7 @@ class AuthTokenRepositoryTest extends DatabaseTestCase */ public function testUpdate() { - $token = Util::generateRandomBytes(); + $token = PasswordUtil::generateRandomBytes(); $hash = Hash::hashKey('prueba123'); $vault = Vault::getInstance()->saveData('prueba', 'prueba123'); @@ -305,7 +306,7 @@ class AuthTokenRepositoryTest extends DatabaseTestCase */ public function testCreate() { - $token = Util::generateRandomBytes(); + $token = PasswordUtil::generateRandomBytes(); $hash = Hash::hashKey('prueba123'); $vault = Vault::getInstance()->saveData('prueba', 'prueba123'); diff --git a/tests/SP/Repositories/NotificationRepositoryTest.php b/tests/SP/Repositories/NotificationRepositoryTest.php index 7e7e8e7c..95ab29bf 100644 --- a/tests/SP/Repositories/NotificationRepositoryTest.php +++ b/tests/SP/Repositories/NotificationRepositoryTest.php @@ -443,4 +443,104 @@ class NotificationRepositoryTest extends DatabaseTestCase $this->assertEquals(0, self::$repository->getAllActiveForUserId(2)->getNumRows()); $this->assertEquals(0, self::$repository->getAllActiveForUserId(3)->getNumRows()); } + + /** + * @throws ConstraintException + * @throws QueryException + */ + public function testGetAllActiveForAdmin() + { + $result = self::$repository->getAllActiveForAdmin(1); + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(2, $result->getNumRows()); + $this->assertCount(2, $data); + $this->assertEquals(3, $data[0]->getId()); + $this->assertEquals(2, $data[1]->getId()); + + $result = self::$repository->getAllActiveForAdmin(2); + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(3, $result->getNumRows()); + $this->assertCount(3, $data); + $this->assertEquals(3, $data[0]->getId()); + $this->assertEquals(2, $data[1]->getId()); + $this->assertEquals(1, $data[2]->getId()); + + $result = self::$repository->getAllActiveForAdmin(3); + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(2, $result->getNumRows()); + $this->assertCount(2, $data); + $this->assertEquals(3, $data[0]->getId()); + $this->assertEquals(2, $data[1]->getId()); + } + + /** + * @throws ConstraintException + * @throws QueryException + */ + public function testSearchForAdmin() + { + $itemSearchData = new ItemSearchData(); + $itemSearchData->setLimitCount(10); + $itemSearchData->setSeachString('Test'); + + $result = self::$repository->searchForAdmin($itemSearchData, 1); + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(2, $result->getNumRows()); + $this->assertCount(2, $data); + $this->assertEquals(3, $data[0]->getId()); + $this->assertEquals(2, $data[1]->getId()); + + $itemSearchData->setSeachString('Accounts'); + + $result = self::$repository->searchForAdmin($itemSearchData, 2); + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(3, $result->getNumRows()); + $this->assertCount(3, $data); + $this->assertEquals(3, $data[0]->getId()); + $this->assertEquals(2, $data[1]->getId()); + $this->assertEquals(1, $data[2]->getId()); + + $itemSearchData->setSeachString('Admins'); + + $result = self::$repository->searchForAdmin($itemSearchData, 2); + + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(1, $result->getNumRows()); + $this->assertCount(1, $data); + $this->assertEquals(3, $data[0]->getId()); + + $itemSearchData->setSeachString('Global'); + + $result = self::$repository->searchForAdmin($itemSearchData, 2); + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(1, $result->getNumRows()); + $this->assertCount(1, $data); + $this->assertEquals(2, $data[0]->getId()); + + $itemSearchData->setSeachString(''); + + $result = self::$repository->searchForAdmin($itemSearchData, 2); + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(3, $result->getNumRows()); + $this->assertCount(3, $data); + $this->assertEquals(3, $data[0]->getId()); + $this->assertEquals(2, $data[1]->getId()); + $this->assertEquals(1, $data[2]->getId()); + } } diff --git a/tests/SP/Repositories/PublicLinkRepositoryTest.php b/tests/SP/Repositories/PublicLinkRepositoryTest.php index 64605ac3..bb3874b3 100644 --- a/tests/SP/Repositories/PublicLinkRepositoryTest.php +++ b/tests/SP/Repositories/PublicLinkRepositoryTest.php @@ -33,7 +33,7 @@ use SP\Repositories\DuplicatedItemException; use SP\Repositories\PublicLink\PublicLinkRepository; use SP\Storage\Database\DatabaseConnectionData; use SP\Tests\DatabaseTestCase; -use SP\Util\Util; +use SP\Util\PasswordUtil; use function SP\Tests\setupContext; /** @@ -162,7 +162,7 @@ class PublicLinkRepositoryTest extends DatabaseTestCase $data = new PublicLinkData(); $data->setItemId(1); - $data->setHash(Util::generateRandomBytes()); + $data->setHash(PasswordUtil::generateRandomBytes()); $data->setData('data'); $data->setUserId(1); $data->setTypeId(1); @@ -314,7 +314,7 @@ class PublicLinkRepositoryTest extends DatabaseTestCase public function testRefresh() { $data = new PublicLinkData(); - $data->setHash(Util::generateRandomBytes()); + $data->setHash(PasswordUtil::generateRandomBytes()); $data->setDateExpire(time() + 3600); $data->setMaxCountViews(6); $data->setData('data_new'); @@ -439,7 +439,7 @@ class PublicLinkRepositoryTest extends DatabaseTestCase $data = new PublicLinkData(); $data->setId(1); $data->setItemId(2); - $data->setHash(Util::generateRandomBytes()); + $data->setHash(PasswordUtil::generateRandomBytes()); $data->setData('data'); $data->setUserId(2); $data->setTypeId(1); diff --git a/tests/SP/Repositories/UserPassRecoverRepositoryTest.php b/tests/SP/Repositories/UserPassRecoverRepositoryTest.php index ed26813c..8ee49761 100644 --- a/tests/SP/Repositories/UserPassRecoverRepositoryTest.php +++ b/tests/SP/Repositories/UserPassRecoverRepositoryTest.php @@ -29,7 +29,7 @@ use SP\Core\Exceptions\ConstraintException; use SP\Repositories\User\UserPassRecoverRepository; use SP\Storage\Database\DatabaseConnectionData; use SP\Tests\DatabaseTestCase; -use SP\Util\Util; +use SP\Util\PasswordUtil; use function SP\Tests\setupContext; /** @@ -69,11 +69,11 @@ class UserPassRecoverRepositoryTest extends DatabaseTestCase */ public function testAdd() { - $this->assertEquals(3, self::$repository->add(2, Util::generateRandomBytes())); + $this->assertEquals(3, self::$repository->add(2, PasswordUtil::generateRandomBytes())); $this->expectException(ConstraintException::class); - self::$repository->add(10, Util::generateRandomBytes()); + self::$repository->add(10, PasswordUtil::generateRandomBytes()); } /** @@ -101,7 +101,7 @@ class UserPassRecoverRepositoryTest extends DatabaseTestCase $this->assertEquals(1, $result->getNumRows()); $this->assertEquals(2, $result->getData()->userId); - $result = self::$repository->getUserIdForHash(Util::generateRandomBytes(), 1529275206); + $result = self::$repository->getUserIdForHash(PasswordUtil::generateRandomBytes(), 1529275206); $this->assertEquals(0, $result->getNumRows()); } diff --git a/tests/SP/Services/Account/AccountAclServiceTest.php b/tests/SP/Services/Account/AccountAclServiceTest.php index d8821362..6495f370 100644 --- a/tests/SP/Services/Account/AccountAclServiceTest.php +++ b/tests/SP/Services/Account/AccountAclServiceTest.php @@ -170,7 +170,7 @@ class AccountAclServiceTest extends DatabaseTestCase $this->checkAllowAll($this->setUpAccountEnvironment(1, 1, 1, 1)); $this->checkAllowAll($this->setUpAccountEnvironment(2, 1, 1, 1)); - $accountAcl = new \SP\Services\Account\AccountAcl(0); + $accountAcl = new AccountAcl(0); $accountAcl->setCompiledAccountAccess(true); $accountAcl->setCompiledShowAccess(true); $accountAcl->setResultView(true); @@ -258,7 +258,7 @@ class AccountAclServiceTest extends DatabaseTestCase $accountAcl = $service->getAcl($action, $accountAclDto); - $this->assertInstanceOf(\SP\Services\Account\AccountAcl::class, $accountAcl); + $this->assertInstanceOf(AccountAcl::class, $accountAcl); $this->assertTrue($accountAcl->isCompiledAccountAccess()); $this->assertTrue($accountAcl->isCompiledShowAccess()); @@ -750,7 +750,7 @@ class AccountAclServiceTest extends DatabaseTestCase ->reset() ->setAccFiles($profile); - $accountAcl = (new \SP\Services\Account\AccountAcl(0)) + $accountAcl = (new AccountAcl(0)) ->setCompiledAccountAccess(true) ->setCompiledShowAccess(true) ->setResultView($should['view']) diff --git a/tests/SP/Services/Account/AccountHistoryServiceTest.php b/tests/SP/Services/Account/AccountHistoryServiceTest.php index a30a2535..b84c81fa 100644 --- a/tests/SP/Services/Account/AccountHistoryServiceTest.php +++ b/tests/SP/Services/Account/AccountHistoryServiceTest.php @@ -33,7 +33,7 @@ use SP\Services\Account\AccountPasswordRequest; use SP\Services\ServiceException; use SP\Storage\Database\DatabaseConnectionData; use SP\Tests\DatabaseTestCase; -use SP\Util\Util; +use SP\Util\PasswordUtil; use function SP\Tests\setupContext; /** @@ -89,13 +89,13 @@ class AccountHistoryServiceTest extends DatabaseTestCase */ public function testCreate() { - $result = self::$service->create(new AccountHistoryCreateDto(2, true, false, Util::generateRandomBytes())); + $result = self::$service->create(new AccountHistoryCreateDto(2, true, false, PasswordUtil::generateRandomBytes())); $this->assertEquals(8, $result); - $result = self::$service->create(new AccountHistoryCreateDto(2, true, true, Util::generateRandomBytes())); + $result = self::$service->create(new AccountHistoryCreateDto(2, true, true, PasswordUtil::generateRandomBytes())); $this->assertEquals(9, $result); - $result = self::$service->create(new AccountHistoryCreateDto(10, true, false, Util::generateRandomBytes())); + $result = self::$service->create(new AccountHistoryCreateDto(10, true, false, PasswordUtil::generateRandomBytes())); $this->assertEquals(0, $result); $this->assertEquals(7, $this->conn->getRowCount('AccountHistory')); @@ -205,9 +205,9 @@ class AccountHistoryServiceTest extends DatabaseTestCase { $request = new AccountPasswordRequest(); $request->id = 3; - $request->pass = Util::generateRandomBytes(); - $request->key = Util::generateRandomBytes(); - $request->hash = Util::generateRandomBytes(); + $request->pass = PasswordUtil::generateRandomBytes(); + $request->key = PasswordUtil::generateRandomBytes(); + $request->hash = PasswordUtil::generateRandomBytes(); self::$service->updatePasswordMasterPass($request); diff --git a/tests/SP/Services/Account/AccountServiceTest.php b/tests/SP/Services/Account/AccountServiceTest.php index a56e66e6..145c0bfd 100644 --- a/tests/SP/Services/Account/AccountServiceTest.php +++ b/tests/SP/Services/Account/AccountServiceTest.php @@ -40,7 +40,7 @@ use SP\Services\Account\AccountService; use SP\Services\ServiceException; use SP\Storage\Database\DatabaseConnectionData; use SP\Tests\DatabaseTestCase; -use SP\Util\Util; +use SP\Util\PasswordUtil; use function SP\Tests\setupContext; /** @@ -285,7 +285,7 @@ class AccountServiceTest extends DatabaseTestCase $this->assertEquals('123abc', Crypt::decrypt($data['pass'], $data['key'], self::SECURE_KEY_PASSWORD)); - $randomKeyPass = Util::generateRandomBytes(); + $randomKeyPass = PasswordUtil::generateRandomBytes(); $data = self::$service->getPasswordEncrypted('123abc', $randomKeyPass); diff --git a/tests/SP/Services/Backup/FileBackupServiceTest.php b/tests/SP/Services/Backup/FileBackupServiceTest.php index 396e03c1..7d58f8df 100644 --- a/tests/SP/Services/Backup/FileBackupServiceTest.php +++ b/tests/SP/Services/Backup/FileBackupServiceTest.php @@ -47,7 +47,7 @@ class FileBackupServiceTest extends TestCase $service = $dic->get(FileBackupService::class); $service->doBackup(RESOURCE_DIR); - $this->assertFileExists($service->getBackupFileApp() . '.gz'); - $this->assertFileExists($service->getBackupFileDb()); + $this->assertFileExists(FileBackupService::getAppBackupFilename(RESOURCE_DIR, $service->getHash(), true)); + $this->assertFileExists(FileBackupService::getDbBackupFilename(RESOURCE_DIR, $service->getHash(), true)); } } diff --git a/tests/SP/Services/Export/XmlExportServiceTest.php b/tests/SP/Services/Export/XmlExportServiceTest.php index ec4775a6..faf12a4b 100644 --- a/tests/SP/Services/Export/XmlExportServiceTest.php +++ b/tests/SP/Services/Export/XmlExportServiceTest.php @@ -30,7 +30,7 @@ use SP\Services\Export\XmlVerifyService; use SP\Services\ServiceException; use SP\Storage\Database\DatabaseConnectionData; use SP\Tests\DatabaseTestCase; -use SP\Util\Util; +use SP\Util\PasswordUtil; use function SP\Tests\setupContext; /** @@ -129,7 +129,7 @@ class XmlExportServiceTest extends DatabaseTestCase $dic = setupContext(); $service = $dic->get(XmlExportService::class); - $password = Util::randomPassword(); + $password = PasswordUtil::randomPassword(); $service->doExport(TMP_DIR, $password); diff --git a/tests/SP/Services/Install/InstallerTest.php b/tests/SP/Services/Install/InstallerTest.php index 1d4933ec..37bbaa71 100644 --- a/tests/SP/Services/Install/InstallerTest.php +++ b/tests/SP/Services/Install/InstallerTest.php @@ -33,7 +33,7 @@ use SP\Services\Install\InstallData; use SP\Services\Install\Installer; use SP\Storage\Database\DBStorageInterface; use SP\Tests\DatabaseUtil; -use SP\Util\Util; +use SP\Util\PasswordUtil; use function SP\Tests\getResource; use function SP\Tests\saveResource; use function SP\Tests\setupContext; @@ -258,7 +258,7 @@ class InstallerTest extends TestCase */ public function testHostingMode() { - $pass = Util::randomPassword(); + $pass = PasswordUtil::randomPassword(); $host = getenv('DB_SERVER'); DatabaseUtil::dropDatabase(self::DB_NAME); diff --git a/tests/SP/Services/Install/MySQLTest.php b/tests/SP/Services/Install/MySQLTest.php index 064958db..e92bf9ae 100644 --- a/tests/SP/Services/Install/MySQLTest.php +++ b/tests/SP/Services/Install/MySQLTest.php @@ -30,7 +30,7 @@ use SP\Services\Install\InstallData; use SP\Services\Install\MySQL; use SP\Storage\Database\MySQLHandler; use SP\Tests\DatabaseUtil; -use SP\Util\Util; +use SP\Util\PasswordUtil; /** * Class MySQLTest @@ -161,7 +161,7 @@ class MySQLTest extends TestCase public function testCreateDBUser() { $mysql = new MySQL($this->getParams(), new ConfigData()); - $mysql->createDBUser('test', Util::randomPassword()); + $mysql->createDBUser('test', PasswordUtil::randomPassword()); $num = (int)$mysql->getDbHandler() ->getConnectionSimple() diff --git a/tests/SP/Services/Notification/NotificationServiceTest.php b/tests/SP/Services/Notification/NotificationServiceTest.php index 18f9c732..b1b82b01 100644 --- a/tests/SP/Services/Notification/NotificationServiceTest.php +++ b/tests/SP/Services/Notification/NotificationServiceTest.php @@ -24,6 +24,7 @@ namespace SP\Tests\Services\Notification; +use SP\Core\Context\ContextInterface; use SP\Core\Exceptions\ConstraintException; use SP\Core\Messages\NotificationMessage; use SP\DataModel\ItemSearchData; @@ -31,6 +32,7 @@ use SP\DataModel\NotificationData; use SP\Repositories\NoSuchItemException; use SP\Services\Notification\NotificationService; use SP\Services\ServiceException; +use SP\Services\User\UserLoginResponse; use SP\Storage\Database\DatabaseConnectionData; use SP\Tests\DatabaseTestCase; use function SP\Tests\setupContext; @@ -42,6 +44,10 @@ use function SP\Tests\setupContext; */ class NotificationServiceTest extends DatabaseTestCase { + /** + * @var ContextInterface + */ + private static $context; /** * @var NotificationService */ @@ -61,6 +67,8 @@ class NotificationServiceTest extends DatabaseTestCase // Datos de conexión a la BBDD self::$databaseConnectionData = $dic->get(DatabaseConnectionData::class); + self::$context = $dic->get(ContextInterface::class); + // Inicializar el servicio self::$service = $dic->get(NotificationService::class); } @@ -141,8 +149,14 @@ class NotificationServiceTest extends DatabaseTestCase * @throws \SP\Core\Exceptions\QueryException * @throws NoSuchItemException */ - public function testGetAllActiveForUserId() + public function testGetAllActiveForNonAdmin() { + $userData = new UserLoginResponse(); + $userData->setId(2); + $userData->setIsAdminApp(false); + + self::$context->setUserData($userData); + $data = self::$service->getAllActiveForUserId(2); $this->assertCount(2, $data); @@ -167,6 +181,43 @@ class NotificationServiceTest extends DatabaseTestCase $this->assertCount(0, self::$service->getAllActiveForUserId(3)); } + /** + * @throws \SP\Core\Exceptions\ConstraintException + * @throws \SP\Core\Exceptions\QueryException + * @throws NoSuchItemException + */ + public function testGetAllActiveForAdmin() + { + $userData = new UserLoginResponse(); + $userData->setId(1); + $userData->setIsAdminApp(true); + + self::$context->setUserData($userData); + + $data = self::$service->getAllActiveForUserId(1); + + $this->assertCount(2, $data); + $this->assertEquals(3, $data[0]->getId()); + $this->assertEquals(2, $data[1]->getId()); + + $data = self::$service->getAllActiveForUserId(3); + + $this->assertCount(2, $data); + $this->assertEquals(3, $data[0]->getId()); + $this->assertEquals(2, $data[1]->getId()); + + self::$service->setCheckedById(2); + + $data = self::$service->getAllActiveForUserId(1); + + $this->assertCount(1, $data); + $this->assertEquals(3, $data[0]->getId()); + + self::$service->setCheckedById(3); + + $this->assertCount(0, self::$service->getAllActiveForUserId(1)); + } + /** * @throws ConstraintException * @throws NoSuchItemException @@ -262,8 +313,76 @@ class NotificationServiceTest extends DatabaseTestCase * @throws \SP\Core\Exceptions\ConstraintException * @throws \SP\Core\Exceptions\QueryException */ - public function testSearch() + public function testSearchNonAdmin() { + $userData = new UserLoginResponse(); + $userData->setId(2); + $userData->setIsAdminApp(false); + + self::$context->setUserData($userData); + + $itemSearchData = new ItemSearchData(); + $itemSearchData->setLimitCount(10); + $itemSearchData->setSeachString('Test'); + + $result = self::$service->search($itemSearchData); + + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(1, $result->getNumRows()); + + $this->assertCount(1, $data); + $this->assertInstanceOf(NotificationData::class, $data[0]); + $this->assertEquals(2, $data[0]->getId()); + $this->assertEquals('test', $data[0]->getDescription()); + + $itemSearchData->setSeachString('Global'); + + $result = self::$service->search($itemSearchData); + + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(1, $result->getNumRows()); + $this->assertCount(1, $data); + $this->assertInstanceOf(NotificationData::class, $data[0]); + $this->assertEquals(2, $data[0]->getId()); + $this->assertEquals('Global', $data[0]->getType()); + + $itemSearchData->setSeachString(''); + + $result = self::$service->search($itemSearchData); + + $this->assertEquals(2, $result->getNumRows()); + $this->assertCount(2, $result->getDataAsArray()); + + $itemSearchData->setSeachString('Accounts'); + + $result = self::$service->search($itemSearchData); + /** @var NotificationData[] $data */ + $data = $result->getDataAsArray(); + + $this->assertEquals(2, $result->getNumRows()); + $this->assertCount(2, $data); + $this->assertEquals(2, $data[0]->getId()); + $this->assertEquals('Accounts', $data[0]->getComponent()); + $this->assertEquals(1, $data[1]->getId()); + $this->assertEquals('Accounts', $data[1]->getComponent()); + } + + /** + * @throws \SP\Core\Exceptions\ConstraintException + * @throws \SP\Core\Exceptions\QueryException + */ + public function testSearchAdmin() + { + $userData = new UserLoginResponse(); + $userData->setId(1); + $userData->setIsAdminApp(true); + + self::$context->setUserData($userData); + $itemSearchData = new ItemSearchData(); $itemSearchData->setLimitCount(10); $itemSearchData->setSeachString('Test'); @@ -288,8 +407,8 @@ class NotificationServiceTest extends DatabaseTestCase $result = self::$service->search($itemSearchData); - $this->assertEquals(3, $result->getNumRows()); - $this->assertCount(3, $result->getDataAsArray()); + $this->assertEquals(2, $result->getNumRows()); + $this->assertCount(2, $result->getDataAsArray()); $itemSearchData->setSeachString('Accounts'); @@ -297,14 +416,12 @@ class NotificationServiceTest extends DatabaseTestCase /** @var NotificationData[] $data */ $data = $result->getDataAsArray(); - $this->assertEquals(3, $result->getNumRows()); - $this->assertCount(3, $data); - $this->assertEquals(1529145313, $data[0]->getDate()); + $this->assertEquals(2, $result->getNumRows()); + $this->assertCount(2, $data); + $this->assertEquals(3, $data[0]->getId()); $this->assertEquals('Accounts', $data[0]->getComponent()); - $this->assertEquals(1529145296, $data[1]->getDate()); + $this->assertEquals(2, $data[1]->getId()); $this->assertEquals('Accounts', $data[1]->getComponent()); - $this->assertEquals(1529145158, $data[2]->getDate()); - $this->assertEquals('Accounts', $data[2]->getComponent()); } /** diff --git a/tests/SP/Services/PublicLink/PublicLinkServiceTest.php b/tests/SP/Services/PublicLink/PublicLinkServiceTest.php index 9f933417..ddb20af5 100644 --- a/tests/SP/Services/PublicLink/PublicLinkServiceTest.php +++ b/tests/SP/Services/PublicLink/PublicLinkServiceTest.php @@ -37,6 +37,7 @@ use SP\Services\PublicLink\PublicLinkService; use SP\Services\ServiceException; use SP\Storage\Database\DatabaseConnectionData; use SP\Tests\DatabaseTestCase; +use SP\Util\PasswordUtil; use SP\Util\Util; use function SP\Tests\setupContext; @@ -218,7 +219,7 @@ class PublicLinkServiceTest extends DatabaseTestCase $data = new PublicLinkData(); $data->setItemId(1); - $data->setHash(Util::generateRandomBytes()); + $data->setHash(PasswordUtil::generateRandomBytes()); $data->setUserId(1); $data->setTypeId(1); $data->setNotify(1); @@ -277,7 +278,7 @@ class PublicLinkServiceTest extends DatabaseTestCase { $data = new PublicLinkData(); $data->setItemId(2); - $data->setHash(Util::generateRandomBytes()); + $data->setHash(PasswordUtil::generateRandomBytes()); $data->setData('data'); $data->setUserId(1); $data->setTypeId(1); @@ -393,7 +394,7 @@ class PublicLinkServiceTest extends DatabaseTestCase $data = new PublicLinkData(); $data->setId(3); $data->setItemId(2); - $data->setHash(Util::generateRandomBytes()); + $data->setHash(PasswordUtil::generateRandomBytes()); $data->setData('data'); $data->setUserId(2); $data->setTypeId(1); diff --git a/tests/SP/Services/UserPassRecover/UserPassRecoverServiceTest.php b/tests/SP/Services/UserPassRecover/UserPassRecoverServiceTest.php index 71ef5ab8..a662183d 100644 --- a/tests/SP/Services/UserPassRecover/UserPassRecoverServiceTest.php +++ b/tests/SP/Services/UserPassRecover/UserPassRecoverServiceTest.php @@ -29,7 +29,7 @@ use SP\Services\ServiceException; use SP\Services\UserPassRecover\UserPassRecoverService; use SP\Storage\Database\DatabaseConnectionData; use SP\Tests\DatabaseTestCase; -use SP\Util\Util; +use SP\Util\PasswordUtil; use function SP\Tests\setupContext; /** @@ -76,7 +76,7 @@ class UserPassRecoverServiceTest extends DatabaseTestCase $this->expectException(ServiceException::class); - self::$service->toggleUsedByHash(Util::generateRandomBytes()); + self::$service->toggleUsedByHash(PasswordUtil::generateRandomBytes()); } /** @@ -97,11 +97,11 @@ class UserPassRecoverServiceTest extends DatabaseTestCase */ public function testAdd() { - $this->assertEquals(3, self::$service->add(2, Util::generateRandomBytes())); + $this->assertEquals(3, self::$service->add(2, PasswordUtil::generateRandomBytes())); $this->expectException(ConstraintException::class); - self::$service->add(10, Util::generateRandomBytes()); + self::$service->add(10, PasswordUtil::generateRandomBytes()); } /** @@ -156,6 +156,6 @@ class UserPassRecoverServiceTest extends DatabaseTestCase $this->expectException(ServiceException::class); - self::$service->getUserIdForHash(Util::generateRandomBytes()); + self::$service->getUserIdForHash(PasswordUtil::generateRandomBytes()); } } diff --git a/tests/SP/Util/PasswordUtilTest.php b/tests/SP/Util/PasswordUtilTest.php new file mode 100644 index 00000000..5a483263 --- /dev/null +++ b/tests/SP/Util/PasswordUtilTest.php @@ -0,0 +1,137 @@ +. + */ + +namespace SP\Tests\Util; + +use PHPUnit\Framework\TestCase; +use SP\Util\PasswordUtil; + +/** + * Class PasswordUtilTest + * + * @package SP\Tests\Util + */ +class PasswordUtilTest extends TestCase +{ + + public function testCheckStrength() + { + $passwordLower = str_split('artpwerlm'); + $passwordUpper = str_split('AFGUYOHQEM'); + $passwordSpecial = str_split('%._-$&/()'); + $passwordNumber = str_split('18675249'); + + $this->assertEquals(count($passwordLower), PasswordUtil::checkStrength($passwordLower)['lower']); + $this->assertEquals(count($passwordUpper), PasswordUtil::checkStrength($passwordUpper)['upper']); + $this->assertEquals(count($passwordSpecial), PasswordUtil::checkStrength($passwordSpecial)['special']); + $this->assertEquals(count($passwordNumber), PasswordUtil::checkStrength($passwordNumber)['number']); + + $passwordMixed = array_merge($passwordLower, $passwordUpper, $passwordSpecial, $passwordNumber); + shuffle($passwordMixed); + + foreach (PasswordUtil::checkStrength($passwordMixed) as $count) { + $this->assertGreaterThan(0, $count); + } + } + + public function testRandomPassword() + { + $lengths = [16, 32, 64]; + + foreach ($lengths as $length) { + $pass = PasswordUtil::randomPassword($length); + + $this->assertEquals($length, strlen($pass)); + + foreach (PasswordUtil::checkStrength(str_split($pass)) as $type => $count) { + $this->assertGreaterThan(0, $count); + } + } + } + + public function testRandomPasswordNoFlags() + { + $pass = PasswordUtil::randomPassword(16, 0); + $strength = PasswordUtil::checkStrength(str_split($pass)); + + $this->assertGreaterThan(0, $strength['lower']); + $this->assertGreaterThan(0, $strength['upper']); + $this->assertEquals(0, $strength['special']); + $this->assertEquals(0, $strength['number']); + } + + public function testRandomPasswordSpecial() + { + $flags = PasswordUtil::FLAG_PASSWORD_SPECIAL | PasswordUtil::FLAG_PASSWORD_STRENGTH; + $pass = PasswordUtil::randomPassword(16, $flags); + $strength = PasswordUtil::checkStrength(str_split($pass)); + + $this->assertGreaterThan(0, $strength['lower']); + $this->assertGreaterThan(0, $strength['upper']); + $this->assertGreaterThan(0, $strength['special']); + $this->assertEquals(0, $strength['number']); + } + + public function testRandomPasswordNumbers() + { + $flags = PasswordUtil::FLAG_PASSWORD_NUMBER | PasswordUtil::FLAG_PASSWORD_STRENGTH; + $pass = PasswordUtil::randomPassword(16, $flags); + $strength = PasswordUtil::checkStrength(str_split($pass)); + + $this->assertGreaterThan(0, $strength['lower']); + $this->assertGreaterThan(0, $strength['upper']); + $this->assertGreaterThan(0, $strength['number']); + $this->assertEquals(0, $strength['special']); + } + + public function testRandomPasswordAll() + { + $flags = PasswordUtil::FLAG_PASSWORD_NUMBER | PasswordUtil::FLAG_PASSWORD_SPECIAL | PasswordUtil::FLAG_PASSWORD_STRENGTH; + $pass = PasswordUtil::randomPassword(16, $flags); + $strength = PasswordUtil::checkStrength(str_split($pass)); + + $this->assertGreaterThan(0, $strength['lower']); + $this->assertGreaterThan(0, $strength['upper']); + $this->assertGreaterThan(0, $strength['number']); + $this->assertGreaterThan(0, $strength['special']); + } + + /** + * @throws \Defuse\Crypto\Exception\EnvironmentIsBrokenException + */ + public function testGenerateRandomBytes() + { + $bytesHex = PasswordUtil::generateRandomBytes(16); + + $this->assertEquals(32, strlen($bytesHex)); + + $bytesHex = PasswordUtil::generateRandomBytes(32); + + $this->assertEquals(64, strlen($bytesHex)); + + $bytesHex = PasswordUtil::generateRandomBytes(64); + + $this->assertEquals(128, strlen($bytesHex)); + } +} diff --git a/tests/SP/Util/UtilTest.php b/tests/SP/Util/UtilTest.php new file mode 100644 index 00000000..2c354ac5 --- /dev/null +++ b/tests/SP/Util/UtilTest.php @@ -0,0 +1,127 @@ +. + */ + +namespace SP\Tests\SP\Util; + +use PHPUnit\Framework\TestCase; +use SP\Util\Util; + +/** + * Class UtilTest + * + * @package SP\Tests\Util + */ +class UtilTest extends TestCase +{ + + public function testCastToClass() + { + self::markTestIncomplete(); + } + + public function testUnserialize() + { + self::markTestIncomplete(); + } + + /** + * @dataProvider unitsProvider + * + * @param $unit + * @param $expected + */ + public function testConvertShortUnit($unit, $expected) + { + $this->assertEquals($expected, Util::convertShortUnit($unit)); + } + + public function testGetMaxUpload() + { + $upload = ini_set('upload_max_filesize', '30M'); + $post = ini_set('post_max_size', '10M'); + $memory = ini_set('memory_limit', 15728640); + + if ($upload !== false + && $post !== false + && $memory !== false + ) { + $this->assertEquals(10485760, Util::getMaxUpload()); + } else { + self::markTestSkipped('Unable to set PHP\'s ini variables'); + } + } + + /** + * @dataProvider boolProvider + * + * @param $value + * @param $expected + */ + public function testBoolval($value, $expected) + { + $this->assertEquals($expected, Util::boolval($value)); + $this->assertEquals($expected, Util::boolval($value, true)); + } + + /** + * @return array + */ + public function boolProvider() + { + return [ + ['false', false], + ['no', false], + ['n', false], + ['0', false], + ['off', false], + [0, false], + ['true', true], + ['yes', true], + ['y', true], + ['1', true], + ['on', true], + [1, true] + ]; + } + + public function testGetTempDir() + { + self::markTestIncomplete(); + } + + /** + * @return array + */ + public function unitsProvider() + { + return [ + ['128K', 131072], + ['128M', 134217728], + ['128G', 137438953472], + [131072, 131072], + [134217728, 134217728], + [137438953472, 137438953472], + ]; + } +} diff --git a/tests/res/config/config.xml b/tests/res/config/config.xml index b4a1ed42..2b6c4c61 100644 --- a/tests/res/config/config.xml +++ b/tests/res/config/config.xml @@ -9,11 +9,11 @@ 1 1 - 469d8c9e4929938ef00640f07de42d56e3b9b29b + 84a8f7e5acfaea173ff49c3d9e2dec220b0cb4f9 0 0 - 1539562721 - 70ced48a5cd70bf112f386361d4c10ac603132fe + 1540762364 + 347560028fad7863c9de6d844d42003aa9317b12 @@ -32,7 +32,7 @@ 0 - 0dcdb304c5e122e25fbbb97f5b9de17f87195c62 + e3a8d2f14c5c32a01852c265bed7bb141f81ae94 PDF JPG diff --git a/tests/res/datasets/syspass_notification.xml b/tests/res/datasets/syspass_notification.xml index 60b6dea3..2122e1a0 100644 --- a/tests/res/datasets/syspass_notification.xml +++ b/tests/res/datasets/syspass_notification.xml @@ -6,9 +6,7 @@ 1 Prueba Accounts - - Notificación de prueba - + Notificación de prueba 1529145158 0 2 @@ -19,9 +17,7 @@ 2 Global Accounts - - test - + test 1529145296 0 @@ -32,9 +28,7 @@ 3 Admins Accounts - - test - + test 1529145313 0