From 59f1a70d5ebdf0906e8352f81f6ae2d1bd00a0d1 Mon Sep 17 00:00:00 2001 From: Rune Darrud Date: Tue, 30 Aug 2016 22:26:56 +0200 Subject: [PATCH 1/3] Add support for nested AD groups resolved from the user This will make sure that nested groups also work with roles. Signed-off-by: Alexander A. Klimov refs #12598 --- .../UserGroup/LdapUserGroupBackendForm.php | 13 +++++ .../UserGroup/LdapUserGroupBackend.php | 53 +++++++++++++++++-- 2 files changed, 61 insertions(+), 5 deletions(-) diff --git a/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php b/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php index 35b32580f..ac89d1777 100644 --- a/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php +++ b/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php @@ -89,6 +89,19 @@ class LdapUserGroupBackendForm extends Form $groupConfigDisabled = $userConfigDisabled = true; } + if ($formData['type'] === 'msldap') { + $this->addElement( + 'checkbox', + 'nested_group_search_in_ad', + array( + 'description' => $this->translate( + 'Check this box for nested group search in Active Directory based on the user' + ), + 'label' => $this->translate('Nested Group Search') + ) + ); + } + $this->createGroupConfigElements($defaults, $groupConfigDisabled); if (count($userBackends) === 1 || (isset($formData['user_backend']) && $formData['user_backend'] === 'none')) { $this->createUserConfigElements($defaults, $userConfigDisabled); diff --git a/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php b/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php index 3f912b0ca..d8db257af 100644 --- a/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php +++ b/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php @@ -93,6 +93,13 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt */ protected $groupFilter; + /** + * ActiveDirectory nested group on the user? + * + * @var bool + */ + protected $nestedGroupSearchInAD; + /** * The columns which are not permitted to be queried * @@ -364,6 +371,33 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt return $this->groupFilter; } + /** + * Set nestedGroupSearchInAD for the group query + * + * @param string $enable + * + * @return bool + */ + public function setNestedGroupSearchInAD($enable) + { + if ($enable == "1") { + $this->nestedGroupSearchInAD = true; + } else { + $this->nestedGroupSearchInAD = false; + } + return $this; + } + + /** + * Get nestedGroupSearchInAD for the group query + * + * @return bool + */ + public function getNestedGroupSearchInAD() + { + return $this->nestedGroupSearchInAD; + } + /** * Return whether the attribute name where to find a group's member holds ambiguous values * @@ -620,10 +654,16 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt } } + if ($this->nestedGroupSearchInAD) { + $groupMemberAttribute = $this->groupMemberAttribute . ':1.2.840.113556.1.4.1941:'; + } else { + $groupMemberAttribute = $this->groupMemberAttribute; + } + $groupQuery = $this->ds ->select() ->from($this->groupClass, array($this->groupNameAttribute)) - ->where($this->groupMemberAttribute, $queryValue) + ->where($groupMemberAttribute, $queryValue) ->setBase($this->groupBaseDn); if ($this->groupFilter) { $groupQuery->setNativeFilter($this->groupFilter); @@ -706,7 +746,8 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt ->setUserNameAttribute($config->get('user_name_attribute', $defaults->user_name_attribute)) ->setGroupMemberAttribute($config->get('group_member_attribute', $defaults->group_member_attribute)) ->setGroupFilter($config->group_filter) - ->setUserFilter($config->user_filter); + ->setUserFilter($config->user_filter) + ->setNestedGroupSearchInAD($config->get('nested_group_search_in_ad', $defaults->nested_group_search_in_ad)); } /** @@ -721,7 +762,8 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt 'user_class' => 'inetOrgPerson', 'group_name_attribute' => 'gid', 'user_name_attribute' => 'uid', - 'group_member_attribute' => 'member' + 'group_member_attribute' => 'member', + 'nested_group_search_in_ad' => '0' )); } @@ -737,7 +779,8 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt 'user_class' => 'user', 'group_name_attribute' => 'sAMAccountName', 'user_name_attribute' => 'sAMAccountName', - 'group_member_attribute' => 'member' + 'group_member_attribute' => 'member', + 'nested_group_search_in_ad' => '0' )); } -} \ No newline at end of file +} From 648f088564e40556d51d9c2e40366e4409ba8647 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Wed, 7 Dec 2016 17:45:50 +0100 Subject: [PATCH 2/3] Conform to coding guidelines refs #12598 --- .../UserGroup/LdapUserGroupBackendForm.php | 5 ++- .../UserGroup/LdapUserGroupBackend.php | 34 ++++++++----------- 2 files changed, 19 insertions(+), 20 deletions(-) diff --git a/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php b/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php index ac89d1777..4f280d832 100644 --- a/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php +++ b/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php @@ -92,7 +92,7 @@ class LdapUserGroupBackendForm extends Form if ($formData['type'] === 'msldap') { $this->addElement( 'checkbox', - 'nested_group_search_in_ad', + 'nested_group_search', array( 'description' => $this->translate( 'Check this box for nested group search in Active Directory based on the user' @@ -100,6 +100,9 @@ class LdapUserGroupBackendForm extends Form 'label' => $this->translate('Nested Group Search') ) ); + } else { + // This is required to purge already present options + $this->addElement('hidden', 'nested_group_search', array('disabled' => true)); } $this->createGroupConfigElements($defaults, $groupConfigDisabled); diff --git a/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php b/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php index d8db257af..9625d73e2 100644 --- a/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php +++ b/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php @@ -98,7 +98,7 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt * * @var bool */ - protected $nestedGroupSearchInAD; + protected $nestedGroupSearch; /** * The columns which are not permitted to be queried @@ -372,30 +372,26 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt } /** - * Set nestedGroupSearchInAD for the group query + * Set nestedGroupSearch for the group query * - * @param string $enable + * @param bool $enable * - * @return bool + * @return $this */ - public function setNestedGroupSearchInAD($enable) + public function setNestedGroupSearch($enable = true) { - if ($enable == "1") { - $this->nestedGroupSearchInAD = true; - } else { - $this->nestedGroupSearchInAD = false; - } + $this->nestedGroupSearch = $enable; return $this; } /** - * Get nestedGroupSearchInAD for the group query + * Get nestedGroupSearch for the group query * * @return bool */ - public function getNestedGroupSearchInAD() + public function getNestedGroupSearch() { - return $this->nestedGroupSearchInAD; + return $this->nestedGroupSearch; } /** @@ -654,10 +650,10 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt } } - if ($this->nestedGroupSearchInAD) { - $groupMemberAttribute = $this->groupMemberAttribute . ':1.2.840.113556.1.4.1941:'; + if ($this->nestedGroupSearch) { + $groupMemberAttribute = $this->groupMemberAttribute . ':1.2.840.113556.1.4.1941:'; } else { - $groupMemberAttribute = $this->groupMemberAttribute; + $groupMemberAttribute = $this->groupMemberAttribute; } $groupQuery = $this->ds @@ -747,7 +743,7 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt ->setGroupMemberAttribute($config->get('group_member_attribute', $defaults->group_member_attribute)) ->setGroupFilter($config->group_filter) ->setUserFilter($config->user_filter) - ->setNestedGroupSearchInAD($config->get('nested_group_search_in_ad', $defaults->nested_group_search_in_ad)); + ->setNestedGroupSearch((bool) $config->get('nested_group_search', $defaults->nested_group_search)); } /** @@ -763,7 +759,7 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt 'group_name_attribute' => 'gid', 'user_name_attribute' => 'uid', 'group_member_attribute' => 'member', - 'nested_group_search_in_ad' => '0' + 'nested_group_search' => '0' )); } @@ -780,7 +776,7 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt 'group_name_attribute' => 'sAMAccountName', 'user_name_attribute' => 'sAMAccountName', 'group_member_attribute' => 'member', - 'nested_group_search_in_ad' => '0' + 'nested_group_search' => '0' )); } } From 01dd60c0feb0e1f052038783581fb880f371c330 Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Wed, 7 Dec 2016 18:06:32 +0100 Subject: [PATCH 3/3] Fix missing German translation refs #12598 --- .../locale/de_DE/LC_MESSAGES/icinga.mo | Bin 61085 -> 61340 bytes .../locale/de_DE/LC_MESSAGES/icinga.po | 993 ++++++------------ 2 files changed, 329 insertions(+), 664 deletions(-) diff --git a/application/locale/de_DE/LC_MESSAGES/icinga.mo b/application/locale/de_DE/LC_MESSAGES/icinga.mo index d6f05c01e5045a61cade2e5c9b7c4e5fb8ea89f0..0dcb01b942167c865620a2b5d5092abc0f5426ad 100644 GIT binary patch delta 13255 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 delta 13021 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 TpBe6(\n" "Language: de_DE\n" "MIME-Version: 1.0\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Language-Team: \n" -"X-Generator: Poedit 1.8.9\n" +"X-Generator: Poedit 1.8.11\n" #: /vagrant/library/Icinga/Web/Form/Validator/InArray.php:16 #, php-format @@ -25,12 +25,8 @@ msgstr "\"%s\" ist nicht in der Liste der erlaubten Werte." #: /vagrant/library/Icinga/Web/Form/Validator/InArray.php:19 #, php-format -msgid "" -"\"%s\" is not in the list of allowed values. Did you mean one of the " -"following?: %s" -msgstr "" -"“%s” ist nicht in der Liste der erlaubten Werte. Meinten Sie vielleicht " -"einen der Folgenden?: %s" +msgid "\"%s\" is not in the list of allowed values. Did you mean one of the following?: %s" +msgstr "“%s” ist nicht in der Liste der erlaubten Werte. Meinten Sie vielleicht einen der Folgenden?: %s" #: /vagrant/application/forms/Config/Resource/FileResourceForm.php:50 #: /vagrant/application/forms/Config/UserBackend/ExternalBackendForm.php:42 @@ -114,8 +110,7 @@ msgstr "Ein Navigationselement mit dem Namen “%s” existiert bereits" msgid "A user backend with the name \"%s\" does already exist" msgstr "Ein Nutzerbackend mit dem Namen “%s” existiert bereits" -#: /vagrant/application/controllers/AboutController.php:19 -#: /vagrant/library/Icinga/Application/Web.php:305 +#: /vagrant/application/controllers/AboutController.php:19 /vagrant/library/Icinga/Application/Web.php:305 #: /vagrant/library/Icinga/Web/Menu.php:257 msgid "About" msgstr "Über Icinga Web 2" @@ -128,16 +123,13 @@ msgstr "Über Icinga Web 2" msgid "Accessibility Skip Links" msgstr "Barrierefreiheit Links überspringen" -#: /vagrant/application/controllers/UserController.php:70 -#: /vagrant/application/forms/Config/User/UserForm.php:24 -#: /vagrant/application/views/scripts/user/show.phtml:33 -#: /vagrant/library/Icinga/Authentication/User/DbUserBackend.php:119 +#: /vagrant/application/controllers/UserController.php:70 /vagrant/application/forms/Config/User/UserForm.php:24 +#: /vagrant/application/views/scripts/user/show.phtml:33 /vagrant/library/Icinga/Authentication/User/DbUserBackend.php:119 #: /vagrant/library/Icinga/Authentication/User/LdapUserBackend.php:256 msgid "Active" msgstr "Aktiv" -#: /vagrant/application/forms/Config/User/UserForm.php:46 -#: /vagrant/application/forms/Config/UserGroup/AddMemberForm.php:126 +#: /vagrant/application/forms/Config/User/UserForm.php:46 /vagrant/application/forms/Config/UserGroup/AddMemberForm.php:126 #: /vagrant/application/forms/Config/UserGroup/UserGroupForm.php:29 msgid "Add" msgstr "Hinzufügen" @@ -196,18 +188,15 @@ msgstr "Mitglied der Gruppe %s hinzufügen" msgid "Adjust the general configuration of Icinga Web 2" msgstr "Allgemeine Einstellungen von Icinga Web 2" -#: /vagrant/application/controllers/NavigationController.php:133 -#: /vagrant/application/controllers/PreferenceController.php:32 +#: /vagrant/application/controllers/NavigationController.php:133 /vagrant/application/controllers/PreferenceController.php:32 msgid "Adjust the preferences of Icinga Web 2 according to your needs" msgstr "Anpassung von Icinga Web 2 an individuelle Bedürfnisse" #: /vagrant/application/forms/Authentication/LoginForm.php:105 -msgid "" -"All configured authentication methods failed. Please check the system log or " -"Icinga Web 2 log for more information." +msgid "All configured authentication methods failed. Please check the system log or Icinga Web 2 log for more information." msgstr "" -"Alle konfigurierten Authentifizierungsmethoden sind fehlgeschlagen. Mehr " -"Details dazu stehen im Systemlog oder im Log von Icinga Web 2." +"Alle konfigurierten Authentifizierungsmethoden sind fehlgeschlagen. Mehr Details dazu stehen im Systemlog oder im Log von " +"Icinga Web 2." #: /vagrant/application/forms/Security/RoleForm.php:68 #, php-format @@ -236,28 +225,24 @@ msgstr "Erlaubt das Einsehen des Anwendungslogs" #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:135 msgid "" -"An additional filter to use when looking up groups using the specified " -"connection. Leave empty to not to use any additional filter rules." +"An additional filter to use when looking up groups using the specified connection. Leave empty to not to use any additional " +"filter rules." msgstr "" -"Ein zusätzlicher Filter für die Suche nach Gruppen für die angegebene " -"Verbindung. Leer lassen, um keine Filter zu verwenden." +"Ein zusätzlicher Filter für die Suche nach Gruppen für die angegebene Verbindung. Leer lassen, um keine Filter zu verwenden." #: /vagrant/application/forms/Config/UserBackend/LdapBackendForm.php:153 #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:228 msgid "" -"An additional filter to use when looking up users using the specified " -"connection. Leave empty to not to use any additional filter rules." +"An additional filter to use when looking up users using the specified connection. Leave empty to not to use any additional " +"filter rules." msgstr "" -"Ein zusätzlicher Filter für die Suche nach Benutzern für die angegebene " -"Verbindung. Leer lassen, um keine Filter zu verwenden." +"Ein zusätzlicher Filter für die Suche nach Benutzern für die angegebene Verbindung. Leer lassen, um keine Filter zu verwenden." -#: /vagrant/library/Icinga/Application/Web.php:318 -#: /vagrant/library/Icinga/Web/Menu.php:274 +#: /vagrant/library/Icinga/Application/Web.php:318 /vagrant/library/Icinga/Web/Menu.php:274 msgid "Application" msgstr "Anwendung" -#: /vagrant/library/Icinga/Application/Web.php:366 -#: /vagrant/library/Icinga/Web/Menu.php:262 +#: /vagrant/library/Icinga/Application/Web.php:366 /vagrant/library/Icinga/Web/Menu.php:262 msgid "Application Log" msgstr "Anwendungslog" @@ -269,8 +254,7 @@ msgstr "Anwendungspräfix" msgid "Apply" msgstr "Anwenden" -#: /vagrant/application/controllers/ConfigController.php:50 -#: /vagrant/library/Icinga/Application/Web.php:324 +#: /vagrant/application/controllers/ConfigController.php:50 /vagrant/library/Icinga/Application/Web.php:324 #: /vagrant/library/Icinga/Web/Menu.php:279 msgid "Authentication" msgstr "Authentifizierung" @@ -297,8 +281,7 @@ msgstr "Automatische Aktualisierung erfolgreich deaktiviert" msgid "Auto refresh successfully enabled" msgstr "Automatische Aktualisierung erfolgreich aktiviert" -#: /vagrant/library/Icinga/Web/Wizard.php:626 -#: /vagrant/library/Icinga/Web/Wizard.php:650 +#: /vagrant/library/Icinga/Web/Wizard.php:626 /vagrant/library/Icinga/Web/Wizard.php:650 msgid "Back" msgstr "Zurück" @@ -332,8 +315,7 @@ msgstr "Bind DN" msgid "Bind Password" msgstr "Bind Kennwort" -#: /vagrant/application/forms/PreferenceForm.php:181 -#: /vagrant/application/forms/PreferenceForm.php:187 +#: /vagrant/application/forms/PreferenceForm.php:181 /vagrant/application/forms/PreferenceForm.php:187 #, php-format msgctxt "preferences.form" msgid "Browser (%s)" @@ -386,14 +368,10 @@ msgstr "Kann Konfigurationsdatei “%s” nicht lesen" msgid "Cannot search here" msgstr "Suche ist hier nicht möglich" -#: /vagrant/library/Icinga/Repository/IniRepository.php:91 -#: /vagrant/library/Icinga/Repository/IniRepository.php:108 +#: /vagrant/library/Icinga/Repository/IniRepository.php:91 /vagrant/library/Icinga/Repository/IniRepository.php:108 #, php-format -msgid "" -"Cannot update. Column \"%s\" holds a section's name which must be unique" -msgstr "" -"Aktualisierung nicht möglich. Die Spalte “%s” enthält einen Sektionsnamen, " -"der eindeutig sein muss" +msgid "Cannot update. Column \"%s\" holds a section's name which must be unique" +msgstr "Aktualisierung nicht möglich. Die Spalte “%s” enthält einen Sektionsnamen, der eindeutig sein muss" #: /vagrant/library/Icinga/Repository/IniRepository.php:123 #, php-format @@ -410,22 +388,20 @@ msgstr "Zeichensatz" #: /vagrant/application/forms/Config/General/ThemingConfigForm.php:53 msgctxt "Form element description" -msgid "" -"Check this box for disallowing users to change the theme. If a default theme " -"is set, it will be used nonetheless" -msgstr "" -"Checkbox auswählen um Benutzeranpassung zu verbieten. Die Standardtheme wird " -"für alle Benutzer angezeigt." +msgid "Check this box for disallowing users to change the theme. If a default theme is set, it will be used nonetheless" +msgstr "Checkbox auswählen um Benutzeranpassung zu verbieten. Die Standardtheme wird für alle Benutzer angezeigt." + +#: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:98 +msgid "Check this box for nested group search in Active Directory based on the user" +msgstr "Häkchen setzen, um in Active Directory anhand des Benutzers in verschachtelten Gruppen zu suchen" #: /vagrant/application/forms/Config/Resource/DbResourceForm.php:154 msgid "" -"Check this box for persistent database connections. Persistent connections " -"are not closed at the end of a request, but are cached and re-used. This is " -"experimental" +"Check this box for persistent database connections. Persistent connections are not closed at the end of a request, but are " +"cached and re-used. This is experimental" msgstr "" -"Häkchen setzen für persistente Datenbankverbindungen. Persistente " -"Verbindungen werden am Ende einer Anfrage nicht geschlossen, sondern " -"gecached wiederverwendet" +"Häkchen setzen für persistente Datenbankverbindungen. Persistente Verbindungen werden am Ende einer Anfrage nicht " +"geschlossen, sondern gecached wiederverwendet" #: /vagrant/application/forms/Dashboard/DashletForm.php:101 msgid "Check this box if you want to add the dashlet to a new dashboard" @@ -433,17 +409,11 @@ msgstr "Häkchen setzen, um dieses Dashlet einem neuen Dashboard hinzuzufügen" #: /vagrant/application/forms/Config/ResourceConfigForm.php:222 msgid "Check this box to enforce changes without connectivity validation" -msgstr "" -"Häkchen setzen, um die Änderungen ohne Validierung der Verbindung zu " -"speichern" +msgstr "Häkchen setzen, um die Änderungen ohne Validierung der Verbindung zu speichern" #: /vagrant/application/forms/Config/UserBackendConfigForm.php:383 -msgid "" -"Check this box to enforce changes without validating that authentication is " -"possible." -msgstr "" -"Häkchen setzen, um die Änderungen ohne Validierung der Authentifizierung zu " -"speichern" +msgid "Check this box to enforce changes without validating that authentication is possible." +msgstr "Häkchen setzen, um die Änderungen ohne Validierung der Authentifizierung zu speichern" #: /vagrant/library/Icinga/Web/Widget/FilterWidget.php:68 msgid "Click to remove this part of your filter" @@ -456,15 +426,11 @@ msgstr "Spalte “%s” kann nicht abgefragt werden" #: /vagrant/application/forms/Navigation/NavigationConfigForm.php:625 msgid "Comma separated list of group names to share this item with" -msgstr "" -"Kommaseparierte Liste von Gruppennamen, mit denen dieses Element geteilt " -"werden soll" +msgstr "Kommaseparierte Liste von Gruppennamen, mit denen dieses Element geteilt werden soll" #: /vagrant/application/forms/Navigation/NavigationConfigForm.php:615 msgid "Comma separated list of usernames to share this item with" -msgstr "" -"Kommaseparierte Liste von Nutzernamen, mit denen dieses Element geteilt " -"werden soll" +msgstr "Kommaseparierte Liste von Nutzernamen, mit denen dieses Element geteilt werden soll" #: /vagrant/application/forms/Security/RoleForm.php:126 msgid "Comma-separated list of groups that are assigned to the role" @@ -474,19 +440,14 @@ msgstr "Kommaseparierte Liste von Gruppen, die dieser Rolle zugewiesen werden" msgid "Comma-separated list of users that are assigned to the role" msgstr "Kommaseparierte Liste von Nutzern, die dieser Rolle zugewiesen werden" -#: /vagrant/library/Icinga/Application/Web.php:312 -#: /vagrant/library/Icinga/Web/Menu.php:269 +#: /vagrant/library/Icinga/Application/Web.php:312 /vagrant/library/Icinga/Web/Menu.php:269 msgid "Configuration" msgstr "Konfiguration" -#: /vagrant/application/controllers/GroupController.php:346 -#: /vagrant/application/controllers/RoleController.php:155 +#: /vagrant/application/controllers/GroupController.php:346 /vagrant/application/controllers/RoleController.php:155 #: /vagrant/application/controllers/UserController.php:312 -msgid "" -"Configure roles to permit or restrict users and groups accessing Icinga Web 2" -msgstr "" -"Konfiguration der Zugangsberechtigungen für Nutzer und Gruppen in Icinga Web " -"2" +msgid "Configure roles to permit or restrict users and groups accessing Icinga Web 2" +msgstr "Konfiguration der Zugangsberechtigungen für Nutzer und Gruppen in Icinga Web 2" #: /vagrant/application/controllers/ConfigController.php:49 msgid "Configure the user and group backends" @@ -501,12 +462,8 @@ msgid "Confirm Removal" msgstr "Entfernen bestätigen" #: /vagrant/application/forms/Config/Resource/LivestatusResourceForm.php:79 -msgid "" -"Connectivity validation failed, connection to the given resource not " -"possible." -msgstr "" -"Überprüfung fehlgeschlagen. Konnte keine Verbindung zu der angegebenen " -"Ressource herstellen." +msgid "Connectivity validation failed, connection to the given resource not possible." +msgstr "Überprüfung fehlgeschlagen. Konnte keine Verbindung zu der angegebenen Ressource herstellen." #: /vagrant/library/Icinga/Chart/GridChart.php:90 msgid "Contains data in a bar or line chart." @@ -518,27 +475,22 @@ msgstr "Enthält Daten in einem Tortendiagramm." #: /vagrant/application/forms/Config/General/ApplicationConfigForm.php:54 msgid "" -"Contains the directories that will be searched for available modules, " -"separated by colons. Modules that don't exist in these directories can still " -"be symlinked in the module folder, but won't show up in the list of disabled " -"modules." +"Contains the directories that will be searched for available modules, separated by colons. Modules that don't exist in these " +"directories can still be symlinked in the module folder, but won't show up in the list of disabled modules." msgstr "" -"Enthält die Verzeichnisse, die nach verfügbaren Modulen durchsucht werden " -"(getrennt durch Doppelpunkte). Module, die nicht in diesen Verzeichnissen vorhanden sind, " -"können trotzdem in den Modulordner gesymlinkt werden. Diese werden " -"allerdings nicht in der der deaktivierten Module angezeigt." +"Enthält die Verzeichnisse, die nach verfügbaren Modulen durchsucht werden (getrennt durch Doppelpunkte). Module, die nicht in " +"diesen Verzeichnissen vorhanden sind, können trotzdem in den Modulordner gesymlinkt werden. Diese werden allerdings nicht in " +"der der deaktivierten Module angezeigt." #: /vagrant/application/views/scripts/about/index.phtml:25 msgid "Copyright" msgstr "Copyright" #: /vagrant/application/forms/Config/UserBackendConfigForm.php:82 -msgid "" -"Could not find any valid user backend resources. Please configure a resource " -"for authentication first." +msgid "Could not find any valid user backend resources. Please configure a resource for authentication first." msgstr "" -"Es konnten keine gültigen Nutzerbackendressourcen gefunden werden. Bitte " -"legen Sie als Erstes eine Ressource für die Authentifizierung an." +"Es konnten keine gültigen Nutzerbackendressourcen gefunden werden. Bitte legen Sie als Erstes eine Ressource für die " +"Authentifizierung an." #: /vagrant/application/views/scripts/dashboard/error.phtml:2 msgid "Could not persist dashboard" @@ -577,12 +529,10 @@ msgid "Create a New User Group Backend" msgstr "Neues Backend für Benutzergruppen erstellen" #: /vagrant/application/controllers/ConfigController.php:198 -msgid "" -"Create a new backend for authenticating your users. This backend will be " -"added at the end of your authentication order." +msgid "Create a new backend for authenticating your users. This backend will be added at the end of your authentication order." msgstr "" -"Neues Backend für die Nutzerauthentifizierung anlegen. Dieses Backend wird " -"an das Ende Ihrer Authentifizierungsreihenfolge angehängt" +"Neues Backend für die Nutzerauthentifizierung anlegen. Dieses Backend wird an das Ende Ihrer Authentifizierungsreihenfolge " +"angehängt" #: /vagrant/application/controllers/UsergroupbackendController.php:42 msgid "Create a new backend to associate users and groups with." @@ -594,9 +544,7 @@ msgstr "Ein neues Navigationselement erzeugen" #: /vagrant/application/controllers/NavigationController.php:216 msgid "Create a new navigation item, such as a menu entry or dashlet." -msgstr "" -"Ein neues Navigationselement (zum Beispiel Menüeintrag oder Dashlet) " -"erzeugen." +msgstr "Ein neues Navigationselement (zum Beispiel Menüeintrag oder Dashlet) erzeugen." #: /vagrant/application/views/scripts/config/resource.phtml:13 msgid "Create a new resource" @@ -626,10 +574,8 @@ msgstr "Mitgliedschaften für %s erstellen" msgid "Created At" msgstr "Erstellt am" -#: /vagrant/application/controllers/GroupController.php:70 -#: /vagrant/application/controllers/GroupController.php:106 -#: /vagrant/application/controllers/UserController.php:71 -#: /vagrant/application/views/scripts/group/show.phtml:33 +#: /vagrant/application/controllers/GroupController.php:70 /vagrant/application/controllers/GroupController.php:106 +#: /vagrant/application/controllers/UserController.php:71 /vagrant/application/views/scripts/group/show.phtml:33 #: /vagrant/application/views/scripts/user/show.phtml:36 msgid "Created at" msgstr "Erstellt am" @@ -639,25 +585,16 @@ msgid "Current Column" msgstr "Aktuelle Spalte" #: /vagrant/application/views/scripts/dashboard/index.phtml:16 -msgid "" -"Currently there is no dashlet available. Please contact the administrator." -msgstr "" -"Momentan ist kein Dashlet verfügbar. Bitte kontaktieren Sie einen " -"Administrator." +msgid "Currently there is no dashlet available. Please contact the administrator." +msgstr "Momentan ist kein Dashlet verfügbar. Bitte kontaktieren Sie einen Administrator." #: /vagrant/application/views/scripts/dashboard/index.phtml:20 #, php-format -msgid "" -"Currently there is no dashlet available. This might change once you enabled " -"some of the available %s." -msgstr "" -"Momentan ist kein Dashlet verfügbar. Das könnte durch die Aktivierung von " -"einigen der verfügbaren %s behoben werden." +msgid "Currently there is no dashlet available. This might change once you enabled some of the available %s." +msgstr "Momentan ist kein Dashlet verfügbar. Das könnte durch die Aktivierung von einigen der verfügbaren %s behoben werden." -#: /vagrant/application/controllers/DashboardController.php:257 -#: /vagrant/application/forms/Dashboard/DashletForm.php:120 -#: /vagrant/library/Icinga/Application/Web.php:290 -#: /vagrant/library/Icinga/Web/Menu.php:243 +#: /vagrant/application/controllers/DashboardController.php:257 /vagrant/application/forms/Dashboard/DashletForm.php:120 +#: /vagrant/library/Icinga/Application/Web.php:290 /vagrant/library/Icinga/Web/Menu.php:243 msgid "Dashboard" msgstr "Dashboard" @@ -729,11 +666,10 @@ msgstr "Beschreibung" #: /vagrant/application/views/scripts/showConfiguration.phtml:19 msgid "" -"Details can be found in the application log. (If you don't have access to " -"this log, call your administrator in this case)" +"Details can be found in the application log. (If you don't have access to this log, call your administrator in this case)" msgstr "" -"Details können im Log der Anwendung gefunden werden. (Wenn kein Zugriff auf " -"das Log möglich ist, kontaktieren Sie bitte Ihren Administrator)" +"Details können im Log der Anwendung gefunden werden. (Wenn kein Zugriff auf das Log möglich ist, kontaktieren Sie bitte " +"Ihren Administrator)" #: /vagrant/application/forms/AutoRefreshForm.php:65 msgid "Disable auto refresh" @@ -774,8 +710,7 @@ msgstr "Nutzer bearbeiten" msgid "Edit dashlet %s" msgstr "Dashlet %s bearbeiten" -#: /vagrant/application/forms/Config/UserGroup/UserGroupForm.php:31 -#: /vagrant/application/views/scripts/group/show.phtml:18 +#: /vagrant/application/forms/Config/UserGroup/UserGroupForm.php:31 /vagrant/application/views/scripts/group/show.phtml:18 #, php-format msgid "Edit group %s" msgstr "Gruppe %s bearbeiten" @@ -800,8 +735,7 @@ msgstr "Rolle %s bearbeiten" msgid "Edit shared navigation item %s" msgstr "Geteiltes Navigationselement %s bearbeiten" -#: /vagrant/application/forms/Config/User/UserForm.php:67 -#: /vagrant/application/views/scripts/user/show.phtml:25 +#: /vagrant/application/forms/Config/User/UserForm.php:67 /vagrant/application/views/scripts/user/show.phtml:25 #, php-format msgid "Edit user %s" msgstr "Nutzer %s bearbeiten" @@ -816,8 +750,7 @@ msgstr "Nutzerbackend %s bearbeiten" msgid "Edit user group backend %s" msgstr "Nutzgruppenbackend %s bearbeiten" -#: /vagrant/application/forms/AutoRefreshForm.php:63 -#: /vagrant/application/forms/PreferenceForm.php:243 +#: /vagrant/application/forms/AutoRefreshForm.php:63 /vagrant/application/forms/PreferenceForm.php:243 msgid "Enable auto refresh" msgstr "Automatische Aktualisierung aktivieren" @@ -844,12 +777,8 @@ msgid "Enter a title for the new dashboard" msgstr "Titel für das Dashboard eingeben" #: /vagrant/application/forms/Dashboard/DashletForm.php:71 -msgid "" -"Enter url being loaded in the dashlet. You can paste the full URL, including " -"filters." -msgstr "" -"URL angeben, die in dem Dashlet geladen werden soll. Es sind vollständige " -"URLs mit Filtern möglich." +msgid "Enter url being loaded in the dashlet. You can paste the full URL, including filters." +msgstr "URL angeben, die in dem Dashlet geladen werden soll. Es sind vollständige URLs mit Filtern möglich." #: /vagrant/application/controllers/ErrorController.php:109 msgid "Error" @@ -905,31 +834,24 @@ msgstr "Der Benutzer (%s) konnte nicht bearbeitet werden" #: /vagrant/application/forms/Config/User/CreateMembershipForm.php:183 #, php-format msgid "Failed to fetch any groups from backend %s. Please check your log" -msgstr "" -"Es konnten keine Gruppen vom Backend %s geholt werden. Bitte Log überprüfen" +msgstr "Es konnten keine Gruppen vom Backend %s geholt werden. Bitte Log überprüfen" #: /vagrant/application/controllers/GroupController.php:304 #, php-format msgid "Failed to fetch any users from backend %s. Please check your log" -msgstr "" -"Es konnten keine Benutzer vom Backend %s geholt werden. Bitte Log überprüfen" +msgstr "Es konnten keine Benutzer vom Backend %s geholt werden. Bitte Log überprüfen" #: /vagrant/application/controllers/UserController.php:270 #, php-format msgid "Failed to fetch memberships from backend %s. Please check your log" -msgstr "" -"Es konnten keine Mitgliedschaften vom Backend %s geholt werden. Bitte Log " -"überprüfen" +msgstr "Es konnten keine Mitgliedschaften vom Backend %s geholt werden. Bitte Log überprüfen" #: /vagrant/library/Icinga/Web/Navigation/Navigation.php:547 #, php-format -msgid "" -"Failed to fully parse navigation configuration. Ensure that all referenced " -"parents are existing navigation items: %s" +msgid "Failed to fully parse navigation configuration. Ensure that all referenced parents are existing navigation items: %s" msgstr "" -"Die Navigationskonfiguration konnte nicht vollständig geparst werden. Bitte " -"stellen Sie sicher, dass alle referenziertem Elternelemente existierende " -"Navigationselemente sind: %s" +"Die Navigationskonfiguration konnte nicht vollständig geparst werden. Bitte stellen Sie sicher, dass alle referenziertem " +"Elternelemente existierende Navigationselemente sind: %s" #: /vagrant/library/Icinga/Repository/IniRepository.php:72 #, php-format @@ -946,8 +868,7 @@ msgstr "Gruppe “%s” konnte nicht entfernt werden" msgid "Failed to remove user \"%s\"" msgstr "Benutzer “%s” konnte nicht entfernt werden" -#: /vagrant/application/forms/Config/ResourceConfigForm.php:317 -#: /vagrant/application/forms/Config/UserBackendConfigForm.php:422 +#: /vagrant/application/forms/Config/ResourceConfigForm.php:317 /vagrant/application/forms/Config/UserBackendConfigForm.php:422 #, php-format msgid "Failed to successfully validate the configuration: %s" msgstr "Validierung der Konfiguration schlug fehl: %s" @@ -955,8 +876,7 @@ msgstr "Validierung der Konfiguration schlug fehl: %s" #: /vagrant/application/controllers/NavigationController.php:386 #, php-format msgid "Failed to unshare navigation item \"%s\"" -msgstr "" -"Teilen des Navigationselementes “%s” konnte nicht rückgängig gemacht werden" +msgstr "Teilen des Navigationselementes “%s” konnte nicht rückgängig gemacht werden" #: /vagrant/library/Icinga/Repository/IniRepository.php:135 #, php-format @@ -998,8 +918,7 @@ msgstr "Filterspalte “%s” nicht gefunden" msgid "Filter column \"%s\" not found in table \"%s\"" msgstr "Filterspalte “%s” in Tabelle “%s” nicht gefunden" -#: /vagrant/library/Icinga/Web/Widget/FilterEditor.php:745 -#: /vagrant/library/Icinga/Web/Widget/FilterWidget.php:89 +#: /vagrant/library/Icinga/Web/Widget/FilterEditor.php:745 /vagrant/library/Icinga/Web/Widget/FilterWidget.php:89 msgid "Filter this list" msgstr "Diese Liste filtern" @@ -1016,12 +935,8 @@ msgid "For using unix domain sockets, specify localhost" msgstr "Um UNIX Domain Sockets zu verwenden, localhost angeben" #: /vagrant/application/forms/Config/Resource/DbResourceForm.php:64 -msgid "" -"For using unix domain sockets, specify the path to the unix domain socket " -"directory" -msgstr "" -"Um UNIX Domain Sockets zu verwenden, ist die Angabe des Pfades zum UNIX " -"Domain Socket Verzeicnis erforderlich" +msgid "For using unix domain sockets, specify the path to the unix domain socket directory" +msgstr "Um UNIX Domain Sockets zu verwenden, ist die Angabe des Pfades zum UNIX Domain Socket Verzeicnis erforderlich" #: /vagrant/application/forms/Config/ResourceConfigForm.php:221 msgid "Force Changes" @@ -1043,8 +958,7 @@ msgstr "Git Commit Datum" msgid "Grid Chart" msgstr "Netzansicht" -#: /vagrant/application/controllers/GroupController.php:326 -#: /vagrant/application/controllers/UserController.php:109 +#: /vagrant/application/controllers/GroupController.php:326 /vagrant/application/controllers/UserController.php:109 #: /vagrant/application/views/scripts/user/show.phtml:78 msgid "Group" msgstr "Benutzergruppe" @@ -1059,10 +973,8 @@ msgstr "Benutzergruppe “%s” wurde bearbeitet" msgid "Group \"%s\" has been removed" msgstr "Benutzergruppe “%s” wurde entfernt" -#: /vagrant/application/controllers/GroupController.php:92 -#: /vagrant/application/controllers/GroupController.php:180 -#: /vagrant/application/controllers/GroupController.php:202 -#: /vagrant/application/controllers/GroupController.php:229 +#: /vagrant/application/controllers/GroupController.php:92 /vagrant/application/controllers/GroupController.php:180 +#: /vagrant/application/controllers/GroupController.php:202 /vagrant/application/controllers/GroupController.php:229 #: /vagrant/application/controllers/GroupController.php:284 #, php-format msgid "Group \"%s\" not found" @@ -1090,8 +1002,7 @@ msgid "Group members added successfully" msgstr "Gruppenmitglieder wurden erfolgreich hinzugefügt" #: /vagrant/application/forms/Config/User/CreateMembershipForm.php:79 -#: /vagrant/application/forms/Navigation/NavigationConfigForm.php:623 -#: /vagrant/application/forms/Security/RoleForm.php:125 +#: /vagrant/application/forms/Navigation/NavigationConfigForm.php:623 /vagrant/application/forms/Security/RoleForm.php:125 #: /vagrant/application/views/scripts/role/list.phtml:24 msgid "Groups" msgstr "Gruppen" @@ -1133,18 +1044,15 @@ msgstr "Icinga Web 2 Einrichtungsassistent" msgid "Icinga Wiki" msgstr "Icinga Wiki" -#: /vagrant/application/views/scripts/about/index.phtml:55 -#: /vagrant/application/views/scripts/authentication/login.phtml:44 +#: /vagrant/application/views/scripts/about/index.phtml:55 /vagrant/application/views/scripts/authentication/login.phtml:44 msgid "Icinga on Facebook" msgstr "Icinga auf Facebook" -#: /vagrant/application/views/scripts/about/index.phtml:64 -#: /vagrant/application/views/scripts/authentication/login.phtml:53 +#: /vagrant/application/views/scripts/about/index.phtml:64 /vagrant/application/views/scripts/authentication/login.phtml:53 msgid "Icinga on Google+" msgstr "Icinga auf Google+" -#: /vagrant/application/views/scripts/about/index.phtml:46 -#: /vagrant/application/views/scripts/authentication/login.phtml:34 +#: /vagrant/application/views/scripts/about/index.phtml:46 /vagrant/application/views/scripts/authentication/login.phtml:34 msgid "Icinga on Twitter" msgstr "Icinga auf Twitter" @@ -1154,21 +1062,15 @@ msgstr "Icon" #: /vagrant/application/views/scripts/authentication/logout.phtml:15 msgid "" -"If this message does not disappear, it might be necessary to quit the " -"current session manually by clearing the cache, or by closing the current " -"browser session." +"If this message does not disappear, it might be necessary to quit the current session manually by clearing the cache, or by " +"closing the current browser session." msgstr "" -"Wenn diese Nachricht nicht verschwindet, könnte es nötig sein die aktuelle " -"Sitzung manuell zu beenden indem der Cache gelöscht oder die Browsersitzung " -"geschlossen wird." +"Wenn diese Nachricht nicht verschwindet, könnte es nötig sein die aktuelle Sitzung manuell zu beenden indem der Cache " +"gelöscht oder die Browsersitzung geschlossen wird." #: /vagrant/application/views/scripts/showConfiguration.phtml:21 -msgid "" -"In case you can access the file by yourself, you can open it and insert the " -"config manually:" -msgstr "" -"Wenn Sie Schreibrechte auf die Datei haben, können Sie die Konfiguration " -"manuell einfügen:" +msgid "In case you can access the file by yourself, you can open it and insert the config manually:" +msgstr "Wenn Sie Schreibrechte auf die Datei haben, können Sie die Konfiguration manuell einfügen:" #: /vagrant/application/views/scripts/user/show.phtml:33 msgid "Inactive" @@ -1197,15 +1099,13 @@ msgstr "Ungültiger Ressourcentyp “%s” angegeben" #: /vagrant/application/views/scripts/authentication/login.phtml:14 #, php-format msgid "" -"It appears that you did not configure Icinga Web 2 yet so it's not possible " -"to log in without any defined authentication method. Please define a " -"authentication method by following the instructions in the %1$sdocumentation" -"%3$s or by using our %2$sweb-based setup-wizard%3$s." +"It appears that you did not configure Icinga Web 2 yet so it's not possible to log in without any defined authentication " +"method. Please define a authentication method by following the instructions in the %1$sdocumentation%3$s or by using our " +"%2$sweb-based setup-wizard%3$s." msgstr "" -"Es scheint, dass Sie Icinga Web 2 noch nicht konfiguriert haben, sodass eine " -"Anmeldung nicht möglich nicht. Bitte konfigurieren Sie eine " -"Authentifizierungsmethode, indem Sie den Anweisungen in der %1$sDokumentation" -"%3$s folgen oder über den %2$sweb-basierten Setup-Assistenten%3$s." +"Es scheint, dass Sie Icinga Web 2 noch nicht konfiguriert haben, sodass eine Anmeldung nicht möglich nicht. Bitte " +"konfigurieren Sie eine Authentifizierungsmethode, indem Sie den Anweisungen in der %1$sDokumentation%3$s folgen oder über den " +"%2$sweb-basierten Setup-Assistenten%3$s." #: /vagrant/application/forms/Config/UserBackend/LdapBackendForm.php:210 msgid "LDAP Base DN" @@ -1265,10 +1165,8 @@ msgstr "LDAP Objektklasse für den Benutzer" msgid "Last Modified" msgstr "Zuletzt verändert" -#: /vagrant/application/controllers/GroupController.php:71 -#: /vagrant/application/controllers/GroupController.php:107 -#: /vagrant/application/controllers/UserController.php:72 -#: /vagrant/application/views/scripts/group/show.phtml:37 +#: /vagrant/application/controllers/GroupController.php:71 /vagrant/application/controllers/GroupController.php:107 +#: /vagrant/application/controllers/UserController.php:72 /vagrant/application/views/scripts/group/show.phtml:37 #: /vagrant/application/views/scripts/user/show.phtml:40 msgid "Last modified" msgstr "Zuletzt verändert" @@ -1281,13 +1179,11 @@ msgstr "Leer lassen, um das Passwort unverändert zu lassen" msgid "List and configure shared navigation items" msgstr "Geteilte Navigationselemente auflisten und bearbeiten" -#: /vagrant/application/controllers/NavigationController.php:142 -#: /vagrant/application/controllers/PreferenceController.php:37 +#: /vagrant/application/controllers/NavigationController.php:142 /vagrant/application/controllers/PreferenceController.php:37 msgid "List and configure your own navigation items" msgstr "Eigene Navigationselemente auflisten und bearbeiten" -#: /vagrant/application/controllers/GroupController.php:363 -#: /vagrant/application/controllers/RoleController.php:172 +#: /vagrant/application/controllers/GroupController.php:363 /vagrant/application/controllers/RoleController.php:172 #: /vagrant/application/controllers/UserController.php:329 msgid "List groups of user group backends" msgstr "Gruppierte Benutzergruppenbackends auflisten" @@ -1296,8 +1192,7 @@ msgstr "Gruppierte Benutzergruppenbackends auflisten" msgid "List intalled modules" msgstr "Installierte Module auflisten" -#: /vagrant/application/controllers/GroupController.php:355 -#: /vagrant/application/controllers/RoleController.php:164 +#: /vagrant/application/controllers/GroupController.php:355 /vagrant/application/controllers/RoleController.php:164 #: /vagrant/application/controllers/UserController.php:321 msgid "List users of authentication backends" msgstr "Benutzer des Authentifizierungsbackends auflisten" @@ -1322,13 +1217,11 @@ msgstr "Anmelden" msgid "Logging out..." msgstr "Abmelden..." -#: /vagrant/application/forms/Authentication/LoginForm.php:29 -#: /vagrant/application/views/scripts/authentication/logout.phtml:22 +#: /vagrant/application/forms/Authentication/LoginForm.php:29 /vagrant/application/views/scripts/authentication/logout.phtml:22 msgid "Login" msgstr "Anmelden" -#: /vagrant/library/Icinga/Application/Web.php:355 -#: /vagrant/library/Icinga/Web/Menu.php:314 +#: /vagrant/library/Icinga/Application/Web.php:355 /vagrant/library/Icinga/Web/Menu.php:314 msgid "Logout" msgstr "Abmelden" @@ -1338,8 +1231,7 @@ msgstr "Abmeldung erfolgreich!" #: /vagrant/application/views/scripts/dashboard/error.phtml:7 msgid "Make sure that the webserver can write to this file." -msgstr "" -"Bitte stellen Sie sicher, dass der Webserver in diese Datei schreiben kann." +msgstr "Bitte stellen Sie sicher, dass der Webserver in diese Datei schreiben kann." #: /vagrant/application/views/scripts/group/show.phtml:42 msgid "Members" @@ -1362,8 +1254,7 @@ msgstr "Menüeintrag" msgid "Method Not Allowed" msgstr "Nicht zulässig" -#: /vagrant/library/Icinga/Web/Widget/FilterEditor.php:747 -#: /vagrant/library/Icinga/Web/Widget/FilterWidget.php:94 +#: /vagrant/library/Icinga/Web/Widget/FilterEditor.php:747 /vagrant/library/Icinga/Web/Widget/FilterWidget.php:94 msgid "Modify this filter" msgstr "Diesen Filter bearbeiten" @@ -1400,8 +1291,7 @@ msgstr "Modul “%s” ist aktiviert" msgid "Module Path" msgstr "Pfad zu den Modulen" -#: /vagrant/application/controllers/ConfigController.php:96 -#: /vagrant/library/Icinga/Application/Web.php:336 +#: /vagrant/application/controllers/ConfigController.php:96 /vagrant/library/Icinga/Application/Web.php:336 #: /vagrant/library/Icinga/Web/Menu.php:299 msgid "Modules" msgstr "Module" @@ -1424,19 +1314,14 @@ msgstr "Benutzerbackend %s nach unten schieben" msgid "Move user backend %s upwards" msgstr "Benutzerbackend %s nach oben schieben" -#: /vagrant/application/forms/Navigation/NavigationConfigForm.php:582 -#: /vagrant/application/views/scripts/about/index.phtml:114 -#: /vagrant/application/views/scripts/config/module.phtml:16 -#: /vagrant/application/views/scripts/role/list.phtml:22 +#: /vagrant/application/forms/Navigation/NavigationConfigForm.php:582 /vagrant/application/views/scripts/about/index.phtml:114 +#: /vagrant/application/views/scripts/config/module.phtml:16 /vagrant/application/views/scripts/role/list.phtml:22 msgid "Name" msgstr "Name" -#: /vagrant/application/controllers/NavigationController.php:143 -#: /vagrant/application/controllers/NavigationController.php:151 -#: /vagrant/application/controllers/PreferenceController.php:38 -#: /vagrant/application/views/scripts/pivottablePagination.phtml:16 -#: /vagrant/application/views/scripts/layout/menu.phtml:16 -#: /vagrant/application/views/scripts/navigation/index.phtml:29 +#: /vagrant/application/controllers/NavigationController.php:143 /vagrant/application/controllers/NavigationController.php:151 +#: /vagrant/application/controllers/PreferenceController.php:38 /vagrant/application/views/scripts/pivottablePagination.phtml:16 +#: /vagrant/application/views/scripts/layout/menu.phtml:16 /vagrant/application/views/scripts/navigation/index.phtml:29 msgid "Navigation" msgstr "Navigation" @@ -1455,8 +1340,7 @@ msgstr "Navigationselement “%s” erfolgreich entfernt" msgid "Navigation item \"%s\" has been unshared" msgstr "Teilen des Navigationselementes “%s” erfolgreich aufgehoben" -#: /vagrant/application/controllers/NavigationController.php:301 -#: /vagrant/application/controllers/NavigationController.php:412 +#: /vagrant/application/controllers/NavigationController.php:301 /vagrant/application/controllers/NavigationController.php:412 #, php-format msgid "Navigation item \"%s\" not found" msgstr "Navigationselement “%s” wurde nicht gefunden" @@ -1470,6 +1354,10 @@ msgstr "Navigationselement “%s” erfolgreich aktualisiert" msgid "Navigation item successfully created" msgstr "Navigationselement “%s” erfolgreich angelegt" +#: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:100 +msgid "Nested Group Search" +msgstr "Suche in verschachtelten Gruppen" + #: /vagrant/application/forms/Navigation/NavigationItemForm.php:42 msgid "New Column" msgstr "Neue Spalte anlegen" @@ -1530,8 +1418,7 @@ msgstr "Neues Dashboard" msgid "New resource name missing" msgstr "Name für die neue Ressource fehlt" -#: /vagrant/library/Icinga/Web/Wizard.php:614 -#: /vagrant/library/Icinga/Web/Wizard.php:638 +#: /vagrant/library/Icinga/Web/Wizard.php:614 /vagrant/library/Icinga/Web/Wizard.php:638 msgid "Next" msgstr "Weiter" @@ -1548,12 +1435,9 @@ msgid "No LDAP resources available. Please configure an LDAP resource first." msgstr "Keine LDAP-Ressource verfügbar. Bitte zuerst eine konfigurieren." #: /vagrant/application/forms/Authentication/LoginForm.php:99 -msgid "" -"No authentication methods available. Did you create authentication.ini when " -"setting up Icinga Web 2?" +msgid "No authentication methods available. Did you create authentication.ini when setting up Icinga Web 2?" msgstr "" -"Keine Authentifizierungsmethode verfügbar. Wurde bei der Installation von " -"Icinga Web 2 eine authentication.ini erstellt?" +"Keine Authentifizierungsmethode verfügbar. Wurde bei der Installation von Icinga Web 2 eine authentication.ini erstellt?" #: /vagrant/application/views/scripts/group/list.phtml:22 msgid "No backend found which is able to list user groups" @@ -1569,14 +1453,11 @@ msgstr "Dem Dashboard wurden keine Dashlets hinzugefügt" #: /vagrant/application/views/scripts/group/show.phtml:68 msgid "No group member found matching the filter" -msgstr "" -"Es wurde kein Gruppenmitglied gefunden, das den Filterkriterien entspricht" +msgstr "Es wurde kein Gruppenmitglied gefunden, das den Filterkriterien entspricht" #: /vagrant/application/views/scripts/user/show.phtml:71 msgid "No memberships found matching the filter" -msgstr "" -"Es wurde keine Mitgliedschaften gefunden, welche den Filterkriterien " -"entsprechen" +msgstr "Es wurde keine Mitgliedschaften gefunden, welche den Filterkriterien entsprechen" #: /vagrant/application/views/scripts/role/list.phtml:17 msgid "No roles found." @@ -1584,9 +1465,7 @@ msgstr "Es wurden keine Rollen gefunden" #: /vagrant/application/views/scripts/group/list.phtml:44 msgid "No user groups found matching the filter" -msgstr "" -"Es wurden keine Benutzergruppen gefunden, welche den Filterkriterien " -"entsprechen" +msgstr "Es wurden keine Benutzergruppen gefunden, welche den Filterkriterien entsprechen" #: /vagrant/application/views/scripts/user/list.phtml:44 msgid "No users found matching the filter" @@ -1614,12 +1493,8 @@ msgid "None" msgstr "Kein Userbackend" #: /vagrant/application/forms/Config/UserGroup/UserGroupForm.php:63 -msgid "" -"Note that all users that are currently a member of this group will have " -"their membership cleared automatically." -msgstr "" -"Bitte beachten Sie, dass allen Mitgliedern dieser Gruppe ihre Mitgliedschaft " -"automatisch entzogen wird." +msgid "Note that all users that are currently a member of this group will have their membership cleared automatically." +msgstr "Bitte beachten Sie, dass allen Mitgliedern dieser Gruppe ihre Mitgliedschaft automatisch entzogen wird." #: /vagrant/application/forms/Config/ResourceConfigForm.php:96 msgid "Old resource name missing" @@ -1627,12 +1502,9 @@ msgstr "Der alte Ressourcenname fehlt" #: /vagrant/application/forms/Config/Resource/LdapResourceForm.php:91 msgid "Only the root and its child nodes will be accessible on this resource." -msgstr "" -"Auf dieser Ressource werden nur der Wurzelknoten und seine Kindknoten " -"sichtbar sein." +msgstr "Auf dieser Ressource werden nur der Wurzelknoten und seine Kindknoten sichtbar sein." -#: /vagrant/application/controllers/NavigationController.php:200 -#: /vagrant/application/views/scripts/navigation/shared.phtml:21 +#: /vagrant/application/controllers/NavigationController.php:200 /vagrant/application/views/scripts/navigation/shared.phtml:21 msgid "Owner" msgstr "Eigentümer" @@ -1657,10 +1529,8 @@ msgstr "Dashboard" msgid "Parent" msgstr "Übergeordnetes Element" -#: /vagrant/application/forms/Authentication/LoginForm.php:52 -#: /vagrant/application/forms/Config/Resource/DbResourceForm.php:137 -#: /vagrant/application/forms/Config/User/UserForm.php:41 -#: /vagrant/application/forms/Config/User/UserForm.php:63 +#: /vagrant/application/forms/Authentication/LoginForm.php:52 /vagrant/application/forms/Config/Resource/DbResourceForm.php:137 +#: /vagrant/application/forms/Config/User/UserForm.php:41 /vagrant/application/forms/Config/User/UserForm.php:63 msgid "Password" msgstr "Kennwort" @@ -1690,38 +1560,32 @@ msgstr "Bitte kopieren Sie den folgenden Ausschnitt aus dem Dashboard nach" #: /vagrant/application/forms/Authentication/LoginForm.php:112 msgid "" -"Please note that not all authentication methods were available. Check the " -"system log or Icinga Web 2 log for more information." +"Please note that not all authentication methods were available. Check the system log or Icinga Web 2 log for more information." msgstr "" -"Bitte beachten Sie, dass nicht alle Authentifizierungsmethoden verfügbar " -"waren. Im Systemlog oder jenes von Icinga Web 2 für weitere Informationen." +"Bitte beachten Sie, dass nicht alle Authentifizierungsmethoden verfügbar waren. Im Systemlog oder jenes von Icinga Web 2 für " +"weitere Informationen." #: /vagrant/application/forms/Config/UserGroup/AddMemberForm.php:143 -msgid "" -"Please provide at least one username, either by choosing one in the list or " -"by manually typing one in the text box below" +msgid "Please provide at least one username, either by choosing one in the list or by manually typing one in the text box below" msgstr "" -"Bitte geben Sie mindestens einen Benutzernamen ein, entweder durch Auswahl " -"aus der Liste oder durch händische Eingabe in das Eingabefeld weiter unten" +"Bitte geben Sie mindestens einen Benutzernamen ein, entweder durch Auswahl aus der Liste oder durch händische Eingabe in das " +"Eingabefeld weiter unten" #: /vagrant/application/views/scripts/search/hint.phtml:4 msgid "" -"Please use the asterisk (*) as a placeholder for wildcard searches. For " -"convenience I'll always add a wildcard in front and after your search string." +"Please use the asterisk (*) as a placeholder for wildcard searches. For convenience I'll always add a wildcard in front and " +"after your search string." msgstr "" -"Bitte benutze das Sternchen (*) als Jokerzeichen für eine Suche mit " -"Platzhaltern. Der Einfachheit halber hänge ich immer einen Platzhalter an " -"das letzte von Ihnen eingegebene Zeichen an." +"Bitte benutze das Sternchen (*) als Jokerzeichen für eine Suche mit Platzhaltern. Der Einfachheit halber hänge ich immer " +"einen Platzhalter an das letzte von Ihnen eingegebene Zeichen an." #: /vagrant/application/forms/Config/Resource/DbResourceForm.php:107 #: /vagrant/application/forms/Config/Resource/LdapResourceForm.php:60 msgid "Port" msgstr "Port" -#: /vagrant/application/controllers/NavigationController.php:134 -#: /vagrant/application/controllers/PreferenceController.php:33 -#: /vagrant/library/Icinga/Application/Web.php:350 -#: /vagrant/library/Icinga/Web/Menu.php:309 +#: /vagrant/application/controllers/NavigationController.php:134 /vagrant/application/controllers/PreferenceController.php:33 +#: /vagrant/library/Icinga/Application/Web.php:350 /vagrant/library/Icinga/Web/Menu.php:309 msgid "Preferences" msgstr "Einstellungen" @@ -1748,30 +1612,19 @@ msgstr "Privater Schlüssel" #: /vagrant/application/forms/Config/UserGroup/AddMemberForm.php:120 msgid "Provide one or more usernames separated by comma to add as group member" -msgstr "" -"Bitte geben Sie einen oder mehrere Benutzernamen durch Komma getrennt ein, " -"um " +msgstr "Bitte geben Sie einen oder mehrere Benutzernamen durch Komma getrennt ein, um " #: /vagrant/library/Icinga/Web/Form/Decorator/Autosubmit.php:120 -msgid "" -"Push this button to update the form to reflect the change that was made in " -"the field on the left" -msgstr "" -"Klicken Sie hier, um die in dem Feld auf der linken Seite gemachten " -"Änderungen auf das Formular anzuwenden" +msgid "Push this button to update the form to reflect the change that was made in the field on the left" +msgstr "Klicken Sie hier, um die in dem Feld auf der linken Seite gemachten Änderungen auf das Formular anzuwenden" #: /vagrant/library/Icinga/Web/Form/Decorator/Autosubmit.php:119 -msgid "" -"Push this button to update the form to reflect the changes that were made " -"below" -msgstr "" -"Klicken Sie hier, um die unten gemachten Änderungen auf das Formular " -"anzuwenden" +msgid "Push this button to update the form to reflect the changes that were made below" +msgstr "Klicken Sie hier, um die unten gemachten Änderungen auf das Formular anzuwenden" #: /vagrant/application/forms/Config/UserBackend/LdapBackendForm.php:90 msgid "Push to fill in the chosen connection's default settings." -msgstr "" -"Klicken Sie hier, um die gewählten Verbindungseinstellungen auszufüllen." +msgstr "Klicken Sie hier, um die gewählten Verbindungseinstellungen auszufüllen." #: /vagrant/library/Icinga/Repository/Repository.php:1019 #, php-format @@ -1787,8 +1640,7 @@ msgstr "Abfragespalte “%s” wurde in Tabelle “%s” nicht gefunden" msgid "Ready to search" msgstr "Bereit zur Suche" -#: /vagrant/application/views/scripts/group/list.phtml:52 -#: /vagrant/application/views/scripts/group/show.phtml:77 +#: /vagrant/application/views/scripts/group/list.phtml:52 /vagrant/application/views/scripts/group/show.phtml:77 #: /vagrant/application/views/scripts/user/list.phtml:53 msgid "Remove" msgstr "Entfernen" @@ -1813,8 +1665,7 @@ msgstr "Dieses Navigationselement entfernen" msgid "Remove Resource" msgstr "Ressource entfernen" -#: /vagrant/application/controllers/RoleController.php:137 -#: /vagrant/application/controllers/RoleController.php:140 +#: /vagrant/application/controllers/RoleController.php:137 /vagrant/application/controllers/RoleController.php:140 msgid "Remove Role" msgstr "Rolle entfernen" @@ -1910,10 +1761,8 @@ msgstr "Benutzergruppenbackend %s entfernen" msgid "Report a bug" msgstr "Einen Fehler melden" -#: /vagrant/library/Icinga/Cli/Params.php:183 -#: /vagrant/library/Icinga/Cli/Params.php:285 -#: /vagrant/library/Icinga/Web/UrlParams.php:65 -#: /vagrant/library/Icinga/Web/UrlParams.php:160 +#: /vagrant/library/Icinga/Cli/Params.php:183 /vagrant/library/Icinga/Cli/Params.php:285 +#: /vagrant/library/Icinga/Web/UrlParams.php:65 /vagrant/library/Icinga/Web/UrlParams.php:160 #, php-format msgid "Required parameter '%s' missing" msgstr "Der erforderliche Parametet ‘%s’ fehlt" @@ -1953,8 +1802,7 @@ msgstr "Ressourcentyp" msgid "Resource already exists" msgstr "Die Ressource existiert bereits" -#: /vagrant/application/forms/Config/ResourceConfigForm.php:73 -#: /vagrant/application/forms/Config/ResourceConfigForm.php:122 +#: /vagrant/application/forms/Config/ResourceConfigForm.php:73 /vagrant/application/forms/Config/ResourceConfigForm.php:122 #: /vagrant/application/forms/Config/ResourceConfigForm.php:196 msgid "Resource name missing" msgstr "Der Ressourcenname fehlt" @@ -1969,15 +1817,11 @@ msgstr "Ressourcen dienen als Datenquellen für Icinga Web 2." #: /vagrant/application/forms/Security/RoleForm.php:59 msgid "Restrict which groups this role can share items and information with" -msgstr "" -"Beschränken Sie, mit welchen Gruppen diese Rolle Elemente und Informationen " -"teilen kann." +msgstr "Beschränken Sie, mit welchen Gruppen diese Rolle Elemente und Informationen teilen kann." #: /vagrant/application/forms/Security/RoleForm.php:53 msgid "Restrict which users this role can share items and information with" -msgstr "" -"Beschränken Sie, mit welchen Benutzern diese Rolle Elemente und " -"Informationen teilen kann." +msgstr "Beschränken Sie, mit welchen Benutzern diese Rolle Elemente und Informationen teilen kann." #: /vagrant/application/views/scripts/config/module.phtml:68 msgid "Restrictions" @@ -1999,10 +1843,8 @@ msgstr "Rolle entfernt" msgid "Role updated" msgstr "Rolle aktualisiert" -#: /vagrant/application/controllers/GroupController.php:344 -#: /vagrant/application/controllers/RoleController.php:153 -#: /vagrant/application/controllers/UserController.php:310 -#: /vagrant/library/Icinga/Web/Menu.php:284 +#: /vagrant/application/controllers/GroupController.php:344 /vagrant/application/controllers/RoleController.php:153 +#: /vagrant/application/controllers/UserController.php:310 /vagrant/library/Icinga/Web/Menu.php:284 msgid "Roles" msgstr "Rollen" @@ -2018,13 +1860,11 @@ msgstr "SQL Datenbank" msgid "SSH Identity" msgstr "SSH-Identität" -#: /vagrant/application/forms/Config/User/UserForm.php:68 -#: /vagrant/application/forms/Config/UserGroup/UserGroupForm.php:32 +#: /vagrant/application/forms/Config/User/UserForm.php:68 /vagrant/application/forms/Config/UserGroup/UserGroupForm.php:32 msgid "Save" msgstr "Speichern" -#: /vagrant/application/forms/Config/GeneralConfigForm.php:22 -#: /vagrant/application/forms/Config/ResourceConfigForm.php:30 +#: /vagrant/application/forms/Config/GeneralConfigForm.php:22 /vagrant/application/forms/Config/ResourceConfigForm.php:30 #: /vagrant/application/forms/Config/UserBackendConfigForm.php:46 #: /vagrant/application/forms/Config/UserGroup/UserGroupBackendForm.php:29 #: /vagrant/application/forms/Navigation/NavigationConfigForm.php:85 @@ -2043,8 +1883,7 @@ msgstr "Dauerhaft speichern" msgid "Saving Configuration Failed" msgstr "Das Speichern der Konfiguration ist fehgeschlagen" -#: /vagrant/application/views/scripts/layout/menu.phtml:11 -#: /vagrant/library/Icinga/Web/Widget/SearchDashboard.php:33 +#: /vagrant/application/views/scripts/layout/menu.phtml:11 /vagrant/library/Icinga/Web/Widget/SearchDashboard.php:33 #: /vagrant/library/Icinga/Web/Widget/SearchDashboard.php:50 msgid "Search" msgstr "Suche" @@ -2072,17 +1911,12 @@ msgstr "Wählen Sie das Dashboard aus, dem Sie das Dashlet hinzufügen wollen" #: /vagrant/application/forms/Config/User/CreateMembershipForm.php:81 #, php-format msgid "Select one or more groups where to add %s as member" -msgstr "" -"Wählen Sie eine oder mehrere Gruppen aus, wo Sie %s als Mitglied hinzufügen " -"wollen" +msgstr "Wählen Sie eine oder mehrere Gruppen aus, wo Sie %s als Mitglied hinzufügen wollen" #: /vagrant/application/forms/Config/UserGroup/AddMemberForm.php:106 -msgid "" -"Select one or more users (fetched from your user backends) to add as group " -"member" +msgid "Select one or more users (fetched from your user backends) to add as group member" msgstr "" -"Wählen Sie einen oder mehrere Benutzer (die vom Benutzerbackend geholt " -"wurden), die der Gruppe hinzugefügt werden sollen" +"Wählen Sie einen oder mehrere Benutzer (die vom Benutzerbackend geholt wurden), die der Gruppe hinzugefügt werden sollen" #: /vagrant/application/views/scripts/pivottablePagination.phtml:35 msgid "Services" @@ -2090,18 +1924,15 @@ msgstr "Services" #: /vagrant/application/forms/Config/General/ApplicationConfigForm.php:40 msgid "" -"Set whether to show an exception's stacktrace by default. This can also be " -"set in a user's preferences with the appropriate permission." +"Set whether to show an exception's stacktrace by default. This can also be set in a user's preferences with the appropriate " +"permission." msgstr "" -"Stellen Sie hier ein, ob standardmäßig ein Stacktrace im Falle von " -"Exceptions angezeigt werden soll. Dies kann auch von Benutzern mit den " -"nötigen Rechten eingestellt werden." +"Stellen Sie hier ein, ob standardmäßig ein Stacktrace im Falle von Exceptions angezeigt werden soll. Dies kann auch von " +"Benutzern mit den nötigen Rechten eingestellt werden." #: /vagrant/application/forms/PreferenceForm.php:224 msgid "Set whether to show an exception's stacktrace." -msgstr "" -"Stellen Sie hier ein, ob ein Stacktrace im Falle von Exceptions angezeigt " -"werden soll." +msgstr "Stellen Sie hier ein, ob ein Stacktrace im Falle von Exceptions angezeigt werden soll." #: /vagrant/library/Icinga/Web/Widget/Tabextension/DashboardSettings.php:34 msgid "Settings" @@ -2113,10 +1944,8 @@ msgstr "Einstellungen" msgid "Shared" msgstr "Freigegeben" -#: /vagrant/application/controllers/NavigationController.php:193 -#: /vagrant/application/controllers/NavigationController.php:201 -#: /vagrant/application/views/scripts/navigation/shared.phtml:19 -#: /vagrant/library/Icinga/Application/Web.php:330 +#: /vagrant/application/controllers/NavigationController.php:193 /vagrant/application/controllers/NavigationController.php:201 +#: /vagrant/application/views/scripts/navigation/shared.phtml:19 /vagrant/library/Icinga/Application/Web.php:330 msgid "Shared Navigation" msgstr "Freigegebene Navigation" @@ -2131,8 +1960,7 @@ msgctxt "dashboard.pane.tooltip" msgid "Show Search" msgstr "Suche anzeigen" -#: /vagrant/application/forms/PreferenceForm.php:223 -#: /vagrant/application/forms/Config/General/ApplicationConfigForm.php:38 +#: /vagrant/application/forms/PreferenceForm.php:223 /vagrant/application/forms/Config/General/ApplicationConfigForm.php:38 msgid "Show Stacktraces" msgstr "Stacktrace anzeigen" @@ -2141,8 +1969,7 @@ msgstr "Stacktrace anzeigen" msgid "Show dashlet %s" msgstr "Dashlet %s anzeigen" -#: /vagrant/application/views/scripts/group/show.phtml:93 -#: /vagrant/application/views/scripts/user/list.phtml:68 +#: /vagrant/application/views/scripts/group/show.phtml:93 /vagrant/application/views/scripts/user/list.phtml:68 #, php-format msgid "Show detailed information about %s" msgstr "Zeige detaillierte Informationen über %s" @@ -2162,15 +1989,13 @@ msgstr "Zeige detaillierte Informationen über die Benutzergruppe %s" msgid "Show group %s" msgstr "Zeige Gruppe %s" -#: /vagrant/application/views/scripts/mixedPagination.phtml:11 -#: /vagrant/application/views/scripts/mixedPagination.phtml:44 +#: /vagrant/application/views/scripts/mixedPagination.phtml:11 /vagrant/application/views/scripts/mixedPagination.phtml:44 #: /vagrant/application/views/scripts/mixedPagination.phtml:61 #, php-format msgid "Show rows %u to %u of %u" msgstr "Zeige die Zeilen %d bis %d von %d" -#: /vagrant/application/views/scripts/about/index.phtml:127 -#: /vagrant/application/views/scripts/config/modules.phtml:32 +#: /vagrant/application/views/scripts/about/index.phtml:127 /vagrant/application/views/scripts/config/modules.phtml:32 #, php-format msgid "Show the overview of the %s module" msgstr "Zeige eine Übersicht des Moduls %s" @@ -2204,8 +2029,7 @@ msgstr "Fehler beim Schreiben der Datei" msgid "Sort by" msgstr "Sortieren nach" -#: /vagrant/application/views/scripts/config/module.phtml:20 -#: /vagrant/application/views/scripts/user/show.phtml:32 +#: /vagrant/application/views/scripts/config/module.phtml:20 /vagrant/application/views/scripts/user/show.phtml:32 msgid "State" msgstr "Status" @@ -2217,8 +2041,7 @@ msgstr "Diesen Filter bearbeiten" msgid "Support / Mailinglists" msgstr "Support/Mailinglisten" -#: /vagrant/library/Icinga/Application/Web.php:296 -#: /vagrant/library/Icinga/Web/Menu.php:249 +#: /vagrant/library/Icinga/Application/Web.php:296 /vagrant/library/Icinga/Web/Menu.php:249 msgid "System" msgstr "System" @@ -2226,21 +2049,17 @@ msgstr "System" msgid "Target" msgstr "Ziel" -#: /vagrant/application/views/scripts/about/index.phtml:29 -#: /vagrant/application/views/scripts/authentication/login.phtml:26 +#: /vagrant/application/views/scripts/about/index.phtml:29 /vagrant/application/views/scripts/authentication/login.phtml:26 msgid "The Icinga Project" msgstr "Das Icinga Projekt" #: /vagrant/application/forms/Config/UserBackend/LdapBackendForm.php:70 msgid "The LDAP connection to use for authenticating with this provider." -msgstr "" -"Die Datenbankverbindung, welche zur Authentifizierung mit diesem Provider " -"genutzt werden soll" +msgstr "Die Datenbankverbindung, welche zur Authentifizierung mit diesem Provider genutzt werden soll" #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:54 msgid "The LDAP connection to use for this backend." -msgstr "" -"Die Datenbankverbindung, welche mit diesem Backend verwendet werden soll." +msgstr "Die Datenbankverbindung, welche mit diesem Backend verwendet werden soll." #: /vagrant/application/forms/Config/General/LoggingConfigForm.php:75 #: /vagrant/application/forms/Config/General/LoggingConfigForm.php:85 @@ -2249,27 +2068,19 @@ msgstr "Das Applikationspräfix darf keine Leerzeichen enthalten." #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:181 msgid "The attribute name used for storing a group's members." -msgstr "" -"Der Attributname welcher benutzt wird, um Gruppenmitglieder auf dem LDAP-" -"Server abzulegen" +msgstr "Der Attributname welcher benutzt wird, um Gruppenmitglieder auf dem LDAP-Server abzulegen" #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:168 msgid "The attribute name used for storing a group's name on the LDAP server." -msgstr "" -"Der Attributname welcher benutzt wird, um Gruppennamen auf dem LDAP-Server " -"abzulegen" +msgstr "Der Attributname welcher benutzt wird, um Gruppennamen auf dem LDAP-Server abzulegen" #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:261 msgid "The attribute name used for storing a user's name on the LDAP server." -msgstr "" -"Der Attributname welcher benutzt wird, um einen Benutzernamen auf dem LDAP-" -"Server abzulegen." +msgstr "Der Attributname welcher benutzt wird, um einen Benutzernamen auf dem LDAP-Server abzulegen." #: /vagrant/application/forms/Config/UserBackend/LdapBackendForm.php:191 msgid "The attribute name used for storing the user name on the LDAP server." -msgstr "" -"Der Attributname welcher benutzt wird, um den Benutzernamen auf dem LDAP-" -"Server abzulegen." +msgstr "Der Attributname welcher benutzt wird, um den Benutzernamen auf dem LDAP-Server abzulegen." #: /vagrant/application/forms/Config/Resource/DbResourceForm.php:145 msgid "The character set for the database" @@ -2279,22 +2090,17 @@ msgstr "Der Zeichensatz für die Datenbank" msgid "The column pattern must be a valid regular expression." msgstr "Das Muster für die Spalte muss ein gültiger regulärer Ausdruck sein." -#: /vagrant/application/forms/Config/ResourceConfigForm.php:324 -#: /vagrant/application/forms/Config/UserBackendConfigForm.php:429 +#: /vagrant/application/forms/Config/ResourceConfigForm.php:324 /vagrant/application/forms/Config/UserBackendConfigForm.php:429 msgid "The configuration has been successfully validated." msgstr "Die Konfiguration wurde erfolgreich überprüft." #: /vagrant/application/forms/Config/UserBackend/DbBackendForm.php:66 msgid "The database connection to use for authenticating with this provider" -msgstr "" -"Die Datenbankverbindung, welche zur Authentifizierung mit diesem Provider " -"genutzt werden soll" +msgstr "Die Datenbankverbindung, welche zur Authentifizierung mit diesem Provider genutzt werden soll" #: /vagrant/application/forms/Config/UserGroup/DbUserGroupBackendForm.php:48 msgid "The database connection to use for this backend" -msgstr "" -"Die Datenbankverbindung, welche zur Authentifizierung mit diesem Provider " -"genutzt werden soll" +msgstr "Die Datenbankverbindung, welche zur Authentifizierung mit diesem Provider genutzt werden soll" #: /vagrant/application/forms/Config/General/ThemingConfigForm.php:40 msgctxt "Form element description" @@ -2322,37 +2128,28 @@ msgstr "Der Filter darf nicht in Klammern eingeschlossen sein." #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:139 #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:232 msgid "" -"The filter needs to be expressed as standard LDAP expression, without outer " -"parentheses. (e.g. &(foo=bar)(bar=foo) or foo=bar)" +"The filter needs to be expressed as standard LDAP expression, without outer parentheses. (e.g. &(foo=bar)(bar=foo) or foo=bar)" msgstr "" -"Der Filter muss als standardgemäßer LDAP-Ausdruck angegeben werden, ohne " -"umschließende Klammern. (z.B. &(foo=bar)(bar=foo) oder foo=bar)" +"Der Filter muss als standardgemäßer LDAP-Ausdruck angegeben werden, ohne umschließende Klammern. (z.B. &(foo=bar)(bar=foo) " +"oder foo=bar)" #: /vagrant/application/forms/Config/UserBackend/LdapBackendForm.php:157 -msgid "" -"The filter needs to be expressed as standard LDAP expression. (e.g. " -"&(foo=bar)(bar=foo) or foo=bar)" -msgstr "" -"Der Filter muss als standardgemäßer LDAP-Ausdruck angegeben werden. (z.B. " -"&(foo=bar)(bar=foo) oder foo=bar)" +msgid "The filter needs to be expressed as standard LDAP expression. (e.g. &(foo=bar)(bar=foo) or foo=bar)" +msgstr "Der Filter muss als standardgemäßer LDAP-Ausdruck angegeben werden. (z.B. &(foo=bar)(bar=foo) oder foo=bar)" #: /vagrant/application/forms/Config/UserBackend/ExternalBackendForm.php:54 msgid "The filter pattern must be a valid regular expression." msgstr "Das Filtermuster muss ein gültiger regulärer Ausdruck sein." #: /vagrant/application/forms/Config/UserBackend/ExternalBackendForm.php:51 -msgid "" -"The filter to use to strip specific parts off from usernames. Leave empty if " -"you do not want to strip off anything." +msgid "The filter to use to strip specific parts off from usernames. Leave empty if you do not want to strip off anything." msgstr "" -"Der Filter, anhand dessen bestimmte Teile von Benutzernamen entfernt werden. " -"Lassen Sie dieses Feld leer, wenn Sie keine Änderungen vornehmen möchten." +"Der Filter, anhand dessen bestimmte Teile von Benutzernamen entfernt werden. Lassen Sie dieses Feld leer, wenn Sie keine " +"Änderungen vornehmen möchten." #: /vagrant/application/forms/Config/General/LoggingConfigForm.php:116 msgid "The full path to the log file to write messages to." -msgstr "" -"Der vollständige Pfad zu der Logdatei, in welche Nachrichten geschrieben " -"werden sollen." +msgstr "Der vollständige Pfad zu der Logdatei, in welche Nachrichten geschrieben werden sollen." #: /vagrant/application/forms/Config/Resource/SshResourceForm.php:62 msgid "The given SSH key is invalid" @@ -2364,31 +2161,23 @@ msgstr "Der Hostname der Datenbank." #: /vagrant/application/forms/Config/Resource/LdapResourceForm.php:49 msgid "The hostname or address of the LDAP server to use for authentication" -msgstr "" -"Der Hostname oder die IP-Adresse des LDAP-Servers der zur Authentifizierung " -"genutzt werden soll" +msgstr "Der Hostname oder die IP-Adresse des LDAP-Servers der zur Authentifizierung genutzt werden soll" #: /vagrant/application/forms/Navigation/NavigationItemForm.php:70 -msgid "" -"The icon of this navigation item. Leave blank if you do not want a icon " -"being displayed" -msgstr "" -"Das Icon für dieses Navigationselement. Leer lassen, um kein Icon anzuzeigen." +msgid "The icon of this navigation item. Leave blank if you do not want a icon being displayed" +msgstr "Das Icon für dieses Navigationselement. Leer lassen, um kein Icon anzuzeigen." #: /vagrant/application/forms/Config/General/LoggingConfigForm.php:54 msgid "The maximum logging level to emit." -msgstr "" -"Der höchste Loglevel, bis zu welchem Nachrichten ausgegeben werden sollen." +msgstr "Der höchste Loglevel, bis zu welchem Nachrichten ausgegeben werden sollen." #: /vagrant/application/forms/Config/General/LoggingConfigForm.php:73 msgid "The name of the application by which to prefix syslog messages." -msgstr "" -"Der Anwendungsname, welcher Syslog-Nachrichten vorangestellt werden soll." +msgstr "Der Anwendungsname, welcher Syslog-Nachrichten vorangestellt werden soll." #: /vagrant/application/forms/Navigation/DashletForm.php:19 msgid "The name of the dashboard pane in which to display this dashlet" -msgstr "" -"Der Name des Dashboards, in welchem dieses Dashlet angezeigt werden soll." +msgstr "Der Name des Dashboards, in welchem dieses Dashlet angezeigt werden soll." #: /vagrant/application/forms/Config/Resource/DbResourceForm.php:119 msgid "The name of the database to use" @@ -2400,58 +2189,42 @@ msgstr "Der Name dieser Rolle" #: /vagrant/application/forms/Config/UserBackend/DbBackendForm.php:55 #: /vagrant/application/forms/Config/UserBackend/ExternalBackendForm.php:34 -msgid "" -"The name of this authentication provider that is used to differentiate it " -"from others" +msgid "The name of this authentication provider that is used to differentiate it from others" msgstr "Der eindeutige Name dieses Authentifizierungsproviders" #: /vagrant/application/forms/Config/UserBackend/LdapBackendForm.php:59 -msgid "" -"The name of this authentication provider that is used to differentiate it " -"from others." +msgid "The name of this authentication provider that is used to differentiate it from others." msgstr "Der eindeutige Name dieses Authentifizierungsproviders." #: /vagrant/application/forms/Navigation/NavigationConfigForm.php:584 -msgid "" -"The name of this navigation item that is used to differentiate it from others" +msgid "The name of this navigation item that is used to differentiate it from others" msgstr "Der eindeutige dieses Navigationselementes" #: /vagrant/application/forms/Config/UserGroup/DbUserGroupBackendForm.php:36 #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:41 -msgid "" -"The name of this user group backend that is used to differentiate it from " -"others" +msgid "The name of this user group backend that is used to differentiate it from others" msgstr "Der eindeutige Name dieses Benutzergruppenbackends" #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:123 msgid "The object class used for storing groups on the LDAP server." -msgstr "" -"Die Objekt-Klasse welche benutzt wird, um Gruppen auf diesem LDAP-Server " -"abzulegen" +msgstr "Die Objekt-Klasse welche benutzt wird, um Gruppen auf diesem LDAP-Server abzulegen" #: /vagrant/application/forms/Config/UserBackend/LdapBackendForm.php:140 #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:216 msgid "The object class used for storing users on the LDAP server." -msgstr "" -"Die Objekt-Klasse welche benutzt wird, um Benutzer auf diesem LDAP-Server " -"abzulegen" +msgstr "Die Objekt-Klasse welche benutzt wird, um Benutzer auf diesem LDAP-Server abzulegen" #: /vagrant/application/forms/Navigation/NavigationConfigForm.php:670 -msgid "" -"The parent item to assign this navigation item to. Select \"None\" to make " -"this a main navigation item" +msgid "The parent item to assign this navigation item to. Select \"None\" to make this a main navigation item" msgstr "" -"Das übergeordnete Element, dem dieses Navigationselement zugewiesen werden " -"soll. Wählen Sie “Keines”, um dies zu einem Hauptnavigationselement zu " -"machen." +"Das übergeordnete Element, dem dieses Navigationselement zugewiesen werden soll. Wählen Sie “Keines”, um dies zu einem " +"Hauptnavigationselement zu machen." #: /vagrant/application/forms/Navigation/MenuItemForm.php:27 -msgid "" -"The parent menu to assign this menu entry to. Select \"None\" to make this a " -"main menu entry" +msgid "The parent menu to assign this menu entry to. Select \"None\" to make this a main menu entry" msgstr "" -"Der übergeordnete Menü, dem dieses Menü zugewiesen werden soll. Wählen Sie " -"“Keines”, um dies zu einem Hauptmenüeintrag zu machen." +"Der übergeordnete Menü, dem dieses Menü zugewiesen werden soll. Wählen Sie “Keines”, um dies zu einem Hauptmenüeintrag zu " +"machen." #: /vagrant/application/forms/Config/Resource/DbResourceForm.php:138 msgid "The password to use for authentication" @@ -2463,28 +2236,24 @@ msgstr "Das Kennwort welches zum Abfragen des LDAP-Servers benutzt werden soll" #: /vagrant/application/forms/Config/Resource/LivestatusResourceForm.php:45 msgid "The path to your livestatus socket used for querying monitoring data" -msgstr "" -"Der Pfad zu Ihrem Live-Status Socket, über welchen Monitoring-Daten " -"abgefragt werden sollen" +msgstr "Der Pfad zu Ihrem Live-Status Socket, über welchen Monitoring-Daten abgefragt werden sollen" #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:192 msgid "" -"The path where groups can be found on the LDAP server. Leave empty to select " -"all users available using the specified connection." +"The path where groups can be found on the LDAP server. Leave empty to select all users available using the specified " +"connection." msgstr "" -"Der Pfad unter dem Gruppen auf dem LDAP Server gefunden werden können. Leer " -"lassen, um alle verfügbaren Benutzer für die angegebene Verbindung " -"auszuwählen." +"Der Pfad unter dem Gruppen auf dem LDAP Server gefunden werden können. Leer lassen, um alle verfügbaren Benutzer für die " +"angegebene Verbindung auszuwählen." #: /vagrant/application/forms/Config/UserBackend/LdapBackendForm.php:212 #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:273 msgid "" -"The path where users can be found on the LDAP server. Leave empty to select " -"all users available using the specified connection." +"The path where users can be found on the LDAP server. Leave empty to select all users available using the specified " +"connection." msgstr "" -"Der Pfad unter dem Benutzer auf dem LDAP Server gefunden werden können. Leer " -"lassen, um alle verfügbaren Benutzer für die angegebene Verbindung " -"auszuwählen." +"Der Pfad unter dem Benutzer auf dem LDAP Server gefunden werden können. Leer lassen, um alle verfügbaren Benutzer für die " +"angegebene Verbindung auszuwählen." #: /vagrant/application/forms/Config/Resource/FileResourceForm.php:59 msgid "The pattern by which to identify columns." @@ -2492,13 +2261,11 @@ msgstr "Der reguläre Ausdruck, mit welchem Spalten identifiziert werden können #: /vagrant/application/forms/Security/RoleForm.php:135 msgid "The permissions to grant. You may select more than one permission" -msgstr "" -"Die zu vergebenden Berechtigungen. Sie können mehrere gleichzeitig auswählen." +msgstr "Die zu vergebenden Berechtigungen. Sie können mehrere gleichzeitig auswählen." #: /vagrant/application/forms/Config/Resource/LdapResourceForm.php:61 msgid "The port of the LDAP server to use for authentication" -msgstr "" -"Der Port des LDAP-Servers, der zur Authentifizierung genutzt werden soll." +msgstr "Der Port des LDAP-Servers, der zur Authentifizierung genutzt werden soll." #: /vagrant/application/forms/Config/Resource/DbResourceForm.php:106 msgid "The port to use" @@ -2516,13 +2283,11 @@ msgstr "Der private Schlüssel, der für SSH-Verbindungen verwendet wird." #: /vagrant/application/controllers/ConfigController.php:398 #, php-format msgid "" -"The resource \"%s\" is currently utilized for authentication by user backend " -"\"%s\". Removing the resource can result in noone being able to log in any " -"longer." +"The resource \"%s\" is currently utilized for authentication by user backend \"%s\". Removing the resource can result in " +"noone being able to log in any longer." msgstr "" -"Die Ressource “%s” wird momentan für die Authentifizierung durch das " -"Benutzerbackend “%s” verwendet. Das Entfernen dieser Ressource kann dazu " -"führen, dass kein Login mehr möglich ist." +"Die Ressource “%s” wird momentan für die Authentifizierung durch das Benutzerbackend “%s” verwendet. Das Entfernen dieser " +"Ressource kann dazu führen, dass kein Login mehr möglich ist." #: /vagrant/application/forms/Navigation/NavigationItemForm.php:39 msgid "The target where to open this navigation item's url" @@ -2542,9 +2307,7 @@ msgstr "Der Typ der Ressource" #: /vagrant/application/forms/Config/UserBackendConfigForm.php:297 msgid "The type of the resource to use for this authenticaton provider" -msgstr "" -"Die Resource, die zum Authentifizieren mit diesem Provider genutzt werden " -"soll" +msgstr "Die Resource, die zum Authentifizieren mit diesem Provider genutzt werden soll" #: /vagrant/application/forms/Navigation/NavigationConfigForm.php:648 msgid "The type of this navigation item" @@ -2573,26 +2336,19 @@ msgstr "" #: /vagrant/application/forms/Navigation/DashletForm.php:29 msgid "" -"The url to load in the dashlet. For external urls, make sure to prepend an " -"appropriate protocol identifier (e.g. http://example.tld)" +"The url to load in the dashlet. For external urls, make sure to prepend an appropriate protocol identifier (e.g. http://" +"example.tld)" msgstr "" -"Die URL, die in dem Dashlet geladen werden soll. Stellen Sie für externe " -"URLs sicher, dass Sie einen passenden Protokollnamen voran stellen (z.B. " -"http://example.tld)" +"Die URL, die in dem Dashlet geladen werden soll. Stellen Sie für externe URLs sicher, dass Sie einen passenden Protokollnamen " +"voran stellen (z.B. http://example.tld)" #: /vagrant/application/forms/Config/UserGroup/LdapUserGroupBackendForm.php:78 msgid "The user backend to link with this user group backend." -msgstr "" -"Das Benutzerbackend, mit dem dieses Benutzergruppenbackend verknüpft werden " -"soll." +msgstr "Das Benutzerbackend, mit dem dieses Benutzergruppenbackend verknüpft werden soll." #: /vagrant/application/forms/Config/Resource/LdapResourceForm.php:101 -msgid "" -"The user dn to use for querying the ldap server. Leave the dn and password " -"empty for attempting an anonymous bind" -msgstr "" -"Der Benutzer DN, mit dem der LDAP-Server abgefragt werden soll. Leer lassen, " -"um einen anonymen Zugriff zu versuchen." +msgid "The user dn to use for querying the ldap server. Leave the dn and password empty for attempting an anonymous bind" +msgstr "Der Benutzer DN, mit dem der LDAP-Server abgefragt werden soll. Leer lassen, um einen anonymen Zugriff zu versuchen." #: /vagrant/application/forms/Config/Resource/DbResourceForm.php:128 msgid "The user name to use for authentication" @@ -2612,11 +2368,8 @@ msgid "There is no such module installed." msgstr "Gegenwärtig ist kein solches Modul installiert." #: /vagrant/application/views/scripts/showConfiguration.phtml:15 -msgid "" -"There's an application error preventing you from persisting the configuration" -msgstr "" -"Ein Fehler in der Anwendung verhindert, dass Sie die Konfiguration speichern " -"können" +msgid "There's an application error preventing you from persisting the configuration" +msgstr "Ein Fehler in der Anwendung verhindert, dass Sie die Konfiguration speichern können" #: /vagrant/application/views/scripts/showConfiguration.phtml:10 msgid "This could have one or more of the following reasons:" @@ -2624,34 +2377,26 @@ msgstr "Dies könnte an einem oder mehreren der folgenden Gründe liegen:" #: /vagrant/application/views/scripts/navigation/shared.phtml:49 #, php-format -msgid "" -"This is a child of the navigation item %1$s. You can only unshare this item " -"by unsharing %1$s" +msgid "This is a child of the navigation item %1$s. You can only unshare this item by unsharing %1$s" msgstr "" -"Dies ist ein untergeordnetes Element des Navigationselementes %1$s. Sie " -"können die Freigabe nur aufheben, wenn Sie dies auch für %1$s tun." +"Dies ist ein untergeordnetes Element des Navigationselementes %1$s. Sie können die Freigabe nur aufheben, wenn Sie dies auch " +"für %1$s tun." #: /vagrant/application/views/scripts/config/module.phtml:50 msgid "This module has no dependencies" msgstr "Dieses Modul hat keine Abhängigkeiten" -#: /vagrant/library/Icinga/Application/Modules/Module.php:721 -#: /vagrant/library/Icinga/Application/Modules/ModuleInfo.php:13 +#: /vagrant/library/Icinga/Application/Modules/Module.php:721 /vagrant/library/Icinga/Application/Modules/ModuleInfo.php:13 msgid "This module has no description" msgstr "Dieses Modul hat keine Beschreibung" #: /vagrant/application/forms/PreferenceForm.php:244 -msgid "" -"This option allows you to enable or to disable the global page content auto " -"refresh" -msgstr "" -"Diese Option ermöglicht das De-/Aktivieren der globalen automatischen " -"Aktualisierung der Seiteninhalte" +msgid "This option allows you to enable or to disable the global page content auto refresh" +msgstr "Diese Option ermöglicht das De-/Aktivieren der globalen automatischen Aktualisierung der Seiteninhalte" #: /vagrant/application/forms/Navigation/NavigationConfigForm.php:603 msgid "Tick this box to share this item with others" -msgstr "" -"Markieren Sie dieses Kästchen, um dieses Element mit Anderen zu teilen." +msgstr "Markieren Sie dieses Kästchen, um dieses Element mit Anderen zu teilen." #: /vagrant/application/forms/Dashboard/PaneForm.php:34 msgid "Title" @@ -2663,15 +2408,11 @@ msgstr "Titel für das Dashboard" #: /vagrant/application/forms/Config/Resource/SshResourceForm.php:91 msgid "To modify the private key you must recreate this resource." -msgstr "" -"Um diesen privaten Schlüssel modifizieren zu können, müssen Sie diese " -"Ressource neu anlegen." +msgstr "Um diesen privaten Schlüssel modifizieren zu können, müssen Sie diese Ressource neu anlegen." -#: /vagrant/application/controllers/NavigationController.php:149 -#: /vagrant/application/controllers/NavigationController.php:199 +#: /vagrant/application/controllers/NavigationController.php:149 /vagrant/application/controllers/NavigationController.php:199 #: /vagrant/application/forms/Navigation/NavigationConfigForm.php:647 -#: /vagrant/application/views/scripts/navigation/index.phtml:30 -#: /vagrant/application/views/scripts/navigation/shared.phtml:20 +#: /vagrant/application/views/scripts/navigation/index.phtml:30 /vagrant/application/views/scripts/navigation/shared.phtml:20 msgid "Type" msgstr "Typ" @@ -2681,31 +2422,23 @@ msgstr "UI Debug" #: /vagrant/application/forms/Navigation/NavigationConfigForm.php:486 #, php-format -msgid "" -"Unable to delete navigation item \"%s\". There are other items dependent " -"from it: %s" -msgstr "" -"Es ist nicht möglich, das Navigationselement “%s” zu löschen, da andere " -"Elemente davon abhängen: %s" +msgid "Unable to delete navigation item \"%s\". There are other items dependent from it: %s" +msgstr "Es ist nicht möglich, das Navigationselement “%s” zu löschen, da andere Elemente davon abhängen: %s" #: /vagrant/application/forms/Navigation/NavigationConfigForm.php:526 #, php-format msgid "" -"Unable to unshare navigation item \"%s\". It is dependent from item \"%s\". " -"Dependent items can only be unshared by unsharing their parent" +"Unable to unshare navigation item \"%s\". It is dependent from item \"%s\". Dependent items can only be unshared by unsharing " +"their parent" msgstr "" -"Es ist nicht möglich, die Freigabe des Navigationselementes “%s” aufzuheben, " -"da es von dem Element “%s” abhängt. Die Freigaben abhängiger Elemente können " -"nur aufgehoben werden, wenn dies auch für ihre Elternelemente durchgeführt " -"wird." +"Es ist nicht möglich, die Freigabe des Navigationselementes “%s” aufzuheben, da es von dem Element “%s” abhängt. Die " +"Freigaben abhängiger Elemente können nur aufgehoben werden, wenn dies auch für ihre Elternelemente durchgeführt wird." -#: /vagrant/application/views/scripts/navigation/index.phtml:54 -#: /vagrant/application/views/scripts/navigation/shared.phtml:42 +#: /vagrant/application/views/scripts/navigation/index.phtml:54 /vagrant/application/views/scripts/navigation/shared.phtml:42 msgid "Unknown" msgstr "Unbekannt" -#: /vagrant/application/forms/Config/ResourceConfigForm.php:100 -#: /vagrant/application/forms/Config/ResourceConfigForm.php:124 +#: /vagrant/application/forms/Config/ResourceConfigForm.php:100 /vagrant/application/forms/Config/ResourceConfigForm.php:124 #: /vagrant/application/forms/Config/ResourceConfigForm.php:198 msgid "Unknown resource provided" msgstr "Unbekannte Ressource angegeben" @@ -2722,8 +2455,7 @@ msgstr "Freigabe dieses Navigationselementes aufheben" msgid "Update Dashboard" msgstr "Dashboard aktualisieren" -#: /vagrant/application/controllers/DashboardController.php:86 -#: /vagrant/application/controllers/DashboardController.php:92 +#: /vagrant/application/controllers/DashboardController.php:86 /vagrant/application/controllers/DashboardController.php:92 msgid "Update Dashlet" msgstr "Dashlet aktualisieren" @@ -2735,8 +2467,7 @@ msgstr "Navigationselement aktualisieren" msgid "Update Resource" msgstr "Ressource aktualisieren" -#: /vagrant/application/controllers/RoleController.php:76 -#: /vagrant/application/controllers/RoleController.php:103 +#: /vagrant/application/controllers/RoleController.php:76 /vagrant/application/controllers/RoleController.php:103 msgid "Update Role" msgstr "Rolle aktualisieren" @@ -2757,22 +2488,14 @@ msgid "Update User Group Backend" msgstr "Backend für Benutzergruppe aktualisieren" #: /vagrant/library/Icinga/Web/Form/Decorator/Autosubmit.php:99 -msgid "" -"Upon any of this form's fields were changed, this page is being updated " -"automatically." -msgstr "" -"Diese Seite wird nach Änderungen in diesem Formular automatisch aktualisiert." +msgid "Upon any of this form's fields were changed, this page is being updated automatically." +msgstr "Diese Seite wird nach Änderungen in diesem Formular automatisch aktualisiert." -#: /vagrant/library/Icinga/Web/Form.php:951 -#: /vagrant/library/Icinga/Web/Form/Decorator/Autosubmit.php:100 -msgid "" -"Upon its value changing, this field issues an automatic update of this page." -msgstr "" -"Dieses Feld löst eine automatische Aktualisierung dieser Seite aus, wenn " -"sein Inhalt geändert wird." +#: /vagrant/library/Icinga/Web/Form.php:951 /vagrant/library/Icinga/Web/Form/Decorator/Autosubmit.php:100 +msgid "Upon its value changing, this field issues an automatic update of this page." +msgstr "Dieses Feld löst eine automatische Aktualisierung dieser Seite aus, wenn sein Inhalt geändert wird." -#: /vagrant/application/forms/Dashboard/DashletForm.php:69 -#: /vagrant/application/forms/Navigation/DashletForm.php:27 +#: /vagrant/application/forms/Dashboard/DashletForm.php:69 /vagrant/application/forms/Navigation/DashletForm.php:27 #: /vagrant/application/forms/Navigation/NavigationItemForm.php:54 #: /vagrant/application/views/scripts/dashboard/settings.phtml:14 msgid "Url" @@ -2790,8 +2513,7 @@ msgstr "Die folgende Sprache verwenden, um Texte und Nachrichten anzuzeigen" msgid "Use the following timezone for dates and times" msgstr "Die folgende Zeitzone für Datums- und Zeitangaben verwenden." -#: /vagrant/application/controllers/UserController.php:292 -#: /vagrant/application/forms/Config/Resource/SshResourceForm.php:45 +#: /vagrant/application/controllers/UserController.php:292 /vagrant/application/forms/Config/Resource/SshResourceForm.php:45 msgid "User" msgstr "Benutzername" @@ -2810,10 +2532,8 @@ msgstr "Der Benutzer “%s” wurde entfernt" msgid "User \"%s\" has been removed from group \"%s\"" msgstr "Der Benutzer \"%s\" wurde aus der Gruppe \"%s\" entfernt" -#: /vagrant/application/controllers/UserController.php:94 -#: /vagrant/application/controllers/UserController.php:185 -#: /vagrant/application/controllers/UserController.php:207 -#: /vagrant/application/controllers/UserController.php:223 +#: /vagrant/application/controllers/UserController.php:94 /vagrant/application/controllers/UserController.php:185 +#: /vagrant/application/controllers/UserController.php:207 /vagrant/application/controllers/UserController.php:223 #, php-format msgid "User \"%s\" not found" msgstr "Der Benutzer “%s” wurde nicht gefunden." @@ -2832,8 +2552,7 @@ msgstr "Backend für Benutzer" msgid "User Backends" msgstr "Backends für Benutzer" -#: /vagrant/application/controllers/GroupController.php:69 -#: /vagrant/application/controllers/UserController.php:101 +#: /vagrant/application/controllers/GroupController.php:69 /vagrant/application/controllers/UserController.php:101 #: /vagrant/application/views/scripts/group/list.phtml:50 #: /vagrant/library/Icinga/Authentication/UserGroup/DbUserGroupBackend.php:115 #: /vagrant/library/Icinga/Authentication/UserGroup/DbUserGroupBackend.php:120 @@ -2849,8 +2568,7 @@ msgstr "Backend für Benutzergruppen" msgid "User Group Backends" msgstr "Backend für Benutzergruppen" -#: /vagrant/application/controllers/GroupController.php:364 -#: /vagrant/application/controllers/RoleController.php:173 +#: /vagrant/application/controllers/GroupController.php:364 /vagrant/application/controllers/RoleController.php:173 #: /vagrant/application/controllers/UserController.php:330 msgid "User Groups" msgstr "Benutzergruppen" @@ -2863,8 +2581,7 @@ msgstr "Speicherart für die Benutzereinstellungen" msgid "User added successfully" msgstr "Benutzer erfolgreich hinzugefügt" -#: /vagrant/application/controllers/ConfigController.php:271 -#: /vagrant/application/forms/Config/UserBackendReorderForm.php:70 +#: /vagrant/application/controllers/ConfigController.php:271 /vagrant/application/forms/Config/UserBackendReorderForm.php:70 #, php-format msgid "User backend \"%s\" not found" msgstr "Benutzerbackend “%s” wurde nicht gefunden" @@ -2909,26 +2626,19 @@ msgid "User group backend successfully created" msgstr "Benutzergruppenbackend erfolgreich angelegt" #: /vagrant/application/forms/Config/Resource/SshResourceForm.php:47 -msgid "" -"User to log in as on the remote Icinga instance. Please note that key-based " -"SSH login must be possible for this user" +msgid "User to log in as on the remote Icinga instance. Please note that key-based SSH login must be possible for this user" msgstr "" -"Der Benutzer, mit dem die Anmeldung in die entfernte Icingainstanz erfolgen " -"soll. Bitte beachten Sie, dass für diesen Benutzer ein schlüsselbasierter " -"Zugriff möglich sein muss." +"Der Benutzer, mit dem die Anmeldung in die entfernte Icingainstanz erfolgen soll. Bitte beachten Sie, dass für diesen " +"Benutzer ein schlüsselbasierter Zugriff möglich sein muss." #: /vagrant/library/Icinga/Web/Menu.php:294 msgid "Usergroups" msgstr "Benutzergruppen" -#: /vagrant/application/controllers/GroupController.php:105 -#: /vagrant/application/controllers/UserController.php:69 -#: /vagrant/application/forms/Authentication/LoginForm.php:43 -#: /vagrant/application/forms/Config/Resource/DbResourceForm.php:127 -#: /vagrant/application/forms/Config/User/UserForm.php:33 -#: /vagrant/application/views/scripts/group/show.phtml:75 -#: /vagrant/application/views/scripts/user/list.phtml:51 -#: /vagrant/library/Icinga/Authentication/User/DbUserBackend.php:115 +#: /vagrant/application/controllers/GroupController.php:105 /vagrant/application/controllers/UserController.php:69 +#: /vagrant/application/forms/Authentication/LoginForm.php:43 /vagrant/application/forms/Config/Resource/DbResourceForm.php:127 +#: /vagrant/application/forms/Config/User/UserForm.php:33 /vagrant/application/views/scripts/group/show.phtml:75 +#: /vagrant/application/views/scripts/user/list.phtml:51 /vagrant/library/Icinga/Authentication/User/DbUserBackend.php:115 #: /vagrant/library/Icinga/Authentication/User/DbUserBackend.php:118 #: /vagrant/library/Icinga/Authentication/User/LdapUserBackend.php:255 #: /vagrant/library/Icinga/Authentication/UserGroup/DbUserGroupBackend.php:114 @@ -2937,14 +2647,10 @@ msgstr "Benutzergruppen" msgid "Username" msgstr "Benutzername" -#: /vagrant/application/controllers/GroupController.php:356 -#: /vagrant/application/controllers/RoleController.php:165 -#: /vagrant/application/controllers/UserController.php:322 -#: /vagrant/application/forms/Config/UserGroup/AddMemberForm.php:118 -#: /vagrant/application/forms/Navigation/NavigationConfigForm.php:613 -#: /vagrant/application/forms/Security/RoleForm.php:117 -#: /vagrant/application/views/scripts/role/list.phtml:23 -#: /vagrant/library/Icinga/Web/Menu.php:289 +#: /vagrant/application/controllers/GroupController.php:356 /vagrant/application/controllers/RoleController.php:165 +#: /vagrant/application/controllers/UserController.php:322 /vagrant/application/forms/Config/UserGroup/AddMemberForm.php:118 +#: /vagrant/application/forms/Navigation/NavigationConfigForm.php:613 /vagrant/application/forms/Security/RoleForm.php:117 +#: /vagrant/application/views/scripts/role/list.phtml:23 /vagrant/library/Icinga/Web/Menu.php:289 msgid "Users" msgstr "Benutzer" @@ -2953,23 +2659,19 @@ msgctxt "Form element label" msgid "Users Can't Change Theme" msgstr "Theme Benutzeranpassung verbieten" -#: /vagrant/application/forms/Config/ResourceConfigForm.php:348 -#: /vagrant/application/forms/Config/UserBackendConfigForm.php:453 +#: /vagrant/application/forms/Config/ResourceConfigForm.php:348 /vagrant/application/forms/Config/UserBackendConfigForm.php:453 msgid "Validate Configuration" msgstr "Konfiguration validieren" -#: /vagrant/application/forms/Config/ResourceConfigForm.php:349 -#: /vagrant/application/forms/Config/UserBackendConfigForm.php:454 +#: /vagrant/application/forms/Config/ResourceConfigForm.php:349 /vagrant/application/forms/Config/UserBackendConfigForm.php:454 msgid "Validation In Progress" msgstr "Wird überprüft" -#: /vagrant/application/forms/Config/ResourceConfigForm.php:306 -#: /vagrant/application/forms/Config/UserBackendConfigForm.php:411 +#: /vagrant/application/forms/Config/ResourceConfigForm.php:306 /vagrant/application/forms/Config/UserBackendConfigForm.php:411 msgid "Validation Log" msgstr "Validierungslog" -#: /vagrant/application/views/scripts/about/index.phtml:14 -#: /vagrant/application/views/scripts/about/index.phtml:115 +#: /vagrant/application/views/scripts/about/index.phtml:14 /vagrant/application/views/scripts/about/index.phtml:115 #: /vagrant/application/views/scripts/config/module.phtml:39 msgid "Version" msgstr "Version" @@ -2981,14 +2683,11 @@ msgstr "Warnung" #: /vagrant/application/views/scripts/authentication/login.phtml:5 msgid "" -"Welcome to Icinga Web 2. For users of the screen reader Jaws full and " -"expectant compliant accessibility is possible only with use of the Firefox " -"browser. VoiceOver on Mac OS X is tested on Chrome, Safari and Firefox." +"Welcome to Icinga Web 2. For users of the screen reader Jaws full and expectant compliant accessibility is possible only with " +"use of the Firefox browser. VoiceOver on Mac OS X is tested on Chrome, Safari and Firefox." msgstr "" -"Willkommen zu Icinga Web 2. Für Nutzer des Screenreader JAWS ist die " -"vollständige und erwartungskonforme Zugänglichkeit nur mit Nutzung des " -"Browsers Firefox möglich. VoiceOver unter Mac OS X ist getestet mit Chrome, " -"Safari und Firefox." +"Willkommen zu Icinga Web 2. Für Nutzer des Screenreader JAWS ist die vollständige und erwartungskonforme Zugänglichkeit nur " +"mit Nutzung des Browsers Firefox möglich. VoiceOver unter Mac OS X ist getestet mit Chrome, Safari und Firefox." #: /vagrant/application/views/scripts/dashboard/index.phtml:12 msgid "Welcome to Icinga Web!" @@ -2996,14 +2695,12 @@ msgstr "Willkommen zu Icinga Web 2!" #: /vagrant/application/forms/Config/Resource/LdapResourceForm.php:73 msgid "" -"Whether to encrypt communication. Choose STARTTLS or LDAPS for encrypted " -"communication or none for unencrypted communication" +"Whether to encrypt communication. Choose STARTTLS or LDAPS for encrypted communication or none for unencrypted communication" msgstr "" -"Verschlüsselung der Kommunikation. Wählen Sie STARTTLS oder LDAPS für " -"verschlüsselte Kommunikation oder “Keine” für unverschlüsselte Kommunikation." +"Verschlüsselung der Kommunikation. Wählen Sie STARTTLS oder LDAPS für verschlüsselte Kommunikation oder “Keine” für " +"unverschlüsselte Kommunikation." -#: /vagrant/application/views/scripts/joystickPagination.phtml:70 -#: /vagrant/application/views/scripts/joystickPagination.phtml:96 +#: /vagrant/application/views/scripts/joystickPagination.phtml:70 /vagrant/application/views/scripts/joystickPagination.phtml:96 msgctxt "pagination.joystick" msgid "X-Axis" msgstr "X-Achse" @@ -3014,8 +2711,7 @@ msgctxt "pagination.joystick" msgid "Y-Axis" msgstr "Y-Achse" -#: /vagrant/application/forms/Config/User/UserForm.php:116 -#: /vagrant/application/forms/Config/UserGroup/UserGroupForm.php:66 +#: /vagrant/application/forms/Config/User/UserForm.php:116 /vagrant/application/forms/Config/UserGroup/UserGroupForm.php:66 #: /vagrant/application/views/scripts/navigation/index.phtml:57 msgid "Yes" msgstr "Ja" @@ -3029,22 +2725,16 @@ msgid "You don't have file-system permissions to write to the file" msgstr "Sie haben keine Schreibrechte auf diese Datei." #: /vagrant/application/controllers/UserController.php:229 -msgid "" -"You'll need to configure at least one user group backend first that allows " -"to create new memberships" -msgstr "" -"Sie müssen zuerst mindestens ein Benutzergruppenbackend anlegen, um neue " -"Mitgliedschaften definieren zu können." +msgid "You'll need to configure at least one user group backend first that allows to create new memberships" +msgstr "Sie müssen zuerst mindestens ein Benutzergruppenbackend anlegen, um neue Mitgliedschaften definieren zu können." #: /vagrant/application/forms/Authentication/LoginForm.php:138 msgid "" -"You're currently not authenticated using any of the web server's " -"authentication mechanisms. Make sure you'll configure such, otherwise you'll " -"not be able to login." +"You're currently not authenticated using any of the web server's authentication mechanisms. Make sure you'll configure such, " +"otherwise you'll not be able to login." msgstr "" -"Sie sind derzeit nicht über Ihren Webserver authentifiziert. Bitte " -"konfigurieren Sie eine Authentifizierung über Ihren Webserver, sonst werden " -"Sie sich nicht in Icinga Web 2 anmelden können." +"Sie sind derzeit nicht über Ihren Webserver authentifiziert. Bitte konfigurieren Sie eine Authentifizierung über Ihren " +"Webserver, sonst werden Sie sich nicht in Icinga Web 2 anmelden können." #: /vagrant/application/forms/PreferenceForm.php:197 msgid "Your Current Language" @@ -3066,8 +2756,7 @@ msgctxt "An event will happen at the given time" msgid "at %s" msgstr "in %s" -#: /vagrant/application/forms/PreferenceForm.php:164 -#: /vagrant/application/forms/Config/General/ThemingConfigForm.php:34 +#: /vagrant/application/forms/PreferenceForm.php:164 /vagrant/application/forms/Config/General/ThemingConfigForm.php:34 msgid "default" msgstr "standard" @@ -3113,8 +2802,7 @@ msgctxt "An event will happen on the given date or date and time" msgid "on %s" msgstr "in %s" -#: /vagrant/application/views/scripts/joystickPagination.phtml:71 -#: /vagrant/application/views/scripts/joystickPagination.phtml:97 +#: /vagrant/application/views/scripts/joystickPagination.phtml:71 /vagrant/application/views/scripts/joystickPagination.phtml:97 msgctxt "pagination.joystick" msgid "services" msgstr "Services" @@ -3140,8 +2828,7 @@ msgstr "umschalten" #~ msgstr "Autorisierung" #~ msgid "Configure how users are associated with groups by Icinga Web 2" -#~ msgstr "" -#~ "Konfiguration der Verknüpfung von Nutzern und Gruppen durch Icinga Web 2" +#~ msgstr "Konfiguration der Verknüpfung von Nutzern und Gruppen durch Icinga Web 2" #~ msgid "Configure how users authenticate with and log into Icinga Web 2" #~ msgstr "Konfiguration der Nutzerauthentifizierung für Icinga Web 2" @@ -3223,12 +2910,10 @@ msgstr "umschalten" #~ msgstr "Aktiviere dieses Häkchen um das Logging zu aktivieren." #~ msgid "Click to add a filter expression to this operator" -#~ msgstr "" -#~ "Hier klicken, um einen Filter-Ausdruck zu diesem Operator hinzuzufügen" +#~ msgstr "Hier klicken, um einen Filter-Ausdruck zu diesem Operator hinzuzufügen" #~ msgid "Click to add another operator below this one" -#~ msgstr "" -#~ "Hier klicken, um unterhalb dieses Operators einen weiteren hinzuzufügen" +#~ msgstr "Hier klicken, um unterhalb dieses Operators einen weiteren hinzuzufügen" #~ msgid "Connection Validation Failed: " #~ msgstr "Überprüfung der Verbindung fehlgeschlagen: " @@ -3236,12 +2921,8 @@ msgstr "umschalten" #~ msgid "Connectivity validation failed, the provided file does not exist." #~ msgstr "Überprüfung fehlgeschlagen, die angegebene Datei existiert nicht." -#~ msgid "" -#~ "Could not read your authentiction.ini, no authentication methods are " -#~ "available." -#~ msgstr "" -#~ "Deine authentication.ini konnte nicht gelesen werden, darum sind keine " -#~ "Authentifizierungsmethoden verfügbar." +#~ msgid "Could not read your authentiction.ini, no authentication methods are available." +#~ msgstr "Deine authentication.ini konnte nicht gelesen werden, darum sind keine Authentifizierungsmethoden verfügbar." #~ msgid "Expression" #~ msgstr "Ausdruck" @@ -3270,60 +2951,44 @@ msgstr "umschalten" #~ msgid "Security check failed, please submit your form again" #~ msgstr "Sicherheitscheck fehlgeschlagen, bitte sende das Formular erneut ab" -#~ msgid "" -#~ "Select the language to use by default. Can be overwritten by a user in " -#~ "his preferences." -#~ msgstr "" -#~ "Die zu benutzende Standard-Sprache. Kann von Benutzern in deren " -#~ "Einstellungen überschrieben werden." +#~ msgid "Select the language to use by default. Can be overwritten by a user in his preferences." +#~ msgstr "Die zu benutzende Standard-Sprache. Kann von Benutzern in deren Einstellungen überschrieben werden." #~ msgid "The Syslog facility to utilize." #~ msgstr "Die zu benutzende Syslog-Facility" #~ msgid "The path where users can be found on the ldap server" -#~ msgstr "" -#~ "Der Pfad unter welchem Benutzer auf diesem LDAP-Server gefunden werden " -#~ "können." +#~ msgstr "Der Pfad unter welchem Benutzer auf diesem LDAP-Server gefunden werden können." #~ msgid "The type of SQL database you want to create." #~ msgstr "Der Typ der zu benutzenden SQL Datenbank." #~ msgid "The user dn to use for querying the ldap server" -#~ msgstr "" -#~ "Die DN des Benutzers mit welchem dieser LDAP-Server befragt werden soll" +#~ msgstr "Die DN des Benutzers mit welchem dieser LDAP-Server befragt werden soll" #~ msgid "Use Default Language" #~ msgstr "Standardsprache verwenden" -#~ msgid "" -#~ "Using ldap is not possible, the php extension \"ldap\" is not installed." -#~ msgstr "" -#~ "Es ist nicht möglich, LDAP zu benutzen, da die PHP-Erweiterung \"LDAP\" " -#~ "nicht installiert ist." +#~ msgid "Using ldap is not possible, the php extension \"ldap\" is not installed." +#~ msgstr "Es ist nicht möglich, LDAP zu benutzen, da die PHP-Erweiterung \"LDAP\" nicht installiert ist." #~ msgid "Using the specified backend failed: %s" #~ msgstr "Die angegebene Datenbank zu benutzen war nicht möglich: %s" -#~ msgid "" -#~ "We tried to load a dashboard configuration with no success. Please have " -#~ "look that the configuration does exist:" +#~ msgid "We tried to load a dashboard configuration with no success. Please have look that the configuration does exist:" #~ msgstr "" -#~ "Der Versuch die Dashboard-Konfiguration zu laden war nicht erfolgreich. " -#~ "Bitte stelle sicher, dass die folgende Konfigurationsdatei existiert:" +#~ "Der Versuch die Dashboard-Konfiguration zu laden war nicht erfolgreich. Bitte stelle sicher, dass die folgende " +#~ "Konfigurationsdatei existiert:" -#~ msgid "" -#~ "You need to install the php extension \"mysql\" and the Zend_Pdo_Mysql " -#~ "classes to use MySQL database resources." +#~ msgid "You need to install the php extension \"mysql\" and the Zend_Pdo_Mysql classes to use MySQL database resources." #~ msgstr "" -#~ "Um MySQL Datenbank-Ressourcen nutzen zu können müssen die PHP-Erweiterung " -#~ "\"mysql\" sowie die Zend_Pdo_Mysql Klassen installiert sein." +#~ "Um MySQL Datenbank-Ressourcen nutzen zu können müssen die PHP-Erweiterung \"mysql\" sowie die Zend_Pdo_Mysql Klassen " +#~ "installiert sein." -#~ msgid "" -#~ "You need to install the php extension \"pgsql\" and the Zend_Pdo_Pgsql " -#~ "classes to use PostgreSQL database resources." +#~ msgid "You need to install the php extension \"pgsql\" and the Zend_Pdo_Pgsql classes to use PostgreSQL database resources." #~ msgstr "" -#~ "Um PostgreSQL Datenbank-Ressourcen nutzen zu können müssen die PHP-" -#~ "Erweiterung \"pqsql\" sowie die Zend_Pdo_Pgsql Klassen installiert sein." +#~ "Um PostgreSQL Datenbank-Ressourcen nutzen zu können müssen die PHP-Erweiterung \"pqsql\" sowie die Zend_Pdo_Pgsql Klassen " +#~ "installiert sein." #~ msgid "for" #~ msgstr "für"