float-format: Don't translate test strings.
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 7 Dec 2010 04:47:44 +0000 (20:47 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 12 Dec 2010 06:17:24 +0000 (22:17 -0800)
These aren't visible to users in normal operation, so we might as well not
burden translators with them.

src/language/tests/float-format.c

index 554b2c33c782987255139125172946946922784d..817246bc8167dbcd0df48fcca125e951b109c320 100644 (file)
@@ -197,9 +197,8 @@ mismatch (const struct fp *from, const struct fp *to, char *result,
       make_printable (to->format, to->data, to_size, expected,
                       sizeof expected);
       make_printable (to->format, result, to_size, actual, sizeof actual);
-      msg (SE,
-           _("%s conversion of %s from %s to %s should have produced %s "
-             "but actually produced %s."),
+      msg (SE, "%s conversion of %s from %s to %s should have produced %s "
+           "but actually produced %s.",
            conversion_type,
            original, get_float_format_name (from->format),
            get_float_format_name (to->format), expected,
@@ -244,7 +243,7 @@ cmd_debug_float_format (struct lexer *lexer, struct dataset *ds UNUSED)
     {
       if (fp_cnt >= sizeof fp / sizeof *fp)
         {
-          msg (SE, _("Too many values in single command."));
+          msg (SE, "Too many values in single command.");
           return CMD_FAILURE;
         }
       if (!parse_fp (lexer, &fp[fp_cnt++]))