diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2001-07-03 20:21:50 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2001-07-03 20:21:50 +0000 |
commit | 30ab5bd43d8f2082659191de8ae19be98c960ad7 (patch) | |
tree | 6fb43a759752330a19f33b76cd29d0dc1eb79bf3 /src/bin/pg_dump/pg_backup_files.c | |
parent | 3ec9fb893e61939bb7cbee96dd787c644c3b1d22 (diff) |
More message munging and localization for pg_dump, especially the
--verbose messages, which had not been considered so far. Output to the
terminal should okay now; comments written into the dump are still English
only, which may or may not be the desirable thing.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_files.c')
-rw-r--r-- | src/bin/pg_dump/pg_backup_files.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_dump/pg_backup_files.c b/src/bin/pg_dump/pg_backup_files.c index 2bbf68cb650..47a224fb89f 100644 --- a/src/bin/pg_dump/pg_backup_files.c +++ b/src/bin/pg_dump/pg_backup_files.c @@ -20,7 +20,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_files.c,v 1.11 2001/06/27 21:21:37 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_files.c,v 1.12 2001/07/03 20:21:48 petere Exp $ * * Modifications - 28-Jun-2000 - pjw@rhyme.com.au * @@ -74,7 +74,7 @@ typedef struct char *filename; } lclTocEntry; -static char *modulename = "file archiver"; +static char *modulename = gettext_noop("file archiver"); static void _LoadBlobs(ArchiveHandle *AH, RestoreOptions *ropt); static void _getBlobTocEntry(ArchiveHandle *AH, int *oid, char *fname); @@ -120,7 +120,7 @@ InitArchiveFmt_Files(ArchiveHandle *AH) { write_msg(modulename, "WARNING:\n" - " This format is for demonstration purposes, it is not intended for\n" + " This format is for demonstration purposes; it is not intended for\n" " normal use. Files will be written in the current working directory.\n"); if (AH->fSpec && strcmp(AH->fSpec, "") != 0) |