|
From: Jon O. <jon...@us...> - 2006-06-29 22:03:27
|
Update of /cvsroot/mxbb/mx_calsnails/language/lang_english In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv27752/modules/mx_calsnails/language/lang_english Modified Files: lang_admin.php lang_main.php Log Message: Installation bug adminCP lang keys initialization checks Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/language/lang_english/lang_main.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** lang_main.php 29 Jun 2006 13:39:03 -0000 1.5 --- lang_main.php 29 Jun 2006 22:03:22 -0000 1.6 *************** *** 47,69 **** // New Version 2.0.0 Additions. // - $lang['Config_Calendar'] = "Calendar Configuration"; - $lang['Config_Calendar_explain'] = "Set all the necessary variables for your calendar below"; $lang['Cal_event_add'] = "Event Added/Modified..."; $lang['Cal_add4valid'] = "Event submitted for validation by an Administrator"; - $lang['week_start'] = "Week start"; - $lang['subject_length'] = "Subject length"; - $lang['subject_length_explain'] = "Set the length of characters in an event subject(title) for the main month view<br><i>NB: For double-byte languages always select an even number of characters</i>"; - $lang['cal_script_path_explain'] = "NOT CURRENTLY IN USE"; - $lang['allow_anon'] = "Allow anonymous viewing"; - $lang['allow_old'] = "Allow old events"; - $lang['allow_old_explain'] = "Allow events to be posted for dates in the past"; - - $lang['show_headers'] = "Show the phpBB2 header info"; - $lang['cal_date_explain'] = "Only use if you wish to use a different format from the forum date format <a href='http://www.php.net/date' target='_other'>gmdate()</a>"; $lang['category'] = "Category"; - $lang['Cal_config_updated'] = "Calendar Configuration Updated Sucessfully"; - $lang['Cal_return_config'] = 'Click %sHere%s to return to Calendar Configuration'; $lang['allow_categories'] = "Use categories with events"; $lang['require_categories'] = "Require a category with events:"; --- 47,55 ---- Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_calsnails/language/lang_english/lang_admin.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** lang_admin.php 29 Jun 2006 13:39:03 -0000 1.11 --- lang_admin.php 29 Jun 2006 22:03:22 -0000 1.12 *************** *** 18,21 **** --- 18,54 ---- // setlocale(LC_ALL, "en"); + // + // Configuration + // + $lang['Config_Calendar'] = "Calendar Configuration"; + $lang['Config_Calendar_explain'] = "Set all the necessary variables for your calendar below"; + + $lang['week_start'] = "Week start"; + $lang['subject_length'] = "Subject length"; + $lang['subject_length_explain'] = "Set the length of characters in an event subject(title) for the main month view<br><i>NB: For double-byte languages always select an even number of characters</i>"; + $lang['cal_script_path_explain'] = "NOT CURRENTLY IN USE"; + $lang['allow_anon'] = "Allow anonymous viewing"; + $lang['allow_old'] = "Allow old events"; + $lang['allow_old_explain'] = "Allow events to be posted for dates in the past"; + + $lang['show_headers'] = "Show the phpBB2 header info"; + $lang['cal_date_explain'] = "Only use if you wish to use a different format from the forum date format <a href='http://www.php.net/date' target='_other'>gmdate()</a>"; + + $lang['Cal_config_updated'] = "Calendar Configuration Updated Sucessfully"; + $lang['Cal_return_config'] = 'Click %sHere%s to return to Calendar Configuration'; + + $lang['no_public'] = 'No public access'; + $lang['view_only'] = 'View only'; + $lang['view_suggest'] = 'View,Suggest Events'; + $lang['view_add'] = 'View,Add Events'; + $lang['view_edit_own'] = 'View,Add (Edit/Delete own)'; + $lang['cal_admin'] = 'Calendar Admin'; + + $lang['allow_user_post_default'] = "Default access level for ALL registered users"; + $lang['allow_anon_post_default'] = "Default access level for ALL anonymous users"; + + // + // Block + // $lang['Calendar_Where'] = "SQL Where"; $lang['Calendar_Where_explain'] = "Specify conditions to filter calendar events.<br />For instance: username = 'xxxx' AND eventspan >= 'yyyy-mm-dd hh:mm:ss'<br />Column Information: id (int), username (string), stamp (datetime in the form 'yyyy-mm-dd hh:mm:ss'), subject (string), description (string), user_id (int), eventspan (date)"; |