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$lang['tab_delete'] = 'Delete Animal'; 19 20// setup 21$lang['preloadPHPForm'] = 'Initialize Farming'; 22$lang['farm dir'] = 'Animal directory'; 23$lang['htaccess setup'] = 'Add farm code to .htaccess?'; 24$lang['submit'] = 'Submit'; 25$lang['farmdir_missing'] = 'Please enter a directory where the Animals should be stored.'; 26$lang['farmdir_in_dokuwiki'] = 'The Animal directory (%s) must be outside of the Farm dokuwiki (%s).'; 27$lang['farmdir_uncreatable'] = 'The Animal directory (%s) could not be created. Are the permissions correct?'; 28$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the Animal directory (%s)!'; 29$lang['farmdir_notEmpty'] = 'The Animal directory (%s) must be empty.'; 30$lang['preload creation success'] = 'Farming has been succesfully initialized.'; 31$lang['preload creation error'] = 'There was an error during Farming initialization.'; 32$lang['overwrite_preload'] = 'Warning: Your existing inc/preload.php will be overwritten when continuing here!'; 33 34// info 35$lang['animal'] = 'Animal Name / Domain'; 36$lang['thisis'] = 'Instance is'; 37$lang['thisis.farmer'] = 'The farmer!'; 38$lang['thisis.animal'] = 'An Animal!'; 39$lang['baseinstall'] = 'Farmer Install'; 40$lang['animals'] = 'Animals'; 41$lang['confdir'] = 'Instance Configuration Directory'; 42$lang['savedir'] = 'Instance Data Directory'; 43$lang['plugins'] = 'Plugins active in this instance'; 44 45// config 46$lang['base'] = 'Base Configuration'; 47$lang['farm host'] = 'Farmer Host Name'; 48$lang['base domain'] = 'Base Domain for subdomain Animals'; 49$lang['conf_inherit'] = 'Farmer Settings Animals should inherit'; 50$lang['conf_inherit_main'] = 'Configuration Settings'; 51$lang['conf_inherit_acronyms'] = 'Acronym Definitions'; 52$lang['conf_inherit_entities'] = 'Entity Definitions'; 53$lang['conf_inherit_interwiki'] = 'Interwiki Definitions'; 54$lang['conf_inherit_license'] = 'License Definitions'; 55$lang['conf_inherit_mime'] = 'MIME Type Definitions'; 56$lang['conf_inherit_scheme'] = 'URL Scheme Definitions'; 57$lang['conf_inherit_smileys'] = 'Smiley Definitions'; 58$lang['conf_inherit_wordblock'] = 'Spam Blacklist Entries'; 59$lang['conf_inherit_userstyle'] = 'User Styles'; 60$lang['conf_inherit_userscript'] = 'User Scripts'; 61$lang['conf_inherit_styleini'] = 'Template style customizations'; 62$lang['conf_inherit_users'] = 'Users (Plain Auth only)'; 63$lang['conf_inherit_plugins'] = 'Plugin State'; 64$lang['conf_inherit_yes'] = 'inherited from farmer'; 65$lang['conf_inherit_no'] = 'independent from farmer'; 66$lang['conf_notfound'] = 'Behavior on accessing nonexistent Animals'; 67$lang['conf_notfound_farmer'] = 'Show the farmer wiki'; 68$lang['conf_notfound_404'] = 'Show a 404 error page'; 69$lang['conf_notfound_list'] = 'Show a list of available animals'; 70$lang['conf_notfound_redirect'] = 'Redirect to the URL below'; 71$lang['conf_notfound_url'] = 'URL to redirect to if selected above'; 72$lang['save'] = 'Save'; 73 74// new 75$lang['animal template'] = 'Copy existing Animal'; 76$lang['animal creation success'] = 'The Animal "%s" has been successfully created.'; 77$lang['animal creation error'] = 'There was an error while creating the Animal.'; 78$lang['animal configuration'] = 'Basic Animal configuration'; 79$lang['inherit user registration'] = 'Inherit user registration setting from farmer'; 80$lang['enable user registration'] = 'Allow users to register themselves'; 81$lang['disable user registration'] = 'Disable user register'; 82$lang['animal administrator'] = 'Animal administrator'; 83$lang['noUsers'] = 'Do not create any users'; 84$lang['importUsers'] = 'Import all users of the Farmer to the new Animal'; 85$lang['currentAdmin'] = 'Set the current user as admin'; 86$lang['newAdmin'] = 'Create new admin user "admin"'; 87$lang['admin password'] = 'Password for the new admin'; 88$lang['animalname_missing'] = 'Please enter a name for the new Animal.'; 89$lang['animalname_invalid'] = 'The Animal name may only contain alphanumeric characters and dots/hyphens (but not as first or last character).'; 90$lang['animalname_preexisting'] = 'An Animal with that name already exists.'; 91$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.'; 92$lang['animal template copy error'] = 'There was a problem copying %s from the existing Animal to the new one.'; 93$lang['aclpolicy missing/bad'] = 'Please choose an initial ACL policy from the dropdown.'; 94 95// plugins 96$lang['bulkSingleSwitcher'] = 'Edit a single Animal or all at once?'; 97$lang['bulkEdit'] = 'Bulk edit all Animals'; 98$lang['singleEdit'] = 'Edit a single Animal'; 99$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all Animals'; 100$lang['matrixEdit'] = 'Edit Animal/Plugin matrix'; 101$lang['default'] = 'Set to default'; 102$lang['activate'] = 'Activate'; 103$lang['deactivate'] = 'Deactivate'; 104$lang['singleEditForm'] = 'Edit the plugins of a specific Animal'; 105$lang['plugindone'] = 'Plugin states updated'; 106$lang['plugin'] = 'Plugin'; 107$lang['plugin_on'] = 'on'; 108$lang['plugin_off'] = 'off'; 109$lang['plugin_default'] = 'Default'; 110$lang['plugin_enabled'] = 'Enabled'; 111$lang['plugin_disabled'] = 'Disabled'; 112$lang['js']['animalSelect'] = 'Select an animal'; 113$lang['js']['pluginSelect'] = 'Select a plugin'; 114$lang['disable_new_plugins'] = 'The plugin has been disabled by default. You can enable it here or in specific animals only.'; 115 116 117// delete 118$lang['delete_animal'] = 'Select Animal to delete'; 119$lang['delete_confirm'] = 'Please type the Animal name to confirm'; 120$lang['delete'] = 'Delete the Animal and all its data'; 121 122$lang['delete_noanimal'] = 'Please select an Animal to delete'; 123$lang['delete_mismatch'] = 'Confirmation does not match Animal name. Not deleted.'; 124$lang['delete_invalid'] = 'Invalid Animal name. Not deleted.'; 125$lang['delete_success'] = 'Animal successfully deleted.'; 126$lang['delete_fail'] = 'Some files could not be deleted, you should clean up manuallly.'; 127 128//Setup VIM: ex: et ts=4 : 129