|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:31
|
Update of /cvsroot/phpbb/phpBB2/language/lang_norwegian In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_norwegian 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_norwegian/lang_main.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** lang_main.php 14 Feb 2002 16:04:15 -0000 1.2 --- lang_main.php 2 Mar 2002 18:13:25 -0000 1.3 *************** *** 24,44 **** // - // - // 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, "no"); $lang['ENCODING'] = "iso-8859-1"; ! $lang['DIRECTION'] = "LTR"; ! $lang['LEFT'] = "VENSTRE"; ! $lang['RIGHT'] = "HØYRE"; $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format --- 24,33 ---- // //setlocale(LC_ALL, "no"); $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 |