diff options
author | Karsten Bräckelmann <kbrae@src.gnome.org> | 2006-02-13 05:53:32 +0800 |
---|---|---|
committer | Karsten Bräckelmann <kbrae@src.gnome.org> | 2006-02-13 05:53:32 +0800 |
commit | 5ab22ee4d15118ec12d28f9555e44f0765dd6201 (patch) | |
tree | 41fbdc4d4b8c3be9d8fe07fad113f3fe20377f15 | |
parent | be4e1681c1d37adb466b8f64c261f555d5c6b3d5 (diff) | |
download | gsoc2013-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
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/dialogs/recurrence-page.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index d219d420b4..40a0352048 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2006-02-12 Karsten Bräckelmann <guenther@rudersport.de> + + * gui/dialogs/recurrence-page.c (make_recur_month_num_menu): + Marked strings for translation. Fixes bug #330863. + 2006-02-12 Andre Klapper <a9016009@gmx.de> * gui/dialogs/recurrence-page.glade: 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); |