From 0f87f09397ef9a796258ec3200e0e987a761e505 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 25 Aug 2010 00:27:49 +0100 Subject: [PATCH] datetime: Remove the translation marker for a warning message --- glib/gdatetime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/glib/gdatetime.c b/glib/gdatetime.c index b7cc7aa8f..349a93735 100644 --- a/glib/gdatetime.c +++ b/glib/gdatetime.c @@ -267,8 +267,9 @@ get_weekday_name_abbr (gint day) return C_("GDateTime", "Sat"); case 7: return C_("GDateTime", "Sun"); + default: - g_warning (_("Invalid week day number %d"), day); + g_warning ("Invalid week day number %d", day); } return NULL;