42
42
* Portions Copyright (c) 1994, Regents of the University of California
43
43
* Portions taken from FreeBSD.
44
44
*
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 $
46
46
*
47
47
*-------------------------------------------------------------------------
48
48
*/
@@ -2801,7 +2801,7 @@ main(int argc, char *argv[])
2801
2801
pg_strcasecmp (lc_ctype , "POSIX" ) == 0 ))
2802
2802
{
2803
2803
/* 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" ),
2805
2805
progname , lc_ctype );
2806
2806
fprintf (stderr , _ ("Rerun %s with the -E option.\n" ), progname );
2807
2807
fprintf (stderr , _ ("Try \"%s --help\" for more information.\n" ),
@@ -2861,7 +2861,7 @@ main(int argc, char *argv[])
2861
2861
default_text_search_config = find_matching_ts_config (lc_ctype );
2862
2862
if (default_text_search_config == NULL )
2863
2863
{
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" ),
2865
2865
progname , lc_ctype );
2866
2866
default_text_search_config = "simple" ;
2867
2867
}
@@ -2872,12 +2872,12 @@ main(int argc, char *argv[])
2872
2872
2873
2873
if (checkmatch == NULL )
2874
2874
{
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" ),
2876
2876
progname , lc_ctype );
2877
2877
}
2878
2878
else if (strcmp (checkmatch , default_text_search_config ) != 0 )
2879
2879
{
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" ),
2881
2881
progname , default_text_search_config , lc_ctype );
2882
2882
}
2883
2883
}
0 commit comments