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