xref: /plugin/farmer/lang/en/lang.php (revision 19368639c0b1a107523a57e93ad3d4916e731a19)
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//labels
12$lang['preloadPHPForm'] = 'create a new preload.php';
13$lang['farm dir'] = 'farm dir';
14$lang['animal configuration'] = 'new animal configuration';
15$lang['admin password'] = 'Password for the new admin';
16$lang['animal administrator'] = 'animal administrator';
17$lang['importUsers'] = 'import all users of the master wiki to the new animal';
18$lang['currentAdmin'] = 'Set the current user as admin';
19$lang['newAdmin'] = 'Create new admin user "admin"';
20$lang['server configuration'] = 'server configuration';
21$lang['htaccess setup'] = 'htaccess setup';
22$lang['subdomain setup'] = 'Subdomain setup';
23$lang['animal subdomain'] = 'animal subdomain';
24$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?';
25$lang['bulkEdit'] = 'bulk edit all animals';
26$lang['singleEdit'] = 'edit a single animal';
27$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals';
28$lang['activate'] = 'Activate';
29$lang['deactivate'] = 'Deactivate';
30$lang['singleEditForm'] = 'edit the plugins of a specific animal';
31$lang['submit'] = 'Submit';
32$lang['reset'] = 'Reset';
33
34// input placeholders
35$lang['js']['animalSelect'] = 'Select an animal';
36$lang['js']['pluginSelect'] = 'Select a plugin';
37
38// success messages
39$lang['animal creation success'] = 'The animal "%s" has been successfully created';
40
41// error messages
42$lang['animalname_missing'] = 'Please enter a name for the new animal.';
43$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).';
44$lang['animalname_preexisting'] = 'An animal with that name already exists.';
45$lang['adminsetup_missing'] = 'Choose an admin for the new animal.';
46$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.';
47$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.';
48$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.';
49$lang['animalsubdomain_invalid'] = 'Please enter a valid domain without underscores.';
50$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.';
51$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.';
52$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.';
53$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?';
54$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory';
55
56//Setup VIM: ex: et ts=4 :
57