| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965 | 
							- # Esperanto translations for .
 
- # Copyright (C) 2020 ORGANIZATION
 
- # This file is distributed under the same license as the  project.
 
- #
 
- # Translators:
 
- # Jack Stehn <jaxadeo@gmail.com>, 2017
 
- # Juan Jaramillo <juanda097@protonmail.ch>, 2015-2016
 
- # pizzaiolo, 2016
 
- # Venca24 <Vaclav.Zouzalik@seznam.cz>, 2018
 
- # Gergely <gergely@fsfe.org>, 2022.
 
- # Markus Heiser <markus.heiser@darmarit.de>, 2022.
 
- # return42 <markus.heiser@darmarit.de>, 2023, 2024.
 
- # RTRedreovic <RTRedreovic@users.noreply.translate.codeberg.org>, 2023.
 
- # Azharjan <alexander.um.edu@gmail.com>, 2023.
 
- # return42 <return42@users.noreply.translate.codeberg.org>, 2024.
 
- # KinoCineaste <KinoCineaste@users.noreply.translate.codeberg.org>, 2024.
 
- msgid ""
 
- msgstr ""
 
- "Project-Id-Version: searx\n"
 
- "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
 
- "POT-Creation-Date: 2024-10-05 06:24+0000\n"
 
- "PO-Revision-Date: 2024-11-16 08:04+0000\n"
 
- "Last-Translator: KinoCineaste <KinoCineaste@users.noreply.translate.codeberg."
 
- "org>\n"
 
- "Language-Team: Esperanto <https://translate.codeberg.org/projects/searxng/"
 
- "searxng/eo/>\n"
 
- "Language: eo\n"
 
- "MIME-Version: 1.0\n"
 
- "Content-Type: text/plain; charset=utf-8\n"
 
- "Content-Transfer-Encoding: 8bit\n"
 
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
- "X-Generator: Weblate 5.8.1\n"
 
- "Generated-By: Babel 2.16.0\n"
 
- #. CONSTANT_NAMES['NO_SUBGROUPING']
 
- #: searx/searxng.msg
 
- msgid "without further subgrouping"
 
- msgstr "sen plia subgrupiĝo"
 
- #. CONSTANT_NAMES['DEFAULT_CATEGORY']
 
- #: searx/searxng.msg
 
- msgid "other"
 
- msgstr "alia"
 
- #. CATEGORY_NAMES['FILES']
 
- #: searx/searxng.msg
 
- msgid "files"
 
- msgstr "dosieroj"
 
- #. CATEGORY_NAMES['GENERAL']
 
- #: searx/searxng.msg
 
- msgid "general"
 
- msgstr "ĝenerala"
 
- #. CATEGORY_NAMES['MUSIC']
 
- #: searx/searxng.msg
 
- msgid "music"
 
- msgstr "muziko"
 
- #. CATEGORY_NAMES['SOCIAL_MEDIA']
 
- #: searx/searxng.msg
 
- msgid "social media"
 
- msgstr "sociaj retoj"
 
- #. CATEGORY_NAMES['IMAGES']
 
- #: searx/searxng.msg
 
- msgid "images"
 
- msgstr "bildoj"
 
- #. CATEGORY_NAMES['VIDEOS']
 
- #: searx/searxng.msg
 
- msgid "videos"
 
- msgstr "videoj"
 
- #. CATEGORY_NAMES['RADIO']
 
- #: searx/engines/radio_browser.py:103 searx/searxng.msg
 
- msgid "radio"
 
- msgstr "radio"
 
- #. CATEGORY_NAMES['TV']
 
- #: searx/searxng.msg
 
- msgid "tv"
 
- msgstr "televido"
 
- #. CATEGORY_NAMES['IT']
 
- #: searx/searxng.msg
 
- msgid "it"
 
- msgstr "komputiko"
 
- #. CATEGORY_NAMES['NEWS']
 
- #: searx/searxng.msg
 
- msgid "news"
 
- msgstr "novaĵoj"
 
- #. CATEGORY_NAMES['MAP']
 
- #: searx/searxng.msg
 
- msgid "map"
 
- msgstr "mapo"
 
- #. CATEGORY_NAMES['ONIONS']
 
- #: searx/searxng.msg
 
- msgid "onions"
 
- msgstr "cepoj"
 
- #. CATEGORY_NAMES['SCIENCE']
 
- #: searx/searxng.msg
 
- msgid "science"
 
- msgstr "scienco"
 
- #. CATEGORY_GROUPS['APPS']
 
- #: searx/searxng.msg
 
- msgid "apps"
 
- msgstr "aplikaĵoj"
 
- #. CATEGORY_GROUPS['DICTIONARIES']
 
- #: searx/searxng.msg
 
- msgid "dictionaries"
 
- msgstr "vortaroj"
 
- #. CATEGORY_GROUPS['LYRICS']
 
- #: searx/searxng.msg
 
- msgid "lyrics"
 
- msgstr "kantotekstoj"
 
- #. CATEGORY_GROUPS['PACKAGES']
 
- #: searx/searxng.msg
 
- msgid "packages"
 
- msgstr "pakoj"
 
- #. CATEGORY_GROUPS['Q_A']
 
- #: searx/searxng.msg
 
- msgid "q&a"
 
- msgstr "dϗr"
 
- #. CATEGORY_GROUPS['REPOS']
 
- #: searx/searxng.msg
 
- msgid "repos"
 
- msgstr "deponejoj"
 
- #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
 
- #: searx/searxng.msg
 
- msgid "software wikis"
 
- msgstr "programaro vikioj"
 
- #. CATEGORY_GROUPS['WEB']
 
- #: searx/searxng.msg
 
- msgid "web"
 
- msgstr "reto"
 
- #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
 
- #: searx/searxng.msg
 
- msgid "scientific publications"
 
- msgstr "sciencaj publikaĵoj"
 
- #. STYLE_NAMES['AUTO']
 
- #: searx/searxng.msg
 
- msgid "auto"
 
- msgstr "aŭtomate"
 
- #. STYLE_NAMES['LIGHT']
 
- #: searx/searxng.msg
 
- msgid "light"
 
- msgstr "hela"
 
- #. STYLE_NAMES['DARK']
 
- #: searx/searxng.msg
 
- msgid "dark"
 
- msgstr "malhela"
 
- #. STYLE_NAMES['BLACK']
 
- #: searx/searxng.msg
 
- msgid "black"
 
- msgstr "nigra"
 
- #. BRAND_CUSTOM_LINKS['UPTIME']
 
- #: searx/searxng.msg
 
- msgid "Uptime"
 
- msgstr ""
 
- #. BRAND_CUSTOM_LINKS['ABOUT']
 
- #: searx/searxng.msg searx/templates/simple/base.html:50
 
- msgid "About"
 
- msgstr "Pri"
 
- #. WEATHER_TERMS['AVERAGE TEMP.']
 
- #: searx/engines/wttr.py:32 searx/searxng.msg
 
- msgid "Average temp."
 
- msgstr ""
 
- #. WEATHER_TERMS['CLOUD COVER']
 
- #: searx/engines/open_meteo.py:91 searx/searxng.msg
 
- msgid "Cloud cover"
 
- msgstr ""
 
- #. WEATHER_TERMS['CONDITION']
 
- #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
 
- #: searx/searxng.msg
 
- msgid "Condition"
 
- msgstr ""
 
- #. WEATHER_TERMS['CURRENT CONDITION']
 
- #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
 
- #: searx/searxng.msg
 
- msgid "Current condition"
 
- msgstr ""
 
- #. WEATHER_TERMS['EVENING']
 
- #: searx/engines/wttr.py:100 searx/searxng.msg
 
- msgid "Evening"
 
- msgstr "Vespero"
 
- #. WEATHER_TERMS['FEELS LIKE']
 
- #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
 
- #: searx/engines/wttr.py:59 searx/searxng.msg
 
- msgid "Feels like"
 
- msgstr ""
 
- #. WEATHER_TERMS['HUMIDITY']
 
- #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
 
- #: searx/engines/wttr.py:68 searx/searxng.msg
 
- msgid "Humidity"
 
- msgstr ""
 
- #. WEATHER_TERMS['MAX TEMP.']
 
- #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
 
- #: searx/searxng.msg
 
- msgid "Max temp."
 
- msgstr ""
 
- #. WEATHER_TERMS['MIN TEMP.']
 
- #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
 
- #: searx/searxng.msg
 
- msgid "Min temp."
 
- msgstr ""
 
- #. WEATHER_TERMS['MORNING']
 
- #: searx/engines/wttr.py:100 searx/searxng.msg
 
- msgid "Morning"
 
- msgstr "Mateno"
 
- #. WEATHER_TERMS['NIGHT']
 
- #: searx/engines/wttr.py:100 searx/searxng.msg
 
- msgid "Night"
 
- msgstr "Nokto"
 
- #. WEATHER_TERMS['NOON']
 
