1<?php 2/** 3 * english language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Stephane Chamberland <stephane.chamberland@ec.gc.ca> 7 */ 8 9// settings must be present and set appropriately for the language 10$lang['encoding'] = 'utf-8'; 11$lang['direction'] = 'ltr'; 12 13// for admin plugins, the menu prompt to be displayed in the admin menu 14// if set here, the plugin doesn't need to override the getMenuText() method 15$lang['menu'] = 'Text Config Manager'; 16 17// custom language strings for the plugin 18$lang['desc'] = "Manage Dokuwiki's Text Config Files"; 19 20$lang['error'] = 'Settings not updated due to an invalid value, please review your changes and resubmit. 21 <br />The incorrect value(s) will be shown surrounded by a red border.'; 22$lang['updated'] = 'Settings updated successfully.'; 23$lang['nochoice'] = '(no other choices available)'; 24$lang['locked'] = 'The settings file can not be updated, if this is unintentional, <br /> 25 ensure the local settings file name and permissions are correct.'; 26 27$lang['btn_addnew'] = "New Value"; 28 29$lang['msg_howto'] = "You may edit below the values for each config line or remove item by erasing its value before saving.<br /> To modify a key name, remove it first then re-add it with the new name below. <br />Please note that you cannot remove a <b>bold</b> (default) item."; 30 31$lang['msg_howtoadd'] = "You may add a new config item with the following form."; 32 33$lang['msg_chooseConf'] = "Please select which config file you would like to edit"; 34$lang['msg_editThisConf'] = "You may choose to edit another config file.<br /> Please note that changes to the form above will be lost if you do not save it first."; 35$lang['btn_editThisConf'] = "Edit This Config"; 36 37$lang['filelocked'] = '<b>WARNING</b>: Config file not editable, cannot save modifications'; 38