messages.po 48 KB

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