- #: searx/engines/wttr.py:100 searx/searxng.msg
 
- msgid "Noon"
 
- msgstr "Tagmezo"
 
- #. WEATHER_TERMS['PRESSURE']
 
- #: searx/engines/open_meteo.py:95 searx/searxng.msg
 
- msgid "Pressure"
 
- msgstr ""
 
- #. WEATHER_TERMS['SUNRISE']
 
- #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
 
- #: searx/searxng.msg
 
- msgid "Sunrise"
 
- msgstr ""
 
- #. WEATHER_TERMS['SUNSET']
 
- #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
 
- #: searx/searxng.msg
 
- msgid "Sunset"
 
- msgstr ""
 
- #. WEATHER_TERMS['TEMPERATURE']
 
- #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
 
- #: searx/engines/wttr.py:55 searx/searxng.msg
 
- msgid "Temperature"
 
- msgstr ""
 
- #. WEATHER_TERMS['UV INDEX']
 
- #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
 
- #: searx/searxng.msg
 
- msgid "UV index"
 
- msgstr ""
 
- #. WEATHER_TERMS['VISIBILITY']
 
- #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
 
- #: searx/searxng.msg
 
- msgid "Visibility"
 
- msgstr ""
 
- #. WEATHER_TERMS['WIND']
 
- #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
 
- #: searx/engines/wttr.py:62 searx/searxng.msg
 
- msgid "Wind"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
 
- #: searx/engines/lemmy.py:85 searx/searxng.msg
 
- msgid "subscribers"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['POSTS']
 
- #: searx/engines/lemmy.py:86 searx/searxng.msg
 
- msgid "posts"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
 
- #: searx/engines/lemmy.py:87 searx/searxng.msg
 
- msgid "active users"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['COMMENTS']
 
- #: searx/engines/discourse.py:157 searx/engines/hackernews.py:78
 
- #: searx/engines/lemmy.py:130 searx/searxng.msg
 
- msgid "comments"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['USER']
 
- #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
 
- msgid "user"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['COMMUNITY']
 
- #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
 
- msgid "community"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['POINTS']
 
- #: searx/engines/hackernews.py:78 searx/searxng.msg
 
- msgid "points"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['TITLE']
 
- #: searx/searxng.msg
 
- msgid "title"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['AUTHOR']
 
- #: searx/engines/hackernews.py:81 searx/searxng.msg
 
- msgid "author"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
 
- #: searx/engines/discourse.py:149 searx/searxng.msg
 
- msgid "open"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
 
- #: searx/engines/discourse.py:149 searx/searxng.msg
 
- msgid "closed"
 
- msgstr ""
 
- #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
 
- #: searx/engines/discourse.py:160 searx/searxng.msg
 
- msgid "answered"
 
- msgstr ""
 
- #: searx/webapp.py:332
 
- msgid "No item found"
 
- msgstr "Nenio trovita"
 
- #: searx/engines/qwant.py:288
 
- #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
 
- msgid "Source"
 
- msgstr "Fonto"
 
- #: searx/webapp.py:336
 
- msgid "Error loading the next page"
 
- msgstr "Eraro dum la ŝarĝado de la sekvan paĝon"
 
- #: searx/webapp.py:495 searx/webapp.py:898
 
- msgid "Invalid settings, please edit your preferences"
 
- msgstr "Nevalidaj agordoj, bonvolu redaktu viajn agordojn"
 
- #: searx/webapp.py:511
 
- msgid "Invalid settings"
 
- msgstr "Nevalidaj agordoj"
 
- #: searx/webapp.py:588 searx/webapp.py:670
 
- msgid "search error"
 
- msgstr "serĉa eraro"
 
- #: searx/webutils.py:36
 
- msgid "timeout"
 
- msgstr "eltempiĝo"
 
- #: searx/webutils.py:37
 
- msgid "parsing error"
 
- msgstr "analiza eraro"
 
- #: searx/webutils.py:38
 
- msgid "HTTP protocol error"
 
- msgstr "HTTP-protokolo-eraro"
 
- #: searx/webutils.py:39
 
- msgid "network error"
 
- msgstr "reta eraro"
 
- #: searx/webutils.py:40
 
- msgid "SSL error: certificate validation has failed"
 
- msgstr "SSL-eraro: atestila validigo malsukcesis"
 
- #: searx/webutils.py:42
 
- msgid "unexpected crash"
 
- msgstr "neatendita kraŝo"
 
- #: searx/webutils.py:49
 
- msgid "HTTP error"
 
- msgstr "HTTP-eraro"
 
- #: searx/webutils.py:50
 
- msgid "HTTP connection error"
 
- msgstr "HTTP-konekto-eraro"
 
- #: searx/webutils.py:56
 
- msgid "proxy error"
 
- msgstr "prokurilo-eraro"
 
- #: searx/webutils.py:57
 
- msgid "CAPTCHA"
 
- msgstr "CAPTCHA"
 
- #: searx/webutils.py:58
 
- msgid "too many requests"
 
- msgstr "tro da petoj"
 
- #: searx/webutils.py:59
 
- msgid "access denied"
 
- msgstr "aliro rifuzita"
 
- #: searx/webutils.py:60
 
- msgid "server API error"
 
- msgstr "servilo-API-eraro"
 
- #: searx/webutils.py:79
 
- msgid "Suspended"
 
- msgstr "Suspendigita"
 
- #: searx/webutils.py:314
 
- msgid "{minutes} minute(s) ago"
 
- msgstr "antaŭ {minutes} minuto(j)"
 
- #: searx/webutils.py:315
 
- msgid "{hours} hour(s), {minutes} minute(s) ago"
 
- msgstr "antaŭ {hours} horo(j), {minutes} minuto(j)"
 
- #: searx/answerers/random/answerer.py:76
 
- msgid "Random value generator"
 
- msgstr "Hazardvalora generilo"
 
- #: searx/answerers/random/answerer.py:77
 
- msgid "Generate different random values"
 
- msgstr "Generi diversajn hazardajn valorojn"
 
- #: searx/answerers/statistics/answerer.py:50
 
- msgid "Statistics functions"
 
- msgstr "Statistikaj funkcioj"
 
- #: searx/answerers/statistics/answerer.py:51
 
- msgid "Compute {functions} of the arguments"
 
- msgstr "Kalkuli {functions} de la argumentoj"
 
- #: searx/engines/mozhi.py:57
 
- msgid "Synonyms"
 
- msgstr ""
 
- #: searx/engines/openstreetmap.py:159
 
- msgid "Get directions"
 
- msgstr "Akiri direktojn"
 
- #: searx/engines/pdbe.py:96
 
- msgid "{title} (OBSOLETE)"
 
- msgstr "{title} (MALAKTUALA)"
 
- #: searx/engines/pdbe.py:103
 
- msgid "This entry has been superseded by"
 
- msgstr "Tiu ĉi enigo estis anstataŭigita per"
 
- #: searx/engines/qwant.py:290
 
- msgid "Channel"
 
- msgstr "Kanalo"
 
- #: searx/engines/radio_browser.py:105
 
- msgid "bitrate"
 
- msgstr "bito-rapido"
 
- #: searx/engines/radio_browser.py:106
 
- msgid "votes"
 
- msgstr "voĉoj"
 
- #: searx/engines/radio_browser.py:107
 
- msgid "clicks"
 
- msgstr "klakoj"
 
- #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
 
- #: searx/engines/zlibrary.py:137
 
- msgid "Language"
 
- msgstr "Lingvo"
 
- #: searx/engines/semantic_scholar.py:78
 
- msgid ""
 
- "{numCitations} citations from the year {firstCitationVelocityYear} to "
 
- "{lastCitationVelocityYear}"
 
- msgstr ""
 
- "{numCitations} citaĵoj de la {firstCitationVelocityYear}-a jaro ĝis la "
 
- "{lastCitationVelocityYear}-a jaro"
 
- #: searx/engines/tineye.py:45
 
- msgid ""
 
- "Could not read that image url. This may be due to an unsupported file "
 
- "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
 
- " WebP."
 
- msgstr ""
 
- "Neeblas legi la URL de ĉi tiun bildon. Ĝi povas esti pro nesubtenata "
 
- "dosierformo. TineEye nur subtenas bildojn, kiuj estas JPEG, PNG, GIF, "
 
- "BMP, TIFF aŭ WebP."
 
- #: searx/engines/tineye.py:51
 
- msgid ""
 
- "The image is too simple to find matches. TinEye requires a basic level of"
 
- " visual detail to successfully identify matches."
 
- msgstr ""
 
- "La bildo estas tro simpla por trovi kongruojn. TinEye bezonas bazan "
 
- "levelon de detalo por sukcese identigi kongruojn."
 
- #: searx/engines/tineye.py:57
 
- msgid "The image could not be downloaded."
 
- msgstr "La bildo ne eblis elŝuti."
 
- #: searx/engines/zlibrary.py:138
 
- msgid "Book rating"
 
