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['animal configuration'] = 'new animal configuration'; 13$lang['admin password'] = 'Password for the new admin'; 14$lang['animal administrator'] = 'animal administrator'; 15$lang['importUsers'] = 'import all users of the master wiki to the new animal'; 16$lang['currentAdmin'] = 'Set the current user as admin'; 17$lang['newAdmin'] = 'Create new admin user "admin"'; 18$lang['server configuration'] = 'server configuration'; 19$lang['htaccess setup'] = 'htaccess setup'; 20$lang['subdomain setup'] = 'Subdomain setup'; 21$lang['animal subdomain'] = 'animal subdomain'; 22$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?'; 23$lang['bulkEdit'] = 'bulk edit all animals'; 24$lang['singleEdit'] = 'edit a single animal'; 25$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals'; 26$lang['activate'] = 'Activate'; 27$lang['deactivate'] = 'Deactivate'; 28$lang['singleEditForm'] = 'edit the plugins of a specific animal'; 29$lang['submit'] = 'Submit'; 30$lang['reset'] = 'Reset'; 31 32// input placeholders 33$lang['js']['animalSelect'] = 'Select an animal'; 34$lang['js']['pluginSelect'] = 'Select a plugin'; 35 36// error messages 37$lang['animalname_missing'] = 'Please enter a name for the new animal.'; 38$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).'; 39$lang['adminsetup_missing'] = 'Choose an admin for the new animal.'; 40$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.'; 41$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.'; 42$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.'; 43$lang['animalsubdomain_invalid'] = 'Please enter a valid domain without underscores.'; 44 45//Setup VIM: ex: et ts=4 : 46