xref: /plugin/farmer/lang/en/lang.php (revision 4d6fc85b7f5b87b5971ca4550dd9c738b31b0c4f)
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>
623164e01SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de>
7bc461538SMichael Große */
8bc461538SMichael Große
9bc461538SMichael Große// menu entry for admin plugins
10632c5618SAndreas Gohr$lang['menu'] = 'Farming';
11bc461538SMichael Große
12632c5618SAndreas Gohr// tabs
13632c5618SAndreas Gohr$lang['tab_setup'] = 'Farm Setup';
1423164e01SAndreas Gohr$lang['tab_info'] = 'Info';
15632c5618SAndreas Gohr$lang['tab_config'] = 'Configuration';
16632c5618SAndreas Gohr$lang['tab_plugins'] = 'Manage Plugins';
17632c5618SAndreas Gohr$lang['tab_new'] = 'Add new Animal';
1824f27905SAndreas Gohr$lang['tab_delete'] = 'Delete Animal';
19632c5618SAndreas Gohr
2023164e01SAndreas Gohr// setup
2123164e01SAndreas Gohr$lang['preloadPHPForm'] = 'Initialize Farming';
2223164e01SAndreas Gohr$lang['farm dir'] = 'Animal directory';
23c4c8e953SAndreas Gohr$lang['htaccess setup'] = 'Add farm code to .htaccess?';
24fc6a7cc1SMichael Große$lang['submit'] = 'Submit';
2523164e01SAndreas Gohr$lang['farmdir_missing'] = 'Please enter a directory where the Animals should be stored.';
2623164e01SAndreas Gohr$lang['farmdir_in_dokuwiki'] = 'The Animal directory must outside of the Farm dokuwiki.';
2723164e01SAndreas Gohr$lang['farmdir_uncreatable'] = 'The Animal directory could not be created. Are the permissions correct?';
2823164e01SAndreas Gohr$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the Animal directory!';
2923164e01SAndreas Gohr$lang['farmdir_notEmpty'] = 'The Animal directory must be empty.';
3023164e01SAndreas Gohr$lang['preload creation success'] = 'Farming has been succesfully initialized.';
3123164e01SAndreas Gohr$lang['preload creation error'] = 'There was an error during Farming initialization.';
3223164e01SAndreas Gohr$lang['overwrite_preload'] = 'Warning: Your existing inc/preload.php will be overwritten when continuing here!';
3349f2871cSAndreas Gohr
3423164e01SAndreas Gohr// info
3523164e01SAndreas Gohr$lang['animal'] = 'Animal Name / Domain';
36d8c083b7SAndreas Gohr$lang['thisis'] = 'Instance is';
37632c5618SAndreas Gohr$lang['thisis.farmer'] = 'The farmer!';
38*4d6fc85bSAndreas Gohr$lang['thisis.animal'] = 'An Animal!';
39632c5618SAndreas Gohr$lang['baseinstall'] = 'Farmer Install';
40632c5618SAndreas Gohr$lang['animals'] = 'Animals';
41d8c083b7SAndreas Gohr$lang['confdir'] = 'Instance Configuration Directory';
42d8c083b7SAndreas Gohr$lang['savedir'] = 'Instance Data Directory';
43632c5618SAndreas Gohr
44da0ae2c0SAndreas Gohr// config
4523164e01SAndreas Gohr$lang['base'] = 'Base Configuration';
4623164e01SAndreas Gohr$lang['farm host'] = 'Farmer Host Name';
47*4d6fc85bSAndreas Gohr$lang['base domain'] = 'Base Domain for subdomain Animals';
48da0ae2c0SAndreas Gohr$lang['conf_inherit'] = 'Farmer Settings Animals should inherit';
49da0ae2c0SAndreas Gohr$lang['conf_inherit_main'] = 'Configuration Settings';
50da0ae2c0SAndreas Gohr$lang['conf_inherit_acronyms'] = 'Acronym Definitions';
51da0ae2c0SAndreas Gohr$lang['conf_inherit_entities'] = 'Entity Definitions';
52da0ae2c0SAndreas Gohr$lang['conf_inherit_interwiki'] = 'Interwiki Definitions';
53da0ae2c0SAndreas Gohr$lang['conf_inherit_license'] = 'License Definitions';
54da0ae2c0SAndreas Gohr$lang['conf_inherit_mime'] = 'MIME Type Definitions';
55da0ae2c0SAndreas Gohr$lang['conf_inherit_scheme'] = 'URL Scheme Definitions';
56da0ae2c0SAndreas Gohr$lang['conf_inherit_smileys'] = 'Smiley Definitions';
57da0ae2c0SAndreas Gohr$lang['conf_inherit_wordblock'] = 'Spam Blacklist Entries';
58da0ae2c0SAndreas Gohr$lang['conf_inherit_userstyle'] = 'User Styles';
59da0ae2c0SAndreas Gohr$lang['conf_inherit_userscript'] = 'User Scripts';
60*4d6fc85bSAndreas Gohr$lang['conf_inherit_users'] = 'Users (Plain Auth only)';
619ea97f82SAndreas Gohr$lang['conf_inherit_yes'] = 'inherited from farmer';
629ea97f82SAndreas Gohr$lang['conf_inherit_no'] = 'independent from farmer';
63da0ae2c0SAndreas Gohr$lang['conf_notfound'] = 'Behavior on accessing nonexistent Animals';
64da0ae2c0SAndreas Gohr$lang['conf_notfound_farmer'] = 'Show the farmer wiki';
65da0ae2c0SAndreas Gohr$lang['conf_notfound_404'] = 'Show a 404 error page';
66da0ae2c0SAndreas Gohr$lang['conf_notfound_list'] = 'Show a list of available animals';
67da0ae2c0SAndreas Gohr$lang['conf_notfound_redirect'] = 'Redirect to the URL below';
68da0ae2c0SAndreas Gohr$lang['conf_notfound_url'] = 'URL to redirect to if selected above';
69da0ae2c0SAndreas Gohr$lang['save'] = 'Save';
70da0ae2c0SAndreas Gohr
7123164e01SAndreas Gohr// new
72*4d6fc85bSAndreas Gohr$lang['animal template'] = 'Copy existing Animal';
73*4d6fc85bSAndreas Gohr$lang['animal creation success'] = 'The Animal "%s" has been successfully created.';
74*4d6fc85bSAndreas Gohr$lang['animal creation error'] = 'There was an error while creating the Animal.';
75*4d6fc85bSAndreas Gohr$lang['animal configuration'] = 'Basic Animal configuration';
7623164e01SAndreas Gohr$lang['animal administrator'] = 'Animal administrator';
77c247a7edSAndreas Gohr$lang['noUsers'] = 'Do not create any users';
7823164e01SAndreas Gohr$lang['importUsers'] = 'Import all users of the Farmer to the new Animal';
7923164e01SAndreas Gohr$lang['currentAdmin'] = 'Set the current user as admin';
8023164e01SAndreas Gohr$lang['newAdmin'] = 'Create new admin user "admin"';
8123164e01SAndreas Gohr$lang['admin password'] = 'Password for the new admin';
82*4d6fc85bSAndreas Gohr$lang['animalname_missing'] = 'Please enter a name for the new Animal.';
83*4d6fc85bSAndreas Gohr$lang['animalname_invalid'] = 'The Animal name may only contain alphanumeric characters and dots/hyphens (but not as first or last character).';
84*4d6fc85bSAndreas Gohr$lang['animalname_preexisting'] = 'An Animal with that name already exists.';
85fc6a7cc1SMichael Große$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.';
86801ebaa1SAndreas Gohr$lang['animal template copy error'] = 'There was a problem copying %s from the existing Animal to the new one.';
87ef6f20faSMichael Große
8823164e01SAndreas Gohr// plugins
89*4d6fc85bSAndreas Gohr$lang['bulkSingleSwitcher'] = 'Edit a single Animal or all at once?';
90*4d6fc85bSAndreas Gohr$lang['bulkEdit'] = 'Bulk edit all Animals';
91*4d6fc85bSAndreas Gohr$lang['singleEdit'] = 'Edit a single Animal';
92*4d6fc85bSAndreas Gohr$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all Animals';
9323164e01SAndreas Gohr$lang['activate'] = 'Activate';
9423164e01SAndreas Gohr$lang['deactivate'] = 'Deactivate';
95*4d6fc85bSAndreas Gohr$lang['singleEditForm'] = 'Edit the plugins of a specific Animal';
9623164e01SAndreas Gohr$lang['js']['animalSelect'] = 'Select an animal';
9723164e01SAndreas Gohr$lang['js']['pluginSelect'] = 'Select a plugin';
9823164e01SAndreas Gohr$lang['js']['submit'] = 'Submit';
9923164e01SAndreas Gohr$lang['js']['reset'] = 'Reset';
10023164e01SAndreas Gohr
10124f27905SAndreas Gohr// delete
10224f27905SAndreas Gohr$lang['delete_animal'] = 'Select Animal to delete';
10324f27905SAndreas Gohr$lang['delete_confirm'] = 'Please type the Animal name to confirm';
10424f27905SAndreas Gohr$lang['delete'] = 'Delete the Animal and all its data';
10524f27905SAndreas Gohr
10624f27905SAndreas Gohr$lang['delete_noanimal'] = 'Please select an Animal to delete';
10724f27905SAndreas Gohr$lang['delete_mismatch'] = 'Confirmation does not match Animal name. Not deleted.';
10824f27905SAndreas Gohr$lang['delete_invalid'] = 'Invalid Animal name. Not deleted.';
10924f27905SAndreas Gohr$lang['delete_success'] = 'Animal successfully deleted.';
11024f27905SAndreas Gohr$lang['delete_fail'] = 'Some files could not be deleted, you should clean up manuallly.';
11124f27905SAndreas Gohr
11223164e01SAndreas Gohr//Setup VIM: ex: et ts=4 :
113