Skip to content
Snippets Groups Projects
Commit 4af19a57 authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

The formatting of the display of the locale names assumed that locale names

are not longer than 8 characters.  But sometimes they are, and that made
the display quite ugly.  So just format them vertically so that everyone
can read them.
parent 87cbcff9
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group # Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California # Portions Copyright (c) 1994, Regents of the University of California
# #
# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.201 2003/09/07 03:36:03 tgl Exp $ # $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.202 2003/09/27 09:21:26 petere Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -477,8 +477,12 @@ then ...@@ -477,8 +477,12 @@ then
echo "The database cluster will be initialized with locale `pg_getlocale CTYPE`." echo "The database cluster will be initialized with locale `pg_getlocale CTYPE`."
else else
echo "The database cluster will be initialized with locales:" echo "The database cluster will be initialized with locales:"
echo " COLLATE: `pg_getlocale COLLATE`${TAB}CTYPE: `pg_getlocale CTYPE`${TAB}MESSAGES: `pg_getlocale MESSAGES`" echo " COLLATE: `pg_getlocale COLLATE`"
echo " MONETARY: `pg_getlocale MONETARY`${TAB}NUMERIC: `pg_getlocale NUMERIC`${TAB}TIME: `pg_getlocale TIME`" echo " CTYPE: `pg_getlocale CTYPE`"
echo " MESSAGES: `pg_getlocale MESSAGES`"
echo " MONETARY: `pg_getlocale MONETARY`"
echo " NUMERIC: `pg_getlocale NUMERIC`"
echo " TIME: `pg_getlocale TIME`"
fi fi
echo echo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment