xref: /dokuwiki/lib/plugins/extension/lang/en/lang.php (revision fee60c9e19860de9edb1dd146ec7063bb9eda392)
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
9788f86d9SMichael Hamann// menu entry for admin plugins
10d7410643SAndreas Gohr$lang['menu'] = 'Extension Manager';
11d7410643SAndreas Gohr
12d7410643SAndreas Gohr$lang['tab_plugins']   = 'Installed Plugins';
13d7410643SAndreas Gohr$lang['tab_templates'] = 'Installed Templates';
14d7410643SAndreas Gohr$lang['tab_search']    = 'Search and Install';
15ea9f3f90SAndreas Gohr$lang['tab_install']   = 'Manual Install';
16788f86d9SMichael Hamann
17788f86d9SMichael Hamann// custom language strings for the plugin
18788f86d9SMichael Hamann$lang['notimplemented'] = 'This feature hasn\'t been implemented yet';
19788f86d9SMichael Hamann$lang['alreadyenabled'] = 'This extension has already been enabled';
20788f86d9SMichael Hamann$lang['alreadydisabled'] = 'This extension has already been disabled';
21788f86d9SMichael Hamann$lang['pluginlistsaveerror'] = 'There was an error saving the plugin list';
22788f86d9SMichael Hamann$lang['unknownauthor'] = 'Unknown author';
23788f86d9SMichael Hamann$lang['unknownversion'] = 'Unknown version';
24788f86d9SMichael Hamann
2502779b18SMichael Hamann// extension list
2602779b18SMichael Hamann$lang['btn_info']               = 'Show more info';
2702779b18SMichael Hamann$lang['btn_update']             = 'Update';
2802779b18SMichael Hamann$lang['btn_uninstall']          = 'Uninstall';
2902779b18SMichael Hamann$lang['btn_enable']             = 'Enable';
3002779b18SMichael Hamann$lang['btn_disable']            = 'Disable';
3102779b18SMichael Hamann//$lang['btn_disable_all']        = 'Disable all';
3202779b18SMichael Hamann//$lang['btn_settings']           = 'Settings';
3302779b18SMichael Hamann$lang['btn_install']           = 'Install';
3402779b18SMichael Hamann$lang['btn_reinstall']          = 'Re-install';
3502779b18SMichael Hamann//$lang['btn_disdown']            = 'Download as Disabled';
3602779b18SMichael Hamann//$lang['btn_dependown']          = 'Download with dependencies';
3702779b18SMichael Hamann
3802779b18SMichael Hamann$lang['extensionby']            = '<strong>%s</strong> by %s';
3902779b18SMichael Hamann$lang['popularity']             = 'Popularity: %s';
4002779b18SMichael Hamann$lang['homepage_link']          = 'Docs';
4102779b18SMichael Hamann$lang['bugs_features']          = 'Bugs';
4202779b18SMichael Hamann$lang['author_hint']            = 'Search extensions by this author';
4302779b18SMichael Hamann$lang['tag_hint']               = 'Search extensions with this tag';
4402779b18SMichael Hamann$lang['installed']              = 'Installed:';
4502779b18SMichael Hamann$lang['lastupdate']             = 'Last updated:';
4602779b18SMichael Hamann$lang['downloadurl']            = 'Download URL:';
4702779b18SMichael Hamann$lang['repository']             = 'Repository:';
4802779b18SMichael Hamann$lang['unknown']                = '<em>unknown</em>';
4902779b18SMichael Hamann$lang['installed_version']      = 'Installed version:';
5002779b18SMichael Hamann$lang['install_date']           = 'Your last update:';
5102779b18SMichael Hamann$lang['available_version']      = 'Version:';
5202779b18SMichael Hamann$lang['compatible']             = 'Compatible with:';
5302779b18SMichael Hamann$lang['depends']                = 'Depends on:';
5402779b18SMichael Hamann$lang['similar']                = 'Similar to:';
5502779b18SMichael Hamann$lang['conflicts']              = 'Conflicts with:';
5602779b18SMichael Hamann$lang['donate']                 = 'Donate';
5702779b18SMichael Hamann$lang['bundled']                = 'bundled';
5802779b18SMichael Hamann$lang['manual_install']         = 'manual install';
5902779b18SMichael Hamann
607944abddSAndreas Gohr$lang['repo_error'] = 'The DokuWiki extension repository can not be reached currently. Online Features are not available.';
617944abddSAndreas Gohr$lang['repo_retry'] = 'Retry';
627944abddSAndreas Gohr
6302779b18SMichael Hamann$lang['msg_tpl_uninstalled']        = 'Template %s uninstalled';
6402779b18SMichael Hamann$lang['msg_tpl_uninstalled']     = 'Template %s could not be uninstalled';
6502779b18SMichael Hamann$lang['msg_uninstalled']            = 'Plugin %s uninstalled';
6602779b18SMichael Hamann$lang['msg_uninstalled']         = 'Plugin %s could not be uninstalled';
6702779b18SMichael Hamann
6802779b18SMichael Hamann$lang['msg_tpl_enabled']        = 'Template %s enabled';
6902779b18SMichael Hamann$lang['msg_tpl_notenabled']     = 'Template %s could not be enabled, check file permissions';
7002779b18SMichael Hamann$lang['msg_enabled']            = 'Plugin %s enabled';
7102779b18SMichael Hamann$lang['msg_notenabled']         = 'Plugin %s could not be enabled, check file permissions';
7202779b18SMichael Hamann
7302779b18SMichael Hamann$lang['msg_disabled']           = 'Plugin %s disabled';
7402779b18SMichael Hamann$lang['msg_notdisabled']        = 'Plugin %s could not be disabled, check file permissions';
7502779b18SMichael Hamann
765c0b30bfSAndreas Gohr
775c0b30bfSAndreas Gohr$lang['msg_template_install_success'] = 'Template %s installed successfully';
785c0b30bfSAndreas Gohr$lang['msg_template_update_success'] = 'Template %s updated successfully';
795c0b30bfSAndreas Gohr$lang['msg_plugin_install_success'] = 'Plugin %s installed successfully';
805c0b30bfSAndreas Gohr$lang['msg_plugin_update_success'] = 'Plugin %s updated successfully';
815c0b30bfSAndreas Gohr
82*fee60c9eSAndreas Gohr$lang['msg_upload_failed'] = 'Uploading the file failed';
83*fee60c9eSAndreas Gohr
845c0b30bfSAndreas Gohr
8502779b18SMichael Hamann$lang['msg_url_failed']         = 'URL [%s] could not be downloaded.<br /> %s';
8602779b18SMichael Hamann$lang['msg_download_failed']    = 'Plugin %s could not be downloaded.<br /> %s';
8702779b18SMichael Hamann$lang['msg_download_success']   = 'Plugin %s installed successfully';
8802779b18SMichael Hamann$lang['msg_tpl_download_failed']  = 'Template %s could not be downloaded.<br /> %s';
895c0b30bfSAndreas Gohr
9002779b18SMichael Hamann$lang['msg_download_pkg_success']     = '%s extension package successfully installed (%s)';
9102779b18SMichael Hamann$lang['msg_tpl_download_pkg_success'] = '%s extension package successfully installed (%s)';
9202779b18SMichael Hamann
9302779b18SMichael Hamann$lang['msg_update_success']     = 'Plugin %s successfully updated';
9402779b18SMichael Hamann$lang['msg_update_failed']      = 'Update of plugin %s failed.<br /> %s';
9502779b18SMichael Hamann$lang['msg_tpl_update_success'] = 'Template %s successfully updated';
9602779b18SMichael Hamann$lang['msg_tpl_update_failed']  = 'Update of template %s failed.<br /> %s';
9702779b18SMichael Hamann$lang['msg_update_pkg_success']     = '%s extension package successfully updated (%s)';
9802779b18SMichael Hamann$lang['msg_tpl_update_pkg_success'] = '%s extension package successfully updated (%s)';
9902779b18SMichael Hamann
10002779b18SMichael Hamann$lang['msg_reinstall_success']  = 'Plugin %s re-installed successfully';
10102779b18SMichael Hamann$lang['msg_reinstall_failed']   = 'Failed to re-install plugin %s.<br /> %s';
10202779b18SMichael Hamann$lang['msg_tpl_reinstall_success'] = 'Template %s re-installed successfully';
10302779b18SMichael Hamann$lang['msg_tpl_reinstall_failed']  = 'Failed to re-install template %s.<br /> %s';
10402779b18SMichael Hamann$lang['msg_reinstall_pkg_success']     = '%s extension package successfully reinstalled (%s)';
10502779b18SMichael Hamann$lang['msg_tpl_reinstall_pkg_success'] = '%s extension package successfully reinstalled (%s)';
10602779b18SMichael Hamann
10702779b18SMichael Hamann// info titles
10802779b18SMichael Hamann$lang['plugin']                 = 'Plugin';
10902779b18SMichael Hamann$lang['provides']               = 'Provides:';
11002779b18SMichael Hamann$lang['noinfo']                 = 'This plugin returned no information, it may be invalid.';
11102779b18SMichael Hamann$lang['name']                   = 'Name:';
11202779b18SMichael Hamann$lang['date']                   = 'Date:';
11302779b18SMichael Hamann$lang['type']                   = 'Type:';
11402779b18SMichael Hamann$lang['desc']                   = 'Description:';
11502779b18SMichael Hamann$lang['author']                 = 'Author:';
11602779b18SMichael Hamann$lang['www']                    = 'Web:';
11702779b18SMichael Hamann
11802779b18SMichael Hamann// error messages
11902779b18SMichael Hamann$lang['needed_by']              = 'Needed by:';
12002779b18SMichael Hamann$lang['not_writable']           = 'DokuWiki can not write to the folder';
12102779b18SMichael Hamann$lang['missing_dependency']     = '<strong>Missing or disabled dependency:</strong> %s';
12202779b18SMichael Hamann$lang['security_issue']         = '<strong>Security Issue:</strong> %s';
12302779b18SMichael Hamann$lang['security_warning']       = '<strong>Security Warning:</strong> %s';
12402779b18SMichael Hamann$lang['update_available']       = '<strong>Update:</strong> New version %s is available.';
12502779b18SMichael Hamann$lang['wrong_folder']           = '<strong>Plugin installed incorrectly:</strong> Rename plugin directory "%s" to "%s".';
12602779b18SMichael 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';
12702779b18SMichael Hamann$lang['gitmanaged']             = 'Extension installed with git';
12802779b18SMichael Hamann$lang['bundled_source']         = 'Bundled with DokuWiki source';
12902779b18SMichael Hamann$lang['no_url']                 = 'No download URL';
13002779b18SMichael Hamann$lang['no_manager']             = 'Could not find manager.dat file';
131788f86d9SMichael Hamann
1321981046eSMichael Hamann$lang['error_badurl']           = 'URL ends with slash - unable to determine file name from the url';
1331981046eSMichael Hamann$lang['error_dircreate']        = 'Unable to create temporary folder to receive download';
1341981046eSMichael Hamann$lang['error_download']         = 'Unable to download the file: %s';
135*fee60c9eSAndreas 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.';
1361981046eSMichael Hamann$lang['error_findfolder']       = 'Unable to identify extension directory, you need to download and install manually';
1371981046eSMichael 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';
138788f86d9SMichael Hamann//Setup VIM: ex: et ts=4 :
139