|
From: Jon O. <jon...@us...> - 2005-10-22 22:42:39
|
Update of /cvsroot/mxbb/mx_dev_startkit/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv378/modules/mx_dev_startkit/language/lang_english Modified Files: lang_admin.php lang_main.php Log Message: adding this dev startkit module Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_dev_startkit/language/lang_english/lang_main.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_main.php 22 Oct 2005 12:40:33 -0000 1.1 --- lang_main.php 22 Oct 2005 22:42:31 -0000 1.2 *************** *** 24,35 **** // Block specific // ! $lang['Startkit_info'] = 'This is a developers startkit exampmle block'; $lang['Test_string'] = 'This is block parameter (string), with value: '; $lang['Test_number'] = 'This is block parameter (number), with value: '; $lang['Test_config1'] = 'This is a config setting, with value: '; $lang['Test_config2'] = 'This is a second config setting, with value: '; ! $lang['Test_get_par'] = 'This block recognises the GET var "test". Try adding "&test=whatever" to the page url.'; ?> \ No newline at end of file --- 24,50 ---- // Block specific // ! $lang['Startkit'] = 'This is a developers startkit exampmle block'; + $lang['Startkit_parameter'] = 'Block Parameters'; + $lang['Startkit_parameter_explain'] = 'Block parameters are set in the blockCP - unique for this block and included in mxBB cache'; $lang['Test_string'] = 'This is block parameter (string), with value: '; $lang['Test_number'] = 'This is block parameter (number), with value: '; + + $lang['Startkit_parameter_modified'] = 'Modified block parameter'; + $lang['Startkit_parameter_modified_explain'] = 'This parameter has been modified by the script'; + $lang['Test_modified'] = 'This is a modified block parameter: the parameter \'number\' has been doubled'; + + $lang['Startkit_parameter_custom'] = 'Custom block parameter'; + $lang['Startkit_parameter_custom_explain'] = 'Additional module parameters are defined in admin/mx_module_defs.php'; + $lang['Test_custom'] = 'This is a block parameter (custom), with value: '; + + $lang['Startkit_config'] = 'Module config values'; + $lang['Startkit_config_explain'] = 'Config values are set in the adminCP - main settings for all module blocks'; $lang['Test_config1'] = 'This is a config setting, with value: '; $lang['Test_config2'] = 'This is a second config setting, with value: '; ! $lang['Startkit_get'] = 'GET value'; ! $lang['Startkit_get_explain'] = 'This is a fetched GET parameter'; ! $lang['Test_get_par'] = 'This block recognises the GET var "test". Try adding "&test=whatever" to the page url.'; ?> \ No newline at end of file Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_dev_startkit/language/lang_english/lang_admin.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lang_admin.php 22 Oct 2005 12:40:33 -0000 1.1 --- lang_admin.php 22 Oct 2005 22:42:31 -0000 1.2 *************** *** 22,32 **** // ! // AdminCP lang keys ! // - only needed if the module has its own adminCP panel, typically when the module requires extra db tables for its setup (operations) // ! $lang['mx_startkit_admin'] = 'mxBB Startkit Example AdminCP'; ! $lang['mx_forum_admin_explain'] = 'This panel demonstrates how the module may be configured using additional db tables.'; $lang['startkit_config1'] = 'First test config'; $lang['startkit_config1_explain'] = 'More info is given here'; --- 22,37 ---- // ! // AdminCP // + $lang['Config_Startkit'] = "mxBB Startkit Example AdminCP"; + $lang['Config_Startkit_explain'] = "This panel demonstrates how the module may be configured using additional db tables."; ! $lang['Startkit_config_updated'] = "Calendar Configuration Updated Sucessfully"; ! $lang['Startkit_return_config'] = 'Click %sHere%s to return to Calendar Configuration'; + // + // AdminCP lang keys + // - only needed if the module has its own adminCP panel, typically when the module requires extra db tables for its setup (operations) + // $lang['startkit_config1'] = 'First test config'; $lang['startkit_config1_explain'] = 'More info is given here'; *************** *** 48,50 **** --- 53,64 ---- $lang['startkit_test_number_explain'] = 'More info is given here'; + $lang['startkit_test_custom'] = 'Test Custom Parameter'; + $lang['startkit_test_custom_explain'] = 'More info is given here'; + + // + // Custom Parameter Types + // + $lang['ParType_startkit_module_select'] = "Custom module select"; + $lang['ParType_startkit_module_select_info'] = ""; + ?> \ No newline at end of file |