From 4fa20ce7101dd401a538706cbdabcf49cc95b8ea Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 27 Oct 2022 15:16:30 +0200 Subject: [PATCH] platform/tests: don't use translations in test tool Otherwise, this file would need to be included in POTFILES.in. This is unnecessary. Fixes: 06cf1f5e2d3e ('platform/tests: extend monitor tool to dump the state of NMPlatform') --- src/core/platform/tests/monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/platform/tests/monitor.c b/src/core/platform/tests/monitor.c index 5030e25279..5c14331c02 100644 --- a/src/core/platform/tests/monitor.c +++ b/src/core/platform/tests/monitor.c @@ -55,8 +55,8 @@ read_argv(int *argc, char ***argv) 0, G_OPTION_ARG_FILENAME, &global_opt.state_file, - N_("Dump the platform cache to this file"), - N_("FILE")}, + "Dump the platform cache to this file", + "FILE"}, {0}, }; gs_free_error GError *error = NULL;