diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 2 | ||||
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/mail-config.glade | 2 |
4 files changed, 14 insertions, 2 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; diff --git a/mail/ChangeLog b/mail/ChangeLog index 4285524742..d9af440011 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,12 @@ 2008-11-02 Matthew Barnes <mbarnes@redhat.com> + ** Fixes part of bug #559042 + + * mail-config.glade: + Remove extra space in translated string. + +2008-11-02 Matthew Barnes <mbarnes@redhat.com> + ** Fixes bug #557613 * em-utils.c (try_open_e_book): diff --git a/mail/mail-config.glade b/mail/mail-config.glade index 445f0bb175..69a9016535 100644 --- a/mail/mail-config.glade +++ b/mail/mail-config.glade @@ -5108,7 +5108,7 @@ For example: "Work" or "Personal"</property> <widget class="GtkCheckButton" id="magic_spacebar_checkbox"> <property name="visible">True</property> <property name="can_focus">True</property> - <property name="label" translatable="yes">Enable Magic S_pacebar </property> + <property name="label" translatable="yes">Enable Magic S_pacebar</property> <property name="use_underline">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> <property name="focus_on_click">True</property> |