- msgstr "Taksado de libro"
 
- #: searx/engines/zlibrary.py:139
 
- msgid "File quality"
 
- msgstr "Dosiera kvalito"
 
- #: searx/plugins/calculator.py:14
 
- msgid "Calculate mathematical expressions via the search bar"
 
- msgstr ""
 
- #: searx/plugins/hash_plugin.py:10
 
- msgid "Converts strings to different hash digests."
 
- msgstr "Konvertas ĉenojn al malsamaj hash-digestoj."
 
- #: searx/plugins/hash_plugin.py:38
 
- msgid "hash digest"
 
- msgstr "haketa mesaĝaro"
 
- #: searx/plugins/hostnames.py:103
 
- msgid "Hostnames plugin"
 
- msgstr ""
 
- #: searx/plugins/hostnames.py:104
 
- msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
 
- msgstr ""
 
- #: searx/plugins/oa_doi_rewrite.py:12
 
- msgid "Open Access DOI rewrite"
 
- msgstr "Malfermalira COI-ŝanĝo"
 
- #: searx/plugins/oa_doi_rewrite.py:13
 
- msgid ""
 
- "Avoid paywalls by redirecting to open-access versions of publications "
 
- "when available"
 
- msgstr ""
 
- "Eviti pagomurojn per direkto al malfermaliraj versioj de eldonaĵoj, se "
 
- "eblas"
 
- #: searx/plugins/self_info.py:9
 
- msgid "Self Information"
 
- msgstr "Meminformoj"
 
- #: searx/plugins/self_info.py:10
 
- msgid ""
 
- "Displays your IP if the query is \"ip\" and your user agent if the query "
 
- "contains \"user agent\"."
 
- msgstr ""
 
- "Montras vian IP-adreson se la serĉofrazo estas \"ip\" kaj vian klientan "
 
- "aplikaĵon se la serĉofrazo enhavas \"user agent\"."
 
- #: searx/plugins/self_info.py:28
 
- msgid "Your IP is: "
 
- msgstr ""
 
- #: searx/plugins/self_info.py:31
 
- msgid "Your user-agent is: "
 
- msgstr ""
 
- #: searx/plugins/tor_check.py:24
 
- msgid "Tor check plugin"
 
- msgstr "Tor-kontrolo kromprogramo"
 
- #: searx/plugins/tor_check.py:27
 
- msgid ""
 
- "This plugin checks if the address of the request is a Tor exit-node, and "
 
- "informs the user if it is; like check.torproject.org, but from SearXNG."
 
- msgstr ""
 
- "Ĉi tiu kromaĵo kontrolas ĉu la adreso de la peto estas Tor elir-nodo, kaj"
 
- " informas la uzanton ĉu ĝi estas; kiel check.torproject.org, sed de "
 
- "SearXNG."
 
- #: searx/plugins/tor_check.py:61
 
- msgid ""
 
- "Could not download the list of Tor exit-nodes from: "
 
- "https://check.torproject.org/exit-addresses"
 
- msgstr ""
 
- "Ne eblis elŝuti liston de Tor elirnodoj de: https://check.torproject.org"
 
- "/exit-addresses"
 
- #: searx/plugins/tor_check.py:77
 
- msgid ""
 
- "You are using Tor and it looks like you have this external IP address: "
 
- "{ip_address}"
 
- msgstr ""
 
- "Vi uzas Tor kaj ŝajnas, ke vi havas ĉi tiun eksteran IP-adreson: "
 
- "{ip_address}"
 
- #: searx/plugins/tor_check.py:85
 
- msgid "You are not using Tor and you have this external IP address: {ip_address}"
 
- msgstr "Vi ne uzas Tor kaj vi havas ĉi tiun eksteran IP-adreson: {ip_address}"
 
- #: searx/plugins/tracker_url_remover.py:16
 
- msgid "Tracker URL remover"
 
- msgstr "Forigilo de URL-spuriloj"
 
- #: searx/plugins/tracker_url_remover.py:17
 
- msgid "Remove trackers arguments from the returned URL"
 
- msgstr "Forviŝi spurajn argumentojn el la ricevita URL"
 
- #: searx/plugins/unit_converter.py:29
 
- msgid "Convert between units"
 
- msgstr ""
 
- #: searx/templates/simple/404.html:4
 
- msgid "Page not found"
 
- msgstr "Paĝo ne trovita"
 
- #: searx/templates/simple/404.html:6
 
- #, python-format
 
- msgid "Go to %(search_page)s."
 
- msgstr "Iri al %(search_page)s."
 
- #: searx/templates/simple/404.html:6
 
- msgid "search page"
 
- msgstr "Serĉopaĝo"
 
- #: searx/templates/simple/base.html:54
 
- msgid "Donate"
 
- msgstr "Donacu"
 
- #: searx/templates/simple/base.html:58
 
- #: searx/templates/simple/preferences.html:156
 
- msgid "Preferences"
 
- msgstr "Agordoj"
 
- #: searx/templates/simple/base.html:68
 
- msgid "Powered by"
 
- msgstr "Funkciigita per"
 
- #: searx/templates/simple/base.html:68
 
- msgid "a privacy-respecting, open metasearch engine"
 
- msgstr "privateco-respektanta, libera metaserĉilo"
 
- #: searx/templates/simple/base.html:69
 
- #: searx/templates/simple/result_templates/packages.html:59
 
- msgid "Source code"
 
- msgstr "Fontaĵo"
 
- #: searx/templates/simple/base.html:70
 
- msgid "Issue tracker"
 
- msgstr "Spurilo de problemoj"
 
- #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
 
- msgid "Engine stats"
 
- msgstr "Statistikoj pri la motoro"
 
- #: searx/templates/simple/base.html:73
 
- msgid "Public instances"
 
- msgstr "Publikaj instancoj"
 
- #: searx/templates/simple/base.html:76
 
- msgid "Privacy policy"
 
- msgstr "Regularo pri privateco"
 
- #: searx/templates/simple/base.html:79
 
- msgid "Contact instance maintainer"
 
- msgstr "Kontaktu instancon prizorganto"
 
- #: searx/templates/simple/categories.html:26
 
- msgid "Click on the magnifier to perform search"
 
- msgstr "Alklaku la lupeon por serĉi"
 
- #: searx/templates/simple/macros.html:40
 
- msgid "Length"
 
- msgstr "Longo"
 
- #: searx/templates/simple/macros.html:41
 
- msgid "Views"
 
- msgstr ""
 
- #: searx/templates/simple/macros.html:42
 
- #: searx/templates/simple/result_templates/files.html:34
 
- #: searx/templates/simple/result_templates/images.html:19
 
- #: searx/templates/simple/result_templates/paper.html:6
 
- msgid "Author"
 
- msgstr "Verkisto"
 
- #: searx/templates/simple/macros.html:50
 
- msgid "cached"
 
- msgstr "kaŝmemorigita"
 
- #: searx/templates/simple/macros.html:50
 
- msgid "proxied"
 
- msgstr "prokurata"
 
- #: searx/templates/simple/new_issue.html:64
 
- msgid "Start submiting a new issue on GitHub"
 
- msgstr "Komencu sendi novan numeron en GitHub"
 
- #: searx/templates/simple/new_issue.html:66
 
- msgid "Please check for existing bugs about this engine on GitHub"
 
- msgstr "Bonvolu kontroli ekzistantajn cimojn pri ĉi tiu motoro en GitHub"
 
- #: searx/templates/simple/new_issue.html:69
 
- msgid "I confirm there is no existing bug about the issue I encounter"
 
- msgstr "Mi konfirmas, ke ne ekzistas cimo pri la problemo, kiun mi renkontas"
 
- #: searx/templates/simple/new_issue.html:71
 
- msgid "If this is a public instance, please specify the URL in the bug report"
 
- msgstr "Se ĉi tio estas publika kazo, bonvolu specifi la URL en la cimraporto"
 
- #: searx/templates/simple/new_issue.html:72
 
- msgid "Submit a new issue on Github including the above information"
 
- msgstr "Sendu novan numeron ĉe Github inkluzive de ĉi-supraj informoj"
 
- #: searx/templates/simple/preferences.html:65
 
- msgid "No HTTPS"
 
- msgstr "Neniu HTTPS"
 
- #: searx/templates/simple/elements/engines_msg.html:14
 
- #: searx/templates/simple/preferences.html:69
 
- #: searx/templates/simple/preferences.html:70
 
- msgid "View error logs and submit a bug report"
 
- msgstr "Vidi erarprotokolojn kaj sendi erarraporton"
 
- #: searx/templates/simple/preferences.html:74
 
- msgid "!bang for this engine"
 
- msgstr "!bang por ĉi tiu serĉilo"
 
- #: searx/templates/simple/preferences.html:80
 
- msgid "!bang for its categories"
 
- msgstr "!bang por ĝiaj kategorioj"
 
- #: searx/templates/simple/preferences.html:102
 
