Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/gcompris
diff options
context:
space:
mode:
authorBruno Coudoin <bcoudoin@src.gnome.org>2009-02-24 23:30:48 (GMT)
committer Bruno Coudoin <bcoudoin@src.gnome.org>2009-02-24 23:30:48 (GMT)
commitb5ae4f6620f2bb17f691cd2e979bf9b471d6aa6a (patch)
tree43b94c0a4428e0353c4fe8e212658c768508a666 /src/gcompris
parente0638919c49a681a9bf7a946a54921ff3351d9ab (diff)
- Fixed strings:
* boards/babyshapes.xml.in: * boards/babyshapes/board8_1.xml.in: * boards/babyshapes/board8_4.xml.in: * src/boards/reading.c: (reading_create_item): * src/gcompris/board_config_wordlist.c: (gc_board_config_wordlist): - Fixed bug, the configuration was crashing uppon startup from the admin mode * src/boards/missingletter.c: (_init), (start_board), (config_start): * src/boards/missingletter_config.c: * src/boards/python/admin/board_list.py: svn path=/trunk/; revision=3741
Diffstat (limited to 'src/gcompris')
-rw-r--r--src/gcompris/board_config_wordlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gcompris/board_config_wordlist.c b/src/gcompris/board_config_wordlist.c
index a6364b2..e16e99b 100644
--- a/src/gcompris/board_config_wordlist.c
+++ b/src/gcompris/board_config_wordlist.c
@@ -206,7 +206,7 @@ GtkWidget *gc_board_config_wordlist(GcomprisBoardConf *config, const gchar *file
gtk_widget_show(combo_lang);
hbox = gtk_hbox_new(FALSE, 8);
- label = gtk_label_new(_("Choice of the language"));
+ label = gtk_label_new(_("Language:"));
gtk_widget_show(label);
gtk_widget_show(hbox);
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 8);
@@ -218,7 +218,7 @@ GtkWidget *gc_board_config_wordlist(GcomprisBoardConf *config, const gchar *file
gtk_widget_show(combo_level);
hbox = gtk_hbox_new(FALSE, 8);
- label = gtk_label_new(_("Choice of the level"));
+ label = gtk_label_new(_("Level:"));
gtk_widget_show(label);
gtk_widget_show(hbox);
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 8);