|
From: OryNider <ory...@us...> - 2008-01-31 10:23:00
|
Update of /cvsroot/mxbb/mx_counter/language/lang_english In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv22804 Modified Files: Tag: core28x lang_admin.php lang_main.php Log Message: upgrade for 2.8.1 Index: lang_main.php =================================================================== RCS file: /cvsroot/mxbb/mx_counter/language/lang_english/lang_main.php,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** lang_main.php 6 Jun 2007 23:50:27 -0000 1.1 --- lang_main.php 31 Jan 2008 10:22:55 -0000 1.1.2.1 *************** *** 1,15 **** <?php ! // ! // The format of this file is: ! // ! // ---> $lang["message"] = "text"; ! // ! // Specify your language character encoding... [optional] ! // ! // setlocale(LC_ALL, "en"); ! ! // Module ! $lang['portal_counter'] = 'Site Counter:'; --- 1,14 ---- <?php + /** + * + * @package phpBB2 Mod - Counter + * @version $Id$ + * @copyright (c) 2002-2007 [ory...@rd..., OryNider] mxBB Development Team + * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 + * + */ ! // Mod ! $lang['board_counter'] = 'Site Counter'; Index: lang_admin.php =================================================================== RCS file: /cvsroot/mxbb/mx_counter/language/lang_english/lang_admin.php,v retrieving revision 1.1 retrieving revision 1.1.2.1 diff -C2 -d -r1.1 -r1.1.2.1 *** lang_admin.php 6 Jun 2007 23:50:26 -0000 1.1 --- lang_admin.php 31 Jan 2008 10:22:55 -0000 1.1.2.1 *************** *** 1,18 **** <?php ! ! // ! // The format of this file is: ! // ! // ---> $lang["message"] = "text"; ! // ! // Specify your language character encoding... [optional] ! // ! // setlocale(LC_ALL, "en"); ! ! $lang['Counter_Settings'] = "Counter Module Settings"; ! $lang['Counter_Settings_explain'] = "<b>Note: </b>Digit Path is relative to the <i>numbers</i> directory."; ! $lang['digits'] = "Digits"; ! $lang['digitpath'] = "Digit Path"; $lang['digitpreview'] = "Digit Preview"; --- 1,17 ---- <?php + /** + * + * @package phpBB2 Mod - Counter + * @version $Id$ + * @copyright (c) 2002-2007 [ory...@rd..., OryNider] mxBB Development Team + * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 + * + */ ! $lang['Counter_Settings'] = "Counter Mod Settings"; ! $lang['Counter_Settings_explain'] = "<b>Note: </b>Digit Path is relative to the <i>numbers</i> directory."; ! $lang['digits'] = "Digits"; ! $lang['digitpath'] = "Digit Path"; ! $lang['digitpath_explain'] = "</b>Digit Path/Set is relative to the <i>numbers</i> directory. Once you selected a set from the select box, you need to press <i><b>Submit</b></i>, once to change the set, and once more to refresh the page and preview the selected set."; $lang['digitpreview'] = "Digit Preview"; |