sub.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?php
  2. /******************************************************************************/
  3. /* Each entry of that file can be associated with a comment to indicate its */
  4. /* state. When there is no comment, it means the entry is fully translated. */
  5. /* The recognized comments are (comment matching is case-insensitive): */
  6. /* + TODO: the entry has never been translated. */
  7. /* + DIRTY: the entry has been translated but needs to be updated. */
  8. /* + IGNORE: the entry does not need to be translated. */
  9. /* When a comment is not recognized, it is discarded. */
  10. /******************************************************************************/
  11. return array(
  12. 'api' => array(
  13. 'documentation' => 'Copie la siguiente URL para usarla dentro de una herramienta externa.',
  14. 'title' => 'API', // IGNORE
  15. ),
  16. 'bookmarklet' => array(
  17. 'documentation' => 'Arrastre este botón a la barra de herramientas de marcadores o haga clic derecho en él y elija "Marcar este enlace". Luego haga clic en el botón "Suscribirse" en cualquier página a la que desee suscribirse.',
  18. 'label' => 'Subscribirse',
  19. 'title' => 'Bookmarklet', // IGNORE
  20. ),
  21. 'category' => array(
  22. '_' => 'Categoría',
  23. 'add' => 'Añadir categoría',
  24. 'archiving' => 'Archivo',
  25. 'empty' => 'Vaciar categoría',
  26. 'information' => 'Información',
  27. 'position' => 'Posición de visualización',
  28. 'position_help' => 'Para controlar el orden de clasificación de categorías',
  29. 'title' => 'Título',
  30. ),
  31. 'feed' => array(
  32. 'add' => 'Añadir fuente RSS',
  33. 'advanced' => 'Avanzado',
  34. 'archiving' => 'Archivo',
  35. 'auth' => array(
  36. 'configuration' => 'Identificación',
  37. 'help' => 'Permitir acceso a fuentes RSS protegidas con HTTP',
  38. 'http' => 'Identificación HTTP',
  39. 'password' => 'Contraseña HTTP',
  40. 'username' => 'Nombre de usuario HTTP',
  41. ),
  42. 'clear_cache' => 'Borrar siempre la memoria caché',
  43. 'content_action' => array(
  44. '_' => 'Acción de contenido al obtener el contenido del artículo',
  45. 'append' => 'Agregar después del contenido existente',
  46. 'prepend' => 'Agregar antes del contenido existente',
  47. 'replace' => 'Reemplazar contenido existente',
  48. ),
  49. 'css_cookie' => 'Usar cookies al obtener el contenido del artículo',
  50. 'css_cookie_help' => 'Ejemplo: <kbd>foo=bar; gdpr_consent=true; cookie=value</kbd>',
  51. 'css_help' => 'Recibir fuentes RSS truncadas (aviso, ¡necesita más tiempo!)',
  52. 'css_path' => 'Ruta a la CSS de los artículos en la web original',
  53. 'description' => 'Descripción',
  54. 'empty' => 'La fuente está vacía. Por favor, verifica que siga activa.',
  55. 'error' => 'Hay un problema con esta fuente. Por favor, veritica que esté disponible y prueba de nuevo.',
  56. 'filteractions' => array(
  57. '_' => 'Filtrar acciones',
  58. 'help' => 'Escribir un filtro de búsqueda por línea.',
  59. ),
  60. 'information' => 'Información',
  61. 'keep_min' => 'Número mínimo de artículos a conservar',
  62. 'kind' => array(
  63. '_' => 'Type of feed source', // TODO
  64. 'html_xpath' => array(
  65. '_' => 'HTML + XPath (Web scraping)', // TODO
  66. 'feed_title' => array(
  67. '_' => 'feed title', // TODO
  68. 'help' => 'Example: <code>//title</code> or a static string: <code>"My custom feed"</code>', // TODO
  69. ),
  70. 'help' => '<dfn><a href="https://www.w3.org/TR/xpath-10/" target="_blank">XPath 1.0</a></dfn> is a standard query language for advanced users, and which FreshRSS supports to enable Web scraping.', // TODO
  71. 'item' => array(
  72. '_' => 'finding news <strong>items</strong><br /><small>(most important)</small>', // TODO
  73. 'help' => 'Example: <code>//div[@class="news-item"]</code>', // TODO
  74. ),
  75. 'item_author' => array(
  76. '_' => 'item author', // TODO
  77. 'help' => 'Can also be a static string. Example: <code>"Anonymous"</code>', // TODO
  78. ),
  79. 'item_categories' => 'items tags', // TODO
  80. 'item_content' => array(
  81. '_' => 'item content', // TODO
  82. 'help' => 'Example to take the full item: <code>.</code>', // TODO
  83. ),
  84. 'item_thumbnail' => array(
  85. '_' => 'item thumbnail', // TODO
  86. 'help' => 'Example: <code>descendant::img/@src</code>', // TODO
  87. ),
  88. 'item_timestamp' => array(
  89. '_' => 'item date', // TODO
  90. 'help' => 'The result will be parsed by <a href="https://php.net/strtotime" target="_blank"><code>strtotime()</code></a>', // TODO
  91. ),
  92. 'item_title' => array(
  93. '_' => 'item title', // TODO
  94. 'help' => 'Use in particular the <a href="https://developer.mozilla.org/docs/Web/XPath/Axes" target="_blank">XPath axis</a> <code>descendant::</code> like <code>descendant::h2</code>', // TODO
  95. ),
  96. 'item_uri' => array(
  97. '_' => 'item link (URL)', // TODO
  98. 'help' => 'Example: <code>descendant::a/@href</code>', // TODO
  99. ),
  100. 'relative' => 'XPath (relative to item) for:', // TODO
  101. 'xpath' => 'XPath for:', // TODO
  102. ),
  103. 'rss' => 'RSS / Atom (default)', // TODO
  104. ),
  105. 'maintenance' => array(
  106. 'clear_cache' => 'Borrar caché',
  107. 'clear_cache_help' => 'Borrar la memoria caché de esta fuente.',
  108. 'reload_articles' => 'Recargar artículos',
  109. 'reload_articles_help' => 'Vuelva a cargar artículos y obtenga contenido completo si se define un selector.',
  110. 'title' => 'Mantenimiento',
  111. ),
  112. 'moved_category_deleted' => 'Al borrar una categoría todas sus fuentes pasan automáticamente a la categoría <em>%s</em>.',
  113. 'mute' => 'silenciar',
  114. 'no_selected' => 'No hay funentes seleccionadas.',
  115. 'number_entries' => '%d artículos',
  116. 'priority' => array(
  117. '_' => 'Visibilidad',
  118. 'archived' => 'No mostrar (archivado)',
  119. 'main_stream' => 'Mostrar en salida principal',
  120. 'normal' => 'Mostrar en su categoría',
  121. ),
  122. 'proxy' => 'Establecer un proxy para obtener esta fuente',
  123. 'proxy_help' => 'Seleccione un protocolo (e.g: SOCKS5) e introduzca la dirección del proxy (e.g: <kbd>127.0.0.1:1080</kbd>)',
  124. 'selector_preview' => array(
  125. 'show_raw' => 'Mostrar código fuente',
  126. 'show_rendered' => 'Mostrar contenido',
  127. ),
  128. 'show' => array(
  129. 'all' => 'Mostrar todos los feeds',
  130. 'error' => 'Mostrar solo feeds con errores',
  131. ),
  132. 'showing' => array(
  133. 'error' => 'Mostrar solo feeds con errores',
  134. ),
  135. 'ssl_verify' => 'Verificar la seguridad SSL',
  136. 'stats' => 'Estadísticas',
  137. 'think_to_add' => 'Puedes añadir fuentes.',
  138. 'timeout' => 'Tiempo de espera en segundos',
  139. 'title' => 'Título',
  140. 'title_add' => 'Añadir fuente RSS',
  141. 'ttl' => 'No actualizar de forma automática con una frecuencia mayor a',
  142. 'url' => 'URL de la fuente',
  143. 'useragent' => 'Selecciona el agente de usario por recuperar la fuente',
  144. 'useragent_help' => 'Ejemplo: <kbd>Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0)</kbd>',
  145. 'validator' => 'Verifica la validez de la fuente',
  146. 'website' => 'Web de la URL',
  147. 'websub' => 'Notificación inmedaiata con WebSub',
  148. ),
  149. 'import_export' => array(
  150. 'export' => 'Exportar',
  151. 'export_labelled' => 'Exporta tus artículos etiquetados',
  152. 'export_opml' => 'Exportar la lista de fuentes (OPML)',
  153. 'export_starred' => 'Exportar tus favoritos',
  154. 'feed_list' => 'Lista de %s artículos',
  155. 'file_to_import' => 'Archivo a importar<br />(OPML, JSON o ZIP)',
  156. 'file_to_import_no_zip' => 'Archivo a importar<br />(OPML o JSON)',
  157. 'import' => 'Importar',
  158. 'starred_list' => 'Lista de artículos favoritos',
  159. 'title' => 'Importar / exportar',
  160. ),
  161. 'menu' => array(
  162. 'add' => 'Agregar un feed o una categoría',
  163. 'import_export' => 'Importar / exportar',
  164. 'label_management' => 'Gestión de etiquetas',
  165. 'stats' => array(
  166. 'idle' => 'Fuentes inactivas',
  167. 'main' => 'Estadísticas principañes',
  168. 'repartition' => 'Reparto de artículos',
  169. ),
  170. 'subscription_management' => 'Administración de suscripciones',
  171. 'subscription_tools' => 'Herramientas de suscripción',
  172. ),
  173. 'tag' => array(
  174. 'name' => 'Nombre',
  175. 'new_name' => 'Nuevo nombre',
  176. 'old_name' => 'Nombre antiguo',
  177. ),
  178. 'title' => array(
  179. '_' => 'Administración de suscripciones',
  180. 'add' => 'Agregar un feed o una categoría',
  181. 'add_category' => 'Agregar una categoría',
  182. 'add_feed' => 'Añadir un feed',
  183. 'add_label' => 'Añadir una etiqueta',
  184. 'delete_label' => 'Eliminar una etiqueta',
  185. 'feed_management' => 'Administración de fuentes RSS',
  186. 'rename_label' => 'Cambiar el nombre de una etiqueta',
  187. 'subscription_tools' => 'Herramientas de suscripción',
  188. ),
  189. );