]> sipb.mit.edu Git - ikiwiki.git/blob - po/underlays/basewiki/ikiwiki/pagespec.da.po
42d05c78d0896e32a1b4a9d4399fc5f101997bae
[ikiwiki.git] / po / underlays / basewiki / ikiwiki / pagespec.da.po
1 # Danish translation of basewiki/ikiwiki/pagespec page for ikiwiki.
2 # Copyright (C) 2008-2009 Jonas Smedegaard <dr@jones.dk>
3 # This file is distributed under the same license as the ikiwiki package.
4 # Jonas Smedegaard <dr@jones.dk>, 2008.
5 #
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: ikiwiki 3.15\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2010-07-18 22:29+0000\n"
11 "PO-Revision-Date: 2009-07-19 23:45+0200\n"
12 "Last-Translator: Jonas Smedegaard <dr@jones.dk>\n"
13 "Language-Team: None\n"
14 "Language: \n"
15 "MIME-Version: 1.0\n"
16 "Content-Type: text/plain; charset=UTF-8\n"
17 "Content-Transfer-Encoding: 8bit\n"
18 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19 "X-Poedit-Language: Danish\n"
20 "X-Poedit-Country: DENMARK\n"
21 "X-Poedit-SourceCharset: utf-8\n"
22
23 #. type: Plain text
24 #, no-wrap
25 msgid "[[!meta robots=\"noindex, follow\"]]\n"
26 msgstr "[[!meta robots=\"noindex, follow\"]]\n"
27
28 #. type: Plain text
29 msgid ""
30 "To select a set of pages, such as pages that are locked, pages whose commit "
31 "emails you want subscribe to, or pages to combine into a blog, the wiki uses "
32 "a PageSpec. This is an expression that matches a set of pages."
33 msgstr ""
34 "Til at angive et udvalg af sider, eksempelvis låste sider, sider du vil "
35 "abonnere på ændringer til, eller sider som skal udgøre en blog, anvender "
36 "wikien et PageSpec. dette er et udtryk som passer for et bestemt udvalg af "
37 "sider."
38
39 #. type: Plain text
40 msgid ""
41 "The simplest PageSpec is a simple list of pages. For example, this matches "
42 "any of the three listed pages:"
43 msgstr ""
44 "Det simpleste PageSpec er simpelthen en opremsning af sider med \"or\" "
45 "imellem (\"or\" betyder \"eller\" på engelsk). Dette passer eksempelvis for "
46 "enhver af de tre nævnte sider:"
47
48 #. type: Plain text
49 #, no-wrap
50 msgid "\tfoo or bar or baz\n"
51 msgstr "\tfoo or bar or baz\n"
52
53 #. type: Plain text
54 msgid ""
55 "More often you will want to match any pages that have a particular thing in "
56 "their name. You can do this using a glob pattern. \"`*`\" stands for any "
57 "part of a page name, and \"`?`\" for any single letter of a page name. So "
58 "this matches all pages about music, and any [[SubPage]]s of the SandBox, but "
59 "does not match the SandBox itself:"
60 msgstr ""
61 "Mere hyppigt har du dog brug for at passe for sider med noget bestemt i "
62 "deres navne. Dette kan du udtrykke med et \"glob-mønster\". \"`*`\" står for "
63 "enhver del af et sidenavn, og \"`?`\" for ethvert enkeltbogstav i et "
64 "sidenavn. Så dette passer for alle sider om musik, og alle [[UnderSider||"
65 "SubPage]] til sandkassen, men ikke selve sandkasse-siden:"
66
67 #. type: Plain text
68 #, no-wrap
69 msgid "\t*music* or SandBox/*\n"
70 msgstr "\t*musik* or SandBox/*\n"
71
72 #. type: Plain text
73 msgid ""
74 "You can also prefix an item with \"`!`\" to skip pages that match it. So to "
75 "match all pages except for Discussion pages and the SandBox:"
76 msgstr ""
77 "Du kan også angive \"`!`\" foran et emne for at undgå sider som passer for "
78 "det. Så for at passe for alle sider undtagen diskussionssider og sandkassen:"
79
80 #. type: Bullet: '      * '
81 msgid "and !SandBox and !*/Discussion"
82 msgstr "and !SandBox and !*/Discussion"
83
84 #. type: Plain text
85 msgid ""
86 "Some more elaborate limits can be added to what matches using these "
87 "functions:"
88 msgstr "Resultaterne kan begrænses mere nuanceret med disse funktioner:"
89
90 #. type: Plain text
91 #, no-wrap
92 msgid ""
93 "* \"`glob(someglob)`\" - matches pages and other files that match the given glob.\n"
94 "  Just writing the glob by itself is actually a shorthand for this function.\n"
95 "* \"`page(glob)`\" - like `glob()`, but only matches pages, not other files\n"
96 "* \"`link(page)`\" - matches only pages that link to a given page (or glob)\n"
97 "* \"`tagged(tag)`\" - matches pages that are tagged or link to the given tag (or\n"
98 "  tags matched by a glob)\n"
99 "* \"`backlink(page)`\" - matches only pages that a given page links to\n"
100 "* \"`creation_month(month)`\" - matches only files created on the given month\n"
101 "* \"`creation_day(mday)`\" - or day of the month\n"
102 "* \"`creation_year(year)`\" - or year\n"
103 "* \"`created_after(page)`\" - matches only files created after the given page\n"
104 "  was created\n"
105 "* \"`created_before(page)`\" - matches only files created before the given page\n"
106 "  was created\n"
107 "* \"`internal(glob)`\" - like `glob()`, but matches even internal-use \n"
108 "  pages that globs do not usually match.\n"
109 "* \"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\",\n"
110 "  \"`license(glob)`\", \"`copyright(glob)`\", \"`guid(glob)`\" \n"
111 "  - match pages that have the given metadata, matching the specified glob.\n"
112 "* \"`user(username)`\" - tests whether a modification is being made by a\n"
113 "  user with the specified username. If openid is enabled, an openid can also\n"
114 "  be put here. Glob patterns can be used in the username. For example, \n"
115 "  to match all openid users, use `user(*://*)`\n"
116 "* \"`admin()`\" - tests whether a modification is being made by one of the\n"
117 "  wiki admins.\n"
118 "* \"`ip(address)`\" - tests whether a modification is being made from the\n"
119 "  specified IP address.\n"
120 "* \"`comment(glob)`\" - matches comments to a page matching the glob.\n"
121 "* \"`comment_pending(glob)`\" - matches unmoderated, pending comments.\n"
122 "* \"`postcomment(glob)`\" - matches only when comments are being \n"
123 "  posted to a page matching the specified glob\n"
124 msgstr ""
125
126 #. type: Plain text
127 msgid ""
128 "For example, to match all pages in a blog that link to the page about music "
129 "and were written in 2005:"
130 msgstr ""
131 "For eksempelvis at passe for alle sider i en blog som henviser til en side "
132 "om musik og som blev skrevet i 2005:"
133
134 #. type: Plain text
135 #, no-wrap
136 msgid "\tblog/* and link(music) and creation_year(2005)\n"
137 msgstr "\tblog/* and link(musik) and creation_year(2005)\n"
138
139 #. type: Plain text
140 msgid ""
141 "Note the use of \"and\" in the above example, that means that only pages "
142 "that match each of the three expressions match the whole. Use \"and\" when "
143 "you want to combine expression like that; \"or\" when it's enough for a page "
144 "to match one expression. Note that it doesn't make sense to say \"index and "
145 "SandBox\", since no page can match both expressions."
146 msgstr ""
147 "Bemærk brugen af \"and\" i eksemplet ovenfor (\"and\" betyder \"og\" på "
148 "engelsk), som betyder at kun sider der passer for hvert af de tre udtryk "
149 "passer for det hele. Brug \"and\" når du vil kombinere udtryk på den måde; "
150 "\"or\" når det er nok for en side at den passer for ét udtryk. Bemærk at det "
151 "ikke giver mening at sige \"index and SandBox\", da ingen sider kan passe "
152 "for begge udtryk."
153
154 #. type: Plain text
155 msgid ""
156 "More complex expressions can also be created, by using parentheses for "
157 "grouping. For example, to match pages in a blog that are tagged with either "
158 "of two tags, use:"
159 msgstr ""
160 "Mere komplekse udtryk kan dannes ved at gruppere med paranteser. Eksempelvis "
161 "passer dette for sider i en blog som er mærket af med en af to mærkater:"
162
163 #. type: Plain text
164 #, no-wrap
165 msgid "\tblog/* and (tagged(foo) or tagged(bar))\n"
166 msgstr "\tblog/* and (tagged(foo) or tagged(bar))\n"
167
168 #. type: Plain text
169 msgid ""
170 "Note that page names in PageSpecs are matched against the absolute filenames "
171 "of the pages in the wiki, so a pagespec \"foo\" used on page \"a/b\" will "
172 "not match a page named \"a/foo\" or \"a/b/foo\". To match relative to the "
173 "directory of the page containing the pagespec, you can use \"./\". For "
174 "example, \"./foo\" on page \"a/b\" matches page \"a/foo\"."
175 msgstr ""
176 "Bemærk at PageSpecs for sidenavne afstemmes som de absolutte filnavne for "
177 "siderne i wikien, så et pagespec \"foo\" brugt på siden \"a/b\" vil ikke "
178 "passe for siderne navngivet \"a/foo\" eller \"a/b/foo\". For at afstemme "
179 "relativt til samme mappe som siden der indeholder pagespec'et kan du bruge "
180 "\"./\". Eksempelvis passer \"./foo\" på siden \"a/b\" for siden \"a/foo\"."
181
182 #~ msgid ""
183 #~ "\"`link(page)`\" - matches only pages that link to a given page (or glob)"
184 #~ msgstr ""
185 #~ "\"`link(side)`\" - passer kun for sider som henviser til en given side "
186 #~ "(eller glob)"
187
188 #~ msgid ""
189 #~ "\"`tagged(tag)`\" - matches pages that are tagged or link to the given "
190 #~ "tag (or tags matched by a glob)"
191 #~ msgstr ""
192 #~ "\"`tagged(mærkat)`\" - passer for sider mærket af med eller som henviser "
193 #~ "til den givne mærkat (eller mærkater som passer for et glob)"
194
195 #~ msgid "\"`backlink(page)`\" - matches only pages that a given page links to"
196 #~ msgstr ""
197 #~ "\"`backlink(side)`\" - passer kun for sider som en given side henviser til"
198
199 #~ msgid ""
200 #~ "\"`creation_month(month)`\" - matches only pages created on the given "
201 #~ "month"
202 #~ msgstr ""
203 #~ "\"`creation_month(måned)`\" - passer kun for sider oprettet den givne "
204 #~ "måned"
205
206 #~ msgid "\"`creation_day(mday)`\" - or day of the month"
207 #~ msgstr "\"`creation_day(månedsdag)`\" - eller dag på måneden"
208
209 #~ msgid "\"`creation_year(year)`\" - or year"
210 #~ msgstr "\"`creation_year(år)`\" - eller år"
211
212 #~ msgid ""
213 #~ "\"`created_after(page)`\" - matches only pages created after the given "
214 #~ "page was created"
215 #~ msgstr ""
216 #~ "\"`created_after(side)`\" - passer kun for sider oprettet efter den givne "
217 #~ "side blev oprettet"
218
219 #~ msgid ""
220 #~ "\"`created_before(page)`\" - matches only pages created before the given "
221 #~ "page was created"
222 #~ msgstr ""
223 #~ "\"`created_before(side)`\" - passer kun for sider oprettet før den givne "
224 #~ "side blev oprettet"
225
226 #~ msgid ""
227 #~ "\"`glob(someglob)`\" - matches pages that match the given glob. Just "
228 #~ "writing the glob by itself is actually a shorthand for this function."
229 #~ msgstr ""
230 #~ "\"`glob(nogetglob)`\" - passer for sider som passer for det givne glob. "
231 #~ "Blot at skrive glob'et alene er faktisk en genvej til denne funktion."
232
233 #~ msgid ""
234 #~ "\"`internal(glob)`\" - like `glob()`, but matches even internal-use pages "
235 #~ "that globs do not usually match."
236 #~ msgstr ""
237 #~ "\"`internal(glob)`\" - lissom `glob()`, men passer også for internt "
238 #~ "anvendte sider som glob normalt ikke passer for."
239
240 #~ msgid ""
241 #~ "\"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\", \"`license"
242 #~ "(glob)`\", \"`copyright(glob)`\" - match pages that have the given "
243 #~ "metadata, matching the specified glob."
244 #~ msgstr ""
245 #~ "\"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\", \"`license"
246 #~ "(glob)`\", \"`copyright(glob)`\" - passer for sider med de givne "
247 #~ "metadata, som passer for det angivne glob."
248
249 #, fuzzy
250 #~| msgid ""
251 #~| "\"`user(username)`\" - tests whether a modification is being made by a "
252 #~| "user with the specified username. If openid is enabled, an openid can "
253 #~| "also be put here."
254 #~ msgid ""
255 #~ "\"`user(username)`\" - tests whether a modification is being made by a "
256 #~ "user with the specified username. If openid is enabled, an openid can "
257 #~ "also be put here. Glob patterns can be used in the username. For example, "
258 #~ "to match all openid users, use `user(*://*)`"
259 #~ msgstr ""
260 #~ "\"`user(brugernavn)`\" - tester hvorvidt en ændring foretages af en "
261 #~ "bruger med det angivne  brugernavn. Hvis openid er aktiveret, kan en "
262 #~ "openid også bruges her."
263
264 #~ msgid ""
265 #~ "\"`admin()`\" - tests whether a modification is being made by one of the "
266 #~ "wiki admins."
267 #~ msgstr ""
268 #~ "\"`admin()`\" - tester hvorvidt en ændring foretages af en af wiki-"
269 #~ "administratorerne."
270
271 #~ msgid ""
272 #~ "\"`ip(address)`\" - tests whether a modification is being made from the "
273 #~ "specified IP address."
274 #~ msgstr ""
275 #~ "\"`ip(adresse)`\" - tester hvorvidt en ændring foretages fra den angivne "
276 #~ "IP-adresse."
277
278 #~ msgid ""
279 #~ "\"`postcomment(glob)`\" - matches only when comments are being posted to "
280 #~ "a page matching the specified glob"
281 #~ msgstr ""
282 #~ "\"`postcomment(glob)`\" - passer kun når kommentarer er blevet indsendt "
283 #~ "til en side som passer for det angivne glob"