diff options
author | Andre Klapper <a9016009@gmx.de> | 2007-06-16 19:23:59 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2007-06-16 19:23:59 +0800 |
commit | 1a09e6737e6a74c8786042445bdf71882ef85bcb (patch) | |
tree | 656ba41c05c9bbcc5c56a88912de49030ebb5996 | |
parent | 60f7f10f45ca4e15ae250e7cc9533dcd959bf324 (diff) | |
download | gsoc2013-evolution-1a09e6737e6a74c8786042445bdf71882ef85bcb.tar.gz gsoc2013-evolution-1a09e6737e6a74c8786042445bdf71882ef85bcb.tar.zst gsoc2013-evolution-1a09e6737e6a74c8786042445bdf71882ef85bcb.zip |
fix some bad mnemonics, mark string for translation. Fixes bug #439186.
2006-09-14 Andre Klapper <a9016009@gmx.de>
* itip-view.c: fix some bad mnemonics, mark string for
translation. Fixes bug #439186.
svn path=/trunk/; revision=33681
-rw-r--r-- | plugins/itip-formatter/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/itip-formatter/itip-view.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/plugins/itip-formatter/ChangeLog b/plugins/itip-formatter/ChangeLog index a5bbf025f5..3378bb0213 100644 --- a/plugins/itip-formatter/ChangeLog +++ b/plugins/itip-formatter/ChangeLog @@ -1,3 +1,8 @@ +2006-09-14 Andre Klapper <a9016009@gmx.de> + + * itip-view.c: fix some bad mnemonics, mark string for + translation. Fixes bug #439186. + 2007-06-02 Matthew Barnes <mbarnes@redhat.com> * itip-formatter.c: Fix a compilation warning. (#437584) diff --git a/plugins/itip-formatter/itip-view.c b/plugins/itip-formatter/itip-view.c index 3abd8f9822..ddefe4937d 100644 --- a/plugins/itip-formatter/itip-view.c +++ b/plugins/itip-formatter/itip-view.c @@ -1009,7 +1009,7 @@ itip_view_init (ItipView *view) priv->rsvp_box = gtk_vbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (vbox), priv->rsvp_box, FALSE, FALSE, 0); - priv->rsvp_check = gtk_check_button_new_with_mnemonic ("Send _reply to sender"); + priv->rsvp_check = gtk_check_button_new_with_mnemonic (_("Send _reply to sender")); gtk_widget_show (priv->rsvp_check); gtk_box_pack_start (GTK_BOX (priv->rsvp_box), priv->rsvp_check, FALSE, FALSE, 0); @@ -1037,7 +1037,7 @@ itip_view_init (ItipView *view) priv->update_box = gtk_vbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (vbox), priv->update_box, FALSE, FALSE, 0); - priv->update_check = gtk_check_button_new_with_mnemonic (_("Send u_pdates to attendees")); + priv->update_check = gtk_check_button_new_with_mnemonic (_("Send _updates to attendees")); gtk_widget_show (priv->update_check); gtk_box_pack_start (GTK_BOX (priv->update_box), priv->update_check, FALSE, FALSE, 0); @@ -1046,7 +1046,7 @@ itip_view_init (ItipView *view) gtk_widget_show (priv->recur_box); gtk_box_pack_start (GTK_BOX (vbox), priv->recur_box, FALSE, FALSE, 0); - priv->recur_check = gtk_check_button_new_with_mnemonic (_("A_pply to all instances")); + priv->recur_check = gtk_check_button_new_with_mnemonic (_("_Apply to all instances")); gtk_box_pack_start (GTK_BOX (priv->recur_box), priv->recur_check, FALSE, FALSE, 0); g_signal_connect (priv->recur_check, "toggled", G_CALLBACK (recur_toggled_cb), view); |