Mercurial > pidgin
changeset 13120:f62d14ba98f6
[gaim-migrate @ 15482]
In a previous commit, I asked:
> Use gaim_utf8_strftime() in gaim_str_sub_away_formatters(). Should
> these format strings be localized?
Mark's response:
It wouldn't hurt for them to be localized.
-Mark
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Sat, 04 Feb 2006 21:12:03 +0000 |
parents | fcde3faa1f57 |
children | e2a94ab60a7e |
files | src/util.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/util.c Sat Feb 04 20:55:52 2006 +0000 +++ b/src/util.c Sat Feb 04 21:12:03 2006 +0000 @@ -2560,12 +2560,12 @@ break; case 'd': /* append date */ - g_string_append(cpy, gaim_utf8_strftime("%m/%d/%Y", tme)); + g_string_append(cpy, gaim_date_format_short(tme)); c++; break; case 't': /* append time */ - g_string_append(cpy, gaim_utf8_strftime("%I:%M:%S %p", tme)); + g_string_append(cpy, gaim_time_format(tme)); c++; break; default: