1788f86d9SMichael Hamann<?php 2788f86d9SMichael Hamann/** 3788f86d9SMichael Hamann * English language file for extension plugin 4788f86d9SMichael Hamann * 5788f86d9SMichael Hamann * @author Michael Hamann <michael@content-space.de> 6788f86d9SMichael Hamann */ 7788f86d9SMichael Hamann 8788f86d9SMichael Hamann// menu entry for admin plugins 9788f86d9SMichael Hamann$lang['menu'] = 'Extension manager'; 10788f86d9SMichael Hamann 11788f86d9SMichael Hamann// custom language strings for the plugin 12788f86d9SMichael Hamann$lang['notimplemented'] = 'This feature hasn\'t been implemented yet'; 13788f86d9SMichael Hamann$lang['alreadyenabled'] = 'This extension has already been enabled'; 14788f86d9SMichael Hamann$lang['alreadydisabled'] = 'This extension has already been disabled'; 15788f86d9SMichael Hamann$lang['pluginlistsaveerror'] = 'There was an error saving the plugin list'; 16788f86d9SMichael Hamann$lang['unknownauthor'] = 'Unknown author'; 17788f86d9SMichael Hamann$lang['unknownversion'] = 'Unknown version'; 18788f86d9SMichael Hamann 19788f86d9SMichael Hamann 20*1981046eSMichael Hamann$lang['error_badurl'] = 'URL ends with slash - unable to determine file name from the url'; 21*1981046eSMichael Hamann$lang['error_dircreate'] = 'Unable to create temporary folder to receive download'; 22*1981046eSMichael Hamann$lang['error_download'] = 'Unable to download the file: %s'; 23*1981046eSMichael 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'; 24*1981046eSMichael Hamann$lang['error_findfolder'] = 'Unable to identify extension directory, you need to download and install manually'; 25*1981046eSMichael 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'; 26788f86d9SMichael Hamann 27788f86d9SMichael Hamann//Setup VIM: ex: et ts=4 : 28