From 06a74c2c37b9bd17610b217b7bb2b16651c04186 Mon Sep 17 00:00:00 2001 From: Benedikt Meurer <benny@xfce.org> Date: Fri, 24 Feb 2006 16:35:14 +0000 Subject: [PATCH] 2006-02-24 Benedikt Meurer <benny@xfce.org> * thunar-uca/thunar-uca-chooser.c: Fix two typos that already survived for too long. (Old svn revision: 20031) --- ChangeLog | 5 +++++ thunar-uca/thunar-uca-chooser.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 78b577af8..3ef0850f3 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 f66197a34..17b2c2cc2 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); -- GitLab