Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BRIC
dokuwiki
Commits
c837868a
Commit
c837868a
authored
11 years ago
by
Andreas Gohr
Browse files
Options
Downloads
Patches
Plain Diff
added missing localization
parent
bc1b7a8a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/plugins/extension/helper/gui.php
+3
-3
3 additions, 3 deletions
lib/plugins/extension/helper/gui.php
lib/plugins/extension/lang/en/lang.php
+3
-1
3 additions, 1 deletion
lib/plugins/extension/lang/en/lang.php
with
6 additions
and
4 deletions
lib/plugins/extension/helper/gui.php
+
3
−
3
View file @
c837868a
...
...
@@ -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'
,
''
,
'I
nstall'
));
$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_i
nstall'
))
)
;
$form
->
printForm
();
}
...
...
This diff is collapsed.
Click to expand it.
lib/plugins/extension/lang/en/lang.php
+
3
−
1
View file @
c837868a
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment