messages.po 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  1. # Galician translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Xosé M. <correo@xmgz.eu>, 2020, 2022.
  7. # Xosé M. <correo@xmgz.eu>, 2018-2019, 2022.
  8. # ghose <correo@xmgz.eu>, 2023, 2024.
  9. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  10. # ghose <ghose@users.noreply.translate.codeberg.org>, 2024, 2025.
  11. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  12. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  13. msgid ""
  14. msgstr ""
  15. "Project-Id-Version: searx\n"
  16. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  17. "POT-Creation-Date: 2025-01-06 16:04+0000\n"
  18. "PO-Revision-Date: 2025-01-06 15:53+0000\n"
  19. "Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
  20. "\n"
  21. "Language: gl\n"
  22. "Language-Team: Galician "
  23. "<https://translate.codeberg.org/projects/searxng/searxng/gl/>\n"
  24. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  25. "MIME-Version: 1.0\n"
  26. "Content-Type: text/plain; charset=utf-8\n"
  27. "Content-Transfer-Encoding: 8bit\n"
  28. "Generated-By: Babel 2.16.0\n"
  29. #. CONSTANT_NAMES['NO_SUBGROUPING']
  30. #: searx/searxng.msg
  31. msgid "without further subgrouping"
  32. msgstr "sen posterior subagrupamento"
  33. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  34. #: searx/searxng.msg
  35. msgid "other"
  36. msgstr "outro"
  37. #. CATEGORY_NAMES['FILES']
  38. #: searx/searxng.msg
  39. msgid "files"
  40. msgstr "ficheiros"
  41. #. CATEGORY_NAMES['GENERAL']
  42. #: searx/searxng.msg
  43. msgid "general"
  44. msgstr "xeral"
  45. #. CATEGORY_NAMES['MUSIC']
  46. #: searx/searxng.msg
  47. msgid "music"
  48. msgstr "música"
  49. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  50. #: searx/searxng.msg
  51. msgid "social media"
  52. msgstr "medios sociais"
  53. #. CATEGORY_NAMES['IMAGES']
  54. #: searx/searxng.msg
  55. msgid "images"
  56. msgstr "imaxes"
  57. #. CATEGORY_NAMES['VIDEOS']
  58. #: searx/searxng.msg
  59. msgid "videos"
  60. msgstr "vídeos"
  61. #. CATEGORY_NAMES['RADIO']
  62. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  63. msgid "radio"
  64. msgstr "radio"
  65. #. CATEGORY_NAMES['TV']
  66. #: searx/searxng.msg
  67. msgid "tv"
  68. msgstr "tv"
  69. #. CATEGORY_NAMES['IT']
  70. #: searx/searxng.msg
  71. msgid "it"
  72. msgstr "TIC"
  73. #. CATEGORY_NAMES['NEWS']
  74. #: searx/searxng.msg
  75. msgid "news"
  76. msgstr "novas"
  77. #. CATEGORY_NAMES['MAP']
  78. #: searx/searxng.msg
  79. msgid "map"
  80. msgstr "mapa"
  81. #. CATEGORY_NAMES['ONIONS']
  82. #: searx/searxng.msg
  83. msgid "onions"
  84. msgstr "cebolas"
  85. #. CATEGORY_NAMES['SCIENCE']
  86. #: searx/searxng.msg
  87. msgid "science"
  88. msgstr "ciencia"
  89. #. CATEGORY_NAMES['DUMMY']
  90. #: searx/searxng.msg
  91. msgid "dummy"
  92. msgstr ""
  93. #. CATEGORY_GROUPS['APPS']
  94. #: searx/searxng.msg
  95. msgid "apps"
  96. msgstr "apps"
  97. #. CATEGORY_GROUPS['DICTIONARIES']
  98. #: searx/searxng.msg
  99. msgid "dictionaries"
  100. msgstr "dicionario"
  101. #. CATEGORY_GROUPS['LYRICS']
  102. #: searx/searxng.msg
  103. msgid "lyrics"
  104. msgstr "letras"
  105. #. CATEGORY_GROUPS['PACKAGES']
  106. #: searx/searxng.msg
  107. msgid "packages"
  108. msgstr "paquetes"
  109. #. CATEGORY_GROUPS['Q_A']
  110. #: searx/searxng.msg
  111. msgid "q&a"
  112. msgstr "preguntas e respostas"
  113. #. CATEGORY_GROUPS['REPOS']
  114. #: searx/searxng.msg
  115. msgid "repos"
  116. msgstr "repos"
  117. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  118. #: searx/searxng.msg
  119. msgid "software wikis"
  120. msgstr "wikis de software"
  121. #. CATEGORY_GROUPS['WEB']
  122. #: searx/searxng.msg
  123. msgid "web"
  124. msgstr "web"
  125. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  126. #: searx/searxng.msg
  127. msgid "scientific publications"
  128. msgstr "publicacións científicas"
  129. #. STYLE_NAMES['AUTO']
  130. #: searx/searxng.msg
  131. msgid "auto"
  132. msgstr "automático"
  133. #. STYLE_NAMES['LIGHT']
  134. #: searx/searxng.msg
  135. msgid "light"
  136. msgstr "claro"
  137. #. STYLE_NAMES['DARK']
  138. #: searx/searxng.msg
  139. msgid "dark"
  140. msgstr "escuro"
  141. #. STYLE_NAMES['BLACK']
  142. #: searx/searxng.msg
  143. msgid "black"
  144. msgstr "negro"
  145. #. BRAND_CUSTOM_LINKS['UPTIME']
  146. #: searx/searxng.msg
  147. msgid "Uptime"
  148. msgstr "Activo fai"
  149. #. BRAND_CUSTOM_LINKS['ABOUT']
  150. #: searx/searxng.msg searx/templates/simple/base.html:50
  151. msgid "About"
  152. msgstr "Sobre"
  153. #. WEATHER_TERMS['AVERAGE TEMP.']
  154. #: searx/engines/wttr.py:32 searx/searxng.msg
  155. msgid "Average temp."
  156. msgstr "Temp. media"
  157. #. WEATHER_TERMS['CLOUD COVER']
  158. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  159. msgid "Cloud cover"
  160. msgstr "Cuberto"
  161. #. WEATHER_TERMS['CONDITION']
  162. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  163. #: searx/searxng.msg
  164. msgid "Condition"
  165. msgstr "Situación"
  166. #. WEATHER_TERMS['CURRENT CONDITION']
  167. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  168. #: searx/searxng.msg
  169. msgid "Current condition"
  170. msgstr "Estado actual"
  171. #. WEATHER_TERMS['EVENING']
  172. #: searx/engines/wttr.py:100 searx/searxng.msg
  173. msgid "Evening"
  174. msgstr "Tarde"
  175. #. WEATHER_TERMS['FEELS LIKE']
  176. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  177. #: searx/engines/wttr.py:59 searx/searxng.msg
  178. msgid "Feels like"
  179. msgstr "Sensación"
  180. #. WEATHER_TERMS['HUMIDITY']
  181. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  182. #: searx/engines/wttr.py:68 searx/searxng.msg
  183. msgid "Humidity"
  184. msgstr "Humidade"
  185. #. WEATHER_TERMS['MAX TEMP.']
  186. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  187. #: searx/searxng.msg
  188. msgid "Max temp."
  189. msgstr "Temp. Máx."
  190. #. WEATHER_TERMS['MIN TEMP.']
  191. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  192. #: searx/searxng.msg
  193. msgid "Min temp."
  194. msgstr "Temp. Mín."
  195. #. WEATHER_TERMS['MORNING']
  196. #: searx/engines/wttr.py:100 searx/searxng.msg
  197. msgid "Morning"
  198. msgstr "Mañán"
  199. #. WEATHER_TERMS['NIGHT']
  200. #: searx/engines/wttr.py:100 searx/searxng.msg
  201. msgid "Night"
  202. msgstr "Noite"
  203. #. WEATHER_TERMS['NOON']
  204. #: searx/engines/wttr.py:100 searx/searxng.msg
  205. msgid "Noon"
  206. msgstr "Mediodía"
  207. #. WEATHER_TERMS['PRESSURE']
  208. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  209. msgid "Pressure"
  210. msgstr "Presión"
  211. #. WEATHER_TERMS['SUNRISE']
  212. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  213. #: searx/searxng.msg
  214. msgid "Sunrise"
  215. msgstr "Abrente"
  216. #. WEATHER_TERMS['SUNSET']
  217. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  218. #: searx/searxng.msg
  219. msgid "Sunset"
  220. msgstr "Solpor"
  221. #. WEATHER_TERMS['TEMPERATURE']
  222. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  223. #: searx/engines/wttr.py:55 searx/searxng.msg
  224. msgid "Temperature"
  225. msgstr "Temperatura"
  226. #. WEATHER_TERMS['UV INDEX']
  227. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  228. #: searx/searxng.msg
  229. msgid "UV index"
  230. msgstr "Índice UV"
  231. #. WEATHER_TERMS['VISIBILITY']
  232. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  233. #: searx/searxng.msg
  234. msgid "Visibility"
  235. msgstr "Visibilidade"
  236. #. WEATHER_TERMS['WIND']
  237. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  238. #: searx/engines/wttr.py:62 searx/searxng.msg
  239. msgid "Wind"
  240. msgstr "Vento"
  241. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  242. #: searx/engines/lemmy.py:85 searx/searxng.msg
  243. msgid "subscribers"
  244. msgstr "subscritoras"
  245. #. SOCIAL_MEDIA_TERMS['POSTS']
  246. #: searx/engines/lemmy.py:86 searx/searxng.msg
  247. msgid "posts"
  248. msgstr "publicacións"
  249. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  250. #: searx/engines/lemmy.py:87 searx/searxng.msg
  251. msgid "active users"
  252. msgstr "usuarias activas"
  253. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  254. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  255. #: searx/engines/lemmy.py:130 searx/searxng.msg
  256. msgid "comments"
  257. msgstr "comentarios"
  258. #. SOCIAL_MEDIA_TERMS['USER']
  259. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  260. msgid "user"
  261. msgstr "usuaria"
  262. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  263. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  264. msgid "community"
  265. msgstr "comunidade"
  266. #. SOCIAL_MEDIA_TERMS['POINTS']
  267. #: searx/engines/hackernews.py:82 searx/searxng.msg
  268. msgid "points"
  269. msgstr "puntos"
  270. #. SOCIAL_MEDIA_TERMS['TITLE']
  271. #: searx/searxng.msg
  272. msgid "title"
  273. msgstr "título"
  274. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  275. #: searx/engines/hackernews.py:85 searx/searxng.msg
  276. msgid "author"
  277. msgstr "autoría"
  278. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  279. #: searx/engines/discourse.py:149 searx/searxng.msg
  280. msgid "open"
  281. msgstr "Abrir"
  282. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  283. #: searx/engines/discourse.py:149 searx/searxng.msg
  284. msgid "closed"
  285. msgstr "fechado"
  286. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  287. #: searx/engines/discourse.py:160 searx/searxng.msg
  288. msgid "answered"
  289. msgstr "respondido"
  290. #: searx/webapp.py:323
  291. msgid "No item found"
  292. msgstr "Non se atoparon elementos"
  293. #: searx/engines/qwant.py:288
  294. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  295. msgid "Source"
  296. msgstr "Fonte"
  297. #: searx/webapp.py:327
  298. msgid "Error loading the next page"
  299. msgstr "Erro ao cargar a páxina seguinte"
  300. #: searx/webapp.py:492 searx/webapp.py:900
  301. msgid "Invalid settings, please edit your preferences"
  302. msgstr "Axustes non válidos, por favor edita a configuración"
  303. #: searx/webapp.py:508
  304. msgid "Invalid settings"
  305. msgstr "Axustes non válidos"
  306. #: searx/webapp.py:585 searx/webapp.py:675
  307. msgid "search error"
  308. msgstr "fallo na busca"
  309. #: searx/webutils.py:36
  310. msgid "timeout"
  311. msgstr "tempo máximo"
  312. #: searx/webutils.py:37
  313. msgid "parsing error"
  314. msgstr "erro sintáctico"
  315. #: searx/webutils.py:38
  316. msgid "HTTP protocol error"
  317. msgstr "erro de protocolo HTTP"
  318. #: searx/webutils.py:39
  319. msgid "network error"
  320. msgstr "erro de conexión"
  321. #: searx/webutils.py:40
  322. msgid "SSL error: certificate validation has failed"
  323. msgstr "Erro SSL: fallou a validación do certificado"
  324. #: searx/webutils.py:42
  325. msgid "unexpected crash"
  326. msgstr "erro non agardado"
  327. #: searx/webutils.py:49
  328. msgid "HTTP error"
  329. msgstr "Erro HTTP"
  330. #: searx/webutils.py:50
  331. msgid "HTTP connection error"
  332. msgstr "Erro da conexión HTTP"
  333. #: searx/webutils.py:56
  334. msgid "proxy error"
  335. msgstr "erro do proxy"
  336. #: searx/webutils.py:57
  337. msgid "CAPTCHA"
  338. msgstr "CAPTCHA"
  339. #: searx/webutils.py:58
  340. msgid "too many requests"
  341. msgstr "demasiadas solicitudes"
  342. #: searx/webutils.py:59
  343. msgid "access denied"
  344. msgstr "acceso denegado"
  345. #: searx/webutils.py:60
  346. msgid "server API error"
  347. msgstr "erro na API do servidor"
  348. #: searx/webutils.py:79
  349. msgid "Suspended"
  350. msgstr "Suspendido"
  351. #: searx/webutils.py:314
  352. msgid "{minutes} minute(s) ago"
  353. msgstr "fai {minutes} minuto(s)"
  354. #: searx/webutils.py:315
  355. msgid "{hours} hour(s), {minutes} minute(s) ago"
  356. msgstr "fai {hours} hora(s), {minutes} minuto(s)"
  357. #: searx/answerers/random/answerer.py:76
  358. msgid "Random value generator"
  359. msgstr "Xerador de valor aleatorio"
  360. #: searx/answerers/random/answerer.py:77
  361. msgid "Generate different random values"
  362. msgstr "Xerar diferentes valores aleatorios"
  363. #: searx/answerers/statistics/answerer.py:50
  364. msgid "Statistics functions"
  365. msgstr "Funcións de estatística"
  366. #: searx/answerers/statistics/answerer.py:51
  367. msgid "Compute {functions} of the arguments"
  368. msgstr "Calcula {functions} dos argumentos"
  369. #: searx/engines/mozhi.py:57
  370. msgid "Synonyms"
  371. msgstr "Sinónimos"
  372. #: searx/engines/openstreetmap.py:159
  373. msgid "Get directions"
  374. msgstr "Obter direccións"
  375. #: searx/engines/pdbe.py:96
  376. msgid "{title} (OBSOLETE)"
  377. msgstr "{title} (OBSOLETO)"
  378. #: searx/engines/pdbe.py:103
  379. msgid "This entry has been superseded by"
  380. msgstr "Esta entrada foi proporcionada por"
  381. #: searx/engines/qwant.py:290
  382. msgid "Channel"
  383. msgstr "Canle"
  384. #: searx/engines/radio_browser.py:105
  385. msgid "bitrate"
  386. msgstr "taxa de bits"
  387. #: searx/engines/radio_browser.py:106
  388. msgid "votes"
  389. msgstr "votos"
  390. #: searx/engines/radio_browser.py:107
  391. msgid "clicks"
  392. msgstr "clicks"
  393. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  394. #: searx/engines/zlibrary.py:137
  395. msgid "Language"
  396. msgstr "Idioma"
  397. #: searx/engines/semantic_scholar.py:78
  398. msgid ""
  399. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  400. "{lastCitationVelocityYear}"
  401. msgstr ""
  402. "{numCitations} citas desde o ano {firstCitationVelocityYear} ao "
  403. "{lastCitationVelocityYear}"
  404. #: searx/engines/tineye.py:45
  405. msgid ""
  406. "Could not read that image url. This may be due to an unsupported file "
  407. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  408. " WebP."
  409. msgstr ""
  410. "Non se puido ler o url da imaxe. Podería ser debido a un formato do "
  411. "ficheiro non soportado. TinEye só soporta imaxes tipo JPEG, PNG, GIF, "
  412. "BMP, TIFF ou WebP."
  413. #: searx/engines/tineye.py:51
  414. msgid ""
  415. "The image is too simple to find matches. TinEye requires a basic level of"
  416. " visual detail to successfully identify matches."
  417. msgstr ""
  418. "A imaxe é demasiado simple para atopar coincidencias. TinEyes require un "
  419. "nivel de detalle básico para poder atopar coincidencias."
  420. #: searx/engines/tineye.py:57
  421. msgid "The image could not be downloaded."
  422. msgstr "Non se puido descargar a imaxe."
  423. #: searx/engines/zlibrary.py:138
  424. msgid "Book rating"
  425. msgstr "Valoración do libro"
  426. #: searx/engines/zlibrary.py:139
  427. msgid "File quality"
  428. msgstr "Calidade do ficheiro"
  429. #: searx/plugins/calculator.py:18
  430. msgid "Calculate mathematical expressions via the search bar"
  431. msgstr "Calcular expresións matemáticas usando a barra de busca"
  432. #: searx/plugins/hash_plugin.py:10
  433. msgid "Converts strings to different hash digests."
  434. msgstr "Converte o escrito usando diferentes funcións hash."
  435. #: searx/plugins/hash_plugin.py:38
  436. msgid "hash digest"
  437. msgstr "función hash"
  438. #: searx/plugins/hostnames.py:103
  439. msgid "Hostnames plugin"
  440. msgstr "Complemento de nomes de servidor"
  441. #: searx/plugins/hostnames.py:104
  442. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  443. msgstr ""
  444. "Reescribe nomes de servidor, elimina resultados ou prioriza en función do"
  445. " servidor"
  446. #: searx/plugins/oa_doi_rewrite.py:12
  447. msgid "Open Access DOI rewrite"
  448. msgstr "Reescritura Open Access DOI"
  449. #: searx/plugins/oa_doi_rewrite.py:13
  450. msgid ""
  451. "Avoid paywalls by redirecting to open-access versions of publications "
  452. "when available"
  453. msgstr ""
  454. "Evitar valados de pago redirixindo a versións abertas das publicacións "
  455. "cando estean dispoñibles"
  456. #: searx/plugins/self_info.py:9
  457. msgid "Self Information"
  458. msgstr "Información propia"
  459. #: searx/plugins/self_info.py:10
  460. msgid ""
  461. "Displays your IP if the query is \"ip\" and your user agent if the query "
  462. "contains \"user agent\"."
  463. msgstr ""
  464. "Mostra o teu IP se a consulta é \"ip\", e o teu User Agent se a consulta "
  465. "contén \"user agent\"."
  466. #: searx/plugins/self_info.py:28
  467. msgid "Your IP is: "
  468. msgstr "O teu IP: "
  469. #: searx/plugins/self_info.py:31
  470. msgid "Your user-agent is: "
  471. msgstr "O teu user-agent: "
  472. #: searx/plugins/tor_check.py:24
  473. msgid "Tor check plugin"
  474. msgstr "Complemento para comprobar Tor"
  475. #: searx/plugins/tor_check.py:27
  476. msgid ""
  477. "This plugin checks if the address of the request is a Tor exit-node, and "
  478. "informs the user if it is; like check.torproject.org, but from SearXNG."
  479. msgstr ""
  480. "Este complemento comproba se o enderezo da solicitude é un nodo-saída de "
  481. "Tor, e informate de se o é; como check.torproject.org, pero desde "
  482. "SearXNG."
  483. #: searx/plugins/tor_check.py:61
  484. msgid ""
  485. "Could not download the list of Tor exit-nodes from: "
  486. "https://check.torproject.org/exit-addresses"
  487. msgstr ""
  488. "Non se puido descargar a lista de nodos de saída a Tor desde: "
  489. "https://check.torproject.org/exit-addresses"
  490. #: searx/plugins/tor_check.py:77
  491. msgid ""
  492. "You are using Tor and it looks like you have this external IP address: "
  493. "{ip_address}"
  494. msgstr "Estás usando Tor e semella que tes este enderezo IP externo: {ip_address}"
  495. #: searx/plugins/tor_check.py:85
  496. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  497. msgstr "Non estás usando Tor e tes este endero IP externo: {ip_address}"
  498. #: searx/plugins/tracker_url_remover.py:16
  499. msgid "Tracker URL remover"
  500. msgstr "Eliminador de rastrexadores na URL"
  501. #: searx/plugins/tracker_url_remover.py:17
  502. msgid "Remove trackers arguments from the returned URL"
  503. msgstr "Elimina os elementos de rastrexo da URL devolta"
  504. #: searx/plugins/unit_converter.py:29
  505. msgid "Convert between units"
  506. msgstr "Converter unidades"
  507. #: searx/templates/simple/404.html:4
  508. msgid "Page not found"
  509. msgstr "Páxina non atopada"
  510. #: searx/templates/simple/404.html:6
  511. #, python-format
  512. msgid "Go to %(search_page)s."
  513. msgstr "Ir a %(search_page)s."
  514. #: searx/templates/simple/404.html:6
  515. msgid "search page"
  516. msgstr "páxina de busca"
  517. #: searx/templates/simple/base.html:54
  518. msgid "Donate"
  519. msgstr "Doar"
  520. #: searx/templates/simple/base.html:58
  521. #: searx/templates/simple/preferences.html:156
  522. msgid "Preferences"
  523. msgstr "Axustes"
  524. #: searx/templates/simple/base.html:68
  525. msgid "Powered by"
  526. msgstr "Proporcionado por"
  527. #: searx/templates/simple/base.html:68
  528. msgid "a privacy-respecting, open metasearch engine"
  529. msgstr "metabuscador aberto que respecta a privacidade"
  530. #: searx/templates/simple/base.html:69
  531. #: searx/templates/simple/result_templates/packages.html:59
  532. msgid "Source code"
  533. msgstr "Código fonte"
  534. #: searx/templates/simple/base.html:70
  535. msgid "Issue tracker"
  536. msgstr "Seguimento de incidencias"
  537. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  538. msgid "Engine stats"
  539. msgstr "Estatísticas do buscador"
  540. #: searx/templates/simple/base.html:73
  541. msgid "Public instances"
  542. msgstr "Instancias públicas"
  543. #: searx/templates/simple/base.html:76
  544. msgid "Privacy policy"
  545. msgstr "Política de privacidade"
  546. #: searx/templates/simple/base.html:79
  547. msgid "Contact instance maintainer"
  548. msgstr "Contactar coa administración"
  549. #: searx/templates/simple/categories.html:26
  550. msgid "Click on the magnifier to perform search"
  551. msgstr "Preme na lupa para realizar a busca"
  552. #: searx/templates/simple/macros.html:40
  553. msgid "Length"
  554. msgstr "Duración"
  555. #: searx/templates/simple/macros.html:41
  556. msgid "Views"
  557. msgstr "Visualizacións"
  558. #: searx/templates/simple/macros.html:42
  559. #: searx/templates/simple/result_templates/files.html:34
  560. #: searx/templates/simple/result_templates/images.html:19
  561. #: searx/templates/simple/result_templates/paper.html:6
  562. msgid "Author"
  563. msgstr "Autoría"
  564. #: searx/templates/simple/macros.html:50
  565. msgid "cached"
  566. msgstr "en memoria"
  567. #: searx/templates/simple/macros.html:50
  568. msgid "proxied"
  569. msgstr "a través de proxy"
  570. #: searx/templates/simple/new_issue.html:64
  571. msgid "Start submitting a new issue on GitHub"
  572. msgstr "Abre unha incidencia en GitHub"
  573. #: searx/templates/simple/new_issue.html:66
  574. msgid "Please check for existing bugs about this engine on GitHub"
  575. msgstr "Comproba que non exista xa un informe sobre este motor en GitHub"
  576. #: searx/templates/simple/new_issue.html:69
  577. msgid "I confirm there is no existing bug about the issue I encounter"
  578. msgstr "Confirmo que non existe un informe sobre este problema que atopei"
  579. #: searx/templates/simple/new_issue.html:71
  580. msgid "If this is a public instance, please specify the URL in the bug report"
  581. msgstr "Se esta é unha instancia pública, indica o URL no informe do problema"
  582. #: searx/templates/simple/new_issue.html:72
  583. msgid "Submit a new issue on Github including the above information"
  584. msgstr "Abre unha incidencia en Github incluíndo a información superior"
  585. #: searx/templates/simple/preferences.html:65
  586. msgid "No HTTPS"
  587. msgstr "Sen HTTPS"
  588. #: searx/templates/simple/elements/engines_msg.html:14
  589. #: searx/templates/simple/preferences.html:69
  590. #: searx/templates/simple/preferences.html:70
  591. msgid "View error logs and submit a bug report"
  592. msgstr "Ver rexistros do erro e enviar informe do problema"
  593. #: searx/templates/simple/preferences.html:74
  594. msgid "!bang for this engine"
  595. msgstr "!bang para este buscador"
  596. #: searx/templates/simple/preferences.html:80
  597. msgid "!bang for its categories"
  598. msgstr "!bang para as súas catergorías"
  599. #: searx/templates/simple/preferences.html:102
  600. #: searx/templates/simple/stats.html:64
  601. msgid "Median"
  602. msgstr "Median"
  603. #: searx/templates/simple/preferences.html:103
  604. #: searx/templates/simple/stats.html:70
  605. msgid "P80"
  606. msgstr "P80"
  607. #: searx/templates/simple/preferences.html:104
  608. #: searx/templates/simple/stats.html:76
  609. msgid "P95"
  610. msgstr "P95"
  611. #: searx/templates/simple/preferences.html:136
  612. msgid "Failed checker test(s): "
  613. msgstr "Test con fallo(s): "
  614. #: searx/templates/simple/preferences.html:138
  615. msgid "Errors:"
  616. msgstr "Erros:"
  617. #: searx/templates/simple/preferences.html:162
  618. msgid "General"
  619. msgstr "Xeral"
  620. #: searx/templates/simple/preferences.html:165
  621. msgid "Default categories"
  622. msgstr "Categorías por defecto"
  623. #: searx/templates/simple/preferences.html:190
  624. msgid "User interface"
  625. msgstr "Interface"
  626. #: searx/templates/simple/preferences.html:212
  627. msgid "Privacy"
  628. msgstr "Privacidade"
  629. #: searx/templates/simple/preferences.html:225
  630. msgid "Engines"
  631. msgstr "Motores"
  632. #: searx/templates/simple/preferences.html:227
  633. msgid "Currently used search engines"
  634. msgstr "Motores de busca utilizados actualmente"
  635. #: searx/templates/simple/preferences.html:235
  636. msgid "Special Queries"
  637. msgstr "Consultas especiais"
  638. #: searx/templates/simple/preferences.html:241
  639. msgid "Cookies"
  640. msgstr "Rastros"
  641. #: searx/templates/simple/results.html:23
  642. msgid "Answers"
  643. msgstr "Respostas"
  644. #: searx/templates/simple/results.html:42
  645. msgid "Number of results"
  646. msgstr "Número de resultados"
  647. #: searx/templates/simple/results.html:48
  648. msgid "Info"
  649. msgstr "Info"
  650. #: searx/templates/simple/results.html:75
  651. msgid "Try searching for:"
  652. msgstr "Intenta buscar:"
  653. #: searx/templates/simple/results.html:107
  654. msgid "Back to top"
  655. msgstr "Ir arriba"
  656. #: searx/templates/simple/results.html:125
  657. msgid "Previous page"
  658. msgstr "Páxina anterior"
  659. #: searx/templates/simple/results.html:143
  660. msgid "Next page"
  661. msgstr "Páxina seguinte"
  662. #: searx/templates/simple/search.html:3
  663. msgid "Display the front page"
  664. msgstr "Mostrar páxina de inicio"
  665. #: searx/templates/simple/search.html:9
  666. #: searx/templates/simple/simple_search.html:5
  667. msgid "Search for..."
  668. msgstr "Buscar por..."
  669. #: searx/templates/simple/search.html:10
  670. #: searx/templates/simple/simple_search.html:6
  671. msgid "clear"
  672. msgstr "limpar"
  673. #: searx/templates/simple/search.html:11
  674. #: searx/templates/simple/simple_search.html:7
  675. msgid "search"
  676. msgstr "buscar"
  677. #: searx/templates/simple/stats.html:21
  678. msgid "There is currently no data available. "
  679. msgstr "Non hai datos dispoñibles. "
  680. #: searx/templates/simple/preferences/engines.html:24
  681. #: searx/templates/simple/stats.html:25
  682. msgid "Engine name"
  683. msgstr "Nome do motor"
  684. #: searx/templates/simple/stats.html:26
  685. msgid "Scores"
  686. msgstr "Puntuacións"
  687. #: searx/templates/simple/stats.html:27
  688. msgid "Result count"
  689. msgstr "Número de resultados"
  690. #: searx/templates/simple/elements/engines_msg.html:7
  691. #: searx/templates/simple/preferences/engines.html:31
  692. #: searx/templates/simple/stats.html:28
  693. msgid "Response time"
  694. msgstr "Tempo de resposta"
  695. #: searx/templates/simple/preferences/engines.html:35
  696. #: searx/templates/simple/stats.html:29
  697. msgid "Reliability"
  698. msgstr "Fiabilidade"
  699. #: searx/templates/simple/stats.html:59
  700. msgid "Total"
  701. msgstr "Total"
  702. #: searx/templates/simple/stats.html:60
  703. msgid "HTTP"
  704. msgstr "HTTP"
  705. #: searx/templates/simple/stats.html:61
  706. msgid "Processing"
  707. msgstr "Procesando"
  708. #: searx/templates/simple/stats.html:99
  709. msgid "Warnings"
  710. msgstr "Avisos"
  711. #: searx/templates/simple/stats.html:99
  712. msgid "Errors and exceptions"
  713. msgstr "Erros e excepcións"
  714. #: searx/templates/simple/stats.html:105
  715. msgid "Exception"
  716. msgstr "Excepción"
  717. #: searx/templates/simple/stats.html:107
  718. msgid "Message"
  719. msgstr "Mensaxe"
  720. #: searx/templates/simple/stats.html:109
  721. msgid "Percentage"
  722. msgstr "Porcentaxe"
  723. #: searx/templates/simple/stats.html:111
  724. msgid "Parameter"
  725. msgstr "Parámetro"
  726. #: searx/templates/simple/result_templates/files.html:36
  727. #: searx/templates/simple/stats.html:119
  728. msgid "Filename"
  729. msgstr "Nome de ficheiro"
  730. #: searx/templates/simple/stats.html:120
  731. msgid "Function"
  732. msgstr "Función"
  733. #: searx/templates/simple/stats.html:121
  734. msgid "Code"
  735. msgstr "Código"
  736. #: searx/templates/simple/stats.html:128
  737. msgid "Checker"
  738. msgstr "Verificador"
  739. #: searx/templates/simple/stats.html:131
  740. msgid "Failed test"
  741. msgstr "Test con fallo"
  742. #: searx/templates/simple/stats.html:132
  743. msgid "Comment(s)"
  744. msgstr "Comentario(s)"
  745. #: searx/templates/simple/elements/apis.html:3
  746. msgid "Download results"
  747. msgstr "Descargar resultados"
  748. #: searx/templates/simple/elements/engines_msg.html:4
  749. msgid "Messages from the search engines"
  750. msgstr "Mensaxes desde os motores de busca"
  751. #: searx/templates/simple/elements/engines_msg.html:7
  752. msgid "seconds"
  753. msgstr "segundos"
  754. #: searx/templates/simple/elements/search_url.html:3
  755. msgid "Search URL"
  756. msgstr "URL da busca"
  757. #: searx/templates/simple/elements/search_url.html:4
  758. #: searx/templates/simple/preferences/cookies.html:54
  759. msgid "Copied"
  760. msgstr "Copiado"
  761. #: searx/templates/simple/elements/search_url.html:4
  762. #: searx/templates/simple/preferences/cookies.html:54
  763. msgid "Copy"
  764. msgstr "Copiar"
  765. #: searx/templates/simple/elements/suggestions.html:3
  766. msgid "Suggestions"
  767. msgstr "Suxestións"
  768. #: searx/templates/simple/filters/languages.html:1
  769. #: searx/templates/simple/preferences/language.html:2
  770. msgid "Search language"
  771. msgstr "Idioma de busca"
  772. #: searx/templates/simple/filters/languages.html:4
  773. #: searx/templates/simple/preferences/language.html:7
  774. msgid "Default language"
  775. msgstr "Idioma por defecto"
  776. #: searx/templates/simple/filters/languages.html:8
  777. #: searx/templates/simple/preferences/language.html:11
  778. msgid "Auto-detect"
  779. msgstr "Autodetectar"
  780. #: searx/templates/simple/filters/safesearch.html:1
  781. #: searx/templates/simple/filters/safesearch.html:2
  782. #: searx/templates/simple/filters/safesearch.html:3
  783. #: searx/templates/simple/filters/safesearch.html:4
  784. #: searx/templates/simple/preferences/engines.html:27
  785. #: searx/templates/simple/preferences/safesearch.html:2
  786. msgid "SafeSearch"
  787. msgstr "Busca segura"
  788. #: searx/templates/simple/filters/safesearch.html:2
  789. #: searx/templates/simple/preferences/safesearch.html:7
  790. msgid "Strict"
  791. msgstr "Estrita"
  792. #: searx/templates/simple/filters/safesearch.html:3
  793. #: searx/templates/simple/preferences/safesearch.html:11
  794. msgid "Moderate"
  795. msgstr "Moderada"
  796. #: searx/templates/simple/filters/safesearch.html:4
  797. #: searx/templates/simple/preferences/safesearch.html:15
  798. msgid "None"
  799. msgstr "Ningunha"
  800. #: searx/templates/simple/filters/time_range.html:1
  801. #: searx/templates/simple/preferences/engines.html:28
  802. msgid "Time range"
  803. msgstr "Marco temporal"
  804. #: searx/templates/simple/filters/time_range.html:3
  805. msgid "Anytime"
  806. msgstr "Calquera momento"
  807. #: searx/templates/simple/filters/time_range.html:6
  808. msgid "Last day"
  809. msgstr "Último día"
  810. #: searx/templates/simple/filters/time_range.html:9
  811. msgid "Last week"
  812. msgstr "Última semana"
  813. #: searx/templates/simple/filters/time_range.html:12
  814. msgid "Last month"
  815. msgstr "Último mes"
  816. #: searx/templates/simple/filters/time_range.html:15
  817. msgid "Last year"
  818. msgstr "Último ano"
  819. #: searx/templates/simple/messages/no_cookies.html:3
  820. msgid "Information!"
  821. msgstr "Información!"
  822. #: searx/templates/simple/messages/no_cookies.html:4
  823. msgid "currently, there are no cookies defined."
  824. msgstr "actualmente non hai rastros establecidos."
  825. #: searx/templates/simple/messages/no_results.html:6
  826. msgid "Sorry!"
  827. msgstr "Lamentámolo!"
  828. #: searx/templates/simple/messages/no_results.html:12
  829. msgid "No results were found. You can try to:"
  830. msgstr "Non hai resultados. Podes probar:"
  831. #: searx/templates/simple/messages/no_results.html:14
  832. msgid "There are no more results. You can try to:"
  833. msgstr "Non hai máis resultados. Intenta:"
  834. #: searx/templates/simple/messages/no_results.html:19
  835. msgid "Refresh the page."
  836. msgstr "Actualizar a páxina."
  837. #: searx/templates/simple/messages/no_results.html:20
  838. msgid "Search for another query or select another category (above)."
  839. msgstr "Facer outra consulta ou escoller outra categoría (das de arriba)."
  840. #: searx/templates/simple/messages/no_results.html:21
  841. msgid "Change the search engine used in the preferences:"
  842. msgstr "Cambiar o motor de busca establecido nos axustes:"
  843. #: searx/templates/simple/messages/no_results.html:22
  844. msgid "Switch to another instance:"
  845. msgstr "Cambiar a outra instancia:"
  846. #: searx/templates/simple/messages/no_results.html:24
  847. msgid "Search for another query or select another category."
  848. msgstr "Facer unha nova consulta ou seleccionar outra categoría."
  849. #: searx/templates/simple/messages/no_results.html:25
  850. msgid "Go back to the previous page using the previous page button."
  851. msgstr "Volver á páxina anterior usando o botón de páxina anterior."
  852. #: searx/templates/simple/preferences/answerers.html:4
  853. #: searx/templates/simple/preferences/engines.html:23
  854. msgid "Allow"
  855. msgstr "Permitir"
  856. #: searx/templates/simple/preferences/answerers.html:5
  857. msgid "Keywords"
  858. msgstr "Palabras chave"
  859. #: searx/templates/simple/preferences/answerers.html:6
  860. #: searx/templates/simple/result_templates/packages.html:7
  861. msgid "Name"
  862. msgstr "Nome"
  863. #: searx/templates/simple/preferences/answerers.html:7
  864. msgid "Description"
  865. msgstr "Descrición"
  866. #: searx/templates/simple/preferences/answerers.html:8
  867. msgid "Examples"
  868. msgstr "Exemplos"
  869. #: searx/templates/simple/preferences/answerers.html:13
  870. msgid "This is the list of SearXNG's instant answering modules."
  871. msgstr "Esta é a lista de módulos de respostas instantáneas de SearXNG."
  872. #: searx/templates/simple/preferences/answerers.html:29
  873. msgid "This is the list of plugins."
  874. msgstr "Esta é a lista de complementos."
  875. #: searx/templates/simple/preferences/autocomplete.html:2
  876. msgid "Autocomplete"
  877. msgstr "Autocompletar"
  878. #: searx/templates/simple/preferences/autocomplete.html:15
  879. msgid "Find stuff as you type"
  880. msgstr "Ir buscando metras escribes"
  881. #: searx/templates/simple/preferences/center_alignment.html:2
  882. msgid "Center Alignment"
  883. msgstr "Situar no centro"
  884. #: searx/templates/simple/preferences/center_alignment.html:14
  885. msgid "Displays results in the center of the page (Oscar layout)."
  886. msgstr "Mostra os resultados no centro da páxina (interface Oscar)."
  887. #: searx/templates/simple/preferences/cookies.html:2
  888. msgid ""
  889. "This is the list of cookies and their values SearXNG is storing on your "
  890. "computer."
  891. msgstr ""
  892. "Esta é a lista de rastros que SearXNG garda na túa computadora xunto cos "
  893. "seus valores."
  894. #: searx/templates/simple/preferences/cookies.html:3
  895. msgid "With that list, you can assess SearXNG transparency."
  896. msgstr "Con esta lista podes dar conta da transparencia de SearXNG."
  897. #: searx/templates/simple/preferences/cookies.html:9
  898. msgid "Cookie name"
  899. msgstr "Nome do rastro"
  900. #: searx/templates/simple/preferences/cookies.html:10
  901. msgid "Value"
  902. msgstr "Valor"
  903. #: searx/templates/simple/preferences/cookies.html:23
  904. msgid "Search URL of the currently saved preferences"
  905. msgstr "URL de Busca dos axustes gardados actualmente"
  906. #: searx/templates/simple/preferences/cookies.html:32
  907. msgid ""
  908. "Note: specifying custom settings in the search URL can reduce privacy by "
  909. "leaking data to the clicked result sites."
  910. msgstr ""
  911. "Nota: establecer axustes personalizados no URL de busca pode reducir a "
  912. "túa privacidade ao filtrar datos aos sitios web dos resultados."
  913. #: searx/templates/simple/preferences/cookies.html:35
  914. msgid "URL to restore your preferences in another browser"
  915. msgstr "URL para restablecer as túas preferencias noutro navegador"
  916. #: searx/templates/simple/preferences/cookies.html:43
  917. msgid ""
  918. "Specifying custom settings in the preferences URL can be used to sync "
  919. "preferences across devices."
  920. msgstr ""
  921. "Cos axustes personalizados gardados nun URL coas preferencias podes "
  922. "utilizalo para sincronizalas entre dispositivos."
  923. #: searx/templates/simple/preferences/cookies.html:46
  924. msgid "Copy preferences hash"
  925. msgstr "Copiar suma de comprobación dos axustes"
  926. #: searx/templates/simple/preferences/cookies.html:57
  927. msgid "Insert copied preferences hash (without URL) to restore"
  928. msgstr ""
  929. "Escribe a suma de comprobación copiada das preferencias (sen URL) para "
  930. "restablecer"
  931. #: searx/templates/simple/preferences/cookies.html:59
  932. msgid "Preferences hash"
  933. msgstr "Suma de comprobación das preferencias"
  934. #: searx/templates/simple/preferences/doi_resolver.html:2
  935. msgid "Open Access DOI resolver"
  936. msgstr "Resolutor Open Access DOI"
  937. #: searx/templates/simple/preferences/doi_resolver.html:14
  938. msgid "Select service used by DOI rewrite"
  939. msgstr "Elixe o servizo utilizado para rescribir DOI"
  940. #: searx/templates/simple/preferences/engines.html:9
  941. msgid ""
  942. "This tab does not exists in the user interface, but you can search in "
  943. "these engines by its !bangs."
  944. msgstr ""
  945. "Esta lapela non existe na interface de usuaria, mais podes buscar nestes "
  946. "buscadores grazas aos seus !bangs."
  947. #: searx/templates/simple/preferences/engines.html:15
  948. msgid "Enable all"
  949. msgstr "Activar todo"
  950. #: searx/templates/simple/preferences/engines.html:16
  951. msgid "Disable all"
  952. msgstr "Desactivar todo"
  953. #: searx/templates/simple/preferences/engines.html:25
  954. msgid "!bang"
  955. msgstr "!bang"
  956. #: searx/templates/simple/preferences/engines.html:26
  957. msgid "Supports selected language"
  958. msgstr "Soporta o idioma seleccionado"
  959. #: searx/templates/simple/preferences/engines.html:29
  960. msgid "Weight"
  961. msgstr "Peso"
  962. #: searx/templates/simple/preferences/engines.html:33
  963. msgid "Max time"
  964. msgstr "Tempo máx"
  965. #: searx/templates/simple/preferences/favicon.html:2
  966. msgid "Favicon Resolver"
  967. msgstr "Orixe da icona da web"
  968. #: searx/templates/simple/preferences/favicon.html:15
  969. msgid "Display favicons near search results"
  970. msgstr "Mostrar icona da web preto do resultado da busca"
  971. #: searx/templates/simple/preferences/footer.html:2
  972. msgid ""
  973. "These settings are stored in your cookies, this allows us not to store "
  974. "this data about you."
  975. msgstr ""
  976. "Estes axustes gárdanse en rastros, así non temos que almacenar ningún "
  977. "dato sobre ti."
  978. #: searx/templates/simple/preferences/footer.html:3
  979. msgid ""
  980. "These cookies serve your sole convenience, we don't use these cookies to "
  981. "track you."
  982. msgstr ""
  983. "Estes rastros son para a túa conveniencia, non utilizamos os rastros para"
  984. " rastrexarte."
  985. #: searx/templates/simple/preferences/footer.html:6
  986. msgid "Save"
  987. msgstr "Gardar"
  988. #: searx/templates/simple/preferences/footer.html:9
  989. msgid "Reset defaults"
  990. msgstr "Restablecer"
  991. #: searx/templates/simple/preferences/footer.html:13
  992. msgid "Back"
  993. msgstr "Volver"
  994. #: searx/templates/simple/preferences/hotkeys.html:2
  995. msgid "Hotkeys"
  996. msgstr "Atallos"
  997. #: searx/templates/simple/preferences/hotkeys.html:13
  998. msgid "Vim-like"
  999. msgstr "Estilo-Vim"
  1000. #: searx/templates/simple/preferences/hotkeys.html:18
  1001. msgid ""
  1002. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1003. "key on main or result page to get help."
  1004. msgstr ""
  1005. "Navega entre os resultdos cos atallos (require JavaScript). Preme tecla "
  1006. "\"h\" na páxina de resultados para obter axuda."
  1007. #: searx/templates/simple/preferences/image_proxy.html:2
  1008. msgid "Image proxy"
  1009. msgstr "Proxy de imaxes"
  1010. #: searx/templates/simple/preferences/image_proxy.html:14
  1011. msgid "Proxying image results through SearXNG"
  1012. msgstr "Usar o proxy de SearXNG para resultados das imaxes"
  1013. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1014. msgid "Infinite scroll"
  1015. msgstr "Desprazamento infinito"
  1016. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1017. msgid "Automatically load next page when scrolling to bottom of current page"
  1018. msgstr ""
  1019. "Cargar automáticamente a seguinte páxina ó desprazarse ó fondo da páxina "
  1020. "actual"
  1021. #: searx/templates/simple/preferences/language.html:24
  1022. msgid "What language do you prefer for search?"
  1023. msgstr "Que idioma prefires para buscar?"
  1024. #: searx/templates/simple/preferences/language.html:25
  1025. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1026. msgstr ""
  1027. "Elixe Autodetectar para deixar que SearXNG detecte o idioma da túa "
  1028. "consulta."
  1029. #: searx/templates/simple/preferences/method.html:2
  1030. msgid "HTTP Method"
  1031. msgstr "Método HTTP"
  1032. #: searx/templates/simple/preferences/method.html:14
  1033. msgid "Change how forms are submitted"
  1034. msgstr "Cambiar o xeito en que se envían formularios"
  1035. #: searx/templates/simple/preferences/query_in_title.html:2
  1036. msgid "Query in the page's title"
  1037. msgstr "Consulta no título da páxina"
  1038. #: searx/templates/simple/preferences/query_in_title.html:14
  1039. msgid ""
  1040. "When enabled, the result page's title contains your query. Your browser "
  1041. "can record this title"
  1042. msgstr ""
  1043. "Se está activado, o título da páxina de resultados contén a túa consulta."
  1044. " O navegador pode rexistrar este título"
  1045. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1046. msgid "Results on new tabs"
  1047. msgstr "Resultados en novas lapelas"
  1048. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1049. msgid "Open result links on new browser tabs"
  1050. msgstr "Abrir ligazóns de resultados en novas lapelas do navegador"
  1051. #: searx/templates/simple/preferences/safesearch.html:20
  1052. msgid "Filter content"
  1053. msgstr "Filtro de contido"
  1054. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1055. msgid "Search on category select"
  1056. msgstr "Busca en categoría seleccionada"
  1057. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1058. msgid ""
  1059. "Perform search immediately if a category selected. Disable to select "
  1060. "multiple categories"
  1061. msgstr ""
  1062. "Buscar inmediatamente se hai unha categoría seleccionada. Desactiva para "
  1063. "elixir varias categorías"
  1064. #: searx/templates/simple/preferences/theme.html:2
  1065. msgid "Theme"
  1066. msgstr "Decorado"
  1067. #: searx/templates/simple/preferences/theme.html:14
  1068. msgid "Change SearXNG layout"
  1069. msgstr "Cambiar a interface de SearXNG"
  1070. #: searx/templates/simple/preferences/theme.html:19
  1071. msgid "Theme style"
  1072. msgstr "Estilo do decorado"
  1073. #: searx/templates/simple/preferences/theme.html:31
  1074. msgid "Choose auto to follow your browser settings"
  1075. msgstr "Elixe auto para que siga os axustes do navegador"
  1076. #: searx/templates/simple/preferences/tokens.html:2
  1077. msgid "Engine tokens"
  1078. msgstr "Tokens do buscador"
  1079. #: searx/templates/simple/preferences/tokens.html:9
  1080. msgid "Access tokens for private engines"
  1081. msgstr "Tokens de acceso para buscadores privados"
  1082. #: searx/templates/simple/preferences/ui_locale.html:2
  1083. msgid "Interface language"
  1084. msgstr "Idioma da interface"
  1085. #: searx/templates/simple/preferences/ui_locale.html:14
  1086. msgid "Change the language of the layout"
  1087. msgstr "Cambiar o idioma da interface"
  1088. #: searx/templates/simple/preferences/urlformatting.html:2
  1089. msgid "URL formatting"
  1090. msgstr "Dar formato ao URL"
  1091. #: searx/templates/simple/preferences/urlformatting.html:8
  1092. msgid "Pretty"
  1093. msgstr "Embelecer"
  1094. #: searx/templates/simple/preferences/urlformatting.html:13
  1095. msgid "Full"
  1096. msgstr "Completo"
  1097. #: searx/templates/simple/preferences/urlformatting.html:18
  1098. msgid "Host"
  1099. msgstr "Servidor"
  1100. #: searx/templates/simple/preferences/urlformatting.html:23
  1101. msgid "Change result URL formatting"
  1102. msgstr "Cambiar o formato do URL do resultado"
  1103. #: searx/templates/simple/result_templates/code.html:13
  1104. msgid "repo"
  1105. msgstr "repo"
  1106. #: searx/templates/simple/result_templates/default.html:6
  1107. #: searx/templates/simple/result_templates/files.html:8
  1108. #: searx/templates/simple/result_templates/files.html:11
  1109. msgid "show media"
  1110. msgstr "mostrar medios"
  1111. #: searx/templates/simple/result_templates/default.html:6
  1112. #: searx/templates/simple/result_templates/files.html:8
  1113. msgid "hide media"
  1114. msgstr "agochar medios"
  1115. #: searx/templates/simple/result_templates/default.html:14
  1116. #: searx/templates/simple/result_templates/videos.html:14
  1117. msgid "This site did not provide any description."
  1118. msgstr "A web non proporcionou unha descrición."
  1119. #: searx/templates/simple/result_templates/files.html:38
  1120. #: searx/templates/simple/result_templates/images.html:22
  1121. #: searx/templates/simple/result_templates/torrent.html:11
  1122. msgid "Filesize"
  1123. msgstr "Tamaño do ficheiro"
  1124. #: searx/templates/simple/result_templates/files.html:40
  1125. msgid "Date"
  1126. msgstr "Data"
  1127. #: searx/templates/simple/result_templates/files.html:42
  1128. #: searx/templates/simple/result_templates/paper.html:24
  1129. msgid "Type"
  1130. msgstr "Tipo"
  1131. #: searx/templates/simple/result_templates/images.html:20
  1132. msgid "Resolution"
  1133. msgstr "Resolución"
  1134. #: searx/templates/simple/result_templates/images.html:21
  1135. msgid "Format"
  1136. msgstr "Formato"
  1137. #: searx/templates/simple/result_templates/images.html:24
  1138. msgid "Engine"
  1139. msgstr "Motor"
  1140. #: searx/templates/simple/result_templates/images.html:25
  1141. msgid "View source"
  1142. msgstr "Ver fonte"
  1143. #: searx/templates/simple/result_templates/map.html:12
  1144. msgid "address"
  1145. msgstr "enderezo"
  1146. #: searx/templates/simple/result_templates/map.html:43
  1147. msgid "show map"
  1148. msgstr "mostrar mapa"
  1149. #: searx/templates/simple/result_templates/map.html:43
  1150. msgid "hide map"
  1151. msgstr "agochar mapa"
  1152. #: searx/templates/simple/result_templates/packages.html:12
  1153. msgid "Version"
  1154. msgstr "Versión"
  1155. #: searx/templates/simple/result_templates/packages.html:18
  1156. msgid "Maintainer"
  1157. msgstr "Mantemento"
  1158. #: searx/templates/simple/result_templates/packages.html:24
  1159. msgid "Updated at"
  1160. msgstr "Actualizado o"
  1161. #: searx/templates/simple/result_templates/packages.html:30
  1162. #: searx/templates/simple/result_templates/paper.html:25
  1163. msgid "Tags"
  1164. msgstr "Etiquetas"
  1165. #: searx/templates/simple/result_templates/packages.html:36
  1166. msgid "Popularity"
  1167. msgstr "Popularidade"
  1168. #: searx/templates/simple/result_templates/packages.html:42
  1169. msgid "License"
  1170. msgstr "Licenza"
  1171. #: searx/templates/simple/result_templates/packages.html:52
  1172. msgid "Project"
  1173. msgstr "Proxecto"
  1174. #: searx/templates/simple/result_templates/packages.html:55
  1175. msgid "Project homepage"
  1176. msgstr "Páxina web do proxecto"
  1177. #: searx/templates/simple/result_templates/paper.html:5
  1178. msgid "Published date"
  1179. msgstr "Data de publicación"
  1180. #: searx/templates/simple/result_templates/paper.html:9
  1181. msgid "Journal"
  1182. msgstr "Xornal"
  1183. #: searx/templates/simple/result_templates/paper.html:22
  1184. msgid "Editor"
  1185. msgstr "Edición"
  1186. #: searx/templates/simple/result_templates/paper.html:23
  1187. msgid "Publisher"
  1188. msgstr "Editorial"
  1189. #: searx/templates/simple/result_templates/paper.html:26
  1190. msgid "DOI"
  1191. msgstr "DOI"
  1192. #: searx/templates/simple/result_templates/paper.html:27
  1193. msgid "ISSN"
  1194. msgstr "ISSN"
  1195. #: searx/templates/simple/result_templates/paper.html:28
  1196. msgid "ISBN"
  1197. msgstr "ISBN"
  1198. #: searx/templates/simple/result_templates/paper.html:33
  1199. msgid "PDF"
  1200. msgstr "PDF"
  1201. #: searx/templates/simple/result_templates/paper.html:34
  1202. msgid "HTML"
  1203. msgstr "HTML"
  1204. #: searx/templates/simple/result_templates/torrent.html:6
  1205. msgid "magnet link"
  1206. msgstr "ligazón magnet"
  1207. #: searx/templates/simple/result_templates/torrent.html:7
  1208. msgid "torrent file"
  1209. msgstr "ficheiro torrent"
  1210. #: searx/templates/simple/result_templates/torrent.html:9
  1211. msgid "Seeder"
  1212. msgstr "Sementadora"
  1213. #: searx/templates/simple/result_templates/torrent.html:9
  1214. msgid "Leecher"
  1215. msgstr "Cliente"
  1216. #: searx/templates/simple/result_templates/torrent.html:13
  1217. msgid "Number of Files"
  1218. msgstr "Número de ficheiros"
  1219. #: searx/templates/simple/result_templates/videos.html:6
  1220. msgid "show video"
  1221. msgstr "mostrar vídeo"
  1222. #: searx/templates/simple/result_templates/videos.html:6
  1223. msgid "hide video"
  1224. msgstr "agochar vídeo"
  1225. #~ msgid "Engine time (sec)"
  1226. #~ msgstr "Tempo de busca (seg)"
  1227. #~ msgid "Page loads (sec)"
  1228. #~ msgstr "Cargou en (seg)"
  1229. #~ msgid "Errors"
  1230. #~ msgstr "Fallos"
  1231. #~ msgid "CAPTCHA required"
  1232. #~ msgstr "CAPTCHA requerido"
  1233. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1234. #~ msgstr "Reescribir ligazóns HTTP a HTTPS se fose posible"
  1235. #~ msgid ""
  1236. #~ "Results are opened in the same "
  1237. #~ "window by default. This plugin "
  1238. #~ "overwrites the default behaviour to open"
  1239. #~ " links on new tabs/windows. (JavaScript "
  1240. #~ "required)"
  1241. #~ msgstr ""
  1242. #~ "Por omisión, os resultados ábrense na"
  1243. #~ " mesma lapela. Este engadido sobreescribe"
  1244. #~ " o comportamento por omisión para "
  1245. #~ "abrir as ligazóns en novas "
  1246. #~ "lapelas/ventás. (Require JavaScript)"
  1247. #~ msgid "Color"
  1248. #~ msgstr "Cor"
  1249. #~ msgid "Blue (default)"
  1250. #~ msgstr "Azul (por omisión)"
  1251. #~ msgid "Violet"
  1252. #~ msgstr "Violeta"
  1253. #~ msgid "Green"
  1254. #~ msgstr "Verde"
  1255. #~ msgid "Cyan"
  1256. #~ msgstr "Cian"
  1257. #~ msgid "Orange"
  1258. #~ msgstr "Laranxa"
  1259. #~ msgid "Red"
  1260. #~ msgstr "Vermello"
  1261. #~ msgid "Category"
  1262. #~ msgstr "Categoría"
  1263. #~ msgid "Block"
  1264. #~ msgstr "Bloquear"
  1265. #~ msgid "original context"
  1266. #~ msgstr "contexto orixinal"
  1267. #~ msgid "Plugins"
  1268. #~ msgstr "Engadidos"
  1269. #~ msgid "Answerers"
  1270. #~ msgstr "Respostas"
  1271. #~ msgid "Avg. time"
  1272. #~ msgstr "Tempo medio"
  1273. #~ msgid "show details"
  1274. #~ msgstr "mostrar detalles"
  1275. #~ msgid "hide details"
  1276. #~ msgstr "agochar detalles"
  1277. #~ msgid "Load more..."
  1278. #~ msgstr "Cargar máis..."
  1279. #~ msgid "Loading..."
  1280. #~ msgstr "Cargando..."
  1281. #~ msgid "Change searx layout"
  1282. #~ msgstr "Cambiar a disposición de searx"
  1283. #~ msgid "Proxying image results through searx"
  1284. #~ msgstr "Utilizar o proxy de searx para as imaxes dos resultados"
  1285. #~ msgid "This is the list of searx's instant answering modules."
  1286. #~ msgstr "Este é o listado dos módulos de respostas instantáneas de searx"
  1287. #~ msgid ""
  1288. #~ "This is the list of cookies and"
  1289. #~ " their values searx is storing on "
  1290. #~ "your computer."
  1291. #~ msgstr ""
  1292. #~ "Este é o listados dos testemuños e"
  1293. #~ " os seus valores que searx almacena"
  1294. #~ " na túa computadora."
  1295. #~ msgid "With that list, you can assess searx transparency."
  1296. #~ msgstr "Con esta lista podes comprobar a transparencia de searx."
  1297. #~ msgid "It look like you are using searx first time."
  1298. #~ msgstr "Semella que é a primeira vez que utilizas searx."
  1299. #~ msgid "Please, try again later or find another searx instance."
  1300. #~ msgstr "Por favor, inténtao máis tarde ou busca outra instancia de searx."
  1301. #~ msgid "Themes"
  1302. #~ msgstr "Decorados"
  1303. #~ msgid "Reliablity"
  1304. #~ msgstr ""
  1305. #~ msgid ""
  1306. #~ "When enabled, the result page's title"
  1307. #~ " contains your query. Your browser "
  1308. #~ "can record this title."
  1309. #~ msgstr ""
  1310. #~ msgid "Method"
  1311. #~ msgstr "Método"
  1312. #~ msgid ""
  1313. #~ "This tab does not show up for "
  1314. #~ "search results but you can search "
  1315. #~ "the engines listed here via bangs."
  1316. #~ msgstr ""
  1317. #~ msgid "Advanced settings"
  1318. #~ msgstr "Axustes avanzados"
  1319. #~ msgid "Close"
  1320. #~ msgstr "Pechar"
  1321. #~ msgid "Language"
  1322. #~ msgstr "Idioma"
  1323. #~ msgid "broken"
  1324. #~ msgstr ""
  1325. #~ msgid "supported"
  1326. #~ msgstr "soportado"
  1327. #~ msgid "not supported"
  1328. #~ msgstr "non soportado"
  1329. #~ msgid "about"
  1330. #~ msgstr "Acerca de"
  1331. #~ msgid "Avg."
  1332. #~ msgstr ""
  1333. #~ msgid "User Interface"
  1334. #~ msgstr ""
  1335. #~ msgid "Choose style for this theme"
  1336. #~ msgstr "Escolle o estilo para este decorado"
  1337. #~ msgid "Style"
  1338. #~ msgstr "Estilo"
  1339. #~ msgid "Show advanced settings"
  1340. #~ msgstr ""
  1341. #~ msgid "Show advanced settings panel in the home page by default"
  1342. #~ msgstr ""
  1343. #~ msgid "Allow all"
  1344. #~ msgstr "Permitir todo"
  1345. #~ msgid "Disable all"
  1346. #~ msgstr "Desactivar todo"
  1347. #~ msgid "Selected language"
  1348. #~ msgstr "Idioma seleccionado"
  1349. #~ msgid "Query"
  1350. #~ msgstr ""
  1351. #~ msgid "save"
  1352. #~ msgstr "gardar"
  1353. #~ msgid "back"
  1354. #~ msgstr "atrás"
  1355. #~ msgid "Links"
  1356. #~ msgstr "Ligazóns"
  1357. #~ msgid "RSS subscription"
  1358. #~ msgstr "Subscrición RSS"
  1359. #~ msgid "Search results"
  1360. #~ msgstr "Resultados da busca"
  1361. #~ msgid "next page"
  1362. #~ msgstr "páxina seguinte"
  1363. #~ msgid "previous page"
  1364. #~ msgstr "páxina anterior"
  1365. #~ msgid "Start search"
  1366. #~ msgstr "Iniciar busca"
  1367. #~ msgid "Clear search"
  1368. #~ msgstr "Baleirar busca"
  1369. #~ msgid "Clear"
  1370. #~ msgstr "Baleirar"
  1371. #~ msgid "stats"
  1372. #~ msgstr "estatísticas"
  1373. #~ msgid "Heads up!"
  1374. #~ msgstr "Heads up!"
  1375. #~ msgid "It look like you are using SearXNG first time."
  1376. #~ msgstr ""
  1377. #~ msgid "Well done!"
  1378. #~ msgstr "Ben feito!"
  1379. #~ msgid "Settings saved successfully."
  1380. #~ msgstr "Gardáronse correctamente os Axustes."
  1381. #~ msgid "Oh snap!"
  1382. #~ msgstr "Vaia!"
  1383. #~ msgid "Something went wrong."
  1384. #~ msgstr "Algo fallou."
  1385. #~ msgid "Date"
  1386. #~ msgstr ""
  1387. #~ msgid "Type"
  1388. #~ msgstr ""
  1389. #~ msgid "Get image"
  1390. #~ msgstr "Obter imaxe"
  1391. #~ msgid "Center Alignment"
  1392. #~ msgstr ""
  1393. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1394. #~ msgstr ""
  1395. #~ msgid "preferences"
  1396. #~ msgstr "axustes"
  1397. #~ msgid "Scores per result"
  1398. #~ msgstr "Puntuacións por resultado"
  1399. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1400. #~ msgstr "un metabuscador configurable que respecta a túa privacidade"
  1401. #~ msgid "No abstract is available for this publication."
  1402. #~ msgstr "Non hai dispoñible un extracto para esta publicación."
  1403. #~ msgid "Self Informations"
  1404. #~ msgstr "Información propia"
  1405. #~ msgid ""
  1406. #~ "Change how forms are submited, <a "
  1407. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1408. #~ " rel=\"external\">learn more about request "
  1409. #~ "methods</a>"
  1410. #~ msgstr ""
  1411. #~ "Cambiar cómo se envían os formularios,"
  1412. #~ " <a "
  1413. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1414. #~ " rel=\"external\">aprende máis sobre os "
  1415. #~ "métodos de consulta</a>"
  1416. #~ msgid ""
  1417. #~ "This plugin checks if the address "
  1418. #~ "of the request is a TOR exit "
  1419. #~ "node, and informs the user if it"
  1420. #~ " is, like check.torproject.org but from "
  1421. #~ "searxng."
  1422. #~ msgstr ""
  1423. #~ "Este complemento comproba se o enderezo"
  1424. #~ " da solicitude é un nodo de "
  1425. #~ "saída TOR, e informa ás usuarias "
  1426. #~ "se o é, como check.torproject.org pero"
  1427. #~ " desde searxng."
  1428. #~ msgid ""
  1429. #~ "The TOR exit node list "
  1430. #~ "(https://check.torproject.org/exit-addresses) is "
  1431. #~ "unreachable."
  1432. #~ msgstr ""
  1433. #~ "A lista dos nodos de saída TOR "
  1434. #~ "(https://check.torproject.org/exit-addresses) non é"
  1435. #~ " accesible."
  1436. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1437. #~ msgstr "Estás a usar TOR. O teu enderezo ip semella ser: {ip_address}."
  1438. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1439. #~ msgstr "Non estás a usar TOR. O teu enderezo IP semella ser: {ip_address}."
  1440. #~ msgid ""
  1441. #~ "The could not download the list of"
  1442. #~ " Tor exit-nodes from "
  1443. #~ "https://check.torproject.org/exit-addresses."
  1444. #~ msgstr ""
  1445. #~ "Non se puido descargar a lista de"
  1446. #~ " nodos de saída a Tor desde "
  1447. #~ "https://check.torproject.org/exit-addresses."
  1448. #~ msgid ""
  1449. #~ "You are using Tor. It looks like"
  1450. #~ " you have this external IP address:"
  1451. #~ " {ip_address}."
  1452. #~ msgstr ""
  1453. #~ "Estás a usar Tor. Este semella ser"
  1454. #~ " o teu enderezo IP externo: "
  1455. #~ "{ip_address}."
  1456. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1457. #~ msgstr "Non estás a usar Tor. Tes este enderezo IP externo: {ip_address}."
  1458. #~ msgid "Autodetect search language"
  1459. #~ msgstr "Detección automática do idioma"
  1460. #~ msgid "Automatically detect the query search language and switch to it."
  1461. #~ msgstr "Detectar automáticamente o idioma usado na busca e cambiar a el."
  1462. #~ msgid "others"
  1463. #~ msgstr "outros"
  1464. #~ msgid ""
  1465. #~ "This tab does not show up for "
  1466. #~ "search results, but you can search "
  1467. #~ "the engines listed here via bangs."
  1468. #~ msgstr ""
  1469. #~ "Esta lapela non é para os "
  1470. #~ "resultados, pero podesbuscar nos buscadores"
  1471. #~ " aquí mostrados a través de bangs."
  1472. #~ msgid "Shortcut"
  1473. #~ msgstr "Atallo"
  1474. #~ msgid "!bang"
  1475. #~ msgstr "!bang"
  1476. #~ msgid ""
  1477. #~ "This tab dues not exists in the"
  1478. #~ " user interface, but you can search"
  1479. #~ " in these engines by its !bangs."
  1480. #~ msgstr ""
  1481. #~ "Esta lapela non existe na interface "
  1482. #~ "da usuaria, pero podes buscar nestes "
  1483. #~ "buscadores grazas aos !bangs."
  1484. #~ msgid "Engines cannot retrieve results."
  1485. #~ msgstr "Os buscadores non poden obter resultados."
  1486. #~ msgid "Please, try again later or find another SearXNG instance."
  1487. #~ msgstr "Inténtao máis tarde ou busca noutra instancia de SearXNG."
  1488. #~ msgid ""
  1489. #~ "Redirect to open-access versions of "
  1490. #~ "publications when available (plugin required)"
  1491. #~ msgstr ""
  1492. #~ "Redireccionar a versións abertas das "
  1493. #~ "publicacións cando estén dispoñibles (require"
  1494. #~ " o engadido)"
  1495. #~ msgid "Bang"
  1496. #~ msgstr "Bang"
  1497. #~ msgid ""
  1498. #~ "Change how forms are submitted, <a "
  1499. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1500. #~ " rel=\"external\">learn more about request "
  1501. #~ "methods</a>"
  1502. #~ msgstr ""
  1503. #~ "Cambiar o xeito de enviar formularios,"
  1504. #~ " <a "
  1505. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1506. #~ " rel=\"external\">coñece máis sobre os "
  1507. #~ "métodos de solicitude</a>"
  1508. #~ msgid "On"
  1509. #~ msgstr "On"
  1510. #~ msgid "Off"
  1511. #~ msgstr "Off"
  1512. #~ msgid "Enabled"
  1513. #~ msgstr "Activado"
  1514. #~ msgid "Disabled"
  1515. #~ msgstr "Desactivado"
  1516. #~ msgid ""
  1517. #~ "Perform search immediately if a category"
  1518. #~ " selected. Disable to select multiple "
  1519. #~ "categories. (JavaScript required)"
  1520. #~ msgstr ""
  1521. #~ "Busca ó momento se hai unha "
  1522. #~ "categoría seleccionada. Desactivar para "
  1523. #~ "seleccionar múltiples categorías. (Require "
  1524. #~ "JavaScript)"
  1525. #~ msgid "Vim-like hotkeys"
  1526. #~ msgstr "Atallos como os de Vim"
  1527. #~ msgid ""
  1528. #~ "Navigate search results with Vim-like"
  1529. #~ " hotkeys (JavaScript required). Press \"h\""
  1530. #~ " key on main or result page to"
  1531. #~ " get help."
  1532. #~ msgstr ""
  1533. #~ "Navegar nos resultados da busca con "
  1534. #~ "atallos como os de Vim (require "
  1535. #~ "JavaScript). Preme \"h\" na pantalla "
  1536. #~ "principal ou de resultados para obter"
  1537. #~ " axuda."
  1538. #~ msgid ""
  1539. #~ "we didn't find any results. Please "
  1540. #~ "use another query or search in "
  1541. #~ "more categories."
  1542. #~ msgstr ""
  1543. #~ "non atopamos ningún resultado. Por "
  1544. #~ "favor, realiza outra consulta ou busca"
  1545. #~ " en máis categorías."
  1546. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1547. #~ msgstr ""
  1548. #~ "Reescribir o nome do servidor dos "
  1549. #~ "resultados ou eliminar resultados en "
  1550. #~ "función do nome do servidor"
  1551. #~ msgid "Bytes"
  1552. #~ msgstr "Bytes"
  1553. #~ msgid "kiB"
  1554. #~ msgstr "kiB"
  1555. #~ msgid "MiB"
  1556. #~ msgstr "MiB"
  1557. #~ msgid "GiB"
  1558. #~ msgstr "GiB"
  1559. #~ msgid "TiB"
  1560. #~ msgstr "TiB"
  1561. #~ msgid "Hostname replace"
  1562. #~ msgstr "Substituír servidor"
  1563. #~ msgid "Error!"
  1564. #~ msgstr "Fallo!"
  1565. #~ msgid "Engines cannot retrieve results"
  1566. #~ msgstr "Os buscadores non obtiveron resultados"
  1567. #~ msgid "Start submiting a new issue on GitHub"
  1568. #~ msgstr "Crea un novo informe en GitHub"
  1569. #~ msgid "dummy"
  1570. #~ msgstr ""