1<?php 2/** 3 * english language file 4 * 5 * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) 6 * @author Langham Associates <enquiries@langhamassociates.com> 7 */ 8 9 10 11$lang['encoding'] = 'utf-8'; 12$lang['direction'] = 'ltr'; 13 14// ******************** Messages *********************************** 15// Insufficient privileges to perform this operation 16$lang['msg_wrn_priv'] = 'Insufficient privilege to carry out this action'; 17// A name has to be entered for the table! 18$lang['msg_wrn_tab_nam'] = 'Please enter a name for the table'; 19// When a table is created, the user is informed and the form to enter the first column is displayed 20$lang['msg_tab_cre'] = 'The table has been created - enter the first column in that table'; 21// The following messages are displayed when a potential reference table is being modified 22$lang['msg_ref_tab_wng_1'] = 'Take care before modifying records in this table'; 23$lang['msg_ref_tab_wng_2'] = 'This table could be used as a reference table'; 24$lang['msg_ref_tab_wng_3'] = 'Changing a record here could have an effect on records in other tables referring to it'; 25// ***************************************************************** 26 27// ******************** Create New Table form ********************** 28$lang['ttl_cre_tab'] = 'Create New Table'; 29$lang['prompt_ent_tab_name'] = 'Enter the name of a new table'; 30$lang['btn_cre_new_tab'] = 'Create New Table'; 31// The following message is displayed at the top of the form if an attempt was made to re-use a name 32$lang['err_tab_nam'] = ' is already used - enter another'; 33 34// ***************************************************************** 35 36// ***** General buttons *********************** 37$lang['btn_back'] = 'Back'; 38$lang['btn_home'] = 'Home'; 39// ************************************************* 40 41// ************* The List contents of table screen *********** 42$lang['btn_lst_cre_new_rec'] = 'Create New Record'; 43$lang['btn_adm_tab_str'] = 'Admin table structure'; 44$lang['btn_lst_srch_srt'] = 'Search and/or Sort'; 45// Radio button - No Sort 46$lang['rad_lst_no_srt'] = 'No Sort'; 47// On each line - these are hints on the icons rather than buttons 48$lang['btn_lst_edt'] = 'Edit'; 49$lang['btn_lst_del'] = 'Delete'; 50// *********************************************************** 51 52// ************* Admin List columns ************************* 53$lang['btn_lst_cre_new_col'] = 'Create New Column'; 54$lang['btn_lst_tab_cnt'] = 'List the table contents'; 55 56// *********************************************************** 57 58// *********Used on create/edit forms ************** 59// as in Create record or Create column 60$lang['prompt_col'] = 'column'; 61$lang['prompt_rec'] = 'record'; 62// ************************************************* 63 64// ***** Used on Create Record/column form ******* 65// The title i.e. Create column or Create record 66$lang['prompt_cre'] = 'Create'; 67// Create Button 68$lang['btn_cre_cre'] = 'Create'; 69// ************************************************* 70 71// ***** Used on Edit Record/column form ******* 72// The title i.e. Edit column or Edit record 73$lang['prompt_edt'] = 'Edit'; 74// The update button 75$lang['btn_edt_upd'] = 'Update'; 76// ************************************************* 77 78// **************** Used on Delete form *********** 79// Title - N.B. columns can't be deleted 80$lang['prompt_del_rec'] = 'Delete record'; 81// The confirm delete button 82$lang['btn_del_cnf'] = 'Confirm Delete'; 83// ************************************************* 84 85// Used by validation routine 86$lang['err_dat_typ_dat'] = ' must be of the format yyyy/mm/dd e.g. 2008/12/25: value entered: '; 87$lang['err_dat_typ_num'] = ' must be a number - value entered: '; 88$lang['err_dat_typ_man'] = ' must be entered since it is mandatory'; 89$lang['err_dat_typ_int'] = ' format [[link|name]] , e.g. [[wiki:myPage|My Details]] value entered: '; // v1.0.3 90$lang['err_dat_typ_ext'] = ' format [[link|name]] , e.g. [[http://www.splitbrain.com/|Splitbrain]] value entered: '; // v1.0.3 91$lang['err_dat_missing_pipe'] = ' must contain a | character'; // v1.0.3 92$lang['err_dat_extra_pipe'] = ' must not contain a | character'; // v1.0.3 93$lang['err_lost_update'] = 'The record has been updated by somebody else, please make the change again'; // v1.0.3 94 95$lang['err_dup_val'] = ' Duplicate value found - No change made'; // The unique columns already exists when updating or inserting 96 97$lang['err_dup_rec'] = ' This record already exists - No change made'; // This record already exists when updating or inserting 98 99$lang['prompt_no_selection'] = 'No Selection'; // At top of drop-down where not mandatory 100 101$lang['prompt_referencing'] = 'Referencing'; // Used for Column Types with Referencing Countries etc 102 103$lang['prompt_looking_up'] = 'Looking up'; // Used for Column Types with Looking Up Gender etc 104 105// Lookups 106// 1. Gender 107// 2. YesOrNo 108// 3. Title 109// Further ones can be added but would need to be added again whenever an upgrade was installed 110$lang['lookup'][1][1]='Gender'; 111$lang['lookup'][1][2]='Female'; 112$lang['lookup'][1][3]='Male'; 113$lang['lookup'][2][1]='YesOrNo'; 114$lang['lookup'][2][2]='Yes'; 115$lang['lookup'][2][3]='No'; 116$lang['lookup'][3][1]='Title'; 117$lang['lookup'][3][2]='Dr'; 118$lang['lookup'][3][3]='Miss'; 119$lang['lookup'][3][4]='Mr'; 120$lang['lookup'][3][5]='Mrs'; 121$lang['lookup'][3][6]='Ms'; 122$lang['lookup'][3][7]='Prof'; 123 124 125// Admin Table Structures - The column labels 126$lang['column_label'][1] = 'Name'; 127$lang['column_label'][2] = 'Label'; 128$lang['column_label'][3] = 'Mandatory'; 129$lang['column_label'][4] = 'Unique'; 130$lang['column_label'][5] = 'Type'; 131$lang['column_label'][6] = 'Visible'; // v1.0.3 132 133// Data types 134$lang['type_string'] = 'String'; 135$lang['type_number'] = 'Number'; 136$lang['type_date'] = 'Date'; 137$lang['type_internal_link'] = 'Internal Link'; // v1.0.3 138$lang['type_external_link'] = 'External Link'; // v1.0.3 139