X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdata-io%2Fdata-list.c;h=f68b2e1b4d058e2f71585b5742d8ad98e1baa8dc;hb=refs%2Fheads%2Fpivot-table2;hp=834a2f8d7f7a1fe72b9970ba99c470c1b64a443b;hpb=c91f650b47f33cfbd4b7ed45dbfa7eb012c7e6fb;p=pspp diff --git a/src/language/data-io/data-list.c b/src/language/data-io/data-list.c index 834a2f8d7f..f68b2e1b4d 100644 --- a/src/language/data-io/data-list.c +++ b/src/language/data-io/data-list.c @@ -138,13 +138,12 @@ cmd_data_list (struct lexer *lexer, struct dataset *ds) { if (!in_input_program ()) { - msg (SE, _("The END subcommand may only be used within " - "INPUT PROGRAM.")); + msg (SE, _("The %s subcommand may only be used within %s."), "END", "INPUT PROGRAM"); goto error; } if (end) { - msg (SE, _("The END subcommand may only be specified once.")); + msg (SE, _("The %s subcommand may only be specified once."), "END"); goto error; } @@ -252,7 +251,7 @@ cmd_data_list (struct lexer *lexer, struct dataset *ds) if (type != DP_FIXED && end != NULL) { - msg (SE, _("The END subcommand may be used only with DATA LIST FIXED.")); + msg (SE, _("The %s subcommand may be used only with %s."), "END", "DATA LIST FIXED"); goto error; }