Skip to content
Snippets Groups Projects
Commit c837868a authored by Andreas Gohr's avatar Andreas Gohr
Browse files

added missing localization

parent bc1b7a8a
No related branches found
No related tags found
No related merge requests found
......@@ -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();
}
......
......@@ -92,5 +92,7 @@ $lang['error_copy'] = 'There was a file copy error while attem
$lang['noperms'] = 'Extension directory is not writable';
$lang['notplperms'] = 'Template directory is not writable';
$lang['nopluginperms'] = 'Plugin directory is not writable';
$lang['git'] = 'This extension was installed via git, you may not want to update it here.';
$lang['install_url'] = 'Install from URL:';
$lang['install_upload'] = 'Upload Extension:';
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment