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//labels 12$lang['preloadPHPForm'] = 'Create a new preload.php'; 13$lang['farm dir'] = 'farm dir'; 14$lang['animal configuration'] = 'Basic animal configuration'; 15$lang['admin password'] = 'Password for the new admin'; 16$lang['animal administrator'] = 'Animal administrator'; 17$lang['importUsers'] = 'Import all users of the master wiki to the new animal'; 18$lang['currentAdmin'] = 'Set the current user as admin'; 19$lang['newAdmin'] = 'Create new admin user "admin"'; 20$lang['server configuration'] = 'Server configuration'; 21$lang['htaccess setup'] = 'htaccess setup'; 22$lang['subdomain setup'] = 'Subdomain setup'; 23$lang['animal subdomain'] = 'Animal subdomain'; 24$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?'; 25$lang['bulkEdit'] = 'Bulk edit all animals'; 26$lang['singleEdit'] = 'Edit a single animal'; 27$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals'; 28$lang['activate'] = 'Activate'; 29$lang['deactivate'] = 'Deactivate'; 30$lang['singleEditForm'] = 'Edit the plugins of a specific animal'; 31$lang['submit'] = 'Submit'; 32$lang['reset'] = 'Reset'; 33$lang['animal name'] = 'Animal name'; 34 35// input placeholders 36$lang['js']['animalSelect'] = 'Select an animal'; 37$lang['js']['pluginSelect'] = 'Select a plugin'; 38$lang['animal name placeholder'] = 'Animal name'; 39$lang['animal subdomain placeholder'] = 'Animal subdomain'; 40$lang['admin password placeholder'] = 'Password'; 41 42// success messages 43$lang['animal creation success'] = 'The animal "%s" has been successfully created'; 44 45// error messages 46$lang['animalname_missing'] = 'Please enter a name for the new animal.'; 47$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).'; 48$lang['animalname_preexisting'] = 'An animal with that name already exists.'; 49$lang['adminsetup_missing'] = 'Choose an admin for the new animal.'; 50$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.'; 51$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.'; 52$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.'; 53$lang['animalsubdomain_invalid'] = 'Please enter a valid domain without underscores.'; 54$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.'; 55$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.'; 56$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.'; 57$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?'; 58$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory'; 59$lang['farmdir_notEmpty'] = 'The farm directory must be empty.'; 60//Setup VIM: ex: et ts=4 : 61 62