aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Klapper <ak-47@gmx.net>2012-02-17 03:07:14 +0800
committerAndre Klapper <ak-47@gmx.net>2012-02-27 19:22:17 +0800
commitdcb18338d20857356d27509f615f8e2875471d72 (patch)
tree6c006b247aaeaae5d4a83e2c23e6228a9a9639eb
parent8d26722fa64a6c9861335ac0d3ef904b6bdfdeb0 (diff)
downloadgsoc2013-evolution-dcb18338d20857356d27509f615f8e2875471d72.tar
gsoc2013-evolution-dcb18338d20857356d27509f615f8e2875471d72.tar.gz
gsoc2013-evolution-dcb18338d20857356d27509f615f8e2875471d72.tar.bz2
gsoc2013-evolution-dcb18338d20857356d27509f615f8e2875471d72.tar.lz
gsoc2013-evolution-dcb18338d20857356d27509f615f8e2875471d72.tar.xz
gsoc2013-evolution-dcb18338d20857356d27509f615f8e2875471d72.tar.zst
gsoc2013-evolution-dcb18338d20857356d27509f615f8e2875471d72.zip
Add translator comments to strings
-rw-r--r--plugins/calendar-file/calendar-file.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/calendar-file/calendar-file.c b/plugins/calendar-file/calendar-file.c
index ea85dabc6c..7d3aa8d4ff 100644
--- a/plugins/calendar-file/calendar-file.c
+++ b/plugins/calendar-file/calendar-file.c
@@ -209,8 +209,11 @@ e_calendar_file_customs (EPlugin *epl,
gtk_box_pack_start ((GtkBox *) box2, w1, FALSE, TRUE, 2);
w2 = gtk_combo_box_text_new ();
+ /* Translators: This is one setting for when to refresh a memo/calendar/tasks list */
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (w2), _("On open"));
+ /* Translators: This is one setting for when to refresh a memo/calendar/tasks list */
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (w2), _("On file change"));
+ /* Translators: This is one setting for when to refresh a memo/calendar/tasks list */
gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (w2), _("Periodically"));
gtk_label_set_mnemonic_widget (GTK_LABEL (w1), w2);
gtk_box_pack_start ((GtkBox *) box2, w2, FALSE, TRUE, 2);