diff options
Diffstat (limited to 'gtk/gtkcalendar.c')
-rw-r--r-- | gtk/gtkcalendar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkcalendar.c b/gtk/gtkcalendar.c index a7cf0bfee1..5e68c5de63 100644 --- a/gtk/gtkcalendar.c +++ b/gtk/gtkcalendar.c @@ -2082,7 +2082,7 @@ calendar_paint_week_numbers (GtkCalendar *calendar) * digits. That needs support from your system and locale definition * too. */ - g_snprintf (buffer, sizeof (buffer), _("calendar:week:digits|%d"), week); + g_snprintf (buffer, sizeof (buffer), Q_("calendar:week:digits|%d"), week); pango_layout_set_text (layout, buffer, -1); pango_layout_get_pixel_extents (layout, NULL, &logical_rect); @@ -2207,7 +2207,7 @@ calendar_paint_day (GtkCalendar *calendar, * digits. That needs support from your system and locale definition * too. */ - g_snprintf (buffer, sizeof (buffer), _("calendar:day:digits|%d"), day); + g_snprintf (buffer, sizeof (buffer), Q_("calendar:day:digits|%d"), day); layout = gtk_widget_create_pango_layout (widget, buffer); pango_layout_get_pixel_extents (layout, NULL, &logical_rect); |