xref: /plugin/farmer/lang/en/lang.php (revision f31951d478c90dc7227cee735d34ecc8149d5ce9)
1<?php
2/**
3 * English language file for farmer plugin
4 *
5 * @author Michael Große <grosse@cosmocode.de>
6 * @author Andreas Gohr <gohr@cosmocode.de>
7 */
8
9// menu entry for admin plugins
10$lang['menu'] = 'Farming';
11
12// tabs
13$lang['tab_setup'] = 'Farm Setup';
14$lang['tab_info'] = 'Info';
15$lang['tab_config'] = 'Configuration';
16$lang['tab_plugins'] = 'Manage Plugins';
17$lang['tab_new'] = 'Add new Animal';
18$lang['tab_delete'] = 'Delete Animal';
19
20// setup
21$lang['preloadPHPForm'] = 'Initialize Farming';
22$lang['farm dir'] = 'Animal directory';
23$lang['htaccess setup'] = 'Add farm code to .htaccess?';
24$lang['submit'] = 'Submit';
25$lang['farmdir_missing'] = 'Please enter a directory where the Animals should be stored.';
26$lang['farmdir_in_dokuwiki'] = 'The Animal directory must outside of the Farm dokuwiki.';
27$lang['farmdir_uncreatable'] = 'The Animal directory could not be created. Are the permissions correct?';
28$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the Animal directory!';
29$lang['farmdir_notEmpty'] = 'The Animal directory must be empty.';
30$lang['preload creation success'] = 'Farming has been succesfully initialized.';
31$lang['preload creation error'] = 'There was an error during Farming initialization.';
32$lang['overwrite_preload'] = 'Warning: Your existing inc/preload.php will be overwritten when continuing here!';
33
34// info
35$lang['animal'] = 'Animal Name / Domain';
36$lang['thisis'] = 'Instance is';
37$lang['thisis.farmer'] = 'The farmer!';
38$lang['thisis.animal'] = 'An animal!';
39$lang['baseinstall'] = 'Farmer Install';
40$lang['animals'] = 'Animals';
41$lang['confdir'] = 'Instance Configuration Directory';
42$lang['savedir'] = 'Instance Data Directory';
43
44// config
45$lang['base'] = 'Base Configuration';
46$lang['farm host'] = 'Farmer Host Name';
47$lang['base domain'] = 'Base Domain for subdomain animals';
48$lang['conf_inherit'] = 'Farmer Settings Animals should inherit';
49$lang['conf_inherit_main'] = 'Configuration Settings';
50$lang['conf_inherit_acronyms'] = 'Acronym Definitions';
51$lang['conf_inherit_entities'] = 'Entity Definitions';
52$lang['conf_inherit_interwiki'] = 'Interwiki Definitions';
53$lang['conf_inherit_license'] = 'License Definitions';
54$lang['conf_inherit_mime'] = 'MIME Type Definitions';
55$lang['conf_inherit_scheme'] = 'URL Scheme Definitions';
56$lang['conf_inherit_smileys'] = 'Smiley Definitions';
57$lang['conf_inherit_wordblock'] = 'Spam Blacklist Entries';
58$lang['conf_inherit_userstyle'] = 'User Styles';
59$lang['conf_inherit_users'] = 'Users (Plain Auth only)';
60$lang['conf_inherit_userscript'] = 'User Scripts';
61$lang['conf_inherit_yes'] = 'inherited from farmer';
62$lang['conf_inherit_no'] = 'independent from farmer';
63$lang['conf_notfound'] = 'Behavior on accessing nonexistent Animals';
64$lang['conf_notfound_farmer'] = 'Show the farmer wiki';
65$lang['conf_notfound_404'] = 'Show a 404 error page';
66$lang['conf_notfound_list'] = 'Show a list of available animals';
67$lang['conf_notfound_redirect'] = 'Redirect to the URL below';
68$lang['conf_notfound_url'] = 'URL to redirect to if selected above';
69$lang['save'] = 'Save';
70
71// new
72$lang['animal template'] = 'Copy existing animal';
73$lang['animal creation success'] = 'The animal "%s" has been successfully created.';
74$lang['animal creation error'] = 'There was an error while creating the animal.';
75$lang['animal configuration'] = 'Basic animal configuration';
76$lang['animal administrator'] = 'Animal administrator';
77$lang['noUsers'] = 'Do not create any users';
78$lang['importUsers'] = 'Import all users of the Farmer to the new Animal';
79$lang['currentAdmin'] = 'Set the current user as admin';
80$lang['newAdmin'] = 'Create new admin user "admin"';
81$lang['admin password'] = 'Password for the new admin';
82$lang['animalname_missing'] = 'Please enter a name for the new animal.';
83$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).';
84$lang['animalname_preexisting'] = 'An animal with that name already exists.';
85$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.';
86$lang['animal template copy error'] = 'There was a problem copying %s from the existing Animal to the new one.';
87
88// plugins
89$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?';
90$lang['bulkEdit'] = 'Bulk edit all animals';
91$lang['singleEdit'] = 'Edit a single animal';
92$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals';
93$lang['activate'] = 'Activate';
94$lang['deactivate'] = 'Deactivate';
95$lang['singleEditForm'] = 'Edit the plugins of a specific animal';
96$lang['js']['animalSelect'] = 'Select an animal';
97$lang['js']['pluginSelect'] = 'Select a plugin';
98$lang['js']['submit'] = 'Submit';
99$lang['js']['reset'] = 'Reset';
100
101// delete
102$lang['delete_animal'] = 'Select Animal to delete';
103$lang['delete_confirm'] = 'Please type the Animal name to confirm';
104$lang['delete'] = 'Delete the Animal and all its data';
105
106$lang['delete_noanimal'] = 'Please select an Animal to delete';
107$lang['delete_mismatch'] = 'Confirmation does not match Animal name. Not deleted.';
108$lang['delete_invalid'] = 'Invalid Animal name. Not deleted.';
109$lang['delete_success'] = 'Animal successfully deleted.';
110$lang['delete_fail'] = 'Some files could not be deleted, you should clean up manuallly.';
111
112//Setup VIM: ex: et ts=4 :
113