From 9c535e8fa636ab539d06d8888efaca68448cff64 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Fri, 8 Oct 2010 11:15:50 +0200 Subject: [PATCH] Consolidate translatable strings --- src/language/stats/npar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/language/stats/npar.c b/src/language/stats/npar.c index 1b4af1a0..7ebb12c4 100644 --- a/src/language/stats/npar.c +++ b/src/language/stats/npar.c @@ -222,7 +222,7 @@ parse_npar_tests (struct lexer *lexer, struct dataset *ds, struct cmd_npar_tests npt->missing++; if (npt->missing > 1) { - msg (SE, _ ("MISSING subcommand may be given only once.")); + msg (SE, _ ("The %s subcommand may be given only once."), "MISSING"); goto lossage; } while (lex_token (lexer) != '/' && lex_token (lexer) != '.') @@ -249,7 +249,7 @@ parse_npar_tests (struct lexer *lexer, struct dataset *ds, struct cmd_npar_tests npt->method++; if (npt->method > 1) { - msg (SE, _ ("METHOD subcommand may be given only once.")); + msg (SE, _ ("The %s subcommand may be given only once."), "METHOD"); goto lossage; } switch (npar_method (lexer, nps)) -- 2.30.2