small i18n fix

--Sven
This commit is contained in:
Sven Neumann 2000-01-01 16:14:19 +00:00
parent f54d942aa8
commit fa16d08f1f
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
Sat Jan 1 17:10:31 CET 2000 Sven Neumann <sven@gimp.org>
* plug-ins/common/sunras.c: small i18n fix
Sat Jan 1 16:50:43 CET 2000 Marc Lehmann <pcg@goof.com>
* README.i18n: doc patch by Daniel Egger.

View file

@ -1624,7 +1624,7 @@ save_dialog (void)
gtk_box_pack_end (GTK_BOX (GTK_DIALOG (dlg)->action_area), hbbox, FALSE, FALSE, 0);
gtk_widget_show (hbbox);
button = gtk_button_new_with_label ("OK");
button = gtk_button_new_with_label (_("OK"));
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
gtk_signal_connect (GTK_OBJECT (button), "clicked",
(GtkSignalFunc) save_ok_callback,
@ -1633,7 +1633,7 @@ save_dialog (void)
gtk_widget_grab_default (button);
gtk_widget_show (button);
button = gtk_button_new_with_label ("Cancel");
button = gtk_button_new_with_label (_("Cancel"));
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
gtk_signal_connect_object (GTK_OBJECT (button), "clicked",
(GtkSignalFunc) gtk_widget_destroy,