summaryrefslogtreecommitdiff
path: root/po/underlays/basewiki/ikiwiki/pagespec.es.po
blob: 6b194697c5f86ed584a3bf3d22ac8d18398a3f4b (plain)
  1. # Spanish translation of basewiki/ikiwiki/pagespec page for ikiwiki.
  2. # Copyright (C) 2009 Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the ikiwiki package.
  4. # Fernando González de Requena <fgrequena@gmail.com>, 2009.
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: ikiwiki\n"
  8. "POT-Creation-Date: 2011-05-05 20:04+0300\n"
  9. "PO-Revision-Date: 2009-08-23 21:00+0200\n"
  10. "Last-Translator: Fernando González de Requena <fgrequena@gmail.com>\n"
  11. "Language-Team: None\n"
  12. "Language: \n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. "X-Generator: KBabel 1.11.4\n"
  17. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  18. #. type: Plain text
  19. #, no-wrap
  20. msgid "[[!meta robots=\"noindex, follow\"]]\n"
  21. msgstr "[[!meta robots=\"noindex, follow\"]]\n"
  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. "Para seleccionar un conjunto de páginas, como páginas que están bloqueadas, "
  29. "páginas a cuyo envío de correo electrónico quiere suscribirse, o páginas "
  30. "para combinar en un blog, el wiki utiliza una PageSpec. Ésta consiste en una "
  31. "expresión que se corresponde con un conjunto de páginas."
  32. #. type: Plain text
  33. msgid ""
  34. "The simplest PageSpec is a simple list of pages. For example, this matches "
  35. "any of the three listed pages:"
  36. msgstr ""
  37. "La PageSpec más simple es una lista simple de páginas. Por ejemplo, ésta se "
  38. "corresponde con cualquiera de las tres páginas listadas:"
  39. #. type: Plain text
  40. #, no-wrap
  41. msgid "\tfoo or bar or baz\n"
  42. msgstr "\tfoo or bar or baz\n"
  43. #. type: Plain text
  44. msgid ""
  45. "More often you will want to match any pages that have a particular thing in "
  46. "their name. You can do this using a glob pattern. \"`*`\" stands for any "
  47. "part of a page name, and \"`?`\" for any single letter of a page name. So "
  48. "this matches all pages about music, and any [[SubPage]]s of the SandBox, but "
  49. "does not match the SandBox itself:"
  50. msgstr ""
  51. "A menudo querrá seleccionar cualquier página que tenga alguna particularidad "
  52. "en su nombre. Puede hacerlo utilizando un patrón «glob». \"`*`\" representa "
  53. "cualquier parte del nombre de una página, y \"`?`\" cualquier letra del "
  54. "nombre de una página. Así, esto se corresponde con todas las páginas sobre "
  55. "música, y cualquier [[subpágina|SubPage]] de la [[zona de pruebas "
  56. "(«SandBox»)|SandBox]], pero no con la zona de pruebas («SandBox») misma:"
  57. #. type: Plain text
  58. #, no-wrap
  59. msgid "\t*music* or SandBox/*\n"
  60. msgstr "\t*music* 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. "También puede utilizar \"`!`\" delante de un elemento para que no se "
  67. "incluyan las páginas que se correspondan con ese elemento. Así, para "
  68. "seleccionar todas las páginas excepto las de Discusión y la Zona de pruebas "
  69. "(«SandBox»):"
  70. #. type: Bullet: ' * '
  71. msgid "and !SandBox and !*/Discussion"
  72. msgstr "and !SandBox and !*/Discussion"
  73. #. type: Plain text
  74. msgid ""
  75. "Some more elaborate limits can be added to what matches using these "
  76. "functions:"
  77. msgstr ""
  78. "Se pueden añadir límites más elaborados para seleccionar páginas utilizando "
  79. "estas funciones:"
  80. #. type: Plain text
  81. #, no-wrap
  82. msgid ""
  83. "* \"`glob(someglob)`\" - matches pages and other files that match the given glob.\n"
  84. " Just writing the glob by itself is actually a shorthand for this function.\n"
  85. "* \"`page(glob)`\" - like `glob()`, but only matches pages, not other files\n"
  86. "* \"`link(page)`\" - matches only pages that link to a given page (or glob)\n"
  87. "* \"`tagged(tag)`\" - matches pages that are tagged or link to the given tag (or\n"
  88. " tags matched by a glob)\n"
  89. "* \"`backlink(page)`\" - matches only pages that a given page links to\n"
  90. "* \"`creation_month(month)`\" - matches only files created on the given month\n"
  91. " number\n"
  92. "* \"`creation_day(mday)`\" - or day of the month\n"
  93. "* \"`creation_year(year)`\" - or year\n"
  94. "* \"`created_after(page)`\" - matches only files created after the given page\n"
  95. " was created\n"
  96. "* \"`created_before(page)`\" - matches only files created before the given page\n"
  97. " was created\n"
  98. "* \"`internal(glob)`\" - like `glob()`, but matches even internal-use \n"
  99. " pages that globs do not usually match.\n"
  100. "* \"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\",\n"
  101. " \"`license(glob)`\", \"`copyright(glob)`\", \"`guid(glob)`\" \n"
  102. " - match pages that have the given metadata, matching the specified glob.\n"
  103. "* \"`user(username)`\" - tests whether a modification is being made by a\n"
  104. " user with the specified username. If openid is enabled, an openid can also\n"
  105. " be put here. Glob patterns can be used in the username. For example, \n"
  106. " to match all openid users, use `user(*://*)`\n"
  107. "* \"`admin()`\" - tests whether a modification is being made by one of the\n"
  108. " wiki admins.\n"
  109. "* \"`ip(address)`\" - tests whether a modification is being made from the\n"
  110. " specified IP address.\n"
  111. "* \"`comment(glob)`\" - matches comments to a page matching the glob.\n"
  112. "* \"`comment_pending(glob)`\" - matches unmoderated, pending comments.\n"
  113. "* \"`postcomment(glob)`\" - matches only when comments are being \n"
  114. " posted to a page matching the specified glob\n"
  115. msgstr ""
  116. #. type: Plain text
  117. msgid ""
  118. "For example, to match all pages in a blog that link to the page about music "
  119. "and were written in 2005:"
  120. msgstr ""
  121. "Por ejemplo, para seleccionar todas las páginas de un blog que enlazan a la "
  122. "página sobre música y que fueron escritas en 2005:"
  123. #. type: Plain text
  124. #, no-wrap
  125. msgid "\tblog/* and link(music) and creation_year(2005)\n"
  126. msgstr "\tblog/* and link(música) and creation_year(2005)\n"
  127. #. type: Plain text
  128. msgid ""
  129. "Note the use of \"and\" in the above example, that means that only pages "
  130. "that match each of the three expressions match the whole. Use \"and\" when "
  131. "you want to combine expression like that; \"or\" when it's enough for a page "
  132. "to match one expression. Note that it doesn't make sense to say \"index and "
  133. "SandBox\", since no page can match both expressions."
  134. msgstr ""
  135. "Fíjese en el uso de \"and\" en el ejemplo anterior, que significa que sólo "
  136. "son seleccionadas las páginas que se corresponden con cada una de las tres "
  137. "expresiones. Utilice \"and\" cuando quiera combinar una expresión como ésa; "
  138. "utilice \"or\" cuando sea suficiente que una página se corresponda con una "
  139. "de las expresiones. Fíjese en que no tiene sentido decir \"index and SandBox"
  140. "\", puesto que ninguna página puede corresponderse con ambas expresiones."
  141. #. type: Plain text
  142. msgid ""
  143. "More complex expressions can also be created, by using parentheses for "
  144. "grouping. For example, to match pages in a blog that are tagged with either "
  145. "of two tags, use:"
  146. msgstr ""
  147. "También se pueden crear expresiones más complejas, utilizando paréntesis "
  148. "para agruparlas. Por ejemplo, para seleccionar páginas de un blog que están "
  149. "etiquetadas con alguna de dos etiquetas, utilice:"
  150. #. type: Plain text
  151. #, no-wrap
  152. msgid "\tblog/* and (tagged(foo) or tagged(bar))\n"
  153. msgstr "\tblog/* and (tagged(foo) or tagged(bar))\n"
  154. #. type: Plain text
  155. msgid ""
  156. "Note that page names in PageSpecs are matched against the absolute filenames "
  157. "of the pages in the wiki, so a pagespec \"foo\" used on page \"a/b\" will "
  158. "not match a page named \"a/foo\" or \"a/b/foo\". To match relative to the "
  159. "directory of the page containing the pagespec, you can use \"./\". For "
  160. "example, \"./foo\" on page \"a/b\" matches page \"a/foo\"."
  161. msgstr ""
  162. "Tenga en cuenta que los nombres de página en las PageSpecs se seleccionan "
  163. "según los nombre de archivo absolutos de las páginas del wiki, de tal modo "
  164. "que una «pagespec» \"foo\" utilizada en la página \"a/b\" no seleccionará "
  165. "una página llamada \"a/foo\" o \"a/b/foo\". Para seleccionar de manera "
  166. "relativa al directorio de la página que contiene la «pagespec», puede "
  167. "utilizar \"./\". Por ejemplo, \"./foo\" en la página \"a/b\" selecciona la "
  168. "página \"a/foo\"."
  169. #. type: Plain text
  170. msgid ""
  171. "To indicate the name of the page the PageSpec is used in, you can use a "
  172. "single dot. For example, `link(.)` matches all the pages linking to the page "
  173. "containing the PageSpec."
  174. msgstr ""
  175. #~ msgid ""
  176. #~ "\"`link(page)`\" - matches only pages that link to a given page (or glob)"
  177. #~ msgstr ""
  178. #~ "\"`link(page)`\" - selecciona solamente páginas que enlazan a una "
  179. #~ "determiada página (o patrón «glob»)"
  180. #~ msgid ""
  181. #~ "\"`tagged(tag)`\" - matches pages that are tagged or link to the given "
  182. #~ "tag (or tags matched by a glob)"
  183. #~ msgstr ""
  184. #~ "\"`tagged(tag)`\" - selecciona páginas que están etiquetadas con o "
  185. #~ "enlazadas a la etiqueta dada (o etiquetas que se corresponden con un "
  186. #~ "patrón «glob»)"
  187. #~ msgid "\"`backlink(page)`\" - matches only pages that a given page links to"
  188. #~ msgstr ""
  189. #~ "\"`backlink(page)`\" - selecciona solamente páginas a las que enlaza una "
  190. #~ "página determinada"
  191. #~ msgid ""
  192. #~ "\"`creation_month(month)`\" - matches only pages created on the given "
  193. #~ "month"
  194. #~ msgstr ""
  195. #~ "\"`creation_month(month)`\" - selecciona solamente páginas creadas en el "
  196. #~ "mes dado"
  197. #~ msgid "\"`creation_day(mday)`\" - or day of the month"
  198. #~ msgstr "\"`creation_day(mday)`\" - o en el día del mes"
  199. #~ msgid "\"`creation_year(year)`\" - or year"
  200. #~ msgstr "\"`creation_year(year)`\" - o en el año"
  201. #~ msgid ""
  202. #~ "\"`created_after(page)`\" - matches only pages created after the given "
  203. #~ "page was created"
  204. #~ msgstr ""
  205. #~ "\"`created_after(page)`\" - selecciona solamente páginas creadas después "
  206. #~ "de que la página dada fuera creada"
  207. #~ msgid ""
  208. #~ "\"`created_before(page)`\" - matches only pages created before the given "
  209. #~ "page was created"
  210. #~ msgstr ""
  211. #~ "\"`created_before(page)`\" - selecciona solamente páginas creadas antes "
  212. #~ "de que la página dada fuera creada"
  213. #~ msgid ""
  214. #~ "\"`glob(someglob)`\" - matches pages that match the given glob. Just "
  215. #~ "writing the glob by itself is actually a shorthand for this function."
  216. #~ msgstr ""
  217. #~ "\"`glob(someglob)`\" - selecciona solamente páginas que se corresponden "
  218. #~ "con el «glob» dado. Escribir simplemente el «glob» mismo es una "
  219. #~ "abreviatura para esta función."
  220. #~ msgid ""
  221. #~ "\"`internal(glob)`\" - like `glob()`, but matches even internal-use pages "
  222. #~ "that globs do not usually match."
  223. #~ msgstr ""
  224. #~ "\"`internal(glob)`\" - como `glob()`, pero selecciona incluso páginas de "
  225. #~ "uso interno, que los «globs» normalmente no seleccionan."
  226. #~ msgid ""
  227. #~ "\"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\", \"`license"
  228. #~ "(glob)`\", \"`copyright(glob)`\" - match pages that have the given "
  229. #~ "metadata, matching the specified glob."
  230. #~ msgstr ""
  231. #~ "\"`title(glob)`\", \"`author(glob)`\", \"`authorurl(glob)`\", \"`license"
  232. #~ "(glob)`\", \"`copyright(glob)`\" - seleccionan páginas que contienen los "
  233. #~ "metadatos dados, que se corresponden con el «glob» especificado."
  234. #, fuzzy
  235. #~| msgid ""
  236. #~| "\"`user(username)`\" - tests whether a modification is being made by a "
  237. #~| "user with the specified username. If openid is enabled, an openid can "
  238. #~| "also be put here."
  239. #~ msgid ""
  240. #~ "\"`user(username)`\" - tests whether a modification is being made by a "
  241. #~ "user with the specified username. If openid is enabled, an openid can "
  242. #~ "also be put here. Glob patterns can be used in the username. For example, "
  243. #~ "to match all openid users, use `user(*://*)`"
  244. #~ msgstr ""
  245. #~ "\"`user(username)`\" - comprueba si se está haciendo una modificación por "
  246. #~ "un usuario con el nombre de usuario especificado. Si openid está "
  247. #~ "habilitado, también se puede usar aquí un openid."
  248. #~ msgid ""
  249. #~ "\"`admin()`\" - tests whether a modification is being made by one of the "
  250. #~ "wiki admins."
  251. #~ msgstr ""
  252. #~ "\"`admin()`\" - comprueba si se está haciendo una modificación por uno de "
  253. #~ "los administradores del wiki."
  254. #~ msgid ""
  255. #~ "\"`ip(address)`\" - tests whether a modification is being made from the "
  256. #~ "specified IP address."
  257. #~ msgstr ""
  258. #~ "\"`ip(address)`\" - comprueba si se está haciendo una modificación desde "
  259. #~ "la dirección IP especificada."
  260. #~ msgid ""
  261. #~ "\"`postcomment(glob)`\" - matches only when comments are being posted to "
  262. #~ "a page matching the specified glob"
  263. #~ msgstr ""
  264. #~ "\"`postcomment(glob)`\" - selecciona solamente cuando se están poniendo "
  265. #~ "comentarios a una página que se corresponde con el «glob» especificado"