messages.po 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  1. # Basque translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # beriain, 2018
  7. # beriain, 2018-2019
  8. # beriain, 2020-2021
  9. # Txopi <txopi@ikusimakusi.eus>, 2016
  10. # beriain <soila@disroot.org>, 2022.
  11. # Markus Heiser <markus.heiser@darmarit.de>, 2023.
  12. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  13. # alexgabi <alexgabi@disroot.org>, 2023, 2024.
  14. # alexgabi <alexgabi@users.noreply.translate.codeberg.org>, 2024.
  15. msgid ""
  16. msgstr ""
  17. "Project-Id-Version: searx\n"
  18. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  19. "POT-Creation-Date: 2024-10-03 11:11+0000\n"
  20. "PO-Revision-Date: 2024-09-09 11:18+0000\n"
  21. "Last-Translator: alexgabi <alexgabi@users.noreply.translate.codeberg.org>"
  22. "\n"
  23. "Language: eu\n"
  24. "Language-Team: Basque "
  25. "<https://translate.codeberg.org/projects/searxng/searxng/eu/>\n"
  26. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  27. "MIME-Version: 1.0\n"
  28. "Content-Type: text/plain; charset=utf-8\n"
  29. "Content-Transfer-Encoding: 8bit\n"
  30. "Generated-By: Babel 2.16.0\n"
  31. #. CONSTANT_NAMES['NO_SUBGROUPING']
  32. #: searx/searxng.msg
  33. msgid "without further subgrouping"
  34. msgstr "Itzuli"
  35. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  36. #: searx/searxng.msg
  37. msgid "other"
  38. msgstr "beste bat"
  39. #. CATEGORY_NAMES['FILES']
  40. #: searx/searxng.msg
  41. msgid "files"
  42. msgstr "fitxategiak"
  43. #. CATEGORY_NAMES['GENERAL']
  44. #: searx/searxng.msg
  45. msgid "general"
  46. msgstr "orokorra"
  47. #. CATEGORY_NAMES['MUSIC']
  48. #: searx/searxng.msg
  49. msgid "music"
  50. msgstr "musika"
  51. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  52. #: searx/searxng.msg
  53. msgid "social media"
  54. msgstr "sare sozialak"
  55. #. CATEGORY_NAMES['IMAGES']
  56. #: searx/searxng.msg
  57. msgid "images"
  58. msgstr "irudiak"
  59. #. CATEGORY_NAMES['VIDEOS']
  60. #: searx/searxng.msg
  61. msgid "videos"
  62. msgstr "bideoak"
  63. #. CATEGORY_NAMES['RADIO']
  64. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  65. msgid "radio"
  66. msgstr "irratia"
  67. #. CATEGORY_NAMES['TV']
  68. #: searx/searxng.msg
  69. msgid "tv"
  70. msgstr "tb"
  71. #. CATEGORY_NAMES['IT']
  72. #: searx/searxng.msg
  73. msgid "it"
  74. msgstr "informatika"
  75. #. CATEGORY_NAMES['NEWS']
  76. #: searx/searxng.msg
  77. msgid "news"
  78. msgstr "berriak"
  79. #. CATEGORY_NAMES['MAP']
  80. #: searx/searxng.msg
  81. msgid "map"
  82. msgstr "mapa"
  83. #. CATEGORY_NAMES['ONIONS']
  84. #: searx/searxng.msg
  85. msgid "onions"
  86. msgstr "tipulak"
  87. #. CATEGORY_NAMES['SCIENCE']
  88. #: searx/searxng.msg
  89. msgid "science"
  90. msgstr "zientzia"
  91. #. CATEGORY_GROUPS['APPS']
  92. #: searx/searxng.msg
  93. msgid "apps"
  94. msgstr "aplikazioak"
  95. #. CATEGORY_GROUPS['DICTIONARIES']
  96. #: searx/searxng.msg
  97. msgid "dictionaries"
  98. msgstr "hiztegiak"
  99. #. CATEGORY_GROUPS['LYRICS']
  100. #: searx/searxng.msg
  101. msgid "lyrics"
  102. msgstr "letrak"
  103. #. CATEGORY_GROUPS['PACKAGES']
  104. #: searx/searxng.msg
  105. msgid "packages"
  106. msgstr "paketeak"
  107. #. CATEGORY_GROUPS['Q_A']
  108. #: searx/searxng.msg
  109. msgid "q&a"
  110. msgstr "Galdera eta erantzunak"
  111. #. CATEGORY_GROUPS['REPOS']
  112. #: searx/searxng.msg
  113. msgid "repos"
  114. msgstr "biltegiak"
  115. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  116. #: searx/searxng.msg
  117. msgid "software wikis"
  118. msgstr "software wikiak"
  119. #. CATEGORY_GROUPS['WEB']
  120. #: searx/searxng.msg
  121. msgid "web"
  122. msgstr "web"
  123. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  124. #: searx/searxng.msg
  125. msgid "scientific publications"
  126. msgstr "argitalpen zientifikoak"
  127. #. STYLE_NAMES['AUTO']
  128. #: searx/searxng.msg
  129. msgid "auto"
  130. msgstr "automatikoa"
  131. #. STYLE_NAMES['LIGHT']
  132. #: searx/searxng.msg
  133. msgid "light"
  134. msgstr "argia"
  135. #. STYLE_NAMES['DARK']
  136. #: searx/searxng.msg
  137. msgid "dark"
  138. msgstr "iluna"
  139. #. STYLE_NAMES['BLACK']
  140. #: searx/searxng.msg
  141. msgid "black"
  142. msgstr ""
  143. #. BRAND_CUSTOM_LINKS['UPTIME']
  144. #: searx/searxng.msg
  145. msgid "Uptime"
  146. msgstr "Epea"
  147. #. BRAND_CUSTOM_LINKS['ABOUT']
  148. #: searx/searxng.msg searx/templates/simple/base.html:50
  149. msgid "About"
  150. msgstr "Honi buruz"
  151. #. WEATHER_TERMS['AVERAGE TEMP.']
  152. #: searx/engines/wttr.py:32 searx/searxng.msg
  153. msgid "Average temp."
  154. msgstr "Batez besteko tenp."
  155. #. WEATHER_TERMS['CLOUD COVER']
  156. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  157. msgid "Cloud cover"
  158. msgstr "Lainotua"
  159. #. WEATHER_TERMS['CONDITION']
  160. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  161. #: searx/searxng.msg
  162. msgid "Condition"
  163. msgstr "Baldintza"
  164. #. WEATHER_TERMS['CURRENT CONDITION']
  165. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  166. #: searx/searxng.msg
  167. msgid "Current condition"
  168. msgstr "Uneko baldintza"
  169. #. WEATHER_TERMS['EVENING']
  170. #: searx/engines/wttr.py:100 searx/searxng.msg
  171. msgid "Evening"
  172. msgstr "Arratsaldean"
  173. #. WEATHER_TERMS['FEELS LIKE']
  174. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  175. #: searx/engines/wttr.py:59 searx/searxng.msg
  176. msgid "Feels like"
  177. msgstr "Gustura sentitzen da"
  178. #. WEATHER_TERMS['HUMIDITY']
  179. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  180. #: searx/engines/wttr.py:68 searx/searxng.msg
  181. msgid "Humidity"
  182. msgstr "Hezetasuna"
  183. #. WEATHER_TERMS['MAX TEMP.']
  184. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  185. #: searx/searxng.msg
  186. msgid "Max temp."
  187. msgstr "Gehienezko tenp."
  188. #. WEATHER_TERMS['MIN TEMP.']
  189. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  190. #: searx/searxng.msg
  191. msgid "Min temp."
  192. msgstr "Gutxienezko tenp."
  193. #. WEATHER_TERMS['MORNING']
  194. #: searx/engines/wttr.py:100 searx/searxng.msg
  195. msgid "Morning"
  196. msgstr "Goizean"
  197. #. WEATHER_TERMS['NIGHT']
  198. #: searx/engines/wttr.py:100 searx/searxng.msg
  199. msgid "Night"
  200. msgstr "Gauean"
  201. #. WEATHER_TERMS['NOON']
  202. #: searx/engines/wttr.py:100 searx/searxng.msg
  203. msgid "Noon"
  204. msgstr "Eguerdian"
  205. #. WEATHER_TERMS['PRESSURE']
  206. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  207. msgid "Pressure"
  208. msgstr "Presioa"
  209. #. WEATHER_TERMS['SUNRISE']
  210. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  211. #: searx/searxng.msg
  212. msgid "Sunrise"
  213. msgstr "Egunsentia"
  214. #. WEATHER_TERMS['SUNSET']
  215. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  216. #: searx/searxng.msg
  217. msgid "Sunset"
  218. msgstr "Ilunabarra"
  219. #. WEATHER_TERMS['TEMPERATURE']
  220. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  221. #: searx/engines/wttr.py:55 searx/searxng.msg
  222. msgid "Temperature"
  223. msgstr "Tenperatura"
  224. #. WEATHER_TERMS['UV INDEX']
  225. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  226. #: searx/searxng.msg
  227. msgid "UV index"
  228. msgstr "UV indizea"
  229. #. WEATHER_TERMS['VISIBILITY']
  230. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  231. #: searx/searxng.msg
  232. msgid "Visibility"
  233. msgstr "Ikusgarritasuna"
  234. #. WEATHER_TERMS['WIND']
  235. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  236. #: searx/engines/wttr.py:62 searx/searxng.msg
  237. msgid "Wind"
  238. msgstr "Haizea"
  239. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  240. #: searx/engines/lemmy.py:85 searx/searxng.msg
  241. msgid "subscribers"
  242. msgstr "harpidedunak"
  243. #. SOCIAL_MEDIA_TERMS['POSTS']
  244. #: searx/engines/lemmy.py:86 searx/searxng.msg
  245. msgid "posts"
  246. msgstr "mezuak"
  247. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  248. #: searx/engines/lemmy.py:87 searx/searxng.msg
  249. msgid "active users"
  250. msgstr "erabiltzaile aktiboak"
  251. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  252. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:78
  253. #: searx/engines/lemmy.py:130 searx/searxng.msg
  254. msgid "comments"
  255. msgstr "iruzkinak"
  256. #. SOCIAL_MEDIA_TERMS['USER']
  257. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  258. msgid "user"
  259. msgstr "erabiltzailea"
  260. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  261. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  262. msgid "community"
  263. msgstr "komunitatea"
  264. #. SOCIAL_MEDIA_TERMS['POINTS']
  265. #: searx/engines/hackernews.py:78 searx/searxng.msg
  266. msgid "points"
  267. msgstr "puntuak"
  268. #. SOCIAL_MEDIA_TERMS['TITLE']
  269. #: searx/searxng.msg
  270. msgid "title"
  271. msgstr "izenburua"
  272. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  273. #: searx/engines/hackernews.py:81 searx/searxng.msg
  274. msgid "author"
  275. msgstr "egilea"
  276. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  277. #: searx/engines/discourse.py:149 searx/searxng.msg
  278. msgid "open"
  279. msgstr "ireki"
  280. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  281. #: searx/engines/discourse.py:149 searx/searxng.msg
  282. msgid "closed"
  283. msgstr "itxita"
  284. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  285. #: searx/engines/discourse.py:160 searx/searxng.msg
  286. msgid "answered"
  287. msgstr "erantzunda"
  288. #: searx/webapp.py:330
  289. msgid "No item found"
  290. msgstr "Ez da elementurik aurkitu"
  291. #: searx/engines/qwant.py:288
  292. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:332
  293. msgid "Source"
  294. msgstr "Iturria"
  295. #: searx/webapp.py:334
  296. msgid "Error loading the next page"
  297. msgstr "Errorea hurrengo orrialdea kargatzean"
  298. #: searx/webapp.py:491 searx/webapp.py:894
  299. msgid "Invalid settings, please edit your preferences"
  300. msgstr "Ezarpen baliogabeak, editatu zure hobespenak"
  301. #: searx/webapp.py:507
  302. msgid "Invalid settings"
  303. msgstr "Ezarpen baliogabeak"
  304. #: searx/webapp.py:584 searx/webapp.py:666
  305. msgid "search error"
  306. msgstr "bilaketa akatsa"
  307. #: searx/webutils.py:36
  308. msgid "timeout"
  309. msgstr "itxarote-denbora"
  310. #: searx/webutils.py:37
  311. msgid "parsing error"
  312. msgstr "analizatze errorea"
  313. #: searx/webutils.py:38
  314. msgid "HTTP protocol error"
  315. msgstr "HTTP protokoloaren errorea"
  316. #: searx/webutils.py:39
  317. msgid "network error"
  318. msgstr "sareko errorea"
  319. #: searx/webutils.py:40
  320. msgid "SSL error: certificate validation has failed"
  321. msgstr "SSL errorea: ziurtagiria baliozkotzeak huts egin du"
  322. #: searx/webutils.py:42
  323. msgid "unexpected crash"
  324. msgstr "ustekabeko kraskatzea"
  325. #: searx/webutils.py:49
  326. msgid "HTTP error"
  327. msgstr "HTTP errorea"
  328. #: searx/webutils.py:50
  329. msgid "HTTP connection error"
  330. msgstr "HTTP konexioaren errorea"
  331. #: searx/webutils.py:56
  332. msgid "proxy error"
  333. msgstr "proxy-aren errorea"
  334. #: searx/webutils.py:57
  335. msgid "CAPTCHA"
  336. msgstr "CAPTCHA"
  337. #: searx/webutils.py:58
  338. msgid "too many requests"
  339. msgstr "eskaera gehiegi"
  340. #: searx/webutils.py:59
  341. msgid "access denied"
  342. msgstr "sarbidea ukatua"
  343. #: searx/webutils.py:60
  344. msgid "server API error"
  345. msgstr "API zerbitzariaren errorea"
  346. #: searx/webutils.py:79
  347. msgid "Suspended"
  348. msgstr "Etenda"
  349. #: searx/webutils.py:314
  350. msgid "{minutes} minute(s) ago"
  351. msgstr "duela {minutes} minutu"
  352. #: searx/webutils.py:315
  353. msgid "{hours} hour(s), {minutes} minute(s) ago"
  354. msgstr "duela {hours} ordu eta {minutes} minutu"
  355. #: searx/answerers/random/answerer.py:76
  356. msgid "Random value generator"
  357. msgstr "Ausazko balio sortzailea"
  358. #: searx/answerers/random/answerer.py:77
  359. msgid "Generate different random values"
  360. msgstr "Ausazko balio ezberdinak sortu"
  361. #: searx/answerers/statistics/answerer.py:50
  362. msgid "Statistics functions"
  363. msgstr "Funtzio estatistikoak"
  364. #: searx/answerers/statistics/answerer.py:51
  365. msgid "Compute {functions} of the arguments"
  366. msgstr "Kalkulatu argumentuen {funtzioak}"
  367. #: searx/engines/mozhi.py:57
  368. msgid "Synonyms"
  369. msgstr ""
  370. #: searx/engines/openstreetmap.py:159
  371. msgid "Get directions"
  372. msgstr "Lortu jarraibideak"
  373. #: searx/engines/pdbe.py:96
  374. msgid "{title} (OBSOLETE)"
  375. msgstr "{title} (ZAHARKITUA)"
  376. #: searx/engines/pdbe.py:103
  377. msgid "This entry has been superseded by"
  378. msgstr "Sarrera hau hurrengoarekin ordezkatu da"
  379. #: searx/engines/qwant.py:290
  380. msgid "Channel"
  381. msgstr "Kanala"
  382. #: searx/engines/radio_browser.py:105
  383. msgid "bitrate"
  384. msgstr "bit emaria"
  385. #: searx/engines/radio_browser.py:106
  386. msgid "votes"
  387. msgstr "botoak"
  388. #: searx/engines/radio_browser.py:107
  389. msgid "clicks"
  390. msgstr "klikak"
  391. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  392. #: searx/engines/zlibrary.py:137
  393. msgid "Language"
  394. msgstr "Hizkuntza"
  395. #: searx/engines/semantic_scholar.py:78
  396. msgid ""
  397. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  398. "{lastCitationVelocityYear}"
  399. msgstr ""
  400. "{numCitations} aipamen {firstCitationVelocityYear} urtetik "
  401. "{lastCitationVelocityYear} bitartekoak"
  402. #: searx/engines/tineye.py:45
  403. msgid ""
  404. "Could not read that image url. This may be due to an unsupported file "
  405. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  406. " WebP."
  407. msgstr ""
  408. "Ezin izan da irudiaren URLa irakurri. Baliteke hori onartzen ez den "
  409. "fitxategi-formatu baten ondorioz izatea. TinEye-k JPEG, PNG, GIF, BMP, "
  410. "TIFF edo WebP diren irudiak soilik onartzen ditu."
  411. #: searx/engines/tineye.py:51
  412. msgid ""
  413. "The image is too simple to find matches. TinEye requires a basic level of"
  414. " visual detail to successfully identify matches."
  415. msgstr ""
  416. "Irudia sinpleegia da antzekoak aurkitzeko. TinEye-k oinarrizko xehetasun "
  417. "bisual bat behar du antzekoak ongi identifikatzeko."
  418. #: searx/engines/tineye.py:57
  419. msgid "The image could not be downloaded."
  420. msgstr "Ezin izan da deskargatu irudia."
  421. #: searx/engines/zlibrary.py:138
  422. msgid "Book rating"
  423. msgstr "Liburuaren balorazioa"
  424. #: searx/engines/zlibrary.py:139
  425. msgid "File quality"
  426. msgstr "Fitxategiaren kalitatea"
  427. #: searx/plugins/calculator.py:14
  428. msgid "Calculate mathematical expressions via the search bar"
  429. msgstr "Kalkulatu adierazpen matematikoak bilaketa-barraren bidez"
  430. #: searx/plugins/hash_plugin.py:10
  431. msgid "Converts strings to different hash digests."
  432. msgstr "Kateak traola laburpen desberdinetara bihurtzen ditu."
  433. #: searx/plugins/hash_plugin.py:38
  434. msgid "hash digest"
  435. msgstr "traola laburpena"
  436. #: searx/plugins/hostnames.py:103
  437. msgid "Hostnames plugin"
  438. msgstr "Hostnames plugina"
  439. #: searx/plugins/hostnames.py:104
  440. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  441. msgstr ""
  442. "Berridatzi ostalari-izenak, kendu emaitzak edo eman lehentasuna ostalari-"
  443. "izenaren arabera"
  444. #: searx/plugins/oa_doi_rewrite.py:12
  445. msgid "Open Access DOI rewrite"
  446. msgstr "Berridatzi Open Access DOI"
  447. #: searx/plugins/oa_doi_rewrite.py:13
  448. msgid ""
  449. "Avoid paywalls by redirecting to open-access versions of publications "
  450. "when available"
  451. msgstr ""
  452. "Saihestu ordain-hormak argitalpenen sarbide irekiko bertsioetara "
  453. "birbideratuz, ahal denean"
  454. #: searx/plugins/self_info.py:9
  455. msgid "Self Information"
  456. msgstr "Norberaren informazioa"
  457. #: searx/plugins/self_info.py:10
  458. msgid ""
  459. "Displays your IP if the query is \"ip\" and your user agent if the query "
  460. "contains \"user agent\"."
  461. msgstr ""
  462. "Zure IPa bistaratzen du kontsulta \"ip\" bada eta zure erabiltzaile-"
  463. "agentea kontsultak \"erabiltzaile-agentea\" badu."
  464. #: searx/plugins/self_info.py:28
  465. msgid "Your IP is: "
  466. msgstr "zure IPa hau da: "
  467. #: searx/plugins/self_info.py:31
  468. msgid "Your user-agent is: "
  469. msgstr "Zure erabiltzaile-agentea hau da: "
  470. #: searx/plugins/tor_check.py:24
  471. msgid "Tor check plugin"
  472. msgstr "Tor check plugina"
  473. #: searx/plugins/tor_check.py:27
  474. msgid ""
  475. "This plugin checks if the address of the request is a Tor exit-node, and "
  476. "informs the user if it is; like check.torproject.org, but from SearXNG."
  477. msgstr ""
  478. "Plugin honek eskaeraren helbidea Tor-eko irteera-nodo bat den egiaztatzen"
  479. " du eta hala ote den jakinarazten dio erabiltzaileari; "
  480. "check.torproject.org bezala, baina SearXNG-tik."
  481. #: searx/plugins/tor_check.py:61
  482. msgid ""
  483. "Could not download the list of Tor exit-nodes from: "
  484. "https://check.torproject.org/exit-addresses"
  485. msgstr ""
  486. "Ezin izan da Tor irteera-nodoen zerrenda deskargatu: "
  487. "https://check.torproject.org/exit-addresses"
  488. #: searx/plugins/tor_check.py:77
  489. msgid ""
  490. "You are using Tor and it looks like you have this external IP address: "
  491. "{ip_address}"
  492. msgstr ""
  493. "Tor erabiltzen ari zara eta kanpoko IP helbide hau duzula dirudi: "
  494. "{ip_address}"
  495. #: searx/plugins/tor_check.py:85
  496. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  497. msgstr "Ez zara Tor erabiltzen ari eta kanpoko IP helbide hau duzu: {ip_address}"
  498. #: searx/plugins/tracker_url_remover.py:16
  499. msgid "Tracker URL remover"
  500. msgstr "URL aztarnariak kendu"
  501. #: searx/plugins/tracker_url_remover.py:17
  502. msgid "Remove trackers arguments from the returned URL"
  503. msgstr "Aztarnarien argumentuak kendu itzulitako URLtik"
  504. #: searx/plugins/unit_converter.py:29
  505. msgid "Convert between units"
  506. msgstr "Bihurtu unitateak"
  507. #: searx/templates/simple/404.html:4
  508. msgid "Page not found"
  509. msgstr "Orria ez da aurkitu"
  510. #: searx/templates/simple/404.html:6
  511. #, python-format
  512. msgid "Go to %(search_page)s."
  513. msgstr "%(search_page)s(e)ra joan."
  514. #: searx/templates/simple/404.html:6
  515. msgid "search page"
  516. msgstr "bilaketa orria"
  517. #: searx/templates/simple/base.html:54
  518. msgid "Donate"
  519. msgstr "Lagundu diruz"
  520. #: searx/templates/simple/base.html:58
  521. #: searx/templates/simple/preferences.html:156
  522. msgid "Preferences"
  523. msgstr "Hobespenak"
  524. #: searx/templates/simple/base.html:68
  525. msgid "Powered by"
  526. msgstr "Garatzailea"
  527. #: searx/templates/simple/base.html:68
  528. msgid "a privacy-respecting, open metasearch engine"
  529. msgstr "pribatutasuna errespetatzen duen metabilatzaile irekia"
  530. #: searx/templates/simple/base.html:69
  531. #: searx/templates/simple/result_templates/packages.html:59
  532. msgid "Source code"
  533. msgstr "Iturburu-kodea"
  534. #: searx/templates/simple/base.html:70
  535. msgid "Issue tracker"
  536. msgstr "Arazoen jarraipena"
  537. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  538. msgid "Engine stats"
  539. msgstr "Bilatzaileen estatistikak"
  540. #: searx/templates/simple/base.html:73
  541. msgid "Public instances"
  542. msgstr "Instantzia publikoak"
  543. #: searx/templates/simple/base.html:76
  544. msgid "Privacy policy"
  545. msgstr "Pribatutasun politika"
  546. #: searx/templates/simple/base.html:79
  547. msgid "Contact instance maintainer"
  548. msgstr "Instantziaren mantentzailearekin harremanetan jarri"
  549. #: searx/templates/simple/categories.html:26
  550. msgid "Click on the magnifier to perform search"
  551. msgstr "Lupan sakatu bilaketa egiteko"
  552. #: searx/templates/simple/macros.html:35
  553. msgid "Length"
  554. msgstr "Luzera"
  555. #: searx/templates/simple/macros.html:36
  556. msgid "Views"
  557. msgstr "Ikuspegiak"
  558. #: searx/templates/simple/macros.html:37
  559. #: searx/templates/simple/result_templates/files.html:34
  560. #: searx/templates/simple/result_templates/images.html:19
  561. #: searx/templates/simple/result_templates/paper.html:6
  562. msgid "Author"
  563. msgstr "Egilea"
  564. #: searx/templates/simple/macros.html:45
  565. msgid "cached"
  566. msgstr "cachean gordeta"
  567. #: searx/templates/simple/macros.html:45
  568. msgid "proxied"
  569. msgstr "proxyan gordeta"
  570. #: searx/templates/simple/new_issue.html:64
  571. msgid "Start submiting a new issue on GitHub"
  572. msgstr "Hasi gai -issue- berri bat bidaltzen GitHub-en"
  573. #: searx/templates/simple/new_issue.html:66
  574. msgid "Please check for existing bugs about this engine on GitHub"
  575. msgstr "Egiaztatu motor honi buruzko akatsik dagoen GitHub-en"
  576. #: searx/templates/simple/new_issue.html:69
  577. msgid "I confirm there is no existing bug about the issue I encounter"
  578. msgstr "Berresten dut aurkitzen dudan arazoari buruzko akatsik ez dagoela"
  579. #: searx/templates/simple/new_issue.html:71
  580. msgid "If this is a public instance, please specify the URL in the bug report"
  581. msgstr "Hau instantzia publikoa bada, mesedez zehaztu URLa akatsen txostenean"
  582. #: searx/templates/simple/new_issue.html:72
  583. msgid "Submit a new issue on Github including the above information"
  584. msgstr "Bidali gai -issue- berri bat Github-en goiko informazioa barne"
  585. #: searx/templates/simple/preferences.html:65
  586. msgid "No HTTPS"
  587. msgstr "HTTPS-rik ez"
  588. #: searx/templates/simple/elements/engines_msg.html:14
  589. #: searx/templates/simple/preferences.html:69
  590. #: searx/templates/simple/preferences.html:70
  591. msgid "View error logs and submit a bug report"
  592. msgstr "Ikusi erroreen erregistroak eta bidali akatsen txostena"
  593. #: searx/templates/simple/preferences.html:74
  594. msgid "!bang for this engine"
  595. msgstr "!bang motor honetarako"
  596. #: searx/templates/simple/preferences.html:80
  597. msgid "!bang for its categories"
  598. msgstr "!bang bere kategorietarako"
  599. #: searx/templates/simple/preferences.html:102
  600. #: searx/templates/simple/stats.html:64
  601. msgid "Median"
  602. msgstr "Tartekoa"
  603. #: searx/templates/simple/preferences.html:103
  604. #: searx/templates/simple/stats.html:70
  605. msgid "P80"
  606. msgstr "P80"
  607. #: searx/templates/simple/preferences.html:104
  608. #: searx/templates/simple/stats.html:76
  609. msgid "P95"
  610. msgstr "P95"
  611. #: searx/templates/simple/preferences.html:136
  612. msgid "Failed checker test(s): "
  613. msgstr "Egiaztatzailearen probak huts egin du: "
  614. #: searx/templates/simple/preferences.html:138
  615. msgid "Errors:"
  616. msgstr "Erroreak:"
  617. #: searx/templates/simple/preferences.html:162
  618. msgid "General"
  619. msgstr "Orokorra"
  620. #: searx/templates/simple/preferences.html:165
  621. msgid "Default categories"
  622. msgstr "Lehenetsitako kategoriak"
  623. #: searx/templates/simple/preferences.html:187
  624. msgid "User interface"
  625. msgstr "Erabiltzailearen interfazea"
  626. #: searx/templates/simple/preferences.html:208
  627. msgid "Privacy"
  628. msgstr "Pribatutasuna"
  629. #: searx/templates/simple/preferences.html:221
  630. msgid "Engines"
  631. msgstr "Bilatzaileak"
  632. #: searx/templates/simple/preferences.html:223
  633. msgid "Currently used search engines"
  634. msgstr "Erabiltzen ari diren bilatzaileak"
  635. #: searx/templates/simple/preferences.html:231
  636. msgid "Special Queries"
  637. msgstr "Kontsulta bereziak"
  638. #: searx/templates/simple/preferences.html:237
  639. msgid "Cookies"
  640. msgstr "Cookieak"
  641. #: searx/templates/simple/results.html:23
  642. msgid "Answers"
  643. msgstr "Erantzunak"
  644. #: searx/templates/simple/results.html:42
  645. msgid "Number of results"
  646. msgstr "Emaitza kopurua"
  647. #: searx/templates/simple/results.html:48
  648. msgid "Info"
  649. msgstr "Informazioa"
  650. #: searx/templates/simple/results.html:75
  651. msgid "Try searching for:"
  652. msgstr "Saiatu hau bilatzen:"
  653. #: searx/templates/simple/results.html:107
  654. msgid "Back to top"
  655. msgstr "Gora bueltatu"
  656. #: searx/templates/simple/results.html:125
  657. msgid "Previous page"
  658. msgstr "Aurreko orria"
  659. #: searx/templates/simple/results.html:143
  660. msgid "Next page"
  661. msgstr "Hurrengo orria"
  662. #: searx/templates/simple/search.html:3
  663. msgid "Display the front page"
  664. msgstr "Erakutsi hasierako orria"
  665. #: searx/templates/simple/search.html:9
  666. #: searx/templates/simple/simple_search.html:5
  667. msgid "Search for..."
  668. msgstr "Bilatu..."
  669. #: searx/templates/simple/search.html:10
  670. #: searx/templates/simple/simple_search.html:6
  671. msgid "clear"
  672. msgstr "garbitu"
  673. #: searx/templates/simple/search.html:11
  674. #: searx/templates/simple/simple_search.html:7
  675. msgid "search"
  676. msgstr "bilatu"
  677. #: searx/templates/simple/stats.html:21
  678. msgid "There is currently no data available. "
  679. msgstr "Une honetan ez dago daturik eskuragarri."
  680. #: searx/templates/simple/preferences/engines.html:24
  681. #: searx/templates/simple/stats.html:25
  682. msgid "Engine name"
  683. msgstr "Bilatzailearen izena"
  684. #: searx/templates/simple/stats.html:26
  685. msgid "Scores"
  686. msgstr "Balorazioak"
  687. #: searx/templates/simple/stats.html:27
  688. msgid "Result count"
  689. msgstr "Emaitzen zenbaketa"
  690. #: searx/templates/simple/elements/engines_msg.html:7
  691. #: searx/templates/simple/preferences/engines.html:31
  692. #: searx/templates/simple/stats.html:28
  693. msgid "Response time"
  694. msgstr "Erantzuteko denbora"
  695. #: searx/templates/simple/preferences/engines.html:35
  696. #: searx/templates/simple/stats.html:29
  697. msgid "Reliability"
  698. msgstr "Fidagarritasuna"
  699. #: searx/templates/simple/stats.html:59
  700. msgid "Total"
  701. msgstr "Guztira"
  702. #: searx/templates/simple/stats.html:60
  703. msgid "HTTP"
  704. msgstr "HTTP"
  705. #: searx/templates/simple/stats.html:61
  706. msgid "Processing"
  707. msgstr "Prozesatzen"
  708. #: searx/templates/simple/stats.html:99
  709. msgid "Warnings"
  710. msgstr "Abisuak"
  711. #: searx/templates/simple/stats.html:99
  712. msgid "Errors and exceptions"
  713. msgstr "Errore eta salbuespenak"
  714. #: searx/templates/simple/stats.html:105
  715. msgid "Exception"
  716. msgstr "Salbuespena"
  717. #: searx/templates/simple/stats.html:107
  718. msgid "Message"
  719. msgstr "Mezua"
  720. #: searx/templates/simple/stats.html:109
  721. msgid "Percentage"
  722. msgstr "Ehunekoa"
  723. #: searx/templates/simple/stats.html:111
  724. msgid "Parameter"
  725. msgstr "Parametroa"
  726. #: searx/templates/simple/result_templates/files.html:36
  727. #: searx/templates/simple/stats.html:119
  728. msgid "Filename"
  729. msgstr "Fitxategiaren izena"
  730. #: searx/templates/simple/stats.html:120
  731. msgid "Function"
  732. msgstr "Funtzioa"
  733. #: searx/templates/simple/stats.html:121
  734. msgid "Code"
  735. msgstr "Kodea"
  736. #: searx/templates/simple/stats.html:128
  737. msgid "Checker"
  738. msgstr "Zuzentzailea"
  739. #: searx/templates/simple/stats.html:131
  740. msgid "Failed test"
  741. msgstr "Probak huts egin du"
  742. #: searx/templates/simple/stats.html:132
  743. msgid "Comment(s)"
  744. msgstr "Iruzkina(k)"
  745. #: searx/templates/simple/elements/apis.html:3
  746. msgid "Download results"
  747. msgstr "Deskargatu emaitzak"
  748. #: searx/templates/simple/elements/engines_msg.html:4
  749. msgid "Messages from the search engines"
  750. msgstr "Bilatzaileen mezuak"
  751. #: searx/templates/simple/elements/engines_msg.html:7
  752. msgid "seconds"
  753. msgstr "segundo"
  754. #: searx/templates/simple/elements/search_url.html:3
  755. msgid "Search URL"
  756. msgstr "Bilaketaren URLa"
  757. #: searx/templates/simple/elements/search_url.html:4
  758. #: searx/templates/simple/preferences/cookies.html:54
  759. msgid "Copied"
  760. msgstr "Kopiatuta"
  761. #: searx/templates/simple/elements/search_url.html:4
  762. #: searx/templates/simple/preferences/cookies.html:54
  763. msgid "Copy"
  764. msgstr "Kopiatu"
  765. #: searx/templates/simple/elements/suggestions.html:3
  766. msgid "Suggestions"
  767. msgstr "Iradokizunak"
  768. #: searx/templates/simple/filters/languages.html:1
  769. #: searx/templates/simple/preferences/language.html:2
  770. msgid "Search language"
  771. msgstr "Bilaketaren hizkuntza"
  772. #: searx/templates/simple/filters/languages.html:4
  773. #: searx/templates/simple/preferences/language.html:7
  774. msgid "Default language"
  775. msgstr "Lehenetsitako hizkuntza"
  776. #: searx/templates/simple/filters/languages.html:8
  777. #: searx/templates/simple/preferences/language.html:11
  778. msgid "Auto-detect"
  779. msgstr "Auto-detektatu"
  780. #: searx/templates/simple/filters/safesearch.html:1
  781. #: searx/templates/simple/filters/safesearch.html:2
  782. #: searx/templates/simple/filters/safesearch.html:3
  783. #: searx/templates/simple/filters/safesearch.html:4
  784. #: searx/templates/simple/preferences/engines.html:27
  785. #: searx/templates/simple/preferences/safesearch.html:2
  786. msgid "SafeSearch"
  787. msgstr "Bilaketa segurua"
  788. #: searx/templates/simple/filters/safesearch.html:2
  789. #: searx/templates/simple/preferences/safesearch.html:7
  790. msgid "Strict"
  791. msgstr "Zorrotza"
  792. #: searx/templates/simple/filters/safesearch.html:3
  793. #: searx/templates/simple/preferences/safesearch.html:11
  794. msgid "Moderate"
  795. msgstr "Moderatua"
  796. #: searx/templates/simple/filters/safesearch.html:4
  797. #: searx/templates/simple/preferences/safesearch.html:15
  798. msgid "None"
  799. msgstr "Bat ere ez"
  800. #: searx/templates/simple/filters/time_range.html:1
  801. #: searx/templates/simple/preferences/engines.html:28
  802. msgid "Time range"
  803. msgstr "Denbora tartea"
  804. #: searx/templates/simple/filters/time_range.html:3
  805. msgid "Anytime"
  806. msgstr "Edonoiz"
  807. #: searx/templates/simple/filters/time_range.html:6
  808. msgid "Last day"
  809. msgstr "Azken eguna"
  810. #: searx/templates/simple/filters/time_range.html:9
  811. msgid "Last week"
  812. msgstr "Azken astea"
  813. #: searx/templates/simple/filters/time_range.html:12
  814. msgid "Last month"
  815. msgstr "Azken hilabetea"
  816. #: searx/templates/simple/filters/time_range.html:15
  817. msgid "Last year"
  818. msgstr "Azken urtea"
  819. #: searx/templates/simple/messages/no_cookies.html:3
  820. msgid "Information!"
  821. msgstr "Informazioa!"
  822. #: searx/templates/simple/messages/no_cookies.html:4
  823. msgid "currently, there are no cookies defined."
  824. msgstr "une honetan, ez dago cookierik definituta."
  825. #: searx/templates/simple/messages/no_results.html:6
  826. msgid "Sorry!"
  827. msgstr "Barkatu!"
  828. #: searx/templates/simple/messages/no_results.html:12
  829. msgid "No results were found. You can try to:"
  830. msgstr "Ez da emaitzarik aurkitu. Saia zaitezke:"
  831. #: searx/templates/simple/messages/no_results.html:14
  832. msgid "There are no more results. You can try to:"
  833. msgstr "Ez dago emaitza gehiago. Saia zaitezke:"
  834. #: searx/templates/simple/messages/no_results.html:19
  835. msgid "Refresh the page."
  836. msgstr "Eguneratu orrialdea."
  837. #: searx/templates/simple/messages/no_results.html:20
  838. msgid "Search for another query or select another category (above)."
  839. msgstr "Bilatu beste kontsulta bat edo hautatu beste kategoria bat (goian)."
  840. #: searx/templates/simple/messages/no_results.html:21
  841. msgid "Change the search engine used in the preferences:"
  842. msgstr "Aldatu hobespenetan erabilitako bilatzailea:"
  843. #: searx/templates/simple/messages/no_results.html:22
  844. msgid "Switch to another instance:"
  845. msgstr "Aldatu beste instantzia batera:"
  846. #: searx/templates/simple/messages/no_results.html:24
  847. msgid "Search for another query or select another category."
  848. msgstr "Bilatu beste kontsulta bat edo hautatu beste kategoria bat."
  849. #: searx/templates/simple/messages/no_results.html:25
  850. msgid "Go back to the previous page using the previous page button."
  851. msgstr "Itzuli aurreko orrialdera aurreko orrialdeko botoia erabiliz."
  852. #: searx/templates/simple/preferences/answerers.html:4
  853. #: searx/templates/simple/preferences/engines.html:23
  854. msgid "Allow"
  855. msgstr "Baimendu"
  856. #: searx/templates/simple/preferences/answerers.html:5
  857. msgid "Keywords"
  858. msgstr "Gako-hitzak"
  859. #: searx/templates/simple/preferences/answerers.html:6
  860. #: searx/templates/simple/result_templates/packages.html:7
  861. msgid "Name"
  862. msgstr "Izena"
  863. #: searx/templates/simple/preferences/answerers.html:7
  864. msgid "Description"
  865. msgstr "Deskribapena"
  866. #: searx/templates/simple/preferences/answerers.html:8
  867. msgid "Examples"
  868. msgstr "Adibideak"
  869. #: searx/templates/simple/preferences/answerers.html:13
  870. msgid "This is the list of SearXNG's instant answering modules."
  871. msgstr "Hau da SearXNG-ren berehalako erantzuteko moduluen zerrenda."
  872. #: searx/templates/simple/preferences/answerers.html:29
  873. msgid "This is the list of plugins."
  874. msgstr "Hau da pluginen zerrenda."
  875. #: searx/templates/simple/preferences/autocomplete.html:2
  876. msgid "Autocomplete"
  877. msgstr "Osatze automatikoa"
  878. #: searx/templates/simple/preferences/autocomplete.html:15
  879. msgid "Find stuff as you type"
  880. msgstr "Aurkitu idatzi bitartean"
  881. #: searx/templates/simple/preferences/center_alignment.html:2
  882. msgid "Center Alignment"
  883. msgstr "Erdiko Lerrokadura"
  884. #: searx/templates/simple/preferences/center_alignment.html:14
  885. msgid "Displays results in the center of the page (Oscar layout)."
  886. msgstr "Emaitzak orriaren erdialdean bistaratzen ditu (Oscar diseinua)."
  887. #: searx/templates/simple/preferences/cookies.html:2
  888. msgid ""
  889. "This is the list of cookies and their values SearXNG is storing on your "
  890. "computer."
  891. msgstr ""
  892. "Hau da SearXNG zure ordenagailuan gordetzen ari den cookieen zerrenda eta"
  893. " haien balioak."
  894. #: searx/templates/simple/preferences/cookies.html:3
  895. msgid "With that list, you can assess SearXNG transparency."
  896. msgstr "Zerrenda horrekin, SearXNGren gardentasuna ebaluatu dezakezu."
  897. #: searx/templates/simple/preferences/cookies.html:9
  898. msgid "Cookie name"
  899. msgstr "Cookiearen izena"
  900. #: searx/templates/simple/preferences/cookies.html:10
  901. msgid "Value"
  902. msgstr "Balioa"
  903. #: searx/templates/simple/preferences/cookies.html:23
  904. msgid "Search URL of the currently saved preferences"
  905. msgstr "Bilatu une honetan gordetako hobespenen URLa"
  906. #: searx/templates/simple/preferences/cookies.html:32
  907. msgid ""
  908. "Note: specifying custom settings in the search URL can reduce privacy by "
  909. "leaking data to the clicked result sites."
  910. msgstr ""
  911. "Oharra: bilaketa URLan ezarpen pertsonalizatuak zehazteak pribatutasuna "
  912. "txikiagotu dezake klikatutako erantzun guneetara datuak emanez."
  913. #: searx/templates/simple/preferences/cookies.html:35
  914. msgid "URL to restore your preferences in another browser"
  915. msgstr "Zure hobespenak beste arakatzaile batean leheneratzeko URLa"
  916. #: searx/templates/simple/preferences/cookies.html:43
  917. msgid ""
  918. "Specifying custom settings in the preferences URL can be used to sync "
  919. "preferences across devices."
  920. msgstr ""
  921. "Hobespenen URLan ezarpen pertsonalizatuak zehaztea erabil daiteke gailuen"
  922. " hobespenak sinkronizatzeko."
  923. #: searx/templates/simple/preferences/cookies.html:46
  924. msgid "Copy preferences hash"
  925. msgstr "Kopiatu hobespenen hash"
  926. #: searx/templates/simple/preferences/cookies.html:57
  927. msgid "Insert copied preferences hash (without URL) to restore"
  928. msgstr "Txertatu kopiatutako hobespenen hash (URLrik gabe) leheneratzeko"
  929. #: searx/templates/simple/preferences/cookies.html:59
  930. msgid "Preferences hash"
  931. msgstr "Hobespenen hash"
  932. #: searx/templates/simple/preferences/doi_resolver.html:2
  933. msgid "Open Access DOI resolver"
  934. msgstr "Open Access DOI ebatzi"
  935. #: searx/templates/simple/preferences/doi_resolver.html:14
  936. msgid "Select service used by DOI rewrite"
  937. msgstr "Hautatu DOI berridazketa-k erabilitako zerbitzua"
  938. #: searx/templates/simple/preferences/engines.html:9
  939. msgid ""
  940. "This tab does not exists in the user interface, but you can search in "
  941. "these engines by its !bangs."
  942. msgstr ""
  943. "Fitxa hau ez dago erabiltzailearen interfazean, baina motor hauetan "
  944. "bilatu dezakezu bere !bang-en arabera."
  945. #: searx/templates/simple/preferences/engines.html:15
  946. msgid "Enable all"
  947. msgstr "Gaitu dena"
  948. #: searx/templates/simple/preferences/engines.html:16
  949. msgid "Disable all"
  950. msgstr "Desgaitu dena"
  951. #: searx/templates/simple/preferences/engines.html:25
  952. msgid "!bang"
  953. msgstr "!bang"
  954. #: searx/templates/simple/preferences/engines.html:26
  955. msgid "Supports selected language"
  956. msgstr "Hautatutako hizkuntza onartzen du"
  957. #: searx/templates/simple/preferences/engines.html:29
  958. msgid "Weight"
  959. msgstr "Pisua"
  960. #: searx/templates/simple/preferences/engines.html:33
  961. msgid "Max time"
  962. msgstr "Gehienezko denbora"
  963. #: searx/templates/simple/preferences/footer.html:2
  964. msgid ""
  965. "These settings are stored in your cookies, this allows us not to store "
  966. "this data about you."
  967. msgstr ""
  968. "Ezarpen hauek zure cookietan gordetzen dira, honek zuri buruzko "
  969. "informaziorik ez gordetzea baimentzen digu."
  970. #: searx/templates/simple/preferences/footer.html:3
  971. msgid ""
  972. "These cookies serve your sole convenience, we don't use these cookies to "
  973. "track you."
  974. msgstr ""
  975. "Cookie hauek zure onurarako besterik ez dira, ez ditugu zure jarraipenik "
  976. "egiteko erabiltzen."
  977. #: searx/templates/simple/preferences/footer.html:6
  978. msgid "Save"
  979. msgstr "Gorde"
  980. #: searx/templates/simple/preferences/footer.html:9
  981. msgid "Reset defaults"
  982. msgstr "Berrezarri lehenetsiak"
  983. #: searx/templates/simple/preferences/footer.html:13
  984. msgid "Back"
  985. msgstr "Atzera"
  986. #: searx/templates/simple/preferences/hotkeys.html:2
  987. msgid "Hotkeys"
  988. msgstr "teklatuko lasterbideak"
  989. #: searx/templates/simple/preferences/hotkeys.html:13
  990. msgid "Vim-like"
  991. msgstr "Vim bezala"
  992. #: searx/templates/simple/preferences/hotkeys.html:18
  993. msgid ""
  994. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  995. "key on main or result page to get help."
  996. msgstr ""
  997. "Arakatu bilaketa-emaitzak teklatuko lasterbideekin (JavaScript behar da)."
  998. " Sakatu \"h\" tekla orri nagusian edo emaitzen orrian laguntza lortzeko."
  999. #: searx/templates/simple/preferences/image_proxy.html:2
  1000. msgid "Image proxy"
  1001. msgstr "Irudien proxya"
  1002. #: searx/templates/simple/preferences/image_proxy.html:14
  1003. msgid "Proxying image results through SearXNG"
  1004. msgstr "Proxy irudien emaitzak SearXNG bidez"
  1005. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1006. msgid "Infinite scroll"
  1007. msgstr "Korritze amaigabea"
  1008. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1009. msgid "Automatically load next page when scrolling to bottom of current page"
  1010. msgstr ""
  1011. "Kargatu automatikoki hurrengo orria uneko orrialdearen behealdera "
  1012. "mugitzean"
  1013. #: searx/templates/simple/preferences/language.html:24
  1014. msgid "What language do you prefer for search?"
  1015. msgstr "Zein hizkuntzan egin nahi duzu bilaketa?"
  1016. #: searx/templates/simple/preferences/language.html:25
  1017. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1018. msgstr ""
  1019. "Aukeratu Auto-detektatu SearXNG-k zure kontsultaren hizkuntza "
  1020. "detektatzeko."
  1021. #: searx/templates/simple/preferences/method.html:2
  1022. msgid "HTTP Method"
  1023. msgstr "HTTP metodoa"
  1024. #: searx/templates/simple/preferences/method.html:14
  1025. msgid "Change how forms are submitted"
  1026. msgstr "Aldatu inprimakiak nola bidaltzen diren"
  1027. #: searx/templates/simple/preferences/query_in_title.html:2
  1028. msgid "Query in the page's title"
  1029. msgstr "Kontsulta orriaren izenburuan"
  1030. #: searx/templates/simple/preferences/query_in_title.html:14
  1031. msgid ""
  1032. "When enabled, the result page's title contains your query. Your browser "
  1033. "can record this title"
  1034. msgstr ""
  1035. "Gaituta dagoenean, emaitza orriaren izenburuak zure kontsulta dauka. Zure"
  1036. " arakatzaileak izenburu hau graba dezake"
  1037. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1038. msgid "Results on new tabs"
  1039. msgstr "Emaitzak fitxa berrietan"
  1040. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1041. msgid "Open result links on new browser tabs"
  1042. msgstr "Emaitzen estekak nabigatzailearen fitxa berrietan ireki"
  1043. #: searx/templates/simple/preferences/safesearch.html:20
  1044. msgid "Filter content"
  1045. msgstr "Edukia iragazi"
  1046. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1047. msgid "Search on category select"
  1048. msgstr "Bilatu kategoria hautatzean"
  1049. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1050. msgid ""
  1051. "Perform search immediately if a category selected. Disable to select "
  1052. "multiple categories"
  1053. msgstr ""
  1054. "Egin bilaketa berehala kategoria bat hautatuz gero. Desgaitu hainbat "
  1055. "kategoria hautatzeko"
  1056. #: searx/templates/simple/preferences/theme.html:2
  1057. msgid "Theme"
  1058. msgstr "Itxura"
  1059. #: searx/templates/simple/preferences/theme.html:14
  1060. msgid "Change SearXNG layout"
  1061. msgstr "Aldatu SearXNGren diseinua"
  1062. #: searx/templates/simple/preferences/theme.html:19
  1063. msgid "Theme style"
  1064. msgstr "Estiloa"
  1065. #: searx/templates/simple/preferences/theme.html:31
  1066. msgid "Choose auto to follow your browser settings"
  1067. msgstr "Aukeratu automatikoa nabigatzailearen ezarpenak jarraitzeko"
  1068. #: searx/templates/simple/preferences/tokens.html:2
  1069. msgid "Engine tokens"
  1070. msgstr "Bilatzaileen token-ak"
  1071. #: searx/templates/simple/preferences/tokens.html:9
  1072. msgid "Access tokens for private engines"
  1073. msgstr "Sarbide token-ak bilatzaile pribatuetarako"
  1074. #: searx/templates/simple/preferences/ui_locale.html:2
  1075. msgid "Interface language"
  1076. msgstr "Interfazearen hizkuntza"
  1077. #: searx/templates/simple/preferences/ui_locale.html:14
  1078. msgid "Change the language of the layout"
  1079. msgstr "Aldatu interfazearen hizkuntza"
  1080. #: searx/templates/simple/result_templates/code.html:13
  1081. msgid "repo"
  1082. msgstr "biltegiak"
  1083. #: searx/templates/simple/result_templates/default.html:6
  1084. #: searx/templates/simple/result_templates/files.html:8
  1085. #: searx/templates/simple/result_templates/files.html:11
  1086. msgid "show media"
  1087. msgstr "erakutsi multimediak"
  1088. #: searx/templates/simple/result_templates/default.html:6
  1089. #: searx/templates/simple/result_templates/files.html:8
  1090. msgid "hide media"
  1091. msgstr "ezkutatu multimediak"
  1092. #: searx/templates/simple/result_templates/default.html:14
  1093. #: searx/templates/simple/result_templates/videos.html:14
  1094. msgid "This site did not provide any description."
  1095. msgstr "Gune honek ez du deskribapenik eman."
  1096. #: searx/templates/simple/result_templates/files.html:38
  1097. #: searx/templates/simple/result_templates/images.html:22
  1098. #: searx/templates/simple/result_templates/torrent.html:11
  1099. msgid "Filesize"
  1100. msgstr "Fitxategiaren tamaina"
  1101. #: searx/templates/simple/result_templates/files.html:40
  1102. msgid "Date"
  1103. msgstr "Data"
  1104. #: searx/templates/simple/result_templates/files.html:42
  1105. #: searx/templates/simple/result_templates/paper.html:24
  1106. msgid "Type"
  1107. msgstr "Mota"
  1108. #: searx/templates/simple/result_templates/images.html:20
  1109. msgid "Resolution"
  1110. msgstr "Ebazpena"
  1111. #: searx/templates/simple/result_templates/images.html:21
  1112. msgid "Format"
  1113. msgstr "Formatua"
  1114. #: searx/templates/simple/result_templates/images.html:24
  1115. msgid "Engine"
  1116. msgstr "Bilatzailea"
  1117. #: searx/templates/simple/result_templates/images.html:25
  1118. msgid "View source"
  1119. msgstr "Ikusi iturria"
  1120. #: searx/templates/simple/result_templates/map.html:12
  1121. msgid "address"
  1122. msgstr "helbidea"
  1123. #: searx/templates/simple/result_templates/map.html:43
  1124. msgid "show map"
  1125. msgstr "erakutsi mapa"
  1126. #: searx/templates/simple/result_templates/map.html:43
  1127. msgid "hide map"
  1128. msgstr "ezkutatu mapa"
  1129. #: searx/templates/simple/result_templates/packages.html:12
  1130. msgid "Version"
  1131. msgstr "Bertsioa"
  1132. #: searx/templates/simple/result_templates/packages.html:18
  1133. msgid "Maintainer"
  1134. msgstr "Mantentzailea"
  1135. #: searx/templates/simple/result_templates/packages.html:24
  1136. msgid "Updated at"
  1137. msgstr "Une honetan eguneratua"
  1138. #: searx/templates/simple/result_templates/packages.html:30
  1139. #: searx/templates/simple/result_templates/paper.html:25
  1140. msgid "Tags"
  1141. msgstr "Etiketak"
  1142. #: searx/templates/simple/result_templates/packages.html:36
  1143. msgid "Popularity"
  1144. msgstr "Ospea"
  1145. #: searx/templates/simple/result_templates/packages.html:42
  1146. msgid "License"
  1147. msgstr "Lizentzia"
  1148. #: searx/templates/simple/result_templates/packages.html:52
  1149. msgid "Project"
  1150. msgstr "Proiektua"
  1151. #: searx/templates/simple/result_templates/packages.html:55
  1152. msgid "Project homepage"
  1153. msgstr "Proiektuaren hasiera orria"
  1154. #: searx/templates/simple/result_templates/paper.html:5
  1155. msgid "Published date"
  1156. msgstr "Argitaratutako data"
  1157. #: searx/templates/simple/result_templates/paper.html:9
  1158. msgid "Journal"
  1159. msgstr "Egunkaria"
  1160. #: searx/templates/simple/result_templates/paper.html:22
  1161. msgid "Editor"
  1162. msgstr "Editorea"
  1163. #: searx/templates/simple/result_templates/paper.html:23
  1164. msgid "Publisher"
  1165. msgstr "Argitaletxea"
  1166. #: searx/templates/simple/result_templates/paper.html:26
  1167. msgid "DOI"
  1168. msgstr "DOI"
  1169. #: searx/templates/simple/result_templates/paper.html:27
  1170. msgid "ISSN"
  1171. msgstr "ISSN"
  1172. #: searx/templates/simple/result_templates/paper.html:28
  1173. msgid "ISBN"
  1174. msgstr "ISBN"
  1175. #: searx/templates/simple/result_templates/paper.html:33
  1176. msgid "PDF"
  1177. msgstr "PDF"
  1178. #: searx/templates/simple/result_templates/paper.html:34
  1179. msgid "HTML"
  1180. msgstr "HTML"
  1181. #: searx/templates/simple/result_templates/torrent.html:6
  1182. msgid "magnet link"
  1183. msgstr "magnet lotura"
  1184. #: searx/templates/simple/result_templates/torrent.html:7
  1185. msgid "torrent file"
  1186. msgstr "torrent fitxategia"
  1187. #: searx/templates/simple/result_templates/torrent.html:9
  1188. msgid "Seeder"
  1189. msgstr "Ereilea"
  1190. #: searx/templates/simple/result_templates/torrent.html:9
  1191. msgid "Leecher"
  1192. msgstr "Leecher"
  1193. #: searx/templates/simple/result_templates/torrent.html:13
  1194. msgid "Number of Files"
  1195. msgstr "Fitxategi kopurua"
  1196. #: searx/templates/simple/result_templates/videos.html:6
  1197. msgid "show video"
  1198. msgstr "erakutsi bideoa"
  1199. #: searx/templates/simple/result_templates/videos.html:6
  1200. msgid "hide video"
  1201. msgstr "ezkutatu bideoa"
  1202. #~ msgid "Engine time (sec)"
  1203. #~ msgstr "Bilatzailearen denbora (seg)"
  1204. #~ msgid "Page loads (sec)"
  1205. #~ msgstr "Orri kargak (seg)"
  1206. #~ msgid "Errors"
  1207. #~ msgstr "Erroreak"
  1208. #~ msgid "CAPTCHA required"
  1209. #~ msgstr "CAPTCHA beharrezkoa da"
  1210. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1211. #~ msgstr "HTTP loturak HTTPS bihurtu ahal denean"
  1212. #~ msgid ""
  1213. #~ "Results are opened in the same "
  1214. #~ "window by default. This plugin "
  1215. #~ "overwrites the default behaviour to open"
  1216. #~ " links on new tabs/windows. (JavaScript "
  1217. #~ "required)"
  1218. #~ msgstr ""
  1219. #~ "Emaitzak leiho berdinean irekitzen dira "
  1220. #~ "lehenetsi bezala. Plugin honek lehenetsitako"
  1221. #~ " jokabidea aldatzen du estekak fitxa/leiho"
  1222. #~ " berrietan irekitzeko. (JavaScript behar "
  1223. #~ "du)"
  1224. #~ msgid "Color"
  1225. #~ msgstr "Kolorea"
  1226. #~ msgid "Blue (default)"
  1227. #~ msgstr "Urdina (lehenetsia)"
  1228. #~ msgid "Violet"
  1229. #~ msgstr "Bioleta"
  1230. #~ msgid "Green"
  1231. #~ msgstr "Berdea"
  1232. #~ msgid "Cyan"
  1233. #~ msgstr "Zian"
  1234. #~ msgid "Orange"
  1235. #~ msgstr "Laranja"
  1236. #~ msgid "Red"
  1237. #~ msgstr "Gorria"
  1238. #~ msgid "Category"
  1239. #~ msgstr "Kategoria"
  1240. #~ msgid "Block"
  1241. #~ msgstr "Blokeatu"
  1242. #~ msgid "original context"
  1243. #~ msgstr "jatorrizko testuingurua"
  1244. #~ msgid "Plugins"
  1245. #~ msgstr "Pluginak"
  1246. #~ msgid "Answerers"
  1247. #~ msgstr "Erantzun emaileak"
  1248. #~ msgid "Avg. time"
  1249. #~ msgstr " Batezbesteko denbora"
  1250. #~ msgid "show details"
  1251. #~ msgstr "xehetasunak erakutsi"
  1252. #~ msgid "hide details"
  1253. #~ msgstr "xehetasunak ezkutatu"
  1254. #~ msgid "Load more..."
  1255. #~ msgstr "Kargatu gehiago..."
  1256. #~ msgid "Loading..."
  1257. #~ msgstr "Kargatzen..."
  1258. #~ msgid "Change searx layout"
  1259. #~ msgstr "Searxen diseinua aldatu"
  1260. #~ msgid "Proxying image results through searx"
  1261. #~ msgstr "Irudien emaitzak searx proxyaren bidez pasatu"
  1262. #~ msgid "This is the list of searx's instant answering modules."
  1263. #~ msgstr "Hau da searxen berehalako erantzunen moduluen zerrenda."
  1264. #~ msgid ""
  1265. #~ "This is the list of cookies and"
  1266. #~ " their values searx is storing on "
  1267. #~ "your computer."
  1268. #~ msgstr ""
  1269. #~ "Hau searxek zure ordenagailuan gordetzen "
  1270. #~ "ari den cookien eta haien balioen "
  1271. #~ "zerrenda bat da."
  1272. #~ msgid "With that list, you can assess searx transparency."
  1273. #~ msgstr "Zerrenda horrekin, searxen gardentasuna balioztatu dezakezu."
  1274. #~ msgid "It look like you are using searx first time."
  1275. #~ msgstr "Searx lehen aldiz erabiltzen ari zarela ematen du."
  1276. #~ msgid "Please, try again later or find another searx instance."
  1277. #~ msgstr ""
  1278. #~ "Mesedez, saiatu berriz beranduago edo "
  1279. #~ "bila ezazu beste searx instantzia bat."
  1280. #~ msgid "Themes"
  1281. #~ msgstr "Itxurak"
  1282. #~ msgid "Reliablity"
  1283. #~ msgstr ""
  1284. #~ msgid ""
  1285. #~ "When enabled, the result page's title"
  1286. #~ " contains your query. Your browser "
  1287. #~ "can record this title."
  1288. #~ msgstr ""
  1289. #~ msgid "Method"
  1290. #~ msgstr "Metodoa"
  1291. #~ msgid ""
  1292. #~ "This tab does not show up for "
  1293. #~ "search results but you can search "
  1294. #~ "the engines listed here via bangs."
  1295. #~ msgstr ""
  1296. #~ msgid "Advanced settings"
  1297. #~ msgstr "Ezarpen aurreratuak"
  1298. #~ msgid "Close"
  1299. #~ msgstr "Itxi"
  1300. #~ msgid "Language"
  1301. #~ msgstr "Hizkuntza"
  1302. #~ msgid "broken"
  1303. #~ msgstr ""
  1304. #~ msgid "supported"
  1305. #~ msgstr "onartua"
  1306. #~ msgid "not supported"
  1307. #~ msgstr "ez onartua"
  1308. #~ msgid "about"
  1309. #~ msgstr "honi buruz"
  1310. #~ msgid "Avg."
  1311. #~ msgstr ""
  1312. #~ msgid "User Interface"
  1313. #~ msgstr ""
  1314. #~ msgid "Choose style for this theme"
  1315. #~ msgstr "Gai honetarako estiloa hautatu"
  1316. #~ msgid "Style"
  1317. #~ msgstr "Estiloa"
  1318. #~ msgid "Show advanced settings"
  1319. #~ msgstr ""
  1320. #~ msgid "Show advanced settings panel in the home page by default"
  1321. #~ msgstr ""
  1322. #~ msgid "Allow all"
  1323. #~ msgstr "Guztiak baimendu"
  1324. #~ msgid "Disable all"
  1325. #~ msgstr "Guztiak ezgaitu"
  1326. #~ msgid "Selected language"
  1327. #~ msgstr "Hautatutako hizkuntza"
  1328. #~ msgid "Query"
  1329. #~ msgstr ""
  1330. #~ msgid "save"
  1331. #~ msgstr "gorde"
  1332. #~ msgid "back"
  1333. #~ msgstr "atzera"
  1334. #~ msgid "Links"
  1335. #~ msgstr "Estekak"
  1336. #~ msgid "RSS subscription"
  1337. #~ msgstr "RSS harpidetza"
  1338. #~ msgid "Search results"
  1339. #~ msgstr "Bilaketaren emaitzak"
  1340. #~ msgid "next page"
  1341. #~ msgstr "hurrengo orrialdea"
  1342. #~ msgid "previous page"
  1343. #~ msgstr "aurreko orrialdea"
  1344. #~ msgid "Start search"
  1345. #~ msgstr "Bilaketa hasi"
  1346. #~ msgid "Clear search"
  1347. #~ msgstr "Bilaketa garbitu"
  1348. #~ msgid "Clear"
  1349. #~ msgstr "Garbitu"
  1350. #~ msgid "stats"
  1351. #~ msgstr "estatistikak"
  1352. #~ msgid "Heads up!"
  1353. #~ msgstr "Kasu!"
  1354. #~ msgid "It look like you are using SearXNG first time."
  1355. #~ msgstr ""
  1356. #~ msgid "Well done!"
  1357. #~ msgstr "Ondo egina!"
  1358. #~ msgid "Settings saved successfully."
  1359. #~ msgstr "Ezarpenak ongi gorde dira."
  1360. #~ msgid "Oh snap!"
  1361. #~ msgstr "Hara!"
  1362. #~ msgid "Something went wrong."
  1363. #~ msgstr "Zerbait gaizki joan da."
  1364. #~ msgid "Date"
  1365. #~ msgstr ""
  1366. #~ msgid "Type"
  1367. #~ msgstr ""
  1368. #~ msgid "Get image"
  1369. #~ msgstr "Irudia eskuratu"
  1370. #~ msgid "Center Alignment"
  1371. #~ msgstr ""
  1372. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1373. #~ msgstr ""
  1374. #~ msgid "preferences"
  1375. #~ msgstr "hobespenak"
  1376. #~ msgid "Scores per result"
  1377. #~ msgstr "Balorazioak emaitza bakoitzeko"
  1378. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1379. #~ msgstr "pribatutasun-errespetatzaile, metabilaketa motor hackeagarri bat"
  1380. #~ msgid "No abstract is available for this publication."
  1381. #~ msgstr "Ez dago abstrakturik eskuragarri argitalpen honetarako."
  1382. #~ msgid "Self Informations"
  1383. #~ msgstr ""
  1384. #~ msgid ""
  1385. #~ "Change how forms are submited, <a "
  1386. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1387. #~ " rel=\"external\">learn more about request "
  1388. #~ "methods</a>"
  1389. #~ msgstr ""
  1390. #~ "Aldatu inprimakiak nola bidaltzen diren, "
  1391. #~ "<a "
  1392. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1393. #~ " rel=\"external\">ikasi gehiago eskaera metodoen"
  1394. #~ " inguruan</a>"
  1395. #~ msgid ""
  1396. #~ "This plugin checks if the address "
  1397. #~ "of the request is a TOR exit "
  1398. #~ "node, and informs the user if it"
  1399. #~ " is, like check.torproject.org but from "
  1400. #~ "searxng."
  1401. #~ msgstr ""
  1402. #~ msgid ""
  1403. #~ "The TOR exit node list "
  1404. #~ "(https://check.torproject.org/exit-addresses) is "
  1405. #~ "unreachable."
  1406. #~ msgstr ""
  1407. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1408. #~ msgstr ""
  1409. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1410. #~ msgstr ""
  1411. #~ msgid ""
  1412. #~ "The could not download the list of"
  1413. #~ " Tor exit-nodes from "
  1414. #~ "https://check.torproject.org/exit-addresses."
  1415. #~ msgstr ""
  1416. #~ msgid ""
  1417. #~ "You are using Tor. It looks like"
  1418. #~ " you have this external IP address:"
  1419. #~ " {ip_address}."
  1420. #~ msgstr ""
  1421. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1422. #~ msgstr ""
  1423. #~ msgid "Autodetect search language"
  1424. #~ msgstr ""
  1425. #~ msgid "Automatically detect the query search language and switch to it."
  1426. #~ msgstr ""
  1427. #~ msgid "others"
  1428. #~ msgstr "besteak"
  1429. #~ msgid ""
  1430. #~ "This tab does not show up for "
  1431. #~ "search results, but you can search "
  1432. #~ "the engines listed here via bangs."
  1433. #~ msgstr ""
  1434. #~ msgid "Shortcut"
  1435. #~ msgstr "Lasterbidea"
  1436. #~ msgid "!bang"
  1437. #~ msgstr ""
  1438. #~ msgid ""
  1439. #~ "This tab dues not exists in the"
  1440. #~ " user interface, but you can search"
  1441. #~ " in these engines by its !bangs."
  1442. #~ msgstr ""
  1443. #~ msgid "Engines cannot retrieve results."
  1444. #~ msgstr "Bilatzaileek ezin dute emaitzarik lortu."
  1445. #~ msgid "Please, try again later or find another SearXNG instance."
  1446. #~ msgstr ""
  1447. #~ msgid ""
  1448. #~ "Redirect to open-access versions of "
  1449. #~ "publications when available (plugin required)"
  1450. #~ msgstr ""
  1451. #~ "Argitalpenen sartze-askeko bertsioetara "
  1452. #~ "berbidali ahal denean (plugina behar du)"
  1453. #~ msgid "Bang"
  1454. #~ msgstr ""
  1455. #~ msgid ""
  1456. #~ "Change how forms are submitted, <a "
  1457. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1458. #~ " rel=\"external\">learn more about request "
  1459. #~ "methods</a>"
  1460. #~ msgstr ""
  1461. #~ msgid "On"
  1462. #~ msgstr "Piztuta"
  1463. #~ msgid "Off"
  1464. #~ msgstr "Itzalita"
  1465. #~ msgid "Enabled"
  1466. #~ msgstr "Gaituta"
  1467. #~ msgid "Disabled"
  1468. #~ msgstr "Desgaituta"
  1469. #~ msgid ""
  1470. #~ "Perform search immediately if a category"
  1471. #~ " selected. Disable to select multiple "
  1472. #~ "categories. (JavaScript required)"
  1473. #~ msgstr ""
  1474. #~ "Bilaketa egin kategoria hautatu bezain "
  1475. #~ "laster. Ezgaitu ezazu hainbat kategoria "
  1476. #~ "hautatu ahal izateko. (JavaScript behar "
  1477. #~ "du)"
  1478. #~ msgid "Vim-like hotkeys"
  1479. #~ msgstr "Vim antzeko laster-teklak"
  1480. #~ msgid ""
  1481. #~ "Navigate search results with Vim-like"
  1482. #~ " hotkeys (JavaScript required). Press \"h\""
  1483. #~ " key on main or result page to"
  1484. #~ " get help."
  1485. #~ msgstr ""
  1486. #~ "Emaitzetan zehar Vim-en antzeko "
  1487. #~ "laster-teklekin nabigatu (JavaScript behar "
  1488. #~ "du). Sakatu \"h\" tekla orri nagusian"
  1489. #~ " edo emaitzen orrian laguntza ikusteko."
  1490. #~ msgid ""
  1491. #~ "we didn't find any results. Please "
  1492. #~ "use another query or search in "
  1493. #~ "more categories."
  1494. #~ msgstr ""
  1495. #~ "ez dugu emaitzarik aurkitu. Mesedez "
  1496. #~ "beste kontsulta bat egin edo bilatu "
  1497. #~ "kategoria gehiagotan."
  1498. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1499. #~ msgstr ""
  1500. #~ "Berridatzi emaitzen ostalari-izenak edo "
  1501. #~ "kendu emaitzak ostalari-izenaren arabera"
  1502. #~ msgid "Bytes"
  1503. #~ msgstr "Byteak"
  1504. #~ msgid "kiB"
  1505. #~ msgstr "kiB"
  1506. #~ msgid "MiB"
  1507. #~ msgstr "MiB"
  1508. #~ msgid "GiB"
  1509. #~ msgstr "GiB"
  1510. #~ msgid "TiB"
  1511. #~ msgstr "TiB"
  1512. #~ msgid "Hostname replace"
  1513. #~ msgstr "Ostalariaren izena ordezkatu"
  1514. #~ msgid "Error!"
  1515. #~ msgstr "Errorea!"
  1516. #~ msgid "Engines cannot retrieve results"
  1517. #~ msgstr "Bilatzaileek ezin dute emaitzarik lortu"