1 # Danish translation of directives/ikiwiki/directive/inline 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.
8 "Project-Id-Version: ikiwiki 3.15\n"
9 "Report-Msgid-Bugs-To: \n"
10 "POT-Creation-Date: 2011-05-05 20:04+0300\n"
11 "PO-Revision-Date: 2009-07-23 00:06+0200\n"
12 "Last-Translator: Jonas Smedegaard <dr@jones.dk>\n"
13 "Language-Team: None\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"
25 "The `inline` directive is supplied by the [[!iki plugins/inline "
26 "desc=inline]] plugin."
31 "This is a directive that allows including one wiki page inside another. The "
32 "most common use of inlining is generating blogs and RSS or Atom feeds."
41 msgid "\t\\[[!inline pages=\"blog/* and !*/Discussion\" show=\"10\" rootpage=\"blog\"]]\n"
42 msgstr "\t\\[[!inline pages=\"blog/* and !*/Discussion\" show=\"10\" rootpage=\"blog\"]]\n"
46 "Any pages that match the specified [[PageSpec]] (in the example, any "
47 "[[SubPage]] of \"blog\") will be part of the blog, and the newest 10 of them "
48 "will appear in the page. Note that if files that are not pages match the "
49 "[[PageSpec]], they will be included in the feed using RSS enclosures, which "
50 "is useful for podcasting."
55 "The optional `rootpage` parameter tells the wiki that new posts to this blog "
56 "should default to being [[SubPages|SubPage]] of \"blog\", and enables a form "
57 "at the top of the blog that can be used to add new items."
62 "If you want your blog to have an archive page listing every post ever made "
63 "to it, you can accomplish that like this:"
68 msgid "\t\\[[!inline pages=\"blog/* and !*/Discussion\" archive=\"yes\"]]\n"
69 msgstr "\t\\[[!inline pages=\"blog/* and !*/Discussion\" archive=\"yes\"]]\n"
73 "You can even create an automatically generated list of all the pages on the "
74 "wiki, with the most recently added at the top, like this:"
79 msgid "\t\\[[!inline pages=\"* and !*/Discussion\" archive=\"yes\"]]\n"
80 msgstr "\t\\[[!inline pages=\"* and !*/Discussion\" archive=\"yes\"]]\n"
84 "If you want to be able to add pages to a given blog feed by tagging them, "
85 "you can do that too. To tag a page, just make it link to a page or pages "
86 "that represent its tags. Then use the special `link()` [[PageSpec]] to match "
87 "all pages that have a given tag:"
92 msgid "\t\\[[!inline pages=\"link(life)\"]]\n"
93 msgstr "\t\\[[!inline pages=\"link(livet)\"]]\n"
96 msgid "Or include some tags and exclude others:"
101 msgid "\t\\[[!inline pages=\"link(debian) and !link(social)\"]]\n"
102 msgstr "\t\\[[!inline pages=\"link(debian) and !link(venner)\"]]\n"
111 "There are many parameters you can use with the `inline` directive. These are "
112 "the commonly used ones:"
115 #. type: Bullet: '* '
116 msgid "`pages` - A [[PageSpec]] of the pages to inline."
119 #. type: Bullet: '* '
121 "`show` - Specify the maximum number of matching pages to inline. Default is "
122 "10, unless archiving, when the default is to show all. Set to 0 to show all "
126 #. type: Bullet: '* '
128 "`archive` - If set to \"yes\", only list page titles and some metadata, not "
132 #. type: Bullet: '* '
134 "`description` - Sets the description of the rss feed if one is generated. "
135 "Defaults to the name of the wiki."
138 #. type: Bullet: '* '
140 "`skip` - Specify a number of pages to skip displaying. Can be useful to "
141 "produce a feed that only shows archived pages."
144 #. type: Bullet: '* '
146 "`postform` - Set to \"yes\" to enable a form to post new pages to a blog."
149 #. type: Bullet: '* '
150 msgid "`postformtext` - Set to specify text that is displayed in a postform."
153 #. type: Bullet: '* '
155 "`rootpage` - Enables the postform, and allows controling where newly posted "
156 "pages should go, by specifiying the page that they should be a [[SubPage]] "
161 msgid "Here are some less often needed parameters:"
164 #. type: Bullet: '* '
166 "`actions` - If set to \"yes\" add links to the bottom of the inlined pages "
167 "for editing and discussion (if they would be shown at the top of the page "
171 #. type: Bullet: '* '
173 "`rss` - controls generation of an rss feed. If the wiki is configured to "
174 "generate rss feeds by default, set to \"no\" to disable. If the wiki is "
175 "configured to `allowrss`, set to \"yes\" to enable."
178 #. type: Bullet: '* '
180 "`atom` - controls generation of an atom feed. If the wiki is configured to "
181 "generate atom feeds by default, set to \"no\" to disable. If the wiki is "
182 "configured to `allowatom`, set to \"yes\" to enable."
185 #. type: Bullet: '* '
187 "`feeds` - controls generation of all types of feeds. Set to \"no\" to "
188 "disable generating any feeds."
191 #. type: Bullet: '* '
193 "`emptyfeeds` - Set to \"no\" to disable generation of empty feeds. Has no "
194 "effect if `rootpage` or `postform` is set."
200 "* `id` - Set to specify the value of the HTML `id` attribute for the\n"
201 " feed links or the post form. Useful if you have multiple forms in the\n"
203 "* `template` - Specifies the template to fill out to display each inlined\n"
204 " page. By default the `inlinepage` template is used, while\n"
205 " the `archivepage` template is used for archives. Set this parameter to\n"
206 " use some other, custom template, such as the `titlepage` template that\n"
207 " only shows post titles or the `microblog` template, optimised for\n"
208 " microblogging. Note that you should still set `archive=yes` if\n"
209 " your custom template does not include the page content.\n"
210 "* `raw` - Rather than the default behavior of creating a blog,\n"
211 " if raw is set to \"yes\", the page will be included raw, without additional\n"
212 " markup around it, as if it were a literal part of the source of the \n"
214 "* `sort` - Controls how inlined pages are [[sorted|pagespec/sorting]].\n"
215 " The default is to sort the newest created pages first.\n"
216 "* `reverse` - If set to \"yes\", causes the sort order to be reversed.\n"
217 "* `feedshow` - Specify the maximum number of matching pages to include in\n"
218 " the rss/atom feeds. The default is the same as the `show` value above.\n"
219 "* `feedonly` - Only generate the feed, do not display the pages inline on\n"
221 "* `quick` - Build archives in quick mode, without reading page contents for\n"
222 " metadata. This also turns off generation of any feeds.\n"
223 "* `timeformat` - Use this to specify how to display the time or date for pages\n"
224 " in the blog. The format string is passed to the strftime(3) function.\n"
225 "* `feedpages` - A [[PageSpec]] of inlined pages to include in the rss/atom\n"
226 " feeds. The default is the same as the `pages` value above, and only pages\n"
227 " matched by that value are included, but some of those can be excluded by\n"
228 " specifying a tighter [[PageSpec]] here.\n"
229 "* `guid` - If a URI is given here (perhaps a UUID prefixed with `urn:uuid:`),\n"
230 " the Atom feed will have this as its `<id>`. The default is to use the URL\n"
231 " of the page containing the `inline` directive.\n"
232 "* `feedfile` - Can be used to change the name of the file generated for the\n"
233 " feed. This is particularly useful if a page contains multiple feeds.\n"
234 " For example, set \"feedfile=feed\" to cause it to generate `page/feed.atom`\n"
235 " and/or `page/feed.rss`. This option is not supported if the wiki is\n"
236 " configured not to use `usedirs`.\n"
237 "* `pagenames` - If given instead of `pages`, this is interpreted as a\n"
238 " space-separated list of links to pages (with the same\n"
239 " [[SubPage/LinkingRules]] as in a [[ikiwiki/WikiLink]]), and they are inlined\n"
240 " in exactly the order given: the `sort` and `pages` parameters cannot be used\n"
241 " in conjunction with this one.\n"
246 msgid "[[!meta robots=\"noindex, follow\"]]\n"
247 msgstr "[[!meta robots=\"noindex, follow\"]]\n"