]> sipb.mit.edu Git - ikiwiki.git/blob - po/underlays/basewiki/ikiwiki/pagespec.cs.po
Update danish l10n of underlays.
[ikiwiki.git] / po / underlays / basewiki / ikiwiki / pagespec.cs.po
1 # Czech translation of basewiki/ikiwiki/pagespec page for ikiwiki.
2 # Copyright (C) 2009 Miroslav Kure <kurem@debian.cz>
3 # This file is distributed under the same license as the ikiwiki package.
4 # Miroslav Kure <kurem@debian.cz>, 2009.
5 #
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: ikiwiki/basewiki\n"
9 "POT-Creation-Date: 2011-05-05 20:04+0300\n"
10 "PO-Revision-Date: 2009-08-26 14:14+0200\n"
11 "Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
12 "Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
13 "Language: cs\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17
18 #. type: Plain text
19 #, no-wrap
20 msgid "[[!meta robots=\"noindex, follow\"]]\n"
21 msgstr "[[!meta robots=\"noindex, follow\"]]\n"
22
23 #. type: Plain text
24 msgid ""
25 "To select a set of pages, such as pages that are locked, pages whose commit "
26 "emails you want subscribe to, or pages to combine into a blog, the wiki uses "
27 "a PageSpec. This is an expression that matches a set of pages."
28 msgstr ""
29 "Pro výběr množiny stránek (jako jsou například zamknuté stránky, stránky, u "
30 "nichž chcete dostávat maily se změnami nebo třeba stránky, které chcete "
31 "zkombinovat do blogu) používá wiki něco s názvem PageSpec. PageSpec je "
32 "výraz, který se shoduje s množinou stránek."
33
34 #. type: Plain text
35 msgid ""
36 "The simplest PageSpec is a simple list of pages. For example, this matches "
37 "any of the three listed pages:"
38 msgstr ""
39 "Nejjednodušší PageSpec je jednoduchý seznam stránek. Například následující "
40 "se shoduje s libovolnou ze tří zmíněných stránek:"
41
42 #. type: Plain text
43 #, no-wrap
44 msgid "\tfoo or bar or baz\n"
45 msgstr "\tstránka1 or stránka2 or stránka3\n"
46
47 #. type: Plain text
48 msgid ""
49 "More often you will want to match any pages that have a particular thing in "
50 "their name. You can do this using a glob pattern. \"`*`\" stands for any "
51 "part of a page name, and \"`?`\" for any single letter of a page name. So "
52 "this matches all pages about music, and any [[SubPage]]s of the SandBox, but "
53 "does not match the SandBox itself:"
54 msgstr ""
55 "Mnohem častěji budete chtít vybrat stránky, které obsahují ve svém názvu "
56 "konkrétní řetězec. K tomu můžete použít tzv. vzor, který může obsahovat "
57 "zástupné znaky. „`*`“ znamená libovolnou část názvu stránky, „`?`“ zastupuje "
58 "jedno písmeno názvu stránky. Následující příklad vybere všechny stránky o "
59 "hudbě a všechny [[podstránky|SubPage]] [[pískoviště|SandBox]] (ve wiki "
60 "uložené jako SandBox), ale ne pískoviště samotné:"
61
62 #. type: Plain text
63 #, no-wrap
64 msgid "\t*music* or SandBox/*\n"
65 msgstr "\t*music* or SandBox/*\n"
66
67 #. type: Plain text
68 msgid ""
69 "You can also prefix an item with \"`!`\" to skip pages that match it. So to "
70 "match all pages except for Discussion pages and the SandBox:"
71 msgstr ""
72 "Výraz můžete uvodit znakem „`!`“ a negovat tak jeho význam, tj. přeskočit "
73 "dané stránky. Například chcete-li vybrat všechny stránky ve wiki kromě "
74 "diskuzí (uložené jako Discussion) a pískoviště (SandBox), použijte:"
75
76 #. type: Bullet: '      * '
77 msgid "and !SandBox and !*/Discussion"
78 msgstr "and !SandBox and !*/Discussion"
79
80 #. type: Plain text
81 msgid ""
82 "Some more elaborate limits can be added to what matches using these "
83 "functions:"
84 msgstr "S komplikovanějšími výběry mohou pomoci následující funkce:"
85
86 #. type: Plain text
87 #, no-wrap
88 msgid ""
89 "* \"`glob(someglob)`\" - matches pages and other files that match the given glob.\n"
90 "  Just writing the glob by itself is actually a shorthand for this function.\n"
91 "* \"`page(glob)`\" - like `glob()`, but only matches pages, not other files\n"
92 "* \"`link(page)`\" - matches only pages that link to a given page (or glob)\n"
93 "* \"`tagged(tag)`\" - matches pages that are tagged or link to the given tag (or\n"
94 "  tags matched by a glob)\n"
95 "* \"`backlink(page)`\" - matches only pages that a given page links to\n"
96 "* \"`creation_month(month)`\" - matches only files created on the given month\n"
97 "  number\n"
98 "* \"`creation_day(mday)`\" - or day of the month\n"
99 "* \"`creation_year(year)`\" - or year\n"
100 "* \"`created_after(page)`\" - matches only files created after the given page\n"
101 "  was created\n"
102 "* \"`created_before(page)`\" - matches only files created before the given page\n"
103 "  was created\n"
104 "* \"`internal(glob)`\" - like `glob()`, but matches even internal-use \n"
105 "  pages that globs do not usually match.\n"
106 "* \"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\",\n"
107 "  \"`license(glob)`\", \"`copyright(glob)`\", \"`guid(glob)`\" \n"
108 "  - match pages that have the given metadata, matching the specified glob.\n"
109 "* \"`user(username)`\" - tests whether a modification is being made by a\n"
110 "  user with the specified username. If openid is enabled, an openid can also\n"
111 "  be put here. Glob patterns can be used in the username. For example, \n"
112 "  to match all openid users, use `user(*://*)`\n"
113 "* \"`admin()`\" - tests whether a modification is being made by one of the\n"
114 "  wiki admins.\n"
115 "* \"`ip(address)`\" - tests whether a modification is being made from the\n"
116 "  specified IP address.\n"
117 "* \"`comment(glob)`\" - matches comments to a page matching the glob.\n"
118 "* \"`comment_pending(glob)`\" - matches unmoderated, pending comments.\n"
119 "* \"`postcomment(glob)`\" - matches only when comments are being \n"
120 "  posted to a page matching the specified glob\n"
121 msgstr ""
122
123 #. type: Plain text
124 msgid ""
125 "For example, to match all pages in a blog that link to the page about music "
126 "and were written in 2005:"
127 msgstr ""
128 "Například pro výběr všech stránek v blogu, které se odkazují na stránku o "
129 "hudbě a byly napsány v roce 2005:"
130
131 #. type: Plain text
132 #, no-wrap
133 msgid "\tblog/* and link(music) and creation_year(2005)\n"
134 msgstr "\tblog/* and link(music) and creation_year(2005)\n"
135
136 #. type: Plain text
137 msgid ""
138 "Note the use of \"and\" in the above example, that means that only pages "
139 "that match each of the three expressions match the whole. Use \"and\" when "
140 "you want to combine expression like that; \"or\" when it's enough for a page "
141 "to match one expression. Note that it doesn't make sense to say \"index and "
142 "SandBox\", since no page can match both expressions."
143 msgstr ""
144 "Povšimněte si použití „and“ v předchozím příkladu. Znamená to, že se vyberou "
145 "pouze stránky, které splňují všechny tři podmínky zároveň. Pokud by stačilo, "
146 "aby byla platná alespoň jedna ze zadaných podmínek, použijte „or“. Poznámka: "
147 "výraz „index and SandBox“ nikdy nevrátí žádnou stránku, protože není možné, "
148 "aby nějaká stránka splňovala obě podmínky zároveň."
149
150 #. type: Plain text
151 msgid ""
152 "More complex expressions can also be created, by using parentheses for "
153 "grouping. For example, to match pages in a blog that are tagged with either "
154 "of two tags, use:"
155 msgstr ""
156 "Při vytváření komplexnějších výrazů můžete použít závorky. Například pro "
157 "výběr stránek v blogu, které mají alespoň jeden ze dvou štítků, můžete "
158 "použít:"
159
160 #. type: Plain text
161 #, no-wrap
162 msgid "\tblog/* and (tagged(foo) or tagged(bar))\n"
163 msgstr "\tblog/* and (tagged(štítek1) or tagged(štítek2))\n"
164
165 #. type: Plain text
166 msgid ""
167 "Note that page names in PageSpecs are matched against the absolute filenames "
168 "of the pages in the wiki, so a pagespec \"foo\" used on page \"a/b\" will "
169 "not match a page named \"a/foo\" or \"a/b/foo\". To match relative to the "
170 "directory of the page containing the pagespec, you can use \"./\". For "
171 "example, \"./foo\" on page \"a/b\" matches page \"a/foo\"."
172 msgstr ""
173 "Jména stránek v PageSpec se porovnávají vůči absolutním jménům souborů wiki "
174 "stránek, takže PageSpec „něco“ použité na stránce „a/b“ nenajde „a/něco“ ani "
175 "„a/b/něco“. Chcete-li vyhledávat relativně k adresáři stránky, která "
176 "obsahuje PageSpec, můžete použít „./“. To znamená, že „./něco“ na stránce „a/"
177 "b“ najde stránku „a/něco“."
178
179 #. type: Plain text
180 msgid ""
181 "To indicate the name of the page the PageSpec is used in, you can use a "
182 "single dot. For example, `link(.)` matches all the pages linking to the page "
183 "containing the PageSpec."
184 msgstr ""
185
186 #~ msgid ""
187 #~ "\"`link(page)`\" - matches only pages that link to a given page (or glob)"
188 #~ msgstr ""
189 #~ "„`link(stránka)`“ - vybere stránky, které odkazují na danou stránku "
190 #~ "(resp. stránky, pokud použijete zástupné znaky)"
191
192 #~ msgid ""
193 #~ "\"`tagged(tag)`\" - matches pages that are tagged or link to the given "
194 #~ "tag (or tags matched by a glob)"
195 #~ msgstr ""
196 #~ "„`tagged(štítek)`“ - vybere stránky, které obsahují daný štítek (resp. "
197 #~ "štítky, pokud použijete zástupné znaky), nebo na něj odkazují"
198
199 #~ msgid "\"`backlink(page)`\" - matches only pages that a given page links to"
200 #~ msgstr ""
201 #~ "„`backlink(stránka)`“ - vybere pouze stránky, na které odkazuje daná "
202 #~ "stránka"
203
204 #~ msgid ""
205 #~ "\"`creation_month(month)`\" - matches only pages created on the given "
206 #~ "month"
207 #~ msgstr ""
208 #~ "„`creation_month(měsíc)`“ - vybere pouze stránky vytvořené v daném měsíci"
209
210 #~ msgid "\"`creation_day(mday)`\" - or day of the month"
211 #~ msgstr ""
212 #~ "„`creation_day(den_měsíce)`“ - vybere pouze stránky vytvořené daného dne "
213 #~ "v měsíci"
214
215 #~ msgid "\"`creation_year(year)`\" - or year"
216 #~ msgstr ""
217 #~ "„`creation_year(rok)`“ - vybere pouze stránky vytvořené v daném roce"
218
219 #~ msgid ""
220 #~ "\"`created_after(page)`\" - matches only pages created after the given "
221 #~ "page was created"
222 #~ msgstr ""
223 #~ "„`created_after(stránka)`“ - vybere pouze stránky vytvořené po vytvoření "
224 #~ "dané stránky"
225
226 #~ msgid ""
227 #~ "\"`created_before(page)`\" - matches only pages created before the given "
228 #~ "page was created"
229 #~ msgstr ""
230 #~ "„`created_before(stránka)`“ - vybere pouze stránky vytvořené před "
231 #~ "vytvořením dané stránky"
232
233 #~ msgid ""
234 #~ "\"`glob(someglob)`\" - matches pages that match the given glob. Just "
235 #~ "writing the glob by itself is actually a shorthand for this function."
236 #~ msgstr ""
237 #~ "„`glob(vzor)`“ - vybere stránky, které odpovídají danému vzoru. Použití "
238 #~ "samotného vzoru je zkratkou za tuto funkci."
239
240 #~ msgid ""
241 #~ "\"`internal(glob)`\" - like `glob()`, but matches even internal-use pages "
242 #~ "that globs do not usually match."
243 #~ msgstr ""
244 #~ "„`internal(vzor)`“ - jako `glob()`, ale vybere i stránky pro interní "
245 #~ "potřebu, které glob() obvykle přeskočí."
246
247 #~ msgid ""
248 #~ "\"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\", \"`license"
249 #~ "(glob)`\", \"`copyright(glob)`\" - match pages that have the given "
250 #~ "metadata, matching the specified glob."
251 #~ msgstr ""
252 #~ "„`title(vzor)`“, „`author(vzor)`“, „`authorurl(vzor)`“, „`license(vzor)"
253 #~ "`“, „`copyright(vzor)`“ - vybere stránky, které obsahují metadata "
254 #~ "odpovídající zadanému vzoru."
255
256 #, fuzzy
257 #~| msgid ""
258 #~| "\"`user(username)`\" - tests whether a modification is being made by a "
259 #~| "user with the specified username. If openid is enabled, an openid can "
260 #~| "also be put here."
261 #~ msgid ""
262 #~ "\"`user(username)`\" - tests whether a modification is being made by a "
263 #~ "user with the specified username. If openid is enabled, an openid can "
264 #~ "also be put here. Glob patterns can be used in the username. For example, "
265 #~ "to match all openid users, use `user(*://*)`"
266 #~ msgstr ""
267 #~ "„`user(uživatelskéjméno)`“ - testuje, zda změnu provádí uživatel s daným "
268 #~ "uživatelským jménem. Je-li povoleno openid, můžete ho použít místo "
269 #~ "uživatelského jména."
270
271 #~ msgid ""
272 #~ "\"`admin()`\" - tests whether a modification is being made by one of the "
273 #~ "wiki admins."
274 #~ msgstr "„`admin()`“ - testuje, zda změnu provádí některý ze správců wiki."
275
276 #~ msgid ""
277 #~ "\"`ip(address)`\" - tests whether a modification is being made from the "
278 #~ "specified IP address."
279 #~ msgstr "„`ip(adresa)`“ - testuje, zda změnu provádí někdo z dané IP adresy."
280
281 #~ msgid ""
282 #~ "\"`postcomment(glob)`\" - matches only when comments are being posted to "
283 #~ "a page matching the specified glob"
284 #~ msgstr ""
285 #~ "„`postcomment(vzor)`“ - shoduje se pouze pokud se komentáře ukládají do "
286 #~ "stránky odpovídající zadanému vzoru"