|
From: Paul S. O. <ps...@us...> - 2002-03-02 18:13:58
|
Update of /cvsroot/phpbb/phpBB2/language/lang_french In directory usw-pr-cvs1:/tmp/cvs-serv10377/language/lang_french 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_french/lang_main.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** lang_main.php 13 Feb 2002 22:26:02 -0000 1.4 --- lang_main.php 2 Mar 2002 18:13:24 -0000 1.5 *************** *** 26,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, "fr"); $lang['ENCODING'] = "ISO-8859-1"; ! $lang['DIRECTION'] = "LTR"; ! $lang['LEFT'] = "GAUCHE"; ! $lang['RIGHT'] = "DROITE"; $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format --- 26,34 ---- // setlocale(LC_ALL, "fr"); $lang['ENCODING'] = "ISO-8859-1"; ! $lang['DIRECTION'] = "ltr"; // do not translate this, it's the Left to Right direction of text ! $lang['LEFT'] = "left"; // do not translate this, it's the normal 'left' direction of text ! $lang['RIGHT'] = "right"; // do not translate this, it's the normal 'right' direction of text $lang['DATE_FORMAT'] = "d M Y"; // This should be changed to the default date format for your language, php date() format |