mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-11 21:20:09 +00:00
Don't print "Today at" in front of the time for today's date. It's
redudant. (see bug #410517). svn path=/trunk/; revision=19723
This commit is contained in:
parent
6dc678ede3
commit
69cef720a4
@ -1,3 +1,8 @@
|
|||||||
|
2008-03-06 William Lachance <wrlach@gmail.com>
|
||||||
|
|
||||||
|
* gtk/gtkfilechooserdefault.c: Don't print "Today at" in front of
|
||||||
|
the time for today's date. It's redudant. (see bug #410517).
|
||||||
|
|
||||||
2008-03-06 Xan Lopez <xan@gnome.org>
|
2008-03-06 Xan Lopez <xan@gnome.org>
|
||||||
|
|
||||||
* gtk/gtkfixed.c: fix typo in documentation.
|
* gtk/gtkfixed.c: fix typo in documentation.
|
||||||
|
@ -11087,7 +11087,7 @@ list_mtime_data_func (GtkTreeViewColumn *tree_column,
|
|||||||
|
|
||||||
/* Translators: %H means "hours" and %M means "minutes" */
|
/* Translators: %H means "hours" and %M means "minutes" */
|
||||||
if (days_diff == 0)
|
if (days_diff == 0)
|
||||||
format = _("Today at %H:%M");
|
format = "%H:%M";
|
||||||
else if (days_diff == 1)
|
else if (days_diff == 1)
|
||||||
format = _("Yesterday at %H:%M");
|
format = _("Yesterday at %H:%M");
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user