1788f86d9SMichael Hamann<?php 2788f86d9SMichael Hamann/** 3788f86d9SMichael Hamann * English language file for extension plugin 4788f86d9SMichael Hamann * 5788f86d9SMichael Hamann * @author Michael Hamann <michael@content-space.de> 6*02779b18SMichael Hamann * @author Christopher Smith <chris@jalakai.co.uk> 7788f86d9SMichael Hamann */ 8788f86d9SMichael Hamann 9788f86d9SMichael Hamann// menu entry for admin plugins 10788f86d9SMichael Hamann$lang['menu'] = 'Extension manager'; 11788f86d9SMichael Hamann 12788f86d9SMichael Hamann// custom language strings for the plugin 13788f86d9SMichael Hamann$lang['notimplemented'] = 'This feature hasn\'t been implemented yet'; 14788f86d9SMichael Hamann$lang['alreadyenabled'] = 'This extension has already been enabled'; 15788f86d9SMichael Hamann$lang['alreadydisabled'] = 'This extension has already been disabled'; 16788f86d9SMichael Hamann$lang['pluginlistsaveerror'] = 'There was an error saving the plugin list'; 17788f86d9SMichael Hamann$lang['unknownauthor'] = 'Unknown author'; 18788f86d9SMichael Hamann$lang['unknownversion'] = 'Unknown version'; 19788f86d9SMichael Hamann 20*02779b18SMichael Hamann// extension list 21*02779b18SMichael Hamann$lang['btn_info'] = 'Show more info'; 22*02779b18SMichael Hamann$lang['btn_update'] = 'Update'; 23*02779b18SMichael Hamann$lang['btn_uninstall'] = 'Uninstall'; 24*02779b18SMichael Hamann$lang['btn_enable'] = 'Enable'; 25*02779b18SMichael Hamann$lang['btn_disable'] = 'Disable'; 26*02779b18SMichael Hamann//$lang['btn_disable_all'] = 'Disable all'; 27*02779b18SMichael Hamann//$lang['btn_settings'] = 'Settings'; 28*02779b18SMichael Hamann$lang['btn_install'] = 'Install'; 29*02779b18SMichael Hamann$lang['btn_reinstall'] = 'Re-install'; 30*02779b18SMichael Hamann//$lang['btn_disdown'] = 'Download as Disabled'; 31*02779b18SMichael Hamann//$lang['btn_dependown'] = 'Download with dependencies'; 32*02779b18SMichael Hamann 33*02779b18SMichael Hamann$lang['extensionby'] = '<strong>%s</strong> by %s'; 34*02779b18SMichael Hamann$lang['popularity'] = 'Popularity: %s'; 35*02779b18SMichael Hamann$lang['homepage_link'] = 'Docs'; 36*02779b18SMichael Hamann$lang['bugs_features'] = 'Bugs'; 37*02779b18SMichael Hamann$lang['author_hint'] = 'Search extensions by this author'; 38*02779b18SMichael Hamann$lang['tag_hint'] = 'Search extensions with this tag'; 39*02779b18SMichael Hamann$lang['installed'] = 'Installed:'; 40*02779b18SMichael Hamann$lang['lastupdate'] = 'Last updated:'; 41*02779b18SMichael Hamann$lang['downloadurl'] = 'Download URL:'; 42*02779b18SMichael Hamann$lang['repository'] = 'Repository:'; 43*02779b18SMichael Hamann$lang['unknown'] = '<em>unknown</em>'; 44*02779b18SMichael Hamann$lang['installed_version'] = 'Installed version:'; 45*02779b18SMichael Hamann$lang['install_date'] = 'Your last update:'; 46*02779b18SMichael Hamann$lang['available_version'] = 'Version:'; 47*02779b18SMichael Hamann$lang['compatible'] = 'Compatible with:'; 48*02779b18SMichael Hamann$lang['depends'] = 'Depends on:'; 49*02779b18SMichael Hamann$lang['similar'] = 'Similar to:'; 50*02779b18SMichael Hamann$lang['conflicts'] = 'Conflicts with:'; 51*02779b18SMichael Hamann$lang['donate'] = 'Donate'; 52*02779b18SMichael Hamann$lang['bundled'] = 'bundled'; 53*02779b18SMichael Hamann$lang['manual_install'] = 'manual install'; 54*02779b18SMichael Hamann 55*02779b18SMichael Hamann$lang['msg_tpl_uninstalled'] = 'Template %s uninstalled'; 56*02779b18SMichael Hamann$lang['msg_tpl_uninstalled'] = 'Template %s could not be uninstalled'; 57*02779b18SMichael Hamann$lang['msg_uninstalled'] = 'Plugin %s uninstalled'; 58*02779b18SMichael Hamann$lang['msg_uninstalled'] = 'Plugin %s could not be uninstalled'; 59*02779b18SMichael Hamann 60*02779b18SMichael Hamann$lang['msg_tpl_enabled'] = 'Template %s enabled'; 61*02779b18SMichael Hamann$lang['msg_tpl_notenabled'] = 'Template %s could not be enabled, check file permissions'; 62*02779b18SMichael Hamann$lang['msg_enabled'] = 'Plugin %s enabled'; 63*02779b18SMichael Hamann$lang['msg_notenabled'] = 'Plugin %s could not be enabled, check file permissions'; 64*02779b18SMichael Hamann 65*02779b18SMichael Hamann$lang['msg_disabled'] = 'Plugin %s disabled'; 66*02779b18SMichael Hamann$lang['msg_notdisabled'] = 'Plugin %s could not be disabled, check file permissions'; 67*02779b18SMichael Hamann 68*02779b18SMichael Hamann$lang['msg_url_failed'] = 'URL [%s] could not be downloaded.<br /> %s'; 69*02779b18SMichael Hamann$lang['msg_download_failed'] = 'Plugin %s could not be downloaded.<br /> %s'; 70*02779b18SMichael Hamann$lang['msg_download_success'] = 'Plugin %s installed successfully'; 71*02779b18SMichael Hamann$lang['msg_tpl_download_failed'] = 'Template %s could not be downloaded.<br /> %s'; 72*02779b18SMichael Hamann$lang['msg_tpl_download_success'] = 'Template %s installed successfully'; 73*02779b18SMichael Hamann$lang['msg_download_pkg_success'] = '%s extension package successfully installed (%s)'; 74*02779b18SMichael Hamann$lang['msg_tpl_download_pkg_success'] = '%s extension package successfully installed (%s)'; 75*02779b18SMichael Hamann 76*02779b18SMichael Hamann$lang['msg_update_success'] = 'Plugin %s successfully updated'; 77*02779b18SMichael Hamann$lang['msg_update_failed'] = 'Update of plugin %s failed.<br /> %s'; 78*02779b18SMichael Hamann$lang['msg_tpl_update_success'] = 'Template %s successfully updated'; 79*02779b18SMichael Hamann$lang['msg_tpl_update_failed'] = 'Update of template %s failed.<br /> %s'; 80*02779b18SMichael Hamann$lang['msg_update_pkg_success'] = '%s extension package successfully updated (%s)'; 81*02779b18SMichael Hamann$lang['msg_tpl_update_pkg_success'] = '%s extension package successfully updated (%s)'; 82*02779b18SMichael Hamann 83*02779b18SMichael Hamann$lang['msg_reinstall_success'] = 'Plugin %s re-installed successfully'; 84*02779b18SMichael Hamann$lang['msg_reinstall_failed'] = 'Failed to re-install plugin %s.<br /> %s'; 85*02779b18SMichael Hamann$lang['msg_tpl_reinstall_success'] = 'Template %s re-installed successfully'; 86*02779b18SMichael Hamann$lang['msg_tpl_reinstall_failed'] = 'Failed to re-install template %s.<br /> %s'; 87*02779b18SMichael Hamann$lang['msg_reinstall_pkg_success'] = '%s extension package successfully reinstalled (%s)'; 88*02779b18SMichael Hamann$lang['msg_tpl_reinstall_pkg_success'] = '%s extension package successfully reinstalled (%s)'; 89*02779b18SMichael Hamann 90*02779b18SMichael Hamann// info titles 91*02779b18SMichael Hamann$lang['plugin'] = 'Plugin'; 92*02779b18SMichael Hamann$lang['provides'] = 'Provides:'; 93*02779b18SMichael Hamann$lang['noinfo'] = 'This plugin returned no information, it may be invalid.'; 94*02779b18SMichael Hamann$lang['name'] = 'Name:'; 95*02779b18SMichael Hamann$lang['date'] = 'Date:'; 96*02779b18SMichael Hamann$lang['type'] = 'Type:'; 97*02779b18SMichael Hamann$lang['desc'] = 'Description:'; 98*02779b18SMichael Hamann$lang['author'] = 'Author:'; 99*02779b18SMichael Hamann$lang['www'] = 'Web:'; 100*02779b18SMichael Hamann 101*02779b18SMichael Hamann// error messages 102*02779b18SMichael Hamann$lang['needed_by'] = 'Needed by:'; 103*02779b18SMichael Hamann$lang['not_writable'] = 'DokuWiki can not write to the folder'; 104*02779b18SMichael Hamann$lang['missing_dependency'] = '<strong>Missing or disabled dependency:</strong> %s'; 105*02779b18SMichael Hamann$lang['security_issue'] = '<strong>Security Issue:</strong> %s'; 106*02779b18SMichael Hamann$lang['security_warning'] = '<strong>Security Warning:</strong> %s'; 107*02779b18SMichael Hamann$lang['update_available'] = '<strong>Update:</strong> New version %s is available.'; 108*02779b18SMichael Hamann$lang['wrong_folder'] = '<strong>Plugin installed incorrectly:</strong> Rename plugin directory "%s" to "%s".'; 109*02779b18SMichael 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'; 110*02779b18SMichael Hamann$lang['gitmanaged'] = 'Extension installed with git'; 111*02779b18SMichael Hamann$lang['bundled_source'] = 'Bundled with DokuWiki source'; 112*02779b18SMichael Hamann$lang['no_url'] = 'No download URL'; 113*02779b18SMichael Hamann$lang['no_manager'] = 'Could not find manager.dat file'; 114788f86d9SMichael Hamann 1151981046eSMichael Hamann$lang['error_badurl'] = 'URL ends with slash - unable to determine file name from the url'; 1161981046eSMichael Hamann$lang['error_dircreate'] = 'Unable to create temporary folder to receive download'; 1171981046eSMichael Hamann$lang['error_download'] = 'Unable to download the file: %s'; 1181981046eSMichael Hamann$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'; 1191981046eSMichael Hamann$lang['error_findfolder'] = 'Unable to identify extension directory, you need to download and install manually'; 1201981046eSMichael 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'; 121788f86d9SMichael Hamann//Setup VIM: ex: et ts=4 : 122