|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:31
|
Update of /cvsroot/phpbb/phpBB2/language/lang_swedish In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_swedish 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_swedish/lang_main.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** lang_main.php 1 Mar 2002 15:02:57 -0000 1.1 --- lang_main.php 2 Mar 2002 18:13:26 -0000 1.2 *************** *** 33,53 **** // - // - // 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, "se"); $lang['ENCODING'] = "iso-8859-1"; ! $lang['DIRECTION'] = "LTR"; ! $lang['LEFT'] = "VÄNSTER"; ! $lang['RIGHT'] = "HÖGER"; $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format --- 33,41 ---- // //setlocale(LC_ALL, "se"); $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 |