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['pluginlistsaveerror'] = 'There was an error saving the plugin list'; 18$lang['unknownauthor'] = 'Unknown author'; 19$lang['unknownversion'] = 'Unknown version'; 20 21$lang['btn_info'] = 'Show more info'; 22$lang['btn_update'] = 'Update'; 23$lang['btn_uninstall'] = 'Uninstall'; 24$lang['btn_enable'] = 'Enable'; 25$lang['btn_disable'] = 'Disable'; 26$lang['btn_install'] = 'Install'; 27$lang['btn_reinstall'] = 'Re-install'; 28 29$lang['js']['reallydel'] = 'Really uninstall this extension?'; 30 31$lang['search_for'] = 'Search Extension:'; 32$lang['search'] = 'Search'; 33 34$lang['extensionby'] = '<strong>%s</strong> by %s'; 35$lang['screenshot'] = 'Screenshot of %s'; 36$lang['popularity'] = 'Popularity: %s%%'; 37$lang['homepage_link'] = 'Docs'; 38$lang['bugs_features'] = 'Bugs'; 39$lang['tags'] = 'Tags:'; 40$lang['author_hint'] = 'Search extensions by this author'; 41$lang['installed'] = 'Installed:'; 42$lang['downloadurl'] = 'Download URL:'; 43$lang['repository'] = 'Repository:'; 44$lang['unknown'] = '<em>unknown</em>'; 45$lang['installed_version'] = 'Installed version:'; 46$lang['install_date'] = 'Your last update:'; 47$lang['available_version'] = 'Available version:'; 48$lang['compatible'] = 'Compatible with:'; 49$lang['depends'] = 'Depends on:'; 50$lang['similar'] = 'Similar to:'; 51$lang['conflicts'] = 'Conflicts with:'; 52$lang['donate'] = 'Like this?'; 53$lang['donate_action'] = 'Buy the author a coffee!'; 54$lang['repo_retry'] = 'Retry'; 55$lang['provides'] = 'Provides:'; 56$lang['status'] = 'Status:'; 57$lang['status_installed'] = 'installed'; 58$lang['status_not_installed'] = 'not installed'; 59$lang['status_protected'] = 'protected'; 60$lang['status_enabled'] = 'enabled'; 61$lang['status_disabled'] = 'disabled'; 62$lang['status_unmodifiable'] = 'unmodifiable'; 63$lang['status_plugin'] = 'plugin'; 64$lang['status_template'] = 'template'; 65$lang['status_bundled'] = 'bundled'; 66 67$lang['msg_enabled'] = 'Plugin %s enabled'; 68$lang['msg_disabled'] = 'Plugin %s disabled'; 69$lang['msg_delete_success'] = 'Extension %s uninstalled'; 70$lang['msg_delete_failed'] = 'Uninstalling Extension %s failed'; 71$lang['msg_install_success'] = 'Extension %s installed successfully'; 72$lang['msg_update_success'] = 'Extension %s updated successfully'; 73$lang['msg_upload_failed'] = 'Uploading the file failed: %s'; 74$lang['msg_nooverwrite'] = 'Extension %s already exists so it is not being overwritten; to overwrite, tick the overwrite option'; 75 76$lang['missing_dependency'] = 'Missing or disabled dependency: %s'; 77$lang['found_conflict'] = 'This extension is marked as conflictig with the following installed extensions: %s'; 78$lang['security_issue'] = 'Security Issue: %s'; 79$lang['security_warning'] = 'Security Warning: %s'; 80$lang['update_message'] = 'Update Message: %s'; 81$lang['wrong_folder'] = 'Extension installed incorrectly: Rename directory from "%s" to "%s".'; 82$lang['url_change'] = "URL changed: Download URL has changed since last download. Check if the new URL is valid before updating the extension.\nNew: %s\nOld: %s"; 83 84$lang['error_badurl'] = 'URLs should start with http or https'; 85$lang['error_dircreate'] = 'Unable to create temporary folder to receive download'; 86$lang['error_download'] = 'Unable to download the file: %s %s %s'; 87$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.'; 88$lang['error_findfolder'] = 'Unable to identify extension directory, you need to download and install manually'; 89$lang['error_copy'] = 'There was a file copy error while attempting to install files for directory \'%s\': 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'; 90$lang['error_copy_read'] = 'Could not read directory %s'; 91$lang['error_copy_mkdir'] = 'Could not create directory %s'; 92$lang['error_copy_copy'] = 'Could not copy %s to %s'; 93$lang['error_archive_read'] = 'Could not open archive %s for reading'; 94$lang['error_archive_extract'] = 'Could not extract archive %s: %s'; 95$lang['error_uninstall_protected'] = 'Extension %s is protected and cannot be uninstalled'; 96$lang['error_uninstall_dependants'] = 'Extension %s is still required by %s and thus cannot be uninstalled'; 97$lang['error_disable_protected'] = 'Extension %s is protected and cannot be disabled'; 98$lang['error_disable_dependants'] = 'Extension %s is still required by %s and thus cannot be disabled'; 99$lang['error_nourl'] = 'No download URL could be found for extension %s'; 100$lang['error_notinstalled'] = 'Extension %s is not installed'; 101$lang['error_alreadyenabled'] = 'Extension %s has already been enabled'; 102$lang['error_alreadydisabled'] = 'Extension %s has already been disabled'; 103$lang['error_minphp'] = 'Extension %s requires at least PHP %s but this wiki is running PHP %s'; 104$lang['error_maxphp'] = 'Extension %s only supports PHP up to %s but this wiki is running PHP %s'; 105 106$lang['noperms'] = 'Extension directory is not writable'; 107$lang['notplperms'] = 'Template directory is not writable'; 108$lang['nopluginperms'] = 'Plugin directory is not writable'; 109$lang['git'] = 'This extension was installed via git, you may not want to update it here.'; 110$lang['auth'] = 'This auth plugin is not enabled in configuration, consider disabling it.'; 111 112$lang['install_url'] = 'Install from URL:'; 113$lang['install_upload'] = 'Upload Extension:'; 114 115$lang['repo_badresponse'] = 'The plugin repository returned an invalid response.'; 116$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.'; 117$lang['nossl'] = 'Your PHP seems to miss SSL support. Downloading will not work for many DokuWiki extensions.'; 118 119$lang['popularity_high'] = 'This is one of the most popular extensions'; 120$lang['popularity_medium'] = 'This extension is quite popular'; 121$lang['popularity_low'] = 'This extension has garnered some interest'; 122 123$lang['details'] = 'Details'; 124 125$lang['js']['display_viewoptions'] = 'View Options:'; 126$lang['js']['display_enabled'] = 'enabled'; 127$lang['js']['display_disabled'] = 'disabled'; 128$lang['js']['display_updatable'] = 'updatable'; 129 130$lang['js']['close'] = 'Click to close'; 131$lang['js']['filter'] = 'Show updatable extensions only'; 132