aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorAndre Klapper <a9016009@gmx.de>2007-06-16 19:23:59 +0800
committerAndre Klapper <aklapper@src.gnome.org>2007-06-16 19:23:59 +0800
commit1a09e6737e6a74c8786042445bdf71882ef85bcb (patch)
tree656ba41c05c9bbcc5c56a88912de49030ebb5996 /plugins
parent60f7f10f45ca4e15ae250e7cc9533dcd959bf324 (diff)
downloadgsoc2013-evolution-1a09e6737e6a74c8786042445bdf71882ef85bcb.tar
gsoc2013-evolution-1a09e6737e6a74c8786042445bdf71882ef85bcb.tar.gz
gsoc2013-evolution-1a09e6737e6a74c8786042445bdf71882ef85bcb.tar.bz2
gsoc2013-evolution-1a09e6737e6a74c8786042445bdf71882ef85bcb.tar.lz
gsoc2013-evolution-1a09e6737e6a74c8786042445bdf71882ef85bcb.tar.xz
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
Diffstat (limited to 'plugins')
-rw-r--r--plugins/itip-formatter/ChangeLog5
-rw-r--r--plugins/itip-formatter/itip-view.c6
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);