summaryrefslogtreecommitdiff
path: root/po/underlays/basewiki/ikiwiki/pagespec.fr.po
blob: ec916b4eefab7c47e1ce2f8f6b58ec5c1ef473a9 (plain)
  1. # Traduction de ikiwiki
  2. # Copyright (C) 2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
  3. # This file is distributed under the same license as the ikiwiki package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: ikiwiki 3.141\n"
  8. "POT-Creation-Date: 2011-05-05 20:04+0300\n"
  9. "PO-Revision-Date: 2010-07-21 17:21+0200\n"
  10. "Last-Translator: Steve Petruzzello <dlist@bluewin.ch>\n"
  11. "Language-Team: French <debian-l10n-french@lists.debian.org>\n"
  12. "Language: fr\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. #. type: Plain text
  17. #, no-wrap
  18. msgid "[[!meta robots=\"noindex, follow\"]]\n"
  19. msgstr "[[!meta robots=\"noindex, follow\"]]\n"
  20. #. type: Plain text
  21. msgid ""
  22. "To select a set of pages, such as pages that are locked, pages whose commit "
  23. "emails you want subscribe to, or pages to combine into a blog, the wiki uses "
  24. "a PageSpec. This is an expression that matches a set of pages."
  25. msgstr ""
  26. "Le wiki utilise un concept de spécification de page « PageSpec » afin de "
  27. "choisir un ensemble de pages. Par exemple il est possible de choisir les "
  28. "pages verrouillées, les pages dont vous recevez par courriel les "
  29. "modifications ou des pages à regrouper pour faire blog. Une spécification "
  30. "correspond à un ensemble de pages."
  31. #. type: Plain text
  32. msgid ""
  33. "The simplest PageSpec is a simple list of pages. For example, this matches "
  34. "any of the three listed pages:"
  35. msgstr ""
  36. "La spécification la plus simple est la liste de pages. Par exemple, "
  37. "l'expression suivante correspond à l'une ou l'autre des trois pages listées :"
  38. #. type: Plain text
  39. #, no-wrap
  40. msgid "\tfoo or bar or baz\n"
  41. msgstr "\tfoo or bar or baz\n"
  42. #. type: Plain text
  43. msgid ""
  44. "More often you will want to match any pages that have a particular thing in "
  45. "their name. You can do this using a glob pattern. \"`*`\" stands for any "
  46. "part of a page name, and \"`?`\" for any single letter of a page name. So "
  47. "this matches all pages about music, and any [[SubPage]]s of the SandBox, but "
  48. "does not match the SandBox itself:"
  49. msgstr ""
  50. "La plupart du temps, vous voulez trouver les pages qui contiennent une "
  51. "expression particulière dans leur nom. Cela s'obtient en utilisant un motif "
  52. "(« glob pattern »). Le métacaractère « `*` » correspond à n'importe quelle "
  53. "partie du nom de la page et le métacaractère « `?` » à n'importe quelle "
  54. "lettre. Ainsi, l'expression suivante correspond à toutes les pages traitant "
  55. "de musique et à n'importe quelle sous-page [[SubPage]] de la *SandBox*, mais "
  56. "pas à la *SandBox* elle-même :"
  57. #. type: Plain text
  58. #, no-wrap
  59. msgid "\t*music* or SandBox/*\n"
  60. msgstr "\t*musique* or SandBox/*\n"
  61. #. type: Plain text
  62. msgid ""
  63. "You can also prefix an item with \"`!`\" to skip pages that match it. So to "
  64. "match all pages except for Discussion pages and the SandBox:"
  65. msgstr ""
  66. "Vous pouvez également préfixer un élément avec « `!` » pour ignorer les "
  67. "pages correspondantes. Ainsi pour trouver toutes les pages sauf les pages "
  68. "Discussion et la page *SandBox* :"
  69. #. type: Bullet: ' * '
  70. msgid "and !SandBox and !*/Discussion"
  71. msgstr "and !SandBox and !*/Discussion"
  72. #. type: Plain text
  73. msgid ""
  74. "Some more elaborate limits can be added to what matches using these "
  75. "functions:"
  76. msgstr ""
  77. "Des contraintes plus élaborées peuvent être ajoutées avec les fonctions "
  78. "suivantes :"
  79. #. type: Plain text
  80. #, fuzzy, no-wrap
  81. #| msgid ""
  82. #| "* \"`glob(someglob)`\" - matches pages and other files that match the given glob.\n"
  83. #| " Just writing the glob by itself is actually a shorthand for this function.\n"
  84. #| "* \"`page(glob)`\" - like `glob()`, but only matches pages, not other files\n"
  85. #| "* \"`link(page)`\" - matches only pages that link to a given page (or glob)\n"
  86. #| "* \"`tagged(tag)`\" - matches pages that are tagged or link to the given tag (or\n"
  87. #| " tags matched by a glob)\n"
  88. #| "* \"`backlink(page)`\" - matches only pages that a given page links to\n"
  89. #| "* \"`creation_month(month)`\" - matches only files created on the given month\n"
  90. #| "* \"`creation_day(mday)`\" - or day of the month\n"
  91. #| "* \"`creation_year(year)`\" - or year\n"
  92. #| "* \"`created_after(page)`\" - matches only files created after the given page\n"
  93. #| " was created\n"
  94. #| "* \"`created_before(page)`\" - matches only files created before the given page\n"
  95. #| " was created\n"
  96. #| "* \"`internal(glob)`\" - like `glob()`, but matches even internal-use \n"
  97. #| " pages that globs do not usually match.\n"
  98. #| "* \"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\",\n"
  99. #| " \"`license(glob)`\", \"`copyright(glob)`\", \"`guid(glob)`\" \n"
  100. #| " - match pages that have the given metadata, matching the specified glob.\n"
  101. #| "* \"`user(username)`\" - tests whether a modification is being made by a\n"
  102. #| " user with the specified username. If openid is enabled, an openid can also\n"
  103. #| " be put here. Glob patterns can be used in the username. For example, \n"
  104. #| " to match all openid users, use `user(*://*)`\n"
  105. #| "* \"`admin()`\" - tests whether a modification is being made by one of the\n"
  106. #| " wiki admins.\n"
  107. #| "* \"`ip(address)`\" - tests whether a modification is being made from the\n"
  108. #| " specified IP address.\n"
  109. #| "* \"`comment(glob)`\" - matches comments to a page matching the glob.\n"
  110. #| "* \"`comment_pending(glob)`\" - matches unmoderated, pending comments.\n"
  111. #| "* \"`postcomment(glob)`\" - matches only when comments are being \n"
  112. #| " posted to a page matching the specified glob\n"
  113. msgid ""
  114. "* \"`glob(someglob)`\" - matches pages and other files that match the given glob.\n"
  115. " Just writing the glob by itself is actually a shorthand for this function.\n"
  116. "* \"`page(glob)`\" - like `glob()`, but only matches pages, not other files\n"
  117. "* \"`link(page)`\" - matches only pages that link to a given page (or glob)\n"
  118. "* \"`tagged(tag)`\" - matches pages that are tagged or link to the given tag (or\n"
  119. " tags matched by a glob)\n"
  120. "* \"`backlink(page)`\" - matches only pages that a given page links to\n"
  121. "* \"`creation_month(month)`\" - matches only files created on the given month\n"
  122. " number\n"
  123. "* \"`creation_day(mday)`\" - or day of the month\n"
  124. "* \"`creation_year(year)`\" - or year\n"
  125. "* \"`created_after(page)`\" - matches only files created after the given page\n"
  126. " was created\n"
  127. "* \"`created_before(page)`\" - matches only files created before the given page\n"
  128. " was created\n"
  129. "* \"`internal(glob)`\" - like `glob()`, but matches even internal-use \n"
  130. " pages that globs do not usually match.\n"
  131. "* \"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\",\n"
  132. " \"`license(glob)`\", \"`copyright(glob)`\", \"`guid(glob)`\" \n"
  133. " - match pages that have the given metadata, matching the specified glob.\n"
  134. "* \"`user(username)`\" - tests whether a modification is being made by a\n"
  135. " user with the specified username. If openid is enabled, an openid can also\n"
  136. " be put here. Glob patterns can be used in the username. For example, \n"
  137. " to match all openid users, use `user(*://*)`\n"
  138. "* \"`admin()`\" - tests whether a modification is being made by one of the\n"
  139. " wiki admins.\n"
  140. "* \"`ip(address)`\" - tests whether a modification is being made from the\n"
  141. " specified IP address.\n"
  142. "* \"`comment(glob)`\" - matches comments to a page matching the glob.\n"
  143. "* \"`comment_pending(glob)`\" - matches unmoderated, pending comments.\n"
  144. "* \"`postcomment(glob)`\" - matches only when comments are being \n"
  145. " posted to a page matching the specified glob\n"
  146. msgstr ""
  147. "* \"`glob(motif)`\" - recherche les pages et fichiers qui correspondent au motif.\n"
  148. " N'écrire que le motif lui-même est un raccourci pour cette fonction.\n"
  149. "* \"`page(motif)`\" - comme `glob()`, mais ne recherche que des pages, pas des fichiers.\n"
  150. "* \"`link(page)`\" - correspond aux pages ayant un lien vers cette page (ou motif)\n"
  151. "* \"`tagged(étiquette)`\" - correspond aux pages qui sont marquées ou qui sont\n"
  152. " liées à l'étiquette donnée (ou des étiquettes correspondant à un motif).\n"
  153. "* \"`backlink(page)`\" - correspond seulement aux pages qui sont pointées (lien) par la page donnée.\n"
  154. "* \"`creation_month(mois)`\" - correspond aux pages créées durant ce mois\n"
  155. "* \"`creation_day(jour)`\" - ou au jour de ce mois\n"
  156. "* \"`creation_year(année)`\" - ou année\n"
  157. "* \"`created_after(page)`\" - correspond aux fichiers créés après la création de la page donnée.\n"
  158. "* \"`created_before(page)`\\\" - correspond aux fichiers créés avant la création de la page donnée.\n"
  159. "* \"`internal(motif)`\" - comme `glob()`, mais correspond en plus aux\n"
  160. " pages à usage interne que la fonction glob ne trouve pas en général.\n"
  161. "* \"`title(motif)`\", \"`author(motif)`\", \"`authorurl(motif)`\",\n"
  162. " \"`license(motif)`\", \"`copyright(motif)`\", \"`guid(motif)`\"\n"
  163. " - renvoient les pages qui possèdent les métadonnées correspondant au motif donné.\n"
  164. "* \"`user(username)`\" - teste si une modification est faite par l'identifiant donné.\n"
  165. " Si openid est activé, on peut aussi l'utiliser. L'identifiant peut contenir des expressions régulières.\n"
  166. " Par exemple, pour obtenir tous les utilisateurs openid, utilisez l'expression : `user(*://*)`.\n"
  167. "* \"`admin()`\" - teste si une modification par un administrateur du wiki est en cours.\n"
  168. "* \"`ip(adresse)`\" - teste si une modification par l'IP donnée est en cours.\n"
  169. "* \"`comment(motif)`\" - renvoient les commentaires d'une page correspondant au motif donné.\n"
  170. "* \"`comment_pending(motif)`\" - renvoient les commentaires non modérés, en attente.\n"
  171. "* \"`postcomment(motif)`\" - ne correspond que si des commentaires sont postés\n"
  172. " vers une page correspondant au motif donné.\n"
  173. #. type: Plain text
  174. msgid ""
  175. "For example, to match all pages in a blog that link to the page about music "
  176. "and were written in 2005:"
  177. msgstr ""
  178. "Par exemple, pour trouver toutes les pages d'un blog qui ont un lien vers la "
  179. "page traitant de musique et qui ont été créées en 2005 :"
  180. #. type: Plain text
  181. #, no-wrap
  182. msgid "\tblog/* and link(music) and creation_year(2005)\n"
  183. msgstr "\tblog/* and link(musique) and creation_year(2005)\n"
  184. #. type: Plain text
  185. msgid ""
  186. "Note the use of \"and\" in the above example, that means that only pages "
  187. "that match each of the three expressions match the whole. Use \"and\" when "
  188. "you want to combine expression like that; \"or\" when it's enough for a page "
  189. "to match one expression. Note that it doesn't make sense to say \"index and "
  190. "SandBox\", since no page can match both expressions."
  191. msgstr ""
  192. "Veuillez noter l'utilisation du « and » dans l'exemple ci-dessus. Seules les "
  193. "pages dont les trois conditions sont vraies seront trouvées. Utilisez "
  194. "« and » pour ce genre d'expression combinée. « or » est utilisé quand une "
  195. "seule des trois conditions est suffisante. Veuillez noter que « index and "
  196. "SandBox » n'a pas de sens puisqu'aucune page ne peut correspondre aux deux "
  197. "expressions."
  198. #. type: Plain text
  199. msgid ""
  200. "More complex expressions can also be created, by using parentheses for "
  201. "grouping. For example, to match pages in a blog that are tagged with either "
  202. "of two tags, use:"
  203. msgstr ""
  204. "On peut créer des expressions plus complexes à l'aide de parenthèses. Par "
  205. "exemple, pour trouver les pages d'un blog possédantl'une ou l'autre "
  206. "étiquette, on utiliserait :"
  207. #. type: Plain text
  208. #, no-wrap
  209. msgid "\tblog/* and (tagged(foo) or tagged(bar))\n"
  210. msgstr "\tblog/* and (tagged(foo) or tagged(bar))\n"
  211. #. type: Plain text
  212. msgid ""
  213. "Note that page names in PageSpecs are matched against the absolute filenames "
  214. "of the pages in the wiki, so a pagespec \"foo\" used on page \"a/b\" will "
  215. "not match a page named \"a/foo\" or \"a/b/foo\". To match relative to the "
  216. "directory of the page containing the pagespec, you can use \"./\". For "
  217. "example, \"./foo\" on page \"a/b\" matches page \"a/foo\"."
  218. msgstr ""
  219. "Veuillez noter que le nom d'une page dans une spécification de page "
  220. "correspond au nom absolu du fichier dans le wiki. Ainsi une expression "
  221. "« foo » utilisée sur une page « a/b » ne correspondra pas à une page nommée "
  222. "« a/foo » ni à une page « a/b/foo ». Pour une correspondance relative au "
  223. "répertoire de la page contenant la spécification, vous pouvez utiliser "
  224. "« ./ ». Par exemple, « ./foo » sur la page « a/b » correspondra à la page "
  225. "« a/foo »."
  226. #. type: Plain text
  227. msgid ""
  228. "To indicate the name of the page the PageSpec is used in, you can use a "
  229. "single dot. For example, `link(.)` matches all the pages linking to the page "
  230. "containing the PageSpec."
  231. msgstr ""
  232. #~ msgid ""
  233. #~ "\"`link(page)`\" - matches only pages that link to a given page (or glob)"
  234. #~ msgstr ""
  235. #~ "« `link(page)` » - correspond aux pages ayant un lien vers cette page (ou "
  236. #~ "motif)"
  237. #~ msgid ""
  238. #~ "\"`tagged(tag)`\" - matches pages that are tagged or link to the given "
  239. #~ "tag (or tags matched by a glob)"
  240. #~ msgstr ""
  241. #~ "« `tagged(tag)` » - correspond aux pages qui sont marquées ou qui sont "
  242. #~ "liées à l'étiquette donnée (ou des étiquettes correspondant à un motif)."
  243. #~ msgid "\"`backlink(page)`\" - matches only pages that a given page links to"
  244. #~ msgstr ""
  245. #~ "« `backlink(page)` » - correspond seulement aux pages qui sont pointées "
  246. #~ "(lien) par la page donnée."
  247. #~ msgid ""
  248. #~ "\"`creation_month(month)`\" - matches only pages created on the given "
  249. #~ "month"
  250. #~ msgstr ""
  251. #~ "« `creation_month(mois)` » - correspond aux pages créées durant ce mois"
  252. #~ msgid "\"`creation_day(mday)`\" - or day of the month"
  253. #~ msgstr "« `creation_day(jour)` » - ou au jour de ce mois"
  254. #~ msgid "\"`creation_year(year)`\" - or year"
  255. #~ msgstr "« `creation_year(année)` » - ou année"
  256. #~ msgid ""
  257. #~ "\"`created_after(page)`\" - matches only pages created after the given "
  258. #~ "page was created"
  259. #~ msgstr ""
  260. #~ "« `created_after(page)` » - correspond aux pages créées après la page "
  261. #~ "donnée"
  262. #~ msgid ""
  263. #~ "\"`created_before(page)`\" - matches only pages created before the given "
  264. #~ "page was created"
  265. #~ msgstr ""
  266. #~ "« `created_before(page) » - correspond aux pages créées avant la page "
  267. #~ "donnée"
  268. #~ msgid ""
  269. #~ "\"`glob(someglob)`\" - matches pages that match the given glob. Just "
  270. #~ "writing the glob by itself is actually a shorthand for this function."
  271. #~ msgstr ""
  272. #~ "« `glob(motif)` » - correspond aux pages correspondantes au motif donné. "
  273. #~ "N'écrire que le motif lui-même est un raccourci pour cette fonction."
  274. #~ msgid ""
  275. #~ "\"`internal(glob)`\" - like `glob()`, but matches even internal-use pages "
  276. #~ "that globs do not usually match."
  277. #~ msgstr ""
  278. #~ "« `internal(motif)` » - pareil à `glob()`, mais correspond en plus aux "
  279. #~ "pages à usage interne que la fonction glob ne trouve pas en général."
  280. #~ msgid ""
  281. #~ "\"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\", \"`license"
  282. #~ "(glob)`\", \"`copyright(glob)`\" - match pages that have the given "
  283. #~ "metadata, matching the specified glob."
  284. #~ msgstr ""
  285. #~ "« `title(motif)`, `author(motif)`, `authorurl(motif)`, `license(motif)`, "
  286. #~ "`copyright(motif)` » - renvoient les pages qui possèdent les métadonnées "
  287. #~ "correspondant au motif donné."
  288. #~| msgid ""
  289. #~| "\"`user(username)`\" - tests whether a modification is being made by a "
  290. #~| "user with the specified username. If openid is enabled, an openid can "
  291. #~| "also be put here."
  292. #~ msgid ""
  293. #~ "\"`user(username)`\" - tests whether a modification is being made by a "
  294. #~ "user with the specified username. If openid is enabled, an openid can "
  295. #~ "also be put here. Glob patterns can be used in the username. For example, "
  296. #~ "to match all openid users, use `user(*://*)`"
  297. #~ msgstr ""
  298. #~ "« `user(identifiant)` » - teste si une modification est faite par "
  299. #~ "l'identifiant donné. Si openid est activé, on peut aussi l'utiliser. "
  300. #~ "L'identifiant peut contenir des expressions régulières. Par exemple, pour "
  301. #~ "obtenir tous les utilisateurs openid, utilisez l'expression `user(*://*)`."
  302. #~ msgid ""
  303. #~ "\"`admin()`\" - tests whether a modification is being made by one of the "
  304. #~ "wiki admins."
  305. #~ msgstr ""
  306. #~ "« `admin()` » - teste si une modification par un administrateur est en "
  307. #~ "cours."
  308. #~ msgid ""
  309. #~ "\"`ip(address)`\" - tests whether a modification is being made from the "
  310. #~ "specified IP address."
  311. #~ msgstr ""
  312. #~ "« `ip(adresse)` » - teste si une modification par l'IP donnée est en "
  313. #~ "cours."
  314. #~ msgid ""
  315. #~ "\"`postcomment(glob)`\" - matches only when comments are being posted to "
  316. #~ "a page matching the specified glob"
  317. #~ msgstr ""
  318. #~ "« `postcomment(motif) » - ne correspond que si des commentaires sont "
  319. #~ "postés vers une page correspondant au motif donné."