From 928eecf161ff14c7baeb87142f096e262edf582d Mon Sep 17 00:00:00 2001 From: Pablo Saratxaga Date: Wed, 24 Feb 1999 18:53:31 +0000 Subject: Updated spanish language file; and some i18n improvements svn path=/trunk/; revision=692 --- calendar/month-view.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'calendar/month-view.c') 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 +#include #include #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, -- cgit