diff options
author | Gerry Weißbach <gerry.w@gammaproduction.de> | 2015-04-27 08:00:12 +0200 |
---|---|---|
committer | Gerry Weißbach <gerry.w@gammaproduction.de> | 2015-04-27 08:00:12 +0200 |
commit | 79a3bed0a23b6bef35eb12c6ccbb1f3301f6c621 (patch) | |
tree | ed15843219a387e74d750004f31a986f53b67753 /lib/plugins/extension/lang/en | |
parent | a7ec353091498e86d606c27f5ca7a808c2d096c0 (diff) | |
download | rpg-79a3bed0a23b6bef35eb12c6ccbb1f3301f6c621.tar.gz rpg-79a3bed0a23b6bef35eb12c6ccbb1f3301f6c621.tar.bz2 |
Generate display options via JS
Since it is a JS function only, the form will be generated by it too.
Diffstat (limited to 'lib/plugins/extension/lang/en')
-rw-r--r-- | lib/plugins/extension/lang/en/lang.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/plugins/extension/lang/en/lang.php b/lib/plugins/extension/lang/en/lang.php index 907f91c23..79f643629 100644 --- a/lib/plugins/extension/lang/en/lang.php +++ b/lib/plugins/extension/lang/en/lang.php @@ -103,7 +103,7 @@ $lang['install_upload'] = 'Upload Extension:'; $lang['repo_error'] = 'The plugin repository could not be contacted. Make sure your server is allowed to contact www.dokuwiki.org and check your proxy settings.'; $lang['nossl'] = 'Your PHP seems to miss SSL support. Downloading will not work for many DokuWiki extensions.'; -$lang['display_viewoptions'] = 'View Options:'; -$lang['display_enabled'] = 'enabled'; -$lang['display_disabled'] = 'disabled'; -$lang['display_updatable'] = 'updatable'; +$lang['js']['display_viewoptions'] = 'View Options:'; +$lang['js']['display_enabled'] = 'enabled'; +$lang['js']['display_disabled'] = 'disabled'; +$lang['js']['display_updatable'] = 'updatable'; |