summaryrefslogtreecommitdiff
path: root/lib/plugins/extension/lang
diff options
context:
space:
mode:
authorMichael Hamann <michael@content-space.de>2013-08-01 21:14:17 +0200
committerMichael Hamann <michael@content-space.de>2013-08-01 21:14:17 +0200
commit788f86d986d170475e9fda3578b4fde5ba4864dd (patch)
tree0c5ff742cb303aeafddba999f73f9c12b1229cff /lib/plugins/extension/lang
parent366f1b4213db30071ca5e1b73c31f6e99337e1a7 (diff)
downloadrpg-788f86d986d170475e9fda3578b4fde5ba4864dd.tar.gz
rpg-788f86d986d170475e9fda3578b4fde5ba4864dd.tar.bz2
Extension manager: add language file and simple admin component
Diffstat (limited to 'lib/plugins/extension/lang')
-rw-r--r--lib/plugins/extension/lang/en/lang.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/plugins/extension/lang/en/lang.php b/lib/plugins/extension/lang/en/lang.php
new file mode 100644
index 000000000..81069e498
--- /dev/null
+++ b/lib/plugins/extension/lang/en/lang.php
@@ -0,0 +1,21 @@
+<?php
+/**
+ * English language file for extension plugin
+ *
+ * @author Michael Hamann <michael@content-space.de>
+ */
+
+// menu entry for admin plugins
+$lang['menu'] = 'Extension manager';
+
+// custom language strings for the plugin
+$lang['notimplemented'] = 'This feature hasn\'t been implemented yet';
+$lang['alreadyenabled'] = 'This extension has already been enabled';
+$lang['alreadydisabled'] = 'This extension has already been disabled';
+$lang['pluginlistsaveerror'] = 'There was an error saving the plugin list';
+$lang['unknownauthor'] = 'Unknown author';
+$lang['unknownversion'] = 'Unknown version';
+
+
+
+//Setup VIM: ex: et ts=4 :