- #: searx/templates/simple/stats.html:64
 
- msgid "Median"
 
- msgstr "Meza"
 
- #: searx/templates/simple/preferences.html:103
 
- #: searx/templates/simple/stats.html:70
 
- msgid "P80"
 
- msgstr "P80"
 
- #: searx/templates/simple/preferences.html:104
 
- #: searx/templates/simple/stats.html:76
 
- msgid "P95"
 
- msgstr "P95"
 
- #: searx/templates/simple/preferences.html:136
 
- msgid "Failed checker test(s): "
 
- msgstr "Malsukcesa(j) kontrolilo(j): "
 
- #: searx/templates/simple/preferences.html:138
 
- msgid "Errors:"
 
- msgstr "Eraroj:"
 
- #: searx/templates/simple/preferences.html:162
 
- msgid "General"
 
- msgstr "Ĝenerala"
 
- #: searx/templates/simple/preferences.html:165
 
- msgid "Default categories"
 
- msgstr "Defaŭltaj kategorioj"
 
- #: searx/templates/simple/preferences.html:190
 
- msgid "User interface"
 
- msgstr "Fasado"
 
- #: searx/templates/simple/preferences.html:211
 
- msgid "Privacy"
 
- msgstr "Privateco"
 
- #: searx/templates/simple/preferences.html:224
 
- msgid "Engines"
 
- msgstr "Serĉiloj"
 
- #: searx/templates/simple/preferences.html:226
 
- msgid "Currently used search engines"
 
- msgstr "Aktuale uzataj serĉiloj"
 
- #: searx/templates/simple/preferences.html:234
 
- msgid "Special Queries"
 
- msgstr "Specialaj Demandoj"
 
- #: searx/templates/simple/preferences.html:240
 
- msgid "Cookies"
 
- msgstr "Kuketoj"
 
- #: searx/templates/simple/results.html:23
 
- msgid "Answers"
 
- msgstr "Respondoj"
 
- #: searx/templates/simple/results.html:42
 
- msgid "Number of results"
 
- msgstr "Nombro da rezultoj"
 
- #: searx/templates/simple/results.html:48
 
- msgid "Info"
 
- msgstr "Info"
 
- #: searx/templates/simple/results.html:75
 
- msgid "Try searching for:"
 
- msgstr "Provu serĉi:"
 
- #: searx/templates/simple/results.html:107
 
- msgid "Back to top"
 
- msgstr "Reen al supro"
 
- #: searx/templates/simple/results.html:125
 
- msgid "Previous page"
 
- msgstr "Antaŭa paĝo"
 
- #: searx/templates/simple/results.html:143
 
- msgid "Next page"
 
- msgstr "Sekva paĝo"
 
- #: searx/templates/simple/search.html:3
 
- msgid "Display the front page"
 
- msgstr "Montru la ĉefpaĝon"
 
- #: searx/templates/simple/search.html:9
 
- #: searx/templates/simple/simple_search.html:5
 
- msgid "Search for..."
 
- msgstr "Serĉi..."
 
- #: searx/templates/simple/search.html:10
 
- #: searx/templates/simple/simple_search.html:6
 
- msgid "clear"
 
- msgstr "purigi"
 
- #: searx/templates/simple/search.html:11
 
- #: searx/templates/simple/simple_search.html:7
 
- msgid "search"
 
- msgstr "serĉi"
 
- #: searx/templates/simple/stats.html:21
 
- msgid "There is currently no data available. "
 
- msgstr "Nun ne estas datumoj disponeblaj."
 
- #: searx/templates/simple/preferences/engines.html:24
 
- #: searx/templates/simple/stats.html:25
 
- msgid "Engine name"
 
- msgstr "Nomo de serĉilo"
 
- #: searx/templates/simple/stats.html:26
 
- msgid "Scores"
 
- msgstr "Poentaroj"
 
- #: searx/templates/simple/stats.html:27
 
- msgid "Result count"
 
- msgstr "Rezultkalkulo"
 
- #: searx/templates/simple/elements/engines_msg.html:7
 
- #: searx/templates/simple/preferences/engines.html:31
 
- #: searx/templates/simple/stats.html:28
 
- msgid "Response time"
 
- msgstr "Tempo de respondo"
 
- #: searx/templates/simple/preferences/engines.html:35
 
- #: searx/templates/simple/stats.html:29
 
- msgid "Reliability"
 
- msgstr "Fidindeco"
 
- #: searx/templates/simple/stats.html:59
 
- msgid "Total"
 
- msgstr "Entute"
 
- #: searx/templates/simple/stats.html:60
 
- msgid "HTTP"
 
- msgstr "HTTP"
 
- #: searx/templates/simple/stats.html:61
 
- msgid "Processing"
 
- msgstr "Prilaborado"
 
- #: searx/templates/simple/stats.html:99
 
- msgid "Warnings"
 
- msgstr "Avertoj"
 
- #: searx/templates/simple/stats.html:99
 
- msgid "Errors and exceptions"
 
- msgstr "Eraroj kaj esceptoj"
 
- #: searx/templates/simple/stats.html:105
 
- msgid "Exception"
 
- msgstr "Escepton"
 
- #: searx/templates/simple/stats.html:107
 
- msgid "Message"
 
- msgstr "Mesaĝo"
 
- #: searx/templates/simple/stats.html:109
 
- msgid "Percentage"
 
- msgstr "Procento"
 
- #: searx/templates/simple/stats.html:111
 
- msgid "Parameter"
 
- msgstr "Parametro"
 
- #: searx/templates/simple/result_templates/files.html:36
 
- #: searx/templates/simple/stats.html:119
 
- msgid "Filename"
 
- msgstr "Dosiernomo"
 
- #: searx/templates/simple/stats.html:120
 
- msgid "Function"
 
- msgstr "Funkcio"
 
- #: searx/templates/simple/stats.html:121
 
- msgid "Code"
 
- msgstr "Fontkodo"
 
- #: searx/templates/simple/stats.html:128
 
- msgid "Checker"
 
- msgstr "Kontrolilo"
 
- #: searx/templates/simple/stats.html:131
 
- msgid "Failed test"
 
- msgstr "Malsukcesa testo"
 
- #: searx/templates/simple/stats.html:132
 
- msgid "Comment(s)"
 
- msgstr "Komento(j)"
 
- #: searx/templates/simple/elements/apis.html:3
 
- msgid "Download results"
 
- msgstr "Elŝuti rezultojn"
 
- #: searx/templates/simple/elements/engines_msg.html:4
 
- msgid "Messages from the search engines"
 
- msgstr "Mesaĝoj de la serĉiloj"
 
- #: searx/templates/simple/elements/engines_msg.html:7
 
- msgid "seconds"
 
- msgstr "s"
 
- #: searx/templates/simple/elements/search_url.html:3
 
- msgid "Search URL"
 
- msgstr "Serĉi URL"
 
- #: searx/templates/simple/elements/search_url.html:4
 
- #: searx/templates/simple/preferences/cookies.html:54
 
- msgid "Copied"
 
- msgstr "Kopiita"
 
- #: searx/templates/simple/elements/search_url.html:4
 
- #: searx/templates/simple/preferences/cookies.html:54
 
- msgid "Copy"
 
- msgstr "Kopii"
 
- #: searx/templates/simple/elements/suggestions.html:3
 
- msgid "Suggestions"
 
- msgstr "Sugestoj"
 
- #: searx/templates/simple/filters/languages.html:1
 
- #: searx/templates/simple/preferences/language.html:2
 
- msgid "Search language"
 
- msgstr "Serĉolingvo"
 
- #: searx/templates/simple/filters/languages.html:4
 
- #: searx/templates/simple/preferences/language.html:7
 
- msgid "Default language"
 
- msgstr "Defaŭlta lingvo"
 
- #: searx/templates/simple/filters/languages.html:8
 
- #: searx/templates/simple/preferences/language.html:11
 
- msgid "Auto-detect"
 
- msgstr "Aŭtomate detekti"
 
- #: searx/templates/simple/filters/safesearch.html:1
 
- #: searx/templates/simple/filters/safesearch.html:2
 
- #: searx/templates/simple/filters/safesearch.html:3
 
- #: searx/templates/simple/filters/safesearch.html:4
 
- #: searx/templates/simple/preferences/engines.html:27
 
- #: searx/templates/simple/preferences/safesearch.html:2
 
- msgid "SafeSearch"
 
- msgstr "SekuraSerĉo"
 
- #: searx/templates/simple/filters/safesearch.html:2
 
- #: searx/templates/simple/preferences/safesearch.html:7
 
- msgid "Strict"
 
- msgstr "Strikta"
 
- #: searx/templates/simple/filters/safesearch.html:3
 
- #: searx/templates/simple/preferences/safesearch.html:11
 
- msgid "Moderate"
 
- msgstr "Modera"
 
- #: searx/templates/simple/filters/safesearch.html:4
 
