Consolidate translatable strings
authorJohn Darrington <john@darrington.wattle.id.au>
Fri, 8 Oct 2010 09:15:50 +0000 (11:15 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 9 Oct 2010 07:40:31 +0000 (09:40 +0200)
src/language/stats/npar.c

index 1b4af1a0488ba66fc151fd0b5def57a5d0278401..7ebb12c4bfd471557510ed9c859df4fb780c92c6 100644 (file)
@@ -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))