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> 6bc461538SMichael Große */ 7bc461538SMichael Große 8bc461538SMichael Große// menu entry for admin plugins 9*632c5618SAndreas Gohr$lang['menu'] = 'Farming'; 10bc461538SMichael Große 1168253499SMichael Große$lang['subdomain_helptext_injection'] = 'If you are using the subdomain based approach you need to enter the subdomain under which the new subwiki will be reachable'; 1268253499SMichael Große 13*632c5618SAndreas Gohr// tabs 14*632c5618SAndreas Gohr$lang['tab_info'] = 'Info'; 15*632c5618SAndreas Gohr$lang['tab_setup'] = 'Farm Setup'; 16*632c5618SAndreas Gohr$lang['tab_config'] = 'Configuration'; 17*632c5618SAndreas Gohr$lang['tab_plugins'] = 'Manage Plugins'; 18*632c5618SAndreas Gohr$lang['tab_new'] = 'Add new Animal'; 19*632c5618SAndreas Gohr 20*632c5618SAndreas Gohr 21fc6a7cc1SMichael Große//labels 22ef6f20faSMichael Große$lang['preloadPHPForm'] = 'Create a new preload.php'; 23*632c5618SAndreas Gohr$lang['farm dir'] = 'Animal Directory'; 24ef6f20faSMichael Große$lang['animal configuration'] = 'Basic animal configuration'; 25fc6a7cc1SMichael Große$lang['admin password'] = 'Password for the new admin'; 26ef6f20faSMichael Große$lang['animal administrator'] = 'Animal administrator'; 27ef6f20faSMichael Große$lang['importUsers'] = 'Import all users of the master wiki to the new animal'; 28fc6a7cc1SMichael Große$lang['currentAdmin'] = 'Set the current user as admin'; 29fc6a7cc1SMichael Große$lang['newAdmin'] = 'Create new admin user "admin"'; 30ef6f20faSMichael Große$lang['server configuration'] = 'Server configuration'; 31fc6a7cc1SMichael Große$lang['htaccess setup'] = 'htaccess setup'; 32fc6a7cc1SMichael Große$lang['subdomain setup'] = 'Subdomain setup'; 33ef6f20faSMichael Große$lang['animal subdomain'] = 'Animal subdomain'; 34fc6a7cc1SMichael Große$lang['bulkSingleSwitcher'] = 'Edit a single animal or all at once?'; 35ef6f20faSMichael Große$lang['bulkEdit'] = 'Bulk edit all animals'; 36ef6f20faSMichael Große$lang['singleEdit'] = 'Edit a single animal'; 37fc6a7cc1SMichael Große$lang['bulkEditForm'] = 'Activate or deactivate a plugin in all animals'; 38fc6a7cc1SMichael Große$lang['activate'] = 'Activate'; 39fc6a7cc1SMichael Große$lang['deactivate'] = 'Deactivate'; 40ef6f20faSMichael Große$lang['singleEditForm'] = 'Edit the plugins of a specific animal'; 41fc6a7cc1SMichael Große$lang['submit'] = 'Submit'; 42fc6a7cc1SMichael Große$lang['reset'] = 'Reset'; 439ed791b7SMichael Große$lang['js']['submit'] = $lang['submit']; 449ed791b7SMichael Große$lang['js']['reset'] = $lang['reset']; 4529b841f5SMichael Große$lang['animal name'] = 'Animal name / Wiki Title'; 46ccb1f637SMichael Große$lang['htaccess_basedir'] = 'Enter the path to the above-entered farm directory relativ to the server root:'; 47bc461538SMichael Große 48*632c5618SAndreas Gohr 49*632c5618SAndreas Gohr$lang['animal'] = 'Animal Name'; 50*632c5618SAndreas Gohr$lang['thisis'] = 'This is'; 51*632c5618SAndreas Gohr$lang['thisis.farmer'] = 'The farmer!'; 52*632c5618SAndreas Gohr$lang['thisis.animal'] = 'An animal!'; 53*632c5618SAndreas Gohr$lang['baseinstall'] = 'Farmer Install'; 54*632c5618SAndreas Gohr$lang['animals'] = 'Animals'; 55*632c5618SAndreas Gohr 56fc6a7cc1SMichael Große// input placeholders 57fc6a7cc1SMichael Große$lang['js']['animalSelect'] = 'Select an animal'; 58fc6a7cc1SMichael Große$lang['js']['pluginSelect'] = 'Select a plugin'; 59ef6f20faSMichael Große$lang['animal name placeholder'] = 'Animal name'; 60ed2508faSMichael Große$lang['animal subdomain placeholder'] = 'animal.wiki.example.com'; 61ef6f20faSMichael Große$lang['admin password placeholder'] = 'Password'; 62bc461538SMichael Große 6319368639SMichael Große// success messages 64d6737b72SMichael Große$lang['animal creation success'] = 'The animal "%s" has been successfully created.'; 6529b841f5SMichael Große$lang['animal creation error'] = 'There was an error while creating the animal.'; 66d6737b72SMichael Große$lang['preload creation success'] = 'inc/preload.php has been succesfully created.'; 6729b841f5SMichael Große$lang['preload creation error'] = 'There was an error while creating inc/preload.php.'; 68d6737b72SMichael Große$lang['js']['animal ajax success'] = 'Ajax request to the new animal was successful.'; 69d6737b72SMichael Große$lang['js']['preload ajax success'] = 'Ajax request to a non-existing animal was correctly served by the farmer.'; 7019368639SMichael Große 71d9ec4524SMichael Große// info messages 72*632c5618SAndreas Gohr$lang['overwrite_preload'] = 'Warning: Your existing inc/preload.php will be overwritten when continuing here!'; 73d9ec4524SMichael Große 74fc6a7cc1SMichael Große// error messages 750495d2a2SMichael Große$lang['htaccess_basedir_missing'] = 'Please enter the <a href="https://www.dokuwiki.org/config:basedir">basedir</a>'; 76fc6a7cc1SMichael Große$lang['animalname_missing'] = 'Please enter a name for the new animal.'; 77fc6a7cc1SMichael Große$lang['animalname_invalid'] = 'The animalname may only contain alphanumeric characters and hyphens(but not as first or last character).'; 7819368639SMichael Große$lang['animalname_preexisting'] = 'An animal with that name already exists.'; 79fc6a7cc1SMichael Große$lang['adminsetup_missing'] = 'Choose an admin for the new animal.'; 80fc6a7cc1SMichael Große$lang['adminPassword_empty'] = 'The password for the new admin account must not be empty.'; 81fc6a7cc1SMichael Große$lang['serversetup_missing'] = 'Choose either a subdomain setup and enter a valid subdomain or choose a htaccess setup.'; 82fc6a7cc1SMichael Große$lang['animalsubdomain_missing'] = 'Please enter a valid domain for the new animal.'; 8329b841f5SMichael Große$lang['animalsubdomain_invalid'] = 'Please enter a valid subdomain (FQDN) without underscores.'; 8419368639SMichael Große$lang['animalsubdomain_preexisting'] = 'An animal with that subdomain already exists.'; 8519368639SMichael Große$lang['farmdir_missing'] = 'Please enter a directory where the animals should be stored.'; 8619368639SMichael Große$lang['farmdir_in_dokuwiki'] = 'The farm directory must outside of the master dokuwiki.'; 8719368639SMichael Große$lang['farmdir_uncreatable'] = 'The farm directory could not be created. Are the permissions correct?'; 8819368639SMichael Große$lang['farmdir_unwritable'] = 'Please make sure that the webserver has write access in the farm directory'; 89efa7af45SMichael Große$lang['farmdir_notEmpty'] = 'The farm directory must be empty.'; 90ba663b1aSMichael Große$lang['get request failure'] = 'The specified domain name could not be verified to be part of this farm setup. This is most probably a DNS or web server misconfiguration. Please refer to the farm plugin documentation on how to setup (sub-)domain farms.'; 91ba663b1aSMichael Große$lang['js']['preload ajax failure'] = $lang['get request failure']; 92ba663b1aSMichael Große$lang['js']['animal ajax failure'] = $lang['get request failure']; 93bc461538SMichael Große//Setup VIM: ex: et ts=4 : 94ef6f20faSMichael Große 95