messages.po 51 KB

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