# HG changeset patch # User Mark Doliner # Date 1218174880 0 # Node ID 187a3649f04bd8d4b61aef4674c85ce62b3ffd3e # Parent d82d0791b8f8a9c6285eba579a46fca71a2cfbb4 Add a note for translators, because they probably have no idea what they're supposed to do with this. diff -r d82d0791b8f8 -r 187a3649f04b libpurple/util.c --- a/libpurple/util.c Thu Aug 07 18:47:36 2008 +0000 +++ b/libpurple/util.c Fri Aug 08 05:54:40 2008 +0000 @@ -718,6 +718,12 @@ const char * purple_date_format_long(const struct tm *tm) { + /* + * This string determines how some dates are displayed. The default + * string "%x %X" shows the date then the time. Translators can + * change this to "%X %x" if they want the time to be shown first, + * followed by the date. + */ return purple_utf8_strftime(_("%x %X"), tm); }