Update of /cvsroot/php-blog/serendipity/lang
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6102/lang
Modified Files:
serendipity_lang_en.inc.php serendipity_lang_de.inc.php
serendipity_lang_es.inc.php
Log Message:
Begin support fot setlocale() and strftime(), removes no-longer needed month translations.
TODO: Find out which locales should be used for lang_en, lang_de, lang_es (Anyone?)
Index: serendipity_lang_en.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/lang/serendipity_lang_en.inc.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- serendipity_lang_en.inc.php 9 Feb 2004 15:15:56 -0000 1.7
+++ serendipity_lang_en.inc.php 13 Feb 2004 18:25:34 -0000 1.8
@@ -10,15 +10,8 @@
##########################################################################
// English language file
-if (!isset($serendipity['months'])) {
- $serendipity['months'] = array('J...@ha...', 'January', 'February', 'March',
- 'April', 'May', 'June', 'July', 'August', 'September',
- 'October', 'November', 'December');
-}
-
-if (!isset($serendipity['weekDayAbb'])) {
- $serendipity['weekDayAbb'] = array('M', 'Tu', 'W', 'Th', 'F', 'Sa', 'Su');
-}
+@define('LANG_LOCALE', 'en_EN');
+@define('DATE_FORMAT_1', '%A, %B %e. %Y');
@define('SERENDIPITY_ADMIN_SUITE', 'Serendipity Administration Suite');
@define('HAVE_TO_BE_LOGGED_ON', 'You have to be logged on to view this page:');
@@ -123,7 +116,6 @@
@define('RESIZE_BLAHBLAH', '<b>Resize %s</b><p>');
@define('ORIGINAL_SIZE', 'Original size: <i>%sx%s</i> pixel');
@define('HERE_YOU_CAN_ENTER_BLAHBLAH', '<p>Here you can adjust the images new size. If you want to keep the proportions, just enter one value and press the TAB key, I\'ll automatically calculate the new size so the proportions one value and press the TAB key, I\'ll automatically calculate the new size so the proportions don\'t get messed up:');
-@define('DATE_FORMAT_1', 'l, F jS Y');
@define('CALENDAR', 'Calendar');
@define('QUICKJUMP_CALENDAR', 'QuickJump Calendar');
@define('QUICKSEARCH', 'Quicksearch');
Index: serendipity_lang_de.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/lang/serendipity_lang_de.inc.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- serendipity_lang_de.inc.php 9 Feb 2004 15:15:56 -0000 1.8
+++ serendipity_lang_de.inc.php 13 Feb 2004 18:25:34 -0000 1.9
@@ -10,16 +10,8 @@
##########################################################################
// German language file
-if (!isset($serendipity['months'])) {
- $serendipity['months'] = array('J...@ha...', 'Januar', 'Februar', 'März',
- 'April', 'Mai', 'Juni', 'Juli', 'August', 'September',
- 'Oktober', 'November', 'Dezember');
-}
-
-if (!isset($serendipity['weekDayAbb'])) {
- $serendipity['weekDayAbb'] = array('Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa', 'So');
-}
-
+@define('DATE_LOCALE', 'german');
+@define('DATE_FORMAT_1', '%A, %B %e. %Y');
@define('SERENDIPITY_ADMIN_SUITE', 'Serendipity Verwaltungsoberfläche');
@define('HAVE_TO_BE_LOGGED_ON', 'Sie müssen angemeldet sein, um diese Seite zu sehen:');
Index: serendipity_lang_es.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/lang/serendipity_lang_es.inc.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- serendipity_lang_es.inc.php 9 Feb 2004 15:15:56 -0000 1.7
+++ serendipity_lang_es.inc.php 13 Feb 2004 18:25:34 -0000 1.8
@@ -13,15 +13,8 @@
##########################################################################
// Spanish language file
-if (!isset($serendipity['months'])) {
- $serendipity['months'] = array('J...@ha...', 'Enero', 'Febrero', 'Marzo',
- 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septiembre',
- 'Octubre', 'Noviembre', 'Diciembre');
-}
-
-if (!isset($serendipity['weekDayAbb'])) {
- $serendipity['weekDayAbb'] = array('L', 'M', 'X', 'J', 'V', 'S', 'D');
-}
+@define('DATE_LOCALE', 'spanish');
+@define('DATE_FORMAT_1', '%A, %B %e. %Y');
@define('SERENDIPITY_ADMIN_SUITE', 'Suite de Administración de Serendipity');
@define('HAVE_TO_BE_LOGGED_ON', 'Debes identificarte para ver esta pagina:');
|