aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2011-10-02 17:52:59 +0800
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2011-10-03 05:15:11 +0800
commit8e3482788cfef1ecc719a4bf2dd727950055c3a7 (patch)
tree4ac3244753130f7891a636f5ef106ae8f272316f /plugins
parentea9e4222a3cf566846811e8ebccfec68da379c84 (diff)
downloadgsoc2013-evolution-8e3482788cfef1ecc719a4bf2dd727950055c3a7.tar
gsoc2013-evolution-8e3482788cfef1ecc719a4bf2dd727950055c3a7.tar.gz
gsoc2013-evolution-8e3482788cfef1ecc719a4bf2dd727950055c3a7.tar.bz2
gsoc2013-evolution-8e3482788cfef1ecc719a4bf2dd727950055c3a7.tar.lz
gsoc2013-evolution-8e3482788cfef1ecc719a4bf2dd727950055c3a7.tar.xz
gsoc2013-evolution-8e3482788cfef1ecc719a4bf2dd727950055c3a7.tar.zst
gsoc2013-evolution-8e3482788cfef1ecc719a4bf2dd727950055c3a7.zip
itip-formatter: end some strings with colon instead of full stop
Diffstat (limited to 'plugins')
-rw-r--r--plugins/itip-formatter/itip-view.c6
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;