1bc461538SMichael Große<?php 2bc461538SMichael Große/** 3bc461538SMichael Große * English language file for farmer plugin 4bc461538SMichael Große * 5bc461538SMichael Große * @author Michael Große <grosse@cosmocode.de> 623164e01SAndreas Gohr * @author Andreas Gohr <gohr@cosmocode.de> 7bc461538SMichael Große */ 8bc461538SMichael Große 9bc461538SMichael Große// menu entry for admin plugins 10632c5618SAndreas Gohr$lang['menu'] = 'Farming'; 11bc461538SMichael Große 12632c5618SAndreas Gohr// tabs 13632c5618SAndreas Gohr$lang['tab_setup'] = 'Farm Setup'; 1423164e01SAndreas Gohr$lang['tab_info'] = 'Info'; 15632c5618SAndreas Gohr$lang['tab_config'] = 'Configuration'; 16632c5618SAndreas Gohr$lang['tab_plugins'] = 'Manage Plugins'; 17632c5618SAndreas Gohr$lang['tab_new'] = 'Add new Animal'; 18632c5618SAndreas Gohr 1923164e01SAndreas Gohr// setup 2023164e01SAndreas Gohr$lang['preloadPHPForm'] = 'Initialize Farming'; 2123164e01SAndreas Gohr$lang['farm dir'] = 'Animal directory'; 22c4c8e953SAndreas Gohr$lang['htaccess setup'] = 'Add farm code to .htaccess?'; 23fc6a7cc1SMichael Große$lang['submit'] = 'Submit'; 2423164e01SAndreas Gohr$lang['farmdir_missing'] = 'Please enter a directory where the Animals should be stored.'; 2523164e01SAndreas Gohr$lang['farmdir_in_dokuwiki'] = 'The Animal directory must outside of the Farm dokuwiki.'; 2623164e01SAndreas Gohr$lang['farmdir_uncreatable'] = 'The Animal directory could not be created. Are the permissions correct?'; 2723164e01SAndreas Gohr$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the Animal directory!'; 2823164e01SAndreas Gohr$lang['farmdir_notEmpty'] = 'The Animal directory must be empty.'; 2923164e01SAndreas Gohr$lang['preload creation success'] = 'Farming has been succesfully initialized.'; 3023164e01SAndreas Gohr$lang['preload creation error'] = 'There was an error during Farming initialization.'; 3123164e01SAndreas Gohr$lang['overwrite_preload'] = 'Warning: Your existing inc/preload.php will be overwritten when continuing here!'; 3249f2871cSAndreas Gohr 3323164e01SAndreas Gohr// info 3423164e01SAndreas Gohr$lang['animal'] = 'Animal Name / Domain'; 35d8c083b7SAndreas Gohr$lang['thisis'] = 'Instance is'; 36632c5618SAndreas Gohr$lang['thisis.farmer'] = 'The farmer!'; 37632c5618SAndreas Gohr$lang['thisis.animal'] = 'An animal!'; 38632c5618SAndreas Gohr$lang['baseinstall'] = 'Farmer Install'; 39632c5618SAndreas Gohr$lang['animals'] = 'Animals'; 40d8c083b7SAndreas Gohr$lang['confdir'] = 'Instance Configuration Directory'; 41d8c083b7SAndreas Gohr$lang['savedir'] = 'Instance Data Directory'; 42632c5618SAndreas Gohr 43da0ae2c0SAndreas Gohr// config 4423164e01SAndreas Gohr$lang['base'] = 'Base Configuration'; 4523164e01SAndreas Gohr$lang['farm host'] = 'Farmer Host Name'; 4623164e01SAndreas Gohr$lang['base domain'] = 'Base Domain for subdomain animals'; 47da0ae2c0SAndreas Gohr$lang['conf_inherit'] = 'Farmer Settings Animals should inherit'; 48da0ae2c0SAndreas Gohr$lang['conf_inherit_main'] = 'Configuration Settings'; 49da0ae2c0SAndreas Gohr$lang['conf_inherit_acronyms'] = 'Acronym Definitions'; 50da0ae2c0SAndreas Gohr$lang['conf_inherit_entities'] = 'Entity Definitions'; 51da0ae2c0SAndreas Gohr$lang['conf_inherit_interwiki'] = 'Interwiki Definitions'; 52da0ae2c0SAndreas Gohr$lang['conf_inherit_license'] = 'License Definitions'; 53da0ae2c0SAndreas Gohr$lang['conf_inherit_mime'] = 'MIME Type Definitions'; 54da0ae2c0SAndreas Gohr$lang['conf_inherit_scheme'] = 'URL Scheme Definitions'; 55da0ae2c0SAndreas Gohr$lang['conf_inherit_smileys'] = 'Smiley Definitions'; 56da0ae2c0SAndreas Gohr$lang['conf_inherit_wordblock'] = 'Spam Blacklist Entries'; 57da0ae2c0SAndreas Gohr$lang['conf_inherit_userstyle'] = 'User Styles'; 581272da0cSAndreas Gohr$lang['conf_inherit_users'] = 'Users (Plain Auth only)'; 59da0ae2c0SAndreas Gohr$lang['conf_inherit_userscript'] = 'User Scripts'; 609ea97f82SAndreas Gohr$lang['conf_inherit_yes'] = 'inherited from farmer'; 619ea97f82SAndreas Gohr$lang['conf_inherit_no'] = 'independent from farmer'; 62da0ae2c0SAndreas Gohr$lang['conf_notfound'] = 'Behavior on accessing nonexistent Animals'; 63da0ae2c0SAndreas Gohr$lang['conf_notfound_farmer'] = 'Show the farmer wiki'; 64da0ae2c0SAndreas Gohr$lang['conf_notfound_404'] = 'Show a 404 error page'; 65da0ae2c0SAndreas Gohr$lang['conf_notfound_list'] = 'Show a list of available animals'; 66da0ae2c0SAndreas Gohr$lang['conf_notfound_redirect'] = 'Redirect to the URL below'; 67da0ae2c0SAndreas Gohr$lang['conf_notfound_url'] = 'URL to redirect to if selected above'; 68da0ae2c0SAndreas Gohr$lang['save'] = 'Save'; 69da0ae2c0SAndreas Gohr 7023164e01SAndreas Gohr// new 71801ebaa1SAndreas Gohr$lang['animal template'] = 'Copy existing animal'; 72d6737b72SMichael Große$lang['animal creation success'] = 'The animal "%s" has been successfully created.'; 7329b841f5SMichael Große$lang['animal creation error'] = 'There was an error while creating the animal.'; 7423164e01SAndreas Gohr$lang['animal configuration'] = 'Basic animal configuration'; 7523164e01SAndreas Gohr$lang['animal administrator'] = 'Animal administrator'; 76*c247a7edSAndreas Gohr$lang['noUsers'] = 'Do not create any users'; 7723164e01SAndreas Gohr$lang['importUsers'] = 'Import all users of the Farmer to the new Animal'; 7823164e01SAndreas Gohr$lang['currentAdmin'] = 'Set the current user as admin'; 7923164e01SAndreas Gohr$lang['newAdmin'] = 'Create new admin user "admin"'; 8023164e01SAndreas Gohr$lang['admin password'] = 'Password for the new admin'; 81fc6a7cc1SMichael Große$lang['animalname_missing'] = 'Please enter a name for the new animal.'; 82fc6a7cc1SMichael Große$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).'; 8319368639SMichael Große$lang['animalname_preexisting'] = 'An animal with that name already exists.'; 84fc6a7cc1SMichael Große$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.'; 85801ebaa1SAndreas Gohr$lang['animal template copy error'] = 'There was a problem copying %s from the existing Animal to the new one.'; 86ef6f20faSMichael Große 8723164e01SAndreas Gohr// plugins 8823164e01SAndreas Gohr$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?'; 8923164e01SAndreas Gohr$lang['bulkEdit'] = 'Bulk edit all animals'; 9023164e01SAndreas Gohr$lang['singleEdit'] = 'Edit a single animal'; 9123164e01SAndreas Gohr$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals'; 9223164e01SAndreas Gohr$lang['activate'] = 'Activate'; 9323164e01SAndreas Gohr$lang['deactivate'] = 'Deactivate'; 9423164e01SAndreas Gohr$lang['singleEditForm'] = 'Edit the plugins of a specific animal'; 9523164e01SAndreas Gohr$lang['js']['animalSelect'] = 'Select an animal'; 9623164e01SAndreas Gohr$lang['js']['pluginSelect'] = 'Select a plugin'; 9723164e01SAndreas Gohr$lang['js']['submit'] = 'Submit'; 9823164e01SAndreas Gohr$lang['js']['reset'] = 'Reset'; 9923164e01SAndreas Gohr 10023164e01SAndreas Gohr//Setup VIM: ex: et ts=4 : 101