aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-11-03 12:58:12 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-11-03 12:58:12 +0800
commit9109e4a78c6fd69ebb45658a7f0c83edae15245f (patch)
treee13c1c209f651436ef15923f58ff041c9e04a495 /calendar
parent2f84127ab607dd8ae1ddcf52fa8bbec8a11d165c (diff)
downloadgsoc2013-evolution-9109e4a78c6fd69ebb45658a7f0c83edae15245f.tar
gsoc2013-evolution-9109e4a78c6fd69ebb45658a7f0c83edae15245f.tar.gz
gsoc2013-evolution-9109e4a78c6fd69ebb45658a7f0c83edae15245f.tar.bz2
gsoc2013-evolution-9109e4a78c6fd69ebb45658a7f0c83edae15245f.tar.lz
gsoc2013-evolution-9109e4a78c6fd69ebb45658a7f0c83edae15245f.tar.xz
gsoc2013-evolution-9109e4a78c6fd69ebb45658a7f0c83edae15245f.tar.zst
gsoc2013-evolution-9109e4a78c6fd69ebb45658a7f0c83edae15245f.zip
** Fixes bug #559042
2008-11-02 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #559042 * calendar/gui/e-itip-control.c (write_recurrence_piece): * mail/mail-config.glade: Remove extra spaces in translated strings. svn path=/trunk/; revision=36722
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/e-itip-control.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index c3e0711459..e711b5517b 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2008-11-02 Matthew Barnes <mbarnes@redhat.com>
+
+ * gui/e-itip-control.c (write_recurrence_piece):
+ Remove extra space in translated string.
+
2008-10-31 Matthew Barnes <mbarnes@redhat.com>
* gui/itip-utils.c (itip_send_comp):
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c
index 6089e08863..5cafb4a106 100644
--- a/calendar/gui/e-itip-control.c
+++ b/calendar/gui/e-itip-control.c
@@ -872,7 +872,7 @@ write_recurrence_piece (EItipControl *itip, ECalComponent *comp,
/* For Translators:'a total of %d times' is part of the sentence of the form 'event recurring every day,a total of % times.' %d is a digit*/
g_string_append_printf (
buffer, ngettext ("a total of %d time",
- " a total of %d times", r->count), r->count);
+ "a total of %d times", r->count), r->count);
} else if (!icaltime_is_null_time (r->until)) {
ECalComponentDateTime dt;