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$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//labels 14$lang['preloadPHPForm'] = 'Create a new preload.php'; 15$lang['farm dir'] = 'farm dir'; 16$lang['animal configuration'] = 'Basic animal configuration'; 17$lang['admin password'] = 'Password for the new admin'; 18$lang['animal administrator'] = 'Animal administrator'; 19$lang['importUsers'] = 'Import all users of the master wiki to the new animal'; 20$lang['currentAdmin'] = 'Set the current user as admin'; 21$lang['newAdmin'] = 'Create new admin user "admin"'; 22$lang['server configuration'] = 'Server configuration'; 23$lang['htaccess setup'] = 'htaccess setup'; 24$lang['subdomain setup'] = 'Subdomain setup'; 25$lang['animal subdomain'] = 'Animal subdomain'; 26$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?'; 27$lang['bulkEdit'] = 'Bulk edit all animals'; 28$lang['singleEdit'] = 'Edit a single animal'; 29$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals'; 30$lang['activate'] = 'Activate'; 31$lang['deactivate'] = 'Deactivate'; 32$lang['singleEditForm'] = 'Edit the plugins of a specific animal'; 33$lang['submit'] = 'Submit'; 34$lang['reset'] = 'Reset'; 35$lang['js']['submit'] = $lang['submit']; 36$lang['js']['reset'] = $lang['reset']; 37$lang['animal name'] = 'Animal name / Wiki Title'; 38$lang['htaccess_basedir'] = 'Enter the path to the above-entered farm directory relativ to the server root:'; 39 40// input placeholders 41$lang['js']['animalSelect'] = 'Select an animal'; 42$lang['js']['pluginSelect'] = 'Select a plugin'; 43$lang['animal name placeholder'] = 'Animal name'; 44$lang['animal subdomain placeholder'] = 'Animal subdomain'; 45$lang['admin password placeholder'] = 'Password'; 46 47// success messages 48$lang['animal creation success'] = 'The animal "%s" has been successfully created.'; 49$lang['animal creation error'] = 'There was an error while creating the animal.'; 50$lang['preload creation success'] = 'inc/preload.php has been succesfully created.'; 51$lang['preload creation error'] = 'There was an error while creating inc/preload.php.'; 52$lang['js']['animal ajax success'] = 'Ajax request to the new animal was successful.'; 53$lang['js']['preload ajax success'] = 'Ajax request to a non-existing animal was correctly served by the farmer.'; 54 55// info messages 56$lang['overwrite_preload'] = 'by creating a new preload.php here, your current configuration will be overwritten'; 57 58// error messages 59$lang['htaccess_basedir_missing'] = 'Please enter the <a href="https://www.dokuwiki.org/config:basedir">basedir</a>'; 60$lang['animalname_missing'] = 'Please enter a name for the new animal.'; 61$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).'; 62$lang['animalname_preexisting'] = 'An animal with that name already exists.'; 63$lang['adminsetup_missing'] = 'Choose an admin for the new animal.'; 64$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.'; 65$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.'; 66$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.'; 67$lang['animalsubdomain_invalid'] = 'Please enter a valid subdomain (FQDN) without underscores.'; 68$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.'; 69$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.'; 70$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.'; 71$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?'; 72$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory'; 73$lang['farmdir_notEmpty'] = 'The farm directory must be empty.'; 74$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.'; 75$lang['js']['preload ajax failure'] = $lang['get request failure']; 76$lang['js']['animal ajax failure'] = $lang['get request failure']; 77//Setup VIM: ex: et ts=4 : 78 79