|
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.140 2007/08/21 01:11:20 tgl Exp $ |
| 45 | + * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.141 2007/09/25 16:29:34 petere Exp $ |
46 | 46 | * |
47 | 47 | *------------------------------------------------------------------------- |
48 | 48 | */ |
@@ -2546,8 +2546,8 @@ usage(const char *progname) |
2546 | 2546 | " in the respective category (default taken from\n" |
2547 | 2547 | " environment)\n")); |
2548 | 2548 | printf(_(" --no-locale equivalent to --locale=C\n")); |
2549 | | -printf(_(" -T, --text-search-config=CFG\n")); |
2550 | | -printf(_(" set default text search configuration\n")); |
| 2549 | +printf(_(" -T, --text-search-config=CFG\n" |
| 2550 | +" default text search configuration\n")); |
2551 | 2551 | printf(_(" -X, --xlogdir=XLOGDIR location for the transaction log directory\n")); |
2552 | 2552 | printf(_(" -A, --auth=METHOD default authentication method for local connections\n")); |
2553 | 2553 | printf(_(" -U, --username=NAME database superuser name\n")); |
@@ -3036,7 +3036,7 @@ main(int argc, char *argv[]) |
3036 | 3036 | } |
3037 | 3037 | elseif (strcmp(checkmatch,default_text_search_config)!=0) |
3038 | 3038 | { |
3039 | | -printf(_("%s: warning: specified text search configuration \"%s\"may not match locale \"%s\"\n"), |
| 3039 | +printf(_("%s: warning: specified text search configuration \"%s\"might not match locale \"%s\"\n"), |
3040 | 3040 | progname,default_text_search_config,lc_ctype); |
3041 | 3041 | } |
3042 | 3042 | } |
|