diff --git a/ChangeLog b/ChangeLog index 78b577af80af302b807684472b29fa39e9984852..3ef0850f3f62fb98b88314d9f3f41e2c7daacf4a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-02-24 Benedikt Meurer <benny@xfce.org> + + * thunar-uca/thunar-uca-chooser.c: Fix two typos that already survived + for too long. + 2006-02-24 Benedikt Meurer <benny@xfce.org> * THANKS: Add translator credits for Piarres Beobide (eu) and Daniel diff --git a/thunar-uca/thunar-uca-chooser.c b/thunar-uca/thunar-uca-chooser.c index f66197a34dd7485d128177508bb2c2bafc543ec4..17b2c2cc2004449876445ae32eabbb2a8b99bd15 100644 --- a/thunar-uca/thunar-uca-chooser.c +++ b/thunar-uca/thunar-uca-chooser.c @@ -215,7 +215,7 @@ thunar_uca_chooser_init (ThunarUcaChooser *uca_chooser) gtk_widget_show (image); uca_chooser->up_button = gtk_button_new (); - gtk_tooltips_set_tip (uca_chooser->tooltips, uca_chooser->up_button, _("Move the currently selection action up by one row."), NULL); + gtk_tooltips_set_tip (uca_chooser->tooltips, uca_chooser->up_button, _("Move the currently selected action up by one row."), NULL); gtk_box_pack_start (GTK_BOX (vbox), uca_chooser->up_button, FALSE, FALSE, 0); g_signal_connect_swapped (G_OBJECT (uca_chooser->up_button), "clicked", G_CALLBACK (thunar_uca_chooser_up_clicked), uca_chooser); gtk_widget_show (uca_chooser->up_button); @@ -225,7 +225,7 @@ thunar_uca_chooser_init (ThunarUcaChooser *uca_chooser) gtk_widget_show (image); uca_chooser->down_button = gtk_button_new (); - gtk_tooltips_set_tip (uca_chooser->tooltips, uca_chooser->down_button, _("Move the currently selection action down by one row."), NULL); + gtk_tooltips_set_tip (uca_chooser->tooltips, uca_chooser->down_button, _("Move the currently selected action down by one row."), NULL); gtk_box_pack_start (GTK_BOX (vbox), uca_chooser->down_button, FALSE, FALSE, 0); g_signal_connect_swapped (G_OBJECT (uca_chooser->down_button), "clicked", G_CALLBACK (thunar_uca_chooser_down_clicked), uca_chooser); gtk_widget_show (uca_chooser->down_button);