summaryrefslogtreecommitdiff
path: root/ikiwiki/pagespec/attachment.da.po
blob: aa9e1434c4393a04a317cfd75fe1a95166478d6d (plain)
  1. # Danish translation of basewiki/ikiwiki/pagespec/attachment 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. #. type: Plain text
  23. #, no-wrap
  24. msgid "[[!meta robots=\"noindex, follow\"]]\n"
  25. msgstr "[[!meta robots=\"noindex, follow\"]]\n"
  26. #. type: Plain text
  27. #, no-wrap
  28. msgid ""
  29. "[[!if test=\"enabled(attachment)\"\n"
  30. " then=\"This wiki has attachments **enabled**.\"\n"
  31. " else=\"This wiki has attachments **disabled**.\"]]\n"
  32. msgstr ""
  33. "[[!if test=\"enabled(attachment)\"\n"
  34. " then=\"Denne wiki har vedhæftninger **aktiveret**.\"\n"
  35. " else=\"Denne wiki har vedhæftninger **deaktiveret**.\"]]\n"
  36. #. type: Plain text
  37. msgid ""
  38. "If attachments are enabled, the wiki admin can control what types of "
  39. "attachments will be accepted, via the `allowed_attachments` configuration "
  40. "setting."
  41. msgstr ""
  42. "Hvis vedhæftninger er aktiveret, kan wiki-administratoren styre hvilke typer "
  43. "vedhæftninger der vil blive accepteret gennem opsætningsindstillingen "
  44. "`allowed_attachments`."
  45. #. type: Plain text
  46. #, fuzzy
  47. #| msgid ""
  48. #| "For example, to limit arbitrary files to 50 kilobytes, but allow larger "
  49. #| "mp3 files to be uploaded by joey into a specific directory, and check all "
  50. #| "attachments for viruses, something like this could be used:"
  51. msgid ""
  52. "For example, to limit most users to uploading small images, and nothing "
  53. "else, while allowing larger mp3 files to be uploaded by joey into a specific "
  54. "directory, and check all attachments for viruses, something like this could "
  55. "be used:"
  56. msgstr ""
  57. "Som eksempel, for at begrænse vilkårlige filer til 50 kilobytes, men tillade "
  58. "større mp3-filer at blive lagt op af joey til en bestemt mappe, og checke "
  59. "alle vedhæftninger for vira, kunne noget i stil med dette bruges:"
  60. #. type: Plain text
  61. #, fuzzy, no-wrap
  62. #| msgid "\tvirusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg) and maxsize(15mb)) or (!ispage() and maxsize(50kb)))\n"
  63. msgid "\tvirusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg) and maxsize(15mb)) or (mimetype(image/*) and maxsize(50kb)))\n"
  64. msgstr "\tvirusfree() and ((user(joey) and podcast/*.mp3 and mimetype(audio/mpeg) and maxsize(15mb)) or (!ispage() and maxsize(50kb)))\n"
  65. #. type: Plain text
  66. msgid ""
  67. "The regular [[ikiwiki/PageSpec]] syntax is expanded with the following "
  68. "additional tests:"
  69. msgstr ""
  70. "Den normale [[ikiwiki/PageSpec]]-syntaks er udvidet med følgende yderligere "
  71. "tests:"
  72. #. type: Bullet: '* '
  73. msgid ""
  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\", \"gb"
  76. "\" etc can be used to specify the units."
  77. msgstr ""
  78. "\"`maxsize(størrelse)`\" - tester hvorvidt vedhæftningen højst fylder den "
  79. "angivne størrelse. Størrelsen angives som standard i bytes, men \"kb\", \"mb"
  80. "\", \"gb\" osv. kan bruges til at angive enheder."
  81. #. type: Bullet: '* '
  82. msgid ""
  83. "\"`minsize(size)`\" - tests whether the attachment is no smaller than the "
  84. "specified size."
  85. msgstr ""
  86. "\"`minsize(størrelse)`\" - tester hvorvidt størrelsen mindst fylder den "
  87. "angivne størrelse."
  88. #. type: Bullet: '* '
  89. msgid ""
  90. "\"`ispage()`\" - tests whether the attachment will be treated by ikiwiki as "
  91. "a wiki page. (Ie, if it has an extension of \".mdwn\", or of any other "
  92. "enabled page format)."
  93. msgstr ""
  94. "\"`ispage()`\" - tester hvorvidt vedhæftningen bliver håndteret af ikiwiki "
  95. "som en wikiside. (altså om den har endelsen \".mdwn\", eller et hvilket som "
  96. "helst andet aktiveret sideformat)."
  97. #. type: Plain text
  98. #, no-wrap
  99. msgid ""
  100. " So, if you don't want to allow wiki pages to be uploaded as attachments,\n"
  101. " use `!ispage()` ; if you only want to allow wiki pages to be uploaded\n"
  102. " as attachments, use `ispage()`.\n"
  103. msgstr ""
  104. " Derfor, hvis du ikke vil tillade wikisider at blive lagt op som vedhæftninger,\n"
  105. " så brug `!ispage()` ; hvis du kun vil tillade wikisider at blive lagt op som\n"
  106. " vedhæftninger, så brug `ispage()`.\n"
  107. #. type: Bullet: '* '
  108. msgid ""
  109. "\"`mimetype(foo/bar)`\" - checks the MIME type of the attachment. You can "
  110. "include a glob in the type, for example `mimetype(image/*)`."
  111. msgstr ""
  112. "\"`mimetype(foo/bar)`\" - checker MIME-typen for vedhæftningen. Du kan "
  113. "angive et glob som type, eksampelvis `mimetype(image/*)`."
  114. #. type: Bullet: '* '
  115. msgid "\"`virusfree()`\" - checks the attachment with an antiviral program."
  116. msgstr "\"`virusfree()`\" - checker vedhæftningen med et antivirusprogram."