1# LANGUAGE message translation file for pg_archivecleanup
2# Copyright (C) 2018 PostgreSQL Global Development Group
3# This file is distributed under the same license as the pg_archivecleanup (PostgreSQL) package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
5#
6msgid ""
7msgstr ""
8"Project-Id-Version: pg_archivecleanup (PostgreSQL) 11\n"
9"Report-Msgid-Bugs-To: pgsql-bugs@lists.postgresql.org\n"
10"POT-Creation-Date: 2019-09-27 08:15+0000\n"
11"PO-Revision-Date: 2019-09-28 11:28+0200\n"
12"Last-Translator: \n"
13"Language-Team: \n"
14"Language: cs\n"
15"MIME-Version: 1.0\n"
16"Content-Type: text/plain; charset=UTF-8\n"
17"Content-Transfer-Encoding: 8bit\n"
18"X-Generator: Poedit 2.2.3\n"
19
20#: ../../../src/common/logging.c:188
21#, c-format
22#| msgid "fatal\n"
23msgid "fatal: "
24msgstr "fatal: "
25
26#: ../../../src/common/logging.c:195
27#, c-format
28#| msgid "SQL error: %s\n"
29msgid "error: "
30msgstr "error: "
31
32#: ../../../src/common/logging.c:202
33#, c-format
34#| msgid "warning"
35msgid "warning: "
36msgstr "warning: "
37
38#: pg_archivecleanup.c:68
39#, c-format
40msgid "archive location \"%s\" does not exist"
41msgstr "archivní lokace \"%s\" neexistuje"
42
43#: pg_archivecleanup.c:154
44#, c-format
45msgid "could not remove file \"%s\": %m"
46msgstr "nelze odstranit soubor \"%s\": %m"
47
48#: pg_archivecleanup.c:162
49#, c-format
50msgid "could not read archive location \"%s\": %m"
51msgstr "nelze načíst archivní lokaci \"%s\": %m"
52
53#: pg_archivecleanup.c:165
54#, c-format
55msgid "could not close archive location \"%s\": %m"
56msgstr "nelze uzavřít archivní lokaci \"%s\": %m"
57
58#: pg_archivecleanup.c:169
59#, c-format
60msgid "could not open archive location \"%s\": %m"
61msgstr "nelze otevřít archivní lokaci \"%s\": %m"
62
63#: pg_archivecleanup.c:242
64#, c-format
65msgid "invalid file name argument"
66msgstr "chybný argument jména souboru"
67
68#: pg_archivecleanup.c:243 pg_archivecleanup.c:316 pg_archivecleanup.c:337
69#: pg_archivecleanup.c:349 pg_archivecleanup.c:356
70#, c-format
71msgid "Try \"%s --help\" for more information.\n"
72msgstr "Zkuste \"%s --help\" pro více informací.\n"
73
74#: pg_archivecleanup.c:256
75#, c-format
76msgid ""
77"%s removes older WAL files from PostgreSQL archives.\n"
78"\n"
79msgstr ""
80"%s odstraní starší WAL soubory z PostgreSQL archivů.\n"
81"\n"
82
83#: pg_archivecleanup.c:257
84#, c-format
85msgid "Usage:\n"
86msgstr "Použití:\n"
87
88#: pg_archivecleanup.c:258
89#, c-format
90msgid "  %s [OPTION]... ARCHIVELOCATION OLDESTKEPTWALFILE\n"
91msgstr "  %s [OPTION]... ARCHIVELOCATION OLDESTKEPTWALFILE\n"
92
93#: pg_archivecleanup.c:259
94#, c-format
95msgid ""
96"\n"
97"Options:\n"
98msgstr ""
99"\n"
100"Přepínače:\n"
101
102#: pg_archivecleanup.c:260
103#, c-format
104msgid "  -d             generate debug output (verbose mode)\n"
105msgstr "  -d             vygeneruje debug výstup (více informací)\n"
106
107#: pg_archivecleanup.c:261
108#, c-format
109msgid "  -n             dry run, show the names of the files that would be removed\n"
110msgstr "  -n             zkušební běh, ukazuje jména souborů které by byly odstraněny\n"
111
112#: pg_archivecleanup.c:262
113#, c-format
114msgid "  -V, --version  output version information, then exit\n"
115msgstr "  -V, --version  vypíše informaci o verzi, pak skončí\n"
116
117#: pg_archivecleanup.c:263
118#, c-format
119msgid "  -x EXT         clean up files if they have this extension\n"
120msgstr "  -x EXT         vyčistí soubory pokud mají tuto příponu\n"
121
122#: pg_archivecleanup.c:264
123#, c-format
124msgid "  -?, --help     show this help, then exit\n"
125msgstr "  -?, --help     ukáže tuto nápovědu, a skončí\n"
126
127#: pg_archivecleanup.c:265
128#, c-format
129msgid ""
130"\n"
131"For use as archive_cleanup_command in postgresql.conf:\n"
132"  archive_cleanup_command = 'pg_archivecleanup [OPTION]... ARCHIVELOCATION %%r'\n"
133"e.g.\n"
134"  archive_cleanup_command = 'pg_archivecleanup /mnt/server/archiverdir %%r'\n"
135msgstr ""
136"\n"
137"Pro použití jako archive_cleanup_command v recovery.conf pokud standby_mode = on:\n"
138"  archive_cleanup_command = 'pg_archivecleanup [OPTION]... ARCHIVELOCATION %%r'\n"
139"e.g.\n"
140"  archive_cleanup_command = 'pg_archivecleanup /mnt/server/archiverdir %%r'\n"
141
142#: pg_archivecleanup.c:270
143#, c-format
144msgid ""
145"\n"
146"Or for use as a standalone archive cleaner:\n"
147"e.g.\n"
148"  pg_archivecleanup /mnt/server/archiverdir 000000010000000000000010.00000020.backup\n"
149msgstr ""
150"\n"
151"Nebo jako samostatný čistič archivu:\n"
152"e.g.\n"
153"  pg_archivecleanup /mnt/server/archiverdir 000000010000000000000010.00000020.backup\n"
154
155#: pg_archivecleanup.c:274
156#, c-format
157msgid ""
158"\n"
159"Report bugs to <pgsql-bugs@lists.postgresql.org>.\n"
160msgstr ""
161"\n"
162"Chyby hlaste na adresu <pgsql-bugs@postgresql.org>.\n"
163
164#: pg_archivecleanup.c:336
165#, c-format
166msgid "must specify archive location"
167msgstr "nutno zadat archivní lokaci"
168
169#: pg_archivecleanup.c:348
170#, c-format
171msgid "must specify oldest kept WAL file"
172msgstr "nutno zadat nejstarčí uchovávaný WAL soubor"
173
174#: pg_archivecleanup.c:355
175#, c-format
176msgid "too many command-line arguments"
177msgstr "příliš mnoho argumentů na příkazové řádce"
178
179#~ msgid "%s: keeping WAL file \"%s\" and later\n"
180#~ msgstr "%s: uchovávám WAL soubor \"%s\" a novější\n"
181
182#~ msgid "%s: ERROR: could not remove file \"%s\": %s\n"
183#~ msgstr "%s: ERROR: nelze odstranit soubor \"%s\": %s\n"
184
185#~ msgid "%s: removing file \"%s\"\n"
186#~ msgstr "%s: odstraňuji soubor \"%s\"\n"
187
188#~ msgid "%s: file \"%s\" would be removed\n"
189#~ msgstr "%s: soubor \"%s\" by byl odstraněn\n"
190