Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8073
Modified Files:
Tag: branch-smarty
NEWS serendipity_lang.inc.php
Log Message:
added italian translation
Index: serendipity_lang.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_lang.inc.php,v
retrieving revision 1.16.2.1
retrieving revision 1.16.2.2
diff -u -d -r1.16.2.1 -r1.16.2.2
--- serendipity_lang.inc.php 14 Sep 2004 10:30:07 -0000 1.16.2.1
+++ serendipity_lang.inc.php 15 Sep 2004 11:20:42 -0000 1.16.2.2
@@ -1,6 +1,6 @@
<?php # $Id$
-if (!defined('LANGUAGE_LIST')) define('LANGUAGE_LIST', 'en=>English,de=>German,da=>Danish,es=>Spanish,fr=>French,cs=>Czech (Win-1250),cz=>Czech (ISO-8859-2),nl=>Dutch,pt=>Portuguese Brazilian,bg=>Bulgarian,no=>Norwegian');
+if (!defined('LANGUAGE_LIST')) define('LANGUAGE_LIST', 'en=>English,de=>German,da=>Danish,es=>Spanish,fr=>French,cs=>Czech (Win-1250),cz=>Czech (ISO-8859-2),nl=>Dutch,pt=>Portuguese Brazilian,bg=>Bulgarian,no=>Norwegian,it=>Italian');
if (!defined('serendipity_LANG_LOADED') || serendipity_LANG_LOADED !== true) {
// Try and include preferred language from the configurated setting
@@ -11,7 +11,7 @@
// If no config file is loaded, language includes are not available.
// Now include one. Try to auto-guess the language by looking up the HTTP_ACCEPT_LANGUAGE.
$serendipty['autolang'] = 'en';
- $supported_languages = array('en', 'da', 'de', 'es', 'cs', 'cz', 'fr', 'nl', 'pt', 'bg', 'no');
+ $supported_languages = array('en', 'da', 'de', 'es', 'cs', 'cz', 'fr', 'nl', 'pt', 'bg', 'no', 'it');
$possible_languages = explode(',', (isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? $_SERVER['HTTP_ACCEPT_LANGUAGE'] : ''));
if (is_array($possible_languages)) {
foreach($possible_languages as $index => $lang) {
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.214.2.5
retrieving revision 1.214.2.6
diff -u -d -r1.214.2.5 -r1.214.2.6
--- NEWS 15 Sep 2004 08:38:31 -0000 1.214.2.5
+++ NEWS 15 Sep 2004 11:20:42 -0000 1.214.2.6
@@ -11,6 +11,8 @@
Version 0.7 ()
------------------------------------------------------------------------
+ * Added Italian translations, thanks to Alessandro Pellizzari
+
* Fixed missing CSS-class for BBCode Event-Plugin (Jez Hancock)
* Fixed comment counter for deleting non-approved comments
|