- #: searx/templates/simple/preferences/safesearch.html:15
 
- msgid "None"
 
- msgstr "Neniu"
 
- #: searx/templates/simple/filters/time_range.html:1
 
- #: searx/templates/simple/preferences/engines.html:28
 
- msgid "Time range"
 
- msgstr "Tempa intervalo"
 
- #: searx/templates/simple/filters/time_range.html:3
 
- msgid "Anytime"
 
- msgstr "Iam ajn"
 
- #: searx/templates/simple/filters/time_range.html:6
 
- msgid "Last day"
 
- msgstr "Pasinta tago"
 
- #: searx/templates/simple/filters/time_range.html:9
 
- msgid "Last week"
 
- msgstr "Pasinta semajno"
 
- #: searx/templates/simple/filters/time_range.html:12
 
- msgid "Last month"
 
- msgstr "Pasinta monato"
 
- #: searx/templates/simple/filters/time_range.html:15
 
- msgid "Last year"
 
- msgstr "Pasinta jaro"
 
- #: searx/templates/simple/messages/no_cookies.html:3
 
- msgid "Information!"
 
- msgstr "Informoj!"
 
- #: searx/templates/simple/messages/no_cookies.html:4
 
- msgid "currently, there are no cookies defined."
 
- msgstr "nun ne estas ajnaj kuketoj difinitaj."
 
- #: searx/templates/simple/messages/no_results.html:6
 
- msgid "Sorry!"
 
- msgstr "Pardonu!"
 
- #: searx/templates/simple/messages/no_results.html:12
 
- msgid "No results were found. You can try to:"
 
- msgstr "Neniuj rezultoj estis trovitaj. Vi povas provi:"
 
- #: searx/templates/simple/messages/no_results.html:14
 
- msgid "There are no more results. You can try to:"
 
- msgstr "Estas nenio plu rezultoj. Vi povas provi:"
 
- #: searx/templates/simple/messages/no_results.html:19
 
- msgid "Refresh the page."
 
- msgstr "Refreŝigi la paĝon."
 
- #: searx/templates/simple/messages/no_results.html:20
 
- msgid "Search for another query or select another category (above)."
 
- msgstr "Serĉu alian demandon aŭ elektu alian kategorion (supre)."
 
- #: searx/templates/simple/messages/no_results.html:21
 
- msgid "Change the search engine used in the preferences:"
 
- msgstr "Ŝanĝi la serĉilon uzatan en la preferoj:"
 
- #: searx/templates/simple/messages/no_results.html:22
 
- msgid "Switch to another instance:"
 
- msgstr "Ŝanĝi al alia instanco:"
 
- #: searx/templates/simple/messages/no_results.html:24
 
- msgid "Search for another query or select another category."
 
- msgstr "Ŝercu por alia demandon aŭ elektu alia kategorio."
 
- #: searx/templates/simple/messages/no_results.html:25
 
- msgid "Go back to the previous page using the previous page button."
 
- msgstr "Reiru al la antaŭa paĝon uzata la antaŭa paĝo butono."
 
- #: searx/templates/simple/preferences/answerers.html:4
 
- #: searx/templates/simple/preferences/engines.html:23
 
- msgid "Allow"
 
- msgstr "Permesi"
 
- #: searx/templates/simple/preferences/answerers.html:5
 
- msgid "Keywords"
 
- msgstr "Ŝlosilvortoj"
 
- #: searx/templates/simple/preferences/answerers.html:6
 
- #: searx/templates/simple/result_templates/packages.html:7
 
- msgid "Name"
 
- msgstr "Nomo"
 
- #: searx/templates/simple/preferences/answerers.html:7
 
- msgid "Description"
 
- msgstr "Priskribo"
 
- #: searx/templates/simple/preferences/answerers.html:8
 
- msgid "Examples"
 
- msgstr "Ekzemploj"
 
- #: searx/templates/simple/preferences/answerers.html:13
 
- msgid "This is the list of SearXNG's instant answering modules."
 
- msgstr "Ĉi tiu estas la listo de la tujaj respondaj moduloj de SearXNG."
 
- #: searx/templates/simple/preferences/answerers.html:29
 
- msgid "This is the list of plugins."
 
- msgstr "Ĉi tiu estas la listo de kromaĵoj."
 
- #: searx/templates/simple/preferences/autocomplete.html:2
 
- msgid "Autocomplete"
 
- msgstr "Aŭtomate kompletigi"
 
- #: searx/templates/simple/preferences/autocomplete.html:15
 
- msgid "Find stuff as you type"
 
- msgstr "Trovi aferojn dum tajpado"
 
- #: searx/templates/simple/preferences/center_alignment.html:2
 
- msgid "Center Alignment"
 
- msgstr "Centra Vicigo"
 
- #: searx/templates/simple/preferences/center_alignment.html:14
 
- msgid "Displays results in the center of the page (Oscar layout)."
 
- msgstr "Montras rezultojn en la centro de la paĝo."
 
- #: searx/templates/simple/preferences/cookies.html:2
 
- msgid ""
 
- "This is the list of cookies and their values SearXNG is storing on your "
 
- "computer."
 
- msgstr ""
 
- "Jen la listo de kuketoj kaj iliaj valoroj SearXNG konservas en via "
 
- "komputilo."
 
- #: searx/templates/simple/preferences/cookies.html:3
 
- msgid "With that list, you can assess SearXNG transparency."
 
- msgstr "Kun tiu listo, vi povas taksi SearXNG-travideblecon."
 
- #: searx/templates/simple/preferences/cookies.html:9
 
- msgid "Cookie name"
 
- msgstr "Nomo de kuketo"
 
- #: searx/templates/simple/preferences/cookies.html:10
 
- msgid "Value"
 
- msgstr "Valoro"
 
- #: searx/templates/simple/preferences/cookies.html:23
 
- msgid "Search URL of the currently saved preferences"
 
- msgstr "Serĉo-URL kun aktuale konservitaj agordoj"
 
- #: searx/templates/simple/preferences/cookies.html:32
 
- msgid ""
 
- "Note: specifying custom settings in the search URL can reduce privacy by "
 
- "leaking data to the clicked result sites."
 
- msgstr ""
 
- "Rimarko: Precizigo de propraj agordoj en la serĉo-URL povas malaltigi "
 
- "privatecon per nevola diskonigo de la datumoj al alklikantaj retejoj."
 
- #: searx/templates/simple/preferences/cookies.html:35
 
- msgid "URL to restore your preferences in another browser"
 
- msgstr "URL por restarigi viajn preferojn en alia TTT-legilo"
 
- #: searx/templates/simple/preferences/cookies.html:43
 
- msgid ""
 
- "Specifying custom settings in the preferences URL can be used to sync "
 
- "preferences across devices."
 
- msgstr ""
 
- "Specifante kutimajn agordojn en la URL de preferoj povas esti uzata por "
 
- "sinkronigi preferojn tra aparatoj."
 
- #: searx/templates/simple/preferences/cookies.html:46
 
- msgid "Copy preferences hash"
 
- msgstr ""
 
- #: searx/templates/simple/preferences/cookies.html:57
 
- msgid "Insert copied preferences hash (without URL) to restore"
 
- msgstr ""
 
- #: searx/templates/simple/preferences/cookies.html:59
 
- msgid "Preferences hash"
 
- msgstr ""
 
- #: searx/templates/simple/preferences/doi_resolver.html:2
 
- msgid "Open Access DOI resolver"
 
- msgstr "Malfermalira COI-solvilo"
 
- #: searx/templates/simple/preferences/doi_resolver.html:14
 
- msgid "Select service used by DOI rewrite"
 
- msgstr "Elekti servon uzatan de DOI-reskribo"
 
- #: searx/templates/simple/preferences/engines.html:9
 
- msgid ""
 
- "This tab does not exists in the user interface, but you can search in "
 
- "these engines by its !bangs."
 
- msgstr ""
 
- "Ĉi tiu langeto ne ekzistas en la uzantinterfaco, sed vi povas serĉi en ĉi"
 
- " tiuj serĉiloj per siaj !bangs."
 
- #: searx/templates/simple/preferences/engines.html:15
 
- msgid "Enable all"
 
- msgstr ""
 
- #: searx/templates/simple/preferences/engines.html:16
 
- msgid "Disable all"
 
- msgstr ""
 
- #: searx/templates/simple/preferences/engines.html:25
 
- msgid "!bang"
 
- msgstr "!bang"
 
- #: searx/templates/simple/preferences/engines.html:26
 
- msgid "Supports selected language"
 
- msgstr "Subtenas elektitan lingvon"
 
- #: searx/templates/simple/preferences/engines.html:29
 
- msgid "Weight"
 
- msgstr "Pezo"
 
- #: searx/templates/simple/preferences/engines.html:33
 
- msgid "Max time"
 
- msgstr "Maksimuma tempo"
 
- #: searx/templates/simple/preferences/favicon.html:2
 
- msgid "Favicon Resolver"
 
