Update of /cvsroot/php-blog/serendipity/lang
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9773/lang
Modified Files:
serendipity_lang_da.inc.php serendipity_lang_de.inc.php
serendipity_lang_en.inc.php serendipity_lang_es.inc.php
Log Message:
Allow for each language to have its own charset
Should finish support for russian and other languages not using ISO-8859-1
Index: serendipity_lang_da.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/lang/serendipity_lang_da.inc.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- serendipity_lang_da.inc.php 25 Feb 2004 10:50:41 -0000 1.6
+++ serendipity_lang_da.inc.php 25 Feb 2004 17:42:48 -0000 1.7
@@ -6,6 +6,7 @@
//
// Thanks to: Jeppe Lund, no...@no...
+@define('LANG_CHARSET', 'ISO-8859-1');
@define('DATE_LOCALES', 'danish, da, da_DK');
@define('DATE_FORMAT_ENTRY', '%A d. %e. %B %Y');
Index: serendipity_lang_de.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/lang/serendipity_lang_de.inc.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- serendipity_lang_de.inc.php 25 Feb 2004 10:50:41 -0000 1.16
+++ serendipity_lang_de.inc.php 25 Feb 2004 17:42:48 -0000 1.17
@@ -9,7 +9,7 @@
# #
##########################################################################
-// German language file
+@define('LANG_CHARSET', 'ISO-8859-1');
@define('DATE_LOCALES', 'german, de_DE, de');
@define('DATE_FORMAT_ENTRY', '%A, %e. %B %Y');
Index: serendipity_lang_en.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/lang/serendipity_lang_en.inc.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- serendipity_lang_en.inc.php 25 Feb 2004 10:50:41 -0000 1.13
+++ serendipity_lang_en.inc.php 25 Feb 2004 17:42:48 -0000 1.14
@@ -9,7 +9,7 @@
# #
##########################################################################
-// English language file
+@define('LANG_CHARSET', 'ISO-8859-1');
@define('LANG_LOCALES', 'english, en, en_US');
@define('DATE_FORMAT_ENTRY', '%A, %B %e. %Y');
Index: serendipity_lang_es.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/lang/serendipity_lang_es.inc.php,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- serendipity_lang_es.inc.php 25 Feb 2004 10:50:41 -0000 1.14
+++ serendipity_lang_es.inc.php 25 Feb 2004 17:42:48 -0000 1.15
@@ -12,7 +12,7 @@
# #
##########################################################################
-// Spanish language file
+@define('LANG_CHARSET', 'ISO-8859-1');
@define('DATE_LOCALES', 'spanish');
@define('DATE_FORMAT_ENTRY', '%A, %B %e. %Y');
|