Don't use gettext inside of ngettext
This commit is contained in:
parent
38a7e023f9
commit
9e5d50a7a5
1 changed files with 2 additions and 2 deletions
|
@ -604,8 +604,8 @@ midori_history_treeview_render_text_cb (GtkTreeViewColumn* column,
|
|||
}
|
||||
else if (age > 1)
|
||||
{
|
||||
sdate = g_strdup_printf (ngettext (_("%d day ago"),
|
||||
_("%d days ago"), (gint)age), (gint)age);
|
||||
sdate = g_strdup_printf (ngettext ("%d day ago",
|
||||
"%d days ago", (gint)age), (gint)age);
|
||||
g_object_set (renderer, "text", sdate, NULL);
|
||||
g_free (sdate);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue