diff options
author | Pablo Saratxaga <pablo@src.gnome.org> | 1999-02-25 02:53:31 +0800 |
---|---|---|
committer | Pablo Saratxaga <pablo@src.gnome.org> | 1999-02-25 02:53:31 +0800 |
commit | 928eecf161ff14c7baeb87142f096e262edf582d (patch) | |
tree | f1089542f1011b6eb8cb73b4d2de8d3295856cf0 /calendar/month-view.c | |
parent | 6b377084249ce3ada26cf168cf1a975d877ff151 (diff) | |
download | gsoc2013-evolution-928eecf161ff14c7baeb87142f096e262edf582d.tar gsoc2013-evolution-928eecf161ff14c7baeb87142f096e262edf582d.tar.gz gsoc2013-evolution-928eecf161ff14c7baeb87142f096e262edf582d.tar.bz2 gsoc2013-evolution-928eecf161ff14c7baeb87142f096e262edf582d.tar.lz gsoc2013-evolution-928eecf161ff14c7baeb87142f096e262edf582d.tar.xz gsoc2013-evolution-928eecf161ff14c7baeb87142f096e262edf582d.tar.zst gsoc2013-evolution-928eecf161ff14c7baeb87142f096e262edf582d.zip |
Updated spanish language file;
and some i18n improvements
svn path=/trunk/; revision=692
Diffstat (limited to 'calendar/month-view.c')
-rw-r--r-- | calendar/month-view.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/month-view.c b/calendar/month-view.c index 2759dada2f..3d695492ba 100644 --- a/calendar/month-view.c +++ b/calendar/month-view.c @@ -6,6 +6,7 @@ */ #include <config.h> +#include <gnome.h> #include <libgnomeui/gnome-canvas-text.h> #include "eventedit.h" #include "layout.h" @@ -84,7 +85,7 @@ do_quick_view_popup (MonthView *mv, GdkEventButton *event, int day) list = calendar_get_events_in_range (mv->calendar->cal, day_begin_time, day_end_time); - strftime (date_str, sizeof (date_str), "%a %b %d %Y", localtime (&day_begin_time)); + strftime (date_str, sizeof (date_str), _("%a %b %d %Y"), localtime (&day_begin_time)); qv = quick_view_new (mv->calendar, date_str, list); quick_view_do_popup (QUICK_VIEW (qv), event); @@ -751,7 +752,7 @@ month_view_set (MonthView *mv, time_t month) mv->year = tm->tm_year + 1900; mv->month = tm->tm_mon; - strftime (buf, 100, "%B %Y", tm); + strftime (buf, 100, _("%B %Y"), tm); gnome_canvas_item_set (mv->title, "text", buf, |