messages.po 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968
  1. # Esperanto translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Jack Stehn <jaxadeo@gmail.com>, 2017
  7. # Juan Jaramillo <juanda097@protonmail.ch>, 2015-2016
  8. # pizzaiolo, 2016
  9. # Venca24 <Vaclav.Zouzalik@seznam.cz>, 2018
  10. # Gergely <gergely@fsfe.org>, 2022.
  11. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  12. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  13. # RTRedreovic <RTRedreovic@users.noreply.translate.codeberg.org>, 2023.
  14. # Azharjan <alexander.um.edu@gmail.com>, 2023.
  15. # return42 <return42@users.noreply.translate.codeberg.org>, 2024.
  16. # KinoCineaste <KinoCineaste@users.noreply.translate.codeberg.org>, 2024.
  17. msgid ""
  18. msgstr ""
  19. "Project-Id-Version: searx\n"
  20. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  21. "POT-Creation-Date: 2024-11-24 11:51+0000\n"
  22. "PO-Revision-Date: 2024-11-16 08:04+0000\n"
  23. "Last-Translator: KinoCineaste "
  24. "<KinoCineaste@users.noreply.translate.codeberg.org>\n"
  25. "Language: eo\n"
  26. "Language-Team: Esperanto "
  27. "<https://translate.codeberg.org/projects/searxng/searxng/eo/>\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 "sen plia subgrupiĝo"
  37. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  38. #: searx/searxng.msg
  39. msgid "other"
  40. msgstr "alia"
  41. #. CATEGORY_NAMES['FILES']
  42. #: searx/searxng.msg
  43. msgid "files"
  44. msgstr "dosieroj"
  45. #. CATEGORY_NAMES['GENERAL']
  46. #: searx/searxng.msg
  47. msgid "general"
  48. msgstr "ĝenerala"
  49. #. CATEGORY_NAMES['MUSIC']
  50. #: searx/searxng.msg
  51. msgid "music"
  52. msgstr "muziko"
  53. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  54. #: searx/searxng.msg
  55. msgid "social media"
  56. msgstr "sociaj retoj"
  57. #. CATEGORY_NAMES['IMAGES']
  58. #: searx/searxng.msg
  59. msgid "images"
  60. msgstr "bildoj"
  61. #. CATEGORY_NAMES['VIDEOS']
  62. #: searx/searxng.msg
  63. msgid "videos"
  64. msgstr "videoj"
  65. #. CATEGORY_NAMES['RADIO']
  66. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  67. msgid "radio"
  68. msgstr "radio"
  69. #. CATEGORY_NAMES['TV']
  70. #: searx/searxng.msg
  71. msgid "tv"
  72. msgstr "televido"
  73. #. CATEGORY_NAMES['IT']
  74. #: searx/searxng.msg
  75. msgid "it"
  76. msgstr "komputiko"
  77. #. CATEGORY_NAMES['NEWS']
  78. #: searx/searxng.msg
  79. msgid "news"
  80. msgstr "novaĵoj"
  81. #. CATEGORY_NAMES['MAP']
  82. #: searx/searxng.msg
  83. msgid "map"
  84. msgstr "mapo"
  85. #. CATEGORY_NAMES['ONIONS']
  86. #: searx/searxng.msg
  87. msgid "onions"
  88. msgstr "cepoj"
  89. #. CATEGORY_NAMES['SCIENCE']
  90. #: searx/searxng.msg
  91. msgid "science"
  92. msgstr "scienco"
  93. #. CATEGORY_GROUPS['APPS']
  94. #: searx/searxng.msg
  95. msgid "apps"
  96. msgstr "aplikaĵoj"
  97. #. CATEGORY_GROUPS['DICTIONARIES']
  98. #: searx/searxng.msg
  99. msgid "dictionaries"
  100. msgstr "vortaroj"
  101. #. CATEGORY_GROUPS['LYRICS']
  102. #: searx/searxng.msg
  103. msgid "lyrics"
  104. msgstr "kantotekstoj"
  105. #. CATEGORY_GROUPS['PACKAGES']
  106. #: searx/searxng.msg
  107. msgid "packages"
  108. msgstr "pakoj"
  109. #. CATEGORY_GROUPS['Q_A']
  110. #: searx/searxng.msg
  111. msgid "q&a"
  112. msgstr "dϗr"
  113. #. CATEGORY_GROUPS['REPOS']
  114. #: searx/searxng.msg
  115. msgid "repos"
  116. msgstr "deponejoj"
  117. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  118. #: searx/searxng.msg
  119. msgid "software wikis"
  120. msgstr "programaro vikioj"
  121. #. CATEGORY_GROUPS['WEB']
  122. #: searx/searxng.msg
  123. msgid "web"
  124. msgstr "reto"
  125. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  126. #: searx/searxng.msg
  127. msgid "scientific publications"
  128. msgstr "sciencaj publikaĵoj"
  129. #. STYLE_NAMES['AUTO']
  130. #: searx/searxng.msg
  131. msgid "auto"
  132. msgstr "aŭtomate"
  133. #. STYLE_NAMES['LIGHT']
  134. #: searx/searxng.msg
  135. msgid "light"
  136. msgstr "hela"
  137. #. STYLE_NAMES['DARK']
  138. #: searx/searxng.msg
  139. msgid "dark"
  140. msgstr "malhela"
  141. #. STYLE_NAMES['BLACK']
  142. #: searx/searxng.msg
  143. msgid "black"
  144. msgstr "nigra"
  145. #. BRAND_CUSTOM_LINKS['UPTIME']
  146. #: searx/searxng.msg
  147. msgid "Uptime"
  148. msgstr ""
  149. #. BRAND_CUSTOM_LINKS['ABOUT']
  150. #: searx/searxng.msg searx/templates/simple/base.html:50
  151. msgid "About"
  152. msgstr "Pri"
  153. #. WEATHER_TERMS['AVERAGE TEMP.']
  154. #: searx/engines/wttr.py:32 searx/searxng.msg
  155. msgid "Average temp."
  156. msgstr ""
  157. #. WEATHER_TERMS['CLOUD COVER']
  158. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  159. msgid "Cloud cover"
  160. msgstr ""
  161. #. WEATHER_TERMS['CONDITION']
  162. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  163. #: searx/searxng.msg
  164. msgid "Condition"
  165. msgstr ""
  166. #. WEATHER_TERMS['CURRENT CONDITION']
  167. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  168. #: searx/searxng.msg
  169. msgid "Current condition"
  170. msgstr ""
  171. #. WEATHER_TERMS['EVENING']
  172. #: searx/engines/wttr.py:100 searx/searxng.msg
  173. msgid "Evening"
  174. msgstr "Vespero"
  175. #. WEATHER_TERMS['FEELS LIKE']
  176. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  177. #: searx/engines/wttr.py:59 searx/searxng.msg
  178. msgid "Feels like"
  179. msgstr ""
  180. #. WEATHER_TERMS['HUMIDITY']
  181. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  182. #: searx/engines/wttr.py:68 searx/searxng.msg
  183. msgid "Humidity"
  184. msgstr ""
  185. #. WEATHER_TERMS['MAX TEMP.']
  186. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  187. #: searx/searxng.msg
  188. msgid "Max temp."
  189. msgstr ""
  190. #. WEATHER_TERMS['MIN TEMP.']
  191. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  192. #: searx/searxng.msg
  193. msgid "Min temp."
  194. msgstr ""
  195. #. WEATHER_TERMS['MORNING']
  196. #: searx/engines/wttr.py:100 searx/searxng.msg
  197. msgid "Morning"
  198. msgstr "Mateno"
  199. #. WEATHER_TERMS['NIGHT']
  200. #: searx/engines/wttr.py:100 searx/searxng.msg
  201. msgid "Night"
  202. msgstr "Nokto"
  203. #. WEATHER_TERMS['NOON']
  204. #: searx/engines/wttr.py:100 searx/searxng.msg
  205. msgid "Noon"
  206. msgstr "Tagmezo"
  207. #. WEATHER_TERMS['PRESSURE']
  208. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  209. msgid "Pressure"
  210. msgstr ""
  211. #. WEATHER_TERMS['SUNRISE']
  212. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  213. #: searx/searxng.msg
  214. msgid "Sunrise"
  215. msgstr ""
  216. #. WEATHER_TERMS['SUNSET']
  217. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  218. #: searx/searxng.msg
  219. msgid "Sunset"
  220. msgstr ""
  221. #. WEATHER_TERMS['TEMPERATURE']
  222. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  223. #: searx/engines/wttr.py:55 searx/searxng.msg
  224. msgid "Temperature"
  225. msgstr ""
  226. #. WEATHER_TERMS['UV INDEX']
  227. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  228. #: searx/searxng.msg
  229. msgid "UV index"
  230. msgstr ""
  231. #. WEATHER_TERMS['VISIBILITY']
  232. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  233. #: searx/searxng.msg
  234. msgid "Visibility"
  235. msgstr ""
  236. #. WEATHER_TERMS['WIND']
  237. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  238. #: searx/engines/wttr.py:62 searx/searxng.msg
  239. msgid "Wind"
  240. msgstr ""
  241. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  242. #: searx/engines/lemmy.py:85 searx/searxng.msg
  243. msgid "subscribers"
  244. msgstr ""
  245. #. SOCIAL_MEDIA_TERMS['POSTS']
  246. #: searx/engines/lemmy.py:86 searx/searxng.msg
  247. msgid "posts"
  248. msgstr ""
  249. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  250. #: searx/engines/lemmy.py:87 searx/searxng.msg
  251. msgid "active users"
  252. msgstr ""
  253. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  254. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  255. #: searx/engines/lemmy.py:130 searx/searxng.msg
  256. msgid "comments"
  257. msgstr ""
  258. #. SOCIAL_MEDIA_TERMS['USER']
  259. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  260. msgid "user"
  261. msgstr ""
  262. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  263. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  264. msgid "community"
  265. msgstr ""
  266. #. SOCIAL_MEDIA_TERMS['POINTS']
  267. #: searx/engines/hackernews.py:82 searx/searxng.msg
  268. msgid "points"
  269. msgstr ""
  270. #. SOCIAL_MEDIA_TERMS['TITLE']
  271. #: searx/searxng.msg
  272. msgid "title"
  273. msgstr ""
  274. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  275. #: searx/engines/hackernews.py:85 searx/searxng.msg
  276. msgid "author"
  277. msgstr ""
  278. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  279. #: searx/engines/discourse.py:149 searx/searxng.msg
  280. msgid "open"
  281. msgstr ""
  282. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  283. #: searx/engines/discourse.py:149 searx/searxng.msg
  284. msgid "closed"
  285. msgstr ""
  286. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  287. #: searx/engines/discourse.py:160 searx/searxng.msg
  288. msgid "answered"
  289. msgstr ""
  290. #: searx/webapp.py:332
  291. msgid "No item found"
  292. msgstr "Nenio trovita"
  293. #: searx/engines/qwant.py:288
  294. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
  295. msgid "Source"
  296. msgstr "Fonto"
  297. #: searx/webapp.py:336
  298. msgid "Error loading the next page"
  299. msgstr "Eraro dum la ŝarĝado de la sekvan paĝon"
  300. #: searx/webapp.py:495 searx/webapp.py:898
  301. msgid "Invalid settings, please edit your preferences"
  302. msgstr "Nevalidaj agordoj, bonvolu redaktu viajn agordojn"
  303. #: searx/webapp.py:511
  304. msgid "Invalid settings"
  305. msgstr "Nevalidaj agordoj"
  306. #: searx/webapp.py:588 searx/webapp.py:670
  307. msgid "search error"
  308. msgstr "serĉa eraro"
  309. #: searx/webutils.py:36
  310. msgid "timeout"
  311. msgstr "eltempiĝo"
  312. #: searx/webutils.py:37
  313. msgid "parsing error"
  314. msgstr "analiza eraro"
  315. #: searx/webutils.py:38
  316. msgid "HTTP protocol error"
  317. msgstr "HTTP-protokolo-eraro"
  318. #: searx/webutils.py:39
  319. msgid "network error"
  320. msgstr "reta eraro"
  321. #: searx/webutils.py:40
  322. msgid "SSL error: certificate validation has failed"
  323. msgstr "SSL-eraro: atestila validigo malsukcesis"
  324. #: searx/webutils.py:42
  325. msgid "unexpected crash"
  326. msgstr "neatendita kraŝo"
  327. #: searx/webutils.py:49
  328. msgid "HTTP error"
  329. msgstr "HTTP-eraro"
  330. #: searx/webutils.py:50
  331. msgid "HTTP connection error"
  332. msgstr "HTTP-konekto-eraro"
  333. #: searx/webutils.py:56
  334. msgid "proxy error"
  335. msgstr "prokurilo-eraro"
  336. #: searx/webutils.py:57
  337. msgid "CAPTCHA"
  338. msgstr "CAPTCHA"
  339. #: searx/webutils.py:58
  340. msgid "too many requests"
  341. msgstr "tro da petoj"
  342. #: searx/webutils.py:59
  343. msgid "access denied"
  344. msgstr "aliro rifuzita"
  345. #: searx/webutils.py:60
  346. msgid "server API error"
  347. msgstr "servilo-API-eraro"
  348. #: searx/webutils.py:79
  349. msgid "Suspended"
  350. msgstr "Suspendigita"
  351. #: searx/webutils.py:314
  352. msgid "{minutes} minute(s) ago"
  353. msgstr "antaŭ {minutes} minuto(j)"
  354. #: searx/webutils.py:315
  355. msgid "{hours} hour(s), {minutes} minute(s) ago"
  356. msgstr "antaŭ {hours} horo(j), {minutes} minuto(j)"
  357. #: searx/answerers/random/answerer.py:76
  358. msgid "Random value generator"
  359. msgstr "Hazardvalora generilo"
  360. #: searx/answerers/random/answerer.py:77
  361. msgid "Generate different random values"
  362. msgstr "Generi diversajn hazardajn valorojn"
  363. #: searx/answerers/statistics/answerer.py:50
  364. msgid "Statistics functions"
  365. msgstr "Statistikaj funkcioj"
  366. #: searx/answerers/statistics/answerer.py:51
  367. msgid "Compute {functions} of the arguments"
  368. msgstr "Kalkuli {functions} de la argumentoj"
  369. #: searx/engines/mozhi.py:57
  370. msgid "Synonyms"
  371. msgstr ""
  372. #: searx/engines/openstreetmap.py:159
  373. msgid "Get directions"
  374. msgstr "Akiri direktojn"
  375. #: searx/engines/pdbe.py:96
  376. msgid "{title} (OBSOLETE)"
  377. msgstr "{title} (MALAKTUALA)"
  378. #: searx/engines/pdbe.py:103
  379. msgid "This entry has been superseded by"
  380. msgstr "Tiu ĉi enigo estis anstataŭigita per"
  381. #: searx/engines/qwant.py:290
  382. msgid "Channel"
  383. msgstr "Kanalo"
  384. #: searx/engines/radio_browser.py:105
  385. msgid "bitrate"
  386. msgstr "bito-rapido"
  387. #: searx/engines/radio_browser.py:106
  388. msgid "votes"
  389. msgstr "voĉoj"
  390. #: searx/engines/radio_browser.py:107
  391. msgid "clicks"
  392. msgstr "klakoj"
  393. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  394. #: searx/engines/zlibrary.py:137
  395. msgid "Language"
  396. msgstr "Lingvo"
  397. #: searx/engines/semantic_scholar.py:78
  398. msgid ""
  399. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  400. "{lastCitationVelocityYear}"
  401. msgstr ""
  402. "{numCitations} citaĵoj de la {firstCitationVelocityYear}-a jaro ĝis la "
  403. "{lastCitationVelocityYear}-a jaro"
  404. #: searx/engines/tineye.py:45
  405. msgid ""
  406. "Could not read that image url. This may be due to an unsupported file "
  407. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  408. " WebP."
  409. msgstr ""
  410. "Neeblas legi la URL de ĉi tiun bildon. Ĝi povas esti pro nesubtenata "
  411. "dosierformo. TineEye nur subtenas bildojn, kiuj estas JPEG, PNG, GIF, "
  412. "BMP, TIFF aŭ WebP."
  413. #: searx/engines/tineye.py:51
  414. msgid ""
  415. "The image is too simple to find matches. TinEye requires a basic level of"
  416. " visual detail to successfully identify matches."
  417. msgstr ""
  418. "La bildo estas tro simpla por trovi kongruojn. TinEye bezonas bazan "
  419. "levelon de detalo por sukcese identigi kongruojn."
  420. #: searx/engines/tineye.py:57
  421. msgid "The image could not be downloaded."
  422. msgstr "La bildo ne eblis elŝuti."
  423. #: searx/engines/zlibrary.py:138
  424. msgid "Book rating"
  425. msgstr "Taksado de libro"
  426. #: searx/engines/zlibrary.py:139
  427. msgid "File quality"
  428. msgstr "Dosiera kvalito"
  429. #: searx/plugins/calculator.py:18
  430. msgid "Calculate mathematical expressions via the search bar"
  431. msgstr ""
  432. #: searx/plugins/hash_plugin.py:10
  433. msgid "Converts strings to different hash digests."
  434. msgstr "Konvertas ĉenojn al malsamaj hash-digestoj."
  435. #: searx/plugins/hash_plugin.py:38
  436. msgid "hash digest"
  437. msgstr "haketa mesaĝaro"
  438. #: searx/plugins/hostnames.py:103
  439. msgid "Hostnames plugin"
  440. msgstr ""
  441. #: searx/plugins/hostnames.py:104
  442. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  443. msgstr ""
  444. #: searx/plugins/oa_doi_rewrite.py:12
  445. msgid "Open Access DOI rewrite"
  446. msgstr "Malfermalira COI-ŝanĝo"
  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. "Eviti pagomurojn per direkto al malfermaliraj versioj de eldonaĵoj, se "
  453. "eblas"
  454. #: searx/plugins/self_info.py:9
  455. msgid "Self Information"
  456. msgstr "Meminformoj"
  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. "Montras vian IP-adreson se la serĉofrazo estas \"ip\" kaj vian klientan "
  463. "aplikaĵon se la serĉofrazo enhavas \"user agent\"."
  464. #: searx/plugins/self_info.py:28
  465. msgid "Your IP is: "
  466. msgstr ""
  467. #: searx/plugins/self_info.py:31
  468. msgid "Your user-agent is: "
  469. msgstr ""
  470. #: searx/plugins/tor_check.py:24
  471. msgid "Tor check plugin"
  472. msgstr "Tor-kontrolo kromprogramo"
  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. "Ĉi tiu kromaĵo kontrolas ĉu la adreso de la peto estas Tor elir-nodo, kaj"
  479. " informas la uzanton ĉu ĝi estas; kiel check.torproject.org, sed de "
  480. "SearXNG."
  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. "Ne eblis elŝuti liston de Tor elirnodoj de: https://check.torproject.org"
  487. "/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. "Vi uzas Tor kaj ŝajnas, ke vi havas ĉi tiun eksteran IP-adreson: "
  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 "Vi ne uzas Tor kaj vi havas ĉi tiun eksteran IP-adreson: {ip_address}"
  498. #: searx/plugins/tracker_url_remover.py:16
  499. msgid "Tracker URL remover"
  500. msgstr "Forigilo de URL-spuriloj"
  501. #: searx/plugins/tracker_url_remover.py:17
  502. msgid "Remove trackers arguments from the returned URL"
  503. msgstr "Forviŝi spurajn argumentojn el la ricevita URL"
  504. #: searx/plugins/unit_converter.py:29
  505. msgid "Convert between units"
  506. msgstr ""
  507. #: searx/templates/simple/404.html:4
  508. msgid "Page not found"
  509. msgstr "Paĝo ne trovita"
  510. #: searx/templates/simple/404.html:6
  511. #, python-format
  512. msgid "Go to %(search_page)s."
  513. msgstr "Iri al %(search_page)s."
  514. #: searx/templates/simple/404.html:6
  515. msgid "search page"
  516. msgstr "Serĉopaĝo"
  517. #: searx/templates/simple/base.html:54
  518. msgid "Donate"
  519. msgstr "Donacu"
  520. #: searx/templates/simple/base.html:58
  521. #: searx/templates/simple/preferences.html:156
  522. msgid "Preferences"
  523. msgstr "Agordoj"
  524. #: searx/templates/simple/base.html:68
  525. msgid "Powered by"
  526. msgstr "Funkciigita per"
  527. #: searx/templates/simple/base.html:68
  528. msgid "a privacy-respecting, open metasearch engine"
  529. msgstr "privateco-respektanta, libera metaserĉilo"
  530. #: searx/templates/simple/base.html:69
  531. #: searx/templates/simple/result_templates/packages.html:59
  532. msgid "Source code"
  533. msgstr "Fontaĵo"
  534. #: searx/templates/simple/base.html:70
  535. msgid "Issue tracker"
  536. msgstr "Spurilo de problemoj"
  537. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  538. msgid "Engine stats"
  539. msgstr "Statistikoj pri la motoro"
  540. #: searx/templates/simple/base.html:73
  541. msgid "Public instances"
  542. msgstr "Publikaj instancoj"
  543. #: searx/templates/simple/base.html:76
  544. msgid "Privacy policy"
  545. msgstr "Regularo pri privateco"
  546. #: searx/templates/simple/base.html:79
  547. msgid "Contact instance maintainer"
  548. msgstr "Kontaktu instancon prizorganto"
  549. #: searx/templates/simple/categories.html:26
  550. msgid "Click on the magnifier to perform search"
  551. msgstr "Alklaku la lupeon por serĉi"
  552. #: searx/templates/simple/macros.html:40
  553. msgid "Length"
  554. msgstr "Longo"
  555. #: searx/templates/simple/macros.html:41
  556. msgid "Views"
  557. msgstr ""
  558. #: searx/templates/simple/macros.html:42
  559. #: searx/templates/simple/result_templates/files.html:34
  560. #: searx/templates/simple/result_templates/images.html:19
  561. #: searx/templates/simple/result_templates/paper.html:6
  562. msgid "Author"
  563. msgstr "Verkisto"
  564. #: searx/templates/simple/macros.html:50
  565. msgid "cached"
  566. msgstr "kaŝmemorigita"
  567. #: searx/templates/simple/macros.html:50
  568. msgid "proxied"
  569. msgstr "prokurata"
  570. #: searx/templates/simple/new_issue.html:64
  571. msgid "Start submitting a new issue on GitHub"
  572. msgstr ""
  573. #: searx/templates/simple/new_issue.html:66
  574. msgid "Please check for existing bugs about this engine on GitHub"
  575. msgstr "Bonvolu kontroli ekzistantajn cimojn pri ĉi tiu motoro en GitHub"
  576. #: searx/templates/simple/new_issue.html:69
  577. msgid "I confirm there is no existing bug about the issue I encounter"
  578. msgstr "Mi konfirmas, ke ne ekzistas cimo pri la problemo, kiun mi renkontas"
  579. #: searx/templates/simple/new_issue.html:71
  580. msgid "If this is a public instance, please specify the URL in the bug report"
  581. msgstr "Se ĉi tio estas publika kazo, bonvolu specifi la URL en la cimraporto"
  582. #: searx/templates/simple/new_issue.html:72
  583. msgid "Submit a new issue on Github including the above information"
  584. msgstr "Sendu novan numeron ĉe Github inkluzive de ĉi-supraj informoj"
  585. #: searx/templates/simple/preferences.html:65
  586. msgid "No HTTPS"
  587. msgstr "Neniu HTTPS"
  588. #: searx/templates/simple/elements/engines_msg.html:14
  589. #: searx/templates/simple/preferences.html:69
  590. #: searx/templates/simple/preferences.html:70
  591. msgid "View error logs and submit a bug report"
  592. msgstr "Vidi erarprotokolojn kaj sendi erarraporton"
  593. #: searx/templates/simple/preferences.html:74
  594. msgid "!bang for this engine"
  595. msgstr "!bang por ĉi tiu serĉilo"
  596. #: searx/templates/simple/preferences.html:80
  597. msgid "!bang for its categories"
  598. msgstr "!bang por ĝiaj kategorioj"
  599. #: searx/templates/simple/preferences.html:102
  600. #: searx/templates/simple/stats.html:64
  601. msgid "Median"
  602. msgstr "Meza"
  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 "Malsukcesa(j) kontrolilo(j): "
  614. #: searx/templates/simple/preferences.html:138
  615. msgid "Errors:"
  616. msgstr "Eraroj:"
  617. #: searx/templates/simple/preferences.html:162
  618. msgid "General"
  619. msgstr "Ĝenerala"
  620. #: searx/templates/simple/preferences.html:165
  621. msgid "Default categories"
  622. msgstr "Defaŭltaj kategorioj"
  623. #: searx/templates/simple/preferences.html:190
  624. msgid "User interface"
  625. msgstr "Fasado"
  626. #: searx/templates/simple/preferences.html:211
  627. msgid "Privacy"
  628. msgstr "Privateco"
  629. #: searx/templates/simple/preferences.html:224
  630. msgid "Engines"
  631. msgstr "Serĉiloj"
  632. #: searx/templates/simple/preferences.html:226
  633. msgid "Currently used search engines"
  634. msgstr "Aktuale uzataj serĉiloj"
  635. #: searx/templates/simple/preferences.html:234
  636. msgid "Special Queries"
  637. msgstr "Specialaj Demandoj"
  638. #: searx/templates/simple/preferences.html:240
  639. msgid "Cookies"
  640. msgstr "Kuketoj"
  641. #: searx/templates/simple/results.html:23
  642. msgid "Answers"
  643. msgstr "Respondoj"
  644. #: searx/templates/simple/results.html:42
  645. msgid "Number of results"
  646. msgstr "Nombro da rezultoj"
  647. #: searx/templates/simple/results.html:48
  648. msgid "Info"
  649. msgstr "Info"
  650. #: searx/templates/simple/results.html:75
  651. msgid "Try searching for:"
  652. msgstr "Provu serĉi:"
  653. #: searx/templates/simple/results.html:107
  654. msgid "Back to top"
  655. msgstr "Reen al supro"
  656. #: searx/templates/simple/results.html:125
  657. msgid "Previous page"
  658. msgstr "Antaŭa paĝo"
  659. #: searx/templates/simple/results.html:143
  660. msgid "Next page"
  661. msgstr "Sekva paĝo"
  662. #: searx/templates/simple/search.html:3
  663. msgid "Display the front page"
  664. msgstr "Montru la ĉefpaĝon"
  665. #: searx/templates/simple/search.html:9
  666. #: searx/templates/simple/simple_search.html:5
  667. msgid "Search for..."
  668. msgstr "Serĉi..."
  669. #: searx/templates/simple/search.html:10
  670. #: searx/templates/simple/simple_search.html:6
  671. msgid "clear"
  672. msgstr "purigi"
  673. #: searx/templates/simple/search.html:11
  674. #: searx/templates/simple/simple_search.html:7
  675. msgid "search"
  676. msgstr "serĉi"
  677. #: searx/templates/simple/stats.html:21
  678. msgid "There is currently no data available. "
  679. msgstr "Nun ne estas datumoj disponeblaj."
  680. #: searx/templates/simple/preferences/engines.html:24
  681. #: searx/templates/simple/stats.html:25
  682. msgid "Engine name"
  683. msgstr "Nomo de serĉilo"
  684. #: searx/templates/simple/stats.html:26
  685. msgid "Scores"
  686. msgstr "Poentaroj"
  687. #: searx/templates/simple/stats.html:27
  688. msgid "Result count"
  689. msgstr "Rezultkalkulo"
  690. #: searx/templates/simple/elements/engines_msg.html:7
  691. #: searx/templates/simple/preferences/engines.html:31
  692. #: searx/templates/simple/stats.html:28
  693. msgid "Response time"
  694. msgstr "Tempo de respondo"
  695. #: searx/templates/simple/preferences/engines.html:35
  696. #: searx/templates/simple/stats.html:29
  697. msgid "Reliability"
  698. msgstr "Fidindeco"
  699. #: searx/templates/simple/stats.html:59
  700. msgid "Total"
  701. msgstr "Entute"
  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 "Prilaborado"
  708. #: searx/templates/simple/stats.html:99
  709. msgid "Warnings"
  710. msgstr "Avertoj"
  711. #: searx/templates/simple/stats.html:99
  712. msgid "Errors and exceptions"
  713. msgstr "Eraroj kaj esceptoj"
  714. #: searx/templates/simple/stats.html:105
  715. msgid "Exception"
  716. msgstr "Escepton"
  717. #: searx/templates/simple/stats.html:107
  718. msgid "Message"
  719. msgstr "Mesaĝo"
  720. #: searx/templates/simple/stats.html:109
  721. msgid "Percentage"
  722. msgstr "Procento"
  723. #: searx/templates/simple/stats.html:111
  724. msgid "Parameter"
  725. msgstr "Parametro"
  726. #: searx/templates/simple/result_templates/files.html:36
  727. #: searx/templates/simple/stats.html:119
  728. msgid "Filename"
  729. msgstr "Dosiernomo"
  730. #: searx/templates/simple/stats.html:120
  731. msgid "Function"
  732. msgstr "Funkcio"
  733. #: searx/templates/simple/stats.html:121
  734. msgid "Code"
  735. msgstr "Fontkodo"
  736. #: searx/templates/simple/stats.html:128
  737. msgid "Checker"
  738. msgstr "Kontrolilo"
  739. #: searx/templates/simple/stats.html:131
  740. msgid "Failed test"
  741. msgstr "Malsukcesa testo"
  742. #: searx/templates/simple/stats.html:132
  743. msgid "Comment(s)"
  744. msgstr "Komento(j)"
  745. #: searx/templates/simple/elements/apis.html:3
  746. msgid "Download results"
  747. msgstr "Elŝuti rezultojn"
  748. #: searx/templates/simple/elements/engines_msg.html:4
  749. msgid "Messages from the search engines"
  750. msgstr "Mesaĝoj de la serĉiloj"
  751. #: searx/templates/simple/elements/engines_msg.html:7
  752. msgid "seconds"
  753. msgstr "s"
  754. #: searx/templates/simple/elements/search_url.html:3
  755. msgid "Search URL"
  756. msgstr "Serĉi URL"
  757. #: searx/templates/simple/elements/search_url.html:4
  758. #: searx/templates/simple/preferences/cookies.html:54
  759. msgid "Copied"
  760. msgstr "Kopiita"
  761. #: searx/templates/simple/elements/search_url.html:4
  762. #: searx/templates/simple/preferences/cookies.html:54
  763. msgid "Copy"
  764. msgstr "Kopii"
  765. #: searx/templates/simple/elements/suggestions.html:3
  766. msgid "Suggestions"
  767. msgstr "Sugestoj"
  768. #: searx/templates/simple/filters/languages.html:1
  769. #: searx/templates/simple/preferences/language.html:2
  770. msgid "Search language"
  771. msgstr "Serĉolingvo"
  772. #: searx/templates/simple/filters/languages.html:4
  773. #: searx/templates/simple/preferences/language.html:7
  774. msgid "Default language"
  775. msgstr "Defaŭlta lingvo"
  776. #: searx/templates/simple/filters/languages.html:8
  777. #: searx/templates/simple/preferences/language.html:11
  778. msgid "Auto-detect"
  779. msgstr "Aŭtomate detekti"
  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 "SekuraSerĉo"
  788. #: searx/templates/simple/filters/safesearch.html:2
  789. #: searx/templates/simple/preferences/safesearch.html:7
  790. msgid "Strict"
  791. msgstr "Strikta"
  792. #: searx/templates/simple/filters/safesearch.html:3
  793. #: searx/templates/simple/preferences/safesearch.html:11
  794. msgid "Moderate"
  795. msgstr "Modera"
  796. #: searx/templates/simple/filters/safesearch.html:4
  797. #: searx/templates/simple/preferences/safesearch.html:15
  798. msgid "None"
  799. msgstr "Neniu"
  800. #: searx/templates/simple/filters/time_range.html:1
  801. #: searx/templates/simple/preferences/engines.html:28
  802. msgid "Time range"
  803. msgstr "Tempa intervalo"
  804. #: searx/templates/simple/filters/time_range.html:3
  805. msgid "Anytime"
  806. msgstr "Iam ajn"
  807. #: searx/templates/simple/filters/time_range.html:6
  808. msgid "Last day"
  809. msgstr "Pasinta tago"
  810. #: searx/templates/simple/filters/time_range.html:9
  811. msgid "Last week"
  812. msgstr "Pasinta semajno"
  813. #: searx/templates/simple/filters/time_range.html:12
  814. msgid "Last month"
  815. msgstr "Pasinta monato"
  816. #: searx/templates/simple/filters/time_range.html:15
  817. msgid "Last year"
  818. msgstr "Pasinta jaro"
  819. #: searx/templates/simple/messages/no_cookies.html:3
  820. msgid "Information!"
  821. msgstr "Informoj!"
  822. #: searx/templates/simple/messages/no_cookies.html:4
  823. msgid "currently, there are no cookies defined."
  824. msgstr "nun ne estas ajnaj kuketoj difinitaj."
  825. #: searx/templates/simple/messages/no_results.html:6
  826. msgid "Sorry!"
  827. msgstr "Pardonu!"
  828. #: searx/templates/simple/messages/no_results.html:12
  829. msgid "No results were found. You can try to:"
  830. msgstr "Neniuj rezultoj estis trovitaj. Vi povas provi:"
  831. #: searx/templates/simple/messages/no_results.html:14
  832. msgid "There are no more results. You can try to:"
  833. msgstr "Estas nenio plu rezultoj. Vi povas provi:"
  834. #: searx/templates/simple/messages/no_results.html:19
  835. msgid "Refresh the page."
  836. msgstr "Refreŝigi la paĝon."
  837. #: searx/templates/simple/messages/no_results.html:20
  838. msgid "Search for another query or select another category (above)."
  839. msgstr "Serĉu alian demandon aŭ elektu alian kategorion (supre)."
  840. #: searx/templates/simple/messages/no_results.html:21
  841. msgid "Change the search engine used in the preferences:"
  842. msgstr "Ŝanĝi la serĉilon uzatan en la preferoj:"
  843. #: searx/templates/simple/messages/no_results.html:22
  844. msgid "Switch to another instance:"
  845. msgstr "Ŝanĝi al alia instanco:"
  846. #: searx/templates/simple/messages/no_results.html:24
  847. msgid "Search for another query or select another category."
  848. msgstr "Ŝercu por alia demandon aŭ elektu alia kategorio."
  849. #: searx/templates/simple/messages/no_results.html:25
  850. msgid "Go back to the previous page using the previous page button."
  851. msgstr "Reiru al la antaŭa paĝon uzata la antaŭa paĝo butono."
  852. #: searx/templates/simple/preferences/answerers.html:4
  853. #: searx/templates/simple/preferences/engines.html:23
  854. msgid "Allow"
  855. msgstr "Permesi"
  856. #: searx/templates/simple/preferences/answerers.html:5
  857. msgid "Keywords"
  858. msgstr "Ŝlosilvortoj"
  859. #: searx/templates/simple/preferences/answerers.html:6
  860. #: searx/templates/simple/result_templates/packages.html:7
  861. msgid "Name"
  862. msgstr "Nomo"
  863. #: searx/templates/simple/preferences/answerers.html:7
  864. msgid "Description"
  865. msgstr "Priskribo"
  866. #: searx/templates/simple/preferences/answerers.html:8
  867. msgid "Examples"
  868. msgstr "Ekzemploj"
  869. #: searx/templates/simple/preferences/answerers.html:13
  870. msgid "This is the list of SearXNG's instant answering modules."
  871. msgstr "Ĉi tiu estas la listo de la tujaj respondaj moduloj de SearXNG."
  872. #: searx/templates/simple/preferences/answerers.html:29
  873. msgid "This is the list of plugins."
  874. msgstr "Ĉi tiu estas la listo de kromaĵoj."
  875. #: searx/templates/simple/preferences/autocomplete.html:2
  876. msgid "Autocomplete"
  877. msgstr "Aŭtomate kompletigi"
  878. #: searx/templates/simple/preferences/autocomplete.html:15
  879. msgid "Find stuff as you type"
  880. msgstr "Trovi aferojn dum tajpado"
  881. #: searx/templates/simple/preferences/center_alignment.html:2
  882. msgid "Center Alignment"
  883. msgstr "Centra Vicigo"
  884. #: searx/templates/simple/preferences/center_alignment.html:14
  885. msgid "Displays results in the center of the page (Oscar layout)."
  886. msgstr "Montras rezultojn en la centro de la paĝo."
  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. "Jen la listo de kuketoj kaj iliaj valoroj SearXNG konservas en via "
  893. "komputilo."
  894. #: searx/templates/simple/preferences/cookies.html:3
  895. msgid "With that list, you can assess SearXNG transparency."
  896. msgstr "Kun tiu listo, vi povas taksi SearXNG-travideblecon."
  897. #: searx/templates/simple/preferences/cookies.html:9
  898. msgid "Cookie name"
  899. msgstr "Nomo de kuketo"
  900. #: searx/templates/simple/preferences/cookies.html:10
  901. msgid "Value"
  902. msgstr "Valoro"
  903. #: searx/templates/simple/preferences/cookies.html:23
  904. msgid "Search URL of the currently saved preferences"
  905. msgstr "Serĉo-URL kun aktuale konservitaj agordoj"
  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. "Rimarko: Precizigo de propraj agordoj en la serĉo-URL povas malaltigi "
  912. "privatecon per nevola diskonigo de la datumoj al alklikantaj retejoj."
  913. #: searx/templates/simple/preferences/cookies.html:35
  914. msgid "URL to restore your preferences in another browser"
  915. msgstr "URL por restarigi viajn preferojn en alia TTT-legilo"
  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. "Specifante kutimajn agordojn en la URL de preferoj povas esti uzata por "
  922. "sinkronigi preferojn tra aparatoj."
  923. #: searx/templates/simple/preferences/cookies.html:46
  924. msgid "Copy preferences hash"
  925. msgstr ""
  926. #: searx/templates/simple/preferences/cookies.html:57
  927. msgid "Insert copied preferences hash (without URL) to restore"
  928. msgstr ""
  929. #: searx/templates/simple/preferences/cookies.html:59
  930. msgid "Preferences hash"
  931. msgstr ""
  932. #: searx/templates/simple/preferences/doi_resolver.html:2
  933. msgid "Open Access DOI resolver"
  934. msgstr "Malfermalira COI-solvilo"
  935. #: searx/templates/simple/preferences/doi_resolver.html:14
  936. msgid "Select service used by DOI rewrite"
  937. msgstr "Elekti servon uzatan de DOI-reskribo"
  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. "Ĉi tiu langeto ne ekzistas en la uzantinterfaco, sed vi povas serĉi en ĉi"
  944. " tiuj serĉiloj per siaj !bangs."
  945. #: searx/templates/simple/preferences/engines.html:15
  946. msgid "Enable all"
  947. msgstr ""
  948. #: searx/templates/simple/preferences/engines.html:16
  949. msgid "Disable all"
  950. msgstr ""
  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 "Subtenas elektitan lingvon"
  957. #: searx/templates/simple/preferences/engines.html:29
  958. msgid "Weight"
  959. msgstr "Pezo"
  960. #: searx/templates/simple/preferences/engines.html:33
  961. msgid "Max time"
  962. msgstr "Maksimuma tempo"
  963. #: searx/templates/simple/preferences/favicon.html:2
  964. msgid "Favicon Resolver"
  965. msgstr ""
  966. #: searx/templates/simple/preferences/favicon.html:15
  967. msgid "Display favicons near search results"
  968. msgstr ""
  969. #: searx/templates/simple/preferences/footer.html:2
  970. msgid ""
  971. "These settings are stored in your cookies, this allows us not to store "
  972. "this data about you."
  973. msgstr ""
  974. "Tiuj ĉi agordoj estas konservitaj en viaj kuketoj, kio ebligas al ni ne "
  975. "konservi tiujn datumojn pri vi en nia servilo."
  976. #: searx/templates/simple/preferences/footer.html:3
  977. msgid ""
  978. "These cookies serve your sole convenience, we don't use these cookies to "
  979. "track you."
  980. msgstr "Tiuj kuketoj estas nur por via plaĉo, ni ne uzas ilin por spuri vin."
  981. #: searx/templates/simple/preferences/footer.html:6
  982. msgid "Save"
  983. msgstr "Konservi"
  984. #: searx/templates/simple/preferences/footer.html:9
  985. msgid "Reset defaults"
  986. msgstr "Reagordi al defaŭlto"
  987. #: searx/templates/simple/preferences/footer.html:13
  988. msgid "Back"
  989. msgstr "Reen"
  990. #: searx/templates/simple/preferences/hotkeys.html:2
  991. msgid "Hotkeys"
  992. msgstr "Klavaraj ŝparvojoj"
  993. #: searx/templates/simple/preferences/hotkeys.html:13
  994. msgid "Vim-like"
  995. msgstr "Vim-simila"
  996. #: searx/templates/simple/preferences/hotkeys.html:18
  997. msgid ""
  998. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  999. "key on main or result page to get help."
  1000. msgstr ""
  1001. "Navigu serĉrezultojn per klavaraj ŝparvojoj (JavaScript bezonata). Premu "
  1002. "\"h\" klavon sur ĉefa aŭ rezultpaĝo por ricevi helpon."
  1003. #: searx/templates/simple/preferences/image_proxy.html:2
  1004. msgid "Image proxy"
  1005. msgstr "Prokurila servilo por bildoj"
  1006. #: searx/templates/simple/preferences/image_proxy.html:14
  1007. msgid "Proxying image results through SearXNG"
  1008. msgstr "Prokurado de bildaj rezultoj per SearXNG"
  1009. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1010. msgid "Infinite scroll"
  1011. msgstr "Senfina rulumado"
  1012. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1013. msgid "Automatically load next page when scrolling to bottom of current page"
  1014. msgstr "Aŭtomate ŝarĝi sekvan paĝon rulumante al la subo de la nuna paĝo"
  1015. #: searx/templates/simple/preferences/language.html:24
  1016. msgid "What language do you prefer for search?"
  1017. msgstr "Kiun lingvon vi pli ŝatas por serĉi?"
  1018. #: searx/templates/simple/preferences/language.html:25
  1019. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1020. msgstr ""
  1021. "Elektu Aŭtomate-detekti por lasi SearXNG detekti la lingvon de via "
  1022. "demando."
  1023. #: searx/templates/simple/preferences/method.html:2
  1024. msgid "HTTP Method"
  1025. msgstr "HTTP-Metodo"
  1026. #: searx/templates/simple/preferences/method.html:14
  1027. msgid "Change how forms are submitted"
  1028. msgstr "Ŝanĝi kiel oni sendas formularojn"
  1029. #: searx/templates/simple/preferences/query_in_title.html:2
  1030. msgid "Query in the page's title"
  1031. msgstr "Montru demandon en la titolo de la paĝo"
  1032. #: searx/templates/simple/preferences/query_in_title.html:14
  1033. msgid ""
  1034. "When enabled, the result page's title contains your query. Your browser "
  1035. "can record this title"
  1036. msgstr ""
  1037. "Kiam ĝi estas ebligita, la titolo de la rezultpaĝo enhavas vian demandon."
  1038. " Via TTT-legilo povas registri ĉi tiun titolon"
  1039. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1040. msgid "Results on new tabs"
  1041. msgstr "Rezultoj en novaj langetoj"
  1042. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1043. msgid "Open result links on new browser tabs"
  1044. msgstr "Malfermi rezultligilojn en novaj TTT-legilaj langetoj"
  1045. #: searx/templates/simple/preferences/safesearch.html:20
  1046. msgid "Filter content"
  1047. msgstr "Filtri enhavon"
  1048. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1049. msgid "Search on category select"
  1050. msgstr "Serĉi en elektita kategorio"
  1051. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1052. msgid ""
  1053. "Perform search immediately if a category selected. Disable to select "
  1054. "multiple categories"
  1055. msgstr ""
  1056. "Fari serĉon tuj se kategorio estas elektita. Malebligi elekti plurajn "
  1057. "kategoriojn"
  1058. #: searx/templates/simple/preferences/theme.html:2
  1059. msgid "Theme"
  1060. msgstr "Etoso"
  1061. #: searx/templates/simple/preferences/theme.html:14
  1062. msgid "Change SearXNG layout"
  1063. msgstr "Ŝanĝu SearXNG-aranĝon"
  1064. #: searx/templates/simple/preferences/theme.html:19
  1065. msgid "Theme style"
  1066. msgstr "Temo stilo"
  1067. #: searx/templates/simple/preferences/theme.html:31
  1068. msgid "Choose auto to follow your browser settings"
  1069. msgstr "Elektu 'auto' por sekvi la agordojn de via TTT-legilo"
  1070. #: searx/templates/simple/preferences/tokens.html:2
  1071. msgid "Engine tokens"
  1072. msgstr "Serĉiloj ĵetonoj"
  1073. #: searx/templates/simple/preferences/tokens.html:9
  1074. msgid "Access tokens for private engines"
  1075. msgstr "Alirĵetonoj por privataj serĉiloj"
  1076. #: searx/templates/simple/preferences/ui_locale.html:2
  1077. msgid "Interface language"
  1078. msgstr "Fasada lingvo"
  1079. #: searx/templates/simple/preferences/ui_locale.html:14
  1080. msgid "Change the language of the layout"
  1081. msgstr "Ŝanĝi lingvon de la fasono"
  1082. #: searx/templates/simple/result_templates/code.html:13
  1083. msgid "repo"
  1084. msgstr "Deponejo"
  1085. #: searx/templates/simple/result_templates/default.html:6
  1086. #: searx/templates/simple/result_templates/files.html:8
  1087. #: searx/templates/simple/result_templates/files.html:11
  1088. msgid "show media"
  1089. msgstr "montri aŭdvidaĵojn"
  1090. #: searx/templates/simple/result_templates/default.html:6
  1091. #: searx/templates/simple/result_templates/files.html:8
  1092. msgid "hide media"
  1093. msgstr "kaŝi aŭdvidaĵojn"
  1094. #: searx/templates/simple/result_templates/default.html:14
  1095. #: searx/templates/simple/result_templates/videos.html:14
  1096. msgid "This site did not provide any description."
  1097. msgstr "Ĉi tiu retejo ne disponigis ajnan priskribon."
  1098. #: searx/templates/simple/result_templates/files.html:38
  1099. #: searx/templates/simple/result_templates/images.html:22
  1100. #: searx/templates/simple/result_templates/torrent.html:11
  1101. msgid "Filesize"
  1102. msgstr "Dosiergrandeco"
  1103. #: searx/templates/simple/result_templates/files.html:40
  1104. msgid "Date"
  1105. msgstr "Dato"
  1106. #: searx/templates/simple/result_templates/files.html:42
  1107. #: searx/templates/simple/result_templates/paper.html:24
  1108. msgid "Type"
  1109. msgstr "Tipo"
  1110. #: searx/templates/simple/result_templates/images.html:20
  1111. msgid "Resolution"
  1112. msgstr "Distingivo"
  1113. #: searx/templates/simple/result_templates/images.html:21
  1114. msgid "Format"
  1115. msgstr "Formato"
  1116. #: searx/templates/simple/result_templates/images.html:24
  1117. msgid "Engine"
  1118. msgstr "Serĉilo"
  1119. #: searx/templates/simple/result_templates/images.html:25
  1120. msgid "View source"
  1121. msgstr "Vidi fonton"
  1122. #: searx/templates/simple/result_templates/map.html:12
  1123. msgid "address"
  1124. msgstr "adreso"
  1125. #: searx/templates/simple/result_templates/map.html:43
  1126. msgid "show map"
  1127. msgstr "montri mapon"
  1128. #: searx/templates/simple/result_templates/map.html:43
  1129. msgid "hide map"
  1130. msgstr "kaŝi mapon"
  1131. #: searx/templates/simple/result_templates/packages.html:12
  1132. msgid "Version"
  1133. msgstr "Versio"
  1134. #: searx/templates/simple/result_templates/packages.html:18
  1135. msgid "Maintainer"
  1136. msgstr ""
  1137. #: searx/templates/simple/result_templates/packages.html:24
  1138. msgid "Updated at"
  1139. msgstr ""
  1140. #: searx/templates/simple/result_templates/packages.html:30
  1141. #: searx/templates/simple/result_templates/paper.html:25
  1142. msgid "Tags"
  1143. msgstr "Etikedoj"
  1144. #: searx/templates/simple/result_templates/packages.html:36
  1145. msgid "Popularity"
  1146. msgstr ""
  1147. #: searx/templates/simple/result_templates/packages.html:42
  1148. msgid "License"
  1149. msgstr "Licenco"
  1150. #: searx/templates/simple/result_templates/packages.html:52
  1151. msgid "Project"
  1152. msgstr "Projektaj"
  1153. #: searx/templates/simple/result_templates/packages.html:55
  1154. msgid "Project homepage"
  1155. msgstr ""
  1156. #: searx/templates/simple/result_templates/paper.html:5
  1157. msgid "Published date"
  1158. msgstr "Eldonita dato"
  1159. #: searx/templates/simple/result_templates/paper.html:9
  1160. msgid "Journal"
  1161. msgstr "Revuo"
  1162. #: searx/templates/simple/result_templates/paper.html:22
  1163. msgid "Editor"
  1164. msgstr "Redaktoro"
  1165. #: searx/templates/simple/result_templates/paper.html:23
  1166. msgid "Publisher"
  1167. msgstr "Eldonejo"
  1168. #: searx/templates/simple/result_templates/paper.html:26
  1169. msgid "DOI"
  1170. msgstr "COI"
  1171. #: searx/templates/simple/result_templates/paper.html:27
  1172. msgid "ISSN"
  1173. msgstr "ISSN"
  1174. #: searx/templates/simple/result_templates/paper.html:28
  1175. msgid "ISBN"
  1176. msgstr "ISBN"
  1177. #: searx/templates/simple/result_templates/paper.html:33
  1178. msgid "PDF"
  1179. msgstr "PDF"
  1180. #: searx/templates/simple/result_templates/paper.html:34
  1181. msgid "HTML"
  1182. msgstr "HTML"
  1183. #: searx/templates/simple/result_templates/torrent.html:6
  1184. msgid "magnet link"
  1185. msgstr "magnetligilo"
  1186. #: searx/templates/simple/result_templates/torrent.html:7
  1187. msgid "torrent file"
  1188. msgstr "torentodosiero"
  1189. #: searx/templates/simple/result_templates/torrent.html:9
  1190. msgid "Seeder"
  1191. msgstr "Fonto"
  1192. #: searx/templates/simple/result_templates/torrent.html:9
  1193. msgid "Leecher"
  1194. msgstr "Ricevanto"
  1195. #: searx/templates/simple/result_templates/torrent.html:13
  1196. msgid "Number of Files"
  1197. msgstr "Nombro da Dosieroj"
  1198. #: searx/templates/simple/result_templates/videos.html:6
  1199. msgid "show video"
  1200. msgstr "montri videojn"
  1201. #: searx/templates/simple/result_templates/videos.html:6
  1202. msgid "hide video"
  1203. msgstr "kaŝi videojn"
  1204. #~ msgid "Engine time (sec)"
  1205. #~ msgstr "Motora tempo (s)"
  1206. #~ msgid "Page loads (sec)"
  1207. #~ msgstr "Paĝŝarĝo (sekundoj)"
  1208. #~ msgid "Errors"
  1209. #~ msgstr "Eraroj"
  1210. #~ msgid "CAPTCHA required"
  1211. #~ msgstr ""
  1212. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1213. #~ msgstr "Ŝanĝi HTTP-ligilojn al HTTPS, se eblas"
  1214. #~ msgid ""
  1215. #~ "Results are opened in the same "
  1216. #~ "window by default. This plugin "
  1217. #~ "overwrites the default behaviour to open"
  1218. #~ " links on new tabs/windows. (JavaScript "
  1219. #~ "required)"
  1220. #~ msgstr ""
  1221. #~ "Oni malfermas rezultojn en la sama "
  1222. #~ "langeto defaŭlte. Ĉi tiu aldonaĵo ŝanĝas"
  1223. #~ " la kutiman agmanieron por malfermi "
  1224. #~ "ligilojn en novaj langetoj/fenestroj. "
  1225. #~ "(ĜavoSkripto bezonata)"
  1226. #~ msgid "Color"
  1227. #~ msgstr "Koloro"
  1228. #~ msgid "Blue (default)"
  1229. #~ msgstr "Blua (defaŭlta)"
  1230. #~ msgid "Violet"
  1231. #~ msgstr "Viola"
  1232. #~ msgid "Green"
  1233. #~ msgstr "Verda"
  1234. #~ msgid "Cyan"
  1235. #~ msgstr "Bluverda"
  1236. #~ msgid "Orange"
  1237. #~ msgstr "Oranĝa"
  1238. #~ msgid "Red"
  1239. #~ msgstr "Ruĝa"
  1240. #~ msgid "Category"
  1241. #~ msgstr "Kategorio"
  1242. #~ msgid "Block"
  1243. #~ msgstr "Bloki"
  1244. #~ msgid "original context"
  1245. #~ msgstr "originala kunteksto"
  1246. #~ msgid "Plugins"
  1247. #~ msgstr "Aldonaĵoj"
  1248. #~ msgid "Answerers"
  1249. #~ msgstr "Respondiloj"
  1250. #~ msgid "Avg. time"
  1251. #~ msgstr "Mezkvanta tempo"
  1252. #~ msgid "show details"
  1253. #~ msgstr "montri detalojn"
  1254. #~ msgid "hide details"
  1255. #~ msgstr "kaŝi detalojn"
  1256. #~ msgid "Load more..."
  1257. #~ msgstr "Ŝarĝi pli..."
  1258. #~ msgid "Loading..."
  1259. #~ msgstr ""
  1260. #~ msgid "Change searx layout"
  1261. #~ msgstr "Ŝanĝi fasonon de Searx"
  1262. #~ msgid "Proxying image results through searx"
  1263. #~ msgstr "Prokuri bildrezultojn per searx"
  1264. #~ msgid "This is the list of searx's instant answering modules."
  1265. #~ msgstr "Tio ĉi estas listo de tuje respondantaj moduloj de Searx."
  1266. #~ msgid ""
  1267. #~ "This is the list of cookies and"
  1268. #~ " their values searx is storing on "
  1269. #~ "your computer."
  1270. #~ msgstr ""
  1271. #~ "Ĉi tio estas listo de kuketoj kaj"
  1272. #~ " iliaj valoroj, kiujn searx konservas "
  1273. #~ "en via komputilo."
  1274. #~ msgid "With that list, you can assess searx transparency."
  1275. #~ msgstr "Kun tiu listo, vi povas kontroli la travideblecon de searx."
  1276. #~ msgid "It look like you are using searx first time."
  1277. #~ msgstr "Ŝajnas, ke ĉi tio estas via unua fojo, kiam vi uzas searx."
  1278. #~ msgid "Please, try again later or find another searx instance."
  1279. #~ msgstr "Bonvolu provi ĝin poste aŭ trovi aliajn searx-instancon."
  1280. #~ msgid "Themes"
  1281. #~ msgstr "Temoj"
  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 "Metodo"
  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 "Altgradaj agordoj"
  1298. #~ msgid "Close"
  1299. #~ msgstr "Fermi"
  1300. #~ msgid "Language"
  1301. #~ msgstr "Lingvo"
  1302. #~ msgid "broken"
  1303. #~ msgstr "rompita"
  1304. #~ msgid "supported"
  1305. #~ msgstr "subtenata"
  1306. #~ msgid "not supported"
  1307. #~ msgstr "nesubtenata"
  1308. #~ msgid "about"
  1309. #~ msgstr "pri"
  1310. #~ msgid "Avg."
  1311. #~ msgstr "Meze"
  1312. #~ msgid "User Interface"
  1313. #~ msgstr "Grafika fasado"
  1314. #~ msgid "Choose style for this theme"
  1315. #~ msgstr "Elekti stilon por ĉi tiu temo"
  1316. #~ msgid "Style"
  1317. #~ msgstr "Stilo"
  1318. #~ msgid "Show advanced settings"
  1319. #~ msgstr "Montru detalaj agordoj"
  1320. #~ msgid "Show advanced settings panel in the home page by default"
  1321. #~ msgstr "Montru detalajn agordojn en la hejmpaĝo defaŭlte"
  1322. #~ msgid "Allow all"
  1323. #~ msgstr ""
  1324. #~ msgid "Disable all"
  1325. #~ msgstr ""
  1326. #~ msgid "Selected language"
  1327. #~ msgstr "Elekti lingvon"
  1328. #~ msgid "Query"
  1329. #~ msgstr ""
  1330. #~ msgid "save"
  1331. #~ msgstr "konservi"
  1332. #~ msgid "back"
  1333. #~ msgstr "antaŭen"
  1334. #~ msgid "Links"
  1335. #~ msgstr "Ligiloj"
  1336. #~ msgid "RSS subscription"
  1337. #~ msgstr ""
  1338. #~ msgid "Search results"
  1339. #~ msgstr "Serĉrezultoj"
  1340. #~ msgid "next page"
  1341. #~ msgstr "sekva paĝo"
  1342. #~ msgid "previous page"
  1343. #~ msgstr "antaŭa paĝo"
  1344. #~ msgid "Start search"
  1345. #~ msgstr "Komenci serĉon"
  1346. #~ msgid "Clear search"
  1347. #~ msgstr ""
  1348. #~ msgid "Clear"
  1349. #~ msgstr ""
  1350. #~ msgid "stats"
  1351. #~ msgstr "statistikoj"
  1352. #~ msgid "Heads up!"
  1353. #~ msgstr "Atentu!"
  1354. #~ msgid "It look like you are using SearXNG first time."
  1355. #~ msgstr ""
  1356. #~ msgid "Well done!"
  1357. #~ msgstr "Bonfarite!"
  1358. #~ msgid "Settings saved successfully."
  1359. #~ msgstr "Agordoj konservitaj sukcese."
  1360. #~ msgid "Oh snap!"
  1361. #~ msgstr "Ho ve!"
  1362. #~ msgid "Something went wrong."
  1363. #~ msgstr "Io fuŝiĝis."
  1364. #~ msgid "Date"
  1365. #~ msgstr ""
  1366. #~ msgid "Type"
  1367. #~ msgstr ""
  1368. #~ msgid "Get image"
  1369. #~ msgstr "Akiri bildon"
  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 "agordoj"
  1376. #~ msgid "Scores per result"
  1377. #~ msgstr "Poentaroj por unu rezulto"
  1378. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1379. #~ msgstr "kodumebla metaserĉilo kiu respektas vian privatecon"
  1380. #~ msgid "No abstract is available for this publication."
  1381. #~ msgstr "Neniu resumo atingeblas por tiu ĉi eldonaĵo."
  1382. #~ msgid "Self Informations"
  1383. #~ msgstr "Memaj Informoj"
  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. #~ "Ŝanĝi kiel formoj estas sendataj, <a "
  1391. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1392. #~ " rel=\"external\">sciu pli pri peto-"
  1393. #~ "metodoj</a>"
  1394. #~ msgid ""
  1395. #~ "This plugin checks if the address "
  1396. #~ "of the request is a TOR exit "
  1397. #~ "node, and informs the user if it"
  1398. #~ " is, like check.torproject.org but from "
  1399. #~ "searxng."
  1400. #~ msgstr ""
  1401. #~ msgid ""
  1402. #~ "The TOR exit node list "
  1403. #~ "(https://check.torproject.org/exit-addresses) is "
  1404. #~ "unreachable."
  1405. #~ msgstr ""
  1406. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1407. #~ msgstr "Vi uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}."
  1408. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1409. #~ msgstr "Vi ne uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}."
  1410. #~ msgid ""
  1411. #~ "The could not download the list of"
  1412. #~ " Tor exit-nodes from "
  1413. #~ "https://check.torproject.org/exit-addresses."
  1414. #~ msgstr ""
  1415. #~ msgid ""
  1416. #~ "You are using Tor. It looks like"
  1417. #~ " you have this external IP address:"
  1418. #~ " {ip_address}."
  1419. #~ msgstr ""
  1420. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1421. #~ msgstr ""
  1422. #~ msgid "Autodetect search language"
  1423. #~ msgstr ""
  1424. #~ msgid "Automatically detect the query search language and switch to it."
  1425. #~ msgstr ""
  1426. #~ msgid "others"
  1427. #~ msgstr "aliaj"
  1428. #~ msgid ""
  1429. #~ "This tab does not show up for "
  1430. #~ "search results, but you can search "
  1431. #~ "the engines listed here via bangs."
  1432. #~ msgstr ""
  1433. #~ msgid "Shortcut"
  1434. #~ msgstr "Fulmoklavo"
  1435. #~ msgid "!bang"
  1436. #~ msgstr ""
  1437. #~ msgid ""
  1438. #~ "This tab dues not exists in the"
  1439. #~ " user interface, but you can search"
  1440. #~ " in these engines by its !bangs."
  1441. #~ msgstr ""
  1442. #~ msgid "Engines cannot retrieve results."
  1443. #~ msgstr "Motoroj ne povas trovi rezultojn."
  1444. #~ msgid "Please, try again later or find another SearXNG instance."
  1445. #~ msgstr ""
  1446. #~ msgid ""
  1447. #~ "Redirect to open-access versions of "
  1448. #~ "publications when available (plugin required)"
  1449. #~ msgstr ""
  1450. #~ "Direkti al malfermaliraj versioj de "
  1451. #~ "eldonaĵoj, se eblas (aldonaĵo necesas)"
  1452. #~ msgid "Bang"
  1453. #~ msgstr "!bang"
  1454. #~ msgid ""
  1455. #~ "Change how forms are submitted, <a "
  1456. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1457. #~ " rel=\"external\">learn more about request "
  1458. #~ "methods</a>"
  1459. #~ msgstr ""
  1460. #~ "Ŝanĝu kiel oni sendas formularojn, <a"
  1461. #~ " "
  1462. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1463. #~ " rel=\"external\">lernu pli pri petaj "
  1464. #~ "metodoj</a>"
  1465. #~ msgid "On"
  1466. #~ msgstr "Ŝaltita"
  1467. #~ msgid "Off"
  1468. #~ msgstr "Malŝaltita"
  1469. #~ msgid "Enabled"
  1470. #~ msgstr "Ŝaltita"
  1471. #~ msgid "Disabled"
  1472. #~ msgstr "Malŝaltita"
  1473. #~ msgid ""
  1474. #~ "Perform search immediately if a category"
  1475. #~ " selected. Disable to select multiple "
  1476. #~ "categories. (JavaScript required)"
  1477. #~ msgstr ""
  1478. #~ "Serĉi tuj se oni elektas kategorion. "
  1479. #~ "Malŝaltu ĝin por elekti plurajn "
  1480. #~ "kategoriojn (ĜavoSkripto bezonata)"
  1481. #~ msgid "Vim-like hotkeys"
  1482. #~ msgstr "Vim-ŝajnaj klavkomandoj"
  1483. #~ msgid ""
  1484. #~ "Navigate search results with Vim-like"
  1485. #~ " hotkeys (JavaScript required). Press \"h\""
  1486. #~ " key on main or result page to"
  1487. #~ " get help."
  1488. #~ msgstr ""
  1489. #~ "Tranavigi serĉrezultojn per Vim-ŝajnaj "
  1490. #~ "klavkomandoj (ĜavoSkripto bezonata). Premu "
  1491. #~ "\"h\" por helptekstaro en ĉef- aŭ "
  1492. #~ "rezultpaĝo."
  1493. #~ msgid ""
  1494. #~ "we didn't find any results. Please "
  1495. #~ "use another query or search in "
  1496. #~ "more categories."
  1497. #~ msgstr ""
  1498. #~ "ni ne trovis rezultojn. Bonvole uzu "
  1499. #~ "alian serĉfrazon aŭ serĉu en pliaj "
  1500. #~ "kategorioj."
  1501. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1502. #~ msgstr ""
  1503. #~ "Reskribi rezultajn gastigajn nomojn aŭ "
  1504. #~ "forigi rezultojn bazitajn sur la gastiga"
  1505. #~ " nomo"
  1506. #~ msgid "Bytes"
  1507. #~ msgstr "Bitokoj"
  1508. #~ msgid "kiB"
  1509. #~ msgstr "kiB"
  1510. #~ msgid "MiB"
  1511. #~ msgstr "MiB"
  1512. #~ msgid "GiB"
  1513. #~ msgstr "GiB"
  1514. #~ msgid "TiB"
  1515. #~ msgstr "TiB"
  1516. #~ msgid "Hostname replace"
  1517. #~ msgstr "Gastnomo anstataŭigas"
  1518. #~ msgid "Error!"
  1519. #~ msgstr "Eraro!"
  1520. #~ msgid "Engines cannot retrieve results"
  1521. #~ msgstr "Serĉiloj ne povas retrovi rezultojn"
  1522. #~ msgid "Start submiting a new issue on GitHub"
  1523. #~ msgstr "Komencu sendi novan numeron en GitHub"