diff options
author | Milan Crha <mcrha@redhat.com> | 2009-12-24 00:11:59 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-12-24 00:11:59 +0800 |
commit | 3f36489c67887491385086180147a7e4475a349d (patch) | |
tree | 7329bf876160e9d9db57630303aa2e128708fb1c /calendar/gui/e-itip-control.c | |
parent | 6df525477e6bbee76f53a989f51f8aace6cd58cf (diff) | |
download | gsoc2013-evolution-3f36489c67887491385086180147a7e4475a349d.tar.gz gsoc2013-evolution-3f36489c67887491385086180147a7e4475a349d.tar.zst gsoc2013-evolution-3f36489c67887491385086180147a7e4475a349d.zip |
Bug #329693 - Add contexts to translated "None" words
Diffstat (limited to 'calendar/gui/e-itip-control.c')
-rw-r--r-- | calendar/gui/e-itip-control.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index a91812ce0c..44ac2215e4 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -1144,7 +1144,8 @@ write_html (EItipControl *itip, const gchar *itip_desc, const gchar *itip_title, /* Summary */ e_cal_component_get_summary (priv->comp, &text); - str = g_strdup_printf ("<i>%s:</i>", _("None")); + /* Translators: "None" used as a default value for events without Summary received by mail */ + str = g_strdup_printf ("<i>%s</i>", C_("cal-itip", "None")); html = text.value ? e_text_to_html_full (text.value, E_TEXT_TO_HTML_CONVERT_NL, 0) : str; g_string_append_printf ( |