Oops, forgot to make the raw "%H:%M" string localizable (as it should be).

svn path=/trunk/; revision=19724
This commit is contained in:
William Rikard Lachance 2008-03-06 19:57:55 +00:00
parent 69cef720a4
commit b68d7cc100
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-03-06 William Lachance <wrlach@gmail.com>
* gtk/gtkfilechooserdefault.c: Oops, forgot to make the raw "%H:%M"
string localizable (as it should be).
2008-03-06 William Lachance <wrlach@gmail.com>
* gtk/gtkfilechooserdefault.c: Don't print "Today at" in front of

View File

@ -11087,7 +11087,7 @@ list_mtime_data_func (GtkTreeViewColumn *tree_column,
/* Translators: %H means "hours" and %M means "minutes" */
if (days_diff == 0)
format = "%H:%M";
format = _("%H:%M");
else if (days_diff == 1)
format = _("Yesterday at %H:%M");
else