messages.po 50 KB

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