diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2001-01-03 02:16:45 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-01-03 02:16:45 +0800 |
commit | 59b1e25cfdb4253a94df4392d1e2fb69a6901515 (patch) | |
tree | 4bf75e92066b0762ac1653320bc98ca61af1657f /calendar/gui/goto-dialog.glade.h | |
parent | 59c0cc7f80c6e5ff909a296fd1dbdaa8af66cda6 (diff) | |
download | gsoc2013-evolution-59b1e25cfdb4253a94df4392d1e2fb69a6901515.tar gsoc2013-evolution-59b1e25cfdb4253a94df4392d1e2fb69a6901515.tar.gz gsoc2013-evolution-59b1e25cfdb4253a94df4392d1e2fb69a6901515.tar.bz2 gsoc2013-evolution-59b1e25cfdb4253a94df4392d1e2fb69a6901515.tar.lz gsoc2013-evolution-59b1e25cfdb4253a94df4392d1e2fb69a6901515.tar.xz gsoc2013-evolution-59b1e25cfdb4253a94df4392d1e2fb69a6901515.tar.zst gsoc2013-evolution-59b1e25cfdb4253a94df4392d1e2fb69a6901515.zip |
Do not compose strings so that they can be localized correctly. Also,
2001-01-02 Federico Mena Quintero <federico@helixcode.com>
* gui/dialogs/delete-comp.c (delete_component_dialog): Do not
compose strings so that they can be localized correctly. Also,
convert from UTF8 into the font's encoding. Fixes bug #1030.
* gui/e-calendar-table.c (delete_component): Pass the widget
argument to delete_component_dialog().
* gui/e-day-view.c (e_day_view_on_delete_appointment): Likewise.
* gui/e-week-view.c (e_week_view_on_delete_appointment): Likewise.
* gui/event-editor.c (file_delete_cb): Likewise.
* gui/calendar-commands.c: Use BONOBO_UI_VERB() instead of
BONOBO_UI_UNSAFE_VERB(). Guess what, all of our handler
signatures were wrong.
* gui/event-editor.c: Likewise.
* gui/dialogs/task-editor.c: Likewise.
* gui/goto-dialog.glade: Added some spacing between the month/year
widgets and the calendar widget.
svn path=/trunk/; revision=7211
Diffstat (limited to 'calendar/gui/goto-dialog.glade.h')
-rw-r--r-- | calendar/gui/goto-dialog.glade.h | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/calendar/gui/goto-dialog.glade.h b/calendar/gui/goto-dialog.glade.h index 5d970035fc..8701da0ec8 100644 --- a/calendar/gui/goto-dialog.glade.h +++ b/calendar/gui/goto-dialog.glade.h @@ -6,16 +6,15 @@ gchar *s = N_("Go To Date"); gchar *s = N_("Go To Today"); -gchar *s = N_("January\n" - "February\n" - "March\n" - "April\n" - "May\n" - "June\n" - "July\n" - "August\n" - "September\n" - "October\n" - "November\n" - "December\n" - ""); +gchar *s = N_("January"); +gchar *s = N_("February"); +gchar *s = N_("March"); +gchar *s = N_("April"); +gchar *s = N_("May"); +gchar *s = N_("June"); +gchar *s = N_("July"); +gchar *s = N_("August"); +gchar *s = N_("September"); +gchar *s = N_("October"); +gchar *s = N_("November"); +gchar *s = N_("December"); |