messages.po 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  1. # Lithuanian translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # Moo, 2019-2020
  7. # John Doe <cryptiox@protonmail.com>, 2022.
  8. # Mooo <moose@mail.ru>, 2023.
  9. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  10. # Archfiend <romkutisarch3@gmail.com>, 2023.
  11. # return42 <return42@users.noreply.translate.codeberg.org>, 2024.
  12. msgid ""
  13. msgstr ""
  14. "Project-Id-Version: searx\n"
  15. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  16. "POT-Creation-Date: 2024-11-24 11:51+0000\n"
  17. "PO-Revision-Date: 2024-07-30 08:18+0000\n"
  18. "Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
  19. "\n"
  20. "Language: lt\n"
  21. "Language-Team: Lithuanian "
  22. "<https://translate.codeberg.org/projects/searxng/searxng/lt/>\n"
  23. "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100"
  24. " < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < "
  25. "11) ? 1 : n % 1 != 0 ? 2: 3);\n"
  26. "MIME-Version: 1.0\n"
  27. "Content-Type: text/plain; charset=utf-8\n"
  28. "Content-Transfer-Encoding: 8bit\n"
  29. "Generated-By: Babel 2.16.0\n"
  30. #. CONSTANT_NAMES['NO_SUBGROUPING']
  31. #: searx/searxng.msg
  32. msgid "without further subgrouping"
  33. msgstr "be tolesnio pogrupio"
  34. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  35. #: searx/searxng.msg
  36. msgid "other"
  37. msgstr "kitas"
  38. #. CATEGORY_NAMES['FILES']
  39. #: searx/searxng.msg
  40. msgid "files"
  41. msgstr "failai"
  42. #. CATEGORY_NAMES['GENERAL']
  43. #: searx/searxng.msg
  44. msgid "general"
  45. msgstr "bendra"
  46. #. CATEGORY_NAMES['MUSIC']
  47. #: searx/searxng.msg
  48. msgid "music"
  49. msgstr "muzika"
  50. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  51. #: searx/searxng.msg
  52. msgid "social media"
  53. msgstr "socialiniai tinklai"
  54. #. CATEGORY_NAMES['IMAGES']
  55. #: searx/searxng.msg
  56. msgid "images"
  57. msgstr "nuotraukos"
  58. #. CATEGORY_NAMES['VIDEOS']
  59. #: searx/searxng.msg
  60. msgid "videos"
  61. msgstr "vaizdo įrašai"
  62. #. CATEGORY_NAMES['RADIO']
  63. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  64. msgid "radio"
  65. msgstr "radijas"
  66. #. CATEGORY_NAMES['TV']
  67. #: searx/searxng.msg
  68. msgid "tv"
  69. msgstr "televizorius"
  70. #. CATEGORY_NAMES['IT']
  71. #: searx/searxng.msg
  72. msgid "it"
  73. msgstr "IT"
  74. #. CATEGORY_NAMES['NEWS']
  75. #: searx/searxng.msg
  76. msgid "news"
  77. msgstr "naujienos"
  78. #. CATEGORY_NAMES['MAP']
  79. #: searx/searxng.msg
  80. msgid "map"
  81. msgstr "žemėlapis"
  82. #. CATEGORY_NAMES['ONIONS']
  83. #: searx/searxng.msg
  84. msgid "onions"
  85. msgstr "TOR puslapiai"
  86. #. CATEGORY_NAMES['SCIENCE']
  87. #: searx/searxng.msg
  88. msgid "science"
  89. msgstr "mokslas"
  90. #. CATEGORY_GROUPS['APPS']
  91. #: searx/searxng.msg
  92. msgid "apps"
  93. msgstr "programos"
  94. #. CATEGORY_GROUPS['DICTIONARIES']
  95. #: searx/searxng.msg
  96. msgid "dictionaries"
  97. msgstr "žodynai"
  98. #. CATEGORY_GROUPS['LYRICS']
  99. #: searx/searxng.msg
  100. msgid "lyrics"
  101. msgstr "dainų žodžiai"
  102. #. CATEGORY_GROUPS['PACKAGES']
  103. #: searx/searxng.msg
  104. msgid "packages"
  105. msgstr "paketai"
  106. #. CATEGORY_GROUPS['Q_A']
  107. #: searx/searxng.msg
  108. msgid "q&a"
  109. msgstr "Dažnai užduodami klausymai"
  110. #. CATEGORY_GROUPS['REPOS']
  111. #: searx/searxng.msg
  112. msgid "repos"
  113. msgstr "saugyklos"
  114. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  115. #: searx/searxng.msg
  116. msgid "software wikis"
  117. msgstr "programų žinynai"
  118. #. CATEGORY_GROUPS['WEB']
  119. #: searx/searxng.msg
  120. msgid "web"
  121. msgstr "internetas"
  122. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  123. #: searx/searxng.msg
  124. msgid "scientific publications"
  125. msgstr "mokslinės publikacijos"
  126. #. STYLE_NAMES['AUTO']
  127. #: searx/searxng.msg
  128. msgid "auto"
  129. msgstr "automatinis"
  130. #. STYLE_NAMES['LIGHT']
  131. #: searx/searxng.msg
  132. msgid "light"
  133. msgstr "šviesi"
  134. #. STYLE_NAMES['DARK']
  135. #: searx/searxng.msg
  136. msgid "dark"
  137. msgstr "tamsi"
  138. #. STYLE_NAMES['BLACK']
  139. #: searx/searxng.msg
  140. msgid "black"
  141. msgstr ""
  142. #. BRAND_CUSTOM_LINKS['UPTIME']
  143. #: searx/searxng.msg
  144. msgid "Uptime"
  145. msgstr ""
  146. #. BRAND_CUSTOM_LINKS['ABOUT']
  147. #: searx/searxng.msg searx/templates/simple/base.html:50
  148. msgid "About"
  149. msgstr "Apie"
  150. #. WEATHER_TERMS['AVERAGE TEMP.']
  151. #: searx/engines/wttr.py:32 searx/searxng.msg
  152. msgid "Average temp."
  153. msgstr "Vidutinė temperatura"
  154. #. WEATHER_TERMS['CLOUD COVER']
  155. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  156. msgid "Cloud cover"
  157. msgstr ""
  158. #. WEATHER_TERMS['CONDITION']
  159. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  160. #: searx/searxng.msg
  161. msgid "Condition"
  162. msgstr "Sąlyga"
  163. #. WEATHER_TERMS['CURRENT CONDITION']
  164. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  165. #: searx/searxng.msg
  166. msgid "Current condition"
  167. msgstr "Esamos sąlygos"
  168. #. WEATHER_TERMS['EVENING']
  169. #: searx/engines/wttr.py:100 searx/searxng.msg
  170. msgid "Evening"
  171. msgstr "Vakaras"
  172. #. WEATHER_TERMS['FEELS LIKE']
  173. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  174. #: searx/engines/wttr.py:59 searx/searxng.msg
  175. msgid "Feels like"
  176. msgstr "Jaučiasi kaip"
  177. #. WEATHER_TERMS['HUMIDITY']
  178. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  179. #: searx/engines/wttr.py:68 searx/searxng.msg
  180. msgid "Humidity"
  181. msgstr "Dregmė"
  182. #. WEATHER_TERMS['MAX TEMP.']
  183. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  184. #: searx/searxng.msg
  185. msgid "Max temp."
  186. msgstr "Aukščiausia temperatura"
  187. #. WEATHER_TERMS['MIN TEMP.']
  188. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  189. #: searx/searxng.msg
  190. msgid "Min temp."
  191. msgstr "Mažiausia temperatura"
  192. #. WEATHER_TERMS['MORNING']
  193. #: searx/engines/wttr.py:100 searx/searxng.msg
  194. msgid "Morning"
  195. msgstr "Rytas"
  196. #. WEATHER_TERMS['NIGHT']
  197. #: searx/engines/wttr.py:100 searx/searxng.msg
  198. msgid "Night"
  199. msgstr "Naktis"
  200. #. WEATHER_TERMS['NOON']
  201. #: searx/engines/wttr.py:100 searx/searxng.msg
  202. msgid "Noon"
  203. msgstr "Vidurdienis"
  204. #. WEATHER_TERMS['PRESSURE']
  205. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  206. msgid "Pressure"
  207. msgstr "Slėgis"
  208. #. WEATHER_TERMS['SUNRISE']
  209. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  210. #: searx/searxng.msg
  211. msgid "Sunrise"
  212. msgstr "Saulėtekis"
  213. #. WEATHER_TERMS['SUNSET']
  214. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  215. #: searx/searxng.msg
  216. msgid "Sunset"
  217. msgstr "Saulėlydis"
  218. #. WEATHER_TERMS['TEMPERATURE']
  219. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  220. #: searx/engines/wttr.py:55 searx/searxng.msg
  221. msgid "Temperature"
  222. msgstr "Temperatura"
  223. #. WEATHER_TERMS['UV INDEX']
  224. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  225. #: searx/searxng.msg
  226. msgid "UV index"
  227. msgstr "UV indeksas"
  228. #. WEATHER_TERMS['VISIBILITY']
  229. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  230. #: searx/searxng.msg
  231. msgid "Visibility"
  232. msgstr "Matomumas"
  233. #. WEATHER_TERMS['WIND']
  234. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  235. #: searx/engines/wttr.py:62 searx/searxng.msg
  236. msgid "Wind"
  237. msgstr "Vėjas"
  238. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  239. #: searx/engines/lemmy.py:85 searx/searxng.msg
  240. msgid "subscribers"
  241. msgstr "Prenumeratoriai"
  242. #. SOCIAL_MEDIA_TERMS['POSTS']
  243. #: searx/engines/lemmy.py:86 searx/searxng.msg
  244. msgid "posts"
  245. msgstr "Įrašai"
  246. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  247. #: searx/engines/lemmy.py:87 searx/searxng.msg
  248. msgid "active users"
  249. msgstr "Aktyvus naudotojai"
  250. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  251. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  252. #: searx/engines/lemmy.py:130 searx/searxng.msg
  253. msgid "comments"
  254. msgstr "Komentarai"
  255. #. SOCIAL_MEDIA_TERMS['USER']
  256. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  257. msgid "user"
  258. msgstr "Naudotojai"
  259. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  260. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  261. msgid "community"
  262. msgstr "Bendruomene"
  263. #. SOCIAL_MEDIA_TERMS['POINTS']
  264. #: searx/engines/hackernews.py:82 searx/searxng.msg
  265. msgid "points"
  266. msgstr "Taškai"
  267. #. SOCIAL_MEDIA_TERMS['TITLE']
  268. #: searx/searxng.msg
  269. msgid "title"
  270. msgstr "Pavadinimas"
  271. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  272. #: searx/engines/hackernews.py:85 searx/searxng.msg
  273. msgid "author"
  274. msgstr "Autorius"
  275. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  276. #: searx/engines/discourse.py:149 searx/searxng.msg
  277. msgid "open"
  278. msgstr ""
  279. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  280. #: searx/engines/discourse.py:149 searx/searxng.msg
  281. msgid "closed"
  282. msgstr ""
  283. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  284. #: searx/engines/discourse.py:160 searx/searxng.msg
  285. msgid "answered"
  286. msgstr ""
  287. #: searx/webapp.py:332
  288. msgid "No item found"
  289. msgstr "Elementų nerasta"
  290. #: searx/engines/qwant.py:288
  291. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:334
  292. msgid "Source"
  293. msgstr "Šaltinis"
  294. #: searx/webapp.py:336
  295. msgid "Error loading the next page"
  296. msgstr "Klaida keliant kitą puslapį"
  297. #: searx/webapp.py:495 searx/webapp.py:898
  298. msgid "Invalid settings, please edit your preferences"
  299. msgstr "Neteisingi nustatymai, pakeiskite savo nuostatas"
  300. #: searx/webapp.py:511
  301. msgid "Invalid settings"
  302. msgstr "Neteisingi nustatymai"
  303. #: searx/webapp.py:588 searx/webapp.py:670
  304. msgid "search error"
  305. msgstr "paieškos klaida"
  306. #: searx/webutils.py:36
  307. msgid "timeout"
  308. msgstr "laikas baigėsi"
  309. #: searx/webutils.py:37
  310. msgid "parsing error"
  311. msgstr "parsavymo klaida"
  312. #: searx/webutils.py:38
  313. msgid "HTTP protocol error"
  314. msgstr "HTTP protokolo klaida"
  315. #: searx/webutils.py:39
  316. msgid "network error"
  317. msgstr "tinklo klaida"
  318. #: searx/webutils.py:40
  319. msgid "SSL error: certificate validation has failed"
  320. msgstr "SSL klaida: liudijimo tikrinimas patyrė nesėkmę"
  321. #: searx/webutils.py:42
  322. msgid "unexpected crash"
  323. msgstr "netikėta klaida"
  324. #: searx/webutils.py:49
  325. msgid "HTTP error"
  326. msgstr "HTTP klaida"
  327. #: searx/webutils.py:50
  328. msgid "HTTP connection error"
  329. msgstr "HTTP ryšio klaida"
  330. #: searx/webutils.py:56
  331. msgid "proxy error"
  332. msgstr "persiuntimų serverio klaida"
  333. #: searx/webutils.py:57
  334. msgid "CAPTCHA"
  335. msgstr "CAPTCHA"
  336. #: searx/webutils.py:58
  337. msgid "too many requests"
  338. msgstr "per daug užklausų"
  339. #: searx/webutils.py:59
  340. msgid "access denied"
  341. msgstr "prieiga uždrausta"
  342. #: searx/webutils.py:60
  343. msgid "server API error"
  344. msgstr "serverio API klaida"
  345. #: searx/webutils.py:79
  346. msgid "Suspended"
  347. msgstr "Sustabdytas"
  348. #: searx/webutils.py:314
  349. msgid "{minutes} minute(s) ago"
  350. msgstr "prieš {minutes} min"
  351. #: searx/webutils.py:315
  352. msgid "{hours} hour(s), {minutes} minute(s) ago"
  353. msgstr "prieš {hours} val., {minutes} min"
  354. #: searx/answerers/random/answerer.py:76
  355. msgid "Random value generator"
  356. msgstr "Atsitiktinių skaičiu generatorius"
  357. #: searx/answerers/random/answerer.py:77
  358. msgid "Generate different random values"
  359. msgstr "Generuoja įvairias atsitiktinius skaičius"
  360. #: searx/answerers/statistics/answerer.py:50
  361. msgid "Statistics functions"
  362. msgstr "Statistikos funkcijos"
  363. #: searx/answerers/statistics/answerer.py:51
  364. msgid "Compute {functions} of the arguments"
  365. msgstr "Skaičiuoti argumentų {functions} funkcijas"
  366. #: searx/engines/mozhi.py:57
  367. msgid "Synonyms"
  368. msgstr ""
  369. #: searx/engines/openstreetmap.py:159
  370. msgid "Get directions"
  371. msgstr "Gauti nurodymus"
  372. #: searx/engines/pdbe.py:96
  373. msgid "{title} (OBSOLETE)"
  374. msgstr "{title} (PASENĘS)"
  375. #: searx/engines/pdbe.py:103
  376. msgid "This entry has been superseded by"
  377. msgstr "Šį įrašą pakeitė"
  378. #: searx/engines/qwant.py:290
  379. msgid "Channel"
  380. msgstr "Kanalas"
  381. #: searx/engines/radio_browser.py:105
  382. msgid "bitrate"
  383. msgstr "Bitrate"
  384. #: searx/engines/radio_browser.py:106
  385. msgid "votes"
  386. msgstr "balsai"
  387. #: searx/engines/radio_browser.py:107
  388. msgid "clicks"
  389. msgstr "paspaudimai"
  390. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  391. #: searx/engines/zlibrary.py:137
  392. msgid "Language"
  393. msgstr "Kalba"
  394. #: searx/engines/semantic_scholar.py:78
  395. msgid ""
  396. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  397. "{lastCitationVelocityYear}"
  398. msgstr ""
  399. "{numCitations} citatos iš metų{firstCitationVelocityYear} to "
  400. "{lastCitationVelocityYear}"
  401. #: searx/engines/tineye.py:45
  402. msgid ""
  403. "Could not read that image url. This may be due to an unsupported file "
  404. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  405. " WebP."
  406. msgstr ""
  407. "Nepavyko perskaityti šio vaizdo URL. Taip gali būti dėl nepalaikomo failo"
  408. " formato. TinEye palaiko tik JPEG, PNG, GIF, BMP, TIFF arba WebP vaizdus."
  409. #: searx/engines/tineye.py:51
  410. msgid ""
  411. "The image is too simple to find matches. TinEye requires a basic level of"
  412. " visual detail to successfully identify matches."
  413. msgstr ""
  414. "Vaizdas per paprastas, kad būtų galima rasti atitikmenų. Norint sėkmingai"
  415. " nustatyti atitikmenis, „TinEye“ reikalingas pagrindinis vizualinių "
  416. "detalių lygis."
  417. #: searx/engines/tineye.py:57
  418. msgid "The image could not be downloaded."
  419. msgstr "Nepavyko atsisiųsti vaizdo."
  420. #: searx/engines/zlibrary.py:138
  421. msgid "Book rating"
  422. msgstr "Knygos įvertinimas"
  423. #: searx/engines/zlibrary.py:139
  424. msgid "File quality"
  425. msgstr "Failo kokybė"
  426. #: searx/plugins/calculator.py:18
  427. msgid "Calculate mathematical expressions via the search bar"
  428. msgstr ""
  429. #: searx/plugins/hash_plugin.py:10
  430. msgid "Converts strings to different hash digests."
  431. msgstr "Konvertuoja eilutes į skirtingas maišos santraukas."
  432. #: searx/plugins/hash_plugin.py:38
  433. msgid "hash digest"
  434. msgstr "maišos santrauka"
  435. #: searx/plugins/hostnames.py:103
  436. msgid "Hostnames plugin"
  437. msgstr ""
  438. #: searx/plugins/hostnames.py:104
  439. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  440. msgstr ""
  441. #: searx/plugins/oa_doi_rewrite.py:12
  442. msgid "Open Access DOI rewrite"
  443. msgstr "Atvirosios prieigos DOI perrašymas"
  444. #: searx/plugins/oa_doi_rewrite.py:13
  445. msgid ""
  446. "Avoid paywalls by redirecting to open-access versions of publications "
  447. "when available"
  448. msgstr ""
  449. "Vengti apmokamas sienas, peradresuojant į atviros prieigos publikacijų "
  450. "versijas"
  451. #: searx/plugins/self_info.py:9
  452. msgid "Self Information"
  453. msgstr "Savęs informacija"
  454. #: searx/plugins/self_info.py:10
  455. msgid ""
  456. "Displays your IP if the query is \"ip\" and your user agent if the query "
  457. "contains \"user agent\"."
  458. msgstr ""
  459. "Rodo jūsų IP adresą, jei užklausa yra \"ip\" ir jūsų naudotojo agentą, "
  460. "jei užklausoje yra \"user agent\"."
  461. #: searx/plugins/self_info.py:28
  462. msgid "Your IP is: "
  463. msgstr "Jūsų IP adresas: "
  464. #: searx/plugins/self_info.py:31
  465. msgid "Your user-agent is: "
  466. msgstr ""
  467. #: searx/plugins/tor_check.py:24
  468. msgid "Tor check plugin"
  469. msgstr "„Tor check“ papildinys"
  470. #: searx/plugins/tor_check.py:27
  471. msgid ""
  472. "This plugin checks if the address of the request is a Tor exit-node, and "
  473. "informs the user if it is; like check.torproject.org, but from SearXNG."
  474. msgstr ""
  475. "Šis papildinys patikrina, ar užklausos adresas yra Tor išėjimo mazgas, ir"
  476. " informuoja vartotoją, jei taip yra; kaip check.torproject.org, bet iš "
  477. "SearXNG."
  478. #: searx/plugins/tor_check.py:61
  479. msgid ""
  480. "Could not download the list of Tor exit-nodes from: "
  481. "https://check.torproject.org/exit-addresses"
  482. msgstr ""
  483. "Nepavyko atsisiųsti „Tor“ išėjimo mazgų sąrašo iš: "
  484. "https://check.torproject.org/exit-addresses"
  485. #: searx/plugins/tor_check.py:77
  486. msgid ""
  487. "You are using Tor and it looks like you have this external IP address: "
  488. "{ip_address}"
  489. msgstr "Naudojate Tor ir atrodo, kad turite šį išorinį IP adresą: {ip_address}"
  490. #: searx/plugins/tor_check.py:85
  491. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  492. msgstr "Jūs nenaudojate Tor ir turite šį išorinį IP adresą: {ip_address}"
  493. #: searx/plugins/tracker_url_remover.py:16
  494. msgid "Tracker URL remover"
  495. msgstr "Seklių URL šalintojas"
  496. #: searx/plugins/tracker_url_remover.py:17
  497. msgid "Remove trackers arguments from the returned URL"
  498. msgstr "Šalinti seklių argumentus iš grąžinamų URL"
  499. #: searx/plugins/unit_converter.py:29
  500. msgid "Convert between units"
  501. msgstr ""
  502. #: searx/templates/simple/404.html:4
  503. msgid "Page not found"
  504. msgstr "Puslapis nerastas"
  505. #: searx/templates/simple/404.html:6
  506. #, python-format
  507. msgid "Go to %(search_page)s."
  508. msgstr "Pereiti į %(search_page)s."
  509. #: searx/templates/simple/404.html:6
  510. msgid "search page"
  511. msgstr "paieškos puslapį"
  512. #: searx/templates/simple/base.html:54
  513. msgid "Donate"
  514. msgstr "Paaukoti"
  515. #: searx/templates/simple/base.html:58
  516. #: searx/templates/simple/preferences.html:156
  517. msgid "Preferences"
  518. msgstr "Nuostatos"
  519. #: searx/templates/simple/base.html:68
  520. msgid "Powered by"
  521. msgstr "Veikia su"
  522. #: searx/templates/simple/base.html:68
  523. msgid "a privacy-respecting, open metasearch engine"
  524. msgstr "privatumą gerbiantis atviras metapaieškos variklis"
  525. #: searx/templates/simple/base.html:69
  526. #: searx/templates/simple/result_templates/packages.html:59
  527. msgid "Source code"
  528. msgstr "Šaltinio kodas"
  529. #: searx/templates/simple/base.html:70
  530. msgid "Issue tracker"
  531. msgstr "Klaidų sekiklis"
  532. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  533. msgid "Engine stats"
  534. msgstr "Statistika statistika"
  535. #: searx/templates/simple/base.html:73
  536. msgid "Public instances"
  537. msgstr "Viešos instancijos"
  538. #: searx/templates/simple/base.html:76
  539. msgid "Privacy policy"
  540. msgstr "Privatumo politika"
  541. #: searx/templates/simple/base.html:79
  542. msgid "Contact instance maintainer"
  543. msgstr "Susisiekite su instancijos prižiūrėtoju"
  544. #: searx/templates/simple/categories.html:26
  545. msgid "Click on the magnifier to perform search"
  546. msgstr "Norėdami atlikti paiešką, spustelėkite ant didinamojo stiklo"
  547. #: searx/templates/simple/macros.html:40
  548. msgid "Length"
  549. msgstr "Trukmė"
  550. #: searx/templates/simple/macros.html:41
  551. msgid "Views"
  552. msgstr "Peržiūros"
  553. #: searx/templates/simple/macros.html:42
  554. #: searx/templates/simple/result_templates/files.html:34
  555. #: searx/templates/simple/result_templates/images.html:19
  556. #: searx/templates/simple/result_templates/paper.html:6
  557. msgid "Author"
  558. msgstr "Autorius"
  559. #: searx/templates/simple/macros.html:50
  560. msgid "cached"
  561. msgstr "patalpinta"
  562. #: searx/templates/simple/macros.html:50
  563. msgid "proxied"
  564. msgstr "persiustas"
  565. #: searx/templates/simple/new_issue.html:64
  566. msgid "Start submitting a new issue on GitHub"
  567. msgstr ""
  568. #: searx/templates/simple/new_issue.html:66
  569. msgid "Please check for existing bugs about this engine on GitHub"
  570. msgstr "Prasome paziurėti esamas klaidas apie šią sistemą Github'e"
  571. #: searx/templates/simple/new_issue.html:69
  572. msgid "I confirm there is no existing bug about the issue I encounter"
  573. msgstr "Aš patvirtinu, kad nera jokių esamų"
  574. #: searx/templates/simple/new_issue.html:71
  575. msgid "If this is a public instance, please specify the URL in the bug report"
  576. msgstr "Jei tai yra vieša, prašome nurodyti URL bugų pranešime"
  577. #: searx/templates/simple/new_issue.html:72
  578. msgid "Submit a new issue on Github including the above information"
  579. msgstr "Pateikite nauja klaidą Github, įvedant informaciją viršuje."
  580. #: searx/templates/simple/preferences.html:65
  581. msgid "No HTTPS"
  582. msgstr "Nėra HTTPS"
  583. #: searx/templates/simple/elements/engines_msg.html:14
  584. #: searx/templates/simple/preferences.html:69
  585. #: searx/templates/simple/preferences.html:70
  586. msgid "View error logs and submit a bug report"
  587. msgstr "Peržiūrėkite klaidų žurnalus ir pateikite klaidų ataskaitą"
  588. #: searx/templates/simple/preferences.html:74
  589. msgid "!bang for this engine"
  590. msgstr "!bang šiam varikliui"
  591. #: searx/templates/simple/preferences.html:80
  592. msgid "!bang for its categories"
  593. msgstr "!bang šiom kategorijom"
  594. #: searx/templates/simple/preferences.html:102
  595. #: searx/templates/simple/stats.html:64
  596. msgid "Median"
  597. msgstr "Mediana"
  598. #: searx/templates/simple/preferences.html:103
  599. #: searx/templates/simple/stats.html:70
  600. msgid "P80"
  601. msgstr "P80"
  602. #: searx/templates/simple/preferences.html:104
  603. #: searx/templates/simple/stats.html:76
  604. msgid "P95"
  605. msgstr "P95"
  606. #: searx/templates/simple/preferences.html:136
  607. msgid "Failed checker test(s): "
  608. msgstr "Nepavykęs tikrintojo testas (-ai): "
  609. #: searx/templates/simple/preferences.html:138
  610. msgid "Errors:"
  611. msgstr "Klaidos:"
  612. #: searx/templates/simple/preferences.html:162
  613. msgid "General"
  614. msgstr "Bendra"
  615. #: searx/templates/simple/preferences.html:165
  616. msgid "Default categories"
  617. msgstr "Numatytosios kategorijos"
  618. #: searx/templates/simple/preferences.html:190
  619. msgid "User interface"
  620. msgstr "Naudotojo sąsaja"
  621. #: searx/templates/simple/preferences.html:211
  622. msgid "Privacy"
  623. msgstr "Privatumas"
  624. #: searx/templates/simple/preferences.html:224
  625. msgid "Engines"
  626. msgstr "Sistemos"
  627. #: searx/templates/simple/preferences.html:226
  628. msgid "Currently used search engines"
  629. msgstr "Šiuo metu naudojamos paieškos sistemos"
  630. #: searx/templates/simple/preferences.html:234
  631. msgid "Special Queries"
  632. msgstr "Specialios Užklausos"
  633. #: searx/templates/simple/preferences.html:240
  634. msgid "Cookies"
  635. msgstr "Slapukai"
  636. #: searx/templates/simple/results.html:23
  637. msgid "Answers"
  638. msgstr "Atsakymai"
  639. #: searx/templates/simple/results.html:42
  640. msgid "Number of results"
  641. msgstr "Rezultatų skaičius"
  642. #: searx/templates/simple/results.html:48
  643. msgid "Info"
  644. msgstr "Informacija"
  645. #: searx/templates/simple/results.html:75
  646. msgid "Try searching for:"
  647. msgstr "Bandykite ieškoti:"
  648. #: searx/templates/simple/results.html:107
  649. msgid "Back to top"
  650. msgstr "Atgal į viršų"
  651. #: searx/templates/simple/results.html:125
  652. msgid "Previous page"
  653. msgstr "Praitas puslapis"
  654. #: searx/templates/simple/results.html:143
  655. msgid "Next page"
  656. msgstr "Kitas puslapis"
  657. #: searx/templates/simple/search.html:3
  658. msgid "Display the front page"
  659. msgstr "Rodyti pagrindinį puslapį"
  660. #: searx/templates/simple/search.html:9
  661. #: searx/templates/simple/simple_search.html:5
  662. msgid "Search for..."
  663. msgstr "Ko ieškoti..."
  664. #: searx/templates/simple/search.html:10
  665. #: searx/templates/simple/simple_search.html:6
  666. msgid "clear"
  667. msgstr "išvalyti"
  668. #: searx/templates/simple/search.html:11
  669. #: searx/templates/simple/simple_search.html:7
  670. msgid "search"
  671. msgstr "ieškoti"
  672. #: searx/templates/simple/stats.html:21
  673. msgid "There is currently no data available. "
  674. msgstr "Šiuo metu nėra jokių prieinamų duomenų. "
  675. #: searx/templates/simple/preferences/engines.html:24
  676. #: searx/templates/simple/stats.html:25
  677. msgid "Engine name"
  678. msgstr "Sistemos pavadinimas"
  679. #: searx/templates/simple/stats.html:26
  680. msgid "Scores"
  681. msgstr "Įvertinimas"
  682. #: searx/templates/simple/stats.html:27
  683. msgid "Result count"
  684. msgstr "Rezultatų skaičius"
  685. #: searx/templates/simple/elements/engines_msg.html:7
  686. #: searx/templates/simple/preferences/engines.html:31
  687. #: searx/templates/simple/stats.html:28
  688. msgid "Response time"
  689. msgstr "Atsakymo greitis"
  690. #: searx/templates/simple/preferences/engines.html:35
  691. #: searx/templates/simple/stats.html:29
  692. msgid "Reliability"
  693. msgstr "Patikimumas"
  694. #: searx/templates/simple/stats.html:59
  695. msgid "Total"
  696. msgstr "Visas"
  697. #: searx/templates/simple/stats.html:60
  698. msgid "HTTP"
  699. msgstr "HTTP"
  700. #: searx/templates/simple/stats.html:61
  701. msgid "Processing"
  702. msgstr "Apdorojama"
  703. #: searx/templates/simple/stats.html:99
  704. msgid "Warnings"
  705. msgstr "Ispėjimai"
  706. #: searx/templates/simple/stats.html:99
  707. msgid "Errors and exceptions"
  708. msgstr "Klaidos ir išimtys"
  709. #: searx/templates/simple/stats.html:105
  710. msgid "Exception"
  711. msgstr "Išimtis"
  712. #: searx/templates/simple/stats.html:107
  713. msgid "Message"
  714. msgstr "Žinutė"
  715. #: searx/templates/simple/stats.html:109
  716. msgid "Percentage"
  717. msgstr "Procentinė dalis"
  718. #: searx/templates/simple/stats.html:111
  719. msgid "Parameter"
  720. msgstr "Parametras"
  721. #: searx/templates/simple/result_templates/files.html:36
  722. #: searx/templates/simple/stats.html:119
  723. msgid "Filename"
  724. msgstr "Failo pavadinimas"
  725. #: searx/templates/simple/stats.html:120
  726. msgid "Function"
  727. msgstr "Funkcija"
  728. #: searx/templates/simple/stats.html:121
  729. msgid "Code"
  730. msgstr "Kodas"
  731. #: searx/templates/simple/stats.html:128
  732. msgid "Checker"
  733. msgstr "Tikrintojas"
  734. #: searx/templates/simple/stats.html:131
  735. msgid "Failed test"
  736. msgstr "Nepavykęs testas"
  737. #: searx/templates/simple/stats.html:132
  738. msgid "Comment(s)"
  739. msgstr "Komentaras(-ai)"
  740. #: searx/templates/simple/elements/apis.html:3
  741. msgid "Download results"
  742. msgstr "Atsisiųsti rezultatus"
  743. #: searx/templates/simple/elements/engines_msg.html:4
  744. msgid "Messages from the search engines"
  745. msgstr "Pranešimai iš paieškos sistemų"
  746. #: searx/templates/simple/elements/engines_msg.html:7
  747. msgid "seconds"
  748. msgstr ""
  749. #: searx/templates/simple/elements/search_url.html:3
  750. msgid "Search URL"
  751. msgstr "Paieškos URL"
  752. #: searx/templates/simple/elements/search_url.html:4
  753. #: searx/templates/simple/preferences/cookies.html:54
  754. msgid "Copied"
  755. msgstr "Nukopijuota"
  756. #: searx/templates/simple/elements/search_url.html:4
  757. #: searx/templates/simple/preferences/cookies.html:54
  758. msgid "Copy"
  759. msgstr "Kopijuoti"
  760. #: searx/templates/simple/elements/suggestions.html:3
  761. msgid "Suggestions"
  762. msgstr "Pasiūlymai"
  763. #: searx/templates/simple/filters/languages.html:1
  764. #: searx/templates/simple/preferences/language.html:2
  765. msgid "Search language"
  766. msgstr "Paieškos kalba"
  767. #: searx/templates/simple/filters/languages.html:4
  768. #: searx/templates/simple/preferences/language.html:7
  769. msgid "Default language"
  770. msgstr "Numatytoji kalba"
  771. #: searx/templates/simple/filters/languages.html:8
  772. #: searx/templates/simple/preferences/language.html:11
  773. msgid "Auto-detect"
  774. msgstr "Automatiškai aptikti"
  775. #: searx/templates/simple/filters/safesearch.html:1
  776. #: searx/templates/simple/filters/safesearch.html:2
  777. #: searx/templates/simple/filters/safesearch.html:3
  778. #: searx/templates/simple/filters/safesearch.html:4
  779. #: searx/templates/simple/preferences/engines.html:27
  780. #: searx/templates/simple/preferences/safesearch.html:2
  781. msgid "SafeSearch"
  782. msgstr "Saugi paieška"
  783. #: searx/templates/simple/filters/safesearch.html:2
  784. #: searx/templates/simple/preferences/safesearch.html:7
  785. msgid "Strict"
  786. msgstr "Griežta"
  787. #: searx/templates/simple/filters/safesearch.html:3
  788. #: searx/templates/simple/preferences/safesearch.html:11
  789. msgid "Moderate"
  790. msgstr "Nuosaiki"
  791. #: searx/templates/simple/filters/safesearch.html:4
  792. #: searx/templates/simple/preferences/safesearch.html:15
  793. msgid "None"
  794. msgstr "Nėra"
  795. #: searx/templates/simple/filters/time_range.html:1
  796. #: searx/templates/simple/preferences/engines.html:28
  797. msgid "Time range"
  798. msgstr "Laiko diapazonas"
  799. #: searx/templates/simple/filters/time_range.html:3
  800. msgid "Anytime"
  801. msgstr "Bet kada"
  802. #: searx/templates/simple/filters/time_range.html:6
  803. msgid "Last day"
  804. msgstr "Praeitą dieną"
  805. #: searx/templates/simple/filters/time_range.html:9
  806. msgid "Last week"
  807. msgstr "Praeitą savaitę"
  808. #: searx/templates/simple/filters/time_range.html:12
  809. msgid "Last month"
  810. msgstr "Praeitą mėnesį"
  811. #: searx/templates/simple/filters/time_range.html:15
  812. msgid "Last year"
  813. msgstr "Praeitais metais"
  814. #: searx/templates/simple/messages/no_cookies.html:3
  815. msgid "Information!"
  816. msgstr "Informacija!"
  817. #: searx/templates/simple/messages/no_cookies.html:4
  818. msgid "currently, there are no cookies defined."
  819. msgstr "šiuo metu nėra jokių apibrėžtų slapukų."
  820. #: searx/templates/simple/messages/no_results.html:6
  821. msgid "Sorry!"
  822. msgstr "Atleiskite!"
  823. #: searx/templates/simple/messages/no_results.html:12
  824. msgid "No results were found. You can try to:"
  825. msgstr "Nieko nebuvo rasta. Galite bandyti:"
  826. #: searx/templates/simple/messages/no_results.html:14
  827. msgid "There are no more results. You can try to:"
  828. msgstr "Daugiau rezultatų nėra. Galite pabandyti:"
  829. #: searx/templates/simple/messages/no_results.html:19
  830. msgid "Refresh the page."
  831. msgstr "Atnaujinti puslapį"
  832. #: searx/templates/simple/messages/no_results.html:20
  833. msgid "Search for another query or select another category (above)."
  834. msgstr "Ieškokite kitos užklausos arba pasirinkite kitą kategoriją (aukščiau)."
  835. #: searx/templates/simple/messages/no_results.html:21
  836. msgid "Change the search engine used in the preferences:"
  837. msgstr "Pakeiskite nuostatose naudojamą paieškos variklį:"
  838. #: searx/templates/simple/messages/no_results.html:22
  839. msgid "Switch to another instance:"
  840. msgstr ""
  841. #: searx/templates/simple/messages/no_results.html:24
  842. msgid "Search for another query or select another category."
  843. msgstr ""
  844. #: searx/templates/simple/messages/no_results.html:25
  845. msgid "Go back to the previous page using the previous page button."
  846. msgstr "Grišti į praeita puslapi naudojant praeito puslapio mygutką."
  847. #: searx/templates/simple/preferences/answerers.html:4
  848. #: searx/templates/simple/preferences/engines.html:23
  849. msgid "Allow"
  850. msgstr "Leisti"
  851. #: searx/templates/simple/preferences/answerers.html:5
  852. msgid "Keywords"
  853. msgstr "Raktažodžiai"
  854. #: searx/templates/simple/preferences/answerers.html:6
  855. #: searx/templates/simple/result_templates/packages.html:7
  856. msgid "Name"
  857. msgstr "Pavadinimas"
  858. #: searx/templates/simple/preferences/answerers.html:7
  859. msgid "Description"
  860. msgstr "Aprašas"
  861. #: searx/templates/simple/preferences/answerers.html:8
  862. msgid "Examples"
  863. msgstr "Pavyzdžiai"
  864. #: searx/templates/simple/preferences/answerers.html:13
  865. msgid "This is the list of SearXNG's instant answering modules."
  866. msgstr "Šis sąrašas yra SearXNG"
  867. #: searx/templates/simple/preferences/answerers.html:29
  868. msgid "This is the list of plugins."
  869. msgstr "Čia yra papildinių sąrašas."
  870. #: searx/templates/simple/preferences/autocomplete.html:2
  871. msgid "Autocomplete"
  872. msgstr "Automatinis užbaigimas"
  873. #: searx/templates/simple/preferences/autocomplete.html:15
  874. msgid "Find stuff as you type"
  875. msgstr "Rasti medžiagą berašant"
  876. #: searx/templates/simple/preferences/center_alignment.html:2
  877. msgid "Center Alignment"
  878. msgstr "Centro Išdėstymas"
  879. #: searx/templates/simple/preferences/center_alignment.html:14
  880. msgid "Displays results in the center of the page (Oscar layout)."
  881. msgstr "Rodo rezultatus puslapio viduryje (Oskaro išdėstymas)."
  882. #: searx/templates/simple/preferences/cookies.html:2
  883. msgid ""
  884. "This is the list of cookies and their values SearXNG is storing on your "
  885. "computer."
  886. msgstr ""
  887. "Čia yra slapukų sąrašas ir jų informacija, kurią SearXNG saugo jūsų "
  888. "kompiuterije."
  889. #: searx/templates/simple/preferences/cookies.html:3
  890. msgid "With that list, you can assess SearXNG transparency."
  891. msgstr "Su šiuo sąrašu, jūs gaunate prieiga prie SearXNG permatomumą."
  892. #: searx/templates/simple/preferences/cookies.html:9
  893. msgid "Cookie name"
  894. msgstr "Slapuko pavadinimas"
  895. #: searx/templates/simple/preferences/cookies.html:10
  896. msgid "Value"
  897. msgstr "Reikšmė"
  898. #: searx/templates/simple/preferences/cookies.html:23
  899. msgid "Search URL of the currently saved preferences"
  900. msgstr "Šiuo metu įrašytų nuostatų paieškos URL"
  901. #: searx/templates/simple/preferences/cookies.html:32
  902. msgid ""
  903. "Note: specifying custom settings in the search URL can reduce privacy by "
  904. "leaking data to the clicked result sites."
  905. msgstr ""
  906. "Pastaba: paieškos URL adrese nurodant tinkintus nustatymus, gali būti "
  907. "sumažintas jūsų privatumas, atskleidžiant duomenis toms rezultatų "
  908. "svetainėms, ant kurių spustelėjate."
  909. #: searx/templates/simple/preferences/cookies.html:35
  910. msgid "URL to restore your preferences in another browser"
  911. msgstr "URL, kad galėtumėte atstatyti savo nuostatas kitoje naršyklėje"
  912. #: searx/templates/simple/preferences/cookies.html:43
  913. msgid ""
  914. "Specifying custom settings in the preferences URL can be used to sync "
  915. "preferences across devices."
  916. msgstr ""
  917. "Nurodant tinkintus nustatymus nuostatų URL, jūs galite susinchronizuoti "
  918. "nuostatas tarp prietaisų."
  919. #: searx/templates/simple/preferences/cookies.html:46
  920. msgid "Copy preferences hash"
  921. msgstr ""
  922. #: searx/templates/simple/preferences/cookies.html:57
  923. msgid "Insert copied preferences hash (without URL) to restore"
  924. msgstr ""
  925. #: searx/templates/simple/preferences/cookies.html:59
  926. msgid "Preferences hash"
  927. msgstr ""
  928. #: searx/templates/simple/preferences/doi_resolver.html:2
  929. msgid "Open Access DOI resolver"
  930. msgstr "Atvirosios prieigos DOI sprendimų įtaisas"
  931. #: searx/templates/simple/preferences/doi_resolver.html:14
  932. msgid "Select service used by DOI rewrite"
  933. msgstr ""
  934. #: searx/templates/simple/preferences/engines.html:9
  935. msgid ""
  936. "This tab does not exists in the user interface, but you can search in "
  937. "these engines by its !bangs."
  938. msgstr ""
  939. #: searx/templates/simple/preferences/engines.html:15
  940. msgid "Enable all"
  941. msgstr "Aktyvuoti viska"
  942. #: searx/templates/simple/preferences/engines.html:16
  943. msgid "Disable all"
  944. msgstr "Išjungti viska"
  945. #: searx/templates/simple/preferences/engines.html:25
  946. msgid "!bang"
  947. msgstr "!pokšt"
  948. #: searx/templates/simple/preferences/engines.html:26
  949. msgid "Supports selected language"
  950. msgstr "Palaiko pasirinktą kalbą"
  951. #: searx/templates/simple/preferences/engines.html:29
  952. msgid "Weight"
  953. msgstr "Svoris"
  954. #: searx/templates/simple/preferences/engines.html:33
  955. msgid "Max time"
  956. msgstr "Maksimalus laikas"
  957. #: searx/templates/simple/preferences/favicon.html:2
  958. msgid "Favicon Resolver"
  959. msgstr ""
  960. #: searx/templates/simple/preferences/favicon.html:15
  961. msgid "Display favicons near search results"
  962. msgstr ""
  963. #: searx/templates/simple/preferences/footer.html:2
  964. msgid ""
  965. "These settings are stored in your cookies, this allows us not to store "
  966. "this data about you."
  967. msgstr ""
  968. "Šie nustatymai yra laikomi jūsų slapukuose, tai leidžia mums nesaugoti "
  969. "šių duomenų apie jus."
  970. #: searx/templates/simple/preferences/footer.html:3
  971. msgid ""
  972. "These cookies serve your sole convenience, we don't use these cookies to "
  973. "track you."
  974. msgstr ""
  975. "Šie slapukai yra naudojami išskirtinai jūsų patogumui, mes nenaudojame "
  976. "jų, kad jus sektume."
  977. #: searx/templates/simple/preferences/footer.html:6
  978. msgid "Save"
  979. msgstr "Išsaugoti"
  980. #: searx/templates/simple/preferences/footer.html:9
  981. msgid "Reset defaults"
  982. msgstr "Atstatyti numatytasias nuostatas"
  983. #: searx/templates/simple/preferences/footer.html:13
  984. msgid "Back"
  985. msgstr "Atgal"
  986. #: searx/templates/simple/preferences/hotkeys.html:2
  987. msgid "Hotkeys"
  988. msgstr "Karštieji mygtukai"
  989. #: searx/templates/simple/preferences/hotkeys.html:13
  990. msgid "Vim-like"
  991. msgstr ""
  992. #: searx/templates/simple/preferences/hotkeys.html:18
  993. msgid ""
  994. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  995. "key on main or result page to get help."
  996. msgstr ""
  997. #: searx/templates/simple/preferences/image_proxy.html:2
  998. msgid "Image proxy"
  999. msgstr "Paveikslų persiuntimas"
  1000. #: searx/templates/simple/preferences/image_proxy.html:14
  1001. msgid "Proxying image results through SearXNG"
  1002. msgstr "Persiunčiami paveikslai per SearXNG"
  1003. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1004. msgid "Infinite scroll"
  1005. msgstr "Begalinis slinkimas"
  1006. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1007. msgid "Automatically load next page when scrolling to bottom of current page"
  1008. msgstr "Automatiškai įkelti kitą puslapį, kai nuslenkama į esamo puslapio apačią"
  1009. #: searx/templates/simple/preferences/language.html:24
  1010. msgid "What language do you prefer for search?"
  1011. msgstr "Kokią kalbą pageidaujate paieškai?"
  1012. #: searx/templates/simple/preferences/language.html:25
  1013. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1014. msgstr ""
  1015. #: searx/templates/simple/preferences/method.html:2
  1016. msgid "HTTP Method"
  1017. msgstr "HTTP Metodas"
  1018. #: searx/templates/simple/preferences/method.html:14
  1019. msgid "Change how forms are submitted"
  1020. msgstr ""
  1021. #: searx/templates/simple/preferences/query_in_title.html:2
  1022. msgid "Query in the page's title"
  1023. msgstr "Užklausa puslapio pavadinime"
  1024. #: searx/templates/simple/preferences/query_in_title.html:14
  1025. msgid ""
  1026. "When enabled, the result page's title contains your query. Your browser "
  1027. "can record this title"
  1028. msgstr ""
  1029. "Įjungus, prie rezultatų puslapio pavadinimo pridedama jūsų užklausa. Jūsų"
  1030. " naršykle gali šį pavadinimą įrašyti"
  1031. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1032. msgid "Results on new tabs"
  1033. msgstr "Rezultatai naujose skirtukuose"
  1034. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1035. msgid "Open result links on new browser tabs"
  1036. msgstr "Atverti rezultatų nuorodas naujose naršyklės skirtukuose"
  1037. #: searx/templates/simple/preferences/safesearch.html:20
  1038. msgid "Filter content"
  1039. msgstr "Filtruoti turinį"
  1040. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1041. msgid "Search on category select"
  1042. msgstr "Pasirinkus kategoriją, atlikti paiešką"
  1043. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1044. msgid ""
  1045. "Perform search immediately if a category selected. Disable to select "
  1046. "multiple categories"
  1047. msgstr ""
  1048. #: searx/templates/simple/preferences/theme.html:2
  1049. msgid "Theme"
  1050. msgstr "Tema"
  1051. #: searx/templates/simple/preferences/theme.html:14
  1052. msgid "Change SearXNG layout"
  1053. msgstr "Pakeiskite SearXNG išdėstymą"
  1054. #: searx/templates/simple/preferences/theme.html:19
  1055. msgid "Theme style"
  1056. msgstr "Temos stilius"
  1057. #: searx/templates/simple/preferences/theme.html:31
  1058. msgid "Choose auto to follow your browser settings"
  1059. msgstr "Pasirinkite automatini, kad sektumėte jūsų naršyklės nustatymus"
  1060. #: searx/templates/simple/preferences/tokens.html:2
  1061. msgid "Engine tokens"
  1062. msgstr "Sistemos prieigos raktai"
  1063. #: searx/templates/simple/preferences/tokens.html:9
  1064. msgid "Access tokens for private engines"
  1065. msgstr "Privačiųjų sistemų prieigos raktai"
  1066. #: searx/templates/simple/preferences/ui_locale.html:2
  1067. msgid "Interface language"
  1068. msgstr "Sąsajos kalba"
  1069. #: searx/templates/simple/preferences/ui_locale.html:14
  1070. msgid "Change the language of the layout"
  1071. msgstr "Keisti išdėstymo kalbą"
  1072. #: searx/templates/simple/result_templates/code.html:13
  1073. msgid "repo"
  1074. msgstr "saugyklos"
  1075. #: searx/templates/simple/result_templates/default.html:6
  1076. #: searx/templates/simple/result_templates/files.html:8
  1077. #: searx/templates/simple/result_templates/files.html:11
  1078. msgid "show media"
  1079. msgstr "rodyti mediją"
  1080. #: searx/templates/simple/result_templates/default.html:6
  1081. #: searx/templates/simple/result_templates/files.html:8
  1082. msgid "hide media"
  1083. msgstr "slėpti mediją"
  1084. #: searx/templates/simple/result_templates/default.html:14
  1085. #: searx/templates/simple/result_templates/videos.html:14
  1086. msgid "This site did not provide any description."
  1087. msgstr "Šis tiklalapis nepridėjo jokio aprašymo."
  1088. #: searx/templates/simple/result_templates/files.html:38
  1089. #: searx/templates/simple/result_templates/images.html:22
  1090. #: searx/templates/simple/result_templates/torrent.html:11
  1091. msgid "Filesize"
  1092. msgstr "Failo dydis"
  1093. #: searx/templates/simple/result_templates/files.html:40
  1094. msgid "Date"
  1095. msgstr "Data"
  1096. #: searx/templates/simple/result_templates/files.html:42
  1097. #: searx/templates/simple/result_templates/paper.html:24
  1098. msgid "Type"
  1099. msgstr "Tipas"
  1100. #: searx/templates/simple/result_templates/images.html:20
  1101. msgid "Resolution"
  1102. msgstr "Raiška"
  1103. #: searx/templates/simple/result_templates/images.html:21
  1104. msgid "Format"
  1105. msgstr "Formatas"
  1106. #: searx/templates/simple/result_templates/images.html:24
  1107. msgid "Engine"
  1108. msgstr "Sistema"
  1109. #: searx/templates/simple/result_templates/images.html:25
  1110. msgid "View source"
  1111. msgstr "Rodyti šaltinį"
  1112. #: searx/templates/simple/result_templates/map.html:12
  1113. msgid "address"
  1114. msgstr "adresas"
  1115. #: searx/templates/simple/result_templates/map.html:43
  1116. msgid "show map"
  1117. msgstr "rodyti žemėlapį"
  1118. #: searx/templates/simple/result_templates/map.html:43
  1119. msgid "hide map"
  1120. msgstr "slėpti žemėlapį"
  1121. #: searx/templates/simple/result_templates/packages.html:12
  1122. msgid "Version"
  1123. msgstr "Versija"
  1124. #: searx/templates/simple/result_templates/packages.html:18
  1125. msgid "Maintainer"
  1126. msgstr ""
  1127. #: searx/templates/simple/result_templates/packages.html:24
  1128. msgid "Updated at"
  1129. msgstr "Atnaujinta"
  1130. #: searx/templates/simple/result_templates/packages.html:30
  1131. #: searx/templates/simple/result_templates/paper.html:25
  1132. msgid "Tags"
  1133. msgstr ""
  1134. #: searx/templates/simple/result_templates/packages.html:36
  1135. msgid "Popularity"
  1136. msgstr "Pupuliarumas"
  1137. #: searx/templates/simple/result_templates/packages.html:42
  1138. msgid "License"
  1139. msgstr "Licenzija"
  1140. #: searx/templates/simple/result_templates/packages.html:52
  1141. msgid "Project"
  1142. msgstr "Projektas"
  1143. #: searx/templates/simple/result_templates/packages.html:55
  1144. msgid "Project homepage"
  1145. msgstr ""
  1146. #: searx/templates/simple/result_templates/paper.html:5
  1147. msgid "Published date"
  1148. msgstr "Paskelbimo data"
  1149. #: searx/templates/simple/result_templates/paper.html:9
  1150. msgid "Journal"
  1151. msgstr "Žurnalas"
  1152. #: searx/templates/simple/result_templates/paper.html:22
  1153. msgid "Editor"
  1154. msgstr "Redaktorius"
  1155. #: searx/templates/simple/result_templates/paper.html:23
  1156. msgid "Publisher"
  1157. msgstr "Leidėjas"
  1158. #: searx/templates/simple/result_templates/paper.html:26
  1159. msgid "DOI"
  1160. msgstr "DOI"
  1161. #: searx/templates/simple/result_templates/paper.html:27
  1162. msgid "ISSN"
  1163. msgstr "ISSN"
  1164. #: searx/templates/simple/result_templates/paper.html:28
  1165. msgid "ISBN"
  1166. msgstr "ISBN"
  1167. #: searx/templates/simple/result_templates/paper.html:33
  1168. msgid "PDF"
  1169. msgstr "PDF"
  1170. #: searx/templates/simple/result_templates/paper.html:34
  1171. msgid "HTML"
  1172. msgstr "HTML"
  1173. #: searx/templates/simple/result_templates/torrent.html:6
  1174. msgid "magnet link"
  1175. msgstr "magnet nuoroda"
  1176. #: searx/templates/simple/result_templates/torrent.html:7
  1177. msgid "torrent file"
  1178. msgstr "torrent failas"
  1179. #: searx/templates/simple/result_templates/torrent.html:9
  1180. msgid "Seeder"
  1181. msgstr "Skleidėjai"
  1182. #: searx/templates/simple/result_templates/torrent.html:9
  1183. msgid "Leecher"
  1184. msgstr "Siuntėjai"
  1185. #: searx/templates/simple/result_templates/torrent.html:13
  1186. msgid "Number of Files"
  1187. msgstr "Failų skaičius"
  1188. #: searx/templates/simple/result_templates/videos.html:6
  1189. msgid "show video"
  1190. msgstr "rodyti vaizdo įrašą"
  1191. #: searx/templates/simple/result_templates/videos.html:6
  1192. msgid "hide video"
  1193. msgstr "slėpti vaizdo įrašą"
  1194. #~ msgid "Engine time (sec)"
  1195. #~ msgstr "Sistemos laikas (sek.)"
  1196. #~ msgid "Page loads (sec)"
  1197. #~ msgstr "Puslapių įkėlimai (sek.)"
  1198. #~ msgid "Errors"
  1199. #~ msgstr "Klaidos"
  1200. #~ msgid "CAPTCHA required"
  1201. #~ msgstr "Reikalingas saugos kodas"
  1202. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1203. #~ msgstr "Jei įmanoma, perrašyti HTTP nuorodas į HTTPS"
  1204. #~ msgid ""
  1205. #~ "Results are opened in the same "
  1206. #~ "window by default. This plugin "
  1207. #~ "overwrites the default behaviour to open"
  1208. #~ " links on new tabs/windows. (JavaScript "
  1209. #~ "required)"
  1210. #~ msgstr ""
  1211. #~ "Pagal numatymą, rezultatai yra atveriami "
  1212. #~ "tame pačiame lange. Šis įskiepis perrašo"
  1213. #~ " numatytąją elgseną taip, kad nuorodos "
  1214. #~ "būtų atveriamos naujose kortelėse/languose. "
  1215. #~ "(reikalinga JavaScript)"
  1216. #~ msgid "Color"
  1217. #~ msgstr "Spalva"
  1218. #~ msgid "Blue (default)"
  1219. #~ msgstr "Mėlyna (numatytoji)"
  1220. #~ msgid "Violet"
  1221. #~ msgstr "Violetinė"
  1222. #~ msgid "Green"
  1223. #~ msgstr "Žalia"
  1224. #~ msgid "Cyan"
  1225. #~ msgstr "Žydra"
  1226. #~ msgid "Orange"
  1227. #~ msgstr "Oranžinė"
  1228. #~ msgid "Red"
  1229. #~ msgstr "Raudona"
  1230. #~ msgid "Category"
  1231. #~ msgstr "Kategorija"
  1232. #~ msgid "Block"
  1233. #~ msgstr "Blokuoti"
  1234. #~ msgid "original context"
  1235. #~ msgstr "pradinis kontekstas"
  1236. #~ msgid "Plugins"
  1237. #~ msgstr "Įskiepiai"
  1238. #~ msgid "Answerers"
  1239. #~ msgstr "Atsakikliai"
  1240. #~ msgid "Avg. time"
  1241. #~ msgstr "Vid. laikas"
  1242. #~ msgid "show details"
  1243. #~ msgstr "rodyti informaciją"
  1244. #~ msgid "hide details"
  1245. #~ msgstr "slėpti informaciją"
  1246. #~ msgid "Load more..."
  1247. #~ msgstr "Įkelti daugiau..."
  1248. #~ msgid "Loading..."
  1249. #~ msgstr "Įkeliama..."
  1250. #~ msgid "Change searx layout"
  1251. #~ msgstr "Keisti searx išdėstymą"
  1252. #~ msgid "Proxying image results through searx"
  1253. #~ msgstr "Paveikslų persiuntimas įgaliotuoju serveriu per searx"
  1254. #~ msgid "This is the list of searx's instant answering modules."
  1255. #~ msgstr "Tai yra searx greitų atsakiklių modulių sąrašas."
  1256. #~ msgid ""
  1257. #~ "This is the list of cookies and"
  1258. #~ " their values searx is storing on "
  1259. #~ "your computer."
  1260. #~ msgstr ""
  1261. #~ "Tai yra slapukų ir jų reikšmių, "
  1262. #~ "kuriuos searx laiko jūsų kompiuteryje, "
  1263. #~ "sąrašas."
  1264. #~ msgid "With that list, you can assess searx transparency."
  1265. #~ msgstr "Naudodami sąrašą, galite įvertinti searx skaidrumą."
  1266. #~ msgid "It look like you are using searx first time."
  1267. #~ msgstr "Atrodo, kad pirmą kartą naudojate searx."
  1268. #~ msgid "Please, try again later or find another searx instance."
  1269. #~ msgstr "Vėliau bandykite dar kartą arba raskite kitą searx egzempliorių."
  1270. #~ msgid "Themes"
  1271. #~ msgstr "Apipavidalinimai"
  1272. #~ msgid "Reliablity"
  1273. #~ msgstr ""
  1274. #~ msgid ""
  1275. #~ "When enabled, the result page's title"
  1276. #~ " contains your query. Your browser "
  1277. #~ "can record this title."
  1278. #~ msgstr ""
  1279. #~ msgid "Method"
  1280. #~ msgstr "Metodas"
  1281. #~ msgid ""
  1282. #~ "This tab does not show up for "
  1283. #~ "search results but you can search "
  1284. #~ "the engines listed here via bangs."
  1285. #~ msgstr ""
  1286. #~ msgid "Advanced settings"
  1287. #~ msgstr "Išplėstiniai nustatymai"
  1288. #~ msgid "Close"
  1289. #~ msgstr "Užverti"
  1290. #~ msgid "Language"
  1291. #~ msgstr "Kalba"
  1292. #~ msgid "broken"
  1293. #~ msgstr "nutrūkęs"
  1294. #~ msgid "supported"
  1295. #~ msgstr "palaikoma"
  1296. #~ msgid "not supported"
  1297. #~ msgstr "nepalaikoma"
  1298. #~ msgid "about"
  1299. #~ msgstr "apie"
  1300. #~ msgid "Avg."
  1301. #~ msgstr "Vid."
  1302. #~ msgid "User Interface"
  1303. #~ msgstr "Vartotojo sąsaja"
  1304. #~ msgid "Choose style for this theme"
  1305. #~ msgstr "Pasirinkti šio apipavidalinimo stilių"
  1306. #~ msgid "Style"
  1307. #~ msgstr "Stilius"
  1308. #~ msgid "Show advanced settings"
  1309. #~ msgstr ""
  1310. #~ msgid "Show advanced settings panel in the home page by default"
  1311. #~ msgstr ""
  1312. #~ msgid "Allow all"
  1313. #~ msgstr "Leisti visus"
  1314. #~ msgid "Disable all"
  1315. #~ msgstr "Išjungti visus"
  1316. #~ msgid "Selected language"
  1317. #~ msgstr "Pasirinkta kalba"
  1318. #~ msgid "Query"
  1319. #~ msgstr ""
  1320. #~ msgid "save"
  1321. #~ msgstr "Įrašyti"
  1322. #~ msgid "back"
  1323. #~ msgstr "Atgal"
  1324. #~ msgid "Links"
  1325. #~ msgstr "Nuorodos"
  1326. #~ msgid "RSS subscription"
  1327. #~ msgstr "RSS prenumerata"
  1328. #~ msgid "Search results"
  1329. #~ msgstr "Paieškos rezultatai"
  1330. #~ msgid "next page"
  1331. #~ msgstr "kitas puslapis"
  1332. #~ msgid "previous page"
  1333. #~ msgstr "ankstesnis puslapis"
  1334. #~ msgid "Start search"
  1335. #~ msgstr "Pradėti paiešką"
  1336. #~ msgid "Clear search"
  1337. #~ msgstr "Išvalyti paiešką"
  1338. #~ msgid "Clear"
  1339. #~ msgstr "Išvalyti"
  1340. #~ msgid "stats"
  1341. #~ msgstr "statistika"
  1342. #~ msgid "Heads up!"
  1343. #~ msgstr "Dėmesio!"
  1344. #~ msgid "It look like you are using SearXNG first time."
  1345. #~ msgstr ""
  1346. #~ msgid "Well done!"
  1347. #~ msgstr "Gerai padirbėta!"
  1348. #~ msgid "Settings saved successfully."
  1349. #~ msgstr "Nustatymai sėkmingai įrašyti."
  1350. #~ msgid "Oh snap!"
  1351. #~ msgstr "O, ne!"
  1352. #~ msgid "Something went wrong."
  1353. #~ msgstr "Kažkas nutiko."
  1354. #~ msgid "Date"
  1355. #~ msgstr ""
  1356. #~ msgid "Type"
  1357. #~ msgstr ""
  1358. #~ msgid "Get image"
  1359. #~ msgstr "Gauti paveikslą"
  1360. #~ msgid "Center Alignment"
  1361. #~ msgstr ""
  1362. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1363. #~ msgstr ""
  1364. #~ msgid "preferences"
  1365. #~ msgstr "nuostatos"
  1366. #~ msgid "Scores per result"
  1367. #~ msgstr "Įvertinimai pagal rezultatą"
  1368. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1369. #~ msgstr "gerbianti privatumą, programuojama metapaieškos sistema"
  1370. #~ msgid "No abstract is available for this publication."
  1371. #~ msgstr "Šiai publikacijai nėra prieinama jokia santrauka."
  1372. #~ msgid "Self Informations"
  1373. #~ msgstr "Jūsų informacija"
  1374. #~ msgid ""
  1375. #~ "Change how forms are submited, <a "
  1376. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1377. #~ " rel=\"external\">learn more about request "
  1378. #~ "methods</a>"
  1379. #~ msgstr ""
  1380. #~ "Keisti kaip yra pateikiamos formos, <a"
  1381. #~ " "
  1382. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1383. #~ " rel=\"external\">sužinokite daugiau apie "
  1384. #~ "užklausos metodus</a>"
  1385. #~ msgid ""
  1386. #~ "This plugin checks if the address "
  1387. #~ "of the request is a TOR exit "
  1388. #~ "node, and informs the user if it"
  1389. #~ " is, like check.torproject.org but from "
  1390. #~ "searxng."
  1391. #~ msgstr ""
  1392. #~ msgid ""
  1393. #~ "The TOR exit node list "
  1394. #~ "(https://check.torproject.org/exit-addresses) is "
  1395. #~ "unreachable."
  1396. #~ msgstr ""
  1397. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1398. #~ msgstr ""
  1399. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1400. #~ msgstr ""
  1401. #~ msgid ""
  1402. #~ "The could not download the list of"
  1403. #~ " Tor exit-nodes from "
  1404. #~ "https://check.torproject.org/exit-addresses."
  1405. #~ msgstr ""
  1406. #~ msgid ""
  1407. #~ "You are using Tor. It looks like"
  1408. #~ " you have this external IP address:"
  1409. #~ " {ip_address}."
  1410. #~ msgstr ""
  1411. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1412. #~ msgstr ""
  1413. #~ msgid "Autodetect search language"
  1414. #~ msgstr "Automatiškai aptikti paieškos kalbą"
  1415. #~ msgid "Automatically detect the query search language and switch to it."
  1416. #~ msgstr "Automatiškai aptikti paieškos užklausos kalbą ir perjungti į ją."
  1417. #~ msgid "others"
  1418. #~ msgstr "kiti"
  1419. #~ msgid ""
  1420. #~ "This tab does not show up for "
  1421. #~ "search results, but you can search "
  1422. #~ "the engines listed here via bangs."
  1423. #~ msgstr ""
  1424. #~ "Šis skirtukas nepasirodo ieškojimo "
  1425. #~ "rezultastuose, bet jūs galite ieškoti "
  1426. #~ "sistemas saraše naudojant trumpinius."
  1427. #~ msgid "Shortcut"
  1428. #~ msgstr "Trumpinys"
  1429. #~ msgid "!bang"
  1430. #~ msgstr ""
  1431. #~ msgid ""
  1432. #~ "This tab dues not exists in the"
  1433. #~ " user interface, but you can search"
  1434. #~ " in these engines by its !bangs."
  1435. #~ msgstr ""
  1436. #~ msgid "Engines cannot retrieve results."
  1437. #~ msgstr "Sistemos negali gauti rezultatų."
  1438. #~ msgid "Please, try again later or find another SearXNG instance."
  1439. #~ msgstr "Prašau, pabandykite vėliau arba suraskite kita SearXNG instanciją."
  1440. #~ msgid ""
  1441. #~ "Redirect to open-access versions of "
  1442. #~ "publications when available (plugin required)"
  1443. #~ msgstr ""
  1444. #~ "Kai įmanoma, peradresuoti į atvirojoje "
  1445. #~ "prieigoje esančias publikacijų versijas "
  1446. #~ "(reikalingas papildinys)"
  1447. #~ msgid "Bang"
  1448. #~ msgstr ""
  1449. #~ msgid ""
  1450. #~ "Change how forms are submitted, <a "
  1451. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1452. #~ " rel=\"external\">learn more about request "
  1453. #~ "methods</a>"
  1454. #~ msgstr ""
  1455. #~ msgid "On"
  1456. #~ msgstr "Įjungta"
  1457. #~ msgid "Off"
  1458. #~ msgstr "Išjungta"
  1459. #~ msgid "Enabled"
  1460. #~ msgstr "Įjungtas"
  1461. #~ msgid "Disabled"
  1462. #~ msgstr "Išjungtas"
  1463. #~ msgid ""
  1464. #~ "Perform search immediately if a category"
  1465. #~ " selected. Disable to select multiple "
  1466. #~ "categories. (JavaScript required)"
  1467. #~ msgstr ""
  1468. #~ "Jei pasirenkama kategorija, nedelsiant atlikti"
  1469. #~ " paiešką. Išjunkite norėdami pasirinkti "
  1470. #~ "kelias kategorijas. (reikalingas JavaScript)"
  1471. #~ msgid "Vim-like hotkeys"
  1472. #~ msgstr "Vim pavidalo spartieji klavišai"
  1473. #~ msgid ""
  1474. #~ "Navigate search results with Vim-like"
  1475. #~ " hotkeys (JavaScript required). Press \"h\""
  1476. #~ " key on main or result page to"
  1477. #~ " get help."
  1478. #~ msgstr ""
  1479. #~ "Naršyti po paieškos rezultatus naudojant "
  1480. #~ "Vim pavidalo sparčiuosius klavišus "
  1481. #~ "(reikalingas JavaScript). Paspauskite pagrindiniame"
  1482. #~ " ar rezultatų puslapyje \"h\" klavišą "
  1483. #~ "norėdami gauti pagalbos."
  1484. #~ msgid ""
  1485. #~ "we didn't find any results. Please "
  1486. #~ "use another query or search in "
  1487. #~ "more categories."
  1488. #~ msgstr ""
  1489. #~ "mes neradome jokių rezultatų. Naudokite "
  1490. #~ "kitokią užklausą arba ieškokite kitose "
  1491. #~ "kategorijose."
  1492. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1493. #~ msgstr ""
  1494. #~ "Perašyti kompiuterio pavadinimo rezultatus "
  1495. #~ "arba ištrinti rezultatus pagal kompiuterio "
  1496. #~ "pavadinimą"
  1497. #~ msgid "Bytes"
  1498. #~ msgstr "Baitai"
  1499. #~ msgid "kiB"
  1500. #~ msgstr "kiB"
  1501. #~ msgid "MiB"
  1502. #~ msgstr "MiB"
  1503. #~ msgid "GiB"
  1504. #~ msgstr "GiB"
  1505. #~ msgid "TiB"
  1506. #~ msgstr "TiB"
  1507. #~ msgid "Hostname replace"
  1508. #~ msgstr "Kompiuterio pavadinimo pakeitimas"
  1509. #~ msgid "Error!"
  1510. #~ msgstr "Klaida!"
  1511. #~ msgid "Engines cannot retrieve results"
  1512. #~ msgstr "Sistemos negali gauti rezultatų"
  1513. #~ msgid "Start submiting a new issue on GitHub"
  1514. #~ msgstr "Pateikite naują klaidą Github'e"