xref: /plugin/farmer/lang/en/lang.php (revision 23164e01e36ef4d06247e9922b181e0e7f98bbaa)
1<?php
2/**
3 * English language file for farmer plugin
4 *
5 * @author Michael Große <grosse@cosmocode.de>
6 * @author Andreas Gohr <gohr@cosmocode.de>
7 */
8
9// menu entry for admin plugins
10$lang['menu'] = 'Farming';
11
12// tabs
13$lang['tab_setup'] = 'Farm Setup';
14$lang['tab_info'] = 'Info';
15$lang['tab_config'] = 'Configuration';
16$lang['tab_plugins'] = 'Manage Plugins';
17$lang['tab_new'] = 'Add new Animal';
18
19// setup
20$lang['preloadPHPForm'] = 'Initialize Farming';
21$lang['farm dir'] = 'Animal directory';
22$lang['htaccess setup'] = 'Add farm code to .htaccess?';
23$lang['submit'] = 'Submit';
24$lang['farmdir_missing'] = 'Please enter a directory where the Animals should be stored.';
25$lang['farmdir_in_dokuwiki'] = 'The Animal directory must outside of the Farm dokuwiki.';
26$lang['farmdir_uncreatable'] = 'The Animal directory could not be created. Are the permissions correct?';
27$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the Animal directory!';
28$lang['farmdir_notEmpty'] = 'The Animal directory must be empty.';
29$lang['preload creation success'] = 'Farming has been succesfully initialized.';
30$lang['preload creation error'] = 'There was an error during Farming initialization.';
31$lang['overwrite_preload'] = 'Warning: Your existing inc/preload.php will be overwritten when continuing here!';
32
33// info
34$lang['animal'] = 'Animal Name / Domain';
35$lang['thisis'] = 'Instance is';
36$lang['thisis.farmer'] = 'The farmer!';
37$lang['thisis.animal'] = 'An animal!';
38$lang['baseinstall'] = 'Farmer Install';
39$lang['animals'] = 'Animals';
40$lang['confdir'] = 'Instance Configuration Directory';
41$lang['savedir'] = 'Instance Data Directory';
42
43// config
44$lang['base'] = 'Base Configuration';
45$lang['farm host'] = 'Farmer Host Name';
46$lang['base domain'] = 'Base Domain for subdomain animals';
47$lang['conf_inherit'] = 'Farmer Settings Animals should inherit';
48$lang['conf_inherit_main'] = 'Configuration Settings';
49$lang['conf_inherit_acronyms'] = 'Acronym Definitions';
50$lang['conf_inherit_entities'] = 'Entity Definitions';
51$lang['conf_inherit_interwiki'] = 'Interwiki Definitions';
52$lang['conf_inherit_license'] = 'License Definitions';
53$lang['conf_inherit_mime'] = 'MIME Type Definitions';
54$lang['conf_inherit_scheme'] = 'URL Scheme Definitions';
55$lang['conf_inherit_smileys'] = 'Smiley Definitions';
56$lang['conf_inherit_wordblock'] = 'Spam Blacklist Entries';
57$lang['conf_inherit_userstyle'] = 'User Styles';
58$lang['conf_inherit_users'] = 'Users (Plain Auth only)';
59$lang['conf_inherit_userscript'] = 'User Scripts';
60$lang['conf_inherit_yes'] = 'inherited from farmer';
61$lang['conf_inherit_no'] = 'independent from farmer';
62$lang['conf_notfound'] = 'Behavior on accessing nonexistent Animals';
63$lang['conf_notfound_farmer'] = 'Show the farmer wiki';
64$lang['conf_notfound_404'] = 'Show a 404 error page';
65$lang['conf_notfound_list'] = 'Show a list of available animals';
66$lang['conf_notfound_redirect'] = 'Redirect to the URL below';
67$lang['conf_notfound_url'] = 'URL to redirect to if selected above';
68$lang['save'] = 'Save';
69
70// new
71$lang['animal creation success'] = 'The animal "%s" has been successfully created.';
72$lang['animal creation error'] = 'There was an error while creating the animal.';
73$lang['animal configuration'] = 'Basic animal configuration';
74$lang['animal administrator'] = 'Animal administrator';
75$lang['noUsers'] = 'Do not create any users (rely on user inherit config only)';
76$lang['importUsers'] = 'Import all users of the Farmer to the new Animal';
77$lang['currentAdmin'] = 'Set the current user as admin';
78$lang['newAdmin'] = 'Create new admin user "admin"';
79$lang['admin password'] = 'Password for the new admin';
80$lang['animalname_missing'] = 'Please enter a name for the new animal.';
81$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).';
82$lang['animalname_preexisting'] = 'An animal with that name already exists.';
83$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.';
84
85// plugins
86$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?';
87$lang['bulkEdit'] = 'Bulk edit all animals';
88$lang['singleEdit'] = 'Edit a single animal';
89$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals';
90$lang['activate'] = 'Activate';
91$lang['deactivate'] = 'Deactivate';
92$lang['singleEditForm'] = 'Edit the plugins of a specific animal';
93$lang['js']['animalSelect'] = 'Select an animal';
94$lang['js']['pluginSelect'] = 'Select a plugin';
95$lang['js']['submit'] = 'Submit';
96$lang['js']['reset'] = 'Reset';
97
98//Setup VIM: ex: et ts=4 :
99