summaryrefslogtreecommitdiff
path: root/lib/plugins/usermanager/lang/en/lang.php
diff options
context:
space:
mode:
authorchris <chris@jalakai.co.uk>2006-01-25 01:07:31 +0100
committerchris <chris@jalakai.co.uk>2006-01-25 01:07:31 +0100
commit0440ff150cefe9088c8aa126e646f901c69a7793 (patch)
treeef119f055c7c5789b4af4faa438e7c05ef3b24c7 /lib/plugins/usermanager/lang/en/lang.php
parentcd52f92def16e676c2458a32d2b8c8f8a7839f06 (diff)
downloadrpg-0440ff150cefe9088c8aa126e646f901c69a7793.tar.gz
rpg-0440ff150cefe9088c8aa126e646f901c69a7793.tar.bz2
user manager plugin
darcs-hash:20060125000731-9b6ab-f42d90c270edd795038b814516a1da90c0824e71.gz
Diffstat (limited to 'lib/plugins/usermanager/lang/en/lang.php')
-rw-r--r--lib/plugins/usermanager/lang/en/lang.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/lib/plugins/usermanager/lang/en/lang.php b/lib/plugins/usermanager/lang/en/lang.php
new file mode 100644
index 000000000..e76357872
--- /dev/null
+++ b/lib/plugins/usermanager/lang/en/lang.php
@@ -0,0 +1,49 @@
+<?php
+/**
+ * english 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'] = 'User Manager';
+
+// custom language strings for the plugin
+$lang['badauth'] = 'invalid auth mechanism';
+
+$lang['user_id'] = 'User';
+$lang['user_pass'] = 'Password';
+$lang['user_name'] = 'Real Name';
+$lang['user_mail'] = 'Email';
+$lang['user_groups'] = 'Groups';
+
+$lang['field'] = 'Field';
+$lang['value'] = 'Value';
+$lang['add'] = 'Add';
+$lang['delete'] = 'Delete';
+$lang['delete_selected'] = 'Delete Selected';
+$lang['edit'] = 'Edit';
+$lang['edit_prompt'] = 'Edit this user';
+$lang['modify'] = 'Save Changes';
+$lang['search'] = 'Search';
+$lang['search_prompt'] = 'Perform search';
+$lang['clear'] = 'Reset Search Filter';
+$lang['filter'] = 'Filter';
+
+$lang['summary'] = 'Displaying users %1$d-%2$d of %3$d found. %4$d users total.';
+$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['start'] = 'start';
+$lang['prev'] = 'previous';
+$lang['next'] = 'next';
+$lang['last'] = 'last';
+
+?>