From 373ba30161b83e2c7accf6a7cae3df052eef177b Mon Sep 17 00:00:00 2001 From: nuxsmin Date: Wed, 15 Mar 2017 23:20:22 +0100 Subject: [PATCH] * [FIX] Fixes #504. Added an option to select which attribute should be used for user's login when importing from LDAP. Thanks to @maxdie for the feedback --- .../Controller/ItemActionController.class.php | 8 +- inc/SP/Mgmt/Users/UserLdap.class.php | 3 +- inc/SP/Mgmt/Users/UserLdapSync.class.php | 46 +- inc/SP/Util/Util.class.php | 2 +- inc/locales/de_DE/LC_MESSAGES/messages.mo | Bin 74827 -> 74827 bytes inc/locales/de_DE/LC_MESSAGES/messages.po | 479 +++++++++--------- inc/locales/en_US/LC_MESSAGES/messages.mo | Bin 89571 -> 89785 bytes inc/locales/en_US/LC_MESSAGES/messages.po | 475 ++++++++--------- inc/locales/fr_FR/LC_MESSAGES/messages.mo | Bin 97785 -> 97785 bytes inc/locales/fr_FR/LC_MESSAGES/messages.po | 477 ++++++++--------- inc/locales/hu_HU/LC_MESSAGES/messages.mo | Bin 65544 -> 65544 bytes inc/locales/hu_HU/LC_MESSAGES/messages.po | 477 ++++++++--------- inc/locales/nl_NL/LC_MESSAGES/messages.mo | Bin 76775 -> 76775 bytes inc/locales/nl_NL/LC_MESSAGES/messages.po | 475 ++++++++--------- inc/locales/po_PO/LC_MESSAGES/messages.mo | Bin 74655 -> 74655 bytes inc/locales/po_PO/LC_MESSAGES/messages.po | 475 ++++++++--------- inc/locales/ru_RU/LC_MESSAGES/messages.mo | Bin 92841 -> 92841 bytes inc/locales/ru_RU/LC_MESSAGES/messages.po | 477 ++++++++--------- .../material-blue/views/config/ldap.inc | 27 +- js/app-actions.js | 4 +- js/app-actions.min.js | 38 +- 21 files changed, 1796 insertions(+), 1667 deletions(-) diff --git a/inc/SP/Controller/ItemActionController.class.php b/inc/SP/Controller/ItemActionController.class.php index 331914a5..0dd85277 100644 --- a/inc/SP/Controller/ItemActionController.class.php +++ b/inc/SP/Controller/ItemActionController.class.php @@ -68,6 +68,7 @@ use SP\Mgmt\Users\UserLdapSync; use SP\Mgmt\Users\UserUtil; use SP\Util\Checks; use SP\Util\Json; +use SP\Util\Util; /** * Class AjaxSaveController @@ -1071,7 +1072,12 @@ class ItemActionController implements ItemControllerInterface { $this->LogMessage->setAction(__('Importar usuarios de LDAP', false)); - if (UserLdapSync::run()) { + $options = [ + 'loginAttribute' => Request::analyze('ldap_loginattribute'), + 'isADS' => Util::boolval(Request::analyze('ldap_ads')) + ]; + + if (UserLdapSync::run($options)) { $this->LogMessage->addDescription(__('Importación de usuarios de LDAP realizada', false)); $this->LogMessage->addDetails(__('Usuarios importados', false), sprintf('%d/%d', UserLdapSync::$syncedObjects, UserLdapSync::$totalObjects)); $this->LogMessage->addDetails(__('Errores', false), UserLdapSync::$errorObjects); diff --git a/inc/SP/Mgmt/Users/UserLdap.class.php b/inc/SP/Mgmt/Users/UserLdap.class.php index 1d823e24..f6a278da 100644 --- a/inc/SP/Mgmt/Users/UserLdap.class.php +++ b/inc/SP/Mgmt/Users/UserLdap.class.php @@ -149,12 +149,13 @@ class UserLdap extends User $query = /** @lang SQL */ 'SELECT user_login, user_email FROM usrData - WHERE LOWER(user_login) = LOWER(?) OR LOWER(user_email) = LOWER(?)'; + WHERE LOWER(user_login) = LOWER(?) OR (? <> \'\' AND LOWER(user_email) = LOWER(?))'; $Data = new QueryData(); $Data->setQuery($query); $Data->addParam($this->itemData->getUserLogin()); $Data->addParam($this->itemData->getUserEmail()); + $Data->addParam($this->itemData->getUserEmail()); DB::getQuery($Data); diff --git a/inc/SP/Mgmt/Users/UserLdapSync.class.php b/inc/SP/Mgmt/Users/UserLdapSync.class.php index 14bc544f..0faf388b 100644 --- a/inc/SP/Mgmt/Users/UserLdapSync.class.php +++ b/inc/SP/Mgmt/Users/UserLdapSync.class.php @@ -2,8 +2,8 @@ /** * sysPass * - * @author nuxsmin - * @link http://syspass.org + * @author nuxsmin + * @link http://syspass.org * @copyright 2012-2017, Rubén Domínguez nuxsmin@$syspass.org * * This file is part of sysPass. @@ -55,18 +55,24 @@ class UserLdapSync /** * Sincronizar usuarios de LDAP * + * @param array $options * @return bool * @throws \phpmailer\phpmailerException */ - public static function run() + public static function run(array &$options) { $Log = new Log(); $LogMessage = $Log->getLogMessage(); $LogMessage->setAction(__('Sincronización LDAP', false)); - $Ldap = Config::getConfig()->isLdapAds() ? new LdapMsAds() : new LdapStd(); + $Ldap = Config::getConfig()->isLdapAds() || $options['isADS'] ? new LdapMsAds() : new LdapStd(); $ldapObjects = $Ldap->findObjects(); + + if (!$ldapObjects) { + return false; + } + self::$totalObjects = (int)$ldapObjects['count']; $LogMessage->addDetails(__('Objetos encontrados', false), self::$totalObjects); @@ -75,9 +81,9 @@ class UserLdapSync $UserData = new UserData(); foreach ($ldapObjects as $result) { - $User = clone $UserData; - if (is_array($result)) { + $User = clone $UserData; + foreach ($result as $attribute => $values) { $value = $values[0]; @@ -87,27 +93,29 @@ class UserLdapSync case 'fullname': $User->setUserName($value); break; - case 'login': - case 'samaccountname': - case 'uid': - $User->setUserLogin(strtolower($value)); + case $options['loginAttribute']: + $User->setUserLogin($value); break; case 'mail': - $User->setUserEmail(strtolower($value)); + $User->setUserEmail($value); break; } } - $User->setUserPass(Util::generateRandomBytes()); + if (!empty($User->getUserName()) + && !empty($User->getUserLogin()) + ) { + $User->setUserPass(Util::generateRandomBytes()); - try { - $LogMessage->addDetails(__('Usuario', false), sprintf('%s (%s)', $User->getUserName(), $User->getUserLogin())); - UserLdap::getItem($User)->add(); + try { + $LogMessage->addDetails(__('Usuario', false), sprintf('%s (%s)', $User->getUserName(), $User->getUserLogin())); + UserLdap::getItem($User)->add(); - self::$syncedObjects++; - } catch (SPException $e) { - self::$errorObjects++; - $LogMessage->addDescription($e->getMessage()); + self::$syncedObjects++; + } catch (SPException $e) { + self::$errorObjects++; + $LogMessage->addDescription($e->getMessage()); + } } } } diff --git a/inc/SP/Util/Util.class.php b/inc/SP/Util/Util.class.php index 52bf9df5..74aeed91 100644 --- a/inc/SP/Util/Util.class.php +++ b/inc/SP/Util/Util.class.php @@ -405,7 +405,7 @@ class Util */ public static function getVersion($retBuild = false, $normalized = false) { - $build = 17031401; + $build = 17031501; $version = [2, 1, 2]; if ($normalized === true) { diff --git a/inc/locales/de_DE/LC_MESSAGES/messages.mo b/inc/locales/de_DE/LC_MESSAGES/messages.mo index be2a79d01514ef51cd8f09b90df964bef8684f86..97ee2999f4fcef67786e2ff3ea61fee8c0e28fa5 100644 GIT binary patch delta 34 kcmX?og5~rHmJO43vzsay8Cw|`O`f@15yswpaCcV*0Pdp=4*&oF delta 34 ocmX?og5~rHmJO43vl}ZI8CjW{PM*125yUpOGBDnJaCcV*0Pf)p6951J diff --git a/inc/locales/de_DE/LC_MESSAGES/messages.po b/inc/locales/de_DE/LC_MESSAGES/messages.po index e13a6ebf..2094c041 100644 --- a/inc/locales/de_DE/LC_MESSAGES/messages.po +++ b/inc/locales/de_DE/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-13 22:55+0100\n" -"PO-Revision-Date: 2017-03-13 23:03+0100\n" +"POT-Creation-Date: 2017-03-15 23:02+0100\n" +"PO-Revision-Date: 2017-03-15 23:02+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: \n" "Language: de_DE\n" @@ -63,7 +63,7 @@ msgstr "Ungültige Datei" #: ../../../../ajax/ajax_filesMgmt.php:104 #: ../../../../ajax/ajax_filesMgmt.php:166 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:842 #: ../../../../inc/SP/Core/Upgrade/Upgrade.class.php:437 #: ../../../../inc/SP/Mgmt/Files/File.class.php:97 #: ../../../../inc/themes/material-blue/views/config/import.inc:66 @@ -125,13 +125,13 @@ msgstr "ID" #: ../../../../inc/SP/Api/SyspassApi.class.php:85 #: ../../../../inc/SP/Controller/Grids/Items.class.php:280 #: ../../../../inc/SP/Controller/Grids/Items.class.php:832 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:839 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1160 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1166 #: ../../../../inc/SP/Controller/ItemShowController.class.php:530 -#: ../../../../inc/SP/Controller/MainController.class.php:609 +#: ../../../../inc/SP/Controller/MainController.class.php:601 #: ../../../../inc/SP/Import/ImportBase.class.php:165 #: ../../../../inc/SP/Mgmt/Files/File.class.php:96 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:77 @@ -144,9 +144,9 @@ msgstr "Konto" #: ../../../../inc/SP/Controller/Grids/Items.class.php:206 #: ../../../../inc/SP/Controller/Grids/Items.class.php:283 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:55 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 #: ../../../../inc/SP/Controller/LoginController.class.php:446 #: ../../../../inc/SP/Controller/LoginController.class.php:473 #: ../../../../inc/SP/Controller/LoginController.class.php:515 @@ -164,7 +164,7 @@ msgid "Tipo" msgstr "Typ" #: ../../../../ajax/ajax_filesMgmt.php:204 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:833 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:834 msgid "Archivo eliminado" msgstr "Datei gelöscht" @@ -222,18 +222,18 @@ msgid "Modificar Clave Usuario" msgstr "Benutzer-Passwort ändern" #: ../../../../ajax/ajax_passReset.php:99 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 msgid "Clave actualizada" msgstr "Passwort aktualisiert" #: ../../../../ajax/ajax_passReset.php:100 #: ../../../../inc/SP/Auth/Database/Database.class.php:92 #: ../../../../inc/SP/Controller/Grids/Items.class.php:474 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:247 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:268 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:279 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:105 #: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:320 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:37 @@ -378,7 +378,7 @@ msgstr "Fehler beim Ändern des Passworts eines Kontos " #: ../../../../inc/SP/Account/AccountCrypt.class.php:271 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:165 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:291 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1077 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1083 msgid "Errores" msgstr "Fehler" @@ -492,18 +492,18 @@ msgstr "Passwort anzeigen" #: ../../../../inc/SP/Api/SyspassApi.class.php:319 #: ../../../../inc/SP/Api/SyspassApi.class.php:372 #: ../../../../inc/SP/Api/SyspassApi.class.php:408 -#: ../../../../inc/SP/Controller/MainController.class.php:610 +#: ../../../../inc/SP/Controller/MainController.class.php:602 #: ../../../../inc/SP/Util/Wiki/DokuWikiApiBase.class.php:197 msgid "Origen" msgstr "Quelle" #: ../../../../inc/SP/Api/SyspassApi.class.php:189 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:922 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 msgid "Crear Cuenta" msgstr "Konto hinzufügen" #: ../../../../inc/SP/Api/SyspassApi.class.php:190 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 #: ../../../../inc/SP/Import/ImportBase.class.php:158 msgid "Cuenta creada" msgstr "Konto hinzugefügt" @@ -525,39 +525,39 @@ msgstr "Konto hinzugefügt" #: ../../../../inc/SP/Controller/Grids/Items.class.php:592 #: ../../../../inc/SP/Controller/Grids/Items.class.php:666 #: ../../../../inc/SP/Controller/Grids/Items.class.php:912 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:266 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:394 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:454 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:516 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:579 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:806 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:975 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1025 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:367 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:375 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:395 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:427 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:435 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:455 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:489 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:497 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:517 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:551 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:559 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:580 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:671 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:678 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:782 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:789 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:807 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:869 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:877 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:884 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:925 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:935 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:944 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:953 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:976 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:980 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1005 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1026 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1030 #: ../../../../inc/SP/Core/Plugin/PluginDataStore.class.php:77 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:12 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:9 @@ -589,7 +589,7 @@ msgstr "Konto nicht gefunden" #: ../../../../inc/SP/Controller/Grids/Items.class.php:384 #: ../../../../inc/SP/Controller/Grids/Items.class.php:454 #: ../../../../inc/SP/Controller/Grids/Items.class.php:455 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:969 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:970 #: ../../../../inc/SP/Core/Acl.class.php:192 #: ../../../../inc/themes/material-blue/views/account/actions.inc:39 #, fuzzy @@ -597,18 +597,18 @@ msgid "Eliminar Cuenta" msgstr "Konto löschen" #: ../../../../inc/SP/Api/SyspassApi.class.php:228 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:978 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1028 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 msgid "Cuenta eliminada" msgstr "Konto gelöscht" #: ../../../../inc/SP/Api/SyspassApi.class.php:280 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:548 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 msgid "Crear Categoría" msgstr "Kategorie hinzufügen" #: ../../../../inc/SP/Api/SyspassApi.class.php:281 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 #: ../../../../inc/SP/Import/ImportBase.class.php:182 msgid "Categoría creada" msgstr "Kategorie hinzugefügt" @@ -621,23 +621,23 @@ msgstr "Kategorie nicht gefunden" #: ../../../../inc/SP/Api/SyspassApi.class.php:316 #: ../../../../inc/SP/Controller/Grids/Items.class.php:111 #: ../../../../inc/SP/Controller/Grids/Items.class.php:112 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:576 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:577 #: ../../../../inc/SP/Core/Acl.class.php:200 msgid "Eliminar Categoría" msgstr "Kategorie löschen" #: ../../../../inc/SP/Api/SyspassApi.class.php:317 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:571 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:572 msgid "Categoría eliminada" msgstr "Kategorie gelöscht" #: ../../../../inc/SP/Api/SyspassApi.class.php:369 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:486 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 msgid "Crear Cliente" msgstr "Kunden hinzufügen" #: ../../../../inc/SP/Api/SyspassApi.class.php:370 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 #: ../../../../inc/SP/Import/ImportBase.class.php:204 msgid "Cliente creado" msgstr "Kunde hinzugefügt" @@ -650,13 +650,13 @@ msgstr "Kunde nicht gefunden" #: ../../../../inc/SP/Api/SyspassApi.class.php:405 #: ../../../../inc/SP/Controller/Grids/Items.class.php:185 #: ../../../../inc/SP/Controller/Grids/Items.class.php:186 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:513 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:514 #: ../../../../inc/SP/Core/Acl.class.php:205 msgid "Eliminar Cliente" msgstr "Kunde löschen" #: ../../../../inc/SP/Api/SyspassApi.class.php:406 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:508 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:509 msgid "Cliente eliminado" msgstr "Kunde gelöscht" @@ -677,7 +677,7 @@ msgstr "Fehler beim Ausführen des Backups" #: ../../../../inc/SP/Controller/ChecksController.class.php:142 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:699 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:722 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1084 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1090 #: ../../../../inc/SP/Import/Import.class.php:115 #, fuzzy msgid "Revise el registro de eventos para más detalles" @@ -855,7 +855,7 @@ msgid "Conexión a LDAP correcta" msgstr "LDAP-Verbindung ist OK" #: ../../../../inc/SP/Auth/Ldap/LdapBase.class.php:133 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:72 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:75 msgid "Objetos encontrados" msgstr "Objekte gefunden" @@ -895,11 +895,11 @@ msgstr "Fehler beim Suchen des Benutzers in LDAP" #: ../../../../inc/SP/Controller/AccountSearchController.class.php:368 #: ../../../../inc/SP/Controller/Grids/Items.class.php:748 #: ../../../../inc/SP/Controller/Grids/Items.class.php:835 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:617 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:630 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:727 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:737 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:752 #: ../../../../inc/SP/Controller/ItemShowController.class.php:408 #: ../../../../inc/SP/Controller/LoginController.class.php:261 #: ../../../../inc/SP/Controller/LoginController.class.php:368 @@ -908,7 +908,7 @@ msgstr "Fehler beim Suchen des Benutzers in LDAP" #: ../../../../inc/SP/Controller/LoginController.class.php:534 #: ../../../../inc/SP/Core/Init.class.php:615 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:78 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:104 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:108 #: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:64 #: ../../../../res/test.php:64 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:45 @@ -956,8 +956,8 @@ msgstr "Fehler beim Suchen nach Gruppen RDN" #: ../../../../inc/themes/material-blue/views/config/ldap.inc:201 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:71 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:73 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:47 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:18 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:137 msgid "Grupo" msgstr "Gruppe" @@ -1058,8 +1058,8 @@ msgstr "Weitere Aktionen" #: ../../../../inc/SP/Controller/Grids/Items.class.php:281 #: ../../../../inc/SP/Controller/Grids/Items.class.php:350 #: ../../../../inc/SP/Controller/Grids/Items.class.php:403 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1161 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1167 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:23 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:29 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:21 @@ -1221,7 +1221,7 @@ msgstr "Die maximale Dateigröße ist 16MB" #: ../../../../inc/SP/Controller/ConfigActionController.class.php:301 #: ../../../../inc/SP/Controller/ConfigController.class.php:203 #: ../../../../inc/SP/Controller/Grids/Items.class.php:365 -#: ../../../../inc/SP/Controller/MainController.class.php:616 +#: ../../../../inc/SP/Controller/MainController.class.php:608 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldTypes.class.php:90 #: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:13 #: ../../../../inc/themes/material-blue/views/itemshow/profiles.inc:30 @@ -1465,7 +1465,7 @@ msgid "No instalado" msgstr "Nicht installiert" #: ../../../../inc/SP/Controller/ConfigController.class.php:434 -#: ../../../../inc/SP/Controller/MainController.class.php:618 +#: ../../../../inc/SP/Controller/MainController.class.php:610 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:77 msgid "Información" msgstr "Information" @@ -1521,7 +1521,7 @@ msgstr "Suche nach Ereignis" #: ../../../../inc/SP/Controller/Grids/Items.class.php:131 #: ../../../../inc/SP/Controller/Grids/Items.class.php:593 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:57 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1162 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1168 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:37 #: ../../../../inc/themes/material-blue/views/itemshow/categories.inc:28 #: ../../../../inc/themes/material-blue/views/itemshow/customers.inc:32 @@ -1611,7 +1611,7 @@ msgstr "Feld bearbeiten" #: ../../../../inc/SP/Controller/Grids/Items.class.php:261 #: ../../../../inc/SP/Controller/Grids/Items.class.php:262 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:690 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:691 msgid "Eliminar Campo" msgstr "Feld löschen" @@ -1637,7 +1637,7 @@ msgstr "Datei ansehen" #: ../../../../inc/SP/Controller/Grids/Items.class.php:330 #: ../../../../inc/SP/Controller/Grids/Items.class.php:331 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:836 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:837 #: ../../../../inc/themes/material-blue/views/account/files-list.inc:26 msgid "Eliminar Archivo" msgstr "Datei löschen" @@ -1678,8 +1678,8 @@ msgstr "Konten (H)" #: ../../../../inc/SP/Controller/Grids/Items.class.php:444 #: ../../../../inc/SP/Controller/Grids/Items.class.php:445 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1002 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 msgid "Restaurar Cuenta" msgstr "Wiederherstellen Konto" @@ -1716,8 +1716,8 @@ msgstr "Neuer Benutzer" #: ../../../../inc/SP/Controller/Grids/Items.class.php:529 #: ../../../../inc/SP/Controller/Grids/Items.class.php:530 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1072 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:292 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1073 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:315 msgid "Importar usuarios de LDAP" msgstr "Benutzer aus LDAP importieren" @@ -1734,15 +1734,15 @@ msgstr "Benutzer ändern" #: ../../../../inc/SP/Controller/Grids/Items.class.php:562 #: ../../../../inc/SP/Controller/Grids/Items.class.php:563 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:20 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:52 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:58 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:122 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:128 msgid "Cambiar Clave de Usuario" msgstr "Benutzerpasswort Ändern" #: ../../../../inc/SP/Controller/Grids/Items.class.php:573 #: ../../../../inc/SP/Controller/Grids/Items.class.php:574 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:263 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:264 msgid "Eliminar Usuario" msgstr "Benutzer löschen" @@ -1771,7 +1771,7 @@ msgstr "Gruppe ändern" #: ../../../../inc/SP/Controller/Grids/Items.class.php:647 #: ../../../../inc/SP/Controller/Grids/Items.class.php:648 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:391 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:392 msgid "Eliminar Grupo" msgstr "Gruppe löschen" @@ -1803,7 +1803,7 @@ msgstr "Profil ändern" #: ../../../../inc/SP/Controller/Grids/Items.class.php:729 #: ../../../../inc/SP/Controller/Grids/Items.class.php:730 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:451 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:452 msgid "Eliminar Perfil" msgstr "Profil löschen" @@ -1842,7 +1842,7 @@ msgstr "Authentifizierung bearbeiten" #: ../../../../inc/SP/Controller/Grids/Items.class.php:813 #: ../../../../inc/SP/Controller/Grids/Items.class.php:814 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:642 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:643 msgid "Eliminar Autorización" msgstr "Autorisierung löschen" @@ -1892,7 +1892,7 @@ msgstr "Link erneuern" #: ../../../../inc/SP/Controller/Grids/Items.class.php:893 #: ../../../../inc/SP/Controller/Grids/Items.class.php:894 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:754 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:755 msgid "Eliminar Enlace" msgstr "Link löschen" @@ -1921,7 +1921,7 @@ msgstr "Tab bearbeiten" #: ../../../../inc/SP/Controller/Grids/Items.class.php:965 #: ../../../../inc/SP/Controller/Grids/Items.class.php:966 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:803 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:804 msgid "Eliminar Etiqueta" msgstr "Tag löschen" @@ -1968,8 +1968,9 @@ msgid "Leída" msgstr "Lesen" #: ../../../../inc/SP/Controller/Grids/Notices.class.php:76 -#: ../../../../inc/SP/Controller/MainController.class.php:315 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:79 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:108 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:116 msgid "Notificaciones" msgstr "Benachrichtigungen" @@ -2005,323 +2006,323 @@ msgstr "Benachrichtigung bearbeiten" msgid "Eliminar Notificación" msgstr "Benachrichtigung löschen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:228 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 msgid "Crear Usuario" msgstr "Benutzer hinzufügen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 msgid "Usuario creado" msgstr "Benutzer hinzugefügt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:236 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:237 msgid "No se pudo realizar la petición de cambio de clave." msgstr "Die Passwortänderung Anfrage konnte nicht ausgeführt werden." -#: ../../../../inc/SP/Controller/ItemActionController.class.php:243 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 msgid "Actualizar Usuario" msgstr "Benutzer aktualisieren" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:104 msgid "Usuario actualizado" msgstr "Benutzer aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:253 msgid "Usuarios eliminados" msgstr "Bentzer gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:258 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:259 msgid "Usuario eliminado" msgstr "Benutzer gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:275 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 msgid "Actualizar Clave Usuario" msgstr "Benutzerpasswort aktualisieren" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:364 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 msgid "Crear Grupo" msgstr "Gruppe hinzufügen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 msgid "Grupo creado" msgstr "Gruppe hinzugefügt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:372 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 msgid "Actualizar Grupo" msgstr "Gruppe aktualisieren" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 msgid "Grupo actualizado" msgstr "Gruppe aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:380 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 msgid "Grupos eliminados" msgstr "Gruppen gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:386 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:387 msgid "Grupo eliminado" msgstr "Gruppe gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:424 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 msgid "Crear Perfil" msgstr "Profile hinzufügen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 msgid "Perfil creado" msgstr "Profil hinzugefügt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:432 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 msgid "Actualizar Perfil" msgstr "Profil aktualisieren" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 msgid "Perfil actualizado" msgstr "Profil aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:440 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 msgid "Perfiles eliminados" msgstr "Profile gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:446 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:447 msgid "Perfil eliminado" msgstr "Profil gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:494 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 msgid "Actualizar Cliente" msgstr "Kunde ändern" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 msgid "Cliente actualizado" msgstr "Kunde aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:502 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 msgid "Clientes eliminados" msgstr "Kunden gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:556 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 msgid "Actualizar Categoría" msgstr "Kategorie aktualisieren" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 msgid "Categoría actualizada" msgstr "Kategorie aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:566 msgid "Categorías eliminadas" msgstr "Kategorien gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:614 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 msgid "Crear Autorización" msgstr "Berechtigung hinzufügen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 msgid "Autorización creada" msgstr "Authentifizierung hinzugefügt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:627 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 msgid "Actualizar Autorización" msgstr "Autorisierung aktualisieren" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 msgid "Autorización actualizada" msgstr "Authentifizierung aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:635 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 msgid "Autorizaciones eliminadas" msgstr "Berechtigungen gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:639 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:640 msgid "Autorización eliminada" msgstr "Authentifizierung gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:668 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 msgid "Crear Campo" msgstr "Feld hinzufügen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 msgid "Campo creado" msgstr "Feld hinzugefügt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:675 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 msgid "Actualizar Campo" msgstr "Feld aktualisieren" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldsUtil.class.php:288 msgid "Campo actualizado" msgstr "Feld aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:683 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 msgid "Campos eliminados" msgstr "Felder gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:687 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:688 msgid "Campo eliminado" msgstr "Feld gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:722 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 #, fuzzy msgid "Crear Enlace" msgstr "Link hinzufügen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 msgid "Enlace creado" msgstr "Link erstellt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:732 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 #: ../../../../inc/themes/material-blue/views/account/actions.inc:69 msgid "Actualizar Enlace" msgstr "Link aktualisieren" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 msgid "Enlace actualizado" msgstr "Link aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:742 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:743 msgid "Enlaces eliminados" msgstr "Links gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:748 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 msgid "Enlace eliminado" msgstr "Link gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:779 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 msgid "Crear Etiqueta" msgstr "Tag hinzufügen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 #: ../../../../inc/SP/Import/ImportBase.class.php:226 msgid "Etiqueta creada" msgstr "Tag hinzugefügt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:786 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 msgid "Actualizar Etiqueta" msgstr "Tag aktualisieren" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 msgid "Etiqueta actualizada" msgstr "Tag aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:794 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 msgid "Etiquetas eliminadas" msgstr "Tags gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:800 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:801 msgid "Etiqueta eliminada" msgstr "Tag entfernt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:827 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:828 msgid "Archivos eliminados" msgstr "Dateien gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:866 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:874 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:881 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 msgid "Actualizar Plugin" msgstr "Plugin aktualisieren" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 msgid "Plugin habilitado" msgstr "Plugin aktiviert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 msgid "Plugin deshabilitado" msgstr "Plugin deaktiviert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 msgid "Plugin restablecido" msgstr "Plugin zurückgesetzt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:932 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 msgid "Actualizar Cuenta" msgstr "Konto ändern" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 msgid "Cuenta actualizada" msgstr "Konto aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 msgid "Cuenta restaurada" msgstr "Konto wiederhergestellt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:972 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1022 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:973 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1023 msgid "Cuentas eliminadas" msgstr "Konten entfernt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1019 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1020 msgid "Eliminar Cuenta (H)" msgstr "Konto löschen (H)" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1053 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1054 msgid "Favorito añadido" msgstr "Favorit hinzugefügt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1058 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1059 msgid "Favorito eliminado" msgstr "Favorit gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1075 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 msgid "Importación de usuarios de LDAP realizada" msgstr "LDAP-Benutzerimport abgeschlossen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1076 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1082 msgid "Usuarios importados" msgstr "Importierte Benutzer" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1087 #, fuzzy msgid "Error al importar usuarios de LDAP" msgstr "Fehler beim Import von LDAP-Benutzern" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1099 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1105 msgid "Notificación leída" msgstr "Benachrichtigung gelesen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1107 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1113 msgid "Notificación creada" msgstr "Benachrichtigung erstellt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1115 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 msgid "Notificación actualizada" msgstr "Benachrichtigung aktualisiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1127 msgid "Notificaciones eliminadas" msgstr "Benachrichtigungen gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1125 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1131 msgid "Notificación eliminada" msgstr "Benachrichtigung gelöscht" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1143 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1149 #: ../../../../inc/SP/Forms/NoticeForm.class.php:95 msgid "Es necesaria una descripción" msgstr "Beschreibung ist notwendig" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1158 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1164 msgid "Solicitud de Modificación de Cuenta" msgstr "Kontoänderung initiiert" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1159 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1165 msgid "Solicitante" msgstr "Anfrager" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1177 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1183 msgid "Solicitud enviada por correo" msgstr "Anfrage per E-Mail gesendet" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1179 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1185 msgid "Solicitud no enviada por correo" msgstr "Anfrage nicht per E-Mail gesendet" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1188 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 msgid "Solicitud" msgstr "Anfragen" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1200 msgid "Solicitud realizada" msgstr "Anfrage erledigt" @@ -2496,12 +2497,12 @@ msgstr "Artikel und Anpassungen" msgid "Registro de Eventos" msgstr "Ereignisprotokoll" -#: ../../../../inc/SP/Controller/MainController.class.php:368 +#: ../../../../inc/SP/Controller/MainController.class.php:360 #: ../../../../inc/SP/Core/Init.class.php:140 msgid "Versión de PHP requerida >= " msgstr "Benötigte PHP version muss >= xyz sein" -#: ../../../../inc/SP/Controller/MainController.class.php:369 +#: ../../../../inc/SP/Controller/MainController.class.php:361 #: ../../../../inc/SP/Core/Init.class.php:141 msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" @@ -2509,50 +2510,50 @@ msgstr "" "Bitte aktualisieren Sie ihre PHP Installation, um sysPass sicher betreiben " "zu können." -#: ../../../../inc/SP/Controller/MainController.class.php:379 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#: ../../../../inc/SP/Controller/MainController.class.php:371 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:288 msgid "Módulo no disponible" msgstr "Modul verfügbar" -#: ../../../../inc/SP/Controller/MainController.class.php:380 +#: ../../../../inc/SP/Controller/MainController.class.php:372 msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Ohne dieses Modul wird die Anwendung nicht korrekt funktionieren." -#: ../../../../inc/SP/Controller/MainController.class.php:388 +#: ../../../../inc/SP/Controller/MainController.class.php:380 msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" msgstr "Die PHP-Version is verwundbar für 'NULL Byte attack (CVE-2006-7243)'" -#: ../../../../inc/SP/Controller/MainController.class.php:389 +#: ../../../../inc/SP/Controller/MainController.class.php:381 msgid "Actualice la versión de PHP para usar sysPass de forma segura" msgstr "" "Bitte aktualisieren Sie ihre PHP Installation, um sysPass sicher betreiben " "zu können." -#: ../../../../inc/SP/Controller/MainController.class.php:395 +#: ../../../../inc/SP/Controller/MainController.class.php:387 msgid "No se encuentra el generador de números aleatorios." msgstr "Zufallszahlengenerator konnte nicht gefunden werden" -#: ../../../../inc/SP/Controller/MainController.class.php:396 +#: ../../../../inc/SP/Controller/MainController.class.php:388 msgid "" "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" msgstr "" "Ohne diese Funktion könnte an Angreifer Ihren Zugang oder Ihr Passwort " "zurücksetzen." -#: ../../../../inc/SP/Controller/MainController.class.php:493 +#: ../../../../inc/SP/Controller/MainController.class.php:485 msgid "Descargar nueva versión" msgstr "Neu Version herunterladen" -#: ../../../../inc/SP/Controller/MainController.class.php:505 +#: ../../../../inc/SP/Controller/MainController.class.php:497 msgid "Avisos de sysPass" msgstr "sysPass Neuigkeiten" -#: ../../../../inc/SP/Controller/MainController.class.php:608 +#: ../../../../inc/SP/Controller/MainController.class.php:600 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:75 msgid "Enlace visualizado" msgstr "Link angesehen" -#: ../../../../inc/SP/Controller/MainController.class.php:611 +#: ../../../../inc/SP/Controller/MainController.class.php:603 msgid "Agente" msgstr "Agent" @@ -3856,22 +3857,22 @@ msgstr "Sie bekommen in Kürze eine Bestätigungs-Mail" msgid "Nuevo usuario de LDAP" msgstr "Neuer LDAP Benutzer" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:185 -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:214 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:186 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:215 #, fuzzy msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Fehler beim Ändern des Benutzer-Passworts in der BD" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:65 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:66 msgid "Sincronización LDAP" msgstr "LDAP-Synchronisation" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:115 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:120 #, fuzzy msgid "No se encontraron objetos para sincronizar" msgstr "Es gibt keine zu synchronisierende Objekte" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:121 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:126 msgid "Sincronización finalizada" msgstr "Synchronisation abgeschlossen" @@ -4286,12 +4287,12 @@ msgid "Limpiar Selección" msgstr "Auswahl aufheben" #: ../../../../js/strings.js.php:77 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Favoritos" msgstr "Favoriten anzeigen" #: ../../../../js/strings.js.php:78 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Todos" msgstr "Alle anzeigen" @@ -4367,7 +4368,7 @@ msgstr "Datum auswählen" #: ../../../../inc/themes/material-blue/views/config/general.inc:29 #: ../../../../inc/themes/material-blue/views/config/import.inc:89 #: ../../../../inc/themes/material-blue/views/config/info.inc:145 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:283 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:306 #: ../../../../inc/themes/material-blue/views/config/mail.inc:150 #: ../../../../inc/themes/material-blue/views/config/wiki.inc:276 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:137 @@ -4627,19 +4628,19 @@ msgstr "Hole dir die privaten Konten für den aktuellen Benutzer" msgid "Búsqueda global" msgstr "Globale Suche" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:71 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:73 msgid "Filtrar Favoritos" msgstr "Favoriten filtern" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:85 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:87 msgid "Cuentas por página" msgstr "Konten pro Seite" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:91 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:93 msgid "Más Filtros" msgstr "Mehr Filter" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:96 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:98 msgid "Seleccionar Etiqueta" msgstr "Tag auswählen" @@ -5473,7 +5474,19 @@ msgid "" msgstr "Definiert das Standardprofil für neu erstellte LDAP Benutzer." #: ../../../../inc/themes/material-blue/views/config/ldap.inc:255 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:258 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#, fuzzy +msgid "Atributo Login" +msgstr "Login Attribute" + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:260 +#, fuzzy +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." + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:278 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:281 msgid "Resultados" msgstr "Ergebnisse" @@ -5911,33 +5924,12 @@ msgstr "Letzter Zugriff" msgid "Fecha Clave Maestra" msgstr "Datum des Master-Passworts" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:11 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:75 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:78 -msgid "Salir" -msgstr "Abmelden" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:25 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:62 -msgid "Preferencias de usuario" -msgstr "Benutzereinstellungen" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:34 -#, php-format -msgid "Hay %d notificaciones pendientes" -msgstr "Es gibt %d ungelesene Benachrichtigungen" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:41 -#, fuzzy -msgid "No hay no hay notificaciones pendientes" -msgstr "Anstehende Benachrichtigungen sind nicht vorhanden" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 #, fuzzy msgid "Indica si la conexión utiliza HTTPS." msgstr "Zeigt, ob die Verbindung HTTPS nutzt" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 msgid "" "Las claves de formularios enviados se encriptan mediante PKI, el resto de " "datos no." @@ -5945,19 +5937,40 @@ msgstr "" "Die aus dem Formular gesendeten Passwörter werden verschlüsselt; andere " "Daten nicht." -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:79 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:88 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:43 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:158 msgid "Demo" msgstr "Demo" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:90 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:54 msgid "Ayuda :: FAQ :: Changelog" msgstr "Hilfe :: FAQ :: Changelog" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:94 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:58 msgid "Un proyecto de cygnux.org" msgstr "Ein cygnux.org Projekt" +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:39 +#, php-format +msgid "Hay %d notificaciones pendientes" +msgstr "Es gibt %d ungelesene Benachrichtigungen" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:48 +#, fuzzy +msgid "No hay no hay notificaciones pendientes" +msgstr "Anstehende Benachrichtigungen sind nicht vorhanden" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:73 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:132 +msgid "Preferencias de usuario" +msgstr "Benutzereinstellungen" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:77 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:145 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:148 +msgid "Salir" +msgstr "Abmelden" + #: ../../../../inc/themes/material-blue/views/main/body-start.inc:4 msgid "Javascript es necesario para el correcto funcionamiento" msgstr "Javascript muss eingeschaltet sein." diff --git a/inc/locales/en_US/LC_MESSAGES/messages.mo b/inc/locales/en_US/LC_MESSAGES/messages.mo index c9df0205682aaab5a410a1ac2d9230f871178daa..fcabf2f222223382f43486980f115cb6f2f6f020 100644 GIT binary patch delta 26023 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 bas3MQx6u>2GNv1_TkkFro07l$wcY;%E0bS< delta 25811 zcmZwP1$>v~zyI-jFh-7zt_?Q2VS~}#DczH9q`UkA0@5LkNQWRPjkF+w5`u(;ln6+d zpoIU|`+I#jhsSyR@5i}(UfuV-f&R|UJ@IaS7ti;5^1xXh&-y^m3&Tm-Jg;<+=e?<+ zT+e&l&hx6{6HJOF+k0Motbrj|A5&mk%O7BVipj_yYvpq-e=Q~_e+!0sp3ggC1sAX; z1=p|)=I!7H?1pME1jBJMrp9luBp$?U_zn|e){dT+2@9eYR2MT~cTA7t&E@`bpXco( zl97VTm=0fKB23lE^U`7jYNf@I8GF?+6*jl>UZ{b_TY4pG!uwGDoks1%ee)e^$3i<3 z7~jiEL=|Gps;CZ{VFZ3+`I9l2^di(m)}bc27q#N^7=$k|9==2EOkfu`!Q2?1bX8Ql zI_T5Dor$Q!A*l33)C#}CthgC9zy;JDc!dctepgpN6t$wvSQm?+`uiL;p}Ce`gqqk! zOK!p%L54bfjKwj|C$3>B)Jp20%3Gs4=!2U0U`&GJQ022w1Fk}q??O%J zC~BPFEdREp|Mpph!0xU>N=!n<%&3(Yu>4A9eJgK`8lXEy<1oyJ8!!g1ppGs@4_B`k zCL~=IwV-;aBlEQ-5{JkD)XWECT%3g3!f67RVz4yPO?!Y|^!6%p$19~|_QD>XU z(xp)gsD+`}95qfiOv?D)2qL;%Q&B5gW$r``@Dpk!mr!rP6H6!S?RG2&YQ-fmGsdDO z?nAYoi@ES?EQF^qI|lXP(lWl6kBAynMNOo&3UCnSz%ML+7wSk(qt5OkYUK|x8NM|` z`nm~6qPDy!s(v}t&Naj+Y>qx{?Ia>Plewr%vJ5qWb=Vk>peC5HpXagLUQsN8t1tp@ zpgN4(->onPi;(VuS#U8%;2|uCw=h4Z9>D$=B~p2S=Y5L9Q3JohIw=g#`?9JDUVmFDsVCqJ!9fU5#g$#CEod#2o4oB^D6slfnRKFkjh-koAvkRsoJpeV} zBvivMt$Y=#;TF^c4x%pQdDO~YqRu?g5I4~jsD9F;>gPgDpbVo@DGMzn&GazFzPPV#$dhw?fntH z>8OSy%*m*&oR3=RGIJa1eLspZcn^zUBsaJqHbt#?JZ8j&sDAgL20n)B?>YuCzW1Dn z8oWkT)Gq~EQ8+4H0M)P*>MR?e|Hx2B)eHR-NA)w=%9o<*Z$!1lHxp4VoMey z%u}JtbD}0v#79JDR@ExRT0u|L>ox*4k#SZ&AGLMsP-nOe{g(^X@iDB47cd@X9qW!L zH)bT=2z34uwgF+b_er~z+a z28=Vs?LzGYyo$Lo z;0xD5Ud&FqE=J)%)S0hF^>YNZ((9=HUts|Zo#7@_ZU+0W2C-ylfFY=rES%d z94v!JPy+dIbnP84fXGBfZSD1)a-V7sfC~E5$ zpzgvx%fE`M=goB!$ZQtJlw{Y%G}r-k*2A$I&cl8fZyrAxaR_R{XRxZ?|2ISikx^;B z`;*Kb>_Pf5>P%aG>B^_0b|TRN_vNdOZAjO}3ivH*$6jD{%=VT0RQE(pa5aYDUQCWB z{Br)+iKHguIVQx!3tfX$7(_ZZ>S&@+0~E&u*abte4<^CSFfmR;{|;g_>3x_8pQ4WD zEo!IIE@E89_X-lxYgQHWU~kNXUtv1jgJF0cGvaepM=2J&t|@Y;Y=x z|5-X@nahtvwJ(HPU^Uc4W0(0{K_4i=Lfx%rsELKIbl;a~EJ@neiAXad%dk4W#aOJm%H=Od9mP9riN(HlmuC*@ z4lKoVxE6H@e?T44bxewHQEy3-)ov%lQ9Blc+zFpolZgNFppIZDX2ON274OABJcT-v zv#0@IVgx2z!=K|Y8WUny)a~wvanNUuLhbYz)P%mk^o;KVYt)%1{Kl<3 z5_M)RFbKP$CeR0S<0Mr5?U(>hq6WBN-bK~_7qufP*SaIkg8Eh8D@sHwt%iB9IcCGL zSP|Ev-v7s_%Ne}Ref#sGI=xc}9F4lYhfy6|LQUu`>Mms7>W-{7HXuD6>*Fnq zz+&6njy6LbU2h+e+C(Ozj^H=c`+E(w6L(Oz|21kyyzTBo5`x-+RH%UqVkoviP3#lY zkxjvBILEw((WGE4RWsQiMM2+Ls_tcmHc9j3+M zsEN$B^eWWl+mBk%am&Ak!FvDyA(D)O_`BRd>98j09H`f_FKP=nVg-!*ovT*`)p0{q z`!<*g`=TZ`9<`H8FdSD~`4Nmu`U=L;`+uE?J{*5wK75GU>ag8ztMi~%9A%b5y+&0r zF?K}N?}Pf_jKmT+8uQ{ljKceXMs#^;y=OYC(!(H2vy z9%jdFSP-vZPE5MbUB;rQ@>tZ}_zX3X^_G7L^?ix6pZ)JZBqx!KI0dz$b(k4ThxTI9dsY8x(C^R6?{TQVVsFNf}>af zU!o?E<9kAL>$`GH+mM($7&x82y7=NOd0(y^jMh z91PBdXp=)D}-b?a%_$1h!#j{26QEBh;3cI_COqfI6y9 zm{RZm5G$C9x+Kdm2oIu;3_akcOuAomDkBF$lz?1Im(xN63fqJc?FbTFnZFLXSipF6bT#UL*k1+(3o^t(U z#9-3dQEy3M)X~&K9cjN)?7y~n1R0vZSX2k|%{8d^co%8~XHXNkh`MCYF%;jR&OZ1T zx3Vm#fn%^bRz&UGWK{pNF*~mOh5e5pa-0mU=ppK|1f6#2aMZ+NP`9=^s=NbgBEwKC znvF?uCu+-oMAbiyTIoYfhW}c5k~41NseMHBdgMUe?&_!x+M_N{57cWk7&Y)bb0Zcc zeFXLPyh82dYs`iLzw+;qFbC>VkHea{3ZwBEjz?eivu-OkqPFTh7RShQZp&Jre?pjo z{2rJZM_GCvCMUfPQ{sNqQJh7s_@4O|RWIbcGc(ek&x;|VhSgCGTB6RX7ivcaqt0?B z=EJ3^tv-di16NTU-!}h6)eFAhUc-`Dg!I=~RP|9ulIAz<2}PqB`D${*|C6 za2B<-k1;j=jk-j^7hOl;s2$3MX|NFLNNZYtchv14h*@zaYN0!oulN5aA{y`x>a5?Q zwmSThTS*jZ=B+Rn&Ox310o2Ys#SG|Ob|0!RY)Uc$OW|PDo!ExjvCF7&{y?7^23~P1 zjldkFOQKfL4z;o|s4bg{+KDeMy#%#m>rfNkjoO)0sPDx!)Q&yCKn(od?L&MA=Hsq_7TyHo1-Ss-zrSB^jD|>H=}my2LgB9b1Pg-+@};A=Jvx zq3+NvD}RKl{~Ea?J}>AGx78_7uTO4Ng$k${*G6^F26fxJp#~U?syES`jhes`)XLYP zF5fm(KgTV79aZlYrqTN!c*|`?7;2>jP#=sMSO`a=I^2rtXfJAuPos9|vE_&S>AvY% zPjv8o|<*!EFjUA}7Jb`-6Zd&;>GtO<- zPcp0&hYKmG*Ws>v9oL{HwjDK*edzOV4H2#IItJlis0lqWy}w+327 zE=QGbLT%}ORJ{|Z*YP51qJN|6C3xWKr9mw;n~#XTM5QnuHb&inSd75ds0oflU77`` zhD$IB?m$iGu%%C-2D*Z}ocB@f6F+nVXGe`w7&TE}2`i|A<;ZA=+Ui-T0l&tixDK_o zyD=EQxBOpF^{=5O_6&7&i5|I29Dzy~MqR!d7=rbY{(W9sB6>YKp;j^iwF47TE1YUB zK>wveb+{3A`F=pH?c5C1O6Q>JEkqs7dP^Th^>Y^e|NYNR%XoyU_}0=X zpScNSMs*m4+VWzkm6W&g`j~=r8_VyH$w`kz|J!2e<*4@CF&XZE#{MgEnhbUL2ZrGb zR0qkQyA@1n8bmYG{nJ8&3v$Ie>%A!-NS>A!f;>zCw(dtbAo z?mz`pM@=y+cEL!Tg8KGvL`~!broul_{k%c#VCui!Wz2_q{TicI-W%2L5Y*k7=p&MX z$b2hUk6P(I)R~_~?a*b^d;1V`;B(a0hP`z4a-hniQ1y$VKE>57JqnwWo{1�cs(> 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 diff --git a/inc/locales/en_US/LC_MESSAGES/messages.po b/inc/locales/en_US/LC_MESSAGES/messages.po index ed22018a..c92f95c5 100644 --- a/inc/locales/en_US/LC_MESSAGES/messages.po +++ b/inc/locales/en_US/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-13 22:53+0100\n" -"PO-Revision-Date: 2017-03-13 23:04+0100\n" +"POT-Creation-Date: 2017-03-15 23:01+0100\n" +"PO-Revision-Date: 2017-03-15 23:02+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: nuxsmin@syspass.org\n" "Language: en_US\n" @@ -68,7 +68,7 @@ msgstr "Invalid file" #: ../../../../ajax/ajax_filesMgmt.php:104 #: ../../../../ajax/ajax_filesMgmt.php:166 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:842 #: ../../../../inc/SP/Core/Upgrade/Upgrade.class.php:437 #: ../../../../inc/SP/Mgmt/Files/File.class.php:97 #: ../../../../inc/themes/material-blue/views/config/import.inc:66 @@ -129,13 +129,13 @@ msgstr "ID" #: ../../../../inc/SP/Api/SyspassApi.class.php:85 #: ../../../../inc/SP/Controller/Grids/Items.class.php:280 #: ../../../../inc/SP/Controller/Grids/Items.class.php:832 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:839 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1160 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1166 #: ../../../../inc/SP/Controller/ItemShowController.class.php:530 -#: ../../../../inc/SP/Controller/MainController.class.php:609 +#: ../../../../inc/SP/Controller/MainController.class.php:601 #: ../../../../inc/SP/Import/ImportBase.class.php:165 #: ../../../../inc/SP/Mgmt/Files/File.class.php:96 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:77 @@ -148,9 +148,9 @@ msgstr "Account" #: ../../../../inc/SP/Controller/Grids/Items.class.php:206 #: ../../../../inc/SP/Controller/Grids/Items.class.php:283 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:55 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 #: ../../../../inc/SP/Controller/LoginController.class.php:446 #: ../../../../inc/SP/Controller/LoginController.class.php:473 #: ../../../../inc/SP/Controller/LoginController.class.php:515 @@ -168,7 +168,7 @@ msgid "Tipo" msgstr "Type" #: ../../../../ajax/ajax_filesMgmt.php:204 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:833 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:834 msgid "Archivo eliminado" msgstr "File deleted" @@ -224,18 +224,18 @@ msgid "Modificar Clave Usuario" msgstr "Edit User Password" #: ../../../../ajax/ajax_passReset.php:99 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 msgid "Clave actualizada" msgstr "Password updated" #: ../../../../ajax/ajax_passReset.php:100 #: ../../../../inc/SP/Auth/Database/Database.class.php:92 #: ../../../../inc/SP/Controller/Grids/Items.class.php:474 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:247 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:268 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:279 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:105 #: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:320 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:37 @@ -370,7 +370,7 @@ msgstr "Error while updating the account's password" #: ../../../../inc/SP/Account/AccountCrypt.class.php:271 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:165 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:291 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1077 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1083 msgid "Errores" msgstr "Errors" @@ -478,18 +478,18 @@ msgstr "View password" #: ../../../../inc/SP/Api/SyspassApi.class.php:319 #: ../../../../inc/SP/Api/SyspassApi.class.php:372 #: ../../../../inc/SP/Api/SyspassApi.class.php:408 -#: ../../../../inc/SP/Controller/MainController.class.php:610 +#: ../../../../inc/SP/Controller/MainController.class.php:602 #: ../../../../inc/SP/Util/Wiki/DokuWikiApiBase.class.php:197 msgid "Origen" msgstr "Source" #: ../../../../inc/SP/Api/SyspassApi.class.php:189 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:922 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 msgid "Crear Cuenta" msgstr "Add Account" #: ../../../../inc/SP/Api/SyspassApi.class.php:190 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 #: ../../../../inc/SP/Import/ImportBase.class.php:158 msgid "Cuenta creada" msgstr "Account added" @@ -511,39 +511,39 @@ msgstr "Account added" #: ../../../../inc/SP/Controller/Grids/Items.class.php:592 #: ../../../../inc/SP/Controller/Grids/Items.class.php:666 #: ../../../../inc/SP/Controller/Grids/Items.class.php:912 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:266 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:394 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:454 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:516 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:579 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:806 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:975 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1025 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:367 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:375 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:395 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:427 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:435 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:455 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:489 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:497 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:517 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:551 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:559 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:580 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:671 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:678 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:782 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:789 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:807 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:869 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:877 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:884 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:925 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:935 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:944 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:953 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:976 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:980 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1005 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1026 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1030 #: ../../../../inc/SP/Core/Plugin/PluginDataStore.class.php:77 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:12 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:9 @@ -575,25 +575,25 @@ msgstr "Account not found" #: ../../../../inc/SP/Controller/Grids/Items.class.php:384 #: ../../../../inc/SP/Controller/Grids/Items.class.php:454 #: ../../../../inc/SP/Controller/Grids/Items.class.php:455 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:969 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:970 #: ../../../../inc/SP/Core/Acl.class.php:192 #: ../../../../inc/themes/material-blue/views/account/actions.inc:39 msgid "Eliminar Cuenta" msgstr "Remove Account" #: ../../../../inc/SP/Api/SyspassApi.class.php:228 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:978 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1028 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 msgid "Cuenta eliminada" msgstr "Account removed" #: ../../../../inc/SP/Api/SyspassApi.class.php:280 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:548 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 msgid "Crear Categoría" msgstr "Add Category" #: ../../../../inc/SP/Api/SyspassApi.class.php:281 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 #: ../../../../inc/SP/Import/ImportBase.class.php:182 msgid "Categoría creada" msgstr "Category added" @@ -606,23 +606,23 @@ msgstr "Category not found" #: ../../../../inc/SP/Api/SyspassApi.class.php:316 #: ../../../../inc/SP/Controller/Grids/Items.class.php:111 #: ../../../../inc/SP/Controller/Grids/Items.class.php:112 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:576 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:577 #: ../../../../inc/SP/Core/Acl.class.php:200 msgid "Eliminar Categoría" msgstr "Delete Category" #: ../../../../inc/SP/Api/SyspassApi.class.php:317 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:571 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:572 msgid "Categoría eliminada" msgstr "Category deleted" #: ../../../../inc/SP/Api/SyspassApi.class.php:369 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:486 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 msgid "Crear Cliente" msgstr "Add Customer" #: ../../../../inc/SP/Api/SyspassApi.class.php:370 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 #: ../../../../inc/SP/Import/ImportBase.class.php:204 msgid "Cliente creado" msgstr "Customer added" @@ -635,13 +635,13 @@ msgstr "Customer not found" #: ../../../../inc/SP/Api/SyspassApi.class.php:405 #: ../../../../inc/SP/Controller/Grids/Items.class.php:185 #: ../../../../inc/SP/Controller/Grids/Items.class.php:186 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:513 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:514 #: ../../../../inc/SP/Core/Acl.class.php:205 msgid "Eliminar Cliente" msgstr "Delete Customer" #: ../../../../inc/SP/Api/SyspassApi.class.php:406 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:508 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:509 msgid "Cliente eliminado" msgstr "Customer deleted" @@ -661,7 +661,7 @@ msgstr "Error while doing the backup" #: ../../../../inc/SP/Controller/ChecksController.class.php:142 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:699 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:722 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1084 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1090 #: ../../../../inc/SP/Import/Import.class.php:115 msgid "Revise el registro de eventos para más detalles" msgstr "Please check out the event log for more details" @@ -834,7 +834,7 @@ msgid "Conexión a LDAP correcta" msgstr "LDAP connection OK" #: ../../../../inc/SP/Auth/Ldap/LdapBase.class.php:133 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:72 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:75 msgid "Objetos encontrados" msgstr "Objects found" @@ -873,11 +873,11 @@ msgstr "Error while searching the user on LDAP" #: ../../../../inc/SP/Controller/AccountSearchController.class.php:368 #: ../../../../inc/SP/Controller/Grids/Items.class.php:748 #: ../../../../inc/SP/Controller/Grids/Items.class.php:835 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:617 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:630 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:727 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:737 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:752 #: ../../../../inc/SP/Controller/ItemShowController.class.php:408 #: ../../../../inc/SP/Controller/LoginController.class.php:261 #: ../../../../inc/SP/Controller/LoginController.class.php:368 @@ -886,7 +886,7 @@ msgstr "Error while searching the user on LDAP" #: ../../../../inc/SP/Controller/LoginController.class.php:534 #: ../../../../inc/SP/Core/Init.class.php:615 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:78 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:104 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:108 #: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:64 #: ../../../../res/test.php:64 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:45 @@ -933,8 +933,8 @@ msgstr "Error while searching the group RDN" #: ../../../../inc/themes/material-blue/views/config/ldap.inc:201 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:71 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:73 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:47 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:18 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:137 msgid "Grupo" msgstr "Group" @@ -1035,8 +1035,8 @@ msgstr "More Actions" #: ../../../../inc/SP/Controller/Grids/Items.class.php:281 #: ../../../../inc/SP/Controller/Grids/Items.class.php:350 #: ../../../../inc/SP/Controller/Grids/Items.class.php:403 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1161 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1167 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:23 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:29 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:21 @@ -1196,7 +1196,7 @@ msgstr "The maximum size per file is 16MB" #: ../../../../inc/SP/Controller/ConfigActionController.class.php:301 #: ../../../../inc/SP/Controller/ConfigController.class.php:203 #: ../../../../inc/SP/Controller/Grids/Items.class.php:365 -#: ../../../../inc/SP/Controller/MainController.class.php:616 +#: ../../../../inc/SP/Controller/MainController.class.php:608 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldTypes.class.php:90 #: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:13 #: ../../../../inc/themes/material-blue/views/itemshow/profiles.inc:30 @@ -1432,7 +1432,7 @@ msgid "No instalado" msgstr "Not installed" #: ../../../../inc/SP/Controller/ConfigController.class.php:434 -#: ../../../../inc/SP/Controller/MainController.class.php:618 +#: ../../../../inc/SP/Controller/MainController.class.php:610 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:77 msgid "Información" msgstr "Information" @@ -1488,7 +1488,7 @@ msgstr "Search for Events" #: ../../../../inc/SP/Controller/Grids/Items.class.php:131 #: ../../../../inc/SP/Controller/Grids/Items.class.php:593 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:57 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1162 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1168 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:37 #: ../../../../inc/themes/material-blue/views/itemshow/categories.inc:28 #: ../../../../inc/themes/material-blue/views/itemshow/customers.inc:32 @@ -1578,7 +1578,7 @@ msgstr "Edit Field" #: ../../../../inc/SP/Controller/Grids/Items.class.php:261 #: ../../../../inc/SP/Controller/Grids/Items.class.php:262 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:690 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:691 msgid "Eliminar Campo" msgstr "Delete Field" @@ -1604,7 +1604,7 @@ msgstr "View File" #: ../../../../inc/SP/Controller/Grids/Items.class.php:330 #: ../../../../inc/SP/Controller/Grids/Items.class.php:331 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:836 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:837 #: ../../../../inc/themes/material-blue/views/account/files-list.inc:26 msgid "Eliminar Archivo" msgstr "Delete File" @@ -1645,8 +1645,8 @@ msgstr "Accounts (H)" #: ../../../../inc/SP/Controller/Grids/Items.class.php:444 #: ../../../../inc/SP/Controller/Grids/Items.class.php:445 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1002 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 msgid "Restaurar Cuenta" msgstr "Account Restore" @@ -1683,8 +1683,8 @@ msgstr "New User" #: ../../../../inc/SP/Controller/Grids/Items.class.php:529 #: ../../../../inc/SP/Controller/Grids/Items.class.php:530 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1072 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:292 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1073 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:315 msgid "Importar usuarios de LDAP" msgstr "Import users from LDAP" @@ -1701,15 +1701,15 @@ msgstr "Edit User" #: ../../../../inc/SP/Controller/Grids/Items.class.php:562 #: ../../../../inc/SP/Controller/Grids/Items.class.php:563 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:20 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:52 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:58 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:122 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:128 msgid "Cambiar Clave de Usuario" msgstr "Change User's Password" #: ../../../../inc/SP/Controller/Grids/Items.class.php:573 #: ../../../../inc/SP/Controller/Grids/Items.class.php:574 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:263 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:264 msgid "Eliminar Usuario" msgstr "Delete User" @@ -1738,7 +1738,7 @@ msgstr "Edit Group" #: ../../../../inc/SP/Controller/Grids/Items.class.php:647 #: ../../../../inc/SP/Controller/Grids/Items.class.php:648 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:391 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:392 msgid "Eliminar Grupo" msgstr "Delete Group" @@ -1770,7 +1770,7 @@ msgstr "Edit Profile" #: ../../../../inc/SP/Controller/Grids/Items.class.php:729 #: ../../../../inc/SP/Controller/Grids/Items.class.php:730 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:451 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:452 msgid "Eliminar Perfil" msgstr "Delete Profile" @@ -1809,7 +1809,7 @@ msgstr "Edit Authorization" #: ../../../../inc/SP/Controller/Grids/Items.class.php:813 #: ../../../../inc/SP/Controller/Grids/Items.class.php:814 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:642 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:643 msgid "Eliminar Autorización" msgstr "Delete Authorization" @@ -1859,7 +1859,7 @@ msgstr "Renew Link" #: ../../../../inc/SP/Controller/Grids/Items.class.php:893 #: ../../../../inc/SP/Controller/Grids/Items.class.php:894 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:754 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:755 msgid "Eliminar Enlace" msgstr "Delete Link" @@ -1888,7 +1888,7 @@ msgstr "Edit Tag" #: ../../../../inc/SP/Controller/Grids/Items.class.php:965 #: ../../../../inc/SP/Controller/Grids/Items.class.php:966 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:803 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:804 msgid "Eliminar Etiqueta" msgstr "Delete Tag" @@ -1935,8 +1935,9 @@ msgid "Leída" msgstr "Read" #: ../../../../inc/SP/Controller/Grids/Notices.class.php:76 -#: ../../../../inc/SP/Controller/MainController.class.php:315 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:79 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:108 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:116 msgid "Notificaciones" msgstr "Notifications" @@ -1972,321 +1973,321 @@ msgstr "Edit Notification" msgid "Eliminar Notificación" msgstr "Delete Notification" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:228 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 msgid "Crear Usuario" msgstr "Add User" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 msgid "Usuario creado" msgstr "User added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:236 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:237 msgid "No se pudo realizar la petición de cambio de clave." msgstr "Could not perform the password change request." -#: ../../../../inc/SP/Controller/ItemActionController.class.php:243 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 msgid "Actualizar Usuario" msgstr "Update User" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:104 msgid "Usuario actualizado" msgstr "User updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:253 msgid "Usuarios eliminados" msgstr "Users deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:258 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:259 msgid "Usuario eliminado" msgstr "User deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:275 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 msgid "Actualizar Clave Usuario" msgstr "Update User's Password" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:364 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 msgid "Crear Grupo" msgstr "Add Group" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 msgid "Grupo creado" msgstr "Group added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:372 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 msgid "Actualizar Grupo" msgstr "Update Group" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 msgid "Grupo actualizado" msgstr "Group updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:380 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 msgid "Grupos eliminados" msgstr "Groups deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:386 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:387 msgid "Grupo eliminado" msgstr "Group deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:424 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 msgid "Crear Perfil" msgstr "Add Profile" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 msgid "Perfil creado" msgstr "Profile added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:432 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 msgid "Actualizar Perfil" msgstr "Update Profile" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 msgid "Perfil actualizado" msgstr "Profile updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:440 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 msgid "Perfiles eliminados" msgstr "Profiles deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:446 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:447 msgid "Perfil eliminado" msgstr "Profile deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:494 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 msgid "Actualizar Cliente" msgstr "Update Customer" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 msgid "Cliente actualizado" msgstr "Customer updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:502 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 msgid "Clientes eliminados" msgstr "Customers deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:556 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 msgid "Actualizar Categoría" msgstr "Update Category" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 msgid "Categoría actualizada" msgstr "Category updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:566 msgid "Categorías eliminadas" msgstr "Categories deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:614 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 msgid "Crear Autorización" msgstr "Add Authorization" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 msgid "Autorización creada" msgstr "Authorization added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:627 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 msgid "Actualizar Autorización" msgstr "Update Authorization" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 msgid "Autorización actualizada" msgstr "Authorization updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:635 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 msgid "Autorizaciones eliminadas" msgstr "Authorizations deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:639 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:640 msgid "Autorización eliminada" msgstr "Authorization deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:668 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 msgid "Crear Campo" msgstr "Add Field" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 msgid "Campo creado" msgstr "Field added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:675 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 msgid "Actualizar Campo" msgstr "Update Field" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldsUtil.class.php:288 msgid "Campo actualizado" msgstr "Field updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:683 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 msgid "Campos eliminados" msgstr "Fields deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:687 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:688 msgid "Campo eliminado" msgstr "Field deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:722 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 msgid "Crear Enlace" msgstr "Create Link" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 msgid "Enlace creado" msgstr "Link created" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:732 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 #: ../../../../inc/themes/material-blue/views/account/actions.inc:69 msgid "Actualizar Enlace" msgstr "Update Link" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 msgid "Enlace actualizado" msgstr "Link updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:742 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:743 msgid "Enlaces eliminados" msgstr "Links deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:748 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 msgid "Enlace eliminado" msgstr "Link deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:779 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 msgid "Crear Etiqueta" msgstr "Add Tag" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 #: ../../../../inc/SP/Import/ImportBase.class.php:226 msgid "Etiqueta creada" msgstr "Tag added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:786 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 msgid "Actualizar Etiqueta" msgstr "Update Tag" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 msgid "Etiqueta actualizada" msgstr "Tag updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:794 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 msgid "Etiquetas eliminadas" msgstr "Tags deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:800 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:801 msgid "Etiqueta eliminada" msgstr "Tag removed" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:827 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:828 msgid "Archivos eliminados" msgstr "Files deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:866 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:874 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:881 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 msgid "Actualizar Plugin" msgstr "Update Plugin" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 msgid "Plugin habilitado" msgstr "Plugin enabled" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 msgid "Plugin deshabilitado" msgstr "Plugin disabled" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 msgid "Plugin restablecido" msgstr "Plugin reset" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:932 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 msgid "Actualizar Cuenta" msgstr "Update Account" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 msgid "Cuenta actualizada" msgstr "Account updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 msgid "Cuenta restaurada" msgstr "Account restored" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:972 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1022 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:973 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1023 msgid "Cuentas eliminadas" msgstr "Accounts removed" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1019 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1020 msgid "Eliminar Cuenta (H)" msgstr "Delete Account (H)" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1053 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1054 msgid "Favorito añadido" msgstr "Favorite added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1058 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1059 msgid "Favorito eliminado" msgstr "Favorite deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1075 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 msgid "Importación de usuarios de LDAP realizada" msgstr "LDAP users import finished" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1076 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1082 msgid "Usuarios importados" msgstr "Imported users" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1087 msgid "Error al importar usuarios de LDAP" msgstr "Error while importing the LDAP users" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1099 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1105 msgid "Notificación leída" msgstr "Notification read" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1107 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1113 msgid "Notificación creada" msgstr "Notification created" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1115 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 msgid "Notificación actualizada" msgstr "Notification updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1127 msgid "Notificaciones eliminadas" msgstr "Notifications deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1125 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1131 msgid "Notificación eliminada" msgstr "Notification deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1143 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1149 #: ../../../../inc/SP/Forms/NoticeForm.class.php:95 msgid "Es necesaria una descripción" msgstr "A description is needed" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1158 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1164 msgid "Solicitud de Modificación de Cuenta" msgstr "Request for Account Modification" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1159 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1165 msgid "Solicitante" msgstr "Requester" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1177 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1183 msgid "Solicitud enviada por correo" msgstr "Request sent by email" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1179 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1185 msgid "Solicitud no enviada por correo" msgstr "Request not sent by email" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1188 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 msgid "Solicitud" msgstr "Request" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1200 msgid "Solicitud realizada" msgstr "Request done" @@ -2457,58 +2458,58 @@ msgstr "Items and Customizations" msgid "Registro de Eventos" msgstr "Event Log" -#: ../../../../inc/SP/Controller/MainController.class.php:368 +#: ../../../../inc/SP/Controller/MainController.class.php:360 #: ../../../../inc/SP/Core/Init.class.php:140 msgid "Versión de PHP requerida >= " msgstr "Required PHP version >=" -#: ../../../../inc/SP/Controller/MainController.class.php:369 +#: ../../../../inc/SP/Controller/MainController.class.php:361 #: ../../../../inc/SP/Core/Init.class.php:141 msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" msgstr "Please update the PHP version to run sysPass" -#: ../../../../inc/SP/Controller/MainController.class.php:379 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#: ../../../../inc/SP/Controller/MainController.class.php:371 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:288 msgid "Módulo no disponible" msgstr "Module unavailable" -#: ../../../../inc/SP/Controller/MainController.class.php:380 +#: ../../../../inc/SP/Controller/MainController.class.php:372 msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Without this module the application could not run correctly" -#: ../../../../inc/SP/Controller/MainController.class.php:388 +#: ../../../../inc/SP/Controller/MainController.class.php:380 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)" -#: ../../../../inc/SP/Controller/MainController.class.php:389 +#: ../../../../inc/SP/Controller/MainController.class.php:381 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" -#: ../../../../inc/SP/Controller/MainController.class.php:395 +#: ../../../../inc/SP/Controller/MainController.class.php:387 msgid "No se encuentra el generador de números aleatorios." msgstr "Cannot find random number generator." -#: ../../../../inc/SP/Controller/MainController.class.php:396 +#: ../../../../inc/SP/Controller/MainController.class.php:388 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." -#: ../../../../inc/SP/Controller/MainController.class.php:493 +#: ../../../../inc/SP/Controller/MainController.class.php:485 msgid "Descargar nueva versión" msgstr "Download new version" -#: ../../../../inc/SP/Controller/MainController.class.php:505 +#: ../../../../inc/SP/Controller/MainController.class.php:497 msgid "Avisos de sysPass" msgstr "sysPass Notices" -#: ../../../../inc/SP/Controller/MainController.class.php:608 +#: ../../../../inc/SP/Controller/MainController.class.php:600 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:75 msgid "Enlace visualizado" msgstr "Link viewed" -#: ../../../../inc/SP/Controller/MainController.class.php:611 +#: ../../../../inc/SP/Controller/MainController.class.php:603 msgid "Agente" msgstr "Agent" @@ -3734,20 +3735,20 @@ msgstr "You will receive a confirmation email shortly." msgid "Nuevo usuario de LDAP" msgstr "New LDAP user" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:185 -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:214 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:186 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:215 msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Error while updating the user's password in DB" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:65 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:66 msgid "Sincronización LDAP" msgstr "LDAP synchronization" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:115 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:120 msgid "No se encontraron objetos para sincronizar" msgstr "There aren't any objects to synchronize" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:121 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:126 msgid "Sincronización finalizada" msgstr "Synchronization finished" @@ -4152,12 +4153,12 @@ msgid "Limpiar Selección" msgstr "Clear Selection" #: ../../../../js/strings.js.php:77 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Favoritos" msgstr "Show Favorites" #: ../../../../js/strings.js.php:78 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Todos" msgstr "Show All" @@ -4229,7 +4230,7 @@ msgstr "Select date" #: ../../../../inc/themes/material-blue/views/config/general.inc:29 #: ../../../../inc/themes/material-blue/views/config/import.inc:89 #: ../../../../inc/themes/material-blue/views/config/info.inc:145 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:283 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:306 #: ../../../../inc/themes/material-blue/views/config/mail.inc:150 #: ../../../../inc/themes/material-blue/views/config/wiki.inc:276 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:137 @@ -4481,19 +4482,19 @@ msgstr "Get the private accounts for the current user" msgid "Búsqueda global" msgstr "Global search" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:71 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:73 msgid "Filtrar Favoritos" msgstr "Favorites Filtering" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:85 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:87 msgid "Cuentas por página" msgstr "Accounts per page" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:91 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:93 msgid "Más Filtros" msgstr "More Filters" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:96 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:98 msgid "Seleccionar Etiqueta" msgstr "Select Tag" @@ -5304,7 +5305,17 @@ msgid "" msgstr "Sets the default profile for the newly created LDAP users." #: ../../../../inc/themes/material-blue/views/config/ldap.inc:255 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:258 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +msgid "Atributo Login" +msgstr "Login Attribute" + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:260 +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." + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:278 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:281 msgid "Resultados" msgstr "Results" @@ -5735,50 +5746,50 @@ msgstr "Last Access" msgid "Fecha Clave Maestra" msgstr "Master Password Date" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:11 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:75 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:78 -msgid "Salir" -msgstr "Sign Out" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:25 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:62 -msgid "Preferencias de usuario" -msgstr "User preferences" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:34 -#, php-format -msgid "Hay %d notificaciones pendientes" -msgstr "There are %d unread notifications" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:41 -msgid "No hay no hay notificaciones pendientes" -msgstr "There aren't any pending notifications" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 msgid "Indica si la conexión utiliza HTTPS." msgstr "Tells whether the connection uses HTTPS or not." -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 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." -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:79 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:88 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:43 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:158 msgid "Demo" msgstr "Demo" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:90 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:54 msgid "Ayuda :: FAQ :: Changelog" msgstr "Help :: FAQ :: Changelog" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:94 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:58 msgid "Un proyecto de cygnux.org" msgstr "A cygnux.org project" +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:39 +#, php-format +msgid "Hay %d notificaciones pendientes" +msgstr "There are %d unread notifications" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:48 +msgid "No hay no hay notificaciones pendientes" +msgstr "There aren't any pending notifications" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:73 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:132 +msgid "Preferencias de usuario" +msgstr "User preferences" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:77 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:145 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:148 +msgid "Salir" +msgstr "Sign Out" + #: ../../../../inc/themes/material-blue/views/main/body-start.inc:4 msgid "Javascript es necesario para el correcto funcionamiento" msgstr "Javascript is needed in order to run correctly" diff --git a/inc/locales/fr_FR/LC_MESSAGES/messages.mo b/inc/locales/fr_FR/LC_MESSAGES/messages.mo index 8255c1958f06b60184a7413a94237b4a3c1225f8..c9ee9e60200c9e35b0d904cabfcda9c87592ab09 100644 GIT binary patch delta 28 kcmezQoAu{!)(uk6*-aIUjI9hzCM!NyWHjCE{CwLq0J**l9smFU delta 28 kcmezQoAu{!)(uk6*^L#9jI2yeCo4WzWHjFF{CwLq0J+Qz9{>OV diff --git a/inc/locales/fr_FR/LC_MESSAGES/messages.po b/inc/locales/fr_FR/LC_MESSAGES/messages.po index d32482b6..c84b7595 100644 --- a/inc/locales/fr_FR/LC_MESSAGES/messages.po +++ b/inc/locales/fr_FR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-13 22:55+0100\n" -"PO-Revision-Date: 2017-03-13 23:04+0100\n" +"POT-Creation-Date: 2017-03-15 23:04+0100\n" +"PO-Revision-Date: 2017-03-15 23:04+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: \n" "Language: fr_FR\n" @@ -62,7 +62,7 @@ msgstr "Fichier invalide" #: ../../../../ajax/ajax_filesMgmt.php:104 #: ../../../../ajax/ajax_filesMgmt.php:166 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:842 #: ../../../../inc/SP/Core/Upgrade/Upgrade.class.php:437 #: ../../../../inc/SP/Mgmt/Files/File.class.php:97 #: ../../../../inc/themes/material-blue/views/config/import.inc:66 @@ -123,13 +123,13 @@ msgstr "ID" #: ../../../../inc/SP/Api/SyspassApi.class.php:85 #: ../../../../inc/SP/Controller/Grids/Items.class.php:280 #: ../../../../inc/SP/Controller/Grids/Items.class.php:832 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:839 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1160 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1166 #: ../../../../inc/SP/Controller/ItemShowController.class.php:530 -#: ../../../../inc/SP/Controller/MainController.class.php:609 +#: ../../../../inc/SP/Controller/MainController.class.php:601 #: ../../../../inc/SP/Import/ImportBase.class.php:165 #: ../../../../inc/SP/Mgmt/Files/File.class.php:96 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:77 @@ -142,9 +142,9 @@ msgstr "Compte" #: ../../../../inc/SP/Controller/Grids/Items.class.php:206 #: ../../../../inc/SP/Controller/Grids/Items.class.php:283 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:55 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 #: ../../../../inc/SP/Controller/LoginController.class.php:446 #: ../../../../inc/SP/Controller/LoginController.class.php:473 #: ../../../../inc/SP/Controller/LoginController.class.php:515 @@ -162,7 +162,7 @@ msgid "Tipo" msgstr "Type" #: ../../../../ajax/ajax_filesMgmt.php:204 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:833 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:834 msgid "Archivo eliminado" msgstr "Fichier supprimé" @@ -219,18 +219,18 @@ msgid "Modificar Clave Usuario" msgstr "Modifier le Mot de Passe Utilisateur" #: ../../../../ajax/ajax_passReset.php:99 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 msgid "Clave actualizada" msgstr "Mot de passe actualisé" #: ../../../../ajax/ajax_passReset.php:100 #: ../../../../inc/SP/Auth/Database/Database.class.php:92 #: ../../../../inc/SP/Controller/Grids/Items.class.php:474 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:247 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:268 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:279 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:105 #: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:320 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:37 @@ -365,7 +365,7 @@ msgstr "Erreur à la mise à jour des mots de passe des comptes" #: ../../../../inc/SP/Account/AccountCrypt.class.php:271 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:165 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:291 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1077 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1083 msgid "Errores" msgstr "Erreurs" @@ -473,18 +473,18 @@ msgstr "Voir Mot de Passe" #: ../../../../inc/SP/Api/SyspassApi.class.php:319 #: ../../../../inc/SP/Api/SyspassApi.class.php:372 #: ../../../../inc/SP/Api/SyspassApi.class.php:408 -#: ../../../../inc/SP/Controller/MainController.class.php:610 +#: ../../../../inc/SP/Controller/MainController.class.php:602 #: ../../../../inc/SP/Util/Wiki/DokuWikiApiBase.class.php:197 msgid "Origen" msgstr "Origine" #: ../../../../inc/SP/Api/SyspassApi.class.php:189 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:922 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 msgid "Crear Cuenta" msgstr "Ajouter un Compte" #: ../../../../inc/SP/Api/SyspassApi.class.php:190 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 #: ../../../../inc/SP/Import/ImportBase.class.php:158 msgid "Cuenta creada" msgstr "Compte ajouté" @@ -506,39 +506,39 @@ msgstr "Compte ajouté" #: ../../../../inc/SP/Controller/Grids/Items.class.php:592 #: ../../../../inc/SP/Controller/Grids/Items.class.php:666 #: ../../../../inc/SP/Controller/Grids/Items.class.php:912 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:266 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:394 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:454 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:516 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:579 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:806 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:975 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1025 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:367 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:375 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:395 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:427 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:435 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:455 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:489 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:497 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:517 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:551 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:559 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:580 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:671 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:678 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:782 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:789 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:807 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:869 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:877 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:884 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:925 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:935 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:944 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:953 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:976 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:980 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1005 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1026 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1030 #: ../../../../inc/SP/Core/Plugin/PluginDataStore.class.php:77 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:12 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:9 @@ -570,25 +570,25 @@ msgstr "Compte introuvable" #: ../../../../inc/SP/Controller/Grids/Items.class.php:384 #: ../../../../inc/SP/Controller/Grids/Items.class.php:454 #: ../../../../inc/SP/Controller/Grids/Items.class.php:455 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:969 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:970 #: ../../../../inc/SP/Core/Acl.class.php:192 #: ../../../../inc/themes/material-blue/views/account/actions.inc:39 msgid "Eliminar Cuenta" msgstr "Supprimer Compte" #: ../../../../inc/SP/Api/SyspassApi.class.php:228 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:978 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1028 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 msgid "Cuenta eliminada" msgstr "Compte supprimé" #: ../../../../inc/SP/Api/SyspassApi.class.php:280 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:548 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 msgid "Crear Categoría" msgstr "Ajouter une Catégorie" #: ../../../../inc/SP/Api/SyspassApi.class.php:281 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 #: ../../../../inc/SP/Import/ImportBase.class.php:182 msgid "Categoría creada" msgstr "Catégorie ajoutée" @@ -601,23 +601,23 @@ msgstr "Catégorie introuvable" #: ../../../../inc/SP/Api/SyspassApi.class.php:316 #: ../../../../inc/SP/Controller/Grids/Items.class.php:111 #: ../../../../inc/SP/Controller/Grids/Items.class.php:112 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:576 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:577 #: ../../../../inc/SP/Core/Acl.class.php:200 msgid "Eliminar Categoría" msgstr "Supprimer Catégorie" #: ../../../../inc/SP/Api/SyspassApi.class.php:317 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:571 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:572 msgid "Categoría eliminada" msgstr "Catégorie supprimée" #: ../../../../inc/SP/Api/SyspassApi.class.php:369 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:486 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 msgid "Crear Cliente" msgstr "Ajouter un Client" #: ../../../../inc/SP/Api/SyspassApi.class.php:370 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 #: ../../../../inc/SP/Import/ImportBase.class.php:204 msgid "Cliente creado" msgstr "Client ajouté" @@ -630,13 +630,13 @@ msgstr "Client introuvable" #: ../../../../inc/SP/Api/SyspassApi.class.php:405 #: ../../../../inc/SP/Controller/Grids/Items.class.php:185 #: ../../../../inc/SP/Controller/Grids/Items.class.php:186 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:513 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:514 #: ../../../../inc/SP/Core/Acl.class.php:205 msgid "Eliminar Cliente" msgstr "Supprimer Client" #: ../../../../inc/SP/Api/SyspassApi.class.php:406 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:508 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:509 msgid "Cliente eliminado" msgstr "Client supprimé" @@ -656,7 +656,7 @@ msgstr "Erreur pendant la sauvegarde" #: ../../../../inc/SP/Controller/ChecksController.class.php:142 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:699 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:722 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1084 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1090 #: ../../../../inc/SP/Import/Import.class.php:115 msgid "Revise el registro de eventos para más detalles" msgstr "Veuillez consulter le journal des évènements pour plus de détails" @@ -832,7 +832,7 @@ msgid "Conexión a LDAP correcta" msgstr "Connexion LDAP OK" #: ../../../../inc/SP/Auth/Ldap/LdapBase.class.php:133 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:72 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:75 msgid "Objetos encontrados" msgstr "Objets trouvés" @@ -871,11 +871,11 @@ msgstr "Erreur pendant la recherche de l'utilisateur dans l'annuaire LDAP" #: ../../../../inc/SP/Controller/AccountSearchController.class.php:368 #: ../../../../inc/SP/Controller/Grids/Items.class.php:748 #: ../../../../inc/SP/Controller/Grids/Items.class.php:835 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:617 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:630 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:727 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:737 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:752 #: ../../../../inc/SP/Controller/ItemShowController.class.php:408 #: ../../../../inc/SP/Controller/LoginController.class.php:261 #: ../../../../inc/SP/Controller/LoginController.class.php:368 @@ -884,7 +884,7 @@ msgstr "Erreur pendant la recherche de l'utilisateur dans l'annuaire LDAP" #: ../../../../inc/SP/Controller/LoginController.class.php:534 #: ../../../../inc/SP/Core/Init.class.php:615 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:78 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:104 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:108 #: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:64 #: ../../../../res/test.php:64 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:45 @@ -931,8 +931,8 @@ msgstr "Erreur pendant la recherche RDN du groupe" #: ../../../../inc/themes/material-blue/views/config/ldap.inc:201 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:71 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:73 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:47 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:18 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:137 msgid "Grupo" msgstr "Groupe" @@ -1033,8 +1033,8 @@ msgstr "Plus d'Actions" #: ../../../../inc/SP/Controller/Grids/Items.class.php:281 #: ../../../../inc/SP/Controller/Grids/Items.class.php:350 #: ../../../../inc/SP/Controller/Grids/Items.class.php:403 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1161 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1167 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:23 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:29 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:21 @@ -1194,7 +1194,7 @@ msgstr "La taille maximale par fichier est de 16 MB" #: ../../../../inc/SP/Controller/ConfigActionController.class.php:301 #: ../../../../inc/SP/Controller/ConfigController.class.php:203 #: ../../../../inc/SP/Controller/Grids/Items.class.php:365 -#: ../../../../inc/SP/Controller/MainController.class.php:616 +#: ../../../../inc/SP/Controller/MainController.class.php:608 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldTypes.class.php:90 #: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:13 #: ../../../../inc/themes/material-blue/views/itemshow/profiles.inc:30 @@ -1429,7 +1429,7 @@ msgid "No instalado" msgstr "Non installé" #: ../../../../inc/SP/Controller/ConfigController.class.php:434 -#: ../../../../inc/SP/Controller/MainController.class.php:618 +#: ../../../../inc/SP/Controller/MainController.class.php:610 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:77 msgid "Información" msgstr "Information" @@ -1485,7 +1485,7 @@ msgstr "Recherche d'Évènements" #: ../../../../inc/SP/Controller/Grids/Items.class.php:131 #: ../../../../inc/SP/Controller/Grids/Items.class.php:593 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:57 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1162 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1168 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:37 #: ../../../../inc/themes/material-blue/views/itemshow/categories.inc:28 #: ../../../../inc/themes/material-blue/views/itemshow/customers.inc:32 @@ -1575,7 +1575,7 @@ msgstr "Éditer Champ" #: ../../../../inc/SP/Controller/Grids/Items.class.php:261 #: ../../../../inc/SP/Controller/Grids/Items.class.php:262 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:690 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:691 msgid "Eliminar Campo" msgstr "Supprimer Champ" @@ -1601,7 +1601,7 @@ msgstr "Voir Fichier" #: ../../../../inc/SP/Controller/Grids/Items.class.php:330 #: ../../../../inc/SP/Controller/Grids/Items.class.php:331 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:836 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:837 #: ../../../../inc/themes/material-blue/views/account/files-list.inc:26 msgid "Eliminar Archivo" msgstr "Supprimer Fichier" @@ -1642,8 +1642,8 @@ msgstr "Comptes (H)" #: ../../../../inc/SP/Controller/Grids/Items.class.php:444 #: ../../../../inc/SP/Controller/Grids/Items.class.php:445 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1002 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 msgid "Restaurar Cuenta" msgstr "Restaurer Compte" @@ -1680,8 +1680,8 @@ msgstr "Nouvel Utilisateur" #: ../../../../inc/SP/Controller/Grids/Items.class.php:529 #: ../../../../inc/SP/Controller/Grids/Items.class.php:530 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1072 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:292 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1073 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:315 msgid "Importar usuarios de LDAP" msgstr "Importer des utilisateurs depuis LDAP" @@ -1698,15 +1698,15 @@ msgstr "Éditer Utilisateur" #: ../../../../inc/SP/Controller/Grids/Items.class.php:562 #: ../../../../inc/SP/Controller/Grids/Items.class.php:563 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:20 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:52 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:58 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:122 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:128 msgid "Cambiar Clave de Usuario" msgstr "Changer Mot de Passe Utilisateur" #: ../../../../inc/SP/Controller/Grids/Items.class.php:573 #: ../../../../inc/SP/Controller/Grids/Items.class.php:574 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:263 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:264 msgid "Eliminar Usuario" msgstr "Supprimer Utilisateur" @@ -1735,7 +1735,7 @@ msgstr "Éditer Groupe" #: ../../../../inc/SP/Controller/Grids/Items.class.php:647 #: ../../../../inc/SP/Controller/Grids/Items.class.php:648 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:391 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:392 msgid "Eliminar Grupo" msgstr "Supprimer Groupe" @@ -1767,7 +1767,7 @@ msgstr "Éditer Profil" #: ../../../../inc/SP/Controller/Grids/Items.class.php:729 #: ../../../../inc/SP/Controller/Grids/Items.class.php:730 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:451 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:452 msgid "Eliminar Perfil" msgstr "Supprimer Profil" @@ -1806,7 +1806,7 @@ msgstr "Éditer Autorisation" #: ../../../../inc/SP/Controller/Grids/Items.class.php:813 #: ../../../../inc/SP/Controller/Grids/Items.class.php:814 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:642 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:643 msgid "Eliminar Autorización" msgstr "Supprimer Autorisation" @@ -1856,7 +1856,7 @@ msgstr "Renouveler Lien" #: ../../../../inc/SP/Controller/Grids/Items.class.php:893 #: ../../../../inc/SP/Controller/Grids/Items.class.php:894 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:754 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:755 msgid "Eliminar Enlace" msgstr "Supprimer Lien" @@ -1885,7 +1885,7 @@ msgstr "Éditer Tag" #: ../../../../inc/SP/Controller/Grids/Items.class.php:965 #: ../../../../inc/SP/Controller/Grids/Items.class.php:966 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:803 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:804 msgid "Eliminar Etiqueta" msgstr "Supprimer Tag" @@ -1932,8 +1932,9 @@ msgid "Leída" msgstr "Lire" #: ../../../../inc/SP/Controller/Grids/Notices.class.php:76 -#: ../../../../inc/SP/Controller/MainController.class.php:315 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:79 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:108 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:116 msgid "Notificaciones" msgstr "Notifications" @@ -1969,321 +1970,321 @@ msgstr "Éditer Notification" msgid "Eliminar Notificación" msgstr "Supprimer Notification" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:228 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 msgid "Crear Usuario" msgstr "Ajouter un Utilisateur" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 msgid "Usuario creado" msgstr "Utilisateur ajouté" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:236 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:237 msgid "No se pudo realizar la petición de cambio de clave." msgstr "Impossible d'effectuer la requête de changement de mot de passe" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:243 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 msgid "Actualizar Usuario" msgstr "Mettre à jour l'Utilisateur" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:104 msgid "Usuario actualizado" msgstr "Utilisateur actualisé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:253 msgid "Usuarios eliminados" msgstr "Utilisateurs supprimés" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:258 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:259 msgid "Usuario eliminado" msgstr "Utilisateur supprimé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:275 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 msgid "Actualizar Clave Usuario" msgstr "Mettre à jour le Mot de Passe Utilisateur" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:364 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 msgid "Crear Grupo" msgstr "Ajouter un Groupe" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 msgid "Grupo creado" msgstr "Groupe ajouté" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:372 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 msgid "Actualizar Grupo" msgstr "Mettre à jour le Groupe" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 msgid "Grupo actualizado" msgstr "Groupe actualisé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:380 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 msgid "Grupos eliminados" msgstr "Groupes supprimés" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:386 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:387 msgid "Grupo eliminado" msgstr "Groupe supprimé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:424 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 msgid "Crear Perfil" msgstr "Ajouter un Profil" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 msgid "Perfil creado" msgstr "Profil ajouté" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:432 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 msgid "Actualizar Perfil" msgstr "Mettre à jour le Profil" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 msgid "Perfil actualizado" msgstr "Profil actualisé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:440 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 msgid "Perfiles eliminados" msgstr "Profils supprimés" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:446 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:447 msgid "Perfil eliminado" msgstr "Profil supprimé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:494 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 msgid "Actualizar Cliente" msgstr "Mettre à jour le Client" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 msgid "Cliente actualizado" msgstr "Client actualisé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:502 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 msgid "Clientes eliminados" msgstr "Utilisateurs supprimés" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:556 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 msgid "Actualizar Categoría" msgstr "Mettre à jour la Catégorie" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 msgid "Categoría actualizada" msgstr "Catégorie actualisée" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:566 msgid "Categorías eliminadas" msgstr "Catégories supprimées" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:614 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 msgid "Crear Autorización" msgstr "Ajouter une Autorisation" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 msgid "Autorización creada" msgstr "Autorisation ajoutée" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:627 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 msgid "Actualizar Autorización" msgstr "Mise à jour de l'autorisation" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 msgid "Autorización actualizada" msgstr "Autorisation mise à jour" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:635 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 msgid "Autorizaciones eliminadas" msgstr "Autorisations supprimées" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:639 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:640 msgid "Autorización eliminada" msgstr "Autorisation supprimée" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:668 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 msgid "Crear Campo" msgstr "Ajouter un Champ" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 msgid "Campo creado" msgstr "Champ ajouté" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:675 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 msgid "Actualizar Campo" msgstr "Mettre à jour un Champ" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldsUtil.class.php:288 msgid "Campo actualizado" msgstr "Champ mis à jour" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:683 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 msgid "Campos eliminados" msgstr "Champs supprimés" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:687 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:688 msgid "Campo eliminado" msgstr "Champ supprimé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:722 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 msgid "Crear Enlace" msgstr "Ajouter un Lien" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 msgid "Enlace creado" msgstr "Lien créé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:732 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 #: ../../../../inc/themes/material-blue/views/account/actions.inc:69 msgid "Actualizar Enlace" msgstr "Lien mis à jour" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 msgid "Enlace actualizado" msgstr "Lien actualisé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:742 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:743 msgid "Enlaces eliminados" msgstr "Liens supprimés" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:748 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 msgid "Enlace eliminado" msgstr "Lien supprimé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:779 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 msgid "Crear Etiqueta" msgstr "Ajouter un Tag" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 #: ../../../../inc/SP/Import/ImportBase.class.php:226 msgid "Etiqueta creada" msgstr "Tag ajouté" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:786 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 msgid "Actualizar Etiqueta" msgstr "Mettre à jour un Tag" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 msgid "Etiqueta actualizada" msgstr "Tag mis à jour" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:794 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 msgid "Etiquetas eliminadas" msgstr "Tags supprimés" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:800 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:801 msgid "Etiqueta eliminada" msgstr "Tag supprimé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:827 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:828 msgid "Archivos eliminados" msgstr "Fichiers supprimés" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:866 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:874 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:881 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 msgid "Actualizar Plugin" msgstr "Mettre à jour le Plugin" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 msgid "Plugin habilitado" msgstr "Plugin activé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 msgid "Plugin deshabilitado" msgstr "Plugin désactivé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 msgid "Plugin restablecido" msgstr "Plugin ré-initialisé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:932 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 msgid "Actualizar Cuenta" msgstr "Actualiser Compte" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 msgid "Cuenta actualizada" msgstr "Compte actualisé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 msgid "Cuenta restaurada" msgstr "Compte restauré" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:972 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1022 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:973 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1023 msgid "Cuentas eliminadas" msgstr "Comptes supprimés" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1019 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1020 msgid "Eliminar Cuenta (H)" msgstr "Supprimer Compte (H)" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1053 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1054 msgid "Favorito añadido" msgstr "Favoris ajouté" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1058 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1059 msgid "Favorito eliminado" msgstr "Favoris supprimé" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1075 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 msgid "Importación de usuarios de LDAP realizada" msgstr "Importation utilisateur LDAP terminée" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1076 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1082 msgid "Usuarios importados" msgstr "Utilisateurs importés" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1087 msgid "Error al importar usuarios de LDAP" msgstr "Erreur durant l'importation LDAP" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1099 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1105 msgid "Notificación leída" msgstr "Notification lue" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1107 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1113 msgid "Notificación creada" msgstr "Notification créée" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1115 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 msgid "Notificación actualizada" msgstr "Notification mise à jour" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1127 msgid "Notificaciones eliminadas" msgstr "Notifications supprimées" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1125 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1131 msgid "Notificación eliminada" msgstr "Notification supprimée" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1143 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1149 #: ../../../../inc/SP/Forms/NoticeForm.class.php:95 msgid "Es necesaria una descripción" msgstr "Description requise" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1158 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1164 msgid "Solicitud de Modificación de Cuenta" msgstr "Demande de Modification de Compte" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1159 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1165 msgid "Solicitante" msgstr "Demandeur" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1177 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1183 msgid "Solicitud enviada por correo" msgstr "Requête envoyée par courriel" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1179 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1185 msgid "Solicitud no enviada por correo" msgstr "Requête non envoyée par courriel" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1188 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 msgid "Solicitud" msgstr "Requête" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1200 msgid "Solicitud realizada" msgstr "Requête términée" @@ -2456,12 +2457,12 @@ msgstr "Eléments et personnalisation" msgid "Registro de Eventos" msgstr "Journal d'évènements" -#: ../../../../inc/SP/Controller/MainController.class.php:368 +#: ../../../../inc/SP/Controller/MainController.class.php:360 #: ../../../../inc/SP/Core/Init.class.php:140 msgid "Versión de PHP requerida >= " msgstr "Version PHP requise >=" -#: ../../../../inc/SP/Controller/MainController.class.php:369 +#: ../../../../inc/SP/Controller/MainController.class.php:361 #: ../../../../inc/SP/Core/Init.class.php:141 msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" @@ -2469,51 +2470,51 @@ msgstr "" "Mettez à niveau votre version de PHP afin que l'application fonctionne " "correctement" -#: ../../../../inc/SP/Controller/MainController.class.php:379 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#: ../../../../inc/SP/Controller/MainController.class.php:371 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:288 msgid "Módulo no disponible" msgstr "Module indisponible" -#: ../../../../inc/SP/Controller/MainController.class.php:380 +#: ../../../../inc/SP/Controller/MainController.class.php:372 msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Sans ce module, l'application ne peut pas fonctionner correctement." -#: ../../../../inc/SP/Controller/MainController.class.php:388 +#: ../../../../inc/SP/Controller/MainController.class.php:380 msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" msgstr "" "Cette version de PHP est vulnerable aux attaques NULL Byte (CVE-2006-7243)" -#: ../../../../inc/SP/Controller/MainController.class.php:389 +#: ../../../../inc/SP/Controller/MainController.class.php:381 msgid "Actualice la versión de PHP para usar sysPass de forma segura" msgstr "" "Mettez à jour votre version de PHP afin d'utiliser sysPass de manière " "sécurisée" -#: ../../../../inc/SP/Controller/MainController.class.php:395 +#: ../../../../inc/SP/Controller/MainController.class.php:387 msgid "No se encuentra el generador de números aleatorios." msgstr "Impossible de trouver le générateur de nombres aléatoires." -#: ../../../../inc/SP/Controller/MainController.class.php:396 +#: ../../../../inc/SP/Controller/MainController.class.php:388 msgid "" "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" msgstr "" "Sans cette fonction, un attaquant pourrait prendre votre compte sur un " "changement de mot de passe" -#: ../../../../inc/SP/Controller/MainController.class.php:493 +#: ../../../../inc/SP/Controller/MainController.class.php:485 msgid "Descargar nueva versión" msgstr "Télécharger nouvelle version" -#: ../../../../inc/SP/Controller/MainController.class.php:505 +#: ../../../../inc/SP/Controller/MainController.class.php:497 msgid "Avisos de sysPass" msgstr "Notifications de sysPass" -#: ../../../../inc/SP/Controller/MainController.class.php:608 +#: ../../../../inc/SP/Controller/MainController.class.php:600 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:75 msgid "Enlace visualizado" msgstr "Lien visualisé" -#: ../../../../inc/SP/Controller/MainController.class.php:611 +#: ../../../../inc/SP/Controller/MainController.class.php:603 msgid "Agente" msgstr "Agent" @@ -3751,22 +3752,22 @@ msgstr "Vous recevrez un courriel de confirmation sous peu." msgid "Nuevo usuario de LDAP" msgstr "Nouvel utilisateur LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:185 -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:214 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:186 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:215 msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "" "Erreur pendant l'actualisation du mot de passe utilisateur dans la base de " "données" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:65 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:66 msgid "Sincronización LDAP" msgstr "Synchronisation LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:115 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:120 msgid "No se encontraron objetos para sincronizar" msgstr "Il n'y a pas d'objet à synchroniser" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:121 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:126 msgid "Sincronización finalizada" msgstr "Synchronisation terminée" @@ -4172,12 +4173,12 @@ msgid "Limpiar Selección" msgstr "Effacer la Sélection" #: ../../../../js/strings.js.php:77 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Favoritos" msgstr "Montrer les Favoris" #: ../../../../js/strings.js.php:78 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Todos" msgstr "Montrer Tous" @@ -4255,7 +4256,7 @@ msgstr "Sélectionner une date" #: ../../../../inc/themes/material-blue/views/config/general.inc:29 #: ../../../../inc/themes/material-blue/views/config/import.inc:89 #: ../../../../inc/themes/material-blue/views/config/info.inc:145 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:283 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:306 #: ../../../../inc/themes/material-blue/views/config/mail.inc:150 #: ../../../../inc/themes/material-blue/views/config/wiki.inc:276 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:137 @@ -4510,19 +4511,19 @@ msgstr "Rechercher les comptes privés pour l'utilisateur courant." msgid "Búsqueda global" msgstr "Recherche globale" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:71 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:73 msgid "Filtrar Favoritos" msgstr "Filtrer les Favoris" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:85 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:87 msgid "Cuentas por página" msgstr "Comptes par page" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:91 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:93 msgid "Más Filtros" msgstr "Plus de Filtres" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:96 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:98 msgid "Seleccionar Etiqueta" msgstr "Sélectionner un Tag" @@ -5357,7 +5358,19 @@ msgid "" msgstr "Définis le profil par défaut pour les nouveaux utilisateurs LDAP." #: ../../../../inc/themes/material-blue/views/config/ldap.inc:255 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:258 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#, fuzzy +msgid "Atributo Login" +msgstr "Login Attribute" + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:260 +#, fuzzy +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." + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:278 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:281 msgid "Resultados" msgstr "Résultats" @@ -5790,31 +5803,11 @@ msgstr "Dernier Accès" msgid "Fecha Clave Maestra" msgstr "Date du Mot de Passe Maître" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:11 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:75 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:78 -msgid "Salir" -msgstr "Se déconnecter" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:25 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:62 -msgid "Preferencias de usuario" -msgstr "Préférences de l'utilisateur" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:34 -#, php-format -msgid "Hay %d notificaciones pendientes" -msgstr "Il y a %d de notification(s) non-lue(s)" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:41 -msgid "No hay no hay notificaciones pendientes" -msgstr "Il n'y a pas de notifications en attente" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 msgid "Indica si la conexión utiliza HTTPS." msgstr "Indique si la connexion utilise le protocol HTTPS." -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 msgid "" "Las claves de formularios enviados se encriptan mediante PKI, el resto de " "datos no." @@ -5822,19 +5815,39 @@ msgstr "" "Les mots de passe envoyés à partir du formulaire sont chiffrés avec PKI, les " "autres données ne le sont pas." -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:79 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:88 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:43 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:158 msgid "Demo" msgstr "Demo" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:90 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:54 msgid "Ayuda :: FAQ :: Changelog" msgstr "Aide :: FAQ :: Changelog" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:94 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:58 msgid "Un proyecto de cygnux.org" msgstr "Un projet cygnux.org" +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:39 +#, php-format +msgid "Hay %d notificaciones pendientes" +msgstr "Il y a %d de notification(s) non-lue(s)" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:48 +msgid "No hay no hay notificaciones pendientes" +msgstr "Il n'y a pas de notifications en attente" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:73 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:132 +msgid "Preferencias de usuario" +msgstr "Préférences de l'utilisateur" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:77 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:145 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:148 +msgid "Salir" +msgstr "Se déconnecter" + #: ../../../../inc/themes/material-blue/views/main/body-start.inc:4 msgid "Javascript es necesario para el correcto funcionamiento" msgstr "Javascript est requis pour fonctionner correctement" diff --git a/inc/locales/hu_HU/LC_MESSAGES/messages.mo b/inc/locales/hu_HU/LC_MESSAGES/messages.mo index c246917dbc47784a7594e06fc1b975ac82a6f08b..e3561644cdbc99363ea3d4de48b15520376241cd 100644 GIT binary patch delta 22 dcmeBZVCiUJ+0eU;-BiKI*vi0U^OR*JkpNqn2o(ST delta 22 dcmeBZVCiUJ+0eU;-B`iM*vi0S^OR*JkpNqn2p0eV diff --git a/inc/locales/hu_HU/LC_MESSAGES/messages.po b/inc/locales/hu_HU/LC_MESSAGES/messages.po index 8cbbe8c7..6d601260 100644 --- a/inc/locales/hu_HU/LC_MESSAGES/messages.po +++ b/inc/locales/hu_HU/LC_MESSAGES/messages.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" -"POT-Creation-Date: 2017-03-13 23:08+0100\n" +"POT-Creation-Date: 2017-03-15 23:04+0100\n" "PO-Revision-Date: \n" "Last-Translator: nuxsmin \n" "Language-Team: \n" @@ -64,7 +64,7 @@ msgstr "Érvénytelen fájl" #: ../../../../ajax/ajax_filesMgmt.php:104 #: ../../../../ajax/ajax_filesMgmt.php:166 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:842 #: ../../../../inc/SP/Core/Upgrade/Upgrade.class.php:437 #: ../../../../inc/SP/Mgmt/Files/File.class.php:97 #: ../../../../inc/themes/material-blue/views/config/import.inc:66 @@ -126,13 +126,13 @@ msgstr "ID" #: ../../../../inc/SP/Api/SyspassApi.class.php:85 #: ../../../../inc/SP/Controller/Grids/Items.class.php:280 #: ../../../../inc/SP/Controller/Grids/Items.class.php:832 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:839 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1160 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1166 #: ../../../../inc/SP/Controller/ItemShowController.class.php:530 -#: ../../../../inc/SP/Controller/MainController.class.php:609 +#: ../../../../inc/SP/Controller/MainController.class.php:601 #: ../../../../inc/SP/Import/ImportBase.class.php:165 #: ../../../../inc/SP/Mgmt/Files/File.class.php:96 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:77 @@ -145,9 +145,9 @@ msgstr "Fiók" #: ../../../../inc/SP/Controller/Grids/Items.class.php:206 #: ../../../../inc/SP/Controller/Grids/Items.class.php:283 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:55 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 #: ../../../../inc/SP/Controller/LoginController.class.php:446 #: ../../../../inc/SP/Controller/LoginController.class.php:473 #: ../../../../inc/SP/Controller/LoginController.class.php:515 @@ -165,7 +165,7 @@ msgid "Tipo" msgstr "Típus" #: ../../../../ajax/ajax_filesMgmt.php:204 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:833 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:834 msgid "Archivo eliminado" msgstr "Fájl törölve" @@ -222,18 +222,18 @@ msgid "Modificar Clave Usuario" msgstr "Felhasználó jelszavának szerkesztése" #: ../../../../ajax/ajax_passReset.php:99 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 msgid "Clave actualizada" msgstr "Jelszó frissítve" #: ../../../../ajax/ajax_passReset.php:100 #: ../../../../inc/SP/Auth/Database/Database.class.php:92 #: ../../../../inc/SP/Controller/Grids/Items.class.php:474 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:247 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:268 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:279 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:105 #: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:320 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:37 @@ -380,7 +380,7 @@ msgstr "Hiba a fiók jelszavának frissítése közben" #: ../../../../inc/SP/Account/AccountCrypt.class.php:271 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:165 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:291 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1077 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1083 msgid "Errores" msgstr "Errors" @@ -493,18 +493,18 @@ msgstr "Jelszó" #: ../../../../inc/SP/Api/SyspassApi.class.php:319 #: ../../../../inc/SP/Api/SyspassApi.class.php:372 #: ../../../../inc/SP/Api/SyspassApi.class.php:408 -#: ../../../../inc/SP/Controller/MainController.class.php:610 +#: ../../../../inc/SP/Controller/MainController.class.php:602 #: ../../../../inc/SP/Util/Wiki/DokuWikiApiBase.class.php:197 msgid "Origen" msgstr "Source" #: ../../../../inc/SP/Api/SyspassApi.class.php:189 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:922 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 msgid "Crear Cuenta" msgstr "Add Account" #: ../../../../inc/SP/Api/SyspassApi.class.php:190 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 #: ../../../../inc/SP/Import/ImportBase.class.php:158 msgid "Cuenta creada" msgstr "Fiók hozzáadva" @@ -526,39 +526,39 @@ msgstr "Fiók hozzáadva" #: ../../../../inc/SP/Controller/Grids/Items.class.php:592 #: ../../../../inc/SP/Controller/Grids/Items.class.php:666 #: ../../../../inc/SP/Controller/Grids/Items.class.php:912 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:266 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:394 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:454 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:516 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:579 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:806 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:975 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1025 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:367 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:375 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:395 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:427 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:435 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:455 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:489 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:497 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:517 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:551 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:559 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:580 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:671 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:678 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:782 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:789 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:807 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:869 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:877 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:884 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:925 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:935 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:944 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:953 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:976 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:980 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1005 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1026 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1030 #: ../../../../inc/SP/Core/Plugin/PluginDataStore.class.php:77 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:12 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:9 @@ -590,7 +590,7 @@ msgstr "Account not found" #: ../../../../inc/SP/Controller/Grids/Items.class.php:384 #: ../../../../inc/SP/Controller/Grids/Items.class.php:454 #: ../../../../inc/SP/Controller/Grids/Items.class.php:455 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:969 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:970 #: ../../../../inc/SP/Core/Acl.class.php:192 #: ../../../../inc/themes/material-blue/views/account/actions.inc:39 #, fuzzy @@ -598,18 +598,18 @@ msgid "Eliminar Cuenta" msgstr "Fiók törlése" #: ../../../../inc/SP/Api/SyspassApi.class.php:228 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:978 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1028 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 msgid "Cuenta eliminada" msgstr "Fiók törölve" #: ../../../../inc/SP/Api/SyspassApi.class.php:280 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:548 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 msgid "Crear Categoría" msgstr "Add Category" #: ../../../../inc/SP/Api/SyspassApi.class.php:281 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 #: ../../../../inc/SP/Import/ImportBase.class.php:182 msgid "Categoría creada" msgstr "Kategória hozzáadva" @@ -622,23 +622,23 @@ msgstr "Category not found" #: ../../../../inc/SP/Api/SyspassApi.class.php:316 #: ../../../../inc/SP/Controller/Grids/Items.class.php:111 #: ../../../../inc/SP/Controller/Grids/Items.class.php:112 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:576 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:577 #: ../../../../inc/SP/Core/Acl.class.php:200 msgid "Eliminar Categoría" msgstr "Kategória törlése" #: ../../../../inc/SP/Api/SyspassApi.class.php:317 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:571 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:572 msgid "Categoría eliminada" msgstr "Kategória törölve" #: ../../../../inc/SP/Api/SyspassApi.class.php:369 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:486 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 msgid "Crear Cliente" msgstr "Add Customer" #: ../../../../inc/SP/Api/SyspassApi.class.php:370 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 #: ../../../../inc/SP/Import/ImportBase.class.php:204 msgid "Cliente creado" msgstr "Ügyfél hozzáadva" @@ -651,13 +651,13 @@ msgstr "Nincs ügyfél találat" #: ../../../../inc/SP/Api/SyspassApi.class.php:405 #: ../../../../inc/SP/Controller/Grids/Items.class.php:185 #: ../../../../inc/SP/Controller/Grids/Items.class.php:186 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:513 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:514 #: ../../../../inc/SP/Core/Acl.class.php:205 msgid "Eliminar Cliente" msgstr "Ügyfél törlése" #: ../../../../inc/SP/Api/SyspassApi.class.php:406 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:508 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:509 msgid "Cliente eliminado" msgstr "Ügyfél törölve" @@ -678,7 +678,7 @@ msgstr "Hiba Archiválás közben" #: ../../../../inc/SP/Controller/ChecksController.class.php:142 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:699 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:722 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1084 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1090 #: ../../../../inc/SP/Import/Import.class.php:115 #, fuzzy msgid "Revise el registro de eventos para más detalles" @@ -853,7 +853,7 @@ msgid "Conexión a LDAP correcta" msgstr "LDAP kapcsolat" #: ../../../../inc/SP/Auth/Ldap/LdapBase.class.php:133 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:72 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:75 msgid "Objetos encontrados" msgstr "Objektum találatok" @@ -893,11 +893,11 @@ msgstr "Hiba az LDAP felhasználók keresése közben" #: ../../../../inc/SP/Controller/AccountSearchController.class.php:368 #: ../../../../inc/SP/Controller/Grids/Items.class.php:748 #: ../../../../inc/SP/Controller/Grids/Items.class.php:835 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:617 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:630 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:727 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:737 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:752 #: ../../../../inc/SP/Controller/ItemShowController.class.php:408 #: ../../../../inc/SP/Controller/LoginController.class.php:261 #: ../../../../inc/SP/Controller/LoginController.class.php:368 @@ -906,7 +906,7 @@ msgstr "Hiba az LDAP felhasználók keresése közben" #: ../../../../inc/SP/Controller/LoginController.class.php:534 #: ../../../../inc/SP/Core/Init.class.php:615 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:78 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:104 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:108 #: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:64 #: ../../../../res/test.php:64 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:45 @@ -954,8 +954,8 @@ msgstr "Hiba az RDN csoport keresése közben" #: ../../../../inc/themes/material-blue/views/config/ldap.inc:201 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:71 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:73 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:47 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:18 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:137 msgid "Grupo" msgstr "Csoport" @@ -1059,8 +1059,8 @@ msgstr "Több akció" #: ../../../../inc/SP/Controller/Grids/Items.class.php:281 #: ../../../../inc/SP/Controller/Grids/Items.class.php:350 #: ../../../../inc/SP/Controller/Grids/Items.class.php:403 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1161 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1167 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:23 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:29 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:21 @@ -1225,7 +1225,7 @@ msgstr "Maximálisan feltölthetõ fájl mérete 16MB" #: ../../../../inc/SP/Controller/ConfigActionController.class.php:301 #: ../../../../inc/SP/Controller/ConfigController.class.php:203 #: ../../../../inc/SP/Controller/Grids/Items.class.php:365 -#: ../../../../inc/SP/Controller/MainController.class.php:616 +#: ../../../../inc/SP/Controller/MainController.class.php:608 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldTypes.class.php:90 #: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:13 #: ../../../../inc/themes/material-blue/views/itemshow/profiles.inc:30 @@ -1481,7 +1481,7 @@ msgid "No instalado" msgstr "Not installed" #: ../../../../inc/SP/Controller/ConfigController.class.php:434 -#: ../../../../inc/SP/Controller/MainController.class.php:618 +#: ../../../../inc/SP/Controller/MainController.class.php:610 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:77 #, fuzzy msgid "Información" @@ -1538,7 +1538,7 @@ msgstr "Search for Events" #: ../../../../inc/SP/Controller/Grids/Items.class.php:131 #: ../../../../inc/SP/Controller/Grids/Items.class.php:593 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:57 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1162 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1168 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:37 #: ../../../../inc/themes/material-blue/views/itemshow/categories.inc:28 #: ../../../../inc/themes/material-blue/views/itemshow/customers.inc:32 @@ -1631,7 +1631,7 @@ msgstr "Módosítás" #: ../../../../inc/SP/Controller/Grids/Items.class.php:261 #: ../../../../inc/SP/Controller/Grids/Items.class.php:262 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:690 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:691 #, fuzzy msgid "Eliminar Campo" msgstr "Profil törlése" @@ -1658,7 +1658,7 @@ msgstr "Fájl megtekintése" #: ../../../../inc/SP/Controller/Grids/Items.class.php:330 #: ../../../../inc/SP/Controller/Grids/Items.class.php:331 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:836 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:837 #: ../../../../inc/themes/material-blue/views/account/files-list.inc:26 msgid "Eliminar Archivo" msgstr "Fájl törlése" @@ -1700,8 +1700,8 @@ msgstr "Accounts (H)" #: ../../../../inc/SP/Controller/Grids/Items.class.php:444 #: ../../../../inc/SP/Controller/Grids/Items.class.php:445 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1002 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 msgid "Restaurar Cuenta" msgstr "Restore Számla" @@ -1738,8 +1738,8 @@ msgstr "Új felhasználó" #: ../../../../inc/SP/Controller/Grids/Items.class.php:529 #: ../../../../inc/SP/Controller/Grids/Items.class.php:530 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1072 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:292 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1073 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:315 msgid "Importar usuarios de LDAP" msgstr "Import users from LDAP" @@ -1756,15 +1756,15 @@ msgstr "Felhasználó módosítás" #: ../../../../inc/SP/Controller/Grids/Items.class.php:562 #: ../../../../inc/SP/Controller/Grids/Items.class.php:563 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:20 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:52 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:58 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:122 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:128 msgid "Cambiar Clave de Usuario" msgstr "Változás felhasználói jelszó" #: ../../../../inc/SP/Controller/Grids/Items.class.php:573 #: ../../../../inc/SP/Controller/Grids/Items.class.php:574 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:263 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:264 msgid "Eliminar Usuario" msgstr "felhasználó törlése" @@ -1793,7 +1793,7 @@ msgstr "Csoport módosítás" #: ../../../../inc/SP/Controller/Grids/Items.class.php:647 #: ../../../../inc/SP/Controller/Grids/Items.class.php:648 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:391 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:392 msgid "Eliminar Grupo" msgstr "Csoport törlése" @@ -1826,7 +1826,7 @@ msgstr "Profil módosítás" #: ../../../../inc/SP/Controller/Grids/Items.class.php:729 #: ../../../../inc/SP/Controller/Grids/Items.class.php:730 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:451 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:452 msgid "Eliminar Perfil" msgstr "Profil törlése" @@ -1868,7 +1868,7 @@ msgstr "Módosítás" #: ../../../../inc/SP/Controller/Grids/Items.class.php:813 #: ../../../../inc/SP/Controller/Grids/Items.class.php:814 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:642 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:643 #, fuzzy msgid "Eliminar Autorización" msgstr "Profil törlése" @@ -1919,7 +1919,7 @@ msgstr "Renew Link" #: ../../../../inc/SP/Controller/Grids/Items.class.php:893 #: ../../../../inc/SP/Controller/Grids/Items.class.php:894 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:754 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:755 msgid "Eliminar Enlace" msgstr "Delete Link" @@ -1948,7 +1948,7 @@ msgstr "Edit Tag" #: ../../../../inc/SP/Controller/Grids/Items.class.php:965 #: ../../../../inc/SP/Controller/Grids/Items.class.php:966 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:803 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:804 msgid "Eliminar Etiqueta" msgstr "Delete Tag" @@ -1995,8 +1995,9 @@ msgid "Leída" msgstr "Read" #: ../../../../inc/SP/Controller/Grids/Notices.class.php:76 -#: ../../../../inc/SP/Controller/MainController.class.php:315 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:79 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:108 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:116 msgid "Notificaciones" msgstr "Notifications" @@ -2032,329 +2033,329 @@ msgstr "Edit Notification" msgid "Eliminar Notificación" msgstr "Delete Notification" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:228 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 msgid "Crear Usuario" msgstr "Add User" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 msgid "Usuario creado" msgstr "Felhasználó hozzáadva" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:236 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:237 #, fuzzy msgid "No se pudo realizar la petición de cambio de clave." msgstr "Nem sikerült végrehajtani a jelszócsere kérelmet." -#: ../../../../inc/SP/Controller/ItemActionController.class.php:243 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 msgid "Actualizar Usuario" msgstr "Update User" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:104 msgid "Usuario actualizado" msgstr "Felhasználó frissítve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:253 msgid "Usuarios eliminados" msgstr "Users deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:258 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:259 msgid "Usuario eliminado" msgstr "Felhasználó törölve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:275 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 msgid "Actualizar Clave Usuario" msgstr "Update User's Password" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:364 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 msgid "Crear Grupo" msgstr "Add Group" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 msgid "Grupo creado" msgstr "Csoport hozzáadva" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:372 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 msgid "Actualizar Grupo" msgstr "Update Group" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 msgid "Grupo actualizado" msgstr "Csoport frissítve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:380 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 msgid "Grupos eliminados" msgstr "Groups deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:386 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:387 msgid "Grupo eliminado" msgstr "Csoport törölve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:424 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 msgid "Crear Perfil" msgstr "Add Profile" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 msgid "Perfil creado" msgstr "Profil hozzáadva" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:432 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 msgid "Actualizar Perfil" msgstr "Update Profile" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 msgid "Perfil actualizado" msgstr "Profil frissítve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:440 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 msgid "Perfiles eliminados" msgstr "Profiles deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:446 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:447 msgid "Perfil eliminado" msgstr "Profil törölve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:494 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 msgid "Actualizar Cliente" msgstr "Frissítse az ügyfelet" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 msgid "Cliente actualizado" msgstr "Ügyfél frissítve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:502 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 msgid "Clientes eliminados" msgstr "Customers deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:556 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 msgid "Actualizar Categoría" msgstr "Update Category" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 msgid "Categoría actualizada" msgstr "Kategória frissítve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:566 msgid "Categorías eliminadas" msgstr "Categories deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:614 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 msgid "Crear Autorización" msgstr "Add Authorization" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 #, fuzzy msgid "Autorización creada" msgstr "Fiók hozzáadva" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:627 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 #, fuzzy msgid "Actualizar Autorización" msgstr "Frissítés Számla" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 #, fuzzy msgid "Autorización actualizada" msgstr "Fiók frissítve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:635 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 msgid "Autorizaciones eliminadas" msgstr "Authorizations deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:639 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:640 #, fuzzy msgid "Autorización eliminada" msgstr "Fiók törölve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:668 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 msgid "Crear Campo" msgstr "Add Field" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 #, fuzzy msgid "Campo creado" msgstr "Felhasználó hozzáadva" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:675 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 msgid "Actualizar Campo" msgstr "Update Field" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldsUtil.class.php:288 #, fuzzy msgid "Campo actualizado" msgstr "Frissítve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:683 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 msgid "Campos eliminados" msgstr "Fields deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:687 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:688 #, fuzzy msgid "Campo eliminado" msgstr "Felhasználó törölve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:722 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 msgid "Crear Enlace" msgstr "Create Link" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 msgid "Enlace creado" msgstr "Link created" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:732 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 #: ../../../../inc/themes/material-blue/views/account/actions.inc:69 msgid "Actualizar Enlace" msgstr "Update Link" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 msgid "Enlace actualizado" msgstr "Link updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:742 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:743 msgid "Enlaces eliminados" msgstr "Links deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:748 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 msgid "Enlace eliminado" msgstr "Link deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:779 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 msgid "Crear Etiqueta" msgstr "Add Tag" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 #: ../../../../inc/SP/Import/ImportBase.class.php:226 msgid "Etiqueta creada" msgstr "Tag added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:786 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 msgid "Actualizar Etiqueta" msgstr "Update Tag" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 msgid "Etiqueta actualizada" msgstr "Tag updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:794 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 msgid "Etiquetas eliminadas" msgstr "Tags deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:800 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:801 msgid "Etiqueta eliminada" msgstr "Tag removed" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:827 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:828 msgid "Archivos eliminados" msgstr "Files deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:866 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:874 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:881 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 msgid "Actualizar Plugin" msgstr "Update Plugin" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 msgid "Plugin habilitado" msgstr "Plugin enabled" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 msgid "Plugin deshabilitado" msgstr "Plugin disabled" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 msgid "Plugin restablecido" msgstr "Plugin reset" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:932 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 msgid "Actualizar Cuenta" msgstr "Frissítés Számla" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 msgid "Cuenta actualizada" msgstr "Fiók frissítve" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 msgid "Cuenta restaurada" msgstr "Fiók restaurált" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:972 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1022 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:973 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1023 msgid "Cuentas eliminadas" msgstr "Accounts removed" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1019 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1020 msgid "Eliminar Cuenta (H)" msgstr "Delete Account (H)" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1053 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1054 msgid "Favorito añadido" msgstr "Favorite added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1058 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1059 msgid "Favorito eliminado" msgstr "Favorite deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1075 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 msgid "Importación de usuarios de LDAP realizada" msgstr "LDAP users import finished" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1076 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1082 msgid "Usuarios importados" msgstr "Imported users" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1087 msgid "Error al importar usuarios de LDAP" msgstr "Error while importing the LDAP users" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1099 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1105 msgid "Notificación leída" msgstr "Notification read" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1107 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1113 msgid "Notificación creada" msgstr "Notification created" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1115 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 msgid "Notificación actualizada" msgstr "Notification updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1127 msgid "Notificaciones eliminadas" msgstr "Notifications deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1125 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1131 msgid "Notificación eliminada" msgstr "Notification deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1143 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1149 #: ../../../../inc/SP/Forms/NoticeForm.class.php:95 msgid "Es necesaria una descripción" msgstr "Leírás szükséges" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1158 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1164 msgid "Solicitud de Modificación de Cuenta" msgstr "Kérés fiók módosításához" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1159 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1165 msgid "Solicitante" msgstr "Kérõ" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1177 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1183 msgid "Solicitud enviada por correo" msgstr "Request sent by email" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1179 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1185 msgid "Solicitud no enviada por correo" msgstr "Request not sent by email" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1188 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 msgid "Solicitud" msgstr "Request" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1200 msgid "Solicitud realizada" msgstr "Request done" @@ -2541,60 +2542,60 @@ msgstr "Profil törlése" msgid "Registro de Eventos" msgstr "Esemény napló" -#: ../../../../inc/SP/Controller/MainController.class.php:368 +#: ../../../../inc/SP/Controller/MainController.class.php:360 #: ../../../../inc/SP/Core/Init.class.php:140 #, fuzzy msgid "Versión de PHP requerida >= " msgstr "Szükséges PHP verzió> = 5.1" -#: ../../../../inc/SP/Controller/MainController.class.php:369 +#: ../../../../inc/SP/Controller/MainController.class.php:361 #: ../../../../inc/SP/Core/Init.class.php:141 #, 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" -#: ../../../../inc/SP/Controller/MainController.class.php:379 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#: ../../../../inc/SP/Controller/MainController.class.php:371 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:288 msgid "Módulo no disponible" msgstr "Modul nem elérhetõ" -#: ../../../../inc/SP/Controller/MainController.class.php:380 +#: ../../../../inc/SP/Controller/MainController.class.php:372 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/Controller/MainController.class.php:388 +#: ../../../../inc/SP/Controller/MainController.class.php:380 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)" -#: ../../../../inc/SP/Controller/MainController.class.php:389 +#: ../../../../inc/SP/Controller/MainController.class.php:381 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" -#: ../../../../inc/SP/Controller/MainController.class.php:395 +#: ../../../../inc/SP/Controller/MainController.class.php:387 msgid "No se encuentra el generador de números aleatorios." msgstr "Nem találom a véletlen szám generátort" -#: ../../../../inc/SP/Controller/MainController.class.php:396 +#: ../../../../inc/SP/Controller/MainController.class.php:388 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" -#: ../../../../inc/SP/Controller/MainController.class.php:493 +#: ../../../../inc/SP/Controller/MainController.class.php:485 msgid "Descargar nueva versión" msgstr "Új verzió letöltése" -#: ../../../../inc/SP/Controller/MainController.class.php:505 +#: ../../../../inc/SP/Controller/MainController.class.php:497 msgid "Avisos de sysPass" msgstr "sysPass Notices" -#: ../../../../inc/SP/Controller/MainController.class.php:608 +#: ../../../../inc/SP/Controller/MainController.class.php:600 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:75 msgid "Enlace visualizado" msgstr "Link viewed" -#: ../../../../inc/SP/Controller/MainController.class.php:611 +#: ../../../../inc/SP/Controller/MainController.class.php:603 msgid "Agente" msgstr "Agent" @@ -3912,21 +3913,21 @@ msgstr "Hamarosan megerõsítésre váró emailt küldünk" msgid "Nuevo usuario de LDAP" msgstr "LDAP felhasználó" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:185 -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:214 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:186 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:215 #, 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" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:65 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:66 msgid "Sincronización LDAP" msgstr "LDAP synchronization" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:115 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:120 msgid "No se encontraron objetos para sincronizar" msgstr "There aren't any objects to synchronize" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:121 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:126 msgid "Sincronización finalizada" msgstr "Synchronization finished" @@ -4348,12 +4349,12 @@ msgid "Limpiar Selección" msgstr "Clear Selection" #: ../../../../js/strings.js.php:77 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Favoritos" msgstr "Show Favorites" #: ../../../../js/strings.js.php:78 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Todos" msgstr "Show All" @@ -4426,7 +4427,7 @@ msgstr "Select date" #: ../../../../inc/themes/material-blue/views/config/general.inc:29 #: ../../../../inc/themes/material-blue/views/config/import.inc:89 #: ../../../../inc/themes/material-blue/views/config/info.inc:145 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:283 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:306 #: ../../../../inc/themes/material-blue/views/config/mail.inc:150 #: ../../../../inc/themes/material-blue/views/config/wiki.inc:276 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:137 @@ -4680,19 +4681,19 @@ msgstr "Get the private accounts for the current user" msgid "Búsqueda global" msgstr "Globális keresés" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:71 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:73 msgid "Filtrar Favoritos" msgstr "Favorites Filtering" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:85 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:87 msgid "Cuentas por página" msgstr "Fiók/oldal" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:91 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:93 msgid "Más Filtros" msgstr "More Filters" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:96 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:98 msgid "Seleccionar Etiqueta" msgstr "Select Tag" @@ -5555,7 +5556,19 @@ msgid "" msgstr "Define the default users profile for new LDAP users" #: ../../../../inc/themes/material-blue/views/config/ldap.inc:255 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:258 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#, fuzzy +msgid "Atributo Login" +msgstr "Login Attribute" + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:260 +#, fuzzy +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." + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:278 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:281 msgid "Resultados" msgstr "Results" @@ -6005,51 +6018,51 @@ msgstr "Utolsó belépés" msgid "Fecha Clave Maestra" msgstr "Mester jelszó dátum" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:11 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:75 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:78 -msgid "Salir" -msgstr "Kijelentkezés" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:25 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:62 -#, fuzzy -msgid "Preferencias de usuario" -msgstr "Dupla felhasználó bejelentkezés" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:34 -#, php-format -msgid "Hay %d notificaciones pendientes" -msgstr "There are %d unread notifications" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:41 -msgid "No hay no hay notificaciones pendientes" -msgstr "There aren't any pending notifications" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 msgid "Indica si la conexión utiliza HTTPS." msgstr "Tells whether the connection uses HTTPS or not." -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 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." -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:79 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:88 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:43 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:158 msgid "Demo" msgstr "Demo" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:90 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:54 msgid "Ayuda :: FAQ :: Changelog" msgstr "Segítség :: GYIK :: Változások Listája" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:94 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:58 msgid "Un proyecto de cygnux.org" msgstr "A cygnux.org projekt" +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:39 +#, php-format +msgid "Hay %d notificaciones pendientes" +msgstr "There are %d unread notifications" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:48 +msgid "No hay no hay notificaciones pendientes" +msgstr "There aren't any pending notifications" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:73 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:132 +#, fuzzy +msgid "Preferencias de usuario" +msgstr "Dupla felhasználó bejelentkezés" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:77 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:145 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:148 +msgid "Salir" +msgstr "Kijelentkezés" + #: ../../../../inc/themes/material-blue/views/main/body-start.inc:4 msgid "Javascript es necesario para el correcto funcionamiento" msgstr "Java szkript szükséges a megfelelõ mûködéshez" diff --git a/inc/locales/nl_NL/LC_MESSAGES/messages.mo b/inc/locales/nl_NL/LC_MESSAGES/messages.mo index e13b01deac36f8a9cb55c3ef8f5ba4567f449711..517b3beb68f389df3df314310b0b1d870ba68568 100644 GIT binary patch delta 22 ecmaEUo#pv;mJQ2~vYRRx8Cw~cZeDlPG7SKGs|m&c delta 22 ecmaEUo#pv;mJQ2~vKuQH8CjW{ZC-cOG7SKGvkA!n diff --git a/inc/locales/nl_NL/LC_MESSAGES/messages.po b/inc/locales/nl_NL/LC_MESSAGES/messages.po index afe81b79..8fda8bd1 100644 --- a/inc/locales/nl_NL/LC_MESSAGES/messages.po +++ b/inc/locales/nl_NL/LC_MESSAGES/messages.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" -"POT-Creation-Date: 2017-03-13 22:56+0100\n" +"POT-Creation-Date: 2017-03-15 23:05+0100\n" "PO-Revision-Date: \n" "Last-Translator: nuxsmin \n" "Language-Team: nlmaca\n" @@ -62,7 +62,7 @@ msgstr "Ongeldig bestand" #: ../../../../ajax/ajax_filesMgmt.php:104 #: ../../../../ajax/ajax_filesMgmt.php:166 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:842 #: ../../../../inc/SP/Core/Upgrade/Upgrade.class.php:437 #: ../../../../inc/SP/Mgmt/Files/File.class.php:97 #: ../../../../inc/themes/material-blue/views/config/import.inc:66 @@ -124,13 +124,13 @@ msgstr "ID" #: ../../../../inc/SP/Api/SyspassApi.class.php:85 #: ../../../../inc/SP/Controller/Grids/Items.class.php:280 #: ../../../../inc/SP/Controller/Grids/Items.class.php:832 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:839 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1160 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1166 #: ../../../../inc/SP/Controller/ItemShowController.class.php:530 -#: ../../../../inc/SP/Controller/MainController.class.php:609 +#: ../../../../inc/SP/Controller/MainController.class.php:601 #: ../../../../inc/SP/Import/ImportBase.class.php:165 #: ../../../../inc/SP/Mgmt/Files/File.class.php:96 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:77 @@ -143,9 +143,9 @@ msgstr "Account" #: ../../../../inc/SP/Controller/Grids/Items.class.php:206 #: ../../../../inc/SP/Controller/Grids/Items.class.php:283 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:55 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 #: ../../../../inc/SP/Controller/LoginController.class.php:446 #: ../../../../inc/SP/Controller/LoginController.class.php:473 #: ../../../../inc/SP/Controller/LoginController.class.php:515 @@ -163,7 +163,7 @@ msgid "Tipo" msgstr "Type" #: ../../../../ajax/ajax_filesMgmt.php:204 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:833 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:834 msgid "Archivo eliminado" msgstr "Bestand verwijderd" @@ -220,18 +220,18 @@ msgid "Modificar Clave Usuario" msgstr "Wijzig Gebruikers Wachtwoord" #: ../../../../ajax/ajax_passReset.php:99 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 msgid "Clave actualizada" msgstr "Wachtwoord bijgewerkt" #: ../../../../ajax/ajax_passReset.php:100 #: ../../../../inc/SP/Auth/Database/Database.class.php:92 #: ../../../../inc/SP/Controller/Grids/Items.class.php:474 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:247 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:268 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:279 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:105 #: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:320 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:37 @@ -376,7 +376,7 @@ msgstr "Error bij het updaten van het account wachtwoord" #: ../../../../inc/SP/Account/AccountCrypt.class.php:271 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:165 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:291 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1077 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1083 msgid "Errores" msgstr "Errors" @@ -488,18 +488,18 @@ msgstr "Bekijk wachtwoord" #: ../../../../inc/SP/Api/SyspassApi.class.php:319 #: ../../../../inc/SP/Api/SyspassApi.class.php:372 #: ../../../../inc/SP/Api/SyspassApi.class.php:408 -#: ../../../../inc/SP/Controller/MainController.class.php:610 +#: ../../../../inc/SP/Controller/MainController.class.php:602 #: ../../../../inc/SP/Util/Wiki/DokuWikiApiBase.class.php:197 msgid "Origen" msgstr "Source" #: ../../../../inc/SP/Api/SyspassApi.class.php:189 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:922 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 msgid "Crear Cuenta" msgstr "Add Account" #: ../../../../inc/SP/Api/SyspassApi.class.php:190 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 #: ../../../../inc/SP/Import/ImportBase.class.php:158 msgid "Cuenta creada" msgstr "Account toegevoegd" @@ -521,39 +521,39 @@ msgstr "Account toegevoegd" #: ../../../../inc/SP/Controller/Grids/Items.class.php:592 #: ../../../../inc/SP/Controller/Grids/Items.class.php:666 #: ../../../../inc/SP/Controller/Grids/Items.class.php:912 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:266 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:394 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:454 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:516 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:579 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:806 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:975 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1025 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:367 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:375 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:395 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:427 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:435 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:455 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:489 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:497 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:517 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:551 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:559 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:580 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:671 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:678 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:782 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:789 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:807 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:869 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:877 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:884 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:925 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:935 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:944 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:953 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:976 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:980 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1005 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1026 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1030 #: ../../../../inc/SP/Core/Plugin/PluginDataStore.class.php:77 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:12 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:9 @@ -585,7 +585,7 @@ msgstr "Account not found" #: ../../../../inc/SP/Controller/Grids/Items.class.php:384 #: ../../../../inc/SP/Controller/Grids/Items.class.php:454 #: ../../../../inc/SP/Controller/Grids/Items.class.php:455 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:969 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:970 #: ../../../../inc/SP/Core/Acl.class.php:192 #: ../../../../inc/themes/material-blue/views/account/actions.inc:39 #, fuzzy @@ -593,18 +593,18 @@ msgid "Eliminar Cuenta" msgstr "Verwijder Account" #: ../../../../inc/SP/Api/SyspassApi.class.php:228 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:978 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1028 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 msgid "Cuenta eliminada" msgstr "Account verwijderd" #: ../../../../inc/SP/Api/SyspassApi.class.php:280 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:548 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 msgid "Crear Categoría" msgstr "Add Category" #: ../../../../inc/SP/Api/SyspassApi.class.php:281 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 #: ../../../../inc/SP/Import/ImportBase.class.php:182 msgid "Categoría creada" msgstr "Categorie toegevoegd" @@ -617,23 +617,23 @@ msgstr "Category not found" #: ../../../../inc/SP/Api/SyspassApi.class.php:316 #: ../../../../inc/SP/Controller/Grids/Items.class.php:111 #: ../../../../inc/SP/Controller/Grids/Items.class.php:112 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:576 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:577 #: ../../../../inc/SP/Core/Acl.class.php:200 msgid "Eliminar Categoría" msgstr "Verwijder Categorie" #: ../../../../inc/SP/Api/SyspassApi.class.php:317 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:571 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:572 msgid "Categoría eliminada" msgstr "Categorie verwijderd" #: ../../../../inc/SP/Api/SyspassApi.class.php:369 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:486 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 msgid "Crear Cliente" msgstr "Add Customer" #: ../../../../inc/SP/Api/SyspassApi.class.php:370 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 #: ../../../../inc/SP/Import/ImportBase.class.php:204 msgid "Cliente creado" msgstr "Klant toegevoegd" @@ -646,13 +646,13 @@ msgstr "Klant niet gevonden" #: ../../../../inc/SP/Api/SyspassApi.class.php:405 #: ../../../../inc/SP/Controller/Grids/Items.class.php:185 #: ../../../../inc/SP/Controller/Grids/Items.class.php:186 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:513 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:514 #: ../../../../inc/SP/Core/Acl.class.php:205 msgid "Eliminar Cliente" msgstr "Verwijder Klant" #: ../../../../inc/SP/Api/SyspassApi.class.php:406 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:508 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:509 msgid "Cliente eliminado" msgstr "Klant verwijderd" @@ -673,7 +673,7 @@ msgstr "Fout in backup proces" #: ../../../../inc/SP/Controller/ChecksController.class.php:142 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:699 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:722 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1084 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1090 #: ../../../../inc/SP/Import/Import.class.php:115 #, fuzzy msgid "Revise el registro de eventos para más detalles" @@ -849,7 +849,7 @@ msgid "Conexión a LDAP correcta" msgstr "LDAP connectie gelukt" #: ../../../../inc/SP/Auth/Ldap/LdapBase.class.php:133 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:72 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:75 msgid "Objetos encontrados" msgstr "Objecten gevonden" @@ -889,11 +889,11 @@ msgstr "Fout bij het zoeken gebruiker in DLS" #: ../../../../inc/SP/Controller/AccountSearchController.class.php:368 #: ../../../../inc/SP/Controller/Grids/Items.class.php:748 #: ../../../../inc/SP/Controller/Grids/Items.class.php:835 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:617 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:630 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:727 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:737 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:752 #: ../../../../inc/SP/Controller/ItemShowController.class.php:408 #: ../../../../inc/SP/Controller/LoginController.class.php:261 #: ../../../../inc/SP/Controller/LoginController.class.php:368 @@ -902,7 +902,7 @@ msgstr "Fout bij het zoeken gebruiker in DLS" #: ../../../../inc/SP/Controller/LoginController.class.php:534 #: ../../../../inc/SP/Core/Init.class.php:615 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:78 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:104 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:108 #: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:64 #: ../../../../res/test.php:64 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:45 @@ -950,8 +950,8 @@ msgstr "Fout bij zoeken in groep RDN" #: ../../../../inc/themes/material-blue/views/config/ldap.inc:201 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:71 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:73 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:47 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:18 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:137 msgid "Grupo" msgstr "Groep" @@ -1052,8 +1052,8 @@ msgstr "Meer acties" #: ../../../../inc/SP/Controller/Grids/Items.class.php:281 #: ../../../../inc/SP/Controller/Grids/Items.class.php:350 #: ../../../../inc/SP/Controller/Grids/Items.class.php:403 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1161 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1167 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:23 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:29 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:21 @@ -1213,7 +1213,7 @@ msgstr "Het maxiumale bestands formaat is 16MB per bestand" #: ../../../../inc/SP/Controller/ConfigActionController.class.php:301 #: ../../../../inc/SP/Controller/ConfigController.class.php:203 #: ../../../../inc/SP/Controller/Grids/Items.class.php:365 -#: ../../../../inc/SP/Controller/MainController.class.php:616 +#: ../../../../inc/SP/Controller/MainController.class.php:608 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldTypes.class.php:90 #: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:13 #: ../../../../inc/themes/material-blue/views/itemshow/profiles.inc:30 @@ -1457,7 +1457,7 @@ msgid "No instalado" msgstr "Not installed" #: ../../../../inc/SP/Controller/ConfigController.class.php:434 -#: ../../../../inc/SP/Controller/MainController.class.php:618 +#: ../../../../inc/SP/Controller/MainController.class.php:610 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:77 msgid "Información" msgstr "Informatie" @@ -1513,7 +1513,7 @@ msgstr "Search for Events" #: ../../../../inc/SP/Controller/Grids/Items.class.php:131 #: ../../../../inc/SP/Controller/Grids/Items.class.php:593 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:57 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1162 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1168 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:37 #: ../../../../inc/themes/material-blue/views/itemshow/categories.inc:28 #: ../../../../inc/themes/material-blue/views/itemshow/customers.inc:32 @@ -1603,7 +1603,7 @@ msgstr "Wijzig Veld" #: ../../../../inc/SP/Controller/Grids/Items.class.php:261 #: ../../../../inc/SP/Controller/Grids/Items.class.php:262 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:690 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:691 msgid "Eliminar Campo" msgstr "Verwijder Veld" @@ -1629,7 +1629,7 @@ msgstr "Bekijk bestand" #: ../../../../inc/SP/Controller/Grids/Items.class.php:330 #: ../../../../inc/SP/Controller/Grids/Items.class.php:331 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:836 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:837 #: ../../../../inc/themes/material-blue/views/account/files-list.inc:26 msgid "Eliminar Archivo" msgstr "Verwijder Bestand" @@ -1670,8 +1670,8 @@ msgstr "Accounts (H)" #: ../../../../inc/SP/Controller/Grids/Items.class.php:444 #: ../../../../inc/SP/Controller/Grids/Items.class.php:445 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1002 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 msgid "Restaurar Cuenta" msgstr "Account Herstel" @@ -1708,8 +1708,8 @@ msgstr "Nieuwe Gebruiker" #: ../../../../inc/SP/Controller/Grids/Items.class.php:529 #: ../../../../inc/SP/Controller/Grids/Items.class.php:530 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1072 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:292 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1073 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:315 msgid "Importar usuarios de LDAP" msgstr "Import users from LDAP" @@ -1726,15 +1726,15 @@ msgstr "Wijzig Gebruiker" #: ../../../../inc/SP/Controller/Grids/Items.class.php:562 #: ../../../../inc/SP/Controller/Grids/Items.class.php:563 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:20 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:52 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:58 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:122 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:128 msgid "Cambiar Clave de Usuario" msgstr "Wijzig Gebruikers Wachtwoord" #: ../../../../inc/SP/Controller/Grids/Items.class.php:573 #: ../../../../inc/SP/Controller/Grids/Items.class.php:574 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:263 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:264 msgid "Eliminar Usuario" msgstr "Verwijder Gebruiker" @@ -1763,7 +1763,7 @@ msgstr "Wijzig Broep" #: ../../../../inc/SP/Controller/Grids/Items.class.php:647 #: ../../../../inc/SP/Controller/Grids/Items.class.php:648 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:391 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:392 msgid "Eliminar Grupo" msgstr "Verwijder Groep" @@ -1795,7 +1795,7 @@ msgstr "Wijzig Profiel" #: ../../../../inc/SP/Controller/Grids/Items.class.php:729 #: ../../../../inc/SP/Controller/Grids/Items.class.php:730 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:451 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:452 msgid "Eliminar Perfil" msgstr "Verwijder Profiel" @@ -1834,7 +1834,7 @@ msgstr "Wijzig Autorisatie" #: ../../../../inc/SP/Controller/Grids/Items.class.php:813 #: ../../../../inc/SP/Controller/Grids/Items.class.php:814 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:642 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:643 msgid "Eliminar Autorización" msgstr "Verwijder Autorisatie" @@ -1884,7 +1884,7 @@ msgstr "Renew Link" #: ../../../../inc/SP/Controller/Grids/Items.class.php:893 #: ../../../../inc/SP/Controller/Grids/Items.class.php:894 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:754 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:755 msgid "Eliminar Enlace" msgstr "Delete Link" @@ -1913,7 +1913,7 @@ msgstr "Edit Tag" #: ../../../../inc/SP/Controller/Grids/Items.class.php:965 #: ../../../../inc/SP/Controller/Grids/Items.class.php:966 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:803 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:804 msgid "Eliminar Etiqueta" msgstr "Delete Tag" @@ -1960,8 +1960,9 @@ msgid "Leída" msgstr "Read" #: ../../../../inc/SP/Controller/Grids/Notices.class.php:76 -#: ../../../../inc/SP/Controller/MainController.class.php:315 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:79 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:108 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:116 msgid "Notificaciones" msgstr "Notifications" @@ -1997,321 +1998,321 @@ msgstr "Edit Notification" msgid "Eliminar Notificación" msgstr "Delete Notification" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:228 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 msgid "Crear Usuario" msgstr "Add User" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 msgid "Usuario creado" msgstr "Gebruiker toegevoegd" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:236 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:237 msgid "No se pudo realizar la petición de cambio de clave." msgstr "Kon de aanvraag voor het veranderen van het wachtwoord niet uitvoeren." -#: ../../../../inc/SP/Controller/ItemActionController.class.php:243 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 msgid "Actualizar Usuario" msgstr "Update User" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:104 msgid "Usuario actualizado" msgstr "Gebruiker bijgewerkt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:253 msgid "Usuarios eliminados" msgstr "Users deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:258 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:259 msgid "Usuario eliminado" msgstr "Gebruiker verwijderd" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:275 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 msgid "Actualizar Clave Usuario" msgstr "Update User's Password" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:364 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 msgid "Crear Grupo" msgstr "Add Group" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 msgid "Grupo creado" msgstr "Groep toegevoegd" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:372 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 msgid "Actualizar Grupo" msgstr "Update Group" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 msgid "Grupo actualizado" msgstr "Groep bijgewerkt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:380 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 msgid "Grupos eliminados" msgstr "Groups deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:386 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:387 msgid "Grupo eliminado" msgstr "Groep verwijderd" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:424 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 msgid "Crear Perfil" msgstr "Add Profile" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 msgid "Perfil creado" msgstr "Profiel toegevoegd" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:432 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 msgid "Actualizar Perfil" msgstr "Update Profile" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 msgid "Perfil actualizado" msgstr "Profiel bijgewerkt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:440 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 msgid "Perfiles eliminados" msgstr "Profiles deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:446 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:447 msgid "Perfil eliminado" msgstr "Profiel verwijderd" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:494 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 msgid "Actualizar Cliente" msgstr "Bijwerken Klant" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 msgid "Cliente actualizado" msgstr "Klant bijgewerkt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:502 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 msgid "Clientes eliminados" msgstr "Customers deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:556 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 msgid "Actualizar Categoría" msgstr "Update Category" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 msgid "Categoría actualizada" msgstr "Categorie bijgewerkt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:566 msgid "Categorías eliminadas" msgstr "Categories deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:614 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 msgid "Crear Autorización" msgstr "Add Authorization" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 msgid "Autorización creada" msgstr "Autorisatie toegevoegd" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:627 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 msgid "Actualizar Autorización" msgstr "Bijwerken Autorisatie" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 msgid "Autorización actualizada" msgstr "Autorisatie bijgewerkt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:635 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 msgid "Autorizaciones eliminadas" msgstr "Authorizations deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:639 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:640 msgid "Autorización eliminada" msgstr "Autorisatie verwijderd" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:668 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 msgid "Crear Campo" msgstr "Add Field" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 msgid "Campo creado" msgstr "Veld toegevoegd" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:675 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 msgid "Actualizar Campo" msgstr "Update Field" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldsUtil.class.php:288 msgid "Campo actualizado" msgstr "Veld bijgewerkt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:683 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 msgid "Campos eliminados" msgstr "Fields deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:687 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:688 msgid "Campo eliminado" msgstr "Veld verwijderd" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:722 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 msgid "Crear Enlace" msgstr "Create Link" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 msgid "Enlace creado" msgstr "Link created" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:732 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 #: ../../../../inc/themes/material-blue/views/account/actions.inc:69 msgid "Actualizar Enlace" msgstr "Update Link" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 msgid "Enlace actualizado" msgstr "Link updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:742 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:743 msgid "Enlaces eliminados" msgstr "Links deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:748 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 msgid "Enlace eliminado" msgstr "Link deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:779 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 msgid "Crear Etiqueta" msgstr "Add Tag" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 #: ../../../../inc/SP/Import/ImportBase.class.php:226 msgid "Etiqueta creada" msgstr "Tag added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:786 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 msgid "Actualizar Etiqueta" msgstr "Update Tag" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 msgid "Etiqueta actualizada" msgstr "Tag updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:794 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 msgid "Etiquetas eliminadas" msgstr "Tags deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:800 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:801 msgid "Etiqueta eliminada" msgstr "Tag removed" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:827 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:828 msgid "Archivos eliminados" msgstr "Files deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:866 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:874 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:881 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 msgid "Actualizar Plugin" msgstr "Update Plugin" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 msgid "Plugin habilitado" msgstr "Plugin enabled" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 msgid "Plugin deshabilitado" msgstr "Plugin disabled" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 msgid "Plugin restablecido" msgstr "Plugin reset" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:932 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 msgid "Actualizar Cuenta" msgstr "Bijwerken Account" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 msgid "Cuenta actualizada" msgstr "Account bijgewerkt" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 msgid "Cuenta restaurada" msgstr "Account hersteld" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:972 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1022 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:973 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1023 msgid "Cuentas eliminadas" msgstr "Accounts removed" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1019 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1020 msgid "Eliminar Cuenta (H)" msgstr "Delete Account (H)" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1053 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1054 msgid "Favorito añadido" msgstr "Favorite added" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1058 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1059 msgid "Favorito eliminado" msgstr "Favorite deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1075 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 msgid "Importación de usuarios de LDAP realizada" msgstr "LDAP users import finished" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1076 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1082 msgid "Usuarios importados" msgstr "Imported users" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1087 msgid "Error al importar usuarios de LDAP" msgstr "Error while importing the LDAP users" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1099 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1105 msgid "Notificación leída" msgstr "Notification read" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1107 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1113 msgid "Notificación creada" msgstr "Notification created" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1115 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 msgid "Notificación actualizada" msgstr "Notification updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1127 msgid "Notificaciones eliminadas" msgstr "Notifications deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1125 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1131 msgid "Notificación eliminada" msgstr "Notification deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1143 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1149 #: ../../../../inc/SP/Forms/NoticeForm.class.php:95 msgid "Es necesaria una descripción" msgstr "Een omschrijving is nodig" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1158 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1164 msgid "Solicitud de Modificación de Cuenta" msgstr "Aanvraag voor Account Modificatie" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1159 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1165 msgid "Solicitante" msgstr "Aanvrager" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1177 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1183 msgid "Solicitud enviada por correo" msgstr "Request sent by email" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1179 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1185 msgid "Solicitud no enviada por correo" msgstr "Request not sent by email" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1188 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 msgid "Solicitud" msgstr "Request" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1200 msgid "Solicitud realizada" msgstr "Request done" @@ -2485,60 +2486,60 @@ msgstr "Onderdelen en Aanpassingen" msgid "Registro de Eventos" msgstr "Event Log" -#: ../../../../inc/SP/Controller/MainController.class.php:368 +#: ../../../../inc/SP/Controller/MainController.class.php:360 #: ../../../../inc/SP/Core/Init.class.php:140 msgid "Versión de PHP requerida >= " msgstr "Vereiste PHP versie >=" -#: ../../../../inc/SP/Controller/MainController.class.php:369 +#: ../../../../inc/SP/Controller/MainController.class.php:361 #: ../../../../inc/SP/Core/Init.class.php:141 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" -#: ../../../../inc/SP/Controller/MainController.class.php:379 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#: ../../../../inc/SP/Controller/MainController.class.php:371 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:288 msgid "Módulo no disponible" msgstr "Module niet beschikbaar" -#: ../../../../inc/SP/Controller/MainController.class.php:380 +#: ../../../../inc/SP/Controller/MainController.class.php:372 msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Zonder deze module kan de applicatie niet goed werken" -#: ../../../../inc/SP/Controller/MainController.class.php:388 +#: ../../../../inc/SP/Controller/MainController.class.php:380 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)" -#: ../../../../inc/SP/Controller/MainController.class.php:389 +#: ../../../../inc/SP/Controller/MainController.class.php:381 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" -#: ../../../../inc/SP/Controller/MainController.class.php:395 +#: ../../../../inc/SP/Controller/MainController.class.php:387 msgid "No se encuentra el generador de números aleatorios." msgstr "Willekeurige wachtwoord generator niet gevonden" -#: ../../../../inc/SP/Controller/MainController.class.php:396 +#: ../../../../inc/SP/Controller/MainController.class.php:388 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" -#: ../../../../inc/SP/Controller/MainController.class.php:493 +#: ../../../../inc/SP/Controller/MainController.class.php:485 msgid "Descargar nueva versión" msgstr "Download nieuwe versie" -#: ../../../../inc/SP/Controller/MainController.class.php:505 +#: ../../../../inc/SP/Controller/MainController.class.php:497 msgid "Avisos de sysPass" msgstr "sysPass Mededelingen" -#: ../../../../inc/SP/Controller/MainController.class.php:608 +#: ../../../../inc/SP/Controller/MainController.class.php:600 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:75 msgid "Enlace visualizado" msgstr "Link viewed" -#: ../../../../inc/SP/Controller/MainController.class.php:611 +#: ../../../../inc/SP/Controller/MainController.class.php:603 msgid "Agente" msgstr "Agent" @@ -3824,21 +3825,21 @@ msgstr "Uw krijgt binnenkort een bevestigings email" msgid "Nuevo usuario de LDAP" msgstr "Nieuwe LDAP Gebruiker" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:185 -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:214 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:186 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:215 #, fuzzy msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Fout bij bijwerken gebruiker wachtwoord in de Database" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:65 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:66 msgid "Sincronización LDAP" msgstr "LDAP synchronization" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:115 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:120 msgid "No se encontraron objetos para sincronizar" msgstr "There aren't any objects to synchronize" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:121 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:126 msgid "Sincronización finalizada" msgstr "Synchronization finished" @@ -4247,12 +4248,12 @@ msgid "Limpiar Selección" msgstr "Clear Selection" #: ../../../../js/strings.js.php:77 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Favoritos" msgstr "Show Favorites" #: ../../../../js/strings.js.php:78 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Todos" msgstr "Show All" @@ -4326,7 +4327,7 @@ msgstr "Select date" #: ../../../../inc/themes/material-blue/views/config/general.inc:29 #: ../../../../inc/themes/material-blue/views/config/import.inc:89 #: ../../../../inc/themes/material-blue/views/config/info.inc:145 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:283 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:306 #: ../../../../inc/themes/material-blue/views/config/mail.inc:150 #: ../../../../inc/themes/material-blue/views/config/wiki.inc:276 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:137 @@ -4581,19 +4582,19 @@ msgstr "Get the private accounts for the current user" msgid "Búsqueda global" msgstr "Globale zoek opdracht" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:71 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:73 msgid "Filtrar Favoritos" msgstr "Favorites Filtering" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:85 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:87 msgid "Cuentas por página" msgstr "Accounts per pagina" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:91 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:93 msgid "Más Filtros" msgstr "More Filters" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:96 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:98 msgid "Seleccionar Etiqueta" msgstr "Select Tag" @@ -5424,7 +5425,19 @@ msgid "" msgstr " Definieert het standaard profiel voor de nieuwe LDAP-gebruikers ." #: ../../../../inc/themes/material-blue/views/config/ldap.inc:255 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:258 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#, fuzzy +msgid "Atributo Login" +msgstr "Login Attribute" + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:260 +#, fuzzy +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." + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:278 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:281 msgid "Resultados" msgstr "Results" @@ -5865,51 +5878,51 @@ msgstr "Laatste Toegang" msgid "Fecha Clave Maestra" msgstr "Master Wachtwoord datum" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:11 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:75 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:78 -msgid "Salir" -msgstr "Uitloggen" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:25 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:62 -msgid "Preferencias de usuario" -msgstr "Gebruiker voorkeuren" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:34 -#, php-format -msgid "Hay %d notificaciones pendientes" -msgstr "There are %d unread notifications" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:41 -msgid "No hay no hay notificaciones pendientes" -msgstr "There aren't any pending notifications" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 #, fuzzy msgid "Indica si la conexión utiliza HTTPS." msgstr "Laat zien of de verbinding HTTPS is" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 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. " -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:79 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:88 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:43 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:158 msgid "Demo" msgstr "Demo" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:90 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:54 msgid "Ayuda :: FAQ :: Changelog" msgstr "Help :: FAQ :: Changelog" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:94 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:58 msgid "Un proyecto de cygnux.org" msgstr "Een cygnux.org project" +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:39 +#, php-format +msgid "Hay %d notificaciones pendientes" +msgstr "There are %d unread notifications" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:48 +msgid "No hay no hay notificaciones pendientes" +msgstr "There aren't any pending notifications" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:73 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:132 +msgid "Preferencias de usuario" +msgstr "Gebruiker voorkeuren" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:77 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:145 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:148 +msgid "Salir" +msgstr "Uitloggen" + #: ../../../../inc/themes/material-blue/views/main/body-start.inc:4 msgid "Javascript es necesario para el correcto funcionamiento" msgstr "Javascript is benodigd om dit correct uit te voeren." diff --git a/inc/locales/po_PO/LC_MESSAGES/messages.mo b/inc/locales/po_PO/LC_MESSAGES/messages.mo index aa1a9c5c9f0448072fb4a00c20205199248be429..4191627f3941cbadfdf7ce1c311aedbbfc1b6e19 100644 GIT binary patch delta 22 ecmbP#oMrxTmJKTV*-aIUjI9hzH*4=NNdW+42nam@ delta 22 ecmbP#oMrxTmJKTV*^L#9jI2z}H*4=NNdW+476?HA diff --git a/inc/locales/po_PO/LC_MESSAGES/messages.po b/inc/locales/po_PO/LC_MESSAGES/messages.po index 0c48c3d3..7400b46d 100644 --- a/inc/locales/po_PO/LC_MESSAGES/messages.po +++ b/inc/locales/po_PO/LC_MESSAGES/messages.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" -"POT-Creation-Date: 2017-03-13 22:57+0100\n" +"POT-Creation-Date: 2017-03-15 23:05+0100\n" "PO-Revision-Date: \n" "Last-Translator: nuxsmin \n" "Language-Team: wseredynski\n" @@ -60,7 +60,7 @@ msgstr "Nieprawidłowy plik" #: ../../../../ajax/ajax_filesMgmt.php:104 #: ../../../../ajax/ajax_filesMgmt.php:166 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:842 #: ../../../../inc/SP/Core/Upgrade/Upgrade.class.php:437 #: ../../../../inc/SP/Mgmt/Files/File.class.php:97 #: ../../../../inc/themes/material-blue/views/config/import.inc:66 @@ -122,13 +122,13 @@ msgstr "ID" #: ../../../../inc/SP/Api/SyspassApi.class.php:85 #: ../../../../inc/SP/Controller/Grids/Items.class.php:280 #: ../../../../inc/SP/Controller/Grids/Items.class.php:832 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:839 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1160 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1166 #: ../../../../inc/SP/Controller/ItemShowController.class.php:530 -#: ../../../../inc/SP/Controller/MainController.class.php:609 +#: ../../../../inc/SP/Controller/MainController.class.php:601 #: ../../../../inc/SP/Import/ImportBase.class.php:165 #: ../../../../inc/SP/Mgmt/Files/File.class.php:96 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:77 @@ -141,9 +141,9 @@ msgstr "Konto" #: ../../../../inc/SP/Controller/Grids/Items.class.php:206 #: ../../../../inc/SP/Controller/Grids/Items.class.php:283 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:55 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 #: ../../../../inc/SP/Controller/LoginController.class.php:446 #: ../../../../inc/SP/Controller/LoginController.class.php:473 #: ../../../../inc/SP/Controller/LoginController.class.php:515 @@ -161,7 +161,7 @@ msgid "Tipo" msgstr "Typ" #: ../../../../ajax/ajax_filesMgmt.php:204 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:833 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:834 msgid "Archivo eliminado" msgstr "Plik został usunięty" @@ -218,18 +218,18 @@ msgid "Modificar Clave Usuario" msgstr "Edytuj hasło użytkownika" #: ../../../../ajax/ajax_passReset.php:99 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 msgid "Clave actualizada" msgstr "Hasło zostało zaktualizowane" #: ../../../../ajax/ajax_passReset.php:100 #: ../../../../inc/SP/Auth/Database/Database.class.php:92 #: ../../../../inc/SP/Controller/Grids/Items.class.php:474 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:247 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:268 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:279 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:105 #: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:320 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:37 @@ -375,7 +375,7 @@ msgstr "Błąd podczas aktualizacji hasła" #: ../../../../inc/SP/Account/AccountCrypt.class.php:271 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:165 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:291 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1077 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1083 msgid "Errores" msgstr "Błędy" @@ -488,18 +488,18 @@ msgstr "Pokaż hasło" #: ../../../../inc/SP/Api/SyspassApi.class.php:319 #: ../../../../inc/SP/Api/SyspassApi.class.php:372 #: ../../../../inc/SP/Api/SyspassApi.class.php:408 -#: ../../../../inc/SP/Controller/MainController.class.php:610 +#: ../../../../inc/SP/Controller/MainController.class.php:602 #: ../../../../inc/SP/Util/Wiki/DokuWikiApiBase.class.php:197 msgid "Origen" msgstr "Source" #: ../../../../inc/SP/Api/SyspassApi.class.php:189 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:922 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 msgid "Crear Cuenta" msgstr "Dodaj konto" #: ../../../../inc/SP/Api/SyspassApi.class.php:190 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 #: ../../../../inc/SP/Import/ImportBase.class.php:158 msgid "Cuenta creada" msgstr "Konto zostało dodane" @@ -521,39 +521,39 @@ msgstr "Konto zostało dodane" #: ../../../../inc/SP/Controller/Grids/Items.class.php:592 #: ../../../../inc/SP/Controller/Grids/Items.class.php:666 #: ../../../../inc/SP/Controller/Grids/Items.class.php:912 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:266 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:394 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:454 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:516 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:579 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:806 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:975 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1025 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:367 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:375 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:395 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:427 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:435 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:455 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:489 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:497 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:517 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:551 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:559 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:580 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:671 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:678 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:782 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:789 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:807 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:869 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:877 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:884 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:925 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:935 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:944 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:953 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:976 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:980 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1005 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1026 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1030 #: ../../../../inc/SP/Core/Plugin/PluginDataStore.class.php:77 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:12 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:9 @@ -585,7 +585,7 @@ msgstr "Account not found" #: ../../../../inc/SP/Controller/Grids/Items.class.php:384 #: ../../../../inc/SP/Controller/Grids/Items.class.php:454 #: ../../../../inc/SP/Controller/Grids/Items.class.php:455 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:969 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:970 #: ../../../../inc/SP/Core/Acl.class.php:192 #: ../../../../inc/themes/material-blue/views/account/actions.inc:39 #, fuzzy @@ -593,18 +593,18 @@ msgid "Eliminar Cuenta" msgstr "Usuń konto" #: ../../../../inc/SP/Api/SyspassApi.class.php:228 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:978 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1028 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 msgid "Cuenta eliminada" msgstr "Konto zostało usunięte" #: ../../../../inc/SP/Api/SyspassApi.class.php:280 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:548 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 msgid "Crear Categoría" msgstr "Dodaj kategorię" #: ../../../../inc/SP/Api/SyspassApi.class.php:281 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 #: ../../../../inc/SP/Import/ImportBase.class.php:182 msgid "Categoría creada" msgstr "Kategoria została dodana" @@ -617,23 +617,23 @@ msgstr "Kategorii nie znaleziono" #: ../../../../inc/SP/Api/SyspassApi.class.php:316 #: ../../../../inc/SP/Controller/Grids/Items.class.php:111 #: ../../../../inc/SP/Controller/Grids/Items.class.php:112 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:576 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:577 #: ../../../../inc/SP/Core/Acl.class.php:200 msgid "Eliminar Categoría" msgstr "Usuń kategorię" #: ../../../../inc/SP/Api/SyspassApi.class.php:317 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:571 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:572 msgid "Categoría eliminada" msgstr "Kategoria została usunięta" #: ../../../../inc/SP/Api/SyspassApi.class.php:369 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:486 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 msgid "Crear Cliente" msgstr "Dodaj klienta" #: ../../../../inc/SP/Api/SyspassApi.class.php:370 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 #: ../../../../inc/SP/Import/ImportBase.class.php:204 msgid "Cliente creado" msgstr "Klient został dodany" @@ -646,13 +646,13 @@ msgstr "Nie znaleziono klienta" #: ../../../../inc/SP/Api/SyspassApi.class.php:405 #: ../../../../inc/SP/Controller/Grids/Items.class.php:185 #: ../../../../inc/SP/Controller/Grids/Items.class.php:186 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:513 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:514 #: ../../../../inc/SP/Core/Acl.class.php:205 msgid "Eliminar Cliente" msgstr "Usuń klienta" #: ../../../../inc/SP/Api/SyspassApi.class.php:406 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:508 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:509 msgid "Cliente eliminado" msgstr "Klient został usunięty" @@ -673,7 +673,7 @@ msgstr "Bład podczas tworzenia kopii zapasowej" #: ../../../../inc/SP/Controller/ChecksController.class.php:142 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:699 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:722 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1084 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1090 #: ../../../../inc/SP/Import/Import.class.php:115 #, fuzzy msgid "Revise el registro de eventos para más detalles" @@ -849,7 +849,7 @@ msgid "Conexión a LDAP correcta" msgstr "Połączenie nawiązane (LDAP)" #: ../../../../inc/SP/Auth/Ldap/LdapBase.class.php:133 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:72 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:75 msgid "Objetos encontrados" msgstr "Znaleziono obiekty" @@ -889,11 +889,11 @@ msgstr "Błąd podczas szukania użytkownika w LDAPie" #: ../../../../inc/SP/Controller/AccountSearchController.class.php:368 #: ../../../../inc/SP/Controller/Grids/Items.class.php:748 #: ../../../../inc/SP/Controller/Grids/Items.class.php:835 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:617 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:630 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:727 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:737 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:752 #: ../../../../inc/SP/Controller/ItemShowController.class.php:408 #: ../../../../inc/SP/Controller/LoginController.class.php:261 #: ../../../../inc/SP/Controller/LoginController.class.php:368 @@ -902,7 +902,7 @@ msgstr "Błąd podczas szukania użytkownika w LDAPie" #: ../../../../inc/SP/Controller/LoginController.class.php:534 #: ../../../../inc/SP/Core/Init.class.php:615 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:78 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:104 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:108 #: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:64 #: ../../../../res/test.php:64 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:45 @@ -950,8 +950,8 @@ msgstr "Błąd podczas wyszukiwania grupy RDN" #: ../../../../inc/themes/material-blue/views/config/ldap.inc:201 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:71 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:73 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:47 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:18 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:137 msgid "Grupo" msgstr "Grupa" @@ -1052,8 +1052,8 @@ msgstr "Więcej akcji" #: ../../../../inc/SP/Controller/Grids/Items.class.php:281 #: ../../../../inc/SP/Controller/Grids/Items.class.php:350 #: ../../../../inc/SP/Controller/Grids/Items.class.php:403 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1161 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1167 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:23 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:29 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:21 @@ -1215,7 +1215,7 @@ msgstr "Maksymalny rozmiar pliku to 16 MB" #: ../../../../inc/SP/Controller/ConfigActionController.class.php:301 #: ../../../../inc/SP/Controller/ConfigController.class.php:203 #: ../../../../inc/SP/Controller/Grids/Items.class.php:365 -#: ../../../../inc/SP/Controller/MainController.class.php:616 +#: ../../../../inc/SP/Controller/MainController.class.php:608 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldTypes.class.php:90 #: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:13 #: ../../../../inc/themes/material-blue/views/itemshow/profiles.inc:30 @@ -1459,7 +1459,7 @@ msgid "No instalado" msgstr "Not installed" #: ../../../../inc/SP/Controller/ConfigController.class.php:434 -#: ../../../../inc/SP/Controller/MainController.class.php:618 +#: ../../../../inc/SP/Controller/MainController.class.php:610 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:77 msgid "Información" msgstr "Informacja" @@ -1515,7 +1515,7 @@ msgstr "Szukaj zdarzenia" #: ../../../../inc/SP/Controller/Grids/Items.class.php:131 #: ../../../../inc/SP/Controller/Grids/Items.class.php:593 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:57 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1162 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1168 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:37 #: ../../../../inc/themes/material-blue/views/itemshow/categories.inc:28 #: ../../../../inc/themes/material-blue/views/itemshow/customers.inc:32 @@ -1605,7 +1605,7 @@ msgstr "Edytuj pole" #: ../../../../inc/SP/Controller/Grids/Items.class.php:261 #: ../../../../inc/SP/Controller/Grids/Items.class.php:262 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:690 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:691 msgid "Eliminar Campo" msgstr "Usuń pole" @@ -1631,7 +1631,7 @@ msgstr "Pokaż plik" #: ../../../../inc/SP/Controller/Grids/Items.class.php:330 #: ../../../../inc/SP/Controller/Grids/Items.class.php:331 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:836 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:837 #: ../../../../inc/themes/material-blue/views/account/files-list.inc:26 msgid "Eliminar Archivo" msgstr "Usuń plik" @@ -1672,8 +1672,8 @@ msgstr "Konta (H)" #: ../../../../inc/SP/Controller/Grids/Items.class.php:444 #: ../../../../inc/SP/Controller/Grids/Items.class.php:445 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1002 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 msgid "Restaurar Cuenta" msgstr "Odzyskaj konto" @@ -1710,8 +1710,8 @@ msgstr "Nowy użytkownik" #: ../../../../inc/SP/Controller/Grids/Items.class.php:529 #: ../../../../inc/SP/Controller/Grids/Items.class.php:530 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1072 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:292 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1073 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:315 msgid "Importar usuarios de LDAP" msgstr "Import użytkowników z LDAPa" @@ -1728,15 +1728,15 @@ msgstr "Edytuj użytkownika" #: ../../../../inc/SP/Controller/Grids/Items.class.php:562 #: ../../../../inc/SP/Controller/Grids/Items.class.php:563 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:20 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:52 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:58 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:122 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:128 msgid "Cambiar Clave de Usuario" msgstr "Zmień hasło użytkownika" #: ../../../../inc/SP/Controller/Grids/Items.class.php:573 #: ../../../../inc/SP/Controller/Grids/Items.class.php:574 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:263 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:264 msgid "Eliminar Usuario" msgstr "Usuń użytkownika" @@ -1765,7 +1765,7 @@ msgstr "Edytuj grupę" #: ../../../../inc/SP/Controller/Grids/Items.class.php:647 #: ../../../../inc/SP/Controller/Grids/Items.class.php:648 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:391 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:392 msgid "Eliminar Grupo" msgstr "Usuń grupę" @@ -1797,7 +1797,7 @@ msgstr "Edytuj profil" #: ../../../../inc/SP/Controller/Grids/Items.class.php:729 #: ../../../../inc/SP/Controller/Grids/Items.class.php:730 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:451 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:452 msgid "Eliminar Perfil" msgstr "Usuń profil" @@ -1836,7 +1836,7 @@ msgstr "Edytuj upoważnienie" #: ../../../../inc/SP/Controller/Grids/Items.class.php:813 #: ../../../../inc/SP/Controller/Grids/Items.class.php:814 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:642 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:643 msgid "Eliminar Autorización" msgstr "Usuń upowaznienie" @@ -1886,7 +1886,7 @@ msgstr "Odśwież link" #: ../../../../inc/SP/Controller/Grids/Items.class.php:893 #: ../../../../inc/SP/Controller/Grids/Items.class.php:894 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:754 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:755 msgid "Eliminar Enlace" msgstr "Usuń link" @@ -1915,7 +1915,7 @@ msgstr "Edytuj tag" #: ../../../../inc/SP/Controller/Grids/Items.class.php:965 #: ../../../../inc/SP/Controller/Grids/Items.class.php:966 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:803 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:804 msgid "Eliminar Etiqueta" msgstr "Usuń tag" @@ -1962,8 +1962,9 @@ msgid "Leída" msgstr "Read" #: ../../../../inc/SP/Controller/Grids/Notices.class.php:76 -#: ../../../../inc/SP/Controller/MainController.class.php:315 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:79 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:108 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:116 msgid "Notificaciones" msgstr "Powiadomienia" @@ -1999,323 +2000,323 @@ msgstr "Edit Notification" msgid "Eliminar Notificación" msgstr "Usuń powiadomienia" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:228 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 msgid "Crear Usuario" msgstr "Dodaj użytkownika" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 msgid "Usuario creado" msgstr "Użytkownik został dodany" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:236 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:237 msgid "No se pudo realizar la petición de cambio de clave." msgstr "Nie można wykonać żądania zmiany hasła" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:243 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 msgid "Actualizar Usuario" msgstr "Update User" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:104 msgid "Usuario actualizado" msgstr "Użytkownik zostal zaktualizowany" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:253 msgid "Usuarios eliminados" msgstr "Usunięto użytkownika" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:258 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:259 msgid "Usuario eliminado" msgstr "Użytkownik został usunięty" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:275 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 msgid "Actualizar Clave Usuario" msgstr "Zmień hasło użytkownika" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:364 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 msgid "Crear Grupo" msgstr "Add Group" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 msgid "Grupo creado" msgstr "Grupa została dodana" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:372 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 msgid "Actualizar Grupo" msgstr "Aktualizacja grupy" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 msgid "Grupo actualizado" msgstr "Grupa została zaktualizowana" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:380 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 msgid "Grupos eliminados" msgstr "Groups deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:386 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:387 msgid "Grupo eliminado" msgstr "Grupa została usunięta" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:424 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 msgid "Crear Perfil" msgstr "Add Profile" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 msgid "Perfil creado" msgstr "Profil został dodany" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:432 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 msgid "Actualizar Perfil" msgstr "Aktualizuj profil" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 msgid "Perfil actualizado" msgstr "Profil został zaktualizowany" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:440 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 msgid "Perfiles eliminados" msgstr "Profiles deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:446 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:447 msgid "Perfil eliminado" msgstr "Profil został usunięty" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:494 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 msgid "Actualizar Cliente" msgstr "Aktualizuj klienta" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 msgid "Cliente actualizado" msgstr "Klient został zaktualizowany" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:502 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 msgid "Clientes eliminados" msgstr "Customers deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:556 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 msgid "Actualizar Categoría" msgstr "Aktualizuj kategorię" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 msgid "Categoría actualizada" msgstr "Kategoria została zaktualizowana" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:566 msgid "Categorías eliminadas" msgstr "Categories deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:614 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 msgid "Crear Autorización" msgstr "Dodaj autoryzację" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 msgid "Autorización creada" msgstr "Upoważnienie zostało dodane" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:627 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 msgid "Actualizar Autorización" msgstr "Aktaulizuj upoważnienie" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 msgid "Autorización actualizada" msgstr "Upowanienie zostało zaktualizowane" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:635 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 msgid "Autorizaciones eliminadas" msgstr "Authorizations deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:639 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:640 msgid "Autorización eliminada" msgstr "Upoważnienie zostało usunięte" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:668 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 msgid "Crear Campo" msgstr "Dodaj pole" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 msgid "Campo creado" msgstr "Pole zostało dodane" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:675 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 msgid "Actualizar Campo" msgstr "Aktualizuj pole" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldsUtil.class.php:288 msgid "Campo actualizado" msgstr "Pole zostało zaktualizowane" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:683 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 msgid "Campos eliminados" msgstr "Fields deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:687 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:688 msgid "Campo eliminado" msgstr "Pole zostało usunięte" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:722 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 #, fuzzy msgid "Crear Enlace" msgstr "Dodaj link" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 msgid "Enlace creado" msgstr "Link utworzony" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:732 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 #: ../../../../inc/themes/material-blue/views/account/actions.inc:69 msgid "Actualizar Enlace" msgstr "Aktualizuj link" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 msgid "Enlace actualizado" msgstr "Link zaktualizowany" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:742 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:743 msgid "Enlaces eliminados" msgstr "Links deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:748 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 msgid "Enlace eliminado" msgstr "Link usunięty" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:779 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 msgid "Crear Etiqueta" msgstr "Dodaj tag" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 #: ../../../../inc/SP/Import/ImportBase.class.php:226 msgid "Etiqueta creada" msgstr "Tag dodany" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:786 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 msgid "Actualizar Etiqueta" msgstr "Aktualizuj tag" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 msgid "Etiqueta actualizada" msgstr "Tag zaktualizowany" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:794 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 msgid "Etiquetas eliminadas" msgstr "Tags deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:800 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:801 msgid "Etiqueta eliminada" msgstr "Tag usunięty" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:827 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:828 msgid "Archivos eliminados" msgstr "Files deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:866 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:874 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:881 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 msgid "Actualizar Plugin" msgstr "Aktualizuj plugin" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 msgid "Plugin habilitado" msgstr "Plugin włączony" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 msgid "Plugin deshabilitado" msgstr "Plugin wyłączony" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 msgid "Plugin restablecido" msgstr "Resetuj plugin" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:932 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 msgid "Actualizar Cuenta" msgstr "Aktualizuj konto" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 msgid "Cuenta actualizada" msgstr "Konto zostało zaktualizowane" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 msgid "Cuenta restaurada" msgstr "Konto zostało odzyskane" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:972 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1022 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:973 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1023 msgid "Cuentas eliminadas" msgstr "Accounts removed" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1019 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1020 msgid "Eliminar Cuenta (H)" msgstr "Usuń konto (H)" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1053 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1054 msgid "Favorito añadido" msgstr "Dodano do ulubionych" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1058 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1059 msgid "Favorito eliminado" msgstr "Favorite deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1075 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 msgid "Importación de usuarios de LDAP realizada" msgstr "Zakończono import użytkowników LDAP" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1076 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1082 msgid "Usuarios importados" msgstr "Imported users" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1087 #, fuzzy msgid "Error al importar usuarios de LDAP" msgstr "Błąd podczas imortowania użytkowników LDAP" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1099 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1105 msgid "Notificación leída" msgstr "Notification read" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1107 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1113 msgid "Notificación creada" msgstr "Notification created" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1115 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 msgid "Notificación actualizada" msgstr "Notification updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1127 msgid "Notificaciones eliminadas" msgstr "Notifications deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1125 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1131 msgid "Notificación eliminada" msgstr "Powiadomienie usunięto" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1143 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1149 #: ../../../../inc/SP/Forms/NoticeForm.class.php:95 msgid "Es necesaria una descripción" msgstr "Opis jest wymagany" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1158 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1164 msgid "Solicitud de Modificación de Cuenta" msgstr "Zgłoszenie modyfikacji konta" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1159 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1165 msgid "Solicitante" msgstr "Zgłaszający" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1177 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1183 msgid "Solicitud enviada por correo" msgstr "Żądania wysłane mailem" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1179 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1185 msgid "Solicitud no enviada por correo" msgstr "Żądanie mailem nie zostało wysłane" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1188 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 msgid "Solicitud" msgstr "Żądanie" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1200 msgid "Solicitud realizada" msgstr "Żądanie wykonane" @@ -2490,58 +2491,58 @@ msgstr "Elementy i kustomizacje" msgid "Registro de Eventos" msgstr "Log" -#: ../../../../inc/SP/Controller/MainController.class.php:368 +#: ../../../../inc/SP/Controller/MainController.class.php:360 #: ../../../../inc/SP/Core/Init.class.php:140 msgid "Versión de PHP requerida >= " msgstr "Wymagana wersja PHP >=" -#: ../../../../inc/SP/Controller/MainController.class.php:369 +#: ../../../../inc/SP/Controller/MainController.class.php:361 #: ../../../../inc/SP/Core/Init.class.php:141 msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" msgstr "SysPass wymaga wyższej wersji PHP" -#: ../../../../inc/SP/Controller/MainController.class.php:379 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#: ../../../../inc/SP/Controller/MainController.class.php:371 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:288 msgid "Módulo no disponible" msgstr "Moduł niedostępny" -#: ../../../../inc/SP/Controller/MainController.class.php:380 +#: ../../../../inc/SP/Controller/MainController.class.php:372 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/Controller/MainController.class.php:388 +#: ../../../../inc/SP/Controller/MainController.class.php:380 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)" -#: ../../../../inc/SP/Controller/MainController.class.php:389 +#: ../../../../inc/SP/Controller/MainController.class.php:381 msgid "Actualice la versión de PHP para usar sysPass de forma segura" msgstr "Zaktualizuj PHP aby zapewnić bezpieczne używanie sysPass" -#: ../../../../inc/SP/Controller/MainController.class.php:395 +#: ../../../../inc/SP/Controller/MainController.class.php:387 msgid "No se encuentra el generador de números aleatorios." msgstr "Nie znaleziono generatora liczb losowych" -#: ../../../../inc/SP/Controller/MainController.class.php:396 +#: ../../../../inc/SP/Controller/MainController.class.php:388 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" -#: ../../../../inc/SP/Controller/MainController.class.php:493 +#: ../../../../inc/SP/Controller/MainController.class.php:485 msgid "Descargar nueva versión" msgstr "Pobierz nową wersję" -#: ../../../../inc/SP/Controller/MainController.class.php:505 +#: ../../../../inc/SP/Controller/MainController.class.php:497 msgid "Avisos de sysPass" msgstr "Komunikaty sysPass" -#: ../../../../inc/SP/Controller/MainController.class.php:608 +#: ../../../../inc/SP/Controller/MainController.class.php:600 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:75 msgid "Enlace visualizado" msgstr "Link wyświetlony" -#: ../../../../inc/SP/Controller/MainController.class.php:611 +#: ../../../../inc/SP/Controller/MainController.class.php:603 msgid "Agente" msgstr "Agent" @@ -3846,22 +3847,22 @@ msgstr "Powinieneś wkrótce otrzymać powiadomienie emailem" msgid "Nuevo usuario de LDAP" msgstr "Nowy użytkownik LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:185 -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:214 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:186 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:215 #, fuzzy msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Błąd poczas aktualizacji hasła uzytkownika" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:65 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:66 msgid "Sincronización LDAP" msgstr "Synchronizacja LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:115 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:120 #, fuzzy msgid "No se encontraron objetos para sincronizar" msgstr "Brak elementów do synchronizacji" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:121 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:126 msgid "Sincronización finalizada" msgstr "Synchronizacja zakończona" @@ -4276,12 +4277,12 @@ msgid "Limpiar Selección" msgstr "Usuń zaznaczenie" #: ../../../../js/strings.js.php:77 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Favoritos" msgstr "Pokaż ulubione" #: ../../../../js/strings.js.php:78 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Todos" msgstr "Pokaż wszystkie" @@ -4354,7 +4355,7 @@ msgstr "Wybierz datę" #: ../../../../inc/themes/material-blue/views/config/general.inc:29 #: ../../../../inc/themes/material-blue/views/config/import.inc:89 #: ../../../../inc/themes/material-blue/views/config/info.inc:145 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:283 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:306 #: ../../../../inc/themes/material-blue/views/config/mail.inc:150 #: ../../../../inc/themes/material-blue/views/config/wiki.inc:276 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:137 @@ -4606,19 +4607,19 @@ msgstr "Get the private accounts for the current user" msgid "Búsqueda global" msgstr "Globalne wyszukiwanie" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:71 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:73 msgid "Filtrar Favoritos" msgstr "Filtruj ulubione" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:85 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:87 msgid "Cuentas por página" msgstr "Kont na stronę" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:91 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:93 msgid "Más Filtros" msgstr "Więcej filtrów" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:96 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:98 msgid "Seleccionar Etiqueta" msgstr "Wybierz tag" @@ -5443,7 +5444,19 @@ msgid "" msgstr "Definiuje domyślną grupę nowych użytkowników LDAP" #: ../../../../inc/themes/material-blue/views/config/ldap.inc:255 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:258 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#, fuzzy +msgid "Atributo Login" +msgstr "Login Attribute" + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:260 +#, fuzzy +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." + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:278 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:281 msgid "Resultados" msgstr "Wyniki" @@ -5877,32 +5890,12 @@ msgstr "Ostatnie logowanie" msgid "Fecha Clave Maestra" msgstr "Data głównego hasła" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:11 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:75 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:78 -msgid "Salir" -msgstr "Wyloguj" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:25 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:62 -msgid "Preferencias de usuario" -msgstr "Ustawienia użytkownika" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:34 -#, php-format -msgid "Hay %d notificaciones pendientes" -msgstr "Masz %d nieprzeczytanych powiadomień" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:41 -msgid "No hay no hay notificaciones pendientes" -msgstr "There aren't any pending notifications" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 #, fuzzy msgid "Indica si la conexión utiliza HTTPS." msgstr "Informuje czy połączenie używa HTTPS" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 msgid "" "Las claves de formularios enviados se encriptan mediante PKI, el resto de " "datos no." @@ -5910,19 +5903,39 @@ msgstr "" "Hasła wysyłane przez formularze są zaszyfrowane przez PKI, pozostałe dane " "nie są." -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:79 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:88 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:43 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:158 msgid "Demo" msgstr "Demo" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:90 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:54 msgid "Ayuda :: FAQ :: Changelog" msgstr "Pomoc :: FAQ :: Lista zmian" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:94 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:58 msgid "Un proyecto de cygnux.org" msgstr "Projekt cygnux.org" +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:39 +#, php-format +msgid "Hay %d notificaciones pendientes" +msgstr "Masz %d nieprzeczytanych powiadomień" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:48 +msgid "No hay no hay notificaciones pendientes" +msgstr "There aren't any pending notifications" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:73 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:132 +msgid "Preferencias de usuario" +msgstr "Ustawienia użytkownika" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:77 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:145 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:148 +msgid "Salir" +msgstr "Wyloguj" + #: ../../../../inc/themes/material-blue/views/main/body-start.inc:4 msgid "Javascript es necesario para el correcto funcionamiento" msgstr "JavaSript jest wymagany do prawidłowego funkcjonowania" diff --git a/inc/locales/ru_RU/LC_MESSAGES/messages.mo b/inc/locales/ru_RU/LC_MESSAGES/messages.mo index a99843f5b1cc6fe9c67c9113be6e42f5c99f2522..947ca3edee73b93cac5d29088a80f9f64862b639 100644 GIT binary patch delta 22 ecmZ2^m38G+)(sVV*-aIUjI9jJHrMafS_=Sez6lcm delta 22 ecmZ2^m38G+)(sVV*^L#9jI2z}H`njgS_=Se#t9Yx diff --git a/inc/locales/ru_RU/LC_MESSAGES/messages.po b/inc/locales/ru_RU/LC_MESSAGES/messages.po index 79c44a8e..2cde9058 100644 --- a/inc/locales/ru_RU/LC_MESSAGES/messages.po +++ b/inc/locales/ru_RU/LC_MESSAGES/messages.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" -"POT-Creation-Date: 2017-03-13 22:57+0100\n" +"POT-Creation-Date: 2017-03-15 23:06+0100\n" "PO-Revision-Date: \n" "Last-Translator: nuxsmin \n" "Language-Team: Alexander Titov,Alex Us\n" @@ -60,7 +60,7 @@ msgstr "Ошибочный файл" #: ../../../../ajax/ajax_filesMgmt.php:104 #: ../../../../ajax/ajax_filesMgmt.php:166 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:842 #: ../../../../inc/SP/Core/Upgrade/Upgrade.class.php:437 #: ../../../../inc/SP/Mgmt/Files/File.class.php:97 #: ../../../../inc/themes/material-blue/views/config/import.inc:66 @@ -122,13 +122,13 @@ msgstr "ID" #: ../../../../inc/SP/Api/SyspassApi.class.php:85 #: ../../../../inc/SP/Controller/Grids/Items.class.php:280 #: ../../../../inc/SP/Controller/Grids/Items.class.php:832 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:839 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1160 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1166 #: ../../../../inc/SP/Controller/ItemShowController.class.php:530 -#: ../../../../inc/SP/Controller/MainController.class.php:609 +#: ../../../../inc/SP/Controller/MainController.class.php:601 #: ../../../../inc/SP/Import/ImportBase.class.php:165 #: ../../../../inc/SP/Mgmt/Files/File.class.php:96 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:77 @@ -141,9 +141,9 @@ msgstr "Учетная запись" #: ../../../../inc/SP/Controller/Grids/Items.class.php:206 #: ../../../../inc/SP/Controller/Grids/Items.class.php:283 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:55 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:725 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:735 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:750 #: ../../../../inc/SP/Controller/LoginController.class.php:446 #: ../../../../inc/SP/Controller/LoginController.class.php:473 #: ../../../../inc/SP/Controller/LoginController.class.php:515 @@ -161,7 +161,7 @@ msgid "Tipo" msgstr "Тип" #: ../../../../ajax/ajax_filesMgmt.php:204 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:833 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:834 msgid "Archivo eliminado" msgstr "Файл удален" @@ -219,18 +219,18 @@ msgid "Modificar Clave Usuario" msgstr "Изменить пароль пользователя" #: ../../../../ajax/ajax_passReset.php:99 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 msgid "Clave actualizada" msgstr "Пароль изменен" #: ../../../../ajax/ajax_passReset.php:100 #: ../../../../inc/SP/Auth/Database/Database.class.php:92 #: ../../../../inc/SP/Controller/Grids/Items.class.php:474 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:232 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:247 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:268 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:279 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:105 #: ../../../../inc/SP/Mgmt/Users/UserPass.class.php:320 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:37 @@ -375,7 +375,7 @@ msgstr "Ошибка изменения пароля учетной записи #: ../../../../inc/SP/Account/AccountCrypt.class.php:271 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:165 #: ../../../../inc/SP/Account/AccountHistoryCrypt.class.php:291 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1077 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1083 msgid "Errores" msgstr "Ошибки" @@ -489,18 +489,18 @@ msgstr "Показать пароль" #: ../../../../inc/SP/Api/SyspassApi.class.php:319 #: ../../../../inc/SP/Api/SyspassApi.class.php:372 #: ../../../../inc/SP/Api/SyspassApi.class.php:408 -#: ../../../../inc/SP/Controller/MainController.class.php:610 +#: ../../../../inc/SP/Controller/MainController.class.php:602 #: ../../../../inc/SP/Util/Wiki/DokuWikiApiBase.class.php:197 msgid "Origen" msgstr "Источник" #: ../../../../inc/SP/Api/SyspassApi.class.php:189 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:922 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 msgid "Crear Cuenta" msgstr "Добавить учетную запись" #: ../../../../inc/SP/Api/SyspassApi.class.php:190 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:923 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 #: ../../../../inc/SP/Import/ImportBase.class.php:158 msgid "Cuenta creada" msgstr "Учетная запись создана" @@ -522,39 +522,39 @@ msgstr "Учетная запись создана" #: ../../../../inc/SP/Controller/Grids/Items.class.php:592 #: ../../../../inc/SP/Controller/Grids/Items.class.php:666 #: ../../../../inc/SP/Controller/Grids/Items.class.php:912 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:266 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:277 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:394 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:454 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:516 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:579 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:806 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:924 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:943 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:975 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1025 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:231 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:246 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:267 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:278 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:367 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:375 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:395 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:427 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:435 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:455 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:489 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:497 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:517 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:551 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:559 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:580 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:671 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:678 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:782 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:789 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:807 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:869 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:877 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:884 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:925 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:935 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:944 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:953 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:976 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:980 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1005 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1026 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1030 #: ../../../../inc/SP/Core/Plugin/PluginDataStore.class.php:77 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:12 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:9 @@ -586,7 +586,7 @@ msgstr "Account not found" #: ../../../../inc/SP/Controller/Grids/Items.class.php:384 #: ../../../../inc/SP/Controller/Grids/Items.class.php:454 #: ../../../../inc/SP/Controller/Grids/Items.class.php:455 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:969 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:970 #: ../../../../inc/SP/Core/Acl.class.php:192 #: ../../../../inc/themes/material-blue/views/account/actions.inc:39 #, fuzzy @@ -594,18 +594,18 @@ msgid "Eliminar Cuenta" msgstr "Удалить учетную запись" #: ../../../../inc/SP/Api/SyspassApi.class.php:228 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:978 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1028 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:979 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1029 msgid "Cuenta eliminada" msgstr "Учетная запись удалена" #: ../../../../inc/SP/Api/SyspassApi.class.php:280 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:548 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 msgid "Crear Categoría" msgstr "Добавить категорию" #: ../../../../inc/SP/Api/SyspassApi.class.php:281 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:549 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:550 #: ../../../../inc/SP/Import/ImportBase.class.php:182 msgid "Categoría creada" msgstr "Категория создана" @@ -618,23 +618,23 @@ msgstr "Категория не найдена" #: ../../../../inc/SP/Api/SyspassApi.class.php:316 #: ../../../../inc/SP/Controller/Grids/Items.class.php:111 #: ../../../../inc/SP/Controller/Grids/Items.class.php:112 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:576 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:577 #: ../../../../inc/SP/Core/Acl.class.php:200 msgid "Eliminar Categoría" msgstr "Удалить категорию" #: ../../../../inc/SP/Api/SyspassApi.class.php:317 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:571 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:572 msgid "Categoría eliminada" msgstr "Категория удалена" #: ../../../../inc/SP/Api/SyspassApi.class.php:369 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:486 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 msgid "Crear Cliente" msgstr "Добавить заказчика" #: ../../../../inc/SP/Api/SyspassApi.class.php:370 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:487 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:488 #: ../../../../inc/SP/Import/ImportBase.class.php:204 msgid "Cliente creado" msgstr "Заказчик добавлен" @@ -647,13 +647,13 @@ msgstr "Заказчик не найден" #: ../../../../inc/SP/Api/SyspassApi.class.php:405 #: ../../../../inc/SP/Controller/Grids/Items.class.php:185 #: ../../../../inc/SP/Controller/Grids/Items.class.php:186 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:513 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:514 #: ../../../../inc/SP/Core/Acl.class.php:205 msgid "Eliminar Cliente" msgstr "Удалить заказчика" #: ../../../../inc/SP/Api/SyspassApi.class.php:406 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:508 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:509 msgid "Cliente eliminado" msgstr "Заказчик удален" @@ -674,7 +674,7 @@ msgstr "Ошибка при выполнении резервной копии" #: ../../../../inc/SP/Controller/ChecksController.class.php:142 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:699 #: ../../../../inc/SP/Controller/ConfigActionController.class.php:722 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1084 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1090 #: ../../../../inc/SP/Import/Import.class.php:115 #, fuzzy msgid "Revise el registro de eventos para más detalles" @@ -852,7 +852,7 @@ msgid "Conexión a LDAP correcta" msgstr "Подключение к LDAP успешно" #: ../../../../inc/SP/Auth/Ldap/LdapBase.class.php:133 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:72 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:75 msgid "Objetos encontrados" msgstr "Найдено объектов" @@ -892,11 +892,11 @@ msgstr "Ошибка поиска пользователя в LDAP" #: ../../../../inc/SP/Controller/AccountSearchController.class.php:368 #: ../../../../inc/SP/Controller/Grids/Items.class.php:748 #: ../../../../inc/SP/Controller/Grids/Items.class.php:835 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:726 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:736 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:751 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:617 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:630 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:727 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:737 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:752 #: ../../../../inc/SP/Controller/ItemShowController.class.php:408 #: ../../../../inc/SP/Controller/LoginController.class.php:261 #: ../../../../inc/SP/Controller/LoginController.class.php:368 @@ -905,7 +905,7 @@ msgstr "Ошибка поиска пользователя в LDAP" #: ../../../../inc/SP/Controller/LoginController.class.php:534 #: ../../../../inc/SP/Core/Init.class.php:615 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:78 -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:104 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:108 #: ../../../../inc/SP/Mgmt/Users/UserPreferencesUtil.class.php:64 #: ../../../../res/test.php:64 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:45 @@ -953,8 +953,8 @@ msgstr "Ошибка поиска группы в RDN" #: ../../../../inc/themes/material-blue/views/config/ldap.inc:201 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:71 #: ../../../../inc/themes/material-blue/views/itemshow/users.inc:73 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:47 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:18 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:137 msgid "Grupo" msgstr "Группа" @@ -1055,8 +1055,8 @@ msgstr "Другие действия" #: ../../../../inc/SP/Controller/Grids/Items.class.php:281 #: ../../../../inc/SP/Controller/Grids/Items.class.php:350 #: ../../../../inc/SP/Controller/Grids/Items.class.php:403 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:840 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1161 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:841 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1167 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:23 #: ../../../../inc/themes/material-blue/views/account/account-editpass.inc:29 #: ../../../../inc/themes/material-blue/views/account/account-link.inc:21 @@ -1218,7 +1218,7 @@ msgstr "Максимальный размер файла 16MB" #: ../../../../inc/SP/Controller/ConfigActionController.class.php:301 #: ../../../../inc/SP/Controller/ConfigController.class.php:203 #: ../../../../inc/SP/Controller/Grids/Items.class.php:365 -#: ../../../../inc/SP/Controller/MainController.class.php:616 +#: ../../../../inc/SP/Controller/MainController.class.php:608 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldTypes.class.php:90 #: ../../../../inc/themes/material-blue/views/account/linkedAccounts.inc:13 #: ../../../../inc/themes/material-blue/views/itemshow/profiles.inc:30 @@ -1461,7 +1461,7 @@ msgid "No instalado" msgstr "Не установлено" #: ../../../../inc/SP/Controller/ConfigController.class.php:434 -#: ../../../../inc/SP/Controller/MainController.class.php:618 +#: ../../../../inc/SP/Controller/MainController.class.php:610 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:77 msgid "Información" msgstr "Информация" @@ -1517,7 +1517,7 @@ msgstr "Поиск событий" #: ../../../../inc/SP/Controller/Grids/Items.class.php:131 #: ../../../../inc/SP/Controller/Grids/Items.class.php:593 #: ../../../../inc/SP/Controller/Grids/Notices.class.php:57 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1162 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1168 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:37 #: ../../../../inc/themes/material-blue/views/itemshow/categories.inc:28 #: ../../../../inc/themes/material-blue/views/itemshow/customers.inc:32 @@ -1607,7 +1607,7 @@ msgstr "Изменить поле" #: ../../../../inc/SP/Controller/Grids/Items.class.php:261 #: ../../../../inc/SP/Controller/Grids/Items.class.php:262 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:690 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:691 msgid "Eliminar Campo" msgstr "Удалить поле" @@ -1633,7 +1633,7 @@ msgstr "Показать файл" #: ../../../../inc/SP/Controller/Grids/Items.class.php:330 #: ../../../../inc/SP/Controller/Grids/Items.class.php:331 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:836 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:837 #: ../../../../inc/themes/material-blue/views/account/files-list.inc:26 msgid "Eliminar Archivo" msgstr "Удалить файл" @@ -1674,8 +1674,8 @@ msgstr "Accounts (H)" #: ../../../../inc/SP/Controller/Grids/Items.class.php:444 #: ../../../../inc/SP/Controller/Grids/Items.class.php:445 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:950 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1002 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 msgid "Restaurar Cuenta" msgstr "Восстановление учетной записи" @@ -1712,8 +1712,8 @@ msgstr "Создать пользователя" #: ../../../../inc/SP/Controller/Grids/Items.class.php:529 #: ../../../../inc/SP/Controller/Grids/Items.class.php:530 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1072 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:292 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1073 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:315 msgid "Importar usuarios de LDAP" msgstr "Импорт пользователей из LDAP" @@ -1730,15 +1730,15 @@ msgstr "Редактировать пользователя" #: ../../../../inc/SP/Controller/Grids/Items.class.php:562 #: ../../../../inc/SP/Controller/Grids/Items.class.php:563 -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:20 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:52 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:58 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:67 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:122 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:128 msgid "Cambiar Clave de Usuario" msgstr "Изменить пароль пользователя" #: ../../../../inc/SP/Controller/Grids/Items.class.php:573 #: ../../../../inc/SP/Controller/Grids/Items.class.php:574 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:263 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:264 msgid "Eliminar Usuario" msgstr "Удалить пользователя" @@ -1767,7 +1767,7 @@ msgstr "Редактировать группу" #: ../../../../inc/SP/Controller/Grids/Items.class.php:647 #: ../../../../inc/SP/Controller/Grids/Items.class.php:648 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:391 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:392 msgid "Eliminar Grupo" msgstr "Удалить группу" @@ -1799,7 +1799,7 @@ msgstr "Редактировать профиль" #: ../../../../inc/SP/Controller/Grids/Items.class.php:729 #: ../../../../inc/SP/Controller/Grids/Items.class.php:730 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:451 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:452 msgid "Eliminar Perfil" msgstr "Удалить профиль" @@ -1838,7 +1838,7 @@ msgstr "Редактировать авторизацию" #: ../../../../inc/SP/Controller/Grids/Items.class.php:813 #: ../../../../inc/SP/Controller/Grids/Items.class.php:814 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:642 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:643 msgid "Eliminar Autorización" msgstr "Удалить авторизацию" @@ -1888,7 +1888,7 @@ msgstr "Обновить ссылку" #: ../../../../inc/SP/Controller/Grids/Items.class.php:893 #: ../../../../inc/SP/Controller/Grids/Items.class.php:894 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:754 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:755 msgid "Eliminar Enlace" msgstr "Удалить ссылку" @@ -1917,7 +1917,7 @@ msgstr "Редактировать тег" #: ../../../../inc/SP/Controller/Grids/Items.class.php:965 #: ../../../../inc/SP/Controller/Grids/Items.class.php:966 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:803 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:804 msgid "Eliminar Etiqueta" msgstr "Удалить тег" @@ -1964,8 +1964,9 @@ msgid "Leída" msgstr "Чтение" #: ../../../../inc/SP/Controller/Grids/Notices.class.php:76 -#: ../../../../inc/SP/Controller/MainController.class.php:315 #: ../../../../inc/themes/material-blue/inc/Icons.class.php:79 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:108 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:116 msgid "Notificaciones" msgstr "Уведомления" @@ -2001,323 +2002,323 @@ msgstr "Edit Notification" msgid "Eliminar Notificación" msgstr "Удалить уведомление" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:228 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 msgid "Crear Usuario" msgstr "Добавить пользователя" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:229 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:230 msgid "Usuario creado" msgstr "Пользователь создан" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:236 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:237 msgid "No se pudo realizar la petición de cambio de clave." msgstr "Выполнить запрос на смену пароля невозможно." -#: ../../../../inc/SP/Controller/ItemActionController.class.php:243 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 msgid "Actualizar Usuario" msgstr "Изменить пользователя" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:244 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:245 #: ../../../../inc/SP/Mgmt/Users/UserMigrate.class.php:104 msgid "Usuario actualizado" msgstr "Данные пользователя обновлены" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:252 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:253 msgid "Usuarios eliminados" msgstr "Users deleted" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:258 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:259 msgid "Usuario eliminado" msgstr "Пользователь удален" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:275 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:276 msgid "Actualizar Clave Usuario" msgstr "Изменить пароль пользователя" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:364 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 msgid "Crear Grupo" msgstr "Добавить группу" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:365 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:366 msgid "Grupo creado" msgstr "Группа создана" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:372 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 msgid "Actualizar Grupo" msgstr "Обновить группу" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:373 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:374 msgid "Grupo actualizado" msgstr "Группа обновлена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:380 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:381 msgid "Grupos eliminados" msgstr "Группы удалены" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:386 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:387 msgid "Grupo eliminado" msgstr "Группа удалена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:424 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 msgid "Crear Perfil" msgstr "Добавить профиль" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:425 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:426 msgid "Perfil creado" msgstr "Профиль создан" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:432 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 msgid "Actualizar Perfil" msgstr "Изменить профиль" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:433 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:434 msgid "Perfil actualizado" msgstr "Профиль изменен" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:440 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:441 msgid "Perfiles eliminados" msgstr "Профили удалены" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:446 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:447 msgid "Perfil eliminado" msgstr "Профиль удален" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:494 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 msgid "Actualizar Cliente" msgstr "Изменить заказчика" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:495 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:496 msgid "Cliente actualizado" msgstr "Информация о заказчике обновлена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:502 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:503 msgid "Clientes eliminados" msgstr "Клиенты удалены" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:556 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 msgid "Actualizar Categoría" msgstr "Изменить категорию" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:557 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:558 msgid "Categoría actualizada" msgstr "Информация о категории изменена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:565 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:566 msgid "Categorías eliminadas" msgstr "Категории удалены" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:614 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 msgid "Crear Autorización" msgstr "Добавить авторизацию" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:615 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:616 msgid "Autorización creada" msgstr "Авторизация создана" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:627 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 msgid "Actualizar Autorización" msgstr "Обновить авторизацию" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:628 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:629 msgid "Autorización actualizada" msgstr "Авторизация изменена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:635 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:636 msgid "Autorizaciones eliminadas" msgstr "Авторизация удалена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:639 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:640 msgid "Autorización eliminada" msgstr "Авторизация удалена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:668 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 msgid "Crear Campo" msgstr "Добавить поле" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:669 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:670 msgid "Campo creado" msgstr "Поле создано" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:675 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 msgid "Actualizar Campo" msgstr "Изменить поле" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:676 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:677 #: ../../../../inc/SP/Mgmt/CustomFields/CustomFieldsUtil.class.php:288 msgid "Campo actualizado" msgstr "Поле обновлено" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:683 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:684 msgid "Campos eliminados" msgstr "Поля удалены" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:687 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:688 msgid "Campo eliminado" msgstr "Поле удалено" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:722 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 #, fuzzy msgid "Crear Enlace" msgstr "Добавить ссылку" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:723 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:724 msgid "Enlace creado" msgstr "Ссылка создана" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:732 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 #: ../../../../inc/themes/material-blue/views/account/actions.inc:69 msgid "Actualizar Enlace" msgstr "Обновить ссылку" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:733 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:734 msgid "Enlace actualizado" msgstr "Ссылка обновлена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:742 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:743 msgid "Enlaces eliminados" msgstr "Ссылки удалены" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:748 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:749 msgid "Enlace eliminado" msgstr "Ссылка удалена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:779 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 msgid "Crear Etiqueta" msgstr "Добавить тег" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:780 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:781 #: ../../../../inc/SP/Import/ImportBase.class.php:226 msgid "Etiqueta creada" msgstr "Тег добавлен" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:786 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 msgid "Actualizar Etiqueta" msgstr "Изменить тег" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:787 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:788 msgid "Etiqueta actualizada" msgstr "Тег обновлен" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:794 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:795 msgid "Etiquetas eliminadas" msgstr "Тэги удалены" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:800 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:801 msgid "Etiqueta eliminada" msgstr "Тег удален" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:827 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:828 msgid "Archivos eliminados" msgstr "Файлы удалены" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:866 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:874 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:881 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 msgid "Actualizar Plugin" msgstr "Обновить плагин" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:867 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:868 msgid "Plugin habilitado" msgstr "Плагин включен" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:875 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:876 msgid "Plugin deshabilitado" msgstr "Плагин отключен" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:882 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:883 msgid "Plugin restablecido" msgstr "Плагин сброшен" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:932 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:941 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:942 msgid "Actualizar Cuenta" msgstr "Редактировать учетную запись" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:933 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:934 msgid "Cuenta actualizada" msgstr "Информация об учетной записи изменена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:951 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1003 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:952 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1004 msgid "Cuenta restaurada" msgstr "Учетная запись восстановлена" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:972 -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1022 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:973 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1023 msgid "Cuentas eliminadas" msgstr "Учетные записи удалены" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1019 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1020 msgid "Eliminar Cuenta (H)" msgstr "Delete Account (H)" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1053 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1054 msgid "Favorito añadido" msgstr "Добавлено в избранное" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1058 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1059 msgid "Favorito eliminado" msgstr "Удалено из избранного" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1075 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 msgid "Importación de usuarios de LDAP realizada" msgstr "Импорт пользователей из LDAP завершен" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1076 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1082 msgid "Usuarios importados" msgstr "Импортированные пользователи" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1081 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1087 #, fuzzy msgid "Error al importar usuarios de LDAP" msgstr "Ошибка при импорте пользователей из LDAP" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1099 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1105 msgid "Notificación leída" msgstr "Уведомление прочитано" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1107 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1113 msgid "Notificación creada" msgstr "Создано уведомление" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1115 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 msgid "Notificación actualizada" msgstr "Notification updated" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1121 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1127 msgid "Notificaciones eliminadas" msgstr "Уведомление удалено" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1125 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1131 msgid "Notificación eliminada" msgstr "Уведомление удалено" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1143 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1149 #: ../../../../inc/SP/Forms/NoticeForm.class.php:95 msgid "Es necesaria una descripción" msgstr "Необходимо описание" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1158 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1164 msgid "Solicitud de Modificación de Cuenta" msgstr "Запрос на изменение учетной записи" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1159 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1165 msgid "Solicitante" msgstr "Запросил" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1177 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1183 msgid "Solicitud enviada por correo" msgstr "Запрос отправлен по email" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1179 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1185 msgid "Solicitud no enviada por correo" msgstr "Запрос не отправлен по email" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1188 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 msgid "Solicitud" msgstr "Запрос" -#: ../../../../inc/SP/Controller/ItemActionController.class.php:1194 +#: ../../../../inc/SP/Controller/ItemActionController.class.php:1200 msgid "Solicitud realizada" msgstr "Запрос выполнен" @@ -2492,59 +2493,59 @@ msgstr "Элементы персонализации" msgid "Registro de Eventos" msgstr "Журнал событий" -#: ../../../../inc/SP/Controller/MainController.class.php:368 +#: ../../../../inc/SP/Controller/MainController.class.php:360 #: ../../../../inc/SP/Core/Init.class.php:140 msgid "Versión de PHP requerida >= " msgstr "Необходим PHP версии >= " -#: ../../../../inc/SP/Controller/MainController.class.php:369 +#: ../../../../inc/SP/Controller/MainController.class.php:361 #: ../../../../inc/SP/Core/Init.class.php:141 msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" msgstr "Пожалуйста, обновите PHP для использования sysPass" -#: ../../../../inc/SP/Controller/MainController.class.php:379 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#: ../../../../inc/SP/Controller/MainController.class.php:371 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:288 msgid "Módulo no disponible" msgstr "Модуль недоступен" -#: ../../../../inc/SP/Controller/MainController.class.php:380 +#: ../../../../inc/SP/Controller/MainController.class.php:372 msgid "Sin este módulo la aplicación puede no funcionar correctamente." msgstr "Без этого модуля программа не может работать корректно" -#: ../../../../inc/SP/Controller/MainController.class.php:388 +#: ../../../../inc/SP/Controller/MainController.class.php:380 msgid "La version de PHP es vulnerable al ataque NULL Byte (CVE-2006-7243)" msgstr "Данная версия PHP уязвима NULL Byte attack (CVE-2006-7243)" -#: ../../../../inc/SP/Controller/MainController.class.php:389 +#: ../../../../inc/SP/Controller/MainController.class.php:381 msgid "Actualice la versión de PHP para usar sysPass de forma segura" msgstr "Пожалуйста, обновите версию PHP для безопасного использования sysPass" -#: ../../../../inc/SP/Controller/MainController.class.php:395 +#: ../../../../inc/SP/Controller/MainController.class.php:387 msgid "No se encuentra el generador de números aleatorios." msgstr "Не могу найти генератор случайных чисел." -#: ../../../../inc/SP/Controller/MainController.class.php:396 +#: ../../../../inc/SP/Controller/MainController.class.php:388 msgid "" "Sin esta función un atacante puede utilizar su cuenta al resetear la clave" msgstr "" "Без этой функции, атакующий может завладеть вашим аккаунтом при сбросе " "пароля." -#: ../../../../inc/SP/Controller/MainController.class.php:493 +#: ../../../../inc/SP/Controller/MainController.class.php:485 msgid "Descargar nueva versión" msgstr "Скачать новую версию" -#: ../../../../inc/SP/Controller/MainController.class.php:505 +#: ../../../../inc/SP/Controller/MainController.class.php:497 msgid "Avisos de sysPass" msgstr "Уведомления sysPass" -#: ../../../../inc/SP/Controller/MainController.class.php:608 +#: ../../../../inc/SP/Controller/MainController.class.php:600 #: ../../../../inc/SP/Mgmt/PublicLinks/PublicLink.class.php:75 msgid "Enlace visualizado" msgstr "Ссылка показана" -#: ../../../../inc/SP/Controller/MainController.class.php:611 +#: ../../../../inc/SP/Controller/MainController.class.php:603 msgid "Agente" msgstr "Агент" @@ -3846,22 +3847,22 @@ msgstr "Вы получите письмо в скором времени." msgid "Nuevo usuario de LDAP" msgstr "Пользователь LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:185 -#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:214 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:186 +#: ../../../../inc/SP/Mgmt/Users/UserLdap.class.php:215 #, fuzzy msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Ошибка изменения пароля пользователя в БД" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:65 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:66 msgid "Sincronización LDAP" msgstr "Синхронизация LDAP" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:115 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:120 #, fuzzy msgid "No se encontraron objetos para sincronizar" msgstr "Нет объектов для синхронизации" -#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:121 +#: ../../../../inc/SP/Mgmt/Users/UserLdapSync.class.php:126 msgid "Sincronización finalizada" msgstr "Синхронизация завершена" @@ -4276,12 +4277,12 @@ msgid "Limpiar Selección" msgstr "Очистить выбор" #: ../../../../js/strings.js.php:77 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Favoritos" msgstr "Показать избранное" #: ../../../../js/strings.js.php:78 -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:68 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:70 msgid "Mostrar Todos" msgstr "Показать все" @@ -4355,7 +4356,7 @@ msgstr "Выберите дату" #: ../../../../inc/themes/material-blue/views/config/general.inc:29 #: ../../../../inc/themes/material-blue/views/config/import.inc:89 #: ../../../../inc/themes/material-blue/views/config/info.inc:145 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:283 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:306 #: ../../../../inc/themes/material-blue/views/config/mail.inc:150 #: ../../../../inc/themes/material-blue/views/config/wiki.inc:276 #: ../../../../inc/themes/material-blue/views/eventlog/eventlog.inc:137 @@ -4609,19 +4610,19 @@ msgstr "Get the private accounts for the current user" msgid "Búsqueda global" msgstr "Глобальный поиск" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:71 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:73 msgid "Filtrar Favoritos" msgstr "Фильтр избранного" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:85 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:87 msgid "Cuentas por página" msgstr "Учетных записей на страницу" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:91 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:93 msgid "Más Filtros" msgstr "Больше фильтров" -#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:96 +#: ../../../../inc/themes/material-blue/views/accountsearch/searchbox.inc:98 msgid "Seleccionar Etiqueta" msgstr "Выберите теги" @@ -5453,7 +5454,19 @@ msgid "" msgstr "Задает профиль по умолчанию для новых пользователей из LDAP." #: ../../../../inc/themes/material-blue/views/config/ldap.inc:255 -#: ../../../../inc/themes/material-blue/views/config/ldap.inc:258 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:265 +#, fuzzy +msgid "Atributo Login" +msgstr "Login Attribute" + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:260 +#, fuzzy +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." + +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:278 +#: ../../../../inc/themes/material-blue/views/config/ldap.inc:281 msgid "Resultados" msgstr "Результаты" @@ -5892,51 +5905,51 @@ msgstr "Последний доступ" msgid "Fecha Clave Maestra" msgstr "Дата мастер-пароля" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:11 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:75 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:78 -msgid "Salir" -msgstr "Выйти" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:25 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:62 -msgid "Preferencias de usuario" -msgstr "Настройки пользователя" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:34 -#, php-format -msgid "Hay %d notificaciones pendientes" -msgstr "%d непрочитанных уведомлений" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:41 -#, fuzzy -msgid "No hay no hay notificaciones pendientes" -msgstr "Нет ожидающих уведомлений" - -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 #, fuzzy msgid "Indica si la conexión utiliza HTTPS." msgstr "Указывает, используется ли соединение по протоколу HTTPS." -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:74 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:38 msgid "" "Las claves de formularios enviados se encriptan mediante PKI, el resto de " "datos no." msgstr "Пароли при передаче форм шифруются с PKI, остальные данные - нет." -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:79 -#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:88 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:43 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:158 msgid "Demo" msgstr "Демо" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:90 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:54 msgid "Ayuda :: FAQ :: Changelog" msgstr "Help :: FAQ :: Changelog" -#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:94 +#: ../../../../inc/themes/material-blue/views/main/body-footer.inc:58 msgid "Un proyecto de cygnux.org" msgstr "Проект cygnux.org" +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:39 +#, php-format +msgid "Hay %d notificaciones pendientes" +msgstr "%d непрочитанных уведомлений" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:48 +#, fuzzy +msgid "No hay no hay notificaciones pendientes" +msgstr "Нет ожидающих уведомлений" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:73 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:132 +msgid "Preferencias de usuario" +msgstr "Настройки пользователя" + +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:77 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:145 +#: ../../../../inc/themes/material-blue/views/main/body-header-menu.inc:148 +msgid "Salir" +msgstr "Выйти" + #: ../../../../inc/themes/material-blue/views/main/body-start.inc:4 msgid "Javascript es necesario para el correcto funcionamiento" msgstr "Javascript необходим для корректной работы" diff --git a/inc/themes/material-blue/views/config/ldap.inc b/inc/themes/material-blue/views/config/ldap.inc index f859dc24..d4017eec 100644 --- a/inc/themes/material-blue/views/config/ldap.inc +++ b/inc/themes/material-blue/views/config/ldap.inc @@ -221,7 +221,7 @@ + value="id; ?>" id === $ldapDefaultGroup ? 'selected' : ''; ?>>name; ?> @@ -245,11 +245,34 @@ + value="id; ?>" id === $ldapDefaultProfile) ? 'selected' : ''; ?>>name; ?> + + + +
getIconHelp()->getIcon(); ?>
+
+

