xref: /plugin/farmer/lang/en/lang.php (revision a646d51957345f8381be2a22b73b0bf048cf637d)
1<?php
2/**
3 * English language file for farmer plugin
4 *
5 * @author Michael Große <grosse@cosmocode.de>
6 */
7
8// menu entry for admin plugins
9$lang['menu'] = 'Farming';
10
11$lang['subdomain_helptext_injection'] = 'If you are using the subdomain based approach you need to enter the subdomain under which the new subwiki will be reachable';
12
13// tabs
14$lang['tab_info'] = 'Info';
15$lang['tab_setup'] = 'Farm Setup';
16$lang['tab_config'] = 'Configuration';
17$lang['tab_plugins'] = 'Manage Plugins';
18$lang['tab_new'] = 'Add new Animal';
19
20//labels
21$lang['preloadPHPForm'] = 'Create a new preload.php';
22$lang['farm dir'] = 'Animal Directory';
23$lang['animal configuration'] = 'Basic animal configuration';
24$lang['admin password'] = 'Password for the new admin';
25$lang['animal administrator'] = 'Animal administrator';
26$lang['importUsers'] = 'Import all users of the master wiki to the new animal';
27$lang['currentAdmin'] = 'Set the current user as admin';
28$lang['newAdmin'] = 'Create new admin user "admin"';
29$lang['server configuration'] = 'Server configuration';
30$lang['htaccess setup'] = 'htaccess setup';
31$lang['subdomain setup'] = 'Subdomain setup';
32$lang['animal subdomain'] = 'Animal subdomain';
33$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?';
34$lang['bulkEdit'] = 'Bulk edit all animals';
35$lang['singleEdit'] = 'Edit a single animal';
36$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals';
37$lang['activate'] = 'Activate';
38$lang['deactivate'] = 'Deactivate';
39$lang['singleEditForm'] = 'Edit the plugins of a specific animal';
40$lang['submit'] = 'Submit';
41$lang['reset'] = 'Reset';
42$lang['js']['submit'] = $lang['submit'];
43$lang['js']['reset'] = $lang['reset'];
44$lang['animal name'] = 'Animal name / Wiki Title';
45$lang['htaccess_basedir'] = 'Enter the path to the above-entered farm directory relativ to the server root:';
46
47$lang['animal'] = 'Animal Name';
48$lang['thisis'] = 'This is';
49$lang['thisis.farmer'] = 'The farmer!';
50$lang['thisis.animal'] = 'An animal!';
51$lang['baseinstall'] = 'Farmer Install';
52$lang['animals'] = 'Animals';
53
54// config
55$lang['conf_inherit'] = 'Farmer Settings Animals should inherit';
56$lang['conf_inherit_main'] = 'Configuration Settings';
57$lang['conf_inherit_acronyms'] = 'Acronym Definitions';
58$lang['conf_inherit_entities'] = 'Entity Definitions';
59$lang['conf_inherit_interwiki'] = 'Interwiki Definitions';
60$lang['conf_inherit_license'] = 'License Definitions';
61$lang['conf_inherit_mime'] = 'MIME Type Definitions';
62$lang['conf_inherit_scheme'] = 'URL Scheme Definitions';
63$lang['conf_inherit_smileys'] = 'Smiley Definitions';
64$lang['conf_inherit_wordblock'] = 'Spam Blacklist Entries';
65$lang['conf_inherit_userstyle'] = 'User Styles';
66$lang['conf_inherit_userscript'] = 'User Scripts';
67
68$lang['conf_notfound'] = 'Behavior on accessing nonexistent Animals';
69$lang['conf_notfound_farmer'] = 'Show the farmer wiki';
70$lang['conf_notfound_404'] = 'Show a 404 error page';
71$lang['conf_notfound_list'] = 'Show a list of available animals';
72$lang['conf_notfound_redirect'] = 'Redirect to the URL below';
73$lang['conf_notfound_url'] = 'URL to redirect to if selected above';
74
75$lang['save'] = 'Save';
76
77// input placeholders
78$lang['js']['animalSelect'] = 'Select an animal';
79$lang['js']['pluginSelect'] = 'Select a plugin';
80$lang['animal name placeholder'] = 'Animal name';
81$lang['animal subdomain placeholder'] = 'animal.wiki.example.com';
82$lang['admin password placeholder'] = 'Password';
83
84// success messages
85$lang['animal creation success'] = 'The animal "%s" has been successfully created.';
86$lang['animal creation error'] = 'There was an error while creating the animal.';
87$lang['preload creation success'] = 'inc/preload.php has been succesfully created.';
88$lang['preload creation error'] = 'There was an error while creating inc/preload.php.';
89$lang['js']['animal ajax success'] = 'Ajax request to the new animal was successful.';
90$lang['js']['preload ajax success'] = 'Ajax request to a non-existing animal was correctly served by the farmer.';
91
92// info messages
93$lang['overwrite_preload'] = 'Warning: Your existing inc/preload.php will be overwritten when continuing here!';
94
95// error messages
96$lang['htaccess_basedir_missing'] = 'Please enter the <a href="https://www.dokuwiki.org/config:basedir">basedir</a>';
97$lang['animalname_missing'] = 'Please enter a name for the new animal.';
98$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).';
99$lang['animalname_preexisting'] = 'An animal with that name already exists.';
100$lang['adminsetup_missing'] = 'Choose an admin for the new animal.';
101$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.';
102$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.';
103$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.';
104$lang['animalsubdomain_invalid'] = 'Please enter a valid subdomain (FQDN) without underscores.';
105$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.';
106$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.';
107$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.';
108$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?';
109$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory';
110$lang['farmdir_notEmpty'] = 'The farm directory must be empty.';
111$lang['get request failure'] = 'The specified domain name could not be verified to be part of this farm setup. This is most probably a DNS or web server misconfiguration. Please refer to the farm plugin documentation on how to setup (sub-)domain farms.';
112$lang['js']['preload ajax failure'] = $lang['get request failure'];
113$lang['js']['animal ajax failure'] = $lang['get request failure'];
114//Setup VIM: ex: et ts=4 :
115
116