From 7eec45f2d868b89aa3f9059aae1f340a099824d0 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Tue, 29 Jul 2014 12:13:24 +0200 Subject: [PATCH] logger: fix untranslated message Signed-off-by: Karel Zak --- misc-utils/logger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc-utils/logger.c b/misc-utils/logger.c index b07edc20e9..7b10df86a9 100644 --- a/misc-utils/logger.c +++ b/misc-utils/logger.c @@ -675,7 +675,7 @@ int main(int argc, char **argv) if (stdin != jfd) fclose(jfd); if (ret) - errx(EXIT_FAILURE, "journald entry could not be wrote"); + errx(EXIT_FAILURE, _("journald entry could not be wrote")); return EXIT_SUCCESS; } #endif -- 2.47.3