xref: /plugin/farmer/lang/en/lang.php (revision 78c63d53eceed4e4fefa3c3a46e14844b75d6565)
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['base'] = 'Base Configuration';
23$lang['farm dir'] = 'Animal Directory';
24$lang['farm host'] = 'Farmer Host Name';
25$lang['base domain'] = 'Base Domain for subdomain animals';
26$lang['animal configuration'] = 'Basic animal configuration';
27$lang['admin password'] = 'Password for the new admin';
28$lang['animal administrator'] = 'Animal administrator';
29$lang['noUsers'] = 'Do not create any users (rely on user inherit config only)';
30$lang['importUsers'] = 'Import all users of the Farmer to the new Animal';
31$lang['currentAdmin'] = 'Set the current user as admin';
32$lang['newAdmin'] = 'Create new admin user "admin"';
33$lang['htaccess setup'] = 'Add farm code to .htaccess?';
34$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?';
35$lang['bulkEdit'] = 'Bulk edit all animals';
36$lang['singleEdit'] = 'Edit a single animal';
37$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals';
38$lang['activate'] = 'Activate';
39$lang['deactivate'] = 'Deactivate';
40$lang['singleEditForm'] = 'Edit the plugins of a specific animal';
41$lang['submit'] = 'Submit';
42$lang['reset'] = 'Reset';
43$lang['js']['submit'] = $lang['submit'];
44$lang['js']['reset'] = $lang['reset'];
45
46$lang['animal name'] = 'Animal Name / Domain';
47
48$lang['htaccess_basedir'] = 'Enter the path to the above-entered farm directory relativ to the server root:';
49
50$lang['animal'] = 'Animal Name';
51$lang['thisis'] = 'Instance is';
52$lang['thisis.farmer'] = 'The farmer!';
53$lang['thisis.animal'] = 'An animal!';
54$lang['baseinstall'] = 'Farmer Install';
55$lang['animals'] = 'Animals';
56$lang['confdir'] = 'Instance Configuration Directory';
57$lang['savedir'] = 'Instance Data Directory';
58
59// config
60$lang['conf_inherit'] = 'Farmer Settings Animals should inherit';
61$lang['conf_inherit_main'] = 'Configuration Settings';
62$lang['conf_inherit_acronyms'] = 'Acronym Definitions';
63$lang['conf_inherit_entities'] = 'Entity Definitions';
64$lang['conf_inherit_interwiki'] = 'Interwiki Definitions';
65$lang['conf_inherit_license'] = 'License Definitions';
66$lang['conf_inherit_mime'] = 'MIME Type Definitions';
67$lang['conf_inherit_scheme'] = 'URL Scheme Definitions';
68$lang['conf_inherit_smileys'] = 'Smiley Definitions';
69$lang['conf_inherit_wordblock'] = 'Spam Blacklist Entries';
70$lang['conf_inherit_userstyle'] = 'User Styles';
71$lang['conf_inherit_users'] = 'Users (Plain Auth only)';
72$lang['conf_inherit_userscript'] = 'User Scripts';
73$lang['conf_inherit_yes'] = 'inherited from farmer';
74$lang['conf_inherit_no'] = 'independent from farmer';
75
76$lang['conf_notfound'] = 'Behavior on accessing nonexistent Animals';
77$lang['conf_notfound_farmer'] = 'Show the farmer wiki';
78$lang['conf_notfound_404'] = 'Show a 404 error page';
79$lang['conf_notfound_list'] = 'Show a list of available animals';
80$lang['conf_notfound_redirect'] = 'Redirect to the URL below';
81$lang['conf_notfound_url'] = 'URL to redirect to if selected above';
82
83$lang['save'] = 'Save';
84
85// input placeholders
86$lang['js']['animalSelect'] = 'Select an animal';
87$lang['js']['pluginSelect'] = 'Select a plugin';
88$lang['animal name placeholder'] = 'Animal name';
89$lang['animal subdomain placeholder'] = 'animal.wiki.example.com';
90$lang['admin password placeholder'] = 'Password';
91
92// success messages
93$lang['animal creation success'] = 'The animal "%s" has been successfully created.';
94$lang['animal creation error'] = 'There was an error while creating the animal.';
95$lang['preload creation success'] = 'inc/preload.php has been succesfully created.';
96$lang['preload creation error'] = 'There was an error while creating inc/preload.php.';
97$lang['js']['animal ajax success'] = 'Ajax request to the new animal was successful.';
98$lang['js']['preload ajax success'] = 'Ajax request to a non-existing animal was correctly served by the farmer.';
99
100// info messages
101$lang['overwrite_preload'] = 'Warning: Your existing inc/preload.php will be overwritten when continuing here!';
102
103// error messages
104$lang['htaccess_basedir_missing'] = 'Please enter the <a href="https://www.dokuwiki.org/config:basedir">basedir</a>';
105$lang['animalname_missing'] = 'Please enter a name for the new animal.';
106$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).';
107$lang['animalname_preexisting'] = 'An animal with that name already exists.';
108$lang['adminsetup_missing'] = 'Choose an admin for the new animal.';
109$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.';
110$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.';
111$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.';
112$lang['animalsubdomain_invalid'] = 'Please enter a valid subdomain (FQDN) without underscores.';
113$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.';
114$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.';
115$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.';
116$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?';
117$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory';
118$lang['farmdir_notEmpty'] = 'The farm directory must be empty.';
119$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.';
120$lang['js']['preload ajax failure'] = $lang['get request failure'];
121$lang['js']['animal ajax failure'] = $lang['get request failure'];
122//Setup VIM: ex: et ts=4 :
123
124