Add translation help comment, for issue #2335

This commit is contained in:
Marianne Gagnon 2015-10-17 20:47:19 -04:00
parent fcfbd82a0e
commit f909619413

View File

@ -46,6 +46,7 @@ std::string StkTime::toString(const TimeType &tt)
{
const struct tm *t = gmtime(&tt);
//I18N: Format for dates (%d = day, %m = month, %Y = year). See http://www.cplusplus.com/reference/ctime/strftime/ for more info about date formats.
core::stringw w_date_format = translations->w_gettext(N_("%d/%m/%Y"));
core::stringc c_date_format(w_date_format.c_str());