mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03:00
Second try at adjusting translations for last-minute changes.
This commit is contained in:
@ -1,15 +1,15 @@
|
|||||||
# German message translation file for psql
|
# German message translation file for psql
|
||||||
# Peter Eisentraut <peter_e@gmx.net>, 2001, 2002, 2003.
|
# Peter Eisentraut <peter_e@gmx.net>, 2001, 2002, 2003.
|
||||||
#
|
#
|
||||||
# $Header: /cvsroot/pgsql/src/bin/psql/po/de.po,v 1.8.2.2 2003/11/15 12:54:28 petere Exp $
|
# $Header: /cvsroot/pgsql/src/bin/psql/po/de.po,v 1.8.2.3 2003/11/15 23:04:13 petere Exp $
|
||||||
#
|
#
|
||||||
# Use these quotes: <20>%s<>
|
# Use these quotes: <20>%s<>
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PostgreSQL 7.4\n"
|
"Project-Id-Version: PostgreSQL 7.4\n"
|
||||||
"POT-Creation-Date: 2003-11-13 19:50+0100\n"
|
"POT-Creation-Date: 2003-11-15 21:21+0100\n"
|
||||||
"PO-Revision-Date: 2003-11-13 19:53+0100\n"
|
"PO-Revision-Date: 2003-11-15 21:30+0100\n"
|
||||||
"Last-Translator: Peter Eisentraut <peter_e@gmx.net>\n"
|
"Last-Translator: Peter Eisentraut <peter_e@gmx.net>\n"
|
||||||
"Language-Team: German <peter_e@gmx.net>\n"
|
"Language-Team: German <peter_e@gmx.net>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -1998,7 +1998,7 @@ msgstr "definiert eine neue Tabelle"
|
|||||||
#: sql_help.h:174
|
#: sql_help.h:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name (\n"
|
"CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name (\n"
|
||||||
" { column_name data_type [ DEFAULT default_expr ] [ column_constraint "
|
" { column_name data_type [ DEFAULT default_expr ] [ column_constraint "
|
||||||
"[ ... ] ]\n"
|
"[ ... ] ]\n"
|
||||||
" | table_constraint\n"
|
" | table_constraint\n"
|
||||||
" | LIKE parent_table [ { INCLUDING | EXCLUDING } DEFAULTS ] } [, ... ]\n"
|
" | LIKE parent_table [ { INCLUDING | EXCLUDING } DEFAULTS ] } [, ... ]\n"
|
||||||
@ -2031,11 +2031,9 @@ msgid ""
|
|||||||
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]"
|
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE tabellenname (\n"
|
"CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE tabellenname (\n"
|
||||||
" { spaltenname datentyp [ DEFAULT vorgabeausdruck ] [ spalten_constraint "
|
" { spaltenname datentyp [ DEFAULT vorgabeausdruck ] [ spalten_constraint [ ... ] ]\n"
|
||||||
"[ ... ] ]\n"
|
|
||||||
" | tabellen_constraint\n"
|
" | tabellen_constraint\n"
|
||||||
" | LIKE eltern_tabelle [ { INCLUDING | EXCLUDING } DEFAULTS ] } "
|
" | LIKE eltern_tabelle [ { INCLUDING | EXCLUDING } DEFAULTS ] } [, ... ]\n"
|
||||||
"[, ... ]\n"
|
|
||||||
")\n"
|
")\n"
|
||||||
"[ INHERITS ( eltern_tabelle [, ... ] ) ]\n"
|
"[ INHERITS ( eltern_tabelle [, ... ] ) ]\n"
|
||||||
"[ WITH OIDS | WITHOUT OIDS ]\n"
|
"[ WITH OIDS | WITHOUT OIDS ]\n"
|
||||||
@ -2046,11 +2044,9 @@ msgstr ""
|
|||||||
"[ CONSTRAINT constraint_name ]\n"
|
"[ CONSTRAINT constraint_name ]\n"
|
||||||
"{ NOT NULL | NULL | UNIQUE | PRIMARY KEY |\n"
|
"{ NOT NULL | NULL | UNIQUE | PRIMARY KEY |\n"
|
||||||
" CHECK (ausdruck) |\n"
|
" CHECK (ausdruck) |\n"
|
||||||
" REFERENCES reftabelle [ ( refspalte ) ] [ MATCH FULL | MATCH PARTIAL | "
|
" REFERENCES reftabelle [ ( refspalte ) ] [ MATCH FULL | MATCH PARTIAL | MATCH SIMPLE ]\n"
|
||||||
"MATCH SIMPLE ]\n"
|
|
||||||
" [ ON DELETE aktion ] [ ON UPDATE aktion ] }\n"
|
" [ ON DELETE aktion ] [ ON UPDATE aktion ] }\n"
|
||||||
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY "
|
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]\n"
|
||||||
"IMMEDIATE ]\n"
|
|
||||||
"\n"
|
"\n"
|
||||||
"und tabellen_constraint Folgendes sein kann:\n"
|
"und tabellen_constraint Folgendes sein kann:\n"
|
||||||
"\n"
|
"\n"
|
||||||
@ -2058,10 +2054,8 @@ msgstr ""
|
|||||||
"{ UNIQUE ( spaltenname [, ... ] ) |\n"
|
"{ UNIQUE ( spaltenname [, ... ] ) |\n"
|
||||||
" PRIMARY KEY ( spaltenname [, ... ] ) |\n"
|
" PRIMARY KEY ( spaltenname [, ... ] ) |\n"
|
||||||
" CHECK ( ausdruck ) |\n"
|
" CHECK ( ausdruck ) |\n"
|
||||||
" FOREIGN KEY ( spaltenname [, ... ] ) REFERENCES reftabelle [ ( refspalte "
|
" FOREIGN KEY ( spaltenname [, ... ] ) REFERENCES reftabelle [ ( refspalte [, ... ] ) ]\n"
|
||||||
"[, ... ] ) ]\n"
|
" [ MATCH FULL | MATCH PARTIAL | MATCH SIMPLE ] [ ON DELETE aktion ] [ ON UPDATE aktion ] }\n"
|
||||||
" [ MATCH FULL | MATCH PARTIAL | MATCH SIMPLE ] [ ON DELETE aktion ] [ ON "
|
|
||||||
"UPDATE aktion ] }\n"
|
|
||||||
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]"
|
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]"
|
||||||
|
|
||||||
#: sql_help.h:177 sql_help.h:353
|
#: sql_help.h:177 sql_help.h:353
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -4,8 +4,8 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PostgreSQL 7.4\n"
|
"Project-Id-Version: PostgreSQL 7.4\n"
|
||||||
"POT-Creation-Date: 2003-11-14 16:37-0200\n"
|
"POT-Creation-Date: 2003-11-15 21:21+0100\n"
|
||||||
"PO-Revision-Date: 2003-11-03 00:46-0200\n"
|
"PO-Revision-Date: 2003-11-15 21:35+0100\n"
|
||||||
"Last-Translator: Euler Taveira de Oliveira <euler@ufgnet.ufg.br>\n"
|
"Last-Translator: Euler Taveira de Oliveira <euler@ufgnet.ufg.br>\n"
|
||||||
"Language-Team: Brazilian Portuguese <euler@ufgnet.ufg.br>\n"
|
"Language-Team: Brazilian Portuguese <euler@ufgnet.ufg.br>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -67,7 +67,7 @@ msgid "Wrote history to file \"%s\".\n"
|
|||||||
msgstr "Hist<73>rico escrito para arquivo \"%s\".\n"
|
msgstr "Hist<73>rico escrito para arquivo \"%s\".\n"
|
||||||
|
|
||||||
#: command.c:692 command.c:1149 command.c:1246 command.c:1964 common.c:86
|
#: command.c:692 command.c:1149 command.c:1246 command.c:1964 common.c:86
|
||||||
#: copy.c:88 copy.c:116 mainloop.c:78 mainloop.c:341 describe.c:51
|
#: copy.c:88 copy.c:116 describe.c:51 mainloop.c:78 mainloop.c:341
|
||||||
msgid "out of memory\n"
|
msgid "out of memory\n"
|
||||||
msgstr "sem mem<65>ria\n"
|
msgstr "sem mem<65>ria\n"
|
||||||
|
|
||||||
@ -874,8 +874,8 @@ msgstr "%s: transa
|
|||||||
msgid "%s: unknown transaction status\n"
|
msgid "%s: unknown transaction status\n"
|
||||||
msgstr "%s: status da transa<73><61>o <20> desconhecido\n"
|
msgstr "%s: status da transa<73><61>o <20> desconhecido\n"
|
||||||
|
|
||||||
#: large_obj.c:278 describe.c:106 describe.c:157 describe.c:230 describe.c:292
|
#: describe.c:106 describe.c:157 describe.c:230 describe.c:292 describe.c:339
|
||||||
#: describe.c:339 describe.c:438 describe.c:718 describe.c:1345
|
#: describe.c:438 describe.c:718 describe.c:1345 large_obj.c:278
|
||||||
msgid "Description"
|
msgid "Description"
|
||||||
msgstr "Descri<72><69>o"
|
msgstr "Descri<72><69>o"
|
||||||
|
|
||||||
@ -2013,7 +2013,7 @@ msgstr "define uma nova tabela"
|
|||||||
#: sql_help.h:174
|
#: sql_help.h:174
|
||||||
msgid ""
|
msgid ""
|
||||||
"CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name (\n"
|
"CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name (\n"
|
||||||
" { column_name data_type [ DEFAULT default_expr ] [ column_constraint "
|
" { column_name data_type [ DEFAULT default_expr ] [ column_constraint "
|
||||||
"[ ... ] ]\n"
|
"[ ... ] ]\n"
|
||||||
" | table_constraint\n"
|
" | table_constraint\n"
|
||||||
" | LIKE parent_table [ { INCLUDING | EXCLUDING } DEFAULTS ] } [, ... ]\n"
|
" | LIKE parent_table [ { INCLUDING | EXCLUDING } DEFAULTS ] } [, ... ]\n"
|
||||||
@ -2046,8 +2046,7 @@ msgid ""
|
|||||||
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]"
|
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE nome_tabela (\n"
|
"CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE nome_tabela (\n"
|
||||||
" { nome_coluna tipo_dado [ DEFAULT express<73>o_padr<64>o ] [ restri<72><69>o_coluna "
|
" { nome_coluna tipo_dado [ DEFAULT express<73>o_padr<64>o ] [ restri<72><69>o_coluna [ ... ] ]\n"
|
||||||
"[ ... ] ]\n"
|
|
||||||
" | restri<72><69>o_tabela\n"
|
" | restri<72><69>o_tabela\n"
|
||||||
" | LIKE tabela_pai [ { INCLUDING | EXCLUDING } DEFAULTS ] } [, ... ]\n"
|
" | LIKE tabela_pai [ { INCLUDING | EXCLUDING } DEFAULTS ] } [, ... ]\n"
|
||||||
")\n"
|
")\n"
|
||||||
@ -2060,11 +2059,9 @@ msgstr ""
|
|||||||
"[ CONSTRAINT nome_restri<72><69>o ]\n"
|
"[ CONSTRAINT nome_restri<72><69>o ]\n"
|
||||||
"{ NOT NULL | NULL | UNIQUE | PRIMARY KEY |\n"
|
"{ NOT NULL | NULL | UNIQUE | PRIMARY KEY |\n"
|
||||||
" CHECK (express<73>o) |\n"
|
" CHECK (express<73>o) |\n"
|
||||||
" REFERENCES tabela_ref [ ( coluna_ref ) ] [ MATCH FULL | MATCH PARTIAL | "
|
" REFERENCES tabela_ref [ ( coluna_ref ) ] [ MATCH FULL | MATCH PARTIAL | MATCH SIMPLE ]\n"
|
||||||
"MATCH SIMPLE ]\n"
|
|
||||||
" [ ON DELETE a<><61>o ] [ ON UPDATE a<><61>o ] }\n"
|
" [ ON DELETE a<><61>o ] [ ON UPDATE a<><61>o ] }\n"
|
||||||
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY "
|
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]\n"
|
||||||
"IMMEDIATE ]\n"
|
|
||||||
"\n"
|
"\n"
|
||||||
"e restri<72><69>o_tabela <20>:\n"
|
"e restri<72><69>o_tabela <20>:\n"
|
||||||
"\n"
|
"\n"
|
||||||
@ -2072,10 +2069,8 @@ msgstr ""
|
|||||||
"{ UNIQUE ( nome_coluna [, ... ] ) |\n"
|
"{ UNIQUE ( nome_coluna [, ... ] ) |\n"
|
||||||
" PRIMARY KEY ( nome_coluna [, ... ] ) |\n"
|
" PRIMARY KEY ( nome_coluna [, ... ] ) |\n"
|
||||||
" CHECK ( express<73>o ) |\n"
|
" CHECK ( express<73>o ) |\n"
|
||||||
" FOREIGN KEY ( nome_coluna [, ... ] ) REFERENCES tabela_ref [ ( coluna_ref "
|
" FOREIGN KEY ( nome_coluna [, ... ] ) REFERENCES tabela_ref [ ( coluna_ref [, ... ] ) ]\n"
|
||||||
"[, ... ] ) ]\n"
|
" [ MATCH FULL | MATCH PARTIAL | MATCH SIMPLE ] [ ON DELETE a<><61>o ] [ ON UPDATE a<><61>o ] }\n"
|
||||||
" [ MATCH FULL | MATCH PARTIAL | MATCH SIMPLE ] [ ON DELETE a<><61>o ] [ ON "
|
|
||||||
"UPDATE a<><61>o ] }\n"
|
|
||||||
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]"
|
"[ DEFERRABLE | NOT DEFERRABLE ] [ INITIALLY DEFERRED | INITIALLY IMMEDIATE ]"
|
||||||
|
|
||||||
#: sql_help.h:177 sql_help.h:353
|
#: sql_help.h:177 sql_help.h:353
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user