summaryrefslogtreecommitdiff
path: root/lib/plugins/extension/helper
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2014-01-08 20:29:17 +0100
committerAndreas Gohr <andi@splitbrain.org>2014-01-08 20:29:17 +0100
commitc837868af892ada4c25333bec46583a0d42a240d (patch)
treef918bc68afbf28bf75a90b135248b28109058760 /lib/plugins/extension/helper
parentbc1b7a8a0fdd1812e352cab5e2362bd5770d5b3b (diff)
downloadrpg-c837868af892ada4c25333bec46583a0d42a240d.tar.gz
rpg-c837868af892ada4c25333bec46583a0d42a240d.tar.bz2
added missing localization
Diffstat (limited to 'lib/plugins/extension/helper')
-rw-r--r--lib/plugins/extension/helper/gui.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/plugins/extension/helper/gui.php b/lib/plugins/extension/helper/gui.php
index 76651515c..953d50fa6 100644
--- a/lib/plugins/extension/helper/gui.php
+++ b/lib/plugins/extension/helper/gui.php
@@ -124,9 +124,9 @@ class helper_plugin_extension_gui extends DokuWiki_Plugin {
echo '</div>';
$form = new Doku_Form(array('action' => $this->tabURL('', array(), '&'), 'enctype' => 'multipart/form-data', 'class' => 'install'));
- $form->addElement(form_makeTextField('installurl', '', 'Install from URL:', '', 'block'));
- $form->addElement(form_makeFileField('installfile', 'Upload Extension:', '', 'block'));
- $form->addElement(form_makeButton('submit', '', 'Install'));
+ $form->addElement(form_makeTextField('installurl', '', $this->getLang('install_url'), '', 'block'));
+ $form->addElement(form_makeFileField('installfile', $this->getLang('install_upload'), '', 'block'));
+ $form->addElement(form_makeButton('submit', '', $this->getLang('btn_install')));
$form->printForm();
}