- msgstr ""
 
- #: searx/templates/simple/preferences/favicon.html:15
 
- msgid "Display favicons near search results"
 
- msgstr ""
 
- #: searx/templates/simple/preferences/footer.html:2
 
- msgid ""
 
- "These settings are stored in your cookies, this allows us not to store "
 
- "this data about you."
 
- msgstr ""
 
- "Tiuj ĉi agordoj estas konservitaj en viaj kuketoj, kio ebligas al ni ne "
 
- "konservi tiujn datumojn pri vi en nia servilo."
 
- #: searx/templates/simple/preferences/footer.html:3
 
- msgid ""
 
- "These cookies serve your sole convenience, we don't use these cookies to "
 
- "track you."
 
- msgstr "Tiuj kuketoj estas nur por via plaĉo, ni ne uzas ilin por spuri vin."
 
- #: searx/templates/simple/preferences/footer.html:6
 
- msgid "Save"
 
- msgstr "Konservi"
 
- #: searx/templates/simple/preferences/footer.html:9
 
- msgid "Reset defaults"
 
- msgstr "Reagordi al defaŭlto"
 
- #: searx/templates/simple/preferences/footer.html:13
 
- msgid "Back"
 
- msgstr "Reen"
 
- #: searx/templates/simple/preferences/hotkeys.html:2
 
- msgid "Hotkeys"
 
- msgstr "Klavaraj ŝparvojoj"
 
- #: searx/templates/simple/preferences/hotkeys.html:13
 
- msgid "Vim-like"
 
- msgstr "Vim-simila"
 
- #: searx/templates/simple/preferences/hotkeys.html:18
 
- msgid ""
 
- "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
 
- "key on main or result page to get help."
 
- msgstr ""
 
- "Navigu serĉrezultojn per klavaraj ŝparvojoj (JavaScript bezonata). Premu "
 
- "\"h\" klavon sur ĉefa aŭ rezultpaĝo por ricevi helpon."
 
- #: searx/templates/simple/preferences/image_proxy.html:2
 
- msgid "Image proxy"
 
- msgstr "Prokurila servilo por bildoj"
 
- #: searx/templates/simple/preferences/image_proxy.html:14
 
- msgid "Proxying image results through SearXNG"
 
- msgstr "Prokurado de bildaj rezultoj per SearXNG"
 
- #: searx/templates/simple/preferences/infinite_scroll.html:2
 
- msgid "Infinite scroll"
 
- msgstr "Senfina rulumado"
 
- #: searx/templates/simple/preferences/infinite_scroll.html:14
 
- msgid "Automatically load next page when scrolling to bottom of current page"
 
- msgstr "Aŭtomate ŝarĝi sekvan paĝon rulumante al la subo de la nuna paĝo"
 
- #: searx/templates/simple/preferences/language.html:24
 
- msgid "What language do you prefer for search?"
 
- msgstr "Kiun lingvon vi pli ŝatas por serĉi?"
 
- #: searx/templates/simple/preferences/language.html:25
 
- msgid "Choose Auto-detect to let SearXNG detect the language of your query."
 
- msgstr ""
 
- "Elektu Aŭtomate-detekti por lasi SearXNG detekti la lingvon de via "
 
- "demando."
 
- #: searx/templates/simple/preferences/method.html:2
 
- msgid "HTTP Method"
 
- msgstr "HTTP-Metodo"
 
- #: searx/templates/simple/preferences/method.html:14
 
- msgid "Change how forms are submitted"
 
- msgstr "Ŝanĝi kiel oni sendas formularojn"
 
- #: searx/templates/simple/preferences/query_in_title.html:2
 
- msgid "Query in the page's title"
 
- msgstr "Montru demandon en la titolo de la paĝo"
 
- #: searx/templates/simple/preferences/query_in_title.html:14
 
- msgid ""
 
- "When enabled, the result page's title contains your query. Your browser "
 
- "can record this title"
 
- msgstr ""
 
- "Kiam ĝi estas ebligita, la titolo de la rezultpaĝo enhavas vian demandon."
 
- " Via TTT-legilo povas registri ĉi tiun titolon"
 
- #: searx/templates/simple/preferences/results_on_new_tab.html:2
 
- msgid "Results on new tabs"
 
- msgstr "Rezultoj en novaj langetoj"
 
- #: searx/templates/simple/preferences/results_on_new_tab.html:14
 
- msgid "Open result links on new browser tabs"
 
- msgstr "Malfermi rezultligilojn en novaj TTT-legilaj langetoj"
 
- #: searx/templates/simple/preferences/safesearch.html:20
 
- msgid "Filter content"
 
- msgstr "Filtri enhavon"
 
- #: searx/templates/simple/preferences/search_on_category_select.html:2
 
- msgid "Search on category select"
 
- msgstr "Serĉi en elektita kategorio"
 
- #: searx/templates/simple/preferences/search_on_category_select.html:14
 
- msgid ""
 
- "Perform search immediately if a category selected. Disable to select "
 
- "multiple categories"
 
- msgstr ""
 
- "Fari serĉon tuj se kategorio estas elektita. Malebligi elekti plurajn "
 
- "kategoriojn"
 
- #: searx/templates/simple/preferences/theme.html:2
 
- msgid "Theme"
 
- msgstr "Etoso"
 
- #: searx/templates/simple/preferences/theme.html:14
 
- msgid "Change SearXNG layout"
 
- msgstr "Ŝanĝu SearXNG-aranĝon"
 
- #: searx/templates/simple/preferences/theme.html:19
 
- msgid "Theme style"
 
- msgstr "Temo stilo"
 
- #: searx/templates/simple/preferences/theme.html:31
 
- msgid "Choose auto to follow your browser settings"
 
- msgstr "Elektu 'auto' por sekvi la agordojn de via TTT-legilo"
 
- #: searx/templates/simple/preferences/tokens.html:2
 
- msgid "Engine tokens"
 
- msgstr "Serĉiloj ĵetonoj"
 
- #: searx/templates/simple/preferences/tokens.html:9
 
- msgid "Access tokens for private engines"
 
- msgstr "Alirĵetonoj por privataj serĉiloj"
 
- #: searx/templates/simple/preferences/ui_locale.html:2
 
- msgid "Interface language"
 
- msgstr "Fasada lingvo"
 
- #: searx/templates/simple/preferences/ui_locale.html:14
 
- msgid "Change the language of the layout"
 
- msgstr "Ŝanĝi lingvon de la fasono"
 
- #: searx/templates/simple/result_templates/code.html:13
 
- msgid "repo"
 
- msgstr "Deponejo"
 
- #: searx/templates/simple/result_templates/default.html:6
 
- #: searx/templates/simple/result_templates/files.html:8
 
- #: searx/templates/simple/result_templates/files.html:11
 
- msgid "show media"
 
- msgstr "montri aŭdvidaĵojn"
 
- #: searx/templates/simple/result_templates/default.html:6
 
- #: searx/templates/simple/result_templates/files.html:8
 
- msgid "hide media"
 
- msgstr "kaŝi aŭdvidaĵojn"
 
- #: searx/templates/simple/result_templates/default.html:14
 
- #: searx/templates/simple/result_templates/videos.html:14
 
- msgid "This site did not provide any description."
 
- msgstr "Ĉi tiu retejo ne disponigis ajnan priskribon."
 
- #: searx/templates/simple/result_templates/files.html:38
 
- #: searx/templates/simple/result_templates/images.html:22
 
- #: searx/templates/simple/result_templates/torrent.html:11
 
- msgid "Filesize"
 
- msgstr "Dosiergrandeco"
 
- #: searx/templates/simple/result_templates/files.html:40
 
- msgid "Date"
 
- msgstr "Dato"
 
- #: searx/templates/simple/result_templates/files.html:42
 
- #: searx/templates/simple/result_templates/paper.html:24
 
- msgid "Type"
 
- msgstr "Tipo"
 
- #: searx/templates/simple/result_templates/images.html:20
 
- msgid "Resolution"
 
- msgstr "Distingivo"
 
- #: searx/templates/simple/result_templates/images.html:21
 
- msgid "Format"
 
- msgstr "Formato"
 
- #: searx/templates/simple/result_templates/images.html:24
 
- msgid "Engine"
 
- msgstr "Serĉilo"
 
- #: searx/templates/simple/result_templates/images.html:25
 
- msgid "View source"
 
- msgstr "Vidi fonton"
 
- #: searx/templates/simple/result_templates/map.html:12
 
- msgid "address"
 
- msgstr "adreso"
 
- #: searx/templates/simple/result_templates/map.html:43
 
- msgid "show map"
 
- msgstr "montri mapon"
 
- #: searx/templates/simple/result_templates/map.html:43
 
- msgid "hide map"
 
- msgstr "kaŝi mapon"
 
- #: searx/templates/simple/result_templates/packages.html:12
 
- msgid "Version"
 
- msgstr "Versio"
 
