1 # German translation of basewiki/ikiwiki/pagespec/attachment page for ikiwiki.
2 # Copyright © 2010 Sebastian Kuhnert <mail@sebastian-kuhnert.de>
3 # Redistribution and use in source and compiled forms, with or without
4 # modification, are permitted under any circumstances. No warranty.
7 "POT-Creation-Date: 2010-03-12 09:29+0530\n"
8 "PO-Revision-Date: 2010-03-14 15:17+0530\n"
9 "Last-Translator: Sebastian Kuhnert <mail@sebastian-kuhnert.de>\n"
10 "Language-Team: None\n"
12 "Content-Type: text/plain; charset=UTF-8\n"
13 "Content-Transfer-Encoding: 8bit\n"
14 "Plural-Forms: nplurals=2; plural=n != 1;\n"
18 msgid "[[!meta robots=\"noindex, follow\"]]\n"
20 "[[!meta title=\"Anhänge\"]]\n"
21 "[[!meta robots=\"noindex, follow\"]]\n"
26 "[[!if test=\"enabled(attachment)\"\n"
27 " then=\"This wiki has attachments **enabled**.\"\n"
28 " else=\"This wiki has attachments **disabled**.\"]]\n"
30 "[[!if test=\"enabled(attachment)\"\n"
31 " then=\"In diesem Wiki sind Anhänge **aktiviert**.\"\n"
32 " else=\"In diesem Wiki sind Anhänge **deaktiviert**.\"]]\n"
36 "If attachments are enabled, the wiki admin can control what types of "
37 "attachments will be accepted, via the `allowed_attachments` configuration "
40 "Wenn Anhänge aktiviert sind, kann der Administrator des Wikis bestimmen, "
41 "welche Arten von Anhängen akzeptiert werden, indem er die Einstellung "
42 "`allowed_attachments` verändert."
46 "For example, to limit arbitrary files to 50 kilobytes, but allow larger mp3 "
47 "files to be uploaded by joey into a specific directory, and check all "
48 "attachments for viruses, something like this could be used:"
50 "Zum Beispiel können beliebige Dateien auf 50 Kilobyte beschränkt, "
51 "aber größere mp3-Dateien von joey in einem bestimmten Verzeichnis erlaubt, "
52 "und alle Anhänge nach Viren durchsucht werden, indem etwas wie "
53 "das Folgende verwendet wird:"
58 "\tvirusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg) "
59 "and maxsize(15mb)) or (!ispage() and maxsize(50kb)))\n"
61 "\tvirusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg) "
62 "and maxsize(15mb)) or (!ispage() and maxsize(50kb)))\n"
66 "The regular [[ikiwiki/PageSpec]] syntax is expanded with the following "
69 "Die reguläre [[ikiwiki/PageSpec]]-Syntax ist um die folgenden zusätzlichen "
74 "\"`maxsize(size)`\" - tests whether the attachment is no larger than the "
75 "specified size. The size defaults to being in bytes, but \"kb\", \"mb\", "
76 "\"gb\" etc can be used to specify the units."
78 "\"`maxsize(size)`\" - prüft ob der Anhang nicht größer ist als angegeben. "
79 "Die Größe wird standardmäßig in Bytes angegeben, aber `kb`, `mb`, "
80 "`gb` und so weiter kann verwendet werden, um die Einheit anzugeben."
84 "\"`minsize(size)`\" - tests whether the attachment is no smaller than the "
87 "\"`minsize(size)`\" - prüft ob der Anhang nicht kleiner ist als angegeben."
91 "\"`ispage()`\" - tests whether the attachment will be treated by ikiwiki as "
92 "a wiki page. (Ie, if it has an extension of \".mdwn\", or of any other "
93 "enabled page format)."
95 "\"`ispage()`\" - prüft ob der Anhang von ikiwiki als Wiki-Seite behandelt "
96 "wird. Dies ist der Fall, wenn er die Endung `.mdwn` oder die eines anderen "
97 "aktivierten Seitenformats hat."
102 " So, if you don't want to allow wiki pages to be uploaded as attachments,\n"
103 " use `!ispage()` ; if you only want to allow wiki pages to be uploaded\n"
104 " as attachments, use `ispage()`.\n"
106 " Wenn man also verhindern will, dass Wiki-Seiten als Anhang hochgeladen\n"
107 " werden, kann `!ispage()` verwendet werden; wenn nur Wiki-Seiten\n"
108 " hochgeladen werden können sollen, geht dies mit `ispage()`.\n"
110 #. type: Bullet: '* '
112 "\"`mimetype(foo/bar)`\" - checks the MIME type of the attachment. You can "
113 "include a glob in the type, for example `mimetype(image/*)`."
115 "\"`mimetype(foo/bar)`\" - prüft den MIME-Typ des Anhangs. Man kann ein "
116 "Muster für den Typen verwenden, zum Beispiel `mimetype(image/*)`."
118 #. type: Bullet: '* '
119 msgid "\"`virusfree()`\" - checks the attachment with an antiviral program."
120 msgstr "\"`virusfree()`\" - prüft den Anhang mit einem Virenscanner."