Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2d5b16b

Browse files
committed
Remove quotes around locale names in some places for consistency.
1 parent 59dc5d0 commit 2d5b16b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/bin/initdb/initdb.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
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[])
28012801
pg_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"),
28052805
progname, lc_ctype);
28062806
fprintf(stderr, _("Rerun %s with the -E option.\n"), progname);
28072807
fprintf(stderr, _("Try \"%s --help\" for more information.\n"),
@@ -2861,7 +2861,7 @@ main(int argc, char *argv[])
28612861
default_text_search_config = find_matching_ts_config(lc_ctype);
28622862
if (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"),
28652865
progname, lc_ctype);
28662866
default_text_search_config = "simple";
28672867
}
@@ -2872,12 +2872,12 @@ main(int argc, char *argv[])
28722872

28732873
if (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"),
28762876
progname, lc_ctype);
28772877
}
28782878
else 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"),
28812881
progname, default_text_search_config, lc_ctype);
28822882
}
28832883
}

0 commit comments

Comments
 (0)