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'] = 'Farming'; 10 11$lang['subdomain_helptext_injection'] = 'If you are using the subdomain based approach you need to enter the subdomain under which the new subwiki will be reachable'; 12 13// tabs 14$lang['tab_info'] = 'Info'; 15$lang['tab_setup'] = 'Farm Setup'; 16$lang['tab_config'] = 'Configuration'; 17$lang['tab_plugins'] = 'Manage Plugins'; 18$lang['tab_new'] = 'Add new Animal'; 19 20//labels 21$lang['preloadPHPForm'] = 'Create a new preload.php'; 22$lang['base'] = 'Base Configuration'; 23$lang['farm dir'] = 'Animal Directory'; 24$lang['farm host'] = 'Farmer Host Name'; 25$lang['base domain'] = 'Base Domain for subdomain animals'; 26$lang['animal configuration'] = 'Basic animal configuration'; 27$lang['admin password'] = 'Password for the new admin'; 28$lang['animal administrator'] = 'Animal administrator'; 29$lang['importUsers'] = 'Import all users of the master wiki to the new animal'; 30$lang['currentAdmin'] = 'Set the current user as admin'; 31$lang['newAdmin'] = 'Create new admin user "admin"'; 32$lang['htaccess setup'] = 'Add farm code to .htaccess?'; 33$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?'; 34$lang['bulkEdit'] = 'Bulk edit all animals'; 35$lang['singleEdit'] = 'Edit a single animal'; 36$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals'; 37$lang['activate'] = 'Activate'; 38$lang['deactivate'] = 'Deactivate'; 39$lang['singleEditForm'] = 'Edit the plugins of a specific animal'; 40$lang['submit'] = 'Submit'; 41$lang['reset'] = 'Reset'; 42$lang['js']['submit'] = $lang['submit']; 43$lang['js']['reset'] = $lang['reset']; 44 45$lang['animal name'] = 'Animal Name / Domain'; 46 47$lang['htaccess_basedir'] = 'Enter the path to the above-entered farm directory relativ to the server root:'; 48 49$lang['animal'] = 'Animal Name'; 50$lang['thisis'] = 'Instance is'; 51$lang['thisis.farmer'] = 'The farmer!'; 52$lang['thisis.animal'] = 'An animal!'; 53$lang['baseinstall'] = 'Farmer Install'; 54$lang['animals'] = 'Animals'; 55$lang['confdir'] = 'Instance Configuration Directory'; 56$lang['savedir'] = 'Instance Data Directory'; 57 58// config 59$lang['conf_inherit'] = 'Farmer Settings Animals should inherit'; 60$lang['conf_inherit_main'] = 'Configuration Settings'; 61$lang['conf_inherit_acronyms'] = 'Acronym Definitions'; 62$lang['conf_inherit_entities'] = 'Entity Definitions'; 63$lang['conf_inherit_interwiki'] = 'Interwiki Definitions'; 64$lang['conf_inherit_license'] = 'License Definitions'; 65$lang['conf_inherit_mime'] = 'MIME Type Definitions'; 66$lang['conf_inherit_scheme'] = 'URL Scheme Definitions'; 67$lang['conf_inherit_smileys'] = 'Smiley Definitions'; 68$lang['conf_inherit_wordblock'] = 'Spam Blacklist Entries'; 69$lang['conf_inherit_userstyle'] = 'User Styles'; 70$lang['conf_inherit_userscript'] = 'User Scripts'; 71$lang['conf_inherit_yes'] = 'inherited from farmer'; 72$lang['conf_inherit_no'] = 'independent from farmer'; 73 74$lang['conf_notfound'] = 'Behavior on accessing nonexistent Animals'; 75$lang['conf_notfound_farmer'] = 'Show the farmer wiki'; 76$lang['conf_notfound_404'] = 'Show a 404 error page'; 77$lang['conf_notfound_list'] = 'Show a list of available animals'; 78$lang['conf_notfound_redirect'] = 'Redirect to the URL below'; 79$lang['conf_notfound_url'] = 'URL to redirect to if selected above'; 80 81$lang['save'] = 'Save'; 82 83// input placeholders 84$lang['js']['animalSelect'] = 'Select an animal'; 85$lang['js']['pluginSelect'] = 'Select a plugin'; 86$lang['animal name placeholder'] = 'Animal name'; 87$lang['animal subdomain placeholder'] = 'animal.wiki.example.com'; 88$lang['admin password placeholder'] = 'Password'; 89 90// success messages 91$lang['animal creation success'] = 'The animal "%s" has been successfully created.'; 92$lang['animal creation error'] = 'There was an error while creating the animal.'; 93$lang['preload creation success'] = 'inc/preload.php has been succesfully created.'; 94$lang['preload creation error'] = 'There was an error while creating inc/preload.php.'; 95$lang['js']['animal ajax success'] = 'Ajax request to the new animal was successful.'; 96$lang['js']['preload ajax success'] = 'Ajax request to a non-existing animal was correctly served by the farmer.'; 97 98// info messages 99$lang['overwrite_preload'] = 'Warning: Your existing inc/preload.php will be overwritten when continuing here!'; 100 101// error messages 102$lang['htaccess_basedir_missing'] = 'Please enter the <a href="https://www.dokuwiki.org/config:basedir">basedir</a>'; 103$lang['animalname_missing'] = 'Please enter a name for the new animal.'; 104$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).'; 105$lang['animalname_preexisting'] = 'An animal with that name already exists.'; 106$lang['adminsetup_missing'] = 'Choose an admin for the new animal.'; 107$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.'; 108$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.'; 109$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.'; 110$lang['animalsubdomain_invalid'] = 'Please enter a valid subdomain (FQDN) without underscores.'; 111$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.'; 112$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.'; 113$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.'; 114$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?'; 115$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory'; 116$lang['farmdir_notEmpty'] = 'The farm directory must be empty.'; 117$lang['get request failure'] = 'The specified domain name could not be verified to be part of this farm setup. This is most probably a DNS or web server misconfiguration. Please refer to the farm plugin documentation on how to setup (sub-)domain farms.'; 118$lang['js']['preload ajax failure'] = $lang['get request failure']; 119$lang['js']['animal ajax failure'] = $lang['get request failure']; 120//Setup VIM: ex: et ts=4 : 121 122