diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-01-05 07:06:32 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2009-01-05 07:06:32 +0800 |
commit | df8dc18d0259afe40d31ceaa18131f7b8ad438f4 (patch) | |
tree | b01d881cd94bfbf21e990385e0fd27e4f33584da | |
parent | c4e651be820921e9ffe8f4bb812e8d026b8a8f9d (diff) | |
download | gsoc2013-evolution-df8dc18d0259afe40d31ceaa18131f7b8ad438f4.tar.gz gsoc2013-evolution-df8dc18d0259afe40d31ceaa18131f7b8ad438f4.tar.zst gsoc2013-evolution-df8dc18d0259afe40d31ceaa18131f7b8ad438f4.zip |
** Fixes bug #566566
2008-01-04 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #566566
* calendar/gui/e-itip-control.c (insert_rsvp):
Mark "RSVP" for translation.
svn path=/trunk/; revision=36985
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index f285e27a1e..f8f9c02517 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2008-01-04 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes bug #566566 + + * gui/e-itip-control.c (insert_rsvp): + Mark "RSVP" for translation. + 2008-12-31 Matthew Barnes <mbarnes@redhat.com> ** Fix for bug #562091 diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 5cafb4a106..96a1f5a8b6 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -2282,7 +2282,7 @@ insert_rsvp (GtkWidget *hbox, EItipControl *itip) priv = itip->priv; /* To translators: RSVP means "please reply" */ - btn = gtk_check_button_new_with_label ("RSVP"); + btn = gtk_check_button_new_with_label (_("RSVP")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (btn), TRUE); priv->rsvp = TRUE; |