1<?php 2/** 3 * English language file for farmer plugin 4 * 5 * @author Michael Große <grosse@cosmocode.de> 6 * @author Andreas Gohr <gohr@cosmocode.de> 7 */ 8 9// menu entry for admin plugins 10$lang['menu'] = 'Farming'; 11 12// tabs 13$lang['tab_setup'] = 'Farm Setup'; 14$lang['tab_info'] = 'Info'; 15$lang['tab_config'] = 'Configuration'; 16$lang['tab_plugins'] = 'Manage Plugins'; 17$lang['tab_new'] = 'Add new Animal'; 18 19// setup 20$lang['preloadPHPForm'] = 'Initialize Farming'; 21$lang['farm dir'] = 'Animal directory'; 22$lang['htaccess setup'] = 'Add farm code to .htaccess?'; 23$lang['submit'] = 'Submit'; 24$lang['farmdir_missing'] = 'Please enter a directory where the Animals should be stored.'; 25$lang['farmdir_in_dokuwiki'] = 'The Animal directory must outside of the Farm dokuwiki.'; 26$lang['farmdir_uncreatable'] = 'The Animal directory could not be created. Are the permissions correct?'; 27$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the Animal directory!'; 28$lang['farmdir_notEmpty'] = 'The Animal directory must be empty.'; 29$lang['preload creation success'] = 'Farming has been succesfully initialized.'; 30$lang['preload creation error'] = 'There was an error during Farming initialization.'; 31$lang['overwrite_preload'] = 'Warning: Your existing inc/preload.php will be overwritten when continuing here!'; 32 33// info 34$lang['animal'] = 'Animal Name / Domain'; 35$lang['thisis'] = 'Instance is'; 36$lang['thisis.farmer'] = 'The farmer!'; 37$lang['thisis.animal'] = 'An animal!'; 38$lang['baseinstall'] = 'Farmer Install'; 39$lang['animals'] = 'Animals'; 40$lang['confdir'] = 'Instance Configuration Directory'; 41$lang['savedir'] = 'Instance Data Directory'; 42 43// config 44$lang['base'] = 'Base Configuration'; 45$lang['farm host'] = 'Farmer Host Name'; 46$lang['base domain'] = 'Base Domain for subdomain animals'; 47$lang['conf_inherit'] = 'Farmer Settings Animals should inherit'; 48$lang['conf_inherit_main'] = 'Configuration Settings'; 49$lang['conf_inherit_acronyms'] = 'Acronym Definitions'; 50$lang['conf_inherit_entities'] = 'Entity Definitions'; 51$lang['conf_inherit_interwiki'] = 'Interwiki Definitions'; 52$lang['conf_inherit_license'] = 'License Definitions'; 53$lang['conf_inherit_mime'] = 'MIME Type Definitions'; 54$lang['conf_inherit_scheme'] = 'URL Scheme Definitions'; 55$lang['conf_inherit_smileys'] = 'Smiley Definitions'; 56$lang['conf_inherit_wordblock'] = 'Spam Blacklist Entries'; 57$lang['conf_inherit_userstyle'] = 'User Styles'; 58$lang['conf_inherit_users'] = 'Users (Plain Auth only)'; 59$lang['conf_inherit_userscript'] = 'User Scripts'; 60$lang['conf_inherit_yes'] = 'inherited from farmer'; 61$lang['conf_inherit_no'] = 'independent from farmer'; 62$lang['conf_notfound'] = 'Behavior on accessing nonexistent Animals'; 63$lang['conf_notfound_farmer'] = 'Show the farmer wiki'; 64$lang['conf_notfound_404'] = 'Show a 404 error page'; 65$lang['conf_notfound_list'] = 'Show a list of available animals'; 66$lang['conf_notfound_redirect'] = 'Redirect to the URL below'; 67$lang['conf_notfound_url'] = 'URL to redirect to if selected above'; 68$lang['save'] = 'Save'; 69 70// new 71$lang['animal template'] = 'Copy existing animal'; 72$lang['animal creation success'] = 'The animal "%s" has been successfully created.'; 73$lang['animal creation error'] = 'There was an error while creating the animal.'; 74$lang['animal configuration'] = 'Basic animal configuration'; 75$lang['animal administrator'] = 'Animal administrator'; 76$lang['noUsers'] = 'Do not create any users (rely on user inherit config only)'; 77$lang['importUsers'] = 'Import all users of the Farmer to the new Animal'; 78$lang['currentAdmin'] = 'Set the current user as admin'; 79$lang['newAdmin'] = 'Create new admin user "admin"'; 80$lang['admin password'] = 'Password for the new admin'; 81$lang['animalname_missing'] = 'Please enter a name for the new animal.'; 82$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).'; 83$lang['animalname_preexisting'] = 'An animal with that name already exists.'; 84$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.'; 85$lang['animal template copy error'] = 'There was a problem copying %s from the existing Animal to the new one.'; 86 87// plugins 88$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?'; 89$lang['bulkEdit'] = 'Bulk edit all animals'; 90$lang['singleEdit'] = 'Edit a single animal'; 91$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals'; 92$lang['activate'] = 'Activate'; 93$lang['deactivate'] = 'Deactivate'; 94$lang['singleEditForm'] = 'Edit the plugins of a specific animal'; 95$lang['js']['animalSelect'] = 'Select an animal'; 96$lang['js']['pluginSelect'] = 'Select a plugin'; 97$lang['js']['submit'] = 'Submit'; 98$lang['js']['reset'] = 'Reset'; 99 100//Setup VIM: ex: et ts=4 : 101