Make format_time_summary display 4-digit years

This commit is contained in:
Alexander van Gessel 2014-02-08 03:07:23 +01:00
parent 0f1e3fab3e
commit 04262d12aa

View file

@ -62,7 +62,7 @@ std::string format_time_summary(time_t t) {
}
} else {
// save is from a different year
format_string = _("%b %d %y");
format_string = _("%b %d %Y");
}
assert(format_string);