1<?php 2/** 3 * English language file for extension plugin 4 * 5 * @author Michael Hamann <michael@content-space.de> 6 */ 7 8// menu entry for admin plugins 9$lang['menu'] = 'Extension manager'; 10 11// custom language strings for the plugin 12$lang['notimplemented'] = 'This feature hasn\'t been implemented yet'; 13$lang['alreadyenabled'] = 'This extension has already been enabled'; 14$lang['alreadydisabled'] = 'This extension has already been disabled'; 15$lang['pluginlistsaveerror'] = 'There was an error saving the plugin list'; 16$lang['unknownauthor'] = 'Unknown author'; 17$lang['unknownversion'] = 'Unknown version'; 18 19 20$lang['error_badurl'] = 'URL ends with slash - unable to determine file name from the url'; 21$lang['error_dircreate'] = 'Unable to create temporary folder to receive download'; 22$lang['error_download'] = 'Unable to download the file: %s'; 23$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'; 24$lang['error_findfolder'] = 'Unable to identify extension directory, you need to download and install manually'; 25$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'; 26 27//Setup VIM: ex: et ts=4 : 28