aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Stimberg <marcelcoding@googlemail.com>2009-07-31 20:17:41 +0800
committerMilan Crha <mcrha@redhat.com>2009-07-31 20:17:41 +0800
commit0acc79917d910fc1bd7043e4f0c96a58061c65c9 (patch)
tree8f502670c093b23c082634ba0bec9029422f4381
parent64f2b1e73e1bcadbf6dbc94ec0447af0063447f1 (diff)
downloadgsoc2013-evolution-0acc79917d910fc1bd7043e4f0c96a58061c65c9.tar
gsoc2013-evolution-0acc79917d910fc1bd7043e4f0c96a58061c65c9.tar.gz
gsoc2013-evolution-0acc79917d910fc1bd7043e4f0c96a58061c65c9.tar.bz2
gsoc2013-evolution-0acc79917d910fc1bd7043e4f0c96a58061c65c9.tar.lz
gsoc2013-evolution-0acc79917d910fc1bd7043e4f0c96a58061c65c9.tar.xz
gsoc2013-evolution-0acc79917d910fc1bd7043e4f0c96a58061c65c9.tar.zst
gsoc2013-evolution-0acc79917d910fc1bd7043e4f0c96a58061c65c9.zip
Bug #328361 - Support for "Fifth Sunday *of the month*"
-rw-r--r--calendar/gui/dialogs/recurrence-page.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/recurrence-page.c b/calendar/gui/dialogs/recurrence-page.c
index 4b28856e82..bbc7caa473 100644
--- a/calendar/gui/dialogs/recurrence-page.c
+++ b/calendar/gui/dialogs/recurrence-page.c
@@ -56,6 +56,7 @@ enum month_num_options {
MONTH_NUM_SECOND,
MONTH_NUM_THIRD,
MONTH_NUM_FOURTH,
+ MONTH_NUM_FIFTH,
MONTH_NUM_LAST,
MONTH_NUM_DAY,
MONTH_NUM_OTHER
@@ -66,6 +67,7 @@ static const gint month_num_options_map[] = {
MONTH_NUM_SECOND,
MONTH_NUM_THIRD,
MONTH_NUM_FOURTH,
+ MONTH_NUM_FIFTH,
MONTH_NUM_LAST,
MONTH_NUM_DAY,
MONTH_NUM_OTHER,
@@ -1028,6 +1030,11 @@ make_recur_month_num_combo (gint month_index)
* the name of a week day (like 'Monday' or 'Friday') always follow.
*/
N_("fourth"),
+ /* TRANSLATORS: Entire string is for example: This appointment recurs/Every [x] month(s) on the [fifth] [Monday] [forever]'
+ * (dropdown menu options are in [square brackets]). This means that after 'fifth', either the string 'day' or
+ * the name of a week day (like 'Monday' or 'Friday') always follow.
+ */
+ N_("fifth"),
/* TRANSLATORS: Entire string is for example: This appointment recurs/Every [x] month(s) on the [last] [Monday] [forever]'
* (dropdown menu options are in [square brackets]). This means that after 'last', either the string 'day' or
* the name of a week day (like 'Monday' or 'Friday') always follow.