diff options
author | Andre Klapper <a9016009@gmx.de> | 2005-12-22 18:12:06 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2005-12-22 18:12:06 +0800 |
commit | b107c8e591e1b9297383d917bc954081006d4f3a (patch) | |
tree | 5cd045890f48cd2269d4d4216edc17a71b8cec52 | |
parent | 9fca098c4bf3f9eb4789a8bf4e8d8c3bc9b5f270 (diff) | |
download | gsoc2013-evolution-b107c8e591e1b9297383d917bc954081006d4f3a.tar.gz gsoc2013-evolution-b107c8e591e1b9297383d917bc954081006d4f3a.tar.zst gsoc2013-evolution-b107c8e591e1b9297383d917bc954081006d4f3a.zip |
added translator comments for 'RSVP', partial fix for bug 261071
2005-12-22 Andre Klapper <a9016009@gmx.de>
* gui/e-itip-control.c, gui/e-meeting-list-view.c:
added translator comments for 'RSVP', partial fix for bug 261071
svn path=/trunk/; revision=30931
-rw-r--r-- | calendar/gui/e-itip-control.c | 1 | ||||
-rw-r--r-- | calendar/gui/e-meeting-list-view.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index f840856bd7..eaa31a9b13 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -2190,6 +2190,7 @@ insert_rsvp (GtkWidget *hbox, EItipControl *itip) priv = itip->priv; + /* To translators: RSVP means "please reply" */ btn = gtk_check_button_new_with_label ("RSVP"); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (btn), TRUE); priv->rsvp = TRUE; diff --git a/calendar/gui/e-meeting-list-view.c b/calendar/gui/e-meeting-list-view.c index ce7f0c9754..2c82d89bd6 100644 --- a/calendar/gui/e-meeting-list-view.c +++ b/calendar/gui/e-meeting-list-view.c @@ -498,6 +498,7 @@ build_table (EMeetingListView *lview) renderer = e_cell_renderer_combo_new (); g_object_set (G_OBJECT (renderer), "list", get_rsvp_strings (), "editable", TRUE, NULL); + /* To translators: RSVP means "please reply" */ pos = gtk_tree_view_insert_column_with_attributes (view, -1, _("RSVP"), renderer, "text", E_MEETING_STORE_RSVP_COL, NULL); |