xref: /plugin/farmer/lang/en/lang.php (revision 68253499c6e971ee5a6512fcf199cf0c048ec10d)
1bc461538SMichael Große<?php
2bc461538SMichael Große/**
3bc461538SMichael Große * English language file for farmer plugin
4bc461538SMichael Große *
5bc461538SMichael Große * @author Michael Große <grosse@cosmocode.de>
6bc461538SMichael Große */
7bc461538SMichael Große
8bc461538SMichael Große// menu entry for admin plugins
9fc6a7cc1SMichael Große$lang['menu'] = 'Farmer: Add new animal';
10bc461538SMichael Große
11*68253499SMichael Große$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*68253499SMichael Große
13fc6a7cc1SMichael Große//labels
14ef6f20faSMichael Große$lang['preloadPHPForm'] = 'Create a new preload.php';
1519368639SMichael Große$lang['farm dir'] = 'farm dir';
16ef6f20faSMichael Große$lang['animal configuration'] = 'Basic animal configuration';
17fc6a7cc1SMichael Große$lang['admin password'] = 'Password for the new admin';
18ef6f20faSMichael Große$lang['animal administrator'] = 'Animal administrator';
19ef6f20faSMichael Große$lang['importUsers'] = 'Import all users of the master wiki to the new animal';
20fc6a7cc1SMichael Große$lang['currentAdmin'] = 'Set the current user as admin';
21fc6a7cc1SMichael Große$lang['newAdmin'] = 'Create new admin user "admin"';
22ef6f20faSMichael Große$lang['server configuration'] = 'Server configuration';
23fc6a7cc1SMichael Große$lang['htaccess setup'] = 'htaccess setup';
24fc6a7cc1SMichael Große$lang['subdomain setup'] = 'Subdomain setup';
25ef6f20faSMichael Große$lang['animal subdomain'] = 'Animal subdomain';
26fc6a7cc1SMichael Große$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?';
27ef6f20faSMichael Große$lang['bulkEdit'] = 'Bulk edit all animals';
28ef6f20faSMichael Große$lang['singleEdit'] = 'Edit a single animal';
29fc6a7cc1SMichael Große$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals';
30fc6a7cc1SMichael Große$lang['activate'] = 'Activate';
31fc6a7cc1SMichael Große$lang['deactivate'] = 'Deactivate';
32ef6f20faSMichael Große$lang['singleEditForm'] = 'Edit the plugins of a specific animal';
33fc6a7cc1SMichael Große$lang['submit'] = 'Submit';
34fc6a7cc1SMichael Große$lang['reset'] = 'Reset';
359ed791b7SMichael Große$lang['js']['submit'] = $lang['submit'];
369ed791b7SMichael Große$lang['js']['reset'] = $lang['reset'];
37ef6f20faSMichael Große$lang['animal name'] = 'Animal name';
380495d2a2SMichael Große$lang['htaccess_basedir'] = 'Enter the path to the above-entered farm dir relativ to the server root:';
39bc461538SMichael Große
40fc6a7cc1SMichael Große// input placeholders
41fc6a7cc1SMichael Große$lang['js']['animalSelect'] = 'Select an animal';
42fc6a7cc1SMichael Große$lang['js']['pluginSelect'] = 'Select a plugin';
43ef6f20faSMichael Große$lang['animal name placeholder'] = 'Animal name';
44ef6f20faSMichael Große$lang['animal subdomain placeholder'] = 'Animal subdomain';
45ef6f20faSMichael Große$lang['admin password placeholder'] = 'Password';
46bc461538SMichael Große
4719368639SMichael Große// success messages
4819368639SMichael Große$lang['animal creation success'] = 'The animal "%s" has been successfully created';
4919368639SMichael Große
50d9ec4524SMichael Große// info messages
51d9ec4524SMichael Große$lang['overwrite_preload'] = 'by creating a new preload.php here, your current configuration will be overwritten';
52d9ec4524SMichael Große
53fc6a7cc1SMichael Große// error messages
540495d2a2SMichael Große$lang['htaccess_basedir_missing'] = 'Please enter the <a href="https://www.dokuwiki.org/config:basedir">basedir</a>';
55fc6a7cc1SMichael Große$lang['animalname_missing'] = 'Please enter a name for the new animal.';
56fc6a7cc1SMichael Große$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).';
5719368639SMichael Große$lang['animalname_preexisting'] = 'An animal with that name already exists.';
58fc6a7cc1SMichael Große$lang['adminsetup_missing'] = 'Choose an admin for the new animal.';
59fc6a7cc1SMichael Große$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.';
60fc6a7cc1SMichael Große$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.';
61fc6a7cc1SMichael Große$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.';
62fc6a7cc1SMichael Große$lang['animalsubdomain_invalid'] = 'Please enter a valid domain without underscores.';
6319368639SMichael Große$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.';
6419368639SMichael Große$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.';
6519368639SMichael Große$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.';
6619368639SMichael Große$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?';
6719368639SMichael Große$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory';
68efa7af45SMichael Große$lang['farmdir_notEmpty'] = 'The farm directory must be empty.';
69bc461538SMichael Große//Setup VIM: ex: et ts=4 :
70ef6f20faSMichael Große
71