summaryrefslogtreecommitdiff
path: root/lib/plugins/usermanager
diff options
context:
space:
mode:
Diffstat (limited to 'lib/plugins/usermanager')
-rw-r--r--lib/plugins/usermanager/lang/de/lang.php20
-rw-r--r--lib/plugins/usermanager/lang/en/lang.php17
-rw-r--r--lib/plugins/usermanager/lang/fr/lang.php6
3 files changed, 17 insertions, 26 deletions
diff --git a/lib/plugins/usermanager/lang/de/lang.php b/lib/plugins/usermanager/lang/de/lang.php
index 4ce96bc81..322da7951 100644
--- a/lib/plugins/usermanager/lang/de/lang.php
+++ b/lib/plugins/usermanager/lang/de/lang.php
@@ -1,18 +1,18 @@
<?php
/**
- * english language file
+ * German language file
+ *
+ * @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>
+ * @author Andreas Gohr <andi@splitbrain.org>
*/
-// settings must be present and set appropriately for the language
-$lang['encoding'] = 'utf-8';
-$lang['direction'] = 'ltr';
-
-// for admin plugins, the menu prompt to be displayed in the admin menu
-// if set here, the plugin doesn't need to override the getMenuText() method
-$lang['menu'] = 'Benutzer pflegen...';
+$lang['menu'] = 'Benutzerverwaltung';
// custom language strings for the plugin
-$lang['badauth'] = 'Ungültiger Methode zur Autentifizierung';
+$lang['noauth'] = '(Authentifizierungssystem nicht verfügbar)';
+$lang['nosupport'] = '(Benutzerverwaltung nicht unterstützt)';
+
+$lang['badauth'] = 'Ungültige Methode zur Authentifizierung';
$lang['user_id'] = 'Benutzer';
$lang['user_pass'] = 'Passwort';
@@ -39,6 +39,8 @@ $lang['delete_ok'] = '%d Benutzer gelöscht';
$lang['delete_fail'] = '%d konnten nicht gelöscht werden.';
$lang['update_ok'] = 'Benutzerdaten erfolgreich geändert.';
$lang['update_fail'] = 'Änderung der Benutzerdaten fehlgeschlagen.';
+$lang['update_exists'] = 'Nutzername konnte nicht geändert werden, weil der angegebene Nutzer (%s) bereits existiert (alle anderen Änderungen wurden durchgeführt).';
+
$lang['start'] = 'Anfang';
$lang['prev'] = 'Vorherige';
diff --git a/lib/plugins/usermanager/lang/en/lang.php b/lib/plugins/usermanager/lang/en/lang.php
index d9c8a098b..fbbd70e3a 100644
--- a/lib/plugins/usermanager/lang/en/lang.php
+++ b/lib/plugins/usermanager/lang/en/lang.php
@@ -1,14 +1,10 @@
<?php
/**
- * english language file
+ * English language file
+ *
+ * @author Chris Smith <chris@jalakai.co.uk>
*/
-// settings must be present and set appropriately for the language
-$lang['encoding'] = 'utf-8';
-$lang['direction'] = 'ltr';
-
-// for admin plugins, the menu prompt to be displayed in the admin menu
-// if set here, the plugin doesn't need to override the getMenuText() method
$lang['menu'] = 'User Manager';
// custom language strings for the plugin
@@ -40,13 +36,12 @@ $lang['summary'] = 'Displaying users %1$d-%2$d of %3$d found. %4$d users tot
$lang['nonefound'] = 'No users found. %d users total.';
$lang['delete_ok'] = '%d users deleted';
$lang['delete_fail'] = '%d failed deleting.';
-$lang['update_ok'] = 'user updated sucessfully';
-$lang['update_fail'] = 'user update failed';
-$lang['update_exists'] = 'user name change failed, the specified user name (%s) already exists (any other changes will be applied).';
+$lang['update_ok'] = 'User updated sucessfully';
+$lang['update_fail'] = 'User update failed';
+$lang['update_exists'] = 'User name change failed, the specified user name (%s) already exists (any other changes will be applied).';
$lang['start'] = 'start';
$lang['prev'] = 'previous';
$lang['next'] = 'next';
$lang['last'] = 'last';
-?>
diff --git a/lib/plugins/usermanager/lang/fr/lang.php b/lib/plugins/usermanager/lang/fr/lang.php
index f88704ee5..977197c8a 100644
--- a/lib/plugins/usermanager/lang/fr/lang.php
+++ b/lib/plugins/usermanager/lang/fr/lang.php
@@ -3,10 +3,6 @@
* french language file
*/
-// settings must be present and set appropriately for the language
-$lang['encoding'] = 'utf-8';
-$lang['direction'] = 'ltr';
-
// for admin plugins, the menu prompt to be displayed in the admin menu
// if set here, the plugin doesn't need to override the getMenuText() method
$lang['menu'] = 'Gestion des utilisateurs';
@@ -49,5 +45,3 @@ $lang['prev'] = 'précédent';
$lang['next'] = 'suivant';
$lang['last'] = 'dernier';
-
-?>