source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/plugins/plugin/lang/en/lang.php@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 3.5 KB
Line 
1<?php
2/**
3 * english language file
4 *
5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author Christopher Smith <[email protected]>
7 */
8
9$lang['menu'] = 'Manage Plugins';
10
11// custom language strings for the plugin
12$lang['download'] = "Download and install a new plugin";
13$lang['manage'] = "Installed Plugins";
14
15$lang['btn_info'] = 'info';
16$lang['btn_update'] = 'update';
17$lang['btn_delete'] = 'delete';
18$lang['btn_settings'] = 'settings';
19$lang['btn_download'] = 'Download';
20$lang['btn_enable'] = 'Save';
21
22$lang['url'] = 'URL';
23
24$lang['installed'] = 'Installed:';
25$lang['lastupdate'] = 'Last updated:';
26$lang['source'] = 'Source:';
27$lang['unknown'] = 'unknown';
28
29// ..ing = header message
30// ..ed = success message
31
32$lang['updating'] = 'Updating ...';
33$lang['updated'] = 'Plugin %s updated successfully';
34$lang['updates'] = 'The following plugins have been updated successfully';
35$lang['update_none'] = 'No updates found.';
36
37$lang['deleting'] = 'Deleting ...';
38$lang['deleted'] = 'Plugin %s deleted.';
39
40$lang['downloading'] = 'Downloading ...';
41$lang['downloaded'] = 'Plugin %s installed successfully';
42$lang['downloads'] = 'The following plugins have been installed successfully:';
43$lang['download_none'] = 'No plugins found, or there has been an unknown problem during downloading and installing.';
44
45// info titles
46$lang['plugin'] = 'Plugin:';
47$lang['components'] = 'Components';
48$lang['noinfo'] = 'This plugin returned no information, it may be invalid.';
49$lang['name'] = 'Name:';
50$lang['date'] = 'Date:';
51$lang['type'] = 'Type:';
52$lang['desc'] = 'Description:';
53$lang['author'] = 'Author:';
54$lang['www'] = 'Web:';
55
56// error messages
57$lang['error'] = 'An unknown error occurred.';
58$lang['error_download'] = 'Unable to download the plugin file: %s';
59$lang['error_badurl'] = 'Suspect bad url - unable to determine file name from the url';
60$lang['error_dircreate'] = 'Unable to create temporary folder to receive download';
61$lang['error_decompress'] = 'The plugin manager was unable to decompress the downloaded file. '.
62 'This maybe as a result of a bad download, in which case you should try again; '.
63 'or the compression format may be unknown, in which case you will need to '.
64 'download and install the plugin manually.';
65$lang['error_copy'] = 'There was a file copy error while attempting to install files for plugin '.
66 '<em>%s</em>: the disk could be full or file access permissions may be incorrect. '.
67 'This may have resulted in a partially installed plugin and leave your wiki '.
68 'installation unstable.';
69$lang['error_delete'] = 'There was an error while attempting to delete plugin <em>%s</em>. '.
70 'The most probably cause is insufficient file or directory access permissions';
71
72$lang['enabled'] = 'Plugin %s enabled.';
73$lang['notenabled'] = 'Plugin %s could not be enabled, check file permissions.';
74$lang['disabled'] = 'Plugin %s disabled.';
75$lang['notdisabled'] = 'Plugin %s could not be disabled, check file permissions.';
76$lang['packageinstalled'] = 'Plugin package (%d plugin%s: %s) successfully installed.';
77
78//Setup VIM: ex: et ts=4 :
Note: See TracBrowser for help on using the repository browser.