xref: /dokuwiki/lib/plugins/extension/lang/en/lang.php (revision 7e8500eea1e53b1de0e0f70400664afa442cd08d)
1788f86d9SMichael Hamann<?php
2788f86d9SMichael Hamann/**
3788f86d9SMichael Hamann * English language file for extension plugin
4788f86d9SMichael Hamann *
5788f86d9SMichael Hamann * @author Michael Hamann <michael@content-space.de>
602779b18SMichael Hamann * @author Christopher Smith <chris@jalakai.co.uk>
7788f86d9SMichael Hamann */
8788f86d9SMichael Hamann
9d7410643SAndreas Gohr$lang['menu']                         = 'Extension Manager';
10d7410643SAndreas Gohr
11d7410643SAndreas Gohr$lang['tab_plugins']                  = 'Installed Plugins';
12d7410643SAndreas Gohr$lang['tab_templates']                = 'Installed Templates';
13d7410643SAndreas Gohr$lang['tab_search']                   = 'Search and Install';
14ea9f3f90SAndreas Gohr$lang['tab_install']                  = 'Manual Install';
15788f86d9SMichael Hamann
16788f86d9SMichael Hamann$lang['notimplemented']               = 'This feature hasn\'t been implemented yet';
178d295da0SAndreas Gohr$lang['notinstalled']                 = 'This extension is not installed';
18788f86d9SMichael Hamann$lang['alreadyenabled']               = 'This extension has already been enabled';
19788f86d9SMichael Hamann$lang['alreadydisabled']              = 'This extension has already been disabled';
20788f86d9SMichael Hamann$lang['pluginlistsaveerror']          = 'There was an error saving the plugin list';
21788f86d9SMichael Hamann$lang['unknownauthor']                = 'Unknown author';
22788f86d9SMichael Hamann$lang['unknownversion']               = 'Unknown version';
23788f86d9SMichael Hamann
2402779b18SMichael Hamann$lang['btn_info']                     = 'Show more info';
2502779b18SMichael Hamann$lang['btn_update']                   = 'Update';
2602779b18SMichael Hamann$lang['btn_uninstall']                = 'Uninstall';
2702779b18SMichael Hamann$lang['btn_enable']                   = 'Enable';
2802779b18SMichael Hamann$lang['btn_disable']                  = 'Disable';
2902779b18SMichael Hamann$lang['btn_install']                  = 'Install';
3002779b18SMichael Hamann$lang['btn_reinstall']                = 'Re-install';
3102779b18SMichael Hamann
328ecc3981SAndreas Gohr$lang['js']['reallydel']              = 'Really uninstall this extension?';
338ecc3981SAndreas Gohr
34f910b299SAndreas Gohr$lang['search_for']                   = 'Search Extension:';
35f910b299SAndreas Gohr$lang['search']                       = 'Search';
36f910b299SAndreas Gohr
3702779b18SMichael Hamann$lang['extensionby']                  = '<strong>%s</strong> by %s';
3847559c79SAnika Henke$lang['screenshot']                   = 'Screenshot of %s';
3947559c79SAnika Henke$lang['popularity']                   = 'Popularity: %s%%';
4002779b18SMichael Hamann$lang['homepage_link']                = 'Docs';
4102779b18SMichael Hamann$lang['bugs_features']                = 'Bugs';
4277da6d6cSAnika Henke$lang['tags']                         = 'Tags:';
4302779b18SMichael Hamann$lang['author_hint']                  = 'Search extensions by this author';
4402779b18SMichael Hamann$lang['installed']                    = 'Installed:';
4502779b18SMichael Hamann$lang['downloadurl']                  = 'Download URL:';
4602779b18SMichael Hamann$lang['repository']                   = 'Repository:';
4702779b18SMichael Hamann$lang['unknown']                      = '<em>unknown</em>';
4802779b18SMichael Hamann$lang['installed_version']            = 'Installed version:';
4902779b18SMichael Hamann$lang['install_date']                 = 'Your last update:';
50bcdcd3d1SAndreas Gohr$lang['available_version']            = 'Available version:';
5102779b18SMichael Hamann$lang['compatible']                   = 'Compatible with:';
5202779b18SMichael Hamann$lang['depends']                      = 'Depends on:';
5302779b18SMichael Hamann$lang['similar']                      = 'Similar to:';
5402779b18SMichael Hamann$lang['conflicts']                    = 'Conflicts with:';
557ca0915cSAndreas Gohr$lang['donate']                       = 'Like this?';
567ca0915cSAndreas Gohr$lang['donate_action']                = 'Buy the author a coffee!';
577944abddSAndreas Gohr$lang['repo_retry']                   = 'Retry';
5806d8000aSAnika Henke$lang['provides']                     = 'Provides:';
5906d8000aSAnika Henke$lang['status']                       = 'Status:';
6006d8000aSAnika Henke$lang['status_installed']             = 'installed';
6106d8000aSAnika Henke$lang['status_not_installed']         = 'not installed';
6206d8000aSAnika Henke$lang['status_protected']             = 'protected';
6306d8000aSAnika Henke$lang['status_enabled']               = 'enabled';
6406d8000aSAnika Henke$lang['status_disabled']              = 'disabled';
6506d8000aSAnika Henke$lang['status_unmodifiable']          = 'unmodifiable';
6606d8000aSAnika Henke$lang['status_plugin']                = 'plugin';
6706d8000aSAnika Henke$lang['status_template']              = 'template';
6873d93f2bSAndreas Gohr$lang['status_bundled']               = 'bundled';
697944abddSAndreas Gohr
7002779b18SMichael Hamann$lang['msg_enabled']                  = 'Plugin %s enabled';
7102779b18SMichael Hamann$lang['msg_disabled']                 = 'Plugin %s disabled';
72*7e8500eeSGerrit Uitslag$lang['msg_delete_success']           = 'Extension %s uninstalled';
73*7e8500eeSGerrit Uitslag$lang['msg_delete_failed']            = 'Uninstalling Extension %s failed';
745c0b30bfSAndreas Gohr$lang['msg_template_install_success'] = 'Template %s installed successfully';
755c0b30bfSAndreas Gohr$lang['msg_template_update_success']  = 'Template %s updated successfully';
765c0b30bfSAndreas Gohr$lang['msg_plugin_install_success']   = 'Plugin %s installed successfully';
775c0b30bfSAndreas Gohr$lang['msg_plugin_update_success']    = 'Plugin %s updated successfully';
78fee60c9eSAndreas Gohr$lang['msg_upload_failed']            = 'Uploading the file failed';
79fee60c9eSAndreas Gohr
8002779b18SMichael Hamann$lang['missing_dependency']           = '<strong>Missing or disabled dependency:</strong> %s';
8102779b18SMichael Hamann$lang['security_issue']               = '<strong>Security Issue:</strong> %s';
8202779b18SMichael Hamann$lang['security_warning']             = '<strong>Security Warning:</strong> %s';
8302779b18SMichael Hamann$lang['update_available']             = '<strong>Update:</strong> New version %s is available.';
8402779b18SMichael Hamann$lang['wrong_folder']                 = '<strong>Plugin installed incorrectly:</strong> Rename plugin directory "%s" to "%s".';
8502779b18SMichael Hamann$lang['url_change']                   = '<strong>URL changed:</strong> Download URL has changed since last download. Check if the new URL is valid before updating the extension.<br />New: %s<br />Old: %s';
86788f86d9SMichael Hamann
87bc1b7a8aSAndreas Gohr$lang['error_badurl']                 = 'URLs should start with http or https';
881981046eSMichael Hamann$lang['error_dircreate']              = 'Unable to create temporary folder to receive download';
891981046eSMichael Hamann$lang['error_download']               = 'Unable to download the file: %s';
90fee60c9eSAndreas Gohr$lang['error_decompress']             = 'Unable to decompress the downloaded file. This maybe as a result of a bad download, in which case you should try again; or the compression format may be unknown, in which case you will need to download and install manually.';
911981046eSMichael Hamann$lang['error_findfolder']             = 'Unable to identify extension directory, you need to download and install manually';
921981046eSMichael Hamann$lang['error_copy']                   = 'There was a file copy error while attempting to install files for directory <em>%s</em>: the disk could be full or file access permissions may be incorrect. This may have resulted in a partially installed plugin and leave your wiki installation unstable';
93e445eeb3SAndreas Gohr
94e445eeb3SAndreas Gohr$lang['noperms']                      = 'Extension directory is not writable';
95e445eeb3SAndreas Gohr$lang['notplperms']                   = 'Template directory is not writable';
96e445eeb3SAndreas Gohr$lang['nopluginperms']                = 'Plugin directory is not writable';
97a4667104SAndreas Gohr$lang['git']                          = 'This extension was installed via git, you may not want to update it here.';
98c837868aSAndreas Gohr
99c837868aSAndreas Gohr$lang['install_url']                  = 'Install from URL:';
100c837868aSAndreas Gohr$lang['install_upload']               = 'Upload Extension:';
101bc34cd38SAndreas Gohr
102bc34cd38SAndreas Gohr$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.';