Save Index: why was year *after* time...

This commit is contained in:
Charles Dang 2021-11-01 05:54:52 -04:00
parent 4d61bb647b
commit 6cf37037f2

View file

@ -253,8 +253,8 @@ std::string save_info::format_time_local() const
{
if(std::tm* tm_l = std::localtime(&modified())) {
const std::string format = preferences::use_twelve_hour_clock_format()
? _("%a %b %d %I:%M %p %Y")
: _("%a %b %d %H:%M %Y");
? _("%a %b %d %Y, %I:%M %p")
: _("%a %b %d %Y, %H:%M");
return translation::strftime(format, tm_l);
}