messages.po 57 KB

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