messages.po 59 KB

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