This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Some binutils-2.20.90.pot msgid bugs


Thanks!  Applying the following to mainline.

Index: binutils/ChangeLog
===================================================================
RCS file: /cvs/src/src/binutils/ChangeLog,v
retrieving revision 1.1714
diff -u -p -r1.1714 ChangeLog
--- binutils/ChangeLog	11 Nov 2010 10:23:37 -0000	1.1714
+++ binutils/ChangeLog	15 Nov 2010 23:46:28 -0000
@@ -1,3 +1,7 @@
+2010-11-16  Jorma Karvonen  <karvonen.jorma@gmail.com>
+
+	* windmc.c: ,%s' -> `%s' in a number of strings.
+
 2010-11-11  Mingming Sun  <mingm.sun@gmail.com>
 
 	* readelf.c (get_machine_flags): Add loongson-3a.
Index: binutils/windmc.c
===================================================================
RCS file: /cvs/src/src/binutils/windmc.c,v
retrieving revision 1.9
diff -u -p -r1.9 windmc.c
--- binutils/windmc.c	16 Nov 2009 11:12:37 -0000	1.9
+++ binutils/windmc.c	15 Nov 2010 23:46:29 -0000
@@ -1,5 +1,5 @@
 /* windmc.c -- a program to compile Windows message files.
-   Copyright 2007, 2008, 2009
+   Copyright 2007, 2008, 2009, 2010
    Free Software Foundation, Inc.
    Written by Kai Tietz, Onevision.
 
@@ -187,7 +187,7 @@ mc_create_path_text_file (const char *pa
   sprintf (hsz, "%s%s%s", (path != NULL ? path : ""), mcset_mc_basename,
     (ext != NULL ? ext : ""));
   if ((ret = fopen (hsz, "wb")) == NULL)
-    fatal (_("can't create %s file ,%s' for output.\n"), (ext ? ext : "text"), hsz);
+    fatal (_("can't create %s file `%s' for output.\n"), (ext ? ext : "text"), hsz);
   free (hsz);
   return ret;
 }
@@ -259,7 +259,7 @@ probe_codepage (rc_uint_type *cp, int *i
       if (*cp != 0 && *cp != CP_UTF16)
 	{
 	  fprintf (stderr, _("%s: warning: "), program_name);
-	  fprintf (stderr, _("A codepage was specified switch ,%s' and UTF16.\n"), pswitch);
+	  fprintf (stderr, _("A codepage was specified switch `%s' and UTF16.\n"), pswitch);
 	  fprintf (stderr, _("\tcodepage settings are ignored.\n"));
 	}
       *cp = CP_UTF16;
@@ -1113,7 +1113,7 @@ main (int argc, char **argv)
     FILE *fp = fopen (input_filename, "rb");
 
     if (!fp)
-      fatal (_("unable to open file ,%s' for input.\n"), input_filename);
+      fatal (_("unable to open file `%s' for input.\n"), input_filename);
 
     fseek (fp, 0, SEEK_END);
     flen = ftell (fp);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]