xref: /plugin/farmer/lang/en/lang.php (revision ef6f20fa7572cc0a86d3caf3cacb8f42fa2fc12e)
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
12*ef6f20faSMichael Große$lang['preloadPHPForm'] = 'Create a new preload.php';
1319368639SMichael Große$lang['farm dir'] = 'farm dir';
14*ef6f20faSMichael Große$lang['animal configuration'] = 'Basic animal configuration';
15fc6a7cc1SMichael Große$lang['admin password'] = 'Password for the new admin';
16*ef6f20faSMichael Große$lang['animal administrator'] = 'Animal administrator';
17*ef6f20faSMichael 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"';
20*ef6f20faSMichael Große$lang['server configuration'] = 'Server configuration';
21fc6a7cc1SMichael Große$lang['htaccess setup'] = 'htaccess setup';
22fc6a7cc1SMichael Große$lang['subdomain setup'] = 'Subdomain setup';
23*ef6f20faSMichael Große$lang['animal subdomain'] = 'Animal subdomain';
24fc6a7cc1SMichael Große$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?';
25*ef6f20faSMichael Große$lang['bulkEdit'] = 'Bulk edit all animals';
26*ef6f20faSMichael 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';
30*ef6f20faSMichael Große$lang['singleEditForm'] = 'Edit the plugins of a specific animal';
31fc6a7cc1SMichael Große$lang['submit'] = 'Submit';
32fc6a7cc1SMichael Große$lang['reset'] = 'Reset';
33*ef6f20faSMichael Große$lang['animal name'] = 'Animal name';
34bc461538SMichael Große
35fc6a7cc1SMichael Große// input placeholders
36fc6a7cc1SMichael Große$lang['js']['animalSelect'] = 'Select an animal';
37fc6a7cc1SMichael Große$lang['js']['pluginSelect'] = 'Select a plugin';
38*ef6f20faSMichael Große$lang['animal name placeholder'] = 'Animal name';
39*ef6f20faSMichael Große$lang['animal subdomain placeholder'] = 'Animal subdomain';
40*ef6f20faSMichael Große$lang['admin password placeholder'] = 'Password';
41bc461538SMichael Große
4219368639SMichael Große// success messages
4319368639SMichael Große$lang['animal creation success'] = 'The animal "%s" has been successfully created';
4419368639SMichael Große
45fc6a7cc1SMichael Große// error messages
46fc6a7cc1SMichael Große$lang['animalname_missing'] = 'Please enter a name for the new animal.';
47fc6a7cc1SMichael Große$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).';
4819368639SMichael Große$lang['animalname_preexisting'] = 'An animal with that name already exists.';
49fc6a7cc1SMichael Große$lang['adminsetup_missing'] = 'Choose an admin for the new animal.';
50fc6a7cc1SMichael Große$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.';
51fc6a7cc1SMichael Große$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.';
52fc6a7cc1SMichael Große$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.';
53fc6a7cc1SMichael Große$lang['animalsubdomain_invalid'] = 'Please enter a valid domain without underscores.';
5419368639SMichael Große$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.';
5519368639SMichael Große$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.';
5619368639SMichael Große$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.';
5719368639SMichael Große$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?';
5819368639SMichael Große$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory';
59efa7af45SMichael Große$lang['farmdir_notEmpty'] = 'The farm directory must be empty.';
60bc461538SMichael Große//Setup VIM: ex: et ts=4 :
61*ef6f20faSMichael Große
62