]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - ppdc/ppdc-catalog.cxx
Merge changes from CUPS 1.5svn-r8849.
[thirdparty/cups.git] / ppdc / ppdc-catalog.cxx
index 451b1d8ed61527814370d6c092eb954596e34a64..22a2828afda4ee7a8b4e1ce5b80556e2a2b2122e 100644 (file)
@@ -335,7 +335,7 @@ ppdcCatalog::load_messages(
       if ((ptr = (char *)strrchr(line, '\"')) == NULL)
       {
        _cupsLangPrintf(stderr,
-                       _("ERROR: Expected quoted string on line %d of %s!\n"),
+                       _("ERROR: Expected quoted string on line %d of %s\n"),
                        linenum, f);
        cupsFileClose(fp);
        return (-1);
@@ -347,7 +347,7 @@ ppdcCatalog::load_messages(
       if ((ptr = strchr(line, '\"')) == NULL)
       {
        _cupsLangPrintf(stderr,
-                       _("ERROR: Expected quoted string on line %d of %s!\n"),
+                       _("ERROR: Expected quoted string on line %d of %s\n"),
                        linenum, f);
        cupsFileClose(fp);
        return (-1);
@@ -413,7 +413,7 @@ ppdcCatalog::load_messages(
        {
          _cupsLangPrintf(stderr,
                          _("ERROR: Need a msgid line before any "
-                           "translation strings on line %d of %s!\n"),
+                           "translation strings on line %d of %s\n"),
                          linenum, f);
          cupsFileClose(fp);
          return (-1);
@@ -429,7 +429,7 @@ ppdcCatalog::load_messages(
        strlcat(id, ptr, sizeof(id));
       else
       {
-       _cupsLangPrintf(stderr, _("ERROR: Unexpected text on line %d of %s!\n"),
+       _cupsLangPrintf(stderr, _("ERROR: Unexpected text on line %d of %s\n"),
                        linenum, f);
        cupsFileClose(fp);
        return (-1);
@@ -457,7 +457,7 @@ ppdcCatalog::load_messages(
   unknown_load_format:
 
   _cupsLangPrintf(stderr,
-                  _("ERROR: Unknown message catalog format for \"%s\"!\n"), f);
+                  _("ERROR: Unknown message catalog format for \"%s\"\n"), f);
   cupsFileClose(fp);
   return (-1);
 }