diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2011-10-02 17:52:59 +0800 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2011-10-03 05:15:11 +0800 |
commit | 8e3482788cfef1ecc719a4bf2dd727950055c3a7 (patch) | |
tree | 4ac3244753130f7891a636f5ef106ae8f272316f /plugins/itip-formatter | |
parent | ea9e4222a3cf566846811e8ebccfec68da379c84 (diff) | |
download | gsoc2013-evolution-8e3482788cfef1ecc719a4bf2dd727950055c3a7.tar.gz gsoc2013-evolution-8e3482788cfef1ecc719a4bf2dd727950055c3a7.tar.zst gsoc2013-evolution-8e3482788cfef1ecc719a4bf2dd727950055c3a7.zip |
itip-formatter: end some strings with colon instead of full stop
Diffstat (limited to 'plugins/itip-formatter')
-rw-r--r-- | plugins/itip-formatter/itip-view.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/itip-formatter/itip-view.c b/plugins/itip-formatter/itip-view.c index 149e01b185..5163d25e02 100644 --- a/plugins/itip-formatter/itip-view.c +++ b/plugins/itip-formatter/itip-view.c @@ -411,19 +411,19 @@ set_calendar_sender_text (ItipView *view) if (priv->organizer_sentby) sender = dupe_first_bold (_("%s through %s has canceled the following meeting:"), organizer, priv->organizer_sentby); else - sender = dupe_first_bold (_("%s has canceled the following meeting."), organizer, NULL); + sender = dupe_first_bold (_("%s has canceled the following meeting:"), organizer, NULL); break; case ITIP_VIEW_MODE_COUNTER: if (priv->attendee_sentby) sender = dupe_first_bold (_("%s through %s has proposed the following meeting changes."), attendee, priv->attendee_sentby); else - sender = dupe_first_bold (_("%s has proposed the following meeting changes."), attendee, NULL); + sender = dupe_first_bold (_("%s has proposed the following meeting changes:"), attendee, NULL); break; case ITIP_VIEW_MODE_DECLINECOUNTER: if (priv->organizer_sentby) sender = dupe_first_bold (_("%s through %s has declined the following meeting changes:"), organizer, priv->organizer_sentby); else - sender = dupe_first_bold (_("%s has declined the following meeting changes."), organizer, NULL); + sender = dupe_first_bold (_("%s has declined the following meeting changes:"), organizer, NULL); break; default: break; |