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'; 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 50// info messages 51$lang['overwrite_preload'] = 'by creating a new preload.php here, your current configuration will be overwritten'; 52 53// error messages 54$lang['htaccess_basedir_missing'] = 'Please enter the <a href="https://www.dokuwiki.org/config:basedir">basedir</a>'; 55$lang['animalname_missing'] = 'Please enter a name for the new animal.'; 56$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).'; 57$lang['animalname_preexisting'] = 'An animal with that name already exists.'; 58$lang['adminsetup_missing'] = 'Choose an admin for the new animal.'; 59$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.'; 60$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.'; 61$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.'; 62$lang['animalsubdomain_invalid'] = 'Please enter a valid domain without underscores.'; 63$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.'; 64$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.'; 65$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.'; 66$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?'; 67$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory'; 68$lang['farmdir_notEmpty'] = 'The farm directory must be empty.'; 69//Setup VIM: ex: et ts=4 : 70 71