From: rohieb Date: Sat, 13 Sep 2008 14:36:31 +0000 (+0200) Subject: fixed translation: if it is not granted at all, the admin privilege does _not_ apply... X-Git-Tag: REL_8.09.13~6 X-Git-Url: http://git.rohieb.name/iserv-mod-error-reporter.git/commitdiff_plain/c110fe0bbf43c8e09a349952df7dabb7a1d4cda3 fixed translation: if it is not granted at all, the admin privilege does _not_ apply to all users but to no users --- diff --git a/lang/mod_error-reporter.po b/lang/mod_error-reporter.po index ad43b1d..b077fec 100644 --- a/lang/mod_error-reporter.po +++ b/lang/mod_error-reporter.po @@ -177,4 +177,7 @@ msgstr "error-reporter:Es ist zu beachten, dass jede Gruppe mit Administrations- "Sonderrecht implizit auch Fehler melden und alle gemeldeten Fehler einsehen kann." msgid "error-reporter:all users" -msgstr "error-reporter:alle Benutzer" \ No newline at end of file +msgstr "error-reporter:alle Benutzer" + +msgid "error-reporter:no users" +msgstr "error-reporter:keine Benutzer" diff --git a/src/config.php b/src/config.php index 8d0f8db..02207eb 100644 --- a/src/config.php +++ b/src/config.php @@ -124,7 +124,7 @@ echo sprintf("%s%s%s\n", icon("keys"), echo "\n"; echo sprintf("%s%s%s\n", icon("keys"), _("Administration of the error report wizard"), - $asAdminGroups == array() ? _c("error-reporter:all users") : + $asAdminGroups == array() ? _c("error-reporter:no users") : icon("act-group") . join(", ", array_map("erGetGroupName", $asAdminGroups))); echo "

\n"; _GroupBox();