From: Darrick J. Wong Date: Sun, 22 Feb 2026 22:41:02 +0000 (-0800) Subject: libfrog: fix missing gettext call in current_fixed_time X-Git-Tag: v7.0.0~96 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a6ff7e6e175cc3c2b4128b1bd0f978a699a73550;p=xfsprogs-dev.git libfrog: fix missing gettext call in current_fixed_time This error message can be seen by regular users, so it should be looked up in the internationalization catalogue with gettext. Signed-off-by: "Darrick J. Wong" Reviewed-by: Christoph Hellwig --- diff --git a/libfrog/util.c b/libfrog/util.c index d49cf724..5bae5bab 100644 --- a/libfrog/util.c +++ b/libfrog/util.c @@ -83,8 +83,8 @@ current_fixed_time( epoch = strtoll(source_date_epoch, &endp, 10); if (errno != 0 || *endp != '\0') { fprintf(stderr, - "%s: SOURCE_DATE_EPOCH '%s' invalid timestamp, ignoring.\n", - progname, source_date_epoch); + _("%s: SOURCE_DATE_EPOCH '%s' invalid timestamp, ignoring.\n"), + progname, source_date_epoch); return false; }