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