- #: searx/templates/simple/result_templates/packages.html:18
 
- msgid "Maintainer"
 
- msgstr ""
 
- #: searx/templates/simple/result_templates/packages.html:24
 
- msgid "Updated at"
 
- msgstr ""
 
- #: searx/templates/simple/result_templates/packages.html:30
 
- #: searx/templates/simple/result_templates/paper.html:25
 
- msgid "Tags"
 
- msgstr "Etikedoj"
 
- #: searx/templates/simple/result_templates/packages.html:36
 
- msgid "Popularity"
 
- msgstr ""
 
- #: searx/templates/simple/result_templates/packages.html:42
 
- msgid "License"
 
- msgstr "Licenco"
 
- #: searx/templates/simple/result_templates/packages.html:52
 
- msgid "Project"
 
- msgstr "Projektaj"
 
- #: searx/templates/simple/result_templates/packages.html:55
 
- msgid "Project homepage"
 
- msgstr ""
 
- #: searx/templates/simple/result_templates/paper.html:5
 
- msgid "Published date"
 
- msgstr "Eldonita dato"
 
- #: searx/templates/simple/result_templates/paper.html:9
 
- msgid "Journal"
 
- msgstr "Revuo"
 
- #: searx/templates/simple/result_templates/paper.html:22
 
- msgid "Editor"
 
- msgstr "Redaktoro"
 
- #: searx/templates/simple/result_templates/paper.html:23
 
- msgid "Publisher"
 
- msgstr "Eldonejo"
 
- #: searx/templates/simple/result_templates/paper.html:26
 
- msgid "DOI"
 
- msgstr "COI"
 
- #: searx/templates/simple/result_templates/paper.html:27
 
- msgid "ISSN"
 
- msgstr "ISSN"
 
- #: searx/templates/simple/result_templates/paper.html:28
 
- msgid "ISBN"
 
- msgstr "ISBN"
 
- #: searx/templates/simple/result_templates/paper.html:33
 
- msgid "PDF"
 
- msgstr "PDF"
 
- #: searx/templates/simple/result_templates/paper.html:34
 
- msgid "HTML"
 
- msgstr "HTML"
 
- #: searx/templates/simple/result_templates/torrent.html:6
 
- msgid "magnet link"
 
- msgstr "magnetligilo"
 
- #: searx/templates/simple/result_templates/torrent.html:7
 
- msgid "torrent file"
 
- msgstr "torentodosiero"
 
- #: searx/templates/simple/result_templates/torrent.html:9
 
- msgid "Seeder"
 
- msgstr "Fonto"
 
- #: searx/templates/simple/result_templates/torrent.html:9
 
- msgid "Leecher"
 
- msgstr "Ricevanto"
 
- #: searx/templates/simple/result_templates/torrent.html:13
 
- msgid "Number of Files"
 
- msgstr "Nombro da Dosieroj"
 
- #: searx/templates/simple/result_templates/videos.html:6
 
- msgid "show video"
 
- msgstr "montri videojn"
 
- #: searx/templates/simple/result_templates/videos.html:6
 
- msgid "hide video"
 
- msgstr "kaŝi videojn"
 
- #~ msgid "Engine time (sec)"
 
- #~ msgstr "Motora tempo (s)"
 
- #~ msgid "Page loads (sec)"
 
- #~ msgstr "Paĝŝarĝo (sekundoj)"
 
- #~ msgid "Errors"
 
- #~ msgstr "Eraroj"
 
- #~ msgid "CAPTCHA required"
 
- #~ msgstr ""
 
- #~ msgid "Rewrite HTTP links to HTTPS if possible"
 
- #~ msgstr "Ŝanĝi HTTP-ligilojn al HTTPS, se eblas"
 
- #~ msgid ""
 
- #~ "Results are opened in the same "
 
- #~ "window by default. This plugin "
 
- #~ "overwrites the default behaviour to open"
 
- #~ " links on new tabs/windows. (JavaScript "
 
- #~ "required)"
 
- #~ msgstr ""
 
- #~ "Oni malfermas rezultojn en la sama "
 
- #~ "langeto defaŭlte. Ĉi tiu aldonaĵo ŝanĝas"
 
- #~ " la kutiman agmanieron por malfermi "
 
- #~ "ligilojn en novaj langetoj/fenestroj. "
 
- #~ "(ĜavoSkripto bezonata)"
 
- #~ msgid "Color"
 
- #~ msgstr "Koloro"
 
- #~ msgid "Blue (default)"
 
- #~ msgstr "Blua (defaŭlta)"
 
- #~ msgid "Violet"
 
- #~ msgstr "Viola"
 
- #~ msgid "Green"
 
- #~ msgstr "Verda"
 
- #~ msgid "Cyan"
 
- #~ msgstr "Bluverda"
 
- #~ msgid "Orange"
 
- #~ msgstr "Oranĝa"
 
- #~ msgid "Red"
 
- #~ msgstr "Ruĝa"
 
- #~ msgid "Category"
 
- #~ msgstr "Kategorio"
 
- #~ msgid "Block"
 
- #~ msgstr "Bloki"
 
- #~ msgid "original context"
 
- #~ msgstr "originala kunteksto"
 
- #~ msgid "Plugins"
 
- #~ msgstr "Aldonaĵoj"
 
- #~ msgid "Answerers"
 
- #~ msgstr "Respondiloj"
 
- #~ msgid "Avg. time"
 
- #~ msgstr "Mezkvanta tempo"
 
- #~ msgid "show details"
 
- #~ msgstr "montri detalojn"
 
- #~ msgid "hide details"
 
- #~ msgstr "kaŝi detalojn"
 
- #~ msgid "Load more..."
 
- #~ msgstr "Ŝarĝi pli..."
 
- #~ msgid "Loading..."
 
- #~ msgstr ""
 
- #~ msgid "Change searx layout"
 
- #~ msgstr "Ŝanĝi fasonon de Searx"
 
- #~ msgid "Proxying image results through searx"
 
- #~ msgstr "Prokuri bildrezultojn per searx"
 
- #~ msgid "This is the list of searx's instant answering modules."
 
- #~ msgstr "Tio ĉi estas listo de tuje respondantaj moduloj de Searx."
 
- #~ msgid ""
 
- #~ "This is the list of cookies and"
 
- #~ " their values searx is storing on "
 
- #~ "your computer."
 
- #~ msgstr ""
 
- #~ "Ĉi tio estas listo de kuketoj kaj"
 
- #~ " iliaj valoroj, kiujn searx konservas "
 
- #~ "en via komputilo."
 
- #~ msgid "With that list, you can assess searx transparency."
 
- #~ msgstr "Kun tiu listo, vi povas kontroli la travideblecon de searx."
 
- #~ msgid "It look like you are using searx first time."
 
- #~ msgstr "Ŝajnas, ke ĉi tio estas via unua fojo, kiam vi uzas searx."
 
- #~ msgid "Please, try again later or find another searx instance."
 
- #~ msgstr "Bonvolu provi ĝin poste aŭ trovi aliajn searx-instancon."
 
- #~ msgid "Themes"
 
- #~ msgstr "Temoj"
 
- #~ msgid "Reliablity"
 
- #~ msgstr ""
 
- #~ msgid ""
 
- #~ "When enabled, the result page's title"
 
- #~ " contains your query. Your browser "
 
- #~ "can record this title."
 
- #~ msgstr ""
 
- #~ msgid "Method"
 
- #~ msgstr "Metodo"
 
- #~ msgid ""
 
- #~ "This tab does not show up for "
 
- #~ "search results but you can search "
 
- #~ "the engines listed here via bangs."
 
- #~ msgstr ""
 
- #~ msgid "Advanced settings"
 
- #~ msgstr "Altgradaj agordoj"
 
- #~ msgid "Close"
 
- #~ msgstr "Fermi"
 
- #~ msgid "Language"
 
- #~ msgstr "Lingvo"
 
- #~ msgid "broken"
 
- #~ msgstr "rompita"
 
- #~ msgid "supported"
 
- #~ msgstr "subtenata"
 
- #~ msgid "not supported"
 
- #~ msgstr "nesubtenata"
 
- #~ msgid "about"
 
- #~ msgstr "pri"
 
- #~ msgid "Avg."
 
- #~ msgstr "Meze"
 
- #~ msgid "User Interface"
 
- #~ msgstr "Grafika fasado"
 
- #~ msgid "Choose style for this theme"
 
- #~ msgstr "Elekti stilon por ĉi tiu temo"
 
- #~ msgid "Style"
 
- #~ msgstr "Stilo"
 
- #~ msgid "Show advanced settings"
 
- #~ msgstr "Montru detalaj agordoj"
 
- #~ msgid "Show advanced settings panel in the home page by default"
 
- #~ msgstr "Montru detalajn agordojn en la hejmpaĝo defaŭlte"
 
- #~ msgid "Allow all"
 
- #~ msgstr ""
 
- #~ msgid "Disable all"
 
