Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
30c975e2
Commit
30c975e2
authored
Aug 19, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
One more round of translations and slight message tweaks
parent
db07a3f4
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
612 additions
and
416 deletions
+612
-416
src/bin/pg_dump/de.po
src/bin/pg_dump/de.po
+584
-388
src/bin/pg_dump/pg_backup_archiver.c
src/bin/pg_dump/pg_backup_archiver.c
+2
-2
src/bin/pg_dump/pg_backup_custom.c
src/bin/pg_dump/pg_backup_custom.c
+2
-2
src/bin/pg_dump/pg_dump.c
src/bin/pg_dump/pg_dump.c
+2
-2
src/bin/pg_dump/pg_restore.c
src/bin/pg_dump/pg_restore.c
+22
-22
No files found.
src/bin/pg_dump/de.po
View file @
30c975e2
This diff is collapsed.
Click to expand it.
src/bin/pg_dump/pg_backup_archiver.c
View file @
30c975e2
...
...
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.3
0 2001/08/12 19:02:39
petere Exp $
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_archiver.c,v 1.3
1 2001/08/19 22:17:03
petere Exp $
*
* Modifications - 28-Jun-2000 - pjw@rhyme.com.au
*
...
...
@@ -1765,7 +1765,7 @@ ReadToc(ArchiveHandle *AH)
/* Sanity check */
if
(
te
->
id
<=
0
||
te
->
id
>
AH
->
tocCount
)
die_horribly
(
AH
,
modulename
,
"
failed sanity check (bad entry id)
- perhaps a corrupt TOC
\n
"
);
die_horribly
(
AH
,
modulename
,
"
entry id out of range
- perhaps a corrupt TOC
\n
"
);
te
->
hadDumper
=
ReadInt
(
AH
);
te
->
oid
=
ReadStr
(
AH
);
...
...
src/bin/pg_dump/pg_backup_custom.c
View file @
30c975e2
...
...
@@ -19,7 +19,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_custom.c,v 1.1
3 2001/07/03 20:21:48
petere Exp $
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_backup_custom.c,v 1.1
4 2001/08/19 22:17:03
petere Exp $
*
* Modifications - 28-Jun-2000 - pjw@rhyme.com.au
*
...
...
@@ -857,7 +857,7 @@ _getFilePos(ArchiveHandle *AH, lclContext *ctx)
pos
=
ftell
(
AH
->
FH
);
if
(
pos
!=
ctx
->
filePos
)
{
write_msg
(
modulename
,
"WARNING: ftell mismatch with
filePos - filePos us
ed
\n
"
);
write_msg
(
modulename
,
"WARNING: ftell mismatch with
expected position -- ftell ignor
ed
\n
"
);
pos
=
ctx
->
filePos
;
}
}
...
...
src/bin/pg_dump/pg_dump.c
View file @
30c975e2
...
...
@@ -22,7 +22,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.22
2 2001/08/16 20:38:54 tgl
Exp $
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.22
3 2001/08/19 22:17:03 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -2492,7 +2492,7 @@ getTables(int *numTables, FuncInfo *finfo, int numFuncs)
if
(
PQgetisnull
(
res2
,
i2
,
i_tgconstrrelname
))
{
write_msg
(
NULL
,
"query produced NULL referenced table name for
trigger
\"
%s
\"
on table
\"
%s
\"
(oid was
%s)
\n
"
,
write_msg
(
NULL
,
"query produced NULL referenced table name for
foreign key trigger
\"
%s
\"
on table
\"
%s
\"
(oid of table:
%s)
\n
"
,
tgname
,
tblinfo
[
i
].
relname
,
tgconstrrelid
);
exit_nicely
();
}
...
...
src/bin/pg_dump/pg_restore.c
View file @
30c975e2
...
...
@@ -34,7 +34,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_restore.c,v 1.2
3 2001/08/12 19:02:39
petere Exp $
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_restore.c,v 1.2
4 2001/08/19 22:17:03
petere Exp $
*
* Modifications - 28-Jun-2000 - pjw@rhyme.com.au
*
...
...
@@ -355,32 +355,32 @@ usage(const char *progname)
puts
(
gettext
(
" -a, --data-only restore only the data, no schema
\n
"
" -c, --clean clean (drop) schema prior to create
\n
"
" -C, --create
output
commands to create the database
\n
"
" -C, --create
issue
commands to create the database
\n
"
" -d, --dbname=NAME specify database name
\n
"
" -f, --file=FILENAME
script output file name
\n
"
" -F, --format
{c|f} specify backup file format
\n
"
" -h, --host
HOSTNAME server host name
\n
"
" -i, --index=NAME restore
indexes or
named index
\n
"
" -l, --list dump summarized TOC for
this fil
e
\n
"
" -f, --file=FILENAME
TOC output file name (see -l)
\n
"
" -F, --format
=
{c|f} specify backup file format
\n
"
" -h, --host
=
HOSTNAME server host name
\n
"
" -i, --index=NAME restore named index
\n
"
" -l, --list dump summarized TOC for
of the archiv
e
\n
"
" -L, --use-list=FILENAME use specified table of contents for ordering
\n
"
" output from this file
\n
"
" -N, --orig-order restore in original dump order
\n
"
" -o, --oid-order restore in oid order
\n
"
" -O, --no-owner do not reconnect to database to match
\n
"
" object owner
\n
"
" -p, --port
PORT server port number
\n
"
" -P, --function=NAME restore
functions or
named function
\n
"
" -p, --port
=
PORT server port number
\n
"
" -P, --function=NAME restore named function
\n
"
" -r, --rearrange rearrange output to put indexes etc. at end
\n
"
" -R, --no-reconnect disallow ALL reconnections to the database
\n
"
" -s, --schema-only restore only the schema, no data
\n
"
" -S, --superuser=NAME specify the superuser user name to use for
\n
"
" disabling triggers
\n
"
" -t, --table=
TABLE restore this table only
\n
"
" -T, --trigger=NAME restore
triggers or
named trigger
\n
"
" -t, --table=
NAME restore named table
\n
"
" -T, --trigger=NAME restore named trigger
\n
"
" -U, --username=NAME connect as specified database user
\n
"
" -v, --verbose verbose
\n
"
" -v, --verbose verbose
mode
\n
"
" -W, --password force password prompt (should happen automatically)
\n
"
" -x, --no-privileges skip
dumping
of access privileges (grant/revoke)
\n
"
" -x, --no-privileges skip
restoration
of access privileges (grant/revoke)
\n
"
));
#else
/* not HAVE_GETOPT_LONG */
...
...
@@ -388,12 +388,12 @@ usage(const char *progname)
puts
(
gettext
(
" -a restore only the data, no schema
\n
"
" -c clean (drop) schema prior to create
\n
"
" -C
output
commands to create the database
\n
"
" -C
issue
commands to create the database
\n
"
" -d NAME specify database name
\n
"
" -f FILENAME
script output file name
\n
"
" -f FILENAME
TOC output file name (see -l)
\n
"
" -F {c|f} specify backup file format
\n
"
" -h HOSTNAME server host name
\n
"
" -i NAME restore
indexes or
named index
\n
"
" -i NAME restore named index
\n
"
" -l dump summarized TOC for this file
\n
"
" -L FILENAME use specified table of contents for ordering
\n
"
" output from this file
\n
"
...
...
@@ -402,18 +402,18 @@ usage(const char *progname)
" -O do not output reconnect to database to match
\n
"
" object owner
\n
"
" -p PORT server port number
\n
"
" -P NAME restore
functions or
named function
\n
"
" -r rearrange output to put indexes etc at end
\n
"
" -P NAME restore named function
\n
"
" -r rearrange output to put indexes etc
.
at end
\n
"
" -R disallow ALL reconnections to the database
\n
"
" -s restore only the schema, no data
\n
"
" -S NAME specify the superuser user name to use for
\n
"
" disabling triggers
\n
"
" -t NAME restore
this table only
\n
"
" -T NAME restore
triggers or
named trigger
\n
"
" -t NAME restore
named table
\n
"
" -T NAME restore named trigger
\n
"
" -U NAME connect as specified database user
\n
"
" -v verbose
\n
"
" -v verbose
mode
\n
"
" -W force password prompt (should happen automatically)
\n
"
" -x skip
dumping of ACL
s (grant/revoke)
\n
"
" -x skip
restoration of access privilege
s (grant/revoke)
\n
"
));
#endif
puts
(
gettext
(
"If no input file name is supplied, then standard input is used.
\n
"
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment