Make new strings more alike previously existing messages.
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 13 Apr 2009 21:03:36 +0000 (21:03 +0000)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 13 Apr 2009 21:03:36 +0000 (21:03 +0000)
src/bin/pg_dump/pg_restore.c

index 396f647dde1af5bee4d37c65d8d111b4f490dd12..ea5f122c9dfb071b261286a0923a133ab6ecbe38 100644 (file)
@@ -304,7 +304,7 @@ main(int argc, char **argv)
        {
                if (opts->filename)
                {
-                       fprintf(stderr, _("%s: cannot specify both -d and -f output\n"),
+                       fprintf(stderr, _("%s: options -d/--dbname and -f/--file cannot be used together\n"),
                                        progname);
                        fprintf(stderr, _("Try \"%s --help\" for more information.\n"),
                                        progname);
@@ -316,7 +316,7 @@ main(int argc, char **argv)
        /* Can't do single-txn mode with multiple connections */
        if (opts->single_txn && opts->number_of_jobs > 1)
        {
-               fprintf(stderr, _("%s: cannot specify both --single-transaction and multiple jobs\n"),
+               fprintf(stderr, _("%s: options -1/--single-transaction and -j/--jobs cannot be used together\n"),
                                progname);
                exit(1);
        }