messages.po 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049
  1. # Spanish translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Adam Tauber <asciimoo@gmail.com>, 2015
  7. # Alejandro León Aznar, 2014
  8. # Alejandro León Aznar, 2014-2018
  9. # Carmen Fernández B., 2016
  10. # novales35 <guillermocebollero@gmail.com>, 2020
  11. # Juan Jaramillo <juanda097@protonmail.ch>, 2016
  12. # Juan Jaramillo <juanda097@protonmail.ch>, 2017
  13. # Marc Abonce Seguin, 2016
  14. # Marc Abonce Seguin, 2018,2020
  15. # O <b204fbaf817497f9ea35edbcc051de81_265921>, 2015
  16. # rivera valdez <riveravaldezmail@gmail.com>, 2016
  17. # wefwefew ewfewfewf <nnnedmz0d@moakt.ws>, 2016
  18. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  19. # Fijxu <fijxu@zzls.xyz>, 2022, 2023.
  20. # Raúl Díaz <flan@chocoflan.net>, 2022.
  21. # Cedrik Boudreau <cedrik@arweave.org>, 2022.
  22. # alexfs2015 <alex04fs@gmail.com>, 2022.
  23. # KEINOS <github@keinos.com>, 2022.
  24. # Peter Martin <weblate@pe7er.com>, 2022.
  25. # zDylant <dylantfcs@gmail.com>, 2022.
  26. # mester <oscarodriguez56@gmail.com>, 2023.
  27. # gallegonovato <fran-carro@hotmail.es>, 2023, 2024.
  28. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  29. # 1024mb <aberetta@protonmail.com>, 2023.
  30. # pixrobot <pixrobot@users.noreply.translate.codeberg.org>, 2024.
  31. # sserra <sserra@users.noreply.translate.codeberg.org>, 2024.
  32. # gallegonovato <gallegonovato@users.noreply.translate.codeberg.org>, 2024.
  33. # tiziodcaio <tiziodcaio@users.noreply.translate.codeberg.org>, 2024.
  34. # return42 <return42@users.noreply.translate.codeberg.org>, 2024.
  35. # kny5 <kny5@users.noreply.translate.codeberg.org>, 2024.
  36. # Atul_Eterno <Atul_Eterno@users.noreply.translate.codeberg.org>, 2024.
  37. # xawos <xawos@users.noreply.translate.codeberg.org>, 2024.
  38. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  39. msgid ""
  40. msgstr ""
  41. "Project-Id-Version: searx\n"
  42. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  43. "POT-Creation-Date: 2025-01-06 15:28+0000\n"
  44. "PO-Revision-Date: 2025-01-06 15:53+0000\n"
  45. "Last-Translator: Anonymous <anonymous@users.noreply.translate.codeberg.org>\n"
  46. "Language-Team: Spanish <https://translate.codeberg.org/projects/searxng/"
  47. "searxng/es/>\n"
  48. "Language: es\n"
  49. "MIME-Version: 1.0\n"
  50. "Content-Type: text/plain; charset=utf-8\n"
  51. "Content-Transfer-Encoding: 8bit\n"
  52. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  53. "X-Generator: Weblate 5.9.2\n"
  54. "Generated-By: Babel 2.16.0\n"
  55. #. CONSTANT_NAMES['NO_SUBGROUPING']
  56. #: searx/searxng.msg
  57. msgid "without further subgrouping"
  58. msgstr "sin más subgrupos"
  59. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  60. #: searx/searxng.msg
  61. msgid "other"
  62. msgstr "otro"
  63. #. CATEGORY_NAMES['FILES']
  64. #: searx/searxng.msg
  65. msgid "files"
  66. msgstr "archivos"
  67. #. CATEGORY_NAMES['GENERAL']
  68. #: searx/searxng.msg
  69. msgid "general"
  70. msgstr "general"
  71. #. CATEGORY_NAMES['MUSIC']
  72. #: searx/searxng.msg
  73. msgid "music"
  74. msgstr "música"
  75. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  76. #: searx/searxng.msg
  77. msgid "social media"
  78. msgstr "redes sociales"
  79. #. CATEGORY_NAMES['IMAGES']
  80. #: searx/searxng.msg
  81. msgid "images"
  82. msgstr "imágenes"
  83. #. CATEGORY_NAMES['VIDEOS']
  84. #: searx/searxng.msg
  85. msgid "videos"
  86. msgstr "vídeos"
  87. #. CATEGORY_NAMES['RADIO']
  88. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  89. msgid "radio"
  90. msgstr "radio"
  91. #. CATEGORY_NAMES['TV']
  92. #: searx/searxng.msg
  93. msgid "tv"
  94. msgstr "tv"
  95. #. CATEGORY_NAMES['IT']
  96. #: searx/searxng.msg
  97. msgid "it"
  98. msgstr "Informática"
  99. #. CATEGORY_NAMES['NEWS']
  100. #: searx/searxng.msg
  101. msgid "news"
  102. msgstr "noticias"
  103. #. CATEGORY_NAMES['MAP']
  104. #: searx/searxng.msg
  105. msgid "map"
  106. msgstr "mapa"
  107. #. CATEGORY_NAMES['ONIONS']
  108. #: searx/searxng.msg
  109. msgid "onions"
  110. msgstr "onions"
  111. #. CATEGORY_NAMES['SCIENCE']
  112. #: searx/searxng.msg
  113. msgid "science"
  114. msgstr "ciencia"
  115. #. CATEGORY_GROUPS['APPS']
  116. #: searx/searxng.msg
  117. msgid "apps"
  118. msgstr "aplicaciones"
  119. #. CATEGORY_GROUPS['DICTIONARIES']
  120. #: searx/searxng.msg
  121. msgid "dictionaries"
  122. msgstr "diccionarios"
  123. #. CATEGORY_GROUPS['LYRICS']
  124. #: searx/searxng.msg
  125. msgid "lyrics"
  126. msgstr "letras"
  127. #. CATEGORY_GROUPS['PACKAGES']
  128. #: searx/searxng.msg
  129. msgid "packages"
  130. msgstr "paquetes"
  131. #. CATEGORY_GROUPS['Q_A']
  132. #: searx/searxng.msg
  133. msgid "q&a"
  134. msgstr "preguntas y respuestas"
  135. #. CATEGORY_GROUPS['REPOS']
  136. #: searx/searxng.msg
  137. msgid "repos"
  138. msgstr "repositorios"
  139. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  140. #: searx/searxng.msg
  141. msgid "software wikis"
  142. msgstr "wikis de software"
  143. #. CATEGORY_GROUPS['WEB']
  144. #: searx/searxng.msg
  145. msgid "web"
  146. msgstr "web"
  147. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  148. #: searx/searxng.msg
  149. msgid "scientific publications"
  150. msgstr "artículos científicos"
  151. #. STYLE_NAMES['AUTO']
  152. #: searx/searxng.msg
  153. msgid "auto"
  154. msgstr "automático"
  155. #. STYLE_NAMES['LIGHT']
  156. #: searx/searxng.msg
  157. msgid "light"
  158. msgstr "claro"
  159. #. STYLE_NAMES['DARK']
  160. #: searx/searxng.msg
  161. msgid "dark"
  162. msgstr "oscuro"
  163. #. STYLE_NAMES['BLACK']
  164. #: searx/searxng.msg
  165. msgid "black"
  166. msgstr "negro"
  167. #. BRAND_CUSTOM_LINKS['UPTIME']
  168. #: searx/searxng.msg
  169. msgid "Uptime"
  170. msgstr "Tiempo de actividad"
  171. #. BRAND_CUSTOM_LINKS['ABOUT']
  172. #: searx/searxng.msg searx/templates/simple/base.html:50
  173. msgid "About"
  174. msgstr "Acerca de"
  175. #. WEATHER_TERMS['AVERAGE TEMP.']
  176. #: searx/engines/wttr.py:32 searx/searxng.msg
  177. msgid "Average temp."
  178. msgstr "Temperatura promedio"
  179. #. WEATHER_TERMS['CLOUD COVER']
  180. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  181. msgid "Cloud cover"
  182. msgstr "Cubierto de nubes"
  183. #. WEATHER_TERMS['CONDITION']
  184. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  185. #: searx/searxng.msg
  186. msgid "Condition"
  187. msgstr "Condición"
  188. #. WEATHER_TERMS['CURRENT CONDITION']
  189. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  190. #: searx/searxng.msg
  191. msgid "Current condition"
  192. msgstr "Condición actual"
  193. #. WEATHER_TERMS['EVENING']
  194. #: searx/engines/wttr.py:100 searx/searxng.msg
  195. msgid "Evening"
  196. msgstr "Tarde"
  197. #. WEATHER_TERMS['FEELS LIKE']
  198. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  199. #: searx/engines/wttr.py:59 searx/searxng.msg
  200. msgid "Feels like"
  201. msgstr "Sensación"
  202. #. WEATHER_TERMS['HUMIDITY']
  203. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  204. #: searx/engines/wttr.py:68 searx/searxng.msg
  205. msgid "Humidity"
  206. msgstr "Humedad"
  207. #. WEATHER_TERMS['MAX TEMP.']
  208. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  209. #: searx/searxng.msg
  210. msgid "Max temp."
  211. msgstr "Temperatura máxima"
  212. #. WEATHER_TERMS['MIN TEMP.']
  213. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  214. #: searx/searxng.msg
  215. msgid "Min temp."
  216. msgstr "Temperatura mínima"
  217. #. WEATHER_TERMS['MORNING']
  218. #: searx/engines/wttr.py:100 searx/searxng.msg
  219. msgid "Morning"
  220. msgstr "Mañana"
  221. #. WEATHER_TERMS['NIGHT']
  222. #: searx/engines/wttr.py:100 searx/searxng.msg
  223. msgid "Night"
  224. msgstr "Noche"
  225. #. WEATHER_TERMS['NOON']
  226. #: searx/engines/wttr.py:100 searx/searxng.msg
  227. msgid "Noon"
  228. msgstr "Mediodía"
  229. #. WEATHER_TERMS['PRESSURE']
  230. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  231. msgid "Pressure"
  232. msgstr "Presión"
  233. #. WEATHER_TERMS['SUNRISE']
  234. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  235. #: searx/searxng.msg
  236. msgid "Sunrise"
  237. msgstr "Amanecer"
  238. #. WEATHER_TERMS['SUNSET']
  239. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  240. #: searx/searxng.msg
  241. msgid "Sunset"
  242. msgstr "Atardecer"
  243. #. WEATHER_TERMS['TEMPERATURE']
  244. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  245. #: searx/engines/wttr.py:55 searx/searxng.msg
  246. msgid "Temperature"
  247. msgstr "Temperatura"
  248. #. WEATHER_TERMS['UV INDEX']
  249. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  250. #: searx/searxng.msg
  251. msgid "UV index"
  252. msgstr "Índice UV"
  253. #. WEATHER_TERMS['VISIBILITY']
  254. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  255. #: searx/searxng.msg
  256. msgid "Visibility"
  257. msgstr "Visibilidad"
  258. #. WEATHER_TERMS['WIND']
  259. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  260. #: searx/engines/wttr.py:62 searx/searxng.msg
  261. msgid "Wind"
  262. msgstr "Viento"
  263. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  264. #: searx/engines/lemmy.py:85 searx/searxng.msg
  265. msgid "subscribers"
  266. msgstr "suscriptores"
  267. #. SOCIAL_MEDIA_TERMS['POSTS']
  268. #: searx/engines/lemmy.py:86 searx/searxng.msg
  269. msgid "posts"
  270. msgstr "publicaciones"
  271. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  272. #: searx/engines/lemmy.py:87 searx/searxng.msg
  273. msgid "active users"
  274. msgstr "usuarios activos"
  275. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  276. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  277. #: searx/engines/lemmy.py:130 searx/searxng.msg
  278. msgid "comments"
  279. msgstr "comentarios"
  280. #. SOCIAL_MEDIA_TERMS['USER']
  281. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  282. msgid "user"
  283. msgstr "usuario"
  284. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  285. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  286. msgid "community"
  287. msgstr "comunidad"
  288. #. SOCIAL_MEDIA_TERMS['POINTS']
  289. #: searx/engines/hackernews.py:82 searx/searxng.msg
  290. msgid "points"
  291. msgstr "puntos"
  292. #. SOCIAL_MEDIA_TERMS['TITLE']
  293. #: searx/searxng.msg
  294. msgid "title"
  295. msgstr "título"
  296. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  297. #: searx/engines/hackernews.py:85 searx/searxng.msg
  298. msgid "author"
  299. msgstr "autor"
  300. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  301. #: searx/engines/discourse.py:149 searx/searxng.msg
  302. msgid "open"
  303. msgstr "abrir"
  304. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  305. #: searx/engines/discourse.py:149 searx/searxng.msg
  306. msgid "closed"
  307. msgstr "cerrar"
  308. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  309. #: searx/engines/discourse.py:160 searx/searxng.msg
  310. msgid "answered"
  311. msgstr "contestado"
  312. #: searx/webapp.py:323
  313. msgid "No item found"
  314. msgstr "Ningún artículo encontrado"
  315. #: searx/engines/qwant.py:288
  316. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  317. msgid "Source"
  318. msgstr "Fuente"
  319. #: searx/webapp.py:327
  320. msgid "Error loading the next page"
  321. msgstr "Error al cargar la siguiente página"
  322. #: searx/webapp.py:492 searx/webapp.py:900
  323. msgid "Invalid settings, please edit your preferences"
  324. msgstr "Ajustes inválidos, por favor, cambia tus preferencias"
  325. #: searx/webapp.py:508
  326. msgid "Invalid settings"
  327. msgstr "Ajustes inválidos"
  328. #: searx/webapp.py:585 searx/webapp.py:675
  329. msgid "search error"
  330. msgstr "error en la búsqueda"
  331. #: searx/webutils.py:36
  332. msgid "timeout"
  333. msgstr "expirado"
  334. #: searx/webutils.py:37
  335. msgid "parsing error"
  336. msgstr "error de análisis"
  337. #: searx/webutils.py:38
  338. msgid "HTTP protocol error"
  339. msgstr "Error de protocolo HTTP"
  340. #: searx/webutils.py:39
  341. msgid "network error"
  342. msgstr "error de red"
  343. #: searx/webutils.py:40
  344. msgid "SSL error: certificate validation has failed"
  345. msgstr "Error SSL: la validación del certificado ha fallado"
  346. #: searx/webutils.py:42
  347. msgid "unexpected crash"
  348. msgstr "cierre inesperado"
  349. #: searx/webutils.py:49
  350. msgid "HTTP error"
  351. msgstr "Error de HTTP"
  352. #: searx/webutils.py:50
  353. msgid "HTTP connection error"
  354. msgstr "Error de conexión HTTP"
  355. #: searx/webutils.py:56
  356. msgid "proxy error"
  357. msgstr "error de proxy"
  358. #: searx/webutils.py:57
  359. msgid "CAPTCHA"
  360. msgstr "CAPTCHA"
  361. #: searx/webutils.py:58
  362. msgid "too many requests"
  363. msgstr "demasiadas peticiones"
  364. #: searx/webutils.py:59
  365. msgid "access denied"
  366. msgstr "acceso denegado"
  367. #: searx/webutils.py:60
  368. msgid "server API error"
  369. msgstr "error en la API del servidor"
  370. #: searx/webutils.py:79
  371. msgid "Suspended"
  372. msgstr "Suspendido"
  373. #: searx/webutils.py:314
  374. msgid "{minutes} minute(s) ago"
  375. msgstr "hace {minutes} minuto(s)"
  376. #: searx/webutils.py:315
  377. msgid "{hours} hour(s), {minutes} minute(s) ago"
  378. msgstr "hace {hours} hora(s) y {minutes} minuto(s)"
  379. #: searx/answerers/random/answerer.py:76
  380. msgid "Random value generator"
  381. msgstr "Generador de valores aleatorios"
  382. #: searx/answerers/random/answerer.py:77
  383. msgid "Generate different random values"
  384. msgstr "Generar varios valores aleatorios"
  385. #: searx/answerers/statistics/answerer.py:50
  386. msgid "Statistics functions"
  387. msgstr "Funciones de estadística"
  388. #: searx/answerers/statistics/answerer.py:51
  389. msgid "Compute {functions} of the arguments"
  390. msgstr "Calcular las funciones {functions} de parámetros dados"
  391. #: searx/engines/mozhi.py:57
  392. msgid "Synonyms"
  393. msgstr "Sinónimos"
  394. #: searx/engines/openstreetmap.py:159
  395. msgid "Get directions"
  396. msgstr "Obtener indicaciones"
  397. #: searx/engines/pdbe.py:96
  398. msgid "{title} (OBSOLETE)"
  399. msgstr "{title} (OBSOLETO)"
  400. #: searx/engines/pdbe.py:103
  401. msgid "This entry has been superseded by"
  402. msgstr "Esta entrada ha sido sustituida por"
  403. #: searx/engines/qwant.py:290
  404. msgid "Channel"
  405. msgstr "Canal"
  406. #: searx/engines/radio_browser.py:105
  407. msgid "bitrate"
  408. msgstr "Tasa de bits"
  409. #: searx/engines/radio_browser.py:106
  410. msgid "votes"
  411. msgstr "votos"
  412. #: searx/engines/radio_browser.py:107
  413. msgid "clicks"
  414. msgstr "clics"
  415. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  416. #: searx/engines/zlibrary.py:137
  417. msgid "Language"
  418. msgstr "Idioma"
  419. #: searx/engines/semantic_scholar.py:78
  420. msgid ""
  421. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  422. "{lastCitationVelocityYear}"
  423. msgstr ""
  424. "{numCitations} citas desde el año {firstCitationVelocityYear} hasta "
  425. "{lastCitationVelocityYear}"
  426. #: searx/engines/tineye.py:45
  427. msgid ""
  428. "Could not read that image url. This may be due to an unsupported file "
  429. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  430. " WebP."
  431. msgstr ""
  432. "No se pudo leer la URL de esa imagen. Esto puede deberse a un formato de "
  433. "archivo no compatible. TinEye solo admite imágenes que son JPEG, PNG, "
  434. "GIF, BMP, TIFF o WebP."
  435. #: searx/engines/tineye.py:51
  436. msgid ""
  437. "The image is too simple to find matches. TinEye requires a basic level of"
  438. " visual detail to successfully identify matches."
  439. msgstr ""
  440. "La imagen es demasiado simple para encontrar coincidencias. TinEye requiere "
  441. "un nivel básico de detalle visual para identificar con éxito las "
  442. "coincidencias."
  443. #: searx/engines/tineye.py:57
  444. msgid "The image could not be downloaded."
  445. msgstr "No se pudo descargar la imagen."
  446. #: searx/engines/zlibrary.py:138
  447. msgid "Book rating"
  448. msgstr "Valoración del libro"
  449. #: searx/engines/zlibrary.py:139
  450. msgid "File quality"
  451. msgstr "Calidad de los archivos"
  452. #: searx/plugins/calculator.py:18
  453. msgid "Calculate mathematical expressions via the search bar"
  454. msgstr "Calcula expresiones matemáticas a través de la barra de búsqueda"
  455. #: searx/plugins/hash_plugin.py:10
  456. msgid "Converts strings to different hash digests."
  457. msgstr "Convierte cadenas de texto a diferentes resúmenes hash."
  458. #: searx/plugins/hash_plugin.py:38
  459. msgid "hash digest"
  460. msgstr "resumen de hash"
  461. #: searx/plugins/hostnames.py:103
  462. msgid "Hostnames plugin"
  463. msgstr "Plugin del hostname"
  464. #: searx/plugins/hostnames.py:104
  465. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  466. msgstr ""
  467. "Reescribir los hostnames, remover los resultados o priorizarlos segundo "
  468. "sus hostnames"
  469. #: searx/plugins/oa_doi_rewrite.py:12
  470. msgid "Open Access DOI rewrite"
  471. msgstr "Reescribir DOI (Identificador de objeto digital) de Open Access"
  472. #: searx/plugins/oa_doi_rewrite.py:13
  473. msgid ""
  474. "Avoid paywalls by redirecting to open-access versions of publications "
  475. "when available"
  476. msgstr ""
  477. "Evitar barreras de pago redireccionando a las versiones de acceso libre de "
  478. "las publicaciones cuando estén disponibles"
  479. #: searx/plugins/self_info.py:9
  480. msgid "Self Information"
  481. msgstr "Información propia"
  482. #: searx/plugins/self_info.py:10
  483. msgid ""
  484. "Displays your IP if the query is \"ip\" and your user agent if the query "
  485. "contains \"user agent\"."
  486. msgstr ""
  487. "Muestra tu dirección IP si la consulta es \"ip\" y tu Agente de Usuario si "
  488. "la consulta contiene \"user agent\"."
  489. #: searx/plugins/self_info.py:28
  490. msgid "Your IP is: "
  491. msgstr "Tu IP es: "
  492. #: searx/plugins/self_info.py:31
  493. msgid "Your user-agent is: "
  494. msgstr "Tu user-agent es: "
  495. #: searx/plugins/tor_check.py:24
  496. msgid "Tor check plugin"
  497. msgstr "Plugin de comprobación de Tor"
  498. #: searx/plugins/tor_check.py:27
  499. msgid ""
  500. "This plugin checks if the address of the request is a Tor exit-node, and "
  501. "informs the user if it is; like check.torproject.org, but from SearXNG."
  502. msgstr ""
  503. "Este plug-in comprueba si la dirección de las solicitudes son nodo de "
  504. "salida de Tor, e informa al usuario si lo es; como check.torproject.org, "
  505. "pero desde SearXNG."
  506. #: searx/plugins/tor_check.py:61
  507. msgid ""
  508. "Could not download the list of Tor exit-nodes from: "
  509. "https://check.torproject.org/exit-addresses"
  510. msgstr ""
  511. "No se pudo descargar la lista de nodos de salida de Tor desde: "
  512. "https://check.torproject.org/exit-addresses"
  513. #: searx/plugins/tor_check.py:77
  514. msgid ""
  515. "You are using Tor and it looks like you have this external IP address: "
  516. "{ip_address}"
  517. msgstr ""
  518. "Estás usando Tor y parece que tienes esta dirección IP externa: "
  519. "{ip_address}"
  520. #: searx/plugins/tor_check.py:85
  521. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  522. msgstr "No estás usando Tor y tienes esta dirección IP externa: {ip_address}"
  523. #: searx/plugins/tracker_url_remover.py:16
  524. msgid "Tracker URL remover"
  525. msgstr "Removedor de URL rastreadora"
  526. #: searx/plugins/tracker_url_remover.py:17
  527. msgid "Remove trackers arguments from the returned URL"
  528. msgstr "Remueve los argumentos de rastreadores de la URL devuelta"
  529. #: searx/plugins/unit_converter.py:29
  530. msgid "Convert between units"
  531. msgstr "Convertir unidades"
  532. #: searx/templates/simple/404.html:4
  533. msgid "Page not found"
  534. msgstr "Página no encontrada"
  535. #: searx/templates/simple/404.html:6
  536. #, python-format
  537. msgid "Go to %(search_page)s."
  538. msgstr "Ir a %(search_page)s."
  539. #: searx/templates/simple/404.html:6
  540. msgid "search page"
  541. msgstr "página de búsqueda"
  542. #: searx/templates/simple/base.html:54
  543. msgid "Donate"
  544. msgstr "Donar"
  545. #: searx/templates/simple/base.html:58
  546. #: searx/templates/simple/preferences.html:156
  547. msgid "Preferences"
  548. msgstr "Preferencias"
  549. #: searx/templates/simple/base.html:68
  550. msgid "Powered by"
  551. msgstr "Desarrollado por"
  552. #: searx/templates/simple/base.html:68
  553. msgid "a privacy-respecting, open metasearch engine"
  554. msgstr "Un metabuscador de código abierto que respeta la privacidad"
  555. #: searx/templates/simple/base.html:69
  556. #: searx/templates/simple/result_templates/packages.html:59
  557. msgid "Source code"
  558. msgstr "Código fuente"
  559. #: searx/templates/simple/base.html:70
  560. msgid "Issue tracker"
  561. msgstr "Rastreador de problemas"
  562. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  563. msgid "Engine stats"
  564. msgstr "Estadísticas del motor de búsqueda"
  565. #: searx/templates/simple/base.html:73
  566. msgid "Public instances"
  567. msgstr "Instancias públicas"
  568. #: searx/templates/simple/base.html:76
  569. msgid "Privacy policy"
  570. msgstr "Politica de privacidad"
  571. #: searx/templates/simple/base.html:79
  572. msgid "Contact instance maintainer"
  573. msgstr "Contactar al mantenedor de la instancia"
  574. #: searx/templates/simple/categories.html:26
  575. msgid "Click on the magnifier to perform search"
  576. msgstr "Haz clic en la lupa para realizar la búsqueda"
  577. #: searx/templates/simple/macros.html:40
  578. msgid "Length"
  579. msgstr "Longitud"
  580. #: searx/templates/simple/macros.html:41
  581. msgid "Views"
  582. msgstr "Visualizaciones"
  583. #: searx/templates/simple/macros.html:42
  584. #: searx/templates/simple/result_templates/files.html:34
  585. #: searx/templates/simple/result_templates/images.html:19
  586. #: searx/templates/simple/result_templates/paper.html:6
  587. msgid "Author"
  588. msgstr "Autor"
  589. #: searx/templates/simple/macros.html:50
  590. msgid "cached"
  591. msgstr "en caché"
  592. #: searx/templates/simple/macros.html:50
  593. msgid "proxied"
  594. msgstr "por un proxy"
  595. #: searx/templates/simple/new_issue.html:64
  596. msgid "Start submitting a new issue on GitHub"
  597. msgstr "Enviar un nuevo problema a GitHub"
  598. #: searx/templates/simple/new_issue.html:66
  599. msgid "Please check for existing bugs about this engine on GitHub"
  600. msgstr "Por favor revisa si ya existe un problema con este motor en GitHub"
  601. #: searx/templates/simple/new_issue.html:69
  602. msgid "I confirm there is no existing bug about the issue I encounter"
  603. msgstr "Confirmo que no existe un bug relacionado al problema que encontré"
  604. #: searx/templates/simple/new_issue.html:71
  605. msgid "If this is a public instance, please specify the URL in the bug report"
  606. msgstr ""
  607. "Si esta es una instancia pública, por favor especifíca la URL en el reporte "
  608. "del bug"
  609. #: searx/templates/simple/new_issue.html:72
  610. msgid "Submit a new issue on Github including the above information"
  611. msgstr "Enviar un nuevo problema a Github que incluya la información de arriba"
  612. #: searx/templates/simple/preferences.html:65
  613. msgid "No HTTPS"
  614. msgstr "No HTTPS"
  615. #: searx/templates/simple/elements/engines_msg.html:14
  616. #: searx/templates/simple/preferences.html:69
  617. #: searx/templates/simple/preferences.html:70
  618. msgid "View error logs and submit a bug report"
  619. msgstr "Ver los logs de errores y enviar un informe de error"
  620. #: searx/templates/simple/preferences.html:74
  621. msgid "!bang for this engine"
  622. msgstr "!bang para este motor de búsqueda"
  623. #: searx/templates/simple/preferences.html:80
  624. msgid "!bang for its categories"
  625. msgstr "!bang para estas categorías"
  626. #: searx/templates/simple/preferences.html:102
  627. #: searx/templates/simple/stats.html:64
  628. msgid "Median"
  629. msgstr "Media"
  630. #: searx/templates/simple/preferences.html:103
  631. #: searx/templates/simple/stats.html:70
  632. msgid "P80"
  633. msgstr "P80"
  634. #: searx/templates/simple/preferences.html:104
  635. #: searx/templates/simple/stats.html:76
  636. msgid "P95"
  637. msgstr "P95"
  638. #: searx/templates/simple/preferences.html:136
  639. msgid "Failed checker test(s): "
  640. msgstr "Prueba de verificación fallida. "
  641. #: searx/templates/simple/preferences.html:138
  642. msgid "Errors:"
  643. msgstr "Errores:"
  644. #: searx/templates/simple/preferences.html:162
  645. msgid "General"
  646. msgstr "General"
  647. #: searx/templates/simple/preferences.html:165
  648. msgid "Default categories"
  649. msgstr "Categorías predeterminadas"
  650. #: searx/templates/simple/preferences.html:190
  651. msgid "User interface"
  652. msgstr "Interfaz de usuario"
  653. #: searx/templates/simple/preferences.html:212
  654. msgid "Privacy"
  655. msgstr "Privacidad"
  656. #: searx/templates/simple/preferences.html:225
  657. msgid "Engines"
  658. msgstr "Motores"
  659. #: searx/templates/simple/preferences.html:227
  660. msgid "Currently used search engines"
  661. msgstr "Motores de búsqueda actualmente en uso"
  662. #: searx/templates/simple/preferences.html:235
  663. msgid "Special Queries"
  664. msgstr "Consultas Especiales"
  665. #: searx/templates/simple/preferences.html:241
  666. msgid "Cookies"
  667. msgstr "Cookies"
  668. #: searx/templates/simple/results.html:23
  669. msgid "Answers"
  670. msgstr "Respuestas"
  671. #: searx/templates/simple/results.html:42
  672. msgid "Number of results"
  673. msgstr "Número de resultados"
  674. #: searx/templates/simple/results.html:48
  675. msgid "Info"
  676. msgstr "Información"
  677. #: searx/templates/simple/results.html:75
  678. msgid "Try searching for:"
  679. msgstr "Intenta buscar:"
  680. #: searx/templates/simple/results.html:107
  681. msgid "Back to top"
  682. msgstr "Inicio"
  683. #: searx/templates/simple/results.html:125
  684. msgid "Previous page"
  685. msgstr "Página anterior"
  686. #: searx/templates/simple/results.html:143
  687. msgid "Next page"
  688. msgstr "Siguiente página"
  689. #: searx/templates/simple/search.html:3
  690. msgid "Display the front page"
  691. msgstr "Mostrar La Página Principal"
  692. #: searx/templates/simple/search.html:9
  693. #: searx/templates/simple/simple_search.html:5
  694. msgid "Search for..."
  695. msgstr "Buscar..."
  696. #: searx/templates/simple/search.html:10
  697. #: searx/templates/simple/simple_search.html:6
  698. msgid "clear"
  699. msgstr "limpiar"
  700. #: searx/templates/simple/search.html:11
  701. #: searx/templates/simple/simple_search.html:7
  702. msgid "search"
  703. msgstr "buscar"
  704. #: searx/templates/simple/stats.html:21
  705. msgid "There is currently no data available. "
  706. msgstr "Actualmente no hay datos disponibles. "
  707. #: searx/templates/simple/preferences/engines.html:24
  708. #: searx/templates/simple/stats.html:25
  709. msgid "Engine name"
  710. msgstr "Nombre del motor de búsqueda"
  711. #: searx/templates/simple/stats.html:26
  712. msgid "Scores"
  713. msgstr "Puntuaciones"
  714. #: searx/templates/simple/stats.html:27
  715. msgid "Result count"
  716. msgstr "Resultados"
  717. #: searx/templates/simple/elements/engines_msg.html:7
  718. #: searx/templates/simple/preferences/engines.html:31
  719. #: searx/templates/simple/stats.html:28
  720. msgid "Response time"
  721. msgstr "Tiempo de respuesta"
  722. #: searx/templates/simple/preferences/engines.html:35
  723. #: searx/templates/simple/stats.html:29
  724. msgid "Reliability"
  725. msgstr "Fiabilidad"
  726. #: searx/templates/simple/stats.html:59
  727. msgid "Total"
  728. msgstr "Total"
  729. #: searx/templates/simple/stats.html:60
  730. msgid "HTTP"
  731. msgstr "HTTP"
  732. #: searx/templates/simple/stats.html:61
  733. msgid "Processing"
  734. msgstr "Procesando"
  735. #: searx/templates/simple/stats.html:99
  736. msgid "Warnings"
  737. msgstr "Alertas"
  738. #: searx/templates/simple/stats.html:99
  739. msgid "Errors and exceptions"
  740. msgstr "Errores y excepciones"
  741. #: searx/templates/simple/stats.html:105
  742. msgid "Exception"
  743. msgstr "Excepción"
  744. #: searx/templates/simple/stats.html:107
  745. msgid "Message"
  746. msgstr "Mensaje"
  747. #: searx/templates/simple/stats.html:109
  748. msgid "Percentage"
  749. msgstr "Porcentaje"
  750. #: searx/templates/simple/stats.html:111
  751. msgid "Parameter"
  752. msgstr "Parámetro"
  753. #: searx/templates/simple/result_templates/files.html:36
  754. #: searx/templates/simple/stats.html:119
  755. msgid "Filename"
  756. msgstr "Nombre de archivo"
  757. #: searx/templates/simple/stats.html:120
  758. msgid "Function"
  759. msgstr "Función"
  760. #: searx/templates/simple/stats.html:121
  761. msgid "Code"
  762. msgstr "Código"
  763. #: searx/templates/simple/stats.html:128
  764. msgid "Checker"
  765. msgstr "Verificador"
  766. #: searx/templates/simple/stats.html:131
  767. msgid "Failed test"
  768. msgstr "Prueba fallida"
  769. #: searx/templates/simple/stats.html:132
  770. msgid "Comment(s)"
  771. msgstr "Comentario(s)"
  772. #: searx/templates/simple/elements/apis.html:3
  773. msgid "Download results"
  774. msgstr "Descargar resultados"
  775. #: searx/templates/simple/elements/engines_msg.html:4
  776. msgid "Messages from the search engines"
  777. msgstr "Mensajes de los motores de búsqueda"
  778. #: searx/templates/simple/elements/engines_msg.html:7
  779. msgid "seconds"
  780. msgstr "segundos"
  781. #: searx/templates/simple/elements/search_url.html:3
  782. msgid "Search URL"
  783. msgstr "URL de la búsqueda"
  784. #: searx/templates/simple/elements/search_url.html:4
  785. #: searx/templates/simple/preferences/cookies.html:54
  786. msgid "Copied"
  787. msgstr "Copiado"
  788. #: searx/templates/simple/elements/search_url.html:4
  789. #: searx/templates/simple/preferences/cookies.html:54
  790. msgid "Copy"
  791. msgstr "Copiar"
  792. #: searx/templates/simple/elements/suggestions.html:3
  793. msgid "Suggestions"
  794. msgstr "Sugerencias"
  795. #: searx/templates/simple/filters/languages.html:1
  796. #: searx/templates/simple/preferences/language.html:2
  797. msgid "Search language"
  798. msgstr "Idioma de búsqueda"
  799. #: searx/templates/simple/filters/languages.html:4
  800. #: searx/templates/simple/preferences/language.html:7
  801. msgid "Default language"
  802. msgstr "Idioma por defecto"
  803. #: searx/templates/simple/filters/languages.html:8
  804. #: searx/templates/simple/preferences/language.html:11
  805. msgid "Auto-detect"
  806. msgstr "Detección automática"
  807. #: searx/templates/simple/filters/safesearch.html:1
  808. #: searx/templates/simple/filters/safesearch.html:2
  809. #: searx/templates/simple/filters/safesearch.html:3
  810. #: searx/templates/simple/filters/safesearch.html:4
  811. #: searx/templates/simple/preferences/engines.html:27
  812. #: searx/templates/simple/preferences/safesearch.html:2
  813. msgid "SafeSearch"
  814. msgstr "Búsqueda segura"
  815. #: searx/templates/simple/filters/safesearch.html:2
  816. #: searx/templates/simple/preferences/safesearch.html:7
  817. msgid "Strict"
  818. msgstr "Estricto"
  819. #: searx/templates/simple/filters/safesearch.html:3
  820. #: searx/templates/simple/preferences/safesearch.html:11
  821. msgid "Moderate"
  822. msgstr "Moderado"
  823. #: searx/templates/simple/filters/safesearch.html:4
  824. #: searx/templates/simple/preferences/safesearch.html:15
  825. msgid "None"
  826. msgstr "Ninguno"
  827. #: searx/templates/simple/filters/time_range.html:1
  828. #: searx/templates/simple/preferences/engines.html:28
  829. msgid "Time range"
  830. msgstr "Rango de tiempo"
  831. #: searx/templates/simple/filters/time_range.html:3
  832. msgid "Anytime"
  833. msgstr "En cualquier momento"
  834. #: searx/templates/simple/filters/time_range.html:6
  835. msgid "Last day"
  836. msgstr "Último día"
  837. #: searx/templates/simple/filters/time_range.html:9
  838. msgid "Last week"
  839. msgstr "Última semana"
  840. #: searx/templates/simple/filters/time_range.html:12
  841. msgid "Last month"
  842. msgstr "Último mes"
  843. #: searx/templates/simple/filters/time_range.html:15
  844. msgid "Last year"
  845. msgstr "Último año"
  846. #: searx/templates/simple/messages/no_cookies.html:3
  847. msgid "Information!"
  848. msgstr "¡Información!"
  849. #: searx/templates/simple/messages/no_cookies.html:4
  850. msgid "currently, there are no cookies defined."
  851. msgstr "No existen cookies definidas actualmente."
  852. #: searx/templates/simple/messages/no_results.html:6
  853. msgid "Sorry!"
  854. msgstr "¡Lo sentimos!"
  855. #: searx/templates/simple/messages/no_results.html:12
  856. msgid "No results were found. You can try to:"
  857. msgstr "No se encontraron resultados. Puedes intentar:"
  858. #: searx/templates/simple/messages/no_results.html:14
  859. msgid "There are no more results. You can try to:"
  860. msgstr "No hay más resultados. Puedes probar a:"
  861. #: searx/templates/simple/messages/no_results.html:19
  862. msgid "Refresh the page."
  863. msgstr "Recarga la página."
  864. #: searx/templates/simple/messages/no_results.html:20
  865. msgid "Search for another query or select another category (above)."
  866. msgstr "Haz otra consulta o selecciona otra categoría (arriba)."
  867. #: searx/templates/simple/messages/no_results.html:21
  868. msgid "Change the search engine used in the preferences:"
  869. msgstr "Cambiar el motor de búsqueda utilizado en las preferencias:"
  870. #: searx/templates/simple/messages/no_results.html:22
  871. msgid "Switch to another instance:"
  872. msgstr "Cambiar a otra instancia:"
  873. #: searx/templates/simple/messages/no_results.html:24
  874. msgid "Search for another query or select another category."
  875. msgstr "Realiza otra consulta o selecciona otra categoría."
  876. #: searx/templates/simple/messages/no_results.html:25
  877. msgid "Go back to the previous page using the previous page button."
  878. msgstr "Vuelve a la página anterior usando el botón de página anterior."
  879. #: searx/templates/simple/preferences/answerers.html:4
  880. #: searx/templates/simple/preferences/engines.html:23
  881. msgid "Allow"
  882. msgstr "Permitir"
  883. #: searx/templates/simple/preferences/answerers.html:5
  884. msgid "Keywords"
  885. msgstr "Palabras clave"
  886. #: searx/templates/simple/preferences/answerers.html:6
  887. #: searx/templates/simple/result_templates/packages.html:7
  888. msgid "Name"
  889. msgstr "Nombre"
  890. #: searx/templates/simple/preferences/answerers.html:7
  891. msgid "Description"
  892. msgstr "Descripción"
  893. #: searx/templates/simple/preferences/answerers.html:8
  894. msgid "Examples"
  895. msgstr "Ejemplos"
  896. #: searx/templates/simple/preferences/answerers.html:13
  897. msgid "This is the list of SearXNG's instant answering modules."
  898. msgstr "Esta es la lista de módulos de respuestas instantáneas de SearXNG."
  899. #: searx/templates/simple/preferences/answerers.html:29
  900. msgid "This is the list of plugins."
  901. msgstr "Esta es la lista de plugins."
  902. #: searx/templates/simple/preferences/autocomplete.html:2
  903. msgid "Autocomplete"
  904. msgstr "Autocompletar"
  905. #: searx/templates/simple/preferences/autocomplete.html:15
  906. msgid "Find stuff as you type"
  907. msgstr "Buscar mientras escribes"
  908. #: searx/templates/simple/preferences/center_alignment.html:2
  909. msgid "Center Alignment"
  910. msgstr "Alineación central"
  911. #: searx/templates/simple/preferences/center_alignment.html:14
  912. msgid "Displays results in the center of the page (Oscar layout)."
  913. msgstr "Muestra los resultados en el centro de la página (diseño Oscar)."
  914. #: searx/templates/simple/preferences/cookies.html:2
  915. msgid ""
  916. "This is the list of cookies and their values SearXNG is storing on your "
  917. "computer."
  918. msgstr ""
  919. "Esta es la lista de cookies y sus valores que SearXNG está almacenando en tu "
  920. "ordenador."
  921. #: searx/templates/simple/preferences/cookies.html:3
  922. msgid "With that list, you can assess SearXNG transparency."
  923. msgstr "Con esa lista, puedes comprobar la transparencia de SearXNG."
  924. #: searx/templates/simple/preferences/cookies.html:9
  925. msgid "Cookie name"
  926. msgstr "Nombre de la cookie"
  927. #: searx/templates/simple/preferences/cookies.html:10
  928. msgid "Value"
  929. msgstr "Valor"
  930. #: searx/templates/simple/preferences/cookies.html:23
  931. msgid "Search URL of the currently saved preferences"
  932. msgstr "Buscar URL de las preferencias guardadas actualmente"
  933. #: searx/templates/simple/preferences/cookies.html:32
  934. msgid ""
  935. "Note: specifying custom settings in the search URL can reduce privacy by "
  936. "leaking data to the clicked result sites."
  937. msgstr ""
  938. "Nota: especificar configuraciones personalizadas en la URL de búsqueda puede "
  939. "reducir la privacidad por filtrar datos a los sitios de resultados en los "
  940. "que se ha hecho clic."
  941. #: searx/templates/simple/preferences/cookies.html:35
  942. msgid "URL to restore your preferences in another browser"
  943. msgstr "URL para restaurar sus preferencias en otro navegador"
  944. #: searx/templates/simple/preferences/cookies.html:43
  945. msgid ""
  946. "Specifying custom settings in the preferences URL can be used to sync "
  947. "preferences across devices."
  948. msgstr ""
  949. "Especificar ajustes personalizados en la URL de preferencias puede usarse "
  950. "para sincronizar las preferencias entre dispositivos."
  951. #: searx/templates/simple/preferences/cookies.html:46
  952. msgid "Copy preferences hash"
  953. msgstr "Copiar el hash de preferencias"
  954. #: searx/templates/simple/preferences/cookies.html:57
  955. msgid "Insert copied preferences hash (without URL) to restore"
  956. msgstr "Inserte el hash de preferencias copiado (sin URL) para restaurar"
  957. #: searx/templates/simple/preferences/cookies.html:59
  958. msgid "Preferences hash"
  959. msgstr "Hash de preferencias"
  960. #: searx/templates/simple/preferences/doi_resolver.html:2
  961. msgid "Open Access DOI resolver"
  962. msgstr "Resolutor de DOI de acceso abierto"
  963. #: searx/templates/simple/preferences/doi_resolver.html:14
  964. msgid "Select service used by DOI rewrite"
  965. msgstr "Elije el servicio utilizado para reescribir DOI"
  966. #: searx/templates/simple/preferences/engines.html:9
  967. msgid ""
  968. "This tab does not exists in the user interface, but you can search in "
  969. "these engines by its !bangs."
  970. msgstr ""
  971. "Esta pestaña no existe en la interfaz de usuario, pero puedes buscar en "
  972. "estos motores por sus !bangs."
  973. #: searx/templates/simple/preferences/engines.html:15
  974. msgid "Enable all"
  975. msgstr "Activar todo"
  976. #: searx/templates/simple/preferences/engines.html:16
  977. msgid "Disable all"
  978. msgstr "Desactivar todo"
  979. #: searx/templates/simple/preferences/engines.html:25
  980. msgid "!bang"
  981. msgstr "!bang"
  982. #: searx/templates/simple/preferences/engines.html:26
  983. msgid "Supports selected language"
  984. msgstr "Soporta el idioma seleccionado"
  985. #: searx/templates/simple/preferences/engines.html:29
  986. msgid "Weight"
  987. msgstr "Peso"
  988. #: searx/templates/simple/preferences/engines.html:33
  989. msgid "Max time"
  990. msgstr "Tiempo máximo"
  991. #: searx/templates/simple/preferences/favicon.html:2
  992. msgid "Favicon Resolver"
  993. msgstr "Buscador de favicon"
  994. #: searx/templates/simple/preferences/favicon.html:15
  995. msgid "Display favicons near search results"
  996. msgstr "Mostrar los favicons al lado de los resultados de búsqueda"
  997. #: searx/templates/simple/preferences/footer.html:2
  998. msgid ""
  999. "These settings are stored in your cookies, this allows us not to store "
  1000. "this data about you."
  1001. msgstr ""
  1002. "Esta configuración se guarda en sus cookies, lo que nos permite no almacenar "
  1003. "dicha información sobre usted."
  1004. #: searx/templates/simple/preferences/footer.html:3
  1005. msgid ""
  1006. "These cookies serve your sole convenience, we don't use these cookies to "
  1007. "track you."
  1008. msgstr ""
  1009. "Estas cookies son para su propia comodidad, no las utilizamos para "
  1010. "rastrearte."
  1011. #: searx/templates/simple/preferences/footer.html:6
  1012. msgid "Save"
  1013. msgstr "Guardar"
  1014. #: searx/templates/simple/preferences/footer.html:9
  1015. msgid "Reset defaults"
  1016. msgstr "Restablecer configuración por defecto"
  1017. #: searx/templates/simple/preferences/footer.html:13
  1018. msgid "Back"
  1019. msgstr "Atrás"
  1020. #: searx/templates/simple/preferences/hotkeys.html:2
  1021. msgid "Hotkeys"
  1022. msgstr "Atajo de teclado"
  1023. #: searx/templates/simple/preferences/hotkeys.html:13
  1024. msgid "Vim-like"
  1025. msgstr "Similar a Vim"
  1026. #: searx/templates/simple/preferences/hotkeys.html:18
  1027. msgid ""
  1028. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1029. "key on main or result page to get help."
  1030. msgstr ""
  1031. "Navega por los resultados de la búsqueda con las teclas de acceso rápido "
  1032. "(se requiere JavaScript). Presiona la tecla \"h\" en la página principal "
  1033. "o de los resultados para obtener ayuda."
  1034. #: searx/templates/simple/preferences/image_proxy.html:2
  1035. msgid "Image proxy"
  1036. msgstr "Proxy de imágenes"
  1037. #: searx/templates/simple/preferences/image_proxy.html:14
  1038. msgid "Proxying image results through SearXNG"
  1039. msgstr "Cargando los resultados de imágenes a través de SearXNG"
  1040. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1041. msgid "Infinite scroll"
  1042. msgstr "Deslizamiento infinito"
  1043. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1044. msgid "Automatically load next page when scrolling to bottom of current page"
  1045. msgstr ""
  1046. "Cargar automáticamente la siguiente página al deslizarse hasta el final de "
  1047. "la página actual"
  1048. #: searx/templates/simple/preferences/language.html:24
  1049. msgid "What language do you prefer for search?"
  1050. msgstr "¿Qué idioma prefieres para la búsqueda?"
  1051. #: searx/templates/simple/preferences/language.html:25
  1052. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1053. msgstr ""
  1054. "Seleccione Detección automática para que SearXNG detecte el idioma de su "
  1055. "consulta."
  1056. #: searx/templates/simple/preferences/method.html:2
  1057. msgid "HTTP Method"
  1058. msgstr "Método HTTP"
  1059. #: searx/templates/simple/preferences/method.html:14
  1060. msgid "Change how forms are submitted"
  1061. msgstr "Cambiar cómo se envían los formularios"
  1062. #: searx/templates/simple/preferences/query_in_title.html:2
  1063. msgid "Query in the page's title"
  1064. msgstr "Petición en el titulo de la pagina"
  1065. #: searx/templates/simple/preferences/query_in_title.html:14
  1066. msgid ""
  1067. "When enabled, the result page's title contains your query. Your browser "
  1068. "can record this title"
  1069. msgstr ""
  1070. "Cuando se activa, la página de resultados contendrá tu búsqueda. Tu buscador "
  1071. "puede guardar este título"
  1072. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1073. msgid "Results on new tabs"
  1074. msgstr "Resultados en nuevas pestañas"
  1075. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1076. msgid "Open result links on new browser tabs"
  1077. msgstr "Abrir los resultados en nuevas pestañas del navegador"
  1078. #: searx/templates/simple/preferences/safesearch.html:20
  1079. msgid "Filter content"
  1080. msgstr "Filtro de contenido"
  1081. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1082. msgid "Search on category select"
  1083. msgstr "Buscar en la categoría seleccionada"
  1084. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1085. msgid ""
  1086. "Perform search immediately if a category selected. Disable to select "
  1087. "multiple categories"
  1088. msgstr ""
  1089. "Realiza la búsqueda inmediatamente si se selecciona una categoría. "
  1090. "Desactivar para seleccionar varias categorías"
  1091. #: searx/templates/simple/preferences/theme.html:2
  1092. msgid "Theme"
  1093. msgstr "Tema"
  1094. #: searx/templates/simple/preferences/theme.html:14
  1095. msgid "Change SearXNG layout"
  1096. msgstr "Cambiar la interfaz de SearXNG"
  1097. #: searx/templates/simple/preferences/theme.html:19
  1098. msgid "Theme style"
  1099. msgstr "Estilo del tema"
  1100. #: searx/templates/simple/preferences/theme.html:31
  1101. msgid "Choose auto to follow your browser settings"
  1102. msgstr "Escoge automático para seguir la configuración de tu navegador"
  1103. #: searx/templates/simple/preferences/tokens.html:2
  1104. msgid "Engine tokens"
  1105. msgstr "Llaves de motores"
  1106. #: searx/templates/simple/preferences/tokens.html:9
  1107. msgid "Access tokens for private engines"
  1108. msgstr "Llaves de acceso para motores privados"
  1109. #: searx/templates/simple/preferences/ui_locale.html:2
  1110. msgid "Interface language"
  1111. msgstr "Idioma de la interfaz"
  1112. #: searx/templates/simple/preferences/ui_locale.html:14
  1113. msgid "Change the language of the layout"
  1114. msgstr "Cambiar idioma de la interfaz"
  1115. #: searx/templates/simple/preferences/urlformatting.html:2
  1116. msgid "URL formatting"
  1117. msgstr "Formatacion de la URL"
  1118. #: searx/templates/simple/preferences/urlformatting.html:8
  1119. msgid "Pretty"
  1120. msgstr "Bonito"
  1121. #: searx/templates/simple/preferences/urlformatting.html:13
  1122. msgid "Full"
  1123. msgstr "Lleno"
  1124. #: searx/templates/simple/preferences/urlformatting.html:18
  1125. msgid "Host"
  1126. msgstr "Anfitrion"
  1127. #: searx/templates/simple/preferences/urlformatting.html:23
  1128. msgid "Change result URL formatting"
  1129. msgstr "Cambiar el formato de la URL del resultado"
  1130. #: searx/templates/simple/result_templates/code.html:13
  1131. msgid "repo"
  1132. msgstr "repositorios"
  1133. #: searx/templates/simple/result_templates/default.html:6
  1134. #: searx/templates/simple/result_templates/files.html:8
  1135. #: searx/templates/simple/result_templates/files.html:11
  1136. msgid "show media"
  1137. msgstr "mostrar multimedia"
  1138. #: searx/templates/simple/result_templates/default.html:6
  1139. #: searx/templates/simple/result_templates/files.html:8
  1140. msgid "hide media"
  1141. msgstr "ocultar multimedia"
  1142. #: searx/templates/simple/result_templates/default.html:14
  1143. #: searx/templates/simple/result_templates/videos.html:14
  1144. msgid "This site did not provide any description."
  1145. msgstr "Este sitio no provee ninguna descripción."
  1146. #: searx/templates/simple/result_templates/files.html:38
  1147. #: searx/templates/simple/result_templates/images.html:22
  1148. #: searx/templates/simple/result_templates/torrent.html:11
  1149. msgid "Filesize"
  1150. msgstr "Tamaño de archivo"
  1151. #: searx/templates/simple/result_templates/files.html:40
  1152. msgid "Date"
  1153. msgstr "Fecha"
  1154. #: searx/templates/simple/result_templates/files.html:42
  1155. #: searx/templates/simple/result_templates/paper.html:24
  1156. msgid "Type"
  1157. msgstr "Tipo"
  1158. #: searx/templates/simple/result_templates/images.html:20
  1159. msgid "Resolution"
  1160. msgstr "Resolución"
  1161. #: searx/templates/simple/result_templates/images.html:21
  1162. msgid "Format"
  1163. msgstr "Formato"
  1164. #: searx/templates/simple/result_templates/images.html:24
  1165. msgid "Engine"
  1166. msgstr "Motor"
  1167. #: searx/templates/simple/result_templates/images.html:25
  1168. msgid "View source"
  1169. msgstr "Ver fuente"
  1170. #: searx/templates/simple/result_templates/map.html:12
  1171. msgid "address"
  1172. msgstr "dirección"
  1173. #: searx/templates/simple/result_templates/map.html:43
  1174. msgid "show map"
  1175. msgstr "mostrar mapa"
  1176. #: searx/templates/simple/result_templates/map.html:43
  1177. msgid "hide map"
  1178. msgstr "ocultar mapa"
  1179. #: searx/templates/simple/result_templates/packages.html:12
  1180. msgid "Version"
  1181. msgstr "Versión"
  1182. #: searx/templates/simple/result_templates/packages.html:18
  1183. msgid "Maintainer"
  1184. msgstr "Administrador"
  1185. #: searx/templates/simple/result_templates/packages.html:24
  1186. msgid "Updated at"
  1187. msgstr "Actualizado en"
  1188. #: searx/templates/simple/result_templates/packages.html:30
  1189. #: searx/templates/simple/result_templates/paper.html:25
  1190. msgid "Tags"
  1191. msgstr "Etiquetas"
  1192. #: searx/templates/simple/result_templates/packages.html:36
  1193. msgid "Popularity"
  1194. msgstr "Popularidad"
  1195. #: searx/templates/simple/result_templates/packages.html:42
  1196. msgid "License"
  1197. msgstr "Licencia"
  1198. #: searx/templates/simple/result_templates/packages.html:52
  1199. msgid "Project"
  1200. msgstr "Proyecto"
  1201. #: searx/templates/simple/result_templates/packages.html:55
  1202. msgid "Project homepage"
  1203. msgstr "Página de inicio del proyecto"
  1204. #: searx/templates/simple/result_templates/paper.html:5
  1205. msgid "Published date"
  1206. msgstr "Fecha de Publicación"
  1207. #: searx/templates/simple/result_templates/paper.html:9
  1208. msgid "Journal"
  1209. msgstr "Periódicos"
  1210. #: searx/templates/simple/result_templates/paper.html:22
  1211. msgid "Editor"
  1212. msgstr "Editor"
  1213. #: searx/templates/simple/result_templates/paper.html:23
  1214. msgid "Publisher"
  1215. msgstr "Publicador"
  1216. #: searx/templates/simple/result_templates/paper.html:26
  1217. msgid "DOI"
  1218. msgstr "DOI"
  1219. #: searx/templates/simple/result_templates/paper.html:27
  1220. msgid "ISSN"
  1221. msgstr "ISSN"
  1222. #: searx/templates/simple/result_templates/paper.html:28
  1223. msgid "ISBN"
  1224. msgstr "ISBN"
  1225. #: searx/templates/simple/result_templates/paper.html:33
  1226. msgid "PDF"
  1227. msgstr "PDF"
  1228. #: searx/templates/simple/result_templates/paper.html:34
  1229. msgid "HTML"
  1230. msgstr "HTML"
  1231. #: searx/templates/simple/result_templates/torrent.html:6
  1232. msgid "magnet link"
  1233. msgstr "enlace magnético"
  1234. #: searx/templates/simple/result_templates/torrent.html:7
  1235. msgid "torrent file"
  1236. msgstr "archivo torrent"
  1237. #: searx/templates/simple/result_templates/torrent.html:9
  1238. msgid "Seeder"
  1239. msgstr "Seeders"
  1240. #: searx/templates/simple/result_templates/torrent.html:9
  1241. msgid "Leecher"
  1242. msgstr "Leechers"
  1243. #: searx/templates/simple/result_templates/torrent.html:13
  1244. msgid "Number of Files"
  1245. msgstr "Número de archivos"
  1246. #: searx/templates/simple/result_templates/videos.html:6
  1247. msgid "show video"
  1248. msgstr "mostrar vídeo"
  1249. #: searx/templates/simple/result_templates/videos.html:6
  1250. msgid "hide video"
  1251. msgstr "ocultar video"
  1252. #~ msgid "Engine time (sec)"
  1253. #~ msgstr "Motor de tiempo (seg)"
  1254. #~ msgid "Page loads (sec)"
  1255. #~ msgstr "Tiempo de carga (segundos)"
  1256. #~ msgid "Errors"
  1257. #~ msgstr "Errores"
  1258. #~ msgid "CAPTCHA required"
  1259. #~ msgstr "CAPTCHA obligatorio"
  1260. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1261. #~ msgstr "Cambiar los enlaces HTTP a HTTPS si es posible"
  1262. #~ msgid ""
  1263. #~ "Results are opened in the same "
  1264. #~ "window by default. This plugin "
  1265. #~ "overwrites the default behaviour to open"
  1266. #~ " links on new tabs/windows. (JavaScript "
  1267. #~ "required)"
  1268. #~ msgstr ""
  1269. #~ "Los resultados se abren en la "
  1270. #~ "misma ventana por defecto. Este plugin"
  1271. #~ " sobrescribe el comportamiento por defecto"
  1272. #~ " para abrir enlaces en nuevas "
  1273. #~ "pestañas / ventanas. (es necesario "
  1274. #~ "JavaScript)"
  1275. #~ msgid "Color"
  1276. #~ msgstr "Color"
  1277. #~ msgid "Blue (default)"
  1278. #~ msgstr "Azul (predeterminado)"
  1279. #~ msgid "Violet"
  1280. #~ msgstr "Violeta"
  1281. #~ msgid "Green"
  1282. #~ msgstr "Verde"
  1283. #~ msgid "Cyan"
  1284. #~ msgstr "Cian"
  1285. #~ msgid "Orange"
  1286. #~ msgstr "Naranja"
  1287. #~ msgid "Red"
  1288. #~ msgstr "Rojo"
  1289. #~ msgid "Category"
  1290. #~ msgstr "Categoría"
  1291. #~ msgid "Block"
  1292. #~ msgstr "Bloquear"
  1293. #~ msgid "original context"
  1294. #~ msgstr "contexto original"
  1295. #~ msgid "Plugins"
  1296. #~ msgstr "Plugins"
  1297. #~ msgid "Answerers"
  1298. #~ msgstr "Respondedores"
  1299. #~ msgid "Avg. time"
  1300. #~ msgstr "Tiempo promedio"
  1301. #~ msgid "show details"
  1302. #~ msgstr "ver detalles"
  1303. #~ msgid "hide details"
  1304. #~ msgstr "ocultar detalles"
  1305. #~ msgid "Load more..."
  1306. #~ msgstr "Cargar más"
  1307. #~ msgid "Loading..."
  1308. #~ msgstr "Cargando..."
  1309. #~ msgid "Change searx layout"
  1310. #~ msgstr "Cambiar aspecto de searx"
  1311. #~ msgid "Proxying image results through searx"
  1312. #~ msgstr "Filtrado de resultados de imágenes en searx"
  1313. #~ msgid "This is the list of searx's instant answering modules."
  1314. #~ msgstr "Esta es la lista de los módulos de respuesta inmediata de searx."
  1315. #~ msgid ""
  1316. #~ "This is the list of cookies and"
  1317. #~ " their values searx is storing on "
  1318. #~ "your computer."
  1319. #~ msgstr ""
  1320. #~ "Esta es la lista de cookies y "
  1321. #~ "sus valores que searx está almacenando"
  1322. #~ " en tu ordenador."
  1323. #~ msgid "With that list, you can assess searx transparency."
  1324. #~ msgstr "Con esa lista puedes valorar la transparencia de searx."
  1325. #~ msgid "It look like you are using searx first time."
  1326. #~ msgstr "Parece que estás usando searx por primera vez."
  1327. #~ msgid "Please, try again later or find another searx instance."
  1328. #~ msgstr ""
  1329. #~ "Por favor, inténtelo de nuevo más "
  1330. #~ "tarde o busque otra instancia de "
  1331. #~ "searx."
  1332. #~ msgid "Themes"
  1333. #~ msgstr "Temas"
  1334. #~ msgid "Reliablity"
  1335. #~ msgstr ""
  1336. #~ msgid ""
  1337. #~ "When enabled, the result page's title"
  1338. #~ " contains your query. Your browser "
  1339. #~ "can record this title."
  1340. #~ msgstr ""
  1341. #~ msgid "Method"
  1342. #~ msgstr "Método"
  1343. #~ msgid ""
  1344. #~ "This tab does not show up for "
  1345. #~ "search results but you can search "
  1346. #~ "the engines listed here via bangs."
  1347. #~ msgstr ""
  1348. #~ msgid "Advanced settings"
  1349. #~ msgstr "Ajustes avanzados"
  1350. #~ msgid "Close"
  1351. #~ msgstr "Cerrar"
  1352. #~ msgid "Language"
  1353. #~ msgstr "Lenguaje"
  1354. #~ msgid "broken"
  1355. #~ msgstr "roto"
  1356. #~ msgid "supported"
  1357. #~ msgstr "soportado"
  1358. #~ msgid "not supported"
  1359. #~ msgstr "no soportado"
  1360. #~ msgid "about"
  1361. #~ msgstr "acerca de"
  1362. #~ msgid "Avg."
  1363. #~ msgstr "Media"
  1364. #~ msgid "User Interface"
  1365. #~ msgstr "Interfaz de usuario"
  1366. #~ msgid "Choose style for this theme"
  1367. #~ msgstr "Elige un estilo para este tema"
  1368. #~ msgid "Style"
  1369. #~ msgstr "Estilo"
  1370. #~ msgid "Show advanced settings"
  1371. #~ msgstr "Mostrar las opciones avanzadas"
  1372. #~ msgid "Show advanced settings panel in the home page by default"
  1373. #~ msgstr ""
  1374. #~ "Mostrar el panel de opciones avanzadas"
  1375. #~ " en la página principal por defecto"
  1376. #~ msgid "Allow all"
  1377. #~ msgstr "Permitir todo"
  1378. #~ msgid "Disable all"
  1379. #~ msgstr "Deshabilitar todo"
  1380. #~ msgid "Selected language"
  1381. #~ msgstr "Idioma elegido"
  1382. #~ msgid "Query"
  1383. #~ msgstr "Petición"
  1384. #~ msgid "save"
  1385. #~ msgstr "Guardar"
  1386. #~ msgid "back"
  1387. #~ msgstr "Atrás"
  1388. #~ msgid "Links"
  1389. #~ msgstr "Enlaces"
  1390. #~ msgid "RSS subscription"
  1391. #~ msgstr "Suscripción RSS"
  1392. #~ msgid "Search results"
  1393. #~ msgstr "Resultados de búsqueda"
  1394. #~ msgid "next page"
  1395. #~ msgstr "Página siguiente"
  1396. #~ msgid "previous page"
  1397. #~ msgstr "Página anterior"
  1398. #~ msgid "Start search"
  1399. #~ msgstr "Comenzar búsqueda"
  1400. #~ msgid "Clear search"
  1401. #~ msgstr "Limpiar búsqueda"
  1402. #~ msgid "Clear"
  1403. #~ msgstr "Limpiar"
  1404. #~ msgid "stats"
  1405. #~ msgstr "Estadísitcas"
  1406. #~ msgid "Heads up!"
  1407. #~ msgstr "¡Atención!"
  1408. #~ msgid "It look like you are using SearXNG first time."
  1409. #~ msgstr "Parece que estás utilizando SearXNG por primera vez."
  1410. #~ msgid "Well done!"
  1411. #~ msgstr "¡Bien hecho!"
  1412. #~ msgid "Settings saved successfully."
  1413. #~ msgstr "Configuración guardada correctamente."
  1414. #~ msgid "Oh snap!"
  1415. #~ msgstr "¡Mecachis!"
  1416. #~ msgid "Something went wrong."
  1417. #~ msgstr "Algo ha ido mal."
  1418. #~ msgid "Date"
  1419. #~ msgstr "Fecha"
  1420. #~ msgid "Type"
  1421. #~ msgstr "Tipo"
  1422. #~ msgid "Get image"
  1423. #~ msgstr "Obtener imagen"
  1424. #~ msgid "Center Alignment"
  1425. #~ msgstr ""
  1426. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1427. #~ msgstr ""
  1428. #~ msgid "preferences"
  1429. #~ msgstr "preferencias"
  1430. #~ msgid "Scores per result"
  1431. #~ msgstr "Puntuaciones por resultado"
  1432. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1433. #~ msgstr "un metabuscador hackeable que respeta la privacidad"
  1434. #~ msgid "No abstract is available for this publication."
  1435. #~ msgstr "No hay resúmenes disponibles para esta publicación."
  1436. #~ msgid "Self Informations"
  1437. #~ msgstr "Información propia"
  1438. #~ msgid ""
  1439. #~ "Change how forms are submited, <a "
  1440. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1441. #~ " rel=\"external\">learn more about request "
  1442. #~ "methods</a>"
  1443. #~ msgstr ""
  1444. #~ "Modifica cómo se envían los formularios"
  1445. #~ " <a "
  1446. #~ "href=\"http://es.wikipedia.org/wiki/Hypertext_Transfer_Protocol#M.C3.A9todos_de_petici.C3.B3n\""
  1447. #~ " rel=\"external\">más información sobre métodos"
  1448. #~ " de peticiones</a>"
  1449. #~ msgid ""
  1450. #~ "This plugin checks if the address "
  1451. #~ "of the request is a TOR exit "
  1452. #~ "node, and informs the user if it"
  1453. #~ " is, like check.torproject.org but from "
  1454. #~ "searxng."
  1455. #~ msgstr ""
  1456. #~ "Este plugin verifica si la dirección "
  1457. #~ "de la solicitud es un nodo de "
  1458. #~ "salida TOR e informa al usuario si"
  1459. #~ " lo es, como check.torproject.org pero "
  1460. #~ "desde searxng."
  1461. #~ msgid ""
  1462. #~ "The TOR exit node list "
  1463. #~ "(https://check.torproject.org/exit-addresses) is "
  1464. #~ "unreachable."
  1465. #~ msgstr ""
  1466. #~ "Imposible de acceder a la lista de"
  1467. #~ " nodos de salida de TOR "
  1468. #~ "(https://check.torproject.org/exit-addresses)."
  1469. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1470. #~ msgstr "Estás usando TOR. Tu dirección IP parece ser: {ip_address}."
  1471. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1472. #~ msgstr "No estás usando TOR. Tu dirección IP parece ser: {ip_address}."
  1473. #~ msgid ""
  1474. #~ "The could not download the list of"
  1475. #~ " Tor exit-nodes from "
  1476. #~ "https://check.torproject.org/exit-addresses."
  1477. #~ msgstr ""
  1478. #~ msgid ""
  1479. #~ "You are using Tor. It looks like"
  1480. #~ " you have this external IP address:"
  1481. #~ " {ip_address}."
  1482. #~ msgstr ""
  1483. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1484. #~ msgstr ""
  1485. #~ msgid "Autodetect search language"
  1486. #~ msgstr "Detectar el lenguaje de búsqueda automáticamente"
  1487. #~ msgid "Automatically detect the query search language and switch to it."
  1488. #~ msgstr "Detectar el lenguaje de búsqueda automáticamente y usarlo."
  1489. #~ msgid "others"
  1490. #~ msgstr "otros"
  1491. #~ msgid ""
  1492. #~ "This tab does not show up for "
  1493. #~ "search results, but you can search "
  1494. #~ "the engines listed here via bangs."
  1495. #~ msgstr ""
  1496. #~ "Esta pestaña no se muestra para "
  1497. #~ "los resultados de búsqueda, pero puedes"
  1498. #~ " buscar con los motores aquí listado"
  1499. #~ " mediante bangs."
  1500. #~ msgid "Shortcut"
  1501. #~ msgstr "Atajo"
  1502. #~ msgid "!bang"
  1503. #~ msgstr "!bang"
  1504. #~ msgid ""
  1505. #~ "This tab dues not exists in the"
  1506. #~ " user interface, but you can search"
  1507. #~ " in these engines by its !bangs."
  1508. #~ msgstr ""
  1509. #~ "Esta pestaña no existe en la "
  1510. #~ "interfaz de usuario, pero puedes buscar"
  1511. #~ " en estos motores por sus !bangs."
  1512. #~ msgid "Engines cannot retrieve results."
  1513. #~ msgstr "Los motores no pueden obtener resultados."
  1514. #~ msgid "Please, try again later or find another SearXNG instance."
  1515. #~ msgstr "Por favor, prueba más tarde o encuentra otra instancia de SearXNG."
  1516. #~ msgid ""
  1517. #~ "Redirect to open-access versions of "
  1518. #~ "publications when available (plugin required)"
  1519. #~ msgstr ""
  1520. #~ "Redireccionar a versiones de acceso "
  1521. #~ "abierto de las publicaciones cuando "
  1522. #~ "estén disponibles (se requiere plugin)"
  1523. #~ msgid "Bang"
  1524. #~ msgstr "!bang"
  1525. #~ msgid ""
  1526. #~ "Change how forms are submitted, <a "
  1527. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1528. #~ " rel=\"external\">learn more about request "
  1529. #~ "methods</a>"
  1530. #~ msgstr ""
  1531. #~ "Modifica cómo se envían los formularios"
  1532. #~ " <a "
  1533. #~ "href=\"http://es.wikipedia.org/wiki/Hypertext_Transfer_Protocol#M.C3.A9todos_de_petici.C3.B3n\""
  1534. #~ " rel=\"external\">más información sobre métodos"
  1535. #~ " de peticiones</a>"
  1536. #~ msgid "On"
  1537. #~ msgstr "Activado"
  1538. #~ msgid "Off"
  1539. #~ msgstr "Desactivado"
  1540. #~ msgid "Enabled"
  1541. #~ msgstr "Activado"
  1542. #~ msgid "Disabled"
  1543. #~ msgstr "Desactivado"
  1544. #~ msgid ""
  1545. #~ "Perform search immediately if a category"
  1546. #~ " selected. Disable to select multiple "
  1547. #~ "categories. (JavaScript required)"
  1548. #~ msgstr ""
  1549. #~ "Realizar una búsqueda inmediatamente si "
  1550. #~ "se ha seleccionado una categoría. "
  1551. #~ "Desactivar para seleccionar varias categorías."
  1552. #~ " (Se requiere JavaScript)"
  1553. #~ msgid "Vim-like hotkeys"
  1554. #~ msgstr "Teclas de acceso rápido como Vim"
  1555. #~ msgid ""
  1556. #~ "Navigate search results with Vim-like"
  1557. #~ " hotkeys (JavaScript required). Press \"h\""
  1558. #~ " key on main or result page to"
  1559. #~ " get help."
  1560. #~ msgstr ""
  1561. #~ "Navegar por los resultados de búsqueda"
  1562. #~ " con las teclas de acceso rápido "
  1563. #~ "como-Vim (es necesario JavaScript). "
  1564. #~ "Pulse la tecla \"h\" en la página"
  1565. #~ " principal o en el resultado para "
  1566. #~ "obtener ayuda."
  1567. #~ msgid ""
  1568. #~ "we didn't find any results. Please "
  1569. #~ "use another query or search in "
  1570. #~ "more categories."
  1571. #~ msgstr ""
  1572. #~ "No encontramos ningún resultado. Por "
  1573. #~ "favor, formule su búsqueda de otra "
  1574. #~ "forma o busque en más categorías."
  1575. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1576. #~ msgstr ""
  1577. #~ "Reescribir los nombres de host de "
  1578. #~ "los resultados o eliminar los resultados"
  1579. #~ " en función del nombre de host"
  1580. #~ msgid "Bytes"
  1581. #~ msgstr "Bytes"
  1582. #~ msgid "kiB"
  1583. #~ msgstr "KiB"
  1584. #~ msgid "MiB"
  1585. #~ msgstr "MiB"
  1586. #~ msgid "GiB"
  1587. #~ msgstr "GiB"
  1588. #~ msgid "TiB"
  1589. #~ msgstr "TiB"
  1590. #~ msgid "Hostname replace"
  1591. #~ msgstr "Sustituir el nombre de host"
  1592. #~ msgid "Error!"
  1593. #~ msgstr "¡Error!"
  1594. #~ msgid "Engines cannot retrieve results"
  1595. #~ msgstr "Los motores no pueden obtener resultados"
  1596. #~ msgid "Start submiting a new issue on GitHub"
  1597. #~ msgstr "Enviar un nuevo problema a GitHub"
  1598. #~ msgid "dummy"
  1599. #~ msgstr ""