* src/selective_download.c
authorAlfons Hoogervorst <alfons@proteus.demon.nl>
Sun, 25 Aug 2002 11:54:54 +0000 (11:54 +0000)
committerAlfons Hoogervorst <alfons@proteus.demon.nl>
Sun, 25 Aug 2002 11:54:54 +0000 (11:54 +0000)
mark two more translatable strings

ChangeLog.claws
configure.in
src/selective_download.c

index 171dcb196eea08e570f5cf696e8b79258f8444c0..68797bfed922e9d143865aced576f0195147911f 100644 (file)
@@ -1,3 +1,9 @@
+2002-08-25 [alfons]    0.8.1claws118
+
+       * src/selective_download.c
+               mark two strings as translatable
+               (thanks to Urke MMI for pointing this out)
+
 2002-08-25 [alfons]    0.8.1claws117
 
        * src/summaryview.c
index bd2d17fc44a127fd387942effe7c580d4be7b7f0..f7047756dbe1af4e7ae09c484ee864ebf1a04f0d 100644 (file)
@@ -8,7 +8,7 @@ MINOR_VERSION=8
 MICRO_VERSION=1
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws117
+EXTRA_VERSION=claws118
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 3e99a6bdf727864aa5bd64ef68bdb43bf31ab517..34e2e970f46b1c1af8977a684e2cec789315c8ca 100644 (file)
@@ -388,7 +388,7 @@ static void sd_update_msg_num(PrefsAccount *acc)
                                msg_num++;
        }
 
-       text = g_strdup_printf("%i Messages", msg_num);
+       text = g_strdup_printf(_("%i Messages"), msg_num);
        gtk_label_set_text(GTK_LABEL(selective.msgs_label), text);
 
        g_free(text);
@@ -750,7 +750,7 @@ static void sd_window_create(MainWindow *mainwin)
                          (GtkAttachOptions) (GTK_FILL),
                          (GtkAttachOptions) (GTK_FILL), 0, 0);
 
-       show_old_chkbtn = gtk_check_button_new_with_label("Show only old messages");
+       show_old_chkbtn = gtk_check_button_new_with_label(_("Show only old messages"));
        gtk_box_pack_start (GTK_BOX(bottom_hbox), show_old_chkbtn, FALSE, FALSE, 0);
 
        gtk_signal_connect (GTK_OBJECT(show_old_chkbtn), "toggled",