xref: /plugin/farmer/lang/en/lang.php (revision 80ef674e8468bfc905ed16231df45dfc9fad3209)
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'] = 'Farmer: Add new animal';
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//labels
14$lang['preloadPHPForm'] = 'Create a new preload.php';
15$lang['farm dir'] = 'farm dir';
16$lang['animal configuration'] = 'Basic animal configuration';
17$lang['admin password'] = 'Password for the new admin';
18$lang['animal administrator'] = 'Animal administrator';
19$lang['importUsers'] = 'Import all users of the master wiki to the new animal';
20$lang['currentAdmin'] = 'Set the current user as admin';
21$lang['newAdmin'] = 'Create new admin user "admin"';
22$lang['server configuration'] = 'Server configuration';
23$lang['htaccess setup'] = 'htaccess setup';
24$lang['subdomain setup'] = 'Subdomain setup';
25$lang['animal subdomain'] = 'Animal subdomain';
26$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?';
27$lang['bulkEdit'] = 'Bulk edit all animals';
28$lang['singleEdit'] = 'Edit a single animal';
29$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals';
30$lang['activate'] = 'Activate';
31$lang['deactivate'] = 'Deactivate';
32$lang['singleEditForm'] = 'Edit the plugins of a specific animal';
33$lang['submit'] = 'Submit';
34$lang['reset'] = 'Reset';
35$lang['js']['submit'] = $lang['submit'];
36$lang['js']['reset'] = $lang['reset'];
37$lang['animal name'] = 'Animal name';
38$lang['htaccess_basedir'] = 'Enter the path to the above-entered farm directory relativ to the server root:';
39
40// input placeholders
41$lang['js']['animalSelect'] = 'Select an animal';
42$lang['js']['pluginSelect'] = 'Select a plugin';
43$lang['animal name placeholder'] = 'Animal name';
44$lang['animal subdomain placeholder'] = 'Animal subdomain';
45$lang['admin password placeholder'] = 'Password';
46
47// success messages
48$lang['animal creation success'] = 'The animal "%s" has been successfully created.';
49$lang['animal creation error'] = 'The animal "%s" has been successfully created.';
50$lang['preload creation success'] = 'inc/preload.php has been succesfully created.';
51$lang['preload creation error'] = 'There was an error creating inc/preload.php.';
52$lang['js']['animal ajax success'] = 'Ajax request to the new animal was successful.';
53$lang['js']['preload ajax success'] = 'Ajax request to a non-existing animal was correctly served by the farmer.';
54
55// info messages
56$lang['overwrite_preload'] = 'by creating a new preload.php here, your current configuration will be overwritten';
57
58// error messages
59$lang['htaccess_basedir_missing'] = 'Please enter the <a href="https://www.dokuwiki.org/config:basedir">basedir</a>';
60$lang['animalname_missing'] = 'Please enter a name for the new animal.';
61$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).';
62$lang['animalname_preexisting'] = 'An animal with that name already exists.';
63$lang['adminsetup_missing'] = 'Choose an admin for the new animal.';
64$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.';
65$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.';
66$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.';
67$lang['animalsubdomain_invalid'] = 'Please enter a valid domain without underscores.';
68$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.';
69$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.';
70$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.';
71$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?';
72$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory';
73$lang['farmdir_notEmpty'] = 'The farm directory must be empty.';
74$lang['js']['animal ajax failure'] = 'Ajax request to the new animal failed. Please check your server setup.';
75$lang['js']['preload ajax failure'] = 'Ajax request to a non-existing animal was not served by the farmer. Please check your server setup.';
76//Setup VIM: ex: et ts=4 :
77
78