Add missing _() around messages.
authorBen Pfaff <blp@gnu.org>
Sun, 18 Feb 2007 19:20:55 +0000 (19:20 +0000)
committerBen Pfaff <blp@gnu.org>
Sun, 18 Feb 2007 19:20:55 +0000 (19:20 +0000)
src/data/ChangeLog
src/data/por-file-reader.c
src/output/ChangeLog
src/output/postscript.c

index 803418884c8aa3412ea2939182d5926fef1d0f0c..6ee79cd4e3582412703742da615606d45ae45204 100644 (file)
@@ -1,3 +1,7 @@
+Sun Feb 18 11:20:24 2007  Ben Pfaff  <blp@gnu.org>
+
+       * por-file-reader.c: Add missing _() around messages.
+
 Sun Feb 11 20:44:13 2007  Ben Pfaff  <blp@gnu.org>
 
        * make-file.c: Include "mkstemp.h", without which linking on
index 9441bcf8487a73dee6b4de0ef7c80bb6b58b038d..a9b1de8193f18e34b6b30f3aee0077e8ce85e45d 100644 (file)
@@ -282,7 +282,7 @@ read_float (struct pfm_reader *r)
 
   /* Check that we had some digits. */
   if (!got_digit)
-    error (r, "Number expected.");
+    error (r, _("Number expected."));
 
   /* Get exponent if any. */
   if (r->cc == '+' || r->cc == '-')
@@ -421,7 +421,7 @@ read_version_data (struct pfm_reader *r, struct pfm_read_info *info)
 
   /* Read file. */
   if (!match (r, 'A'))
-    error (r, "Unrecognized version code `%c'.", r->cc);
+    error (r, _("Unrecognized version code `%c'."), r->cc);
   date = read_pool_string (r);
   time = read_pool_string (r);
   product = match (r, '1') ? read_pool_string (r) : empty_string;
@@ -548,7 +548,7 @@ read_variables (struct pfm_reader *r, struct dictionary *dict)
       str_uppercase (name);
 
       if (width < 0 || width > 255)
-       error (r, "Bad width %d for variable %s.", width, name);
+       error (r, _("Bad width %d for variable %s."), width, name);
 
       v = dict_create_var (dict, name, width);
       if (v == NULL)
index 60bfc43e38c9e7195f4cbd9aa17a525ddd011897..526769593992b970775dc9374f6a5fb3611586ab 100644 (file)
@@ -1,3 +1,7 @@
+Sun Feb 18 11:20:35 2007  Ben Pfaff  <blp@gnu.org>
+
+       * postscript.c: Add missing _() around message.
+
 Sun Feb 11 17:59:30 2007  Ben Pfaff  <blp@gnu.org>
 
        * html.c (html_initialise_chart): Mark `this' parameter UNUSED to
index a84d14eebce232128809dc63772b8b5c628ef8e0..f737baea2ff9183f1daffacb8e6c94212996a3c4 100644 (file)
@@ -1420,7 +1420,8 @@ reencode_font (struct outp_driver *this, struct font *font)
   fputs ("] RF\n", x->file);
 
   if (freaderror (file) != 0)
-    error (errno, 0, "closing Postscript encoding \"%s\"", font->encoding_fn);
+    error (errno, 0, _("closing Postscript encoding \"%s\""),
+           font->encoding_fn);
 }
 
 /* PostScript driver class. */