From b5c6617560370cb4d96d3fd159874948f50d9ec9 Mon Sep 17 00:00:00 2001 From: Ushveen Kaur Date: Fri, 29 Sep 2006 08:27:03 +0000 Subject: ** Fixes bug #261082 2006-09-28 Ushveen Kaur ** Fixes bug #261082 * gui/e-itip-control.c: (write_recurrence_piece): Translator comments added. svn path=/trunk/; revision=32828 --- calendar/gui/e-itip-control.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'calendar/gui/e-itip-control.c') diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 0ebea5d7fc..82808cee70 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -767,6 +767,9 @@ write_recurrence_piece (EItipControl *itip, ECalComponent *comp, switch (r->freq) { case ICAL_DAILY_RECURRENCE: + /* For Translators: In this can also be translated as "With the period of %d + day/days", where %d is a number. The entire sentence is of the form "Recurring: + Every %d day/days" */ /* For Translators : 'Every day' is event Recurring every day */ /* For Translators : 'Every %d days' is event Recurring every %d days. %d is a digit */ sprintf (buffer, ngettext("Every day", "Every %d days", r->interval), r->interval); @@ -774,6 +777,9 @@ write_recurrence_piece (EItipControl *itip, ECalComponent *comp, case ICAL_WEEKLY_RECURRENCE: if (r->by_day[0] == ICAL_RECURRENCE_ARRAY_MAX) { + /* For Translators: In this can also be translated as "With the period of %d + week/weeks", where %d is a number. The entire sentence is of the form "Recurring: + Every %d week/weeks" */ /* For Translators : 'Every week' is event Recurring every week */ /* For Translators : 'Every %d weeks' is event Recurring every %d weeks. %d is a digit */ sprintf (buffer, ngettext("Every week", "Every %d weeks", r->interval), r->interval); @@ -819,6 +825,9 @@ write_recurrence_piece (EItipControl *itip, ECalComponent *comp, len = strlen (buffer); buffer += len; size -= len; + /* For Translators: In this can also be translated as "With the period of %d + month/months", where %d is a number. The entire sentence is of the form "Recurring: + Every %d month/months" */ /* For Translators : 'every month' is part of the sentence 'event recurring on the (nth) day of every month.' */ /* For Translators : 'every %d months' is part of the sentence 'event recurring on the (nth) day of every %d months.' %d is a digit */ @@ -826,6 +835,9 @@ write_recurrence_piece (EItipControl *itip, ECalComponent *comp, break; case ICAL_YEARLY_RECURRENCE: + /* For Translators: In this can also be translated as "With the period of %d + year/years", where %d is a number. The entire sentence is of the form "Recurring: + Every %d year/years" */ /* For Translators : 'Every year' is event Recurring every year */ /* For Translators : 'Every %d years' is event Recurring every %d years. %d is a digit */ sprintf (buffer, ngettext("Every year", "Every %d years", r->interval), r->interval); -- cgit v1.2.3