Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Coudoin <bcoudoin@src.gnome.org>2009-03-14 13:50:32 (GMT)
committer Bruno Coudoin <bcoudoin@src.gnome.org>2009-03-14 13:50:32 (GMT)
commit1eb389e4e3d1af3b7434990e0c41aabee24197be (patch)
treeed8ad91bebb5fb26ef143b2d965d0877f36306bc
parentb57e8489877e141a590d13518f92ef24f3ece634 (diff)
- Fixed an annoying bug in the locale selection.
Punjabi was twice in our internal list which makes it impossible to access locale after Portuguese in our list. It was possible to access locale by going backward but really annoying. Merged from trunk 3771 svn path=/branches/GCOMPRIS_8_3/; revision=3772
-rw-r--r--ChangeLog11
-rw-r--r--src/gcompris/config.c21
2 files changed, 20 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 729ab52..668005f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2009-03-14 Bruno coudoin <bruno.coudoin@free.fr>
+
+ - Fixed an annoying bug in the locale selection.
+ Punjabi was twice in our internal list which makes
+ it impossible to access locale after Portuguese in
+ our list. It was possible to access locale by going
+ backward but really annoying.
+ Merged from trunk 3771
+
+ * src/gcompris/config.c:
+
2009-03-12 Bruno coudoin <bruno.coudoin@free.fr>
- Fixed a crash case by Miguel in the configuration.
diff --git a/src/gcompris/config.c b/src/gcompris/config.c
index 3873a0e..bfc17f0 100644
--- a/src/gcompris/config.c
+++ b/src/gcompris/config.c
@@ -1,7 +1,5 @@
/* gcompris - config.c
*
- * Time-stamp: <2006/08/21 23:28:06 bruno>
- *
* Copyright (C) 2000-2003 Bruno Coudoin
*
* This program is free software; you can redistribute it and/or modify
@@ -68,26 +66,25 @@ static gchar *linguas[] = {
"cs_CZ.UTF-8", N_("Czech Republic"),
"da_DK.UTF-8", N_("Danish"),
"de_DE.UTF-8", N_("German"),
+ "dz_BT.UTF-8", N_("Dzongkha"),
"el_GR.UTF-8", N_("Greek"),
"en_CA.UTF-8", N_("English (Canada)"),
"en_GB.UTF-8", N_("English (Great Britain)"),
"en_US.UTF-8", N_("English (United States)"),
"es_ES.UTF-8", N_("Spanish"),
"eu_ES.UTF-8", N_("Basque"),
- "dz_BT.UTF-8", N_("Dzongkha"),
"fa_IR.UTF-8", N_("Persian"),
"fi_FI.UTF-8", N_("Finnish"),
"fr_FR.UTF-8", N_("French"),
"ga_IE.UTF-8", N_("Irish (Gaelic)"),
+ "gu_IN.UTF-8", N_("Gujarati"),
"he_IL.UTF-8", N_("Hebrew"),
"hi_IN.UTF-8", N_("Hindi"),
- "id_ID.UTF-8", N_("Indonesian"),
- "ja_JP.UTF-8", N_("Japanese"),
- "gu_IN.UTF-8", N_("Gujarati"),
- "pa_IN.UTF-8", N_("Punjabi"),
- "hu_HU.UTF-8", N_("Hungarian"),
"hr_HR.UTF-8", N_("Croatian"),
+ "hu_HU.UTF-8", N_("Hungarian"),
+ "id_ID.UTF-8", N_("Indonesian"),
"it_IT.UTF-8", N_("Italian"),
+ "ja_JP.UTF-8", N_("Japanese"),
"ka_GE.UTF-8", N_("Georgian"),
"ko_KR.UTF-8", N_("Korean"),
"lt_LT.UTF-8", N_("Lithuanian"),
@@ -95,15 +92,15 @@ static gchar *linguas[] = {
"ml_IN.UTF-8", N_("Malayalam"),
"mr_IN.UTF-8", N_("Marathi"),
"ms_MY.UTF-8", N_("Malay"),
+ "nb_NO.UTF-8", N_("Norwegian Bokmal"),
"ne_NP.UTF-8", N_("Nepal"),
"nl_NL.UTF-8", N_("Dutch"),
- "nb_NO.UTF-8", N_("Norwegian Bokmal"),
"nn_NO.UTF-8", N_("Norwegian Nynorsk"),
"oc_FR.UTF-8", N_("Occitan (languedocien)"),
- "pl_PL.UTF-8", N_("Polish"),
- "pt_PT.UTF-8", N_("Portuguese"),
"pa_IN.UTF-8", N_("Punjabi"),
+ "pl_PL.UTF-8", N_("Polish"),
"pt_BR.UTF-8", N_("Portuguese (Brazil)"),
+ "pt_PT.UTF-8", N_("Portuguese"),
"ro_RO.UTF-8", N_("Romanian"),
"ru_RU.UTF-8", N_("Russian"),
"rw_RW.UTF-8", N_("Kinyarwanda"),
@@ -117,8 +114,8 @@ static gchar *linguas[] = {
"ta_IN.UTF-8", N_("Tamil"),
"th_TH.UTF-8", N_("Thai"),
"tr_TR.UTF-8", N_("Turkish"),
- "ur_PK.UTF-8", N_("Urdu"),
"uk_UA.UTF8", N_("Ukrainian"),
+ "ur_PK.UTF-8", N_("Urdu"),
"vi_VN.UTF-8", N_("Vietnamese"),
"wa_BE.UTF-8", N_("Walloon"),
"zh_CN.UTF-8", N_("Chinese (Simplified)"),