- #~ msgstr ""
 
- #~ msgid "Selected language"
 
- #~ msgstr "Elekti lingvon"
 
- #~ msgid "Query"
 
- #~ msgstr ""
 
- #~ msgid "save"
 
- #~ msgstr "konservi"
 
- #~ msgid "back"
 
- #~ msgstr "antaŭen"
 
- #~ msgid "Links"
 
- #~ msgstr "Ligiloj"
 
- #~ msgid "RSS subscription"
 
- #~ msgstr ""
 
- #~ msgid "Search results"
 
- #~ msgstr "Serĉrezultoj"
 
- #~ msgid "next page"
 
- #~ msgstr "sekva paĝo"
 
- #~ msgid "previous page"
 
- #~ msgstr "antaŭa paĝo"
 
- #~ msgid "Start search"
 
- #~ msgstr "Komenci serĉon"
 
- #~ msgid "Clear search"
 
- #~ msgstr ""
 
- #~ msgid "Clear"
 
- #~ msgstr ""
 
- #~ msgid "stats"
 
- #~ msgstr "statistikoj"
 
- #~ msgid "Heads up!"
 
- #~ msgstr "Atentu!"
 
- #~ msgid "It look like you are using SearXNG first time."
 
- #~ msgstr ""
 
- #~ msgid "Well done!"
 
- #~ msgstr "Bonfarite!"
 
- #~ msgid "Settings saved successfully."
 
- #~ msgstr "Agordoj konservitaj sukcese."
 
- #~ msgid "Oh snap!"
 
- #~ msgstr "Ho ve!"
 
- #~ msgid "Something went wrong."
 
- #~ msgstr "Io fuŝiĝis."
 
- #~ msgid "Date"
 
- #~ msgstr ""
 
- #~ msgid "Type"
 
- #~ msgstr ""
 
- #~ msgid "Get image"
 
- #~ msgstr "Akiri bildon"
 
- #~ msgid "Center Alignment"
 
- #~ msgstr ""
 
- #~ msgid "Displays results in the center of the page (Oscar layout)."
 
- #~ msgstr ""
 
- #~ msgid "preferences"
 
- #~ msgstr "agordoj"
 
- #~ msgid "Scores per result"
 
- #~ msgstr "Poentaroj por unu rezulto"
 
- #~ msgid "a privacy-respecting, hackable metasearch engine"
 
- #~ msgstr "kodumebla metaserĉilo kiu respektas vian privatecon"
 
- #~ msgid "No abstract is available for this publication."
 
- #~ msgstr "Neniu resumo atingeblas por tiu ĉi eldonaĵo."
 
- #~ msgid "Self Informations"
 
- #~ msgstr "Memaj Informoj"
 
- #~ msgid ""
 
- #~ "Change how forms are submited, <a "
 
- #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
 
- #~ " rel=\"external\">learn more about request "
 
- #~ "methods</a>"
 
- #~ msgstr ""
 
- #~ "Ŝanĝi kiel formoj estas sendataj, <a "
 
- #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
 
- #~ " rel=\"external\">sciu pli pri peto-"
 
- #~ "metodoj</a>"
 
- #~ msgid ""
 
- #~ "This plugin checks if the address "
 
- #~ "of the request is a TOR exit "
 
- #~ "node, and informs the user if it"
 
- #~ " is, like check.torproject.org but from "
 
- #~ "searxng."
 
- #~ msgstr ""
 
- #~ msgid ""
 
- #~ "The TOR exit node list "
 
- #~ "(https://check.torproject.org/exit-addresses) is "
 
- #~ "unreachable."
 
- #~ msgstr ""
 
- #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
 
- #~ msgstr "Vi uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}."
 
- #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
 
- #~ msgstr "Vi ne uzas Tor-on. Via IP-adreso ŝajnas esti: {ip_address}."
 
- #~ msgid ""
 
- #~ "The could not download the list of"
 
- #~ " Tor exit-nodes from "
 
- #~ "https://check.torproject.org/exit-addresses."
 
- #~ msgstr ""
 
- #~ msgid ""
 
- #~ "You are using Tor. It looks like"
 
- #~ " you have this external IP address:"
 
- #~ " {ip_address}."
 
- #~ msgstr ""
 
- #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
 
- #~ msgstr ""
 
- #~ msgid "Autodetect search language"
 
- #~ msgstr ""
 
- #~ msgid "Automatically detect the query search language and switch to it."
 
- #~ msgstr ""
 
- #~ msgid "others"
 
- #~ msgstr "aliaj"
 
- #~ msgid ""
 
- #~ "This tab does not show up for "
 
- #~ "search results, but you can search "
 
- #~ "the engines listed here via bangs."
 
- #~ msgstr ""
 
- #~ msgid "Shortcut"
 
- #~ msgstr "Fulmoklavo"
 
- #~ msgid "!bang"
 
- #~ msgstr ""
 
- #~ msgid ""
 
- #~ "This tab dues not exists in the"
 
- #~ " user interface, but you can search"
 
- #~ " in these engines by its !bangs."
 
- #~ msgstr ""
 
- #~ msgid "Engines cannot retrieve results."
 
- #~ msgstr "Motoroj ne povas trovi rezultojn."
 
- #~ msgid "Please, try again later or find another SearXNG instance."
 
- #~ msgstr ""
 
- #~ msgid ""
 
- #~ "Redirect to open-access versions of "
 
- #~ "publications when available (plugin required)"
 
- #~ msgstr ""
 
- #~ "Direkti al malfermaliraj versioj de "
 
- #~ "eldonaĵoj, se eblas (aldonaĵo necesas)"
 
- #~ msgid "Bang"
 
- #~ msgstr "!bang"
 
- #~ msgid ""
 
- #~ "Change how forms are submitted, <a "
 
- #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
 
- #~ " rel=\"external\">learn more about request "
 
- #~ "methods</a>"
 
- #~ msgstr ""
 
- #~ "Ŝanĝu kiel oni sendas formularojn, <a"
 
- #~ " "
 
- #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
 
- #~ " rel=\"external\">lernu pli pri petaj "
 
- #~ "metodoj</a>"
 
- #~ msgid "On"
 
- #~ msgstr "Ŝaltita"
 
- #~ msgid "Off"
 
- #~ msgstr "Malŝaltita"
 
- #~ msgid "Enabled"
 
- #~ msgstr "Ŝaltita"
 
- #~ msgid "Disabled"
 
- #~ msgstr "Malŝaltita"
 
- #~ msgid ""
 
- #~ "Perform search immediately if a category"
 
- #~ " selected. Disable to select multiple "
 
- #~ "categories. (JavaScript required)"
 
- #~ msgstr ""
 
- #~ "Serĉi tuj se oni elektas kategorion. "
 
- #~ "Malŝaltu ĝin por elekti plurajn "
 
- #~ "kategoriojn (ĜavoSkripto bezonata)"
 
- #~ msgid "Vim-like hotkeys"
 
- #~ msgstr "Vim-ŝajnaj klavkomandoj"
 
- #~ msgid ""
 
- #~ "Navigate search results with Vim-like"
 
- #~ " hotkeys (JavaScript required). Press \"h\""
 
- #~ " key on main or result page to"
 
- #~ " get help."
 
- #~ msgstr ""
 
- #~ "Tranavigi serĉrezultojn per Vim-ŝajnaj "
 
- #~ "klavkomandoj (ĜavoSkripto bezonata). Premu "
 
- #~ "\"h\" por helptekstaro en ĉef- aŭ "
 
- #~ "rezultpaĝo."
 
- #~ msgid ""
 
- #~ "we didn't find any results. Please "
 
- #~ "use another query or search in "
 
- #~ "more categories."
 
- #~ msgstr ""
 
- #~ "ni ne trovis rezultojn. Bonvole uzu "
 
- #~ "alian serĉfrazon aŭ serĉu en pliaj "
 
- #~ "kategorioj."
 
- #~ msgid "Rewrite result hostnames or remove results based on the hostname"
 
- #~ msgstr ""
 
- #~ "Reskribi rezultajn gastigajn nomojn aŭ "
 
- #~ "forigi rezultojn bazitajn sur la gastiga"
 
- #~ " nomo"
 
- #~ msgid "Bytes"
 
- #~ msgstr "Bitokoj"
 
- #~ msgid "kiB"
 
- #~ msgstr "kiB"
 
- #~ msgid "MiB"
 
- #~ msgstr "MiB"
 
- #~ msgid "GiB"
 
- #~ msgstr "GiB"
 
- #~ msgid "TiB"
 
- #~ msgstr "TiB"
 
- #~ msgid "Hostname replace"
 
- #~ msgstr "Gastnomo anstataŭigas"
 
- #~ msgid "Error!"
 
- #~ msgstr "Eraro!"
 
- #~ msgid "Engines cannot retrieve results"
 
- #~ msgstr "Serĉiloj ne povas retrovi rezultojn"
 
 
  |