|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_finnish In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_finnish 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_finnish/lang_main.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** lang_main.php 14 Feb 2002 16:02:13 -0000 1.7 --- lang_main.php 2 Mar 2002 18:13:23 -0000 1.8 *************** *** 25,46 **** // ! ! // ! // 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'] = "iso-8859-1"; ! $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 --- 25,33 ---- // ! //setlocale(LC_ALL, "fi"); $lang['ENCODING'] = "iso-8859-1"; ! $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 |