July 7, 2026
11:24 p.m.
* zic.c (checkabbr): Fix typo introduced by my “zic: refactor calls to gettext” change (2026-06-21): the mp diagnostic was not translated as it should be. --- zic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zic.c b/zic.c index 0b9dc37f..d5e521d6 100644 --- a/zic.c +++ b/zic.c @@ -4215,7 +4215,7 @@ checkabbr(char const *string) if (*cp != '\0') mp = N_("time zone abbreviation differs from POSIX standard"); if (mp != NULL) - warning(N_("%s (%s)"), mp, string); + warning(N_("%s (%s)"), _(mp), string); } } -- 2.53.0