|
From: Jon O. <jon...@us...> - 2005-10-22 12:40:58
|
Update of /cvsroot/mxbb/mx_dev_startkit/language/lang_english In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4328/language/lang_english Added Files: lang_admin.php lang_main.php Log Message: adding this module --- NEW FILE: lang_main.php --- <?php /*************************************************************************** * lang_admin.php * ------------------- * begin : Sunday, Mar 31, 2003 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: lang_main.php,v 1.1 2005/10/22 12:40:33 jonohlsson Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ // // 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.'; ?> --- NEW FILE: lang_admin.php --- <?php /*************************************************************************** * lang_admin.php * ------------------- * begin : Sunday, Mar 31, 2003 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: lang_admin.php,v 1.1 2005/10/22 12:40:33 jonohlsson Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ // // 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'; $lang['startkit_config2'] = 'Second test config'; $lang['startkit_config2_explain'] = 'More info is given here'; // // Block Parameter lang keys // - only needed if the module has block parameters // // The lang key and the block parameter name should match, to make the adminCP identify the parameter and display its description // $lang['startkit_test_string'] = 'Test string'; $lang['startkit_test_string_explain'] = 'More info is given here'; $lang['startkit_test_number'] = 'Test number'; $lang['startkit_test_number_explain'] = 'More info is given here'; ?> |