datetime: Remove the translation marker for a warning message

This commit is contained in:
Emmanuele Bassi 2010-08-25 00:27:49 +01:00
parent 96dc06e6e0
commit 0f87f09397

View File

@ -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;