diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-04-21 10:42:52 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-04-21 10:42:52 -0700 |
commit | 8fe3ee67adcd2ee9372c7044fa311ce55eb285b4 (patch) | |
tree | de9808909692a95575e34d29cf0eb5b832b5c851 /date.c | |
parent | Merge branch 'km/avoid-non-function-return-in-rebase' (diff) | |
parent | i18n: mention "TRANSLATORS:" marker in Documentation/CodingGuidelines (diff) | |
download | tgif-8fe3ee67adcd2ee9372c7044fa311ce55eb285b4.tar.xz |
Merge branch 'jx/i18n'
* jx/i18n:
i18n: mention "TRANSLATORS:" marker in Documentation/CodingGuidelines
i18n: only extract comments marked with "TRANSLATORS:"
i18n: remove obsolete comments for translators in diffstat generation
i18n: fix uncatchable comments for translators in date.c
Diffstat (limited to 'date.c')
-rw-r--r-- | date.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -144,8 +144,8 @@ void show_date_relative(unsigned long time, int tz, if (months) { struct strbuf sb = STRBUF_INIT; strbuf_addf(&sb, Q_("%lu year", "%lu years", years), years); - /* TRANSLATORS: "%s" is "<n> years" */ strbuf_addf(timebuf, + /* TRANSLATORS: "%s" is "<n> years" */ Q_("%s, %lu month ago", "%s, %lu months ago", months), sb.buf, months); strbuf_release(&sb); |