output: Phrase output driver error messages more consistently.
authorBen Pfaff <blp@gnu.org>
Mon, 8 Feb 2010 17:43:00 +0000 (09:43 -0800)
committerBen Pfaff <blp@gnu.org>
Mon, 8 Feb 2010 17:43:00 +0000 (09:43 -0800)
This should aid translation.

src/output/cairo.c
src/output/csv.c
src/output/html.c
src/output/journal.c
src/output/measure.c
src/output/msglog.c
src/output/odt.c

index 4e8b1d38bcdc71b896233454076042cee3d553ba..6eb39b276b7ca263a3170e692273f0ca70d81002 100644 (file)
@@ -280,7 +280,7 @@ xr_create (const char *file_name, enum settings_output_devices device_type,
   status = cairo_surface_status (surface);
   if (status != CAIRO_STATUS_SUCCESS)
     {
-      error (0, 0, _("opening output file \"%s\": %s"),
+      error (0, 0, _("error opening output file \"%s\": %s"),
              file_name, cairo_status_to_string (status));
       cairo_surface_destroy (surface);
       goto error;
@@ -1119,7 +1119,7 @@ xr_draw_png_chart (const struct chart_item *item,
 
   status = cairo_surface_write_to_png (surface, file_name);
   if (status != CAIRO_STATUS_SUCCESS)
-    error (0, 0, _("writing output file \"%s\": %s"),
+    error (0, 0, _("error writing output file \"%s\": %s"),
            file_name, cairo_status_to_string (status));
 
   cairo_destroy (cr);
index 004558f1b1dee53974680f26e60a3817d93ebd05..ceca34dd0ea232777937aa6d9830b57a4937c700 100644 (file)
@@ -84,7 +84,7 @@ csv_create (const char *file_name, enum settings_output_devices device_type,
 
   if (csv->file == NULL)
     {
-      error (0, errno, _("csv: opening output file \"%s\""), csv->file_name);
+      error (0, errno, _("error opening output file \"%s\""), csv->file_name);
       output_driver_destroy (d);
       return NULL;
     }
index 636450a9a353c1d43ccac0f7c4a54b665e946401..4a436cf53c34b8f171dfbadd2f2c409af1982be1 100644 (file)
@@ -103,7 +103,7 @@ html_create (const char *file_name, enum settings_output_devices device_type,
   html->file = fn_open (html->file_name, "w");
   if (html->file == NULL)
     {
-      error (0, errno, _("opening HTML output file: %s"), html->file_name);
+      error (0, errno, _("error opening output file \"%s\""), html->file_name);
       goto error;
     }
 
index 6b7332771c0f5e7727ffe631c04d11e1ab63a5ac..1a700898ac5e1d6707de700d4b59de1723b32c74 100644 (file)
@@ -64,7 +64,8 @@ journal_close (void)
   if (journal != NULL && journal->file != NULL)
     {
       if (fwriteerror (journal->file))
-        error (0, errno, _("error writing \"%s\""), journal_file_name);
+        error (0, errno, _("error writing output file \"%s\""),
+               journal_file_name);
       journal->file = NULL;
     }
 }
@@ -89,7 +90,8 @@ journal_output (struct journal_driver *j, const char *s)
       j->file = fopen (journal_file_name, "a");
       if (j->file == NULL)
         {
-          error (0, errno, _("%s: open failed"), journal_file_name);
+          error (0, errno, _("error opening output file \"%s\""),
+                 journal_file_name);
           output_driver_destroy (&j->driver);
           return;
         }
index 8f6e666f667a83086dae4bd31274bf19387c3170..2064f45b13e2d69935fc5ea443aaa288b4cec52c 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 1997-9, 2000, 2007, 2009 Free Software Foundation, Inc.
+   Copyright (C) 1997-9, 2000, 2007, 2009, 2010 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -245,7 +245,7 @@ read_paper_conf (const char *file_name, int *h, int *v)
   file = fopen (file_name, "r");
   if (file == NULL)
     {
-      error (0, errno, _("error opening \"%s\""), file_name);
+      error (0, errno, _("error opening input file \"%s\""), file_name);
       return false;
     }
 
@@ -256,7 +256,7 @@ read_paper_conf (const char *file_name, int *h, int *v)
       if (!ds_read_config_line (&line, &line_number, file))
        {
          if (ferror (file))
-           error (0, errno, _("error reading \"%s\""), file_name);
+           error (0, errno, _("error reading file \"%s\""), file_name);
          break;
        }
 
index d5c68069a6f9cbe1aec0d80bc5cb3c1b6694fc46..70c237c3db45111d5b3912b4afc53271a22f47b7 100644 (file)
@@ -63,7 +63,7 @@ msglog_create (const char *file_name)
   file = fn_open (file_name, "w");
   if (file == NULL)
     {
-      error (0, errno, _("%s: open failed"), file_name);
+      error (0, errno, _("error opening output file \"%s\""), file_name);
       return NULL;
     }
 
index 0b55ac9ae9222efb7b60aede6e4a1c4fdc0351c4..bfc698e79aa11068363f16592ad5ec53d2b05c5f 100644 (file)
@@ -91,7 +91,7 @@ create_mimetype (const char *dirname)
 
   if (fp == NULL)
     {
-      error (0, errno, _("failed to create output file %s"),
+      error (0, errno, _("error opening output file \"%s\""),
              ds_cstr (&filename));
       ds_destroy (&filename);
       return false;