GNOME Bugzilla – Bug 699635
"%d hours ago" and "%d days ago" need ngettext
Last modified: 2013-06-30 11:23:57 UTC
Code in libgitg/gitg-commit.vala : { return "%d hours ago".printf((int)Math.round(t / 3600)); } else if (t < 3600 * 24 * 6) { return "%d days ago".printf((int)Math.round(t / (3600 * 24))); } That doesn't work, see https://live.gnome.org/TranslationProject/DevGuidelines/Plurals
This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.