Bug 745265 - Segfault in generate_statusbar_lastmodified_message on Windows

Actually change the default date format without AM/PM.
This commit is contained in:
John Ralls 2015-03-13 09:51:33 +09:00
parent f11d9844f5
commit 7c13591c04

View File

@ -1668,7 +1668,7 @@ static gchar *generate_statusbar_lastmodified_message()
g_date_time_format (gdt, (dummy_strftime_has_ampm &&
strlen(dummy_strftime_has_ampm) > 0)
? _("Last modified on %a, %b %e, %Y at %I:%M%P")
: _("Last modified on %a, %b %e, %Y at %H:%M"));
: _("Last modified on %x %X"));
g_date_time_unref (gdt);