55 * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
66 * Portions Copyright (c) 1994, Regents of the University of California
77 *
8- * $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.19 2005/09/30 07:13:54 petere Exp $
8+ * $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.20 2005/09/30 07:58:01 petere Exp $
99 *
1010 *-------------------------------------------------------------------------
1111 */
@@ -302,7 +302,7 @@ help(const char *progname)
302302{
303303printf (_ ("%s creates a new PostgreSQL role.\n\n" ),progname );
304304printf (_ ("Usage:\n" ));
305- printf (_ (" %s [OPTION]... [USERNAME ]\n" ),progname );
305+ printf (_ (" %s [OPTION]... [ROLENAME ]\n" ),progname );
306306printf (_ ("\nOptions:\n" ));
307307printf (_ (" -s, --superuser role will be superuser\n" ));
308308printf (_ (" -S, --no-superuser role will not be superuser\n" ));
@@ -312,9 +312,9 @@ help(const char *progname)
312312printf (_ (" -R, --no-createrole role cannot create roles\n" ));
313313printf (_ (" -l, --login role can login (default)\n" ));
314314printf (_ (" -L, --no-login role cannot login\n" ));
315- printf (_ (" -i, --inherit role inheritspermissions of roles\n" ));
316- printf ( _ ( " it is a member of (default)\n" ));
317- printf (_ (" -I, --no-inherit role does not inheritpermissions \n" ));
315+ printf (_ (" -i, --inherit role inheritsprivileges of roles it is a \n"
316+ " member of (default)\n" ));
317+ printf (_ (" -I, --no-inherit role does not inheritprivileges \n" ));
318318printf (_ (" -c, --connection-limit=N connection limit for role (default: no limit)\n" ));
319319printf (_ (" -P, --pwprompt assign a password to new role\n" ));
320320printf (_ (" -E, --encrypted encrypt stored password\n" ));
@@ -328,7 +328,7 @@ help(const char *progname)
328328printf (_ (" -p, --port=PORT database server port\n" ));
329329printf (_ (" -U, --username=USERNAME user name to connect as (not the one to create)\n" ));
330330printf (_ (" -W, --password prompt for password to connect\n" ));
331- printf (_ ("\nIf one of -s, -S, -d, -D, -r, -R andUSERNAME is not specified,\n"
332- "you will be prompted interactively.\n" ));
331+ printf (_ ("\nIf one of -s, -S, -d, -D, -r, -R andROLENAME is not specified, you will \n"
332+ " be prompted interactively.\n" ));
333333printf (_ ("\nReport bugs to <pgsql-bugs@postgresql.org>.\n" ));
334334}