|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:29
|
Update of /cvsroot/phpbb/phpBB2/language/lang_japanese In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_japanese Modified Files: lang_main.php Log Message: Changed way subject is sent to email ... handled by templates where necessary ... all translators please note these changes! Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_japanese/lang_main.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** lang_main.php 25 Feb 2002 15:00:30 -0000 1.1 --- lang_main.php 2 Mar 2002 18:13:25 -0000 1.2 *************** *** 28,48 **** // ! // ! // The format of this file is: ! // ! // ---> $lang['message'] = "text"; ! // ! // You should also try to set a locale and a character ! // encoding (plus direction). The encoding and direction ! // will be sent to the template. The locale may or may ! // not work, it's dependent on OS support and the syntax ! // varies ... give it your best guess! ! // ! ! //setlocale(LC_ALL, "en"); $lang['ENCODING'] = "shift_jis"; ! $lang['DIRECTION'] = "LTR"; ! $lang['LEFT'] = "LEFT"; ! $lang['RIGHT'] = "RIGHT"; $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format --- 28,36 ---- // ! //setlocale(LC_ALL, "jp"); $lang['ENCODING'] = "shift_jis"; ! $lang['DIRECTION'] = "ltr"; ! $lang['LEFT'] = "left"; ! $lang['RIGHT'] = "right"; $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format |