aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/recurrence-page.c
diff options
context:
space:
mode:
authorKarsten Bräckelmann <kbrae@src.gnome.org>2006-02-13 05:53:32 +0800
committerKarsten Bräckelmann <kbrae@src.gnome.org>2006-02-13 05:53:32 +0800
commit5ab22ee4d15118ec12d28f9555e44f0765dd6201 (patch)
tree41fbdc4d4b8c3be9d8fe07fad113f3fe20377f15 /calendar/gui/dialogs/recurrence-page.c
parentbe4e1681c1d37adb466b8f64c261f555d5c6b3d5 (diff)
downloadgsoc2013-evolution-5ab22ee4d15118ec12d28f9555e44f0765dd6201.tar
gsoc2013-evolution-5ab22ee4d15118ec12d28f9555e44f0765dd6201.tar.gz
gsoc2013-evolution-5ab22ee4d15118ec12d28f9555e44f0765dd6201.tar.bz2
gsoc2013-evolution-5ab22ee4d15118ec12d28f9555e44f0765dd6201.tar.lz
gsoc2013-evolution-5ab22ee4d15118ec12d28f9555e44f0765dd6201.tar.xz
gsoc2013-evolution-5ab22ee4d15118ec12d28f9555e44f0765dd6201.tar.zst
gsoc2013-evolution-5ab22ee4d15118ec12d28f9555e44f0765dd6201.zip
mark strings for translation
svn path=/trunk/; revision=31492
Diffstat (limited to 'calendar/gui/dialogs/recurrence-page.c')
-rw-r--r--calendar/gui/dialogs/recurrence-page.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/dialogs/recurrence-page.c b/calendar/gui/dialogs/recurrence-page.c
index 56db01e25c..d428292a52 100644
--- a/calendar/gui/dialogs/recurrence-page.c
+++ b/calendar/gui/dialogs/recurrence-page.c
@@ -1044,19 +1044,19 @@ make_recur_month_num_menu (int month_index)
* the month to setup an appointment recurrence. The entire string is for example: This appointment recurs/Every [x] month(s)
* on the [Other date] [1st to 10th] [7th] [forever]' (dropdown menu options are in [square brackets]).
*/
- item = make_recur_month_num_submenu ("1st to 10th", 0, 10);
+ item = make_recur_month_num_submenu (_("1st to 10th"), 0, 10);
gtk_menu_shell_append(GTK_MENU_SHELL(submenu), item);
/* TRANSLATORS: This is a submenu option string to split the date range into three submenus to choose the exact day of
* the month to setup an appointment recurrence. The entire string is for example: This appointment recurs/Every [x] month(s)
* on the [Other date] [11th to 20th] [17th] [forever]' (dropdown menu options are in [square brackets]).
*/
- item = make_recur_month_num_submenu ("11th to 20th", 10, 20);
+ item = make_recur_month_num_submenu (_("11th to 20th"), 10, 20);
gtk_menu_shell_append(GTK_MENU_SHELL(submenu), item);
/* TRANSLATORS: This is a submenu option string to split the date range into three submenus to choose the exact day of
* the month to setup an appointment recurrence. The entire string is for example: This appointment recurs/Every [x] month(s)
* on the [Other date] [21th to 31th] [27th] [forever]' (dropdown menu options are in [square brackets]).
*/
- item = make_recur_month_num_submenu ("21st to 31st", 20, 31);
+ item = make_recur_month_num_submenu (_("21st to 31st"), 20, 31);
gtk_menu_shell_append(GTK_MENU_SHELL(submenu), item);
gtk_menu_item_set_submenu (GTK_MENU_ITEM (submenu_item), submenu);