1<?php 2/** 3 * English language file for extension plugin 4 * 5 * @author Michael Hamann <michael@content-space.de> 6 * @author Christopher Smith <chris@jalakai.co.uk> 7 */ 8 9$lang['menu'] = 'Extension Manager'; 10 11$lang['tab_plugins'] = 'Installed Plugins'; 12$lang['tab_templates'] = 'Installed Templates'; 13$lang['tab_search'] = 'Search and Install'; 14$lang['tab_install'] = 'Manual Install'; 15 16$lang['notimplemented'] = 'This feature hasn\'t been implemented yet'; 17$lang['notinstalled'] = 'This extension is not installed'; 18$lang['alreadyenabled'] = 'This extension has already been enabled'; 19$lang['alreadydisabled'] = 'This extension has already been disabled'; 20$lang['pluginlistsaveerror'] = 'There was an error saving the plugin list'; 21$lang['unknownauthor'] = 'Unknown author'; 22$lang['unknownversion'] = 'Unknown version'; 23 24$lang['btn_info'] = 'Show more info'; 25$lang['btn_update'] = 'Update'; 26$lang['btn_uninstall'] = 'Uninstall'; 27$lang['btn_enable'] = 'Enable'; 28$lang['btn_disable'] = 'Disable'; 29$lang['btn_install'] = 'Install'; 30$lang['btn_reinstall'] = 'Re-install'; 31 32$lang['search_for'] = 'Search Extension:'; 33$lang['search'] = 'Search'; 34 35$lang['extensionby'] = '<strong>%s</strong> by %s'; 36$lang['popularity'] = 'Popularity: %s'; 37$lang['homepage_link'] = 'Docs'; 38$lang['bugs_features'] = 'Bugs'; 39$lang['author_hint'] = 'Search extensions by this author'; 40$lang['installed'] = 'Installed:'; 41$lang['downloadurl'] = 'Download URL:'; 42$lang['repository'] = 'Repository:'; 43$lang['unknown'] = '<em>unknown</em>'; 44$lang['installed_version'] = 'Installed version:'; 45$lang['install_date'] = 'Your last update:'; 46$lang['available_version'] = 'Version:'; 47$lang['compatible'] = 'Compatible with:'; 48$lang['depends'] = 'Depends on:'; 49$lang['similar'] = 'Similar to:'; 50$lang['conflicts'] = 'Conflicts with:'; 51$lang['donate'] = 'Like this?'; 52$lang['donate_action'] = 'Buy the author a coffee!'; 53$lang['repo_retry'] = 'Retry'; 54 55$lang['msg_enabled'] = 'Plugin %s enabled'; 56$lang['msg_disabled'] = 'Plugin %s disabled'; 57$lang['msg_delete_success'] = 'Extension uninstalled'; 58$lang['msg_template_install_success'] = 'Template %s installed successfully'; 59$lang['msg_template_update_success'] = 'Template %s updated successfully'; 60$lang['msg_plugin_install_success'] = 'Plugin %s installed successfully'; 61$lang['msg_plugin_update_success'] = 'Plugin %s updated successfully'; 62$lang['msg_upload_failed'] = 'Uploading the file failed'; 63 64$lang['provides'] = 'Provides:'; 65$lang['missing_dependency'] = '<strong>Missing or disabled dependency:</strong> %s'; 66$lang['security_issue'] = '<strong>Security Issue:</strong> %s'; 67$lang['security_warning'] = '<strong>Security Warning:</strong> %s'; 68$lang['update_available'] = '<strong>Update:</strong> New version %s is available.'; 69$lang['wrong_folder'] = '<strong>Plugin installed incorrectly:</strong> Rename plugin directory "%s" to "%s".'; 70$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'; 71 72$lang['error_badurl'] = 'URL ends with slash - unable to determine file name from the url'; 73$lang['error_dircreate'] = 'Unable to create temporary folder to receive download'; 74$lang['error_download'] = 'Unable to download the file: %s'; 75$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.'; 76$lang['error_findfolder'] = 'Unable to identify extension directory, you need to download and install manually'; 77$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'; 78 79$lang['noperms'] = 'Extension directory is not writable'; 80$lang['notplperms'] = 'Template directory is not writable'; 81$lang['nopluginperms'] = 'Plugin directory is not writable';