4242 * Portions Copyright (c) 1994, Regents of the University of California
4343 * Portions taken from FreeBSD.
4444 *
45- * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.145 2007/10/13 20:18:41 tgl Exp $
45+ * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.146 2007/10/16 09:09:11 petere Exp $
4646 *
4747 *-------------------------------------------------------------------------
4848 */
@@ -2801,7 +2801,7 @@ main(int argc, char *argv[])
28012801pg_strcasecmp (lc_ctype ,"POSIX" )== 0 ))
28022802{
28032803/* Hmm, couldn't recognize the locale's codeset */
2804- fprintf (stderr ,_ ("%s: could not find suitable encoding for locale\"%s\" \n" ),
2804+ fprintf (stderr ,_ ("%s: could not find suitable encoding for locale%s \n" ),
28052805progname ,lc_ctype );
28062806fprintf (stderr ,_ ("Rerun %s with the -E option.\n" ),progname );
28072807fprintf (stderr ,_ ("Try \"%s --help\" for more information.\n" ),
@@ -2861,7 +2861,7 @@ main(int argc, char *argv[])
28612861default_text_search_config = find_matching_ts_config (lc_ctype );
28622862if (default_text_search_config == NULL )
28632863{
2864- printf (_ ("%s: could not find suitable text search configuration for locale\"%s\" \n" ),
2864+ printf (_ ("%s: could not find suitable text search configuration for locale%s \n" ),
28652865progname ,lc_ctype );
28662866default_text_search_config = "simple" ;
28672867}
@@ -2872,12 +2872,12 @@ main(int argc, char *argv[])
28722872
28732873if (checkmatch == NULL )
28742874{
2875- printf (_ ("%s: warning: suitable text search configuration for locale\"%s\" is unknown\n" ),
2875+ printf (_ ("%s: warning: suitable text search configuration for locale%s is unknown\n" ),
28762876progname ,lc_ctype );
28772877}
28782878else if (strcmp (checkmatch ,default_text_search_config )!= 0 )
28792879{
2880- printf (_ ("%s: warning: specified text search configuration \"%s\" might not match locale\"%s\" \n" ),
2880+ printf (_ ("%s: warning: specified text search configuration \"%s\" might not match locale%s \n" ),
28812881progname ,default_text_search_config ,lc_ctype );
28822882}
28832883}