+ +

+
+ + +
+ + + + diff --git a/js/app-actions.js b/js/app-actions.js index 46593cd5..7f888fb5 100644 --- a/js/app-actions.js +++ b/js/app-actions.js @@ -1250,7 +1250,9 @@ sysPass.Actions = function (Common) { opts.data = { actionId: $obj.data("action-id"), sk: Common.sk.get(), - isAjax: 1 + isAjax: 1, + ldap_loginattribute: $("#ldap_loginattribute").val(), + ldap_ads: $("#ldap_ads").prop('checked') }; Common.appRequests().getActionCall(opts, function (json) { diff --git a/js/app-actions.min.js b/js/app-actions.min.js index 6246f816..9e27c40a 100644 --- a/js/app-actions.min.js +++ b/js/app-actions.min.js @@ -24,22 +24,22 @@ b.status?c.msg.out(b):l(a,b.data.html)})},"delete":function(a){d.info("appMgmt:d b=c.appRequests().getRequestOpts();b.url=f.appMgmt.save;b.data={itemId:e?h:a.data("item-id"),actionId:a.data("action-id"),sk:c.sk.get(),isAjax:1};c.appRequests().getActionCall(b,function(b){c.msg.out(b);a.data("nextaction-id")&&g({actionId:a.data("nextaction-id"),itemId:a.data("activetab")})})}}})},save:function(a){d.info("appMgmt:save");var b=c.appRequests().getRequestOpts();b.url=f.appMgmt.save;b.data=a.serialize();c.appRequests().getActionCall(b,function(b){c.msg.out(b);0===b.status&&(b=a.data("activetab"), !0===n.refreshTab&&void 0!==b&&g({actionId:a.data("nextaction-id"),itemId:b}),$.magnificPopup.close())})},search:function(a){d.info("appMgmt:search");var b=$(a.data("target")),e=c.appRequests().getRequestOpts();e.url=f.appMgmt.search;e.method="get";e.data=a.serialize();c.appRequests().getActionCall(e,function(a){0===a.status?b.html(a.data.html):b.html(c.msg.html.error(a.description));c.sk.set(a.csrf)})},nav:function(a){d.info("appMgmt:nav");var b=$("#"+a.data("action-form"));b.find("[name='start']").val(a.data("start")); b.find("[name='count']").val(a.data("count"));b.find("[name='sk']").val(c.sk.get());n.search(b)},ldapSync:function(a){d.info("appMgmt:ldapSync");var b='

'+c.config().LANG[57]+"

";mdlDialog().show({text:b,negative:{title:c.config().LANG[44],onClick:function(a){a.preventDefault();c.msg.error(c.config().LANG[44])}},positive:{title:c.config().LANG[43],onClick:function(b){b=c.appRequests().getRequestOpts();b.url=f.appMgmt.save;b.data={actionId:a.data("action-id"), -sk:c.sk.get(),isAjax:1};c.appRequests().getActionCall(b,function(a){c.msg.out(a)})}}})}};return{doAction:g,appMgmt:n,account:m,file:{view:function(a){d.info("file:view");var b=c.appRequests().getRequestOpts();b.url=f.file;b.type="html";b.data={fileId:a.data("item-id"),sk:c.sk.get(),actionId:a.data("action-id")};c.appRequests().getActionCall(b,function(b){void 0!==b.status&&1===b.status?c.msg.out(b):b?r(a,b):c.msg.error(c.config().LANG[14])})},download:function(a){d.info("file:download");a={fileId:a.data("item-id"), -sk:c.sk.get(),actionId:a.data("action-id")};$.fileDownload(c.config().APP_ROOT+f.file,{httpMethod:"POST",data:a})},"delete":function(a){d.info("file:delete");var b='

'+c.config().LANG[15]+"

";mdlDialog().show({text:b,negative:{title:c.config().LANG[44],onClick:function(a){a.preventDefault();c.msg.error(c.config().LANG[44])}},positive:{title:c.config().LANG[43],onClick:function(b){b=c.appRequests().getRequestOpts();b.url=f.file;b.data={fileId:a.data("item-id"), -actionId:a.data("action-id"),sk:c.sk.get()};c.appRequests().getActionCall(b,function(a){c.msg.out(a);0===a.status&&(a=$("#list-account-files"),m.getfiles(a))})}}})}},checks:{ldap:function(a){d.info("checks:ldap");a=$(a.data("src"));a.find("[name='sk']").val(c.sk.get());var b=c.appRequests().getRequestOpts();b.url=f.checks;b.data=a.serialize();c.appRequests().getActionCall(b,function(a){c.msg.out(a);var b=$("#ldap-results");b.find(".list-wrap").html(c.appTheme().html.getList(a.data));b.show("slow")})}, -wiki:function(a){d.info("checks:wiki");a=$(a.data("src"));a.find("[name='sk']").val(c.sk.get());var b=c.appRequests().getRequestOpts();b.url=f.checks;b.data=a.serialize();c.appRequests().getActionCall(b,function(a){c.msg.out(a);0===a.status&&$("#dokuWikiResCheck").html(a.data)})}},config:{save:function(a){d.info("config:save");var b=c.appRequests().getRequestOpts();b.url=f.config.save;b.data=a.serialize();"masterpass"===a.data("type")&&(b.useFullLoading=!0);c.appRequests().getActionCall(b,function(b){c.msg.out(b); -0===b.status&&(void 0!==a.data("nextaction-id")?g({actionId:a.data("nextaction-id"),itemId:a.data("activetab")}):void 0!==a.data("reload")&&setTimeout(function(){c.redirect("index.php")},2E3))})},masterpass:function(a){var b='

'+c.config().LANG[59]+"

";mdlDialog().show({text:b,negative:{title:c.config().LANG[44],onClick:function(b){b.preventDefault();c.msg.error(c.config().LANG[44]);a.find(":input[type=password]").val("")}},positive:{title:c.config().LANG[43], -onClick:function(b){b=a.find("input[name='useTask']");var e=$("#taskStatus");e.empty().html(c.config().LANG[62]);if(0";mdlDialog().show({text:e,negative:{title:c.config().LANG[44],onClick:function(a){a.preventDefault();c.appRequests().getActionCall(b,function(a){c.msg.out(a)})}},positive:{title:c.config().LANG[43],onClick:function(e){e.preventDefault();b.data.notify=1;c.appRequests().getActionCall(b,function(b){c.msg.out(b);g({actionId:a.data("nextaction-id"), -itemId:a.data("item-id")})})}}})},refresh:function(a){d.info("link:refresh");var b={itemId:a.data("item-id"),actionId:a.data("action-id"),sk:c.sk.get(),activeTab:a.data("activetab")},e=c.appRequests().getRequestOpts();e.url=f.link;e.data=b;c.appRequests().getActionCall(e,function(b){c.msg.out(b);0===b.status&&g({actionId:a.data("nextaction-id"),itemId:a.data("activetab")})})}},eventlog:{nav:function(a){if(void 0===a.data("start"))return!1;var b=c.appRequests().getRequestOpts();b.url=f.eventlog;b.method= -"get";b.type="html";b.data={actionId:a.data("action-id"),sk:c.sk.get(),isAjax:1,start:a.data("start"),count:a.data("count"),current:a.data("current")};c.appRequests().getActionCall(b,function(a){$("#content").html(a);c.scrollUp()})},clear:function(a){var b='

'+c.config().LANG[20]+"

";mdlDialog().show({text:b,negative:{title:c.config().LANG[44],onClick:function(a){a.preventDefault();c.msg.error(c.config().LANG[44])}},positive:{title:c.config().LANG[43],onClick:function(b){b.preventDefault(); -b=c.appRequests().getRequestOpts();b.url=f.eventlog;b.method="get";b.data={clear:1,sk:c.sk.get(),isAjax:1};c.appRequests().getActionCall(b,function(b){c.msg.out(b);0==b.status&&g({actionId:a.data("nextaction-id")})})}}})}},ajaxUrl:f,plugin:{toggle:function(a){d.info("plugin:enable");a={itemId:a.data("item-id"),actionId:a.data("action-id"),sk:c.sk.get(),activeTab:a.data("activetab")};var b=c.appRequests().getRequestOpts();b.url=f.appMgmt.save;b.data=a;c.appRequests().getActionCall(b,function(a){c.msg.out(a); -0===a.status&&setTimeout(function(){c.redirect("index.php")},2E3)})},reset:function(a){d.info("plugin:reset");var b='

'+c.config().LANG[58]+"

";mdlDialog().show({text:b,negative:{title:c.config().LANG[44],onClick:function(a){a.preventDefault();c.msg.error(c.config().LANG[44])}},positive:{title:c.config().LANG[43],onClick:function(b){b.preventDefault();b={itemId:a.data("item-id"),actionId:a.data("action-id"),sk:c.sk.get(),activeTab:a.data("activetab")};var e= -c.appRequests().getRequestOpts();e.url=f.appMgmt.save;e.data=b;c.appRequests().getActionCall(e,function(a){c.msg.out(a)})}}})}},notice:{check:function(a){d.info("notice:check");var b={itemId:a.data("item-id"),actionId:a.data("action-id"),sk:c.sk.get()},e=c.appRequests().getRequestOpts();e.url=f.appMgmt.save;e.data=b;c.appRequests().getActionCall(e,function(b){c.msg.out(b);0===b.status&&g({actionId:a.data("nextaction-id"),itemId:a.data("activetab")})})},search:function(a){d.info("notice:search");var b= -$(a.data("target")),e=c.appRequests().getRequestOpts();e.url=f.notice.search;e.method="get";e.data=a.serialize();c.appRequests().getActionCall(e,function(a){0===a.status?b.html(a.data.html):b.html(c.msg.html.error(a.description));c.sk.set(a.csrf)})},show:function(a){d.info("notice:show");var b=c.appRequests().getRequestOpts();b.url=f.notice.show;b.method="get";b.data={itemId:a.data("item-id"),actionId:a.data("action-id"),activeTab:a.data("activetab"),sk:c.sk.get(),isAjax:1};c.appRequests().getActionCall(b, -function(b){0!==b.status?c.msg.out(b):l(a,b.data.html)})}},wiki:{show:function(a){d.info("wiki:show");var b=c.appRequests().getRequestOpts();b.url=f.wiki.show;b.method="get";b.data={pageName:a.data("pagename"),actionId:a.data("action-id"),sk:c.sk.get(),isAjax:1};c.appRequests().getActionCall(b,function(b){0!==b.status?c.msg.out(b):l(a,b.data.html)})}},items:p}}; +sk:c.sk.get(),isAjax:1,ldap_loginattribute:$("#ldap_loginattribute").val(),ldap_ads:$("#ldap_ads").prop("checked")};c.appRequests().getActionCall(b,function(a){c.msg.out(a)})}}})}};return{doAction:g,appMgmt:n,account:m,file:{view:function(a){d.info("file:view");var b=c.appRequests().getRequestOpts();b.url=f.file;b.type="html";b.data={fileId:a.data("item-id"),sk:c.sk.get(),actionId:a.data("action-id")};c.appRequests().getActionCall(b,function(b){void 0!==b.status&&1===b.status?c.msg.out(b):b?r(a,b): +c.msg.error(c.config().LANG[14])})},download:function(a){d.info("file:download");a={fileId:a.data("item-id"),sk:c.sk.get(),actionId:a.data("action-id")};$.fileDownload(c.config().APP_ROOT+f.file,{httpMethod:"POST",data:a})},"delete":function(a){d.info("file:delete");var b='

'+c.config().LANG[15]+"

";mdlDialog().show({text:b,negative:{title:c.config().LANG[44],onClick:function(a){a.preventDefault();c.msg.error(c.config().LANG[44])}},positive:{title:c.config().LANG[43], +onClick:function(b){b=c.appRequests().getRequestOpts();b.url=f.file;b.data={fileId:a.data("item-id"),actionId:a.data("action-id"),sk:c.sk.get()};c.appRequests().getActionCall(b,function(a){c.msg.out(a);0===a.status&&(a=$("#list-account-files"),m.getfiles(a))})}}})}},checks:{ldap:function(a){d.info("checks:ldap");a=$(a.data("src"));a.find("[name='sk']").val(c.sk.get());var b=c.appRequests().getRequestOpts();b.url=f.checks;b.data=a.serialize();c.appRequests().getActionCall(b,function(a){c.msg.out(a); +var b=$("#ldap-results");b.find(".list-wrap").html(c.appTheme().html.getList(a.data));b.show("slow")})},wiki:function(a){d.info("checks:wiki");a=$(a.data("src"));a.find("[name='sk']").val(c.sk.get());var b=c.appRequests().getRequestOpts();b.url=f.checks;b.data=a.serialize();c.appRequests().getActionCall(b,function(a){c.msg.out(a);0===a.status&&$("#dokuWikiResCheck").html(a.data)})}},config:{save:function(a){d.info("config:save");var b=c.appRequests().getRequestOpts();b.url=f.config.save;b.data=a.serialize(); +"masterpass"===a.data("type")&&(b.useFullLoading=!0);c.appRequests().getActionCall(b,function(b){c.msg.out(b);0===b.status&&(void 0!==a.data("nextaction-id")?g({actionId:a.data("nextaction-id"),itemId:a.data("activetab")}):void 0!==a.data("reload")&&setTimeout(function(){c.redirect("index.php")},2E3))})},masterpass:function(a){var b='

'+c.config().LANG[59]+"

";mdlDialog().show({text:b,negative:{title:c.config().LANG[44],onClick:function(b){b.preventDefault(); +c.msg.error(c.config().LANG[44]);a.find(":input[type=password]").val("")}},positive:{title:c.config().LANG[43],onClick:function(b){b=a.find("input[name='useTask']");var e=$("#taskStatus");e.empty().html(c.config().LANG[62]);if(0";mdlDialog().show({text:e,negative:{title:c.config().LANG[44],onClick:function(a){a.preventDefault();c.appRequests().getActionCall(b,function(a){c.msg.out(a)})}},positive:{title:c.config().LANG[43],onClick:function(e){e.preventDefault(); +b.data.notify=1;c.appRequests().getActionCall(b,function(b){c.msg.out(b);g({actionId:a.data("nextaction-id"),itemId:a.data("item-id")})})}}})},refresh:function(a){d.info("link:refresh");var b={itemId:a.data("item-id"),actionId:a.data("action-id"),sk:c.sk.get(),activeTab:a.data("activetab")},e=c.appRequests().getRequestOpts();e.url=f.link;e.data=b;c.appRequests().getActionCall(e,function(b){c.msg.out(b);0===b.status&&g({actionId:a.data("nextaction-id"),itemId:a.data("activetab")})})}},eventlog:{nav:function(a){if(void 0=== +a.data("start"))return!1;var b=c.appRequests().getRequestOpts();b.url=f.eventlog;b.method="get";b.type="html";b.data={actionId:a.data("action-id"),sk:c.sk.get(),isAjax:1,start:a.data("start"),count:a.data("count"),current:a.data("current")};c.appRequests().getActionCall(b,function(a){$("#content").html(a);c.scrollUp()})},clear:function(a){var b='

'+c.config().LANG[20]+"

";mdlDialog().show({text:b,negative:{title:c.config().LANG[44],onClick:function(a){a.preventDefault(); +c.msg.error(c.config().LANG[44])}},positive:{title:c.config().LANG[43],onClick:function(b){b.preventDefault();b=c.appRequests().getRequestOpts();b.url=f.eventlog;b.method="get";b.data={clear:1,sk:c.sk.get(),isAjax:1};c.appRequests().getActionCall(b,function(b){c.msg.out(b);0==b.status&&g({actionId:a.data("nextaction-id")})})}}})}},ajaxUrl:f,plugin:{toggle:function(a){d.info("plugin:enable");a={itemId:a.data("item-id"),actionId:a.data("action-id"),sk:c.sk.get(),activeTab:a.data("activetab")};var b= +c.appRequests().getRequestOpts();b.url=f.appMgmt.save;b.data=a;c.appRequests().getActionCall(b,function(a){c.msg.out(a);0===a.status&&setTimeout(function(){c.redirect("index.php")},2E3)})},reset:function(a){d.info("plugin:reset");var b='

'+c.config().LANG[58]+"

";mdlDialog().show({text:b,negative:{title:c.config().LANG[44],onClick:function(a){a.preventDefault();c.msg.error(c.config().LANG[44])}},positive:{title:c.config().LANG[43],onClick:function(b){b.preventDefault(); +b={itemId:a.data("item-id"),actionId:a.data("action-id"),sk:c.sk.get(),activeTab:a.data("activetab")};var e=c.appRequests().getRequestOpts();e.url=f.appMgmt.save;e.data=b;c.appRequests().getActionCall(e,function(a){c.msg.out(a)})}}})}},notice:{check:function(a){d.info("notice:check");var b={itemId:a.data("item-id"),actionId:a.data("action-id"),sk:c.sk.get()},e=c.appRequests().getRequestOpts();e.url=f.appMgmt.save;e.data=b;c.appRequests().getActionCall(e,function(b){c.msg.out(b);0===b.status&&g({actionId:a.data("nextaction-id"), +itemId:a.data("activetab")})})},search:function(a){d.info("notice:search");var b=$(a.data("target")),e=c.appRequests().getRequestOpts();e.url=f.notice.search;e.method="get";e.data=a.serialize();c.appRequests().getActionCall(e,function(a){0===a.status?b.html(a.data.html):b.html(c.msg.html.error(a.description));c.sk.set(a.csrf)})},show:function(a){d.info("notice:show");var b=c.appRequests().getRequestOpts();b.url=f.notice.show;b.method="get";b.data={itemId:a.data("item-id"),actionId:a.data("action-id"), +activeTab:a.data("activetab"),sk:c.sk.get(),isAjax:1};c.appRequests().getActionCall(b,function(b){0!==b.status?c.msg.out(b):l(a,b.data.html)})}},wiki:{show:function(a){d.info("wiki:show");var b=c.appRequests().getRequestOpts();b.url=f.wiki.show;b.method="get";b.data={pageName:a.data("pagename"),actionId:a.data("action-id"),sk:c.sk.get(),isAjax:1};c.appRequests().getActionCall(b,function(b){0!==b.status?c.msg.out(b):l(a,b.data.html)})}},items:p}};