messages.po 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058
  1. # Latvian translations for PROJECT.
  2. # Copyright (C) 2022 ORGANIZATION
  3. # This file is distributed under the same license as the PROJECT project.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
  5. # visiks-vs <vls@visiks.lv>, 2022.
  6. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  7. # wldkwl <gayisurdad@hotmail.com>, 2023.
  8. # return42 <markus.heiser@darmarit.de>, 2023.
  9. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  10. # Obligate <Obligate@users.noreply.translate.codeberg.org>, 2024.
  11. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  12. # Obligate <obligate@users.noreply.translate.codeberg.org>, 2025.
  13. # sandijs <sandijs@noreply.codeberg.org>, 2025.
  14. # return42 <return42@noreply.codeberg.org>, 2025.
  15. msgid ""
  16. msgstr ""
  17. "Project-Id-Version: PROJECT VERSION\n"
  18. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  19. "POT-Creation-Date: 2025-07-03 14:46+0000\n"
  20. "PO-Revision-Date: 2025-06-22 17:06+0000\n"
  21. "Last-Translator: return42 <return42@noreply.codeberg.org>\n"
  22. "Language: lv\n"
  23. "Language-Team: Latvian "
  24. "<https://translate.codeberg.org/projects/searxng/searxng/lv/>\n"
  25. "Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100"
  26. " <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n"
  27. "MIME-Version: 1.0\n"
  28. "Content-Type: text/plain; charset=utf-8\n"
  29. "Content-Transfer-Encoding: 8bit\n"
  30. "Generated-By: Babel 2.17.0\n"
  31. #. CONSTANT_NAMES['NO_SUBGROUPING']
  32. #: searx/searxng.msg
  33. msgid "without further subgrouping"
  34. msgstr "bez turpinošas grupēšanas"
  35. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  36. #: searx/searxng.msg
  37. msgid "other"
  38. msgstr "cits"
  39. #. CATEGORY_NAMES['FILES']
  40. #: searx/searxng.msg
  41. msgid "files"
  42. msgstr "faili"
  43. #. CATEGORY_NAMES['GENERAL']
  44. #: searx/searxng.msg
  45. msgid "general"
  46. msgstr "viss"
  47. #. CATEGORY_NAMES['MUSIC']
  48. #: searx/searxng.msg
  49. msgid "music"
  50. msgstr "mūzika"
  51. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  52. #: searx/searxng.msg
  53. msgid "social media"
  54. msgstr "sociālie tīkli"
  55. #. CATEGORY_NAMES['IMAGES']
  56. #: searx/searxng.msg
  57. msgid "images"
  58. msgstr "attēli"
  59. #. CATEGORY_NAMES['VIDEOS']
  60. #: searx/searxng.msg
  61. msgid "videos"
  62. msgstr "video"
  63. #. CATEGORY_NAMES['RADIO']
  64. #: searx/engines/radio_browser.py:151 searx/searxng.msg
  65. msgid "radio"
  66. msgstr "radio"
  67. #. CATEGORY_NAMES['TV']
  68. #: searx/searxng.msg
  69. msgid "tv"
  70. msgstr "tv"
  71. #. CATEGORY_NAMES['IT']
  72. #: searx/searxng.msg
  73. msgid "it"
  74. msgstr "it"
  75. #. CATEGORY_NAMES['NEWS']
  76. #: searx/searxng.msg
  77. msgid "news"
  78. msgstr "ziņas"
  79. #. CATEGORY_NAMES['MAP']
  80. #: searx/searxng.msg
  81. msgid "map"
  82. msgstr "karte"
  83. #. CATEGORY_NAMES['ONIONS']
  84. #: searx/searxng.msg
  85. msgid "onions"
  86. msgstr "sīpoli"
  87. #. CATEGORY_NAMES['SCIENCE']
  88. #: searx/searxng.msg
  89. msgid "science"
  90. msgstr "zinātne"
  91. #. CATEGORY_GROUPS['APPS']
  92. #: searx/searxng.msg
  93. msgid "apps"
  94. msgstr "aplikācijas"
  95. #. CATEGORY_GROUPS['DICTIONARIES']
  96. #: searx/searxng.msg
  97. msgid "dictionaries"
  98. msgstr "vārdnīcas"
  99. #. CATEGORY_GROUPS['LYRICS']
  100. #: searx/searxng.msg
  101. msgid "lyrics"
  102. msgstr "dziesmu vārdi"
  103. #. CATEGORY_GROUPS['PACKAGES']
  104. #: searx/searxng.msg
  105. msgid "packages"
  106. msgstr "pakotnes"
  107. #. CATEGORY_GROUPS['Q_A']
  108. #: searx/searxng.msg
  109. msgid "q&a"
  110. msgstr "j&a"
  111. #. CATEGORY_GROUPS['REPOS']
  112. #: searx/searxng.msg
  113. msgid "repos"
  114. msgstr "repo"
  115. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  116. #: searx/searxng.msg
  117. msgid "software wikis"
  118. msgstr "programmatūras wiki"
  119. #. CATEGORY_GROUPS['WEB']
  120. #: searx/searxng.msg
  121. msgid "web"
  122. msgstr "tīmeklis"
  123. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  124. #: searx/searxng.msg
  125. msgid "scientific publications"
  126. msgstr "zinātnisku publikāciji"
  127. #. STYLE_NAMES['AUTO']
  128. #: searx/searxng.msg
  129. msgid "auto"
  130. msgstr "auto"
  131. #. STYLE_NAMES['LIGHT']
  132. #: searx/searxng.msg
  133. msgid "light"
  134. msgstr "gaišs"
  135. #. STYLE_NAMES['DARK']
  136. #: searx/searxng.msg
  137. msgid "dark"
  138. msgstr "tumšs"
  139. #. STYLE_NAMES['BLACK']
  140. #: searx/searxng.msg
  141. msgid "black"
  142. msgstr "melns"
  143. #. BRAND_CUSTOM_LINKS['UPTIME']
  144. #: searx/searxng.msg
  145. msgid "Uptime"
  146. msgstr "Darbspējas laiks"
  147. #. BRAND_CUSTOM_LINKS['ABOUT']
  148. #: searx/searxng.msg searx/templates/simple/base.html:49
  149. msgid "About"
  150. msgstr "Par"
  151. #. WEATHER_TERMS['AVERAGE TEMP.']
  152. #: searx/searxng.msg
  153. msgid "Average temp."
  154. msgstr "Vidējā temp."
  155. #. WEATHER_TERMS['CLOUD COVER']
  156. #: searx/searxng.msg
  157. msgid "Cloud cover"
  158. msgstr "Mākoņu klājums"
  159. #. WEATHER_TERMS['CONDITION']
  160. #: searx/engines/duckduckgo_weather.py:45 searx/searxng.msg
  161. msgid "Condition"
  162. msgstr "Stāvoklis"
  163. #. WEATHER_TERMS['CURRENT CONDITION']
  164. #: searx/engines/duckduckgo_weather.py:118 searx/searxng.msg
  165. msgid "Current condition"
  166. msgstr "Pašreizējais stāvoklis"
  167. #. WEATHER_TERMS['EVENING']
  168. #: searx/searxng.msg
  169. msgid "Evening"
  170. msgstr "Vakara"
  171. #. WEATHER_TERMS['FEELS LIKE']
  172. #: searx/engines/duckduckgo_weather.py:53 searx/searxng.msg
  173. msgid "Feels like"
  174. msgstr "Pēc sajūtām"
  175. #. WEATHER_TERMS['HUMIDITY']
  176. #: searx/engines/duckduckgo_weather.py:64 searx/searxng.msg
  177. #: searx/templates/simple/answer/weather.html:29
  178. msgid "Humidity"
  179. msgstr "Mitrums"
  180. #. WEATHER_TERMS['MAX TEMP.']
  181. #: searx/engines/duckduckgo_weather.py:77 searx/searxng.msg
  182. msgid "Max temp."
  183. msgstr "Maksimālā temp."
  184. #. WEATHER_TERMS['MIN TEMP.']
  185. #: searx/engines/duckduckgo_weather.py:73 searx/searxng.msg
  186. msgid "Min temp."
  187. msgstr "Minimālā temp."
  188. #. WEATHER_TERMS['MORNING']
  189. #: searx/searxng.msg
  190. msgid "Morning"
  191. msgstr "Rīts"
  192. #. WEATHER_TERMS['NIGHT']
  193. #: searx/searxng.msg
  194. msgid "Night"
  195. msgstr "Nakts"
  196. #. WEATHER_TERMS['NOON']
  197. #: searx/searxng.msg
  198. msgid "Noon"
  199. msgstr "Pusdiena"
  200. #. WEATHER_TERMS['PRESSURE']
  201. #: searx/searxng.msg searx/templates/simple/answer/weather.html:25
  202. msgid "Pressure"
  203. msgstr "Spiediens"
  204. #. WEATHER_TERMS['SUNRISE']
  205. #: searx/engines/duckduckgo_weather.py:81 searx/searxng.msg
  206. msgid "Sunrise"
  207. msgstr "Saullēkts"
  208. #. WEATHER_TERMS['SUNSET']
  209. #: searx/engines/duckduckgo_weather.py:82 searx/searxng.msg
  210. msgid "Sunset"
  211. msgstr "Saulriets"
  212. #. WEATHER_TERMS['TEMPERATURE']
  213. #: searx/engines/duckduckgo_weather.py:48 searx/searxng.msg
  214. #: searx/templates/simple/answer/weather.html:17
  215. msgid "Temperature"
  216. msgstr "Temperatūra"
  217. #. WEATHER_TERMS['UV INDEX']
  218. #: searx/engines/duckduckgo_weather.py:80 searx/searxng.msg
  219. msgid "UV index"
  220. msgstr "UV indekss"
  221. #. WEATHER_TERMS['VISIBILITY']
  222. #: searx/engines/duckduckgo_weather.py:62 searx/searxng.msg
  223. msgid "Visibility"
  224. msgstr "Redzamība"
  225. #. WEATHER_TERMS['WIND']
  226. #: searx/engines/duckduckgo_weather.py:58 searx/searxng.msg
  227. #: searx/templates/simple/answer/weather.html:23
  228. msgid "Wind"
  229. msgstr "Vējš"
  230. #. WEATHER_CONDITIONS
  231. #: searx/searxng.msg
  232. msgid "Clear sky"
  233. msgstr ""
  234. #. WEATHER_CONDITIONS
  235. #: searx/searxng.msg
  236. msgid "Partly cloudy"
  237. msgstr ""
  238. #. WEATHER_CONDITIONS
  239. #: searx/searxng.msg
  240. msgid "Cloudy"
  241. msgstr ""
  242. #. WEATHER_CONDITIONS
  243. #: searx/searxng.msg
  244. msgid "Fair"
  245. msgstr ""
  246. #. WEATHER_CONDITIONS
  247. #: searx/searxng.msg
  248. msgid "Fog"
  249. msgstr ""
  250. #. WEATHER_CONDITIONS
  251. #: searx/searxng.msg
  252. msgid "Light rain and thunder"
  253. msgstr ""
  254. #. WEATHER_CONDITIONS
  255. #: searx/searxng.msg
  256. msgid "Light rain showers and thunder"
  257. msgstr ""
  258. #. WEATHER_CONDITIONS
  259. #: searx/searxng.msg
  260. msgid "Light rain showers"
  261. msgstr ""
  262. #. WEATHER_CONDITIONS
  263. #: searx/searxng.msg
  264. msgid "Light rain"
  265. msgstr ""
  266. #. WEATHER_CONDITIONS
  267. #: searx/searxng.msg
  268. msgid "Rain and thunder"
  269. msgstr ""
  270. #. WEATHER_CONDITIONS
  271. #: searx/searxng.msg
  272. msgid "Rain showers and thunder"
  273. msgstr ""
  274. #. WEATHER_CONDITIONS
  275. #: searx/searxng.msg
  276. msgid "Rain showers"
  277. msgstr ""
  278. #. WEATHER_CONDITIONS
  279. #: searx/searxng.msg
  280. msgid "Rain"
  281. msgstr ""
  282. #. WEATHER_CONDITIONS
  283. #: searx/searxng.msg
  284. msgid "Heavy rain and thunder"
  285. msgstr ""
  286. #. WEATHER_CONDITIONS
  287. #: searx/searxng.msg
  288. msgid "Heavy rain showers and thunder"
  289. msgstr ""
  290. #. WEATHER_CONDITIONS
  291. #: searx/searxng.msg
  292. msgid "Heavy rain showers"
  293. msgstr ""
  294. #. WEATHER_CONDITIONS
  295. #: searx/searxng.msg
  296. msgid "Heavy rain"
  297. msgstr ""
  298. #. WEATHER_CONDITIONS
  299. #: searx/searxng.msg
  300. msgid "Light sleet and thunder"
  301. msgstr ""
  302. #. WEATHER_CONDITIONS
  303. #: searx/searxng.msg
  304. msgid "Light sleet showers and thunder"
  305. msgstr ""
  306. #. WEATHER_CONDITIONS
  307. #: searx/searxng.msg
  308. msgid "Light sleet showers"
  309. msgstr ""
  310. #. WEATHER_CONDITIONS
  311. #: searx/searxng.msg
  312. msgid "Light sleet"
  313. msgstr ""
  314. #. WEATHER_CONDITIONS
  315. #: searx/searxng.msg
  316. msgid "Sleet and thunder"
  317. msgstr ""
  318. #. WEATHER_CONDITIONS
  319. #: searx/searxng.msg
  320. msgid "Sleet showers and thunder"
  321. msgstr ""
  322. #. WEATHER_CONDITIONS
  323. #: searx/searxng.msg
  324. msgid "Sleet showers"
  325. msgstr ""
  326. #. WEATHER_CONDITIONS
  327. #: searx/searxng.msg
  328. msgid "Sleet"
  329. msgstr ""
  330. #. WEATHER_CONDITIONS
  331. #: searx/searxng.msg
  332. msgid "Heavy sleet and thunder"
  333. msgstr ""
  334. #. WEATHER_CONDITIONS
  335. #: searx/searxng.msg
  336. msgid "Heavy sleet showers and thunder"
  337. msgstr ""
  338. #. WEATHER_CONDITIONS
  339. #: searx/searxng.msg
  340. msgid "Heavy sleet showers"
  341. msgstr ""
  342. #. WEATHER_CONDITIONS
  343. #: searx/searxng.msg
  344. msgid "Heavy sleet"
  345. msgstr ""
  346. #. WEATHER_CONDITIONS
  347. #: searx/searxng.msg
  348. msgid "Light snow and thunder"
  349. msgstr ""
  350. #. WEATHER_CONDITIONS
  351. #: searx/searxng.msg
  352. msgid "Light snow showers and thunder"
  353. msgstr ""
  354. #. WEATHER_CONDITIONS
  355. #: searx/searxng.msg
  356. msgid "Light snow showers"
  357. msgstr ""
  358. #. WEATHER_CONDITIONS
  359. #: searx/searxng.msg
  360. msgid "Light snow"
  361. msgstr ""
  362. #. WEATHER_CONDITIONS
  363. #: searx/searxng.msg
  364. msgid "Snow and thunder"
  365. msgstr ""
  366. #. WEATHER_CONDITIONS
  367. #: searx/searxng.msg
  368. msgid "Snow showers and thunder"
  369. msgstr ""
  370. #. WEATHER_CONDITIONS
  371. #: searx/searxng.msg
  372. msgid "Snow showers"
  373. msgstr ""
  374. #. WEATHER_CONDITIONS
  375. #: searx/searxng.msg
  376. msgid "Snow"
  377. msgstr ""
  378. #. WEATHER_CONDITIONS
  379. #: searx/searxng.msg
  380. msgid "Heavy snow and thunder"
  381. msgstr ""
  382. #. WEATHER_CONDITIONS
  383. #: searx/searxng.msg
  384. msgid "Heavy snow showers and thunder"
  385. msgstr ""
  386. #. WEATHER_CONDITIONS
  387. #: searx/searxng.msg
  388. msgid "Heavy snow showers"
  389. msgstr ""
  390. #. WEATHER_CONDITIONS
  391. #: searx/searxng.msg
  392. msgid "Heavy snow"
  393. msgstr ""
  394. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  395. #: searx/engines/lemmy.py:85 searx/searxng.msg
  396. msgid "subscribers"
  397. msgstr "abonenti"
  398. #. SOCIAL_MEDIA_TERMS['POSTS']
  399. #: searx/engines/lemmy.py:86 searx/searxng.msg
  400. msgid "posts"
  401. msgstr "ziņojumi"
  402. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  403. #: searx/engines/lemmy.py:87 searx/searxng.msg
  404. msgid "active users"
  405. msgstr "aktīvi lietotāji"
  406. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  407. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  408. #: searx/engines/lemmy.py:130 searx/searxng.msg
  409. msgid "comments"
  410. msgstr "komentāri"
  411. #. SOCIAL_MEDIA_TERMS['USER']
  412. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  413. msgid "user"
  414. msgstr "lietotājs"
  415. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  416. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  417. msgid "community"
  418. msgstr "kopiena"
  419. #. SOCIAL_MEDIA_TERMS['POINTS']
  420. #: searx/engines/hackernews.py:82 searx/searxng.msg
  421. msgid "points"
  422. msgstr "punkti"
  423. #. SOCIAL_MEDIA_TERMS['TITLE']
  424. #: searx/searxng.msg
  425. msgid "title"
  426. msgstr "virsraksts"
  427. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  428. #: searx/engines/hackernews.py:85 searx/searxng.msg
  429. msgid "author"
  430. msgstr "autors"
  431. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  432. #: searx/engines/discourse.py:149 searx/searxng.msg
  433. msgid "open"
  434. msgstr "atvērts"
  435. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  436. #: searx/engines/discourse.py:149 searx/searxng.msg
  437. msgid "closed"
  438. msgstr "aizvērts"
  439. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  440. #: searx/engines/discourse.py:160 searx/searxng.msg
  441. msgid "answered"
  442. msgstr "atbildēja"
  443. #: searx/webapp.py:292
  444. msgid "No item found"
  445. msgstr "Nav atrasts neviens vienums"
  446. #: searx/engines/qwant.py:291
  447. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:294
  448. msgid "Source"
  449. msgstr "Avots"
  450. #: searx/webapp.py:296
  451. msgid "Error loading the next page"
  452. msgstr "Kļūda lādējot nākošo lapu"
  453. #: searx/webapp.py:447 searx/webapp.py:845
  454. msgid "Invalid settings, please edit your preferences"
  455. msgstr "Nepareizi iestatījumi, lūdzu rediģējiet savas preferences"
  456. #: searx/webapp.py:463
  457. msgid "Invalid settings"
  458. msgstr "Nederīgi iestatījumi"
  459. #: searx/webapp.py:540 searx/webapp.py:630
  460. msgid "search error"
  461. msgstr "meklēšanas kļūda"
  462. #: searx/webutils.py:35
  463. msgid "timeout"
  464. msgstr "noildze"
  465. #: searx/webutils.py:36
  466. msgid "parsing error"
  467. msgstr "parsēšanas kļūda"
  468. #: searx/webutils.py:37
  469. msgid "HTTP protocol error"
  470. msgstr "HTTP protokola kļūda"
  471. #: searx/webutils.py:38
  472. msgid "network error"
  473. msgstr "tīkla kļūda"
  474. #: searx/webutils.py:39
  475. msgid "SSL error: certificate validation has failed"
  476. msgstr "SSL kļūda: certifikāta validācija neizdevās"
  477. #: searx/webutils.py:41
  478. msgid "unexpected crash"
  479. msgstr "negaidīta avārija"
  480. #: searx/webutils.py:48
  481. msgid "HTTP error"
  482. msgstr "HTTP kļūda"
  483. #: searx/webutils.py:49
  484. msgid "HTTP connection error"
  485. msgstr "HTTP savienojuma kļūda"
  486. #: searx/webutils.py:55
  487. msgid "proxy error"
  488. msgstr "starpniekservera kļūda"
  489. #: searx/webutils.py:56
  490. msgid "CAPTCHA"
  491. msgstr "CAPTCHA"
  492. #: searx/webutils.py:57
  493. msgid "too many requests"
  494. msgstr "pārāk daudz pieprasījumu"
  495. #: searx/webutils.py:58
  496. msgid "access denied"
  497. msgstr "piekļuve aizliegta"
  498. #: searx/webutils.py:59
  499. msgid "server API error"
  500. msgstr "servera API kļūda"
  501. #: searx/webutils.py:78
  502. msgid "Suspended"
  503. msgstr "Apturēts"
  504. #: searx/webutils.py:313
  505. #, python-brace-format
  506. msgid "{minutes} minute(s) ago"
  507. msgstr "pirms {minutes} minūtes(-ēm)"
  508. #: searx/webutils.py:314
  509. #, python-brace-format
  510. msgid "{hours} hour(s), {minutes} minute(s) ago"
  511. msgstr "pirms {hours} stundas(-ām) un {minutes} minūtēm(-es)"
  512. #: searx/answerers/random.py:69
  513. msgid "Generate different random values"
  514. msgstr "Ģenerēt citas nejaušas vērtības"
  515. #: searx/answerers/statistics.py:36
  516. #, python-brace-format
  517. msgid "Compute {func} of the arguments"
  518. msgstr ""
  519. #: searx/engines/openstreetmap.py:158
  520. msgid "Show route in map .."
  521. msgstr "Rādīt maršrutu kartē .."
  522. #: searx/engines/pdbe.py:96
  523. #, python-brace-format
  524. msgid "{title} (OBSOLETE)"
  525. msgstr "{title} (NOVECOJIS)"
  526. #: searx/engines/pdbe.py:103
  527. msgid "This entry has been superseded by"
  528. msgstr "Šis ieraksts ir ticis aizstāts ar"
  529. #: searx/engines/qwant.py:293
  530. msgid "Channel"
  531. msgstr "Kanāls"
  532. #: searx/engines/radio_browser.py:153
  533. msgid "bitrate"
  534. msgstr "bitu pārraide"
  535. #: searx/engines/radio_browser.py:154
  536. msgid "votes"
  537. msgstr "balsis"
  538. #: searx/engines/radio_browser.py:155
  539. msgid "clicks"
  540. msgstr "klikšķi"
  541. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  542. #: searx/engines/zlibrary.py:137
  543. msgid "Language"
  544. msgstr "Valoda"
  545. #: searx/engines/semantic_scholar.py:101
  546. #, python-brace-format
  547. msgid ""
  548. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  549. "{lastCitationVelocityYear}"
  550. msgstr ""
  551. "{numCitations} citāti no {firstCitationVelocityYear} līdz "
  552. "{lastCitationVelocityYear} gada"
  553. #: searx/engines/tineye.py:48
  554. msgid ""
  555. "Could not read that image url. This may be due to an unsupported file "
  556. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  557. " WebP."
  558. msgstr ""
  559. "Nevar nolasīt šo attēla url. Tas var būt saistīts ar neatbalstītu faila "
  560. "formātu. TinEye atbalsta tikai JPEG, PNG, GIF, BMP, TIFF vai WebP "
  561. "attēlus."
  562. #: searx/engines/tineye.py:54
  563. msgid ""
  564. "The image is too simple to find matches. TinEye requires a basic level of"
  565. " visual detail to successfully identify matches."
  566. msgstr ""
  567. "Attēls ir pārāk vienkāršs, lai atrastu atbilstību. Lai veiksmīgi noteiktu"
  568. " sakritības, TinEye ir nepieciešams pamata vizuālo detaļu līmenis."
  569. #: searx/engines/tineye.py:59
  570. msgid "The image could not be downloaded."
  571. msgstr "Attēlu neizdevās lejupielādēt."
  572. #: searx/engines/zlibrary.py:138
  573. msgid "Book rating"
  574. msgstr "grāmatu vērtējums"
  575. #: searx/engines/zlibrary.py:139
  576. msgid "File quality"
  577. msgstr "Failu kvalitāte"
  578. #: searx/plugins/ahmia_filter.py:32
  579. msgid "Ahmia blacklist"
  580. msgstr "Ahmia melnais saraksts"
  581. #: searx/plugins/ahmia_filter.py:33
  582. msgid "Filter out onion results that appear in Ahmia's blacklist."
  583. msgstr "Izfiltrēt \"sīpolu\" rezultātus, kas parādās Ahmia melnajā sarakstā."
  584. #: searx/plugins/calculator.py:38
  585. msgid "Basic Calculator"
  586. msgstr "Parasts kalkulators"
  587. #: searx/plugins/calculator.py:39
  588. msgid "Calculate mathematical expressions via the search bar"
  589. msgstr "Izrēķināt matemātiskas izteiksmes, izmantojot meklētāju"
  590. #: searx/plugins/hash_plugin.py:34
  591. msgid "Hash plugin"
  592. msgstr "Jaucējvērtības spraudnis"
  593. #: searx/plugins/hash_plugin.py:36
  594. msgid ""
  595. "Converts strings to different hash digests. Available functions: md5, "
  596. "sha1, sha224, sha256, sha384, sha512."
  597. msgstr ""
  598. #: searx/plugins/hash_plugin.py:64
  599. msgid "hash digest"
  600. msgstr "jaucējkoda sašķelšana"
  601. #: searx/plugins/hostnames.py:123
  602. msgid "Hostnames plugin"
  603. msgstr "Saimniekvārdu spraudnis"
  604. #: searx/plugins/hostnames.py:124
  605. msgid "Rewrite hostnames and remove or prioritize results based on the hostname"
  606. msgstr ""
  607. #: searx/plugins/oa_doi_rewrite.py:55
  608. msgid "Open Access DOI rewrite"
  609. msgstr "Atvērtās piekļuves DOI pārrakstīšana"
  610. #: searx/plugins/oa_doi_rewrite.py:56
  611. msgid ""
  612. "Avoid paywalls by redirecting to open-access versions of publications "
  613. "when available"
  614. msgstr ""
  615. "Izvairieties no maksas sienām, novirzot uz publikāciju atvērtās piekļuves"
  616. " versijām, ja tās ir pieejamas"
  617. #: searx/plugins/self_info.py:37
  618. msgid "Self Information"
  619. msgstr "Informācija par sevi"
  620. #: searx/plugins/self_info.py:39
  621. msgid ""
  622. "Displays your IP if the query is \"ip\" and your user agent if the query "
  623. "is \"user-agent\"."
  624. msgstr ""
  625. "Tiek izvadīta Jūsu IP, ja pieprasījumā norādīts “ip”, un Jūsu "
  626. "lietotājaģents, ja pieprasījumā norādīts “user-agent”."
  627. #: searx/plugins/self_info.py:52
  628. msgid "Your IP is: "
  629. msgstr "Jūsu IP ir: "
  630. #: searx/plugins/self_info.py:55
  631. msgid "Your user-agent is: "
  632. msgstr "Jūsu lietotājaģents ir: "
  633. #: searx/plugins/tor_check.py:42
  634. msgid "Tor check plugin"
  635. msgstr "Pārbaudiet Tor spraudni"
  636. #: searx/plugins/tor_check.py:44
  637. msgid ""
  638. "This plugin checks if the address of the request is a Tor exit-node, and "
  639. "informs the user if it is; like check.torproject.org, but from SearXNG."
  640. msgstr ""
  641. "Šis spraudnis pārbauda vai pieprasītā adrese ir Tor izejas mezgls un "
  642. "informē lietotāju, ja tas tā ir; piemēram, check.torproject.org, bet no "
  643. "SearXNG."
  644. #: searx/plugins/tor_check.py:65
  645. msgid "Could not download the list of Tor exit-nodes from"
  646. msgstr "Nevarēja lejupielādēt Tor izejas mezglu sarakstu no"
  647. #: searx/plugins/tor_check.py:72
  648. msgid "You are using Tor and it looks like you have the external IP address"
  649. msgstr "Jūs lietojat Tor un izskatās, ka Jums ir ārējā IP adrese"
  650. #: searx/plugins/tor_check.py:76
  651. msgid "You are not using Tor and you have the external IP address"
  652. msgstr "Jūs nelietojat Tor un Jums ir ārējā IP adrese"
  653. #: searx/plugins/tracker_url_remover.py:35
  654. msgid "Tracker URL remover"
  655. msgstr "Izsekošanas URL noņemšanas līdzeklis"
  656. #: searx/plugins/tracker_url_remover.py:36
  657. msgid "Remove trackers arguments from the returned URL"
  658. msgstr "Noņemt izsekotāju argumentus no atgrieztā URL"
  659. #: searx/plugins/unit_converter.py:49
  660. msgid "Unit converter plugin"
  661. msgstr "Vienību pārveidotāja spraudnis"
  662. #: searx/plugins/unit_converter.py:50
  663. msgid "Convert between units"
  664. msgstr "Konvertēt starp vienībām"
  665. #: searx/result_types/answer.py:224
  666. #, python-brace-format
  667. msgid "{location}: {temperature}, {condition}"
  668. msgstr "{location}: {temperature}, {condition}"
  669. #: searx/templates/simple/404.html:4
  670. msgid "Page not found"
  671. msgstr "Lapa nav atrasta"
  672. #: searx/templates/simple/404.html:6
  673. #, python-format
  674. msgid "Go to %(search_page)s."
  675. msgstr "Doties uz %(search_page)s."
  676. #: searx/templates/simple/404.html:6
  677. msgid "search page"
  678. msgstr "meklēšanas lapa"
  679. #: searx/templates/simple/base.html:53
  680. msgid "Donate"
  681. msgstr "Ziedo"
  682. #: searx/templates/simple/base.html:57
  683. #: searx/templates/simple/preferences.html:156
  684. msgid "Preferences"
  685. msgstr "Opcijas"
  686. #: searx/templates/simple/base.html:67
  687. msgid "Powered by"
  688. msgstr "Darbojas ar"
  689. #: searx/templates/simple/base.html:67
  690. msgid "a privacy-respecting, open metasearch engine"
  691. msgstr "privātumu respektējoša, atvērta meta-meklētājprogramma"
  692. #: searx/templates/simple/base.html:68
  693. #: searx/templates/simple/result_templates/packages.html:59
  694. msgid "Source code"
  695. msgstr "Pirmkods"
  696. #: searx/templates/simple/base.html:69
  697. msgid "Issue tracker"
  698. msgstr "Problēmu izsekotājs"
  699. #: searx/templates/simple/base.html:70 searx/templates/simple/stats.html:18
  700. msgid "Engine stats"
  701. msgstr "Dzinēja statistika"
  702. #: searx/templates/simple/base.html:72
  703. msgid "Public instances"
  704. msgstr "Publiskās instances"
  705. #: searx/templates/simple/base.html:75
  706. msgid "Privacy policy"
  707. msgstr "Privātuma politika"
  708. #: searx/templates/simple/base.html:78
  709. msgid "Contact instance maintainer"
  710. msgstr ""
  711. #: searx/templates/simple/categories.html:30
  712. msgid "Click on the magnifier to perform search"
  713. msgstr "Noklikšķiniet uz lupas, lai veiktu meklēšanu"
  714. #: searx/templates/simple/macros.html:40
  715. msgid "Length"
  716. msgstr "Garums"
  717. #: searx/templates/simple/macros.html:41
  718. msgid "Views"
  719. msgstr ""
  720. #: searx/templates/simple/macros.html:42
  721. #: searx/templates/simple/result_templates/files.html:34
  722. #: searx/templates/simple/result_templates/images.html:19
  723. #: searx/templates/simple/result_templates/paper.html:6
  724. msgid "Author"
  725. msgstr "Autors"
  726. #: searx/templates/simple/macros.html:50
  727. msgid "cached"
  728. msgstr ""
  729. #: searx/templates/simple/new_issue.html:64
  730. msgid "Start submitting a new issue on GitHub"
  731. msgstr ""
  732. #: searx/templates/simple/new_issue.html:66
  733. msgid "Please check for existing bugs about this engine on GitHub"
  734. msgstr ""
  735. #: searx/templates/simple/new_issue.html:69
  736. msgid "I confirm there is no existing bug about the issue I encounter"
  737. msgstr ""
  738. #: searx/templates/simple/new_issue.html:71
  739. msgid "If this is a public instance, please specify the URL in the bug report"
  740. msgstr ""
  741. #: searx/templates/simple/new_issue.html:72
  742. msgid "Submit a new issue on Github including the above information"
  743. msgstr ""
  744. "Iesniedziet jaunu problēmjautājumu iekš Github, ieskaitot augstāk minēto "
  745. "informāciju"
  746. #: searx/templates/simple/preferences.html:65
  747. msgid "No HTTPS"
  748. msgstr ""
  749. #: searx/templates/simple/elements/engines_msg.html:14
  750. #: searx/templates/simple/preferences.html:69
  751. #: searx/templates/simple/preferences.html:70
  752. msgid "View error logs and submit a bug report"
  753. msgstr ""
  754. #: searx/templates/simple/preferences.html:74
  755. msgid "!bang for this engine"
  756. msgstr ""
  757. #: searx/templates/simple/preferences.html:80
  758. msgid "!bang for its categories"
  759. msgstr ""
  760. #: searx/templates/simple/preferences.html:102
  761. #: searx/templates/simple/stats.html:64
  762. msgid "Median"
  763. msgstr ""
  764. #: searx/templates/simple/preferences.html:103
  765. #: searx/templates/simple/stats.html:70
  766. msgid "P80"
  767. msgstr ""
  768. #: searx/templates/simple/preferences.html:104
  769. #: searx/templates/simple/stats.html:76
  770. msgid "P95"
  771. msgstr ""
  772. #: searx/templates/simple/preferences.html:136
  773. msgid "Failed checker test(s): "
  774. msgstr ""
  775. #: searx/templates/simple/preferences.html:138
  776. msgid "Errors:"
  777. msgstr "Kļūdas:"
  778. #: searx/templates/simple/preferences.html:163
  779. msgid "General"
  780. msgstr "Vispārīgi"
  781. #: searx/templates/simple/preferences.html:166
  782. msgid "Default categories"
  783. msgstr "Noklusējuma kategorijas"
  784. #: searx/templates/simple/preferences.html:194
  785. msgid "User interface"
  786. msgstr "Lietotāja saskarne"
  787. #: searx/templates/simple/preferences.html:217
  788. msgid "Privacy"
  789. msgstr "Privātums"
  790. #: searx/templates/simple/preferences.html:232
  791. msgid "Engines"
  792. msgstr "Dzinēji"
  793. #: searx/templates/simple/preferences.html:234
  794. msgid "Currently used search engines"
  795. msgstr "Pašlaik izmantotās meklētājprogrammas"
  796. #: searx/templates/simple/preferences.html:243
  797. msgid "Special Queries"
  798. msgstr ""
  799. #: searx/templates/simple/preferences.html:251
  800. msgid "Cookies"
  801. msgstr ""
  802. #: searx/templates/simple/results.html:30
  803. msgid "Number of results"
  804. msgstr "Rezultātu skaits"
  805. #: searx/templates/simple/results.html:36
  806. msgid "Info"
  807. msgstr "Informācija"
  808. #: searx/templates/simple/results.html:77
  809. msgid "Back to top"
  810. msgstr "Atpakaļ uz augšu"
  811. #: searx/templates/simple/results.html:95
  812. msgid "Previous page"
  813. msgstr "Iepriekšējā lapa"
  814. #: searx/templates/simple/results.html:113
  815. msgid "Next page"
  816. msgstr "Nākamā lapa"
  817. #: searx/templates/simple/search.html:3
  818. msgid "Display the front page"
  819. msgstr "Rādīt sākuma lapu"
  820. #: searx/templates/simple/search.html:9
  821. #: searx/templates/simple/simple_search.html:5
  822. msgid "Search for..."
  823. msgstr "Meklēt..."
  824. #: searx/templates/simple/search.html:10
  825. #: searx/templates/simple/simple_search.html:6
  826. msgid "clear"
  827. msgstr "notīrīt"
  828. #: searx/templates/simple/search.html:11
  829. #: searx/templates/simple/simple_search.html:7
  830. msgid "search"
  831. msgstr "meklēt"
  832. #: searx/templates/simple/stats.html:21
  833. msgid "There is currently no data available. "
  834. msgstr "Dati šobrīd nav pieejami. "
  835. #: searx/templates/simple/preferences/engines.html:24
  836. #: searx/templates/simple/stats.html:25
  837. msgid "Engine name"
  838. msgstr "Meklētāja nosaukums"
  839. #: searx/templates/simple/stats.html:26
  840. msgid "Scores"
  841. msgstr ""
  842. #: searx/templates/simple/stats.html:27
  843. msgid "Result count"
  844. msgstr ""
  845. #: searx/templates/simple/elements/engines_msg.html:7
  846. #: searx/templates/simple/preferences/engines.html:31
  847. #: searx/templates/simple/stats.html:28
  848. msgid "Response time"
  849. msgstr "Atbildes laiks"
  850. #: searx/templates/simple/preferences/engines.html:35
  851. #: searx/templates/simple/stats.html:29
  852. msgid "Reliability"
  853. msgstr ""
  854. #: searx/templates/simple/stats.html:59
  855. msgid "Total"
  856. msgstr ""
  857. #: searx/templates/simple/stats.html:60
  858. msgid "HTTP"
  859. msgstr ""
  860. #: searx/templates/simple/stats.html:61
  861. msgid "Processing"
  862. msgstr ""
  863. #: searx/templates/simple/stats.html:99
  864. msgid "Warnings"
  865. msgstr ""
  866. #: searx/templates/simple/stats.html:99
  867. msgid "Errors and exceptions"
  868. msgstr ""
  869. #: searx/templates/simple/stats.html:105
  870. msgid "Exception"
  871. msgstr ""
  872. #: searx/templates/simple/stats.html:107
  873. msgid "Message"
  874. msgstr ""
  875. #: searx/templates/simple/stats.html:109
  876. msgid "Percentage"
  877. msgstr ""
  878. #: searx/templates/simple/stats.html:111
  879. msgid "Parameter"
  880. msgstr ""
  881. #: searx/templates/simple/result_templates/files.html:36
  882. #: searx/templates/simple/stats.html:119
  883. msgid "Filename"
  884. msgstr ""
  885. #: searx/templates/simple/stats.html:120
  886. msgid "Function"
  887. msgstr ""
  888. #: searx/templates/simple/stats.html:121
  889. msgid "Code"
  890. msgstr ""
  891. #: searx/templates/simple/stats.html:128
  892. msgid "Checker"
  893. msgstr ""
  894. #: searx/templates/simple/stats.html:131
  895. msgid "Failed test"
  896. msgstr ""
  897. #: searx/templates/simple/stats.html:132
  898. msgid "Comment(s)"
  899. msgstr ""
  900. #: searx/templates/simple/answer/translations.html:12
  901. #: searx/templates/simple/preferences/answerers.html:8
  902. msgid "Examples"
  903. msgstr "Piemēri"
  904. #: searx/templates/simple/answer/translations.html:21
  905. msgid "Definitions"
  906. msgstr ""
  907. #: searx/templates/simple/answer/translations.html:30
  908. msgid "Synonyms"
  909. msgstr ""
  910. #: searx/templates/simple/answer/weather.html:19
  911. msgid "Feels Like"
  912. msgstr ""
  913. #: searx/templates/simple/elements/answers.html:2
  914. msgid "Answers"
  915. msgstr "Atbildes"
  916. #: searx/templates/simple/elements/apis.html:3
  917. msgid "Download results"
  918. msgstr "Lejupielādes rezultāti"
  919. #: searx/templates/simple/elements/corrections.html:2
  920. msgid "Try searching for:"
  921. msgstr "Mēģiniet meklēt:"
  922. #: searx/templates/simple/elements/engines_msg.html:4
  923. msgid "Messages from the search engines"
  924. msgstr ""
  925. #: searx/templates/simple/elements/engines_msg.html:7
  926. msgid "seconds"
  927. msgstr ""
  928. #: searx/templates/simple/elements/search_url.html:3
  929. msgid "Search URL"
  930. msgstr "Meklēšanas URL"
  931. #: searx/templates/simple/elements/search_url.html:4
  932. #: searx/templates/simple/preferences/cookies.html:54
  933. msgid "Copied"
  934. msgstr ""
  935. #: searx/templates/simple/elements/search_url.html:4
  936. #: searx/templates/simple/preferences/cookies.html:54
  937. msgid "Copy"
  938. msgstr ""
  939. #: searx/templates/simple/elements/suggestions.html:3
  940. msgid "Suggestions"
  941. msgstr "Ieteikumi"
  942. #: searx/templates/simple/filters/languages.html:1
  943. #: searx/templates/simple/preferences/language.html:2
  944. msgid "Search language"
  945. msgstr "Meklēšanas valoda"
  946. #: searx/templates/simple/filters/languages.html:4
  947. #: searx/templates/simple/preferences/language.html:7
  948. msgid "Default language"
  949. msgstr ""
  950. #: searx/templates/simple/filters/languages.html:8
  951. #: searx/templates/simple/preferences/language.html:11
  952. msgid "Auto-detect"
  953. msgstr ""
  954. #: searx/templates/simple/filters/safesearch.html:1
  955. #: searx/templates/simple/filters/safesearch.html:2
  956. #: searx/templates/simple/filters/safesearch.html:3
  957. #: searx/templates/simple/filters/safesearch.html:4
  958. #: searx/templates/simple/preferences/engines.html:27
  959. #: searx/templates/simple/preferences/safesearch.html:2
  960. msgid "SafeSearch"
  961. msgstr ""
  962. #: searx/templates/simple/filters/safesearch.html:2
  963. #: searx/templates/simple/preferences/safesearch.html:7
  964. msgid "Strict"
  965. msgstr "Stingrs"
  966. #: searx/templates/simple/filters/safesearch.html:3
  967. #: searx/templates/simple/preferences/safesearch.html:11
  968. msgid "Moderate"
  969. msgstr ""
  970. #: searx/templates/simple/filters/safesearch.html:4
  971. #: searx/templates/simple/preferences/safesearch.html:15
  972. msgid "None"
  973. msgstr "Neviens"
  974. #: searx/templates/simple/filters/time_range.html:1
  975. #: searx/templates/simple/preferences/engines.html:28
  976. msgid "Time range"
  977. msgstr "Laika diapazons"
  978. #: searx/templates/simple/filters/time_range.html:3
  979. msgid "Anytime"
  980. msgstr ""
  981. #: searx/templates/simple/filters/time_range.html:6
  982. msgid "Last day"
  983. msgstr ""
  984. #: searx/templates/simple/filters/time_range.html:9
  985. msgid "Last week"
  986. msgstr ""
  987. #: searx/templates/simple/filters/time_range.html:12
  988. msgid "Last month"
  989. msgstr ""
  990. #: searx/templates/simple/filters/time_range.html:15
  991. msgid "Last year"
  992. msgstr ""
  993. #: searx/templates/simple/messages/no_cookies.html:3
  994. msgid "Information!"
  995. msgstr ""
  996. #: searx/templates/simple/messages/no_cookies.html:4
  997. msgid "currently, there are no cookies defined."
  998. msgstr ""
  999. #: searx/templates/simple/messages/no_results.html:6
  1000. msgid "Sorry!"
  1001. msgstr ""
  1002. #: searx/templates/simple/messages/no_results.html:12
  1003. msgid "No results were found. You can try to:"
  1004. msgstr ""
  1005. #: searx/templates/simple/messages/no_results.html:14
  1006. msgid "There are no more results. You can try to:"
  1007. msgstr ""
  1008. #: searx/templates/simple/messages/no_results.html:19
  1009. msgid "Refresh the page."
  1010. msgstr ""
  1011. #: searx/templates/simple/messages/no_results.html:20
  1012. msgid "Search for another query or select another category (above)."
  1013. msgstr ""
  1014. #: searx/templates/simple/messages/no_results.html:21
  1015. msgid "Change the search engine used in the preferences:"
  1016. msgstr ""
  1017. #: searx/templates/simple/messages/no_results.html:22
  1018. msgid "Switch to another instance:"
  1019. msgstr ""
  1020. #: searx/templates/simple/messages/no_results.html:24
  1021. msgid "Search for another query or select another category."
  1022. msgstr ""
  1023. #: searx/templates/simple/messages/no_results.html:25
  1024. msgid "Go back to the previous page using the previous page button."
  1025. msgstr ""
  1026. #: searx/templates/simple/preferences/answerers.html:4
  1027. #: searx/templates/simple/preferences/engines.html:23
  1028. msgid "Allow"
  1029. msgstr "Atļaut"
  1030. #: searx/templates/simple/preferences/answerers.html:5
  1031. msgid "Keywords (first word in query)"
  1032. msgstr ""
  1033. #: searx/templates/simple/preferences/answerers.html:6
  1034. #: searx/templates/simple/result_templates/packages.html:7
  1035. msgid "Name"
  1036. msgstr "Vārds"
  1037. #: searx/templates/simple/preferences/answerers.html:7
  1038. msgid "Description"
  1039. msgstr "Apraksts"
  1040. #: searx/templates/simple/preferences/answerers.html:13
  1041. msgid "This is the list of SearXNG's instant answering modules."
  1042. msgstr "Šis ir SearXNG tūlītējās atbildēšanas moduļu saraksts."
  1043. #: searx/templates/simple/preferences/answerers.html:29
  1044. msgid "This is the list of plugins."
  1045. msgstr "Šis ir spraudņu saraksts."
  1046. #: searx/templates/simple/preferences/autocomplete.html:2
  1047. msgid "Autocomplete"
  1048. msgstr "Automātiskā pabeigšana"
  1049. #: searx/templates/simple/preferences/autocomplete.html:15
  1050. msgid "Show possible queries as you type"
  1051. msgstr ""
  1052. #: searx/templates/simple/preferences/center_alignment.html:2
  1053. msgid "Center Alignment"
  1054. msgstr "Centra līdzinājums"
  1055. #: searx/templates/simple/preferences/center_alignment.html:14
  1056. msgid "Display results in the center of the page (Oscar layout)."
  1057. msgstr ""
  1058. #: searx/templates/simple/preferences/cookies.html:2
  1059. msgid ""
  1060. "This is the list of cookies and their values SearXNG is storing on your "
  1061. "computer."
  1062. msgstr ""
  1063. #: searx/templates/simple/preferences/cookies.html:3
  1064. msgid "With this list, you can assess the transparency of SearXNG."
  1065. msgstr ""
  1066. #: searx/templates/simple/preferences/cookies.html:9
  1067. msgid "Cookie name"
  1068. msgstr ""
  1069. #: searx/templates/simple/preferences/cookies.html:10
  1070. msgid "Value"
  1071. msgstr "Vērtība"
  1072. #: searx/templates/simple/preferences/cookies.html:23
  1073. msgid "Search URL of the currently saved preferences"
  1074. msgstr "Pašlaik saglabāto preferenču meklēšanas URL"
  1075. #: searx/templates/simple/preferences/cookies.html:32
  1076. msgid ""
  1077. "Note: specifying custom settings in the search URL can reduce privacy by "
  1078. "leaking data to the clicked result sites."
  1079. msgstr ""
  1080. "Piezīme: Nosakot pielāgotus iestatījumus meklēšanas URL, var samazināt "
  1081. "konfidencialitāti (privātumu), izplūstot datiem uz rezultātu vietnēm, uz "
  1082. "kurām tika noklikšķināts."
  1083. #: searx/templates/simple/preferences/cookies.html:35
  1084. msgid "URL to restore your preferences in another browser"
  1085. msgstr "URL, lai atjaunotu savas preferences citā pārlūkprogrammā"
  1086. #: searx/templates/simple/preferences/cookies.html:43
  1087. msgid ""
  1088. "A URL containing your preferences. This URL can be used to restore your "
  1089. "settings on a different device."
  1090. msgstr ""
  1091. #: searx/templates/simple/preferences/cookies.html:46
  1092. msgid "Copy preferences hash"
  1093. msgstr ""
  1094. #: searx/templates/simple/preferences/cookies.html:57
  1095. msgid "Insert copied preferences hash (without URL) to restore"
  1096. msgstr ""
  1097. #: searx/templates/simple/preferences/cookies.html:59
  1098. msgid "Preferences hash"
  1099. msgstr ""
  1100. #: searx/templates/simple/preferences/doi_resolver.html:1
  1101. msgid "Digital Object Identifier (DOI)"
  1102. msgstr ""
  1103. #: searx/templates/simple/preferences/doi_resolver.html:6
  1104. msgid "Open Access DOI resolver"
  1105. msgstr ""
  1106. #: searx/templates/simple/preferences/doi_resolver.html:18
  1107. msgid "Select service used by DOI rewrite"
  1108. msgstr ""
  1109. #: searx/templates/simple/preferences/engines.html:9
  1110. msgid ""
  1111. "This tab does not exist in the user interface, but you can search with "
  1112. "these engines via !bangs."
  1113. msgstr ""
  1114. #: searx/templates/simple/preferences/engines.html:15
  1115. msgid "Enable all"
  1116. msgstr ""
  1117. #: searx/templates/simple/preferences/engines.html:16
  1118. msgid "Disable all"
  1119. msgstr ""
  1120. #: searx/templates/simple/preferences/engines.html:25
  1121. msgid "!bang"
  1122. msgstr ""
  1123. #: searx/templates/simple/preferences/engines.html:26
  1124. msgid "Supports selected language"
  1125. msgstr "Atbalsta atlasīto valodu"
  1126. #: searx/templates/simple/preferences/engines.html:29
  1127. msgid "Weight"
  1128. msgstr ""
  1129. #: searx/templates/simple/preferences/engines.html:33
  1130. msgid "Max time"
  1131. msgstr "Maksimālais laiks"
  1132. #: searx/templates/simple/preferences/favicon.html:2
  1133. msgid "Favicon Resolver"
  1134. msgstr ""
  1135. #: searx/templates/simple/preferences/favicon.html:15
  1136. msgid "Display favicons near search results"
  1137. msgstr ""
  1138. #: searx/templates/simple/preferences/footer.html:2
  1139. msgid ""
  1140. "These settings are stored in your cookies. This allows us not to store "
  1141. "this data about you."
  1142. msgstr ""
  1143. #: searx/templates/simple/preferences/footer.html:3
  1144. msgid "These cookies serve your sole convenience; we don't use them to track you."
  1145. msgstr ""
  1146. #: searx/templates/simple/preferences/footer.html:6
  1147. msgid "Save"
  1148. msgstr "Saglabāt"
  1149. #: searx/templates/simple/preferences/footer.html:9
  1150. msgid "Reset defaults"
  1151. msgstr "Atiestatīt noklusējuma"
  1152. #: searx/templates/simple/preferences/footer.html:13
  1153. msgid "Back"
  1154. msgstr "Atpakaļ"
  1155. #: searx/templates/simple/preferences/hotkeys.html:2
  1156. msgid "Hotkeys"
  1157. msgstr ""
  1158. #: searx/templates/simple/preferences/hotkeys.html:13
  1159. msgid "Vim-like"
  1160. msgstr ""
  1161. #: searx/templates/simple/preferences/hotkeys.html:18
  1162. msgid ""
  1163. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1164. "key on main or result page to get help."
  1165. msgstr ""
  1166. #: searx/templates/simple/preferences/image_proxy.html:2
  1167. msgid "Image proxy"
  1168. msgstr "Attēla starpniekserveris"
  1169. #: searx/templates/simple/preferences/image_proxy.html:14
  1170. msgid "Proxy image results through SearXNG"
  1171. msgstr ""
  1172. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1173. msgid "Infinite scroll"
  1174. msgstr "Bezgalīgā ritināšana"
  1175. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1176. msgid ""
  1177. "Automatically load the next page when scrolling to the bottom of the "
  1178. "current page"
  1179. msgstr ""
  1180. #: searx/templates/simple/preferences/language.html:24
  1181. msgid "What language do you prefer for search?"
  1182. msgstr "Kādai valodai dodat priekšroku priekš meklēšanas?"
  1183. #: searx/templates/simple/preferences/language.html:25
  1184. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1185. msgstr ""
  1186. #: searx/templates/simple/preferences/method.html:2
  1187. msgid "HTTP Method"
  1188. msgstr "HTTP Metode"
  1189. #: searx/templates/simple/preferences/method.html:14
  1190. msgid "Change how forms are submitted"
  1191. msgstr ""
  1192. #: searx/templates/simple/preferences/query_in_title.html:2
  1193. msgid "Query in the page's title"
  1194. msgstr ""
  1195. #: searx/templates/simple/preferences/query_in_title.html:14
  1196. msgid ""
  1197. "When enabled, the result page's title contains your query. Your browser "
  1198. "can record this title"
  1199. msgstr ""
  1200. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1201. msgid "Results in new tabs"
  1202. msgstr ""
  1203. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1204. msgid "Open result links in new browser tabs"
  1205. msgstr ""
  1206. #: searx/templates/simple/preferences/safesearch.html:20
  1207. msgid "Filter content"
  1208. msgstr ""
  1209. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1210. msgid "Search on category select"
  1211. msgstr ""
  1212. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1213. msgid ""
  1214. "Perform a search immediately if a category is selected. Disable to select"
  1215. " multiple categories"
  1216. msgstr ""
  1217. #: searx/templates/simple/preferences/theme.html:2
  1218. msgid "Theme"
  1219. msgstr "Tēma"
  1220. #: searx/templates/simple/preferences/theme.html:14
  1221. msgid "Change the layout of SearXNG"
  1222. msgstr ""
  1223. #: searx/templates/simple/preferences/theme.html:19
  1224. msgid "Theme style"
  1225. msgstr "Tēmas stils"
  1226. #: searx/templates/simple/preferences/theme.html:31
  1227. msgid "Choose auto to follow your browser settings"
  1228. msgstr "Izvēlies auto, lai sekotu saviem pārluka iestatījumiem"
  1229. #: searx/templates/simple/preferences/tokens.html:2
  1230. msgid "Engine tokens"
  1231. msgstr ""
  1232. #: searx/templates/simple/preferences/tokens.html:9
  1233. msgid "Access tokens for private engines"
  1234. msgstr ""
  1235. #: searx/templates/simple/preferences/ui_locale.html:2
  1236. msgid "Interface language"
  1237. msgstr ""
  1238. #: searx/templates/simple/preferences/ui_locale.html:14
  1239. msgid "Change the language of the layout"
  1240. msgstr "Izkārtojuma valodas maiņa"
  1241. #: searx/templates/simple/preferences/urlformatting.html:2
  1242. msgid "URL formatting"
  1243. msgstr ""
  1244. #: searx/templates/simple/preferences/urlformatting.html:8
  1245. msgid "Pretty"
  1246. msgstr ""
  1247. #: searx/templates/simple/preferences/urlformatting.html:13
  1248. msgid "Full"
  1249. msgstr ""
  1250. #: searx/templates/simple/preferences/urlformatting.html:18
  1251. msgid "Host"
  1252. msgstr ""
  1253. #: searx/templates/simple/preferences/urlformatting.html:23
  1254. msgid "Change result URL formatting"
  1255. msgstr ""
  1256. #: searx/templates/simple/result_templates/code.html:13
  1257. msgid "repo"
  1258. msgstr ""
  1259. #: searx/templates/simple/result_templates/default.html:6
  1260. #: searx/templates/simple/result_templates/files.html:8
  1261. #: searx/templates/simple/result_templates/files.html:11
  1262. msgid "show media"
  1263. msgstr ""
  1264. #: searx/templates/simple/result_templates/default.html:6
  1265. #: searx/templates/simple/result_templates/files.html:8
  1266. msgid "hide media"
  1267. msgstr ""
  1268. #: searx/templates/simple/result_templates/default.html:14
  1269. #: searx/templates/simple/result_templates/videos.html:14
  1270. msgid "This site did not provide any description."
  1271. msgstr ""
  1272. #: searx/templates/simple/result_templates/files.html:38
  1273. #: searx/templates/simple/result_templates/images.html:22
  1274. #: searx/templates/simple/result_templates/torrent.html:18
  1275. msgid "Filesize"
  1276. msgstr "Faila lielums"
  1277. #: searx/templates/simple/result_templates/files.html:40
  1278. msgid "Date"
  1279. msgstr ""
  1280. #: searx/templates/simple/result_templates/files.html:42
  1281. #: searx/templates/simple/result_templates/paper.html:24
  1282. msgid "Type"
  1283. msgstr ""
  1284. #: searx/templates/simple/result_templates/images.html:20
  1285. msgid "Resolution"
  1286. msgstr ""
  1287. #: searx/templates/simple/result_templates/images.html:21
  1288. msgid "Format"
  1289. msgstr ""
  1290. #: searx/templates/simple/result_templates/images.html:24
  1291. msgid "Engine"
  1292. msgstr ""
  1293. #: searx/templates/simple/result_templates/images.html:25
  1294. msgid "View source"
  1295. msgstr ""
  1296. #: searx/templates/simple/result_templates/map.html:12
  1297. msgid "address"
  1298. msgstr ""
  1299. #: searx/templates/simple/result_templates/map.html:43
  1300. msgid "show map"
  1301. msgstr ""
  1302. #: searx/templates/simple/result_templates/map.html:43
  1303. msgid "hide map"
  1304. msgstr ""
  1305. #: searx/templates/simple/result_templates/packages.html:12
  1306. msgid "Version"
  1307. msgstr ""
  1308. #: searx/templates/simple/result_templates/packages.html:18
  1309. msgid "Maintainer"
  1310. msgstr ""
  1311. #: searx/templates/simple/result_templates/packages.html:24
  1312. msgid "Updated at"
  1313. msgstr ""
  1314. #: searx/templates/simple/result_templates/packages.html:30
  1315. #: searx/templates/simple/result_templates/paper.html:25
  1316. msgid "Tags"
  1317. msgstr ""
  1318. #: searx/templates/simple/result_templates/packages.html:36
  1319. msgid "Popularity"
  1320. msgstr ""
  1321. #: searx/templates/simple/result_templates/packages.html:42
  1322. msgid "License"
  1323. msgstr ""
  1324. #: searx/templates/simple/result_templates/packages.html:52
  1325. msgid "Project"
  1326. msgstr "Projektus"
  1327. #: searx/templates/simple/result_templates/packages.html:55
  1328. msgid "Project homepage"
  1329. msgstr ""
  1330. #: searx/templates/simple/result_templates/paper.html:5
  1331. msgid "Published date"
  1332. msgstr ""
  1333. #: searx/templates/simple/result_templates/paper.html:9
  1334. msgid "Journal"
  1335. msgstr ""
  1336. #: searx/templates/simple/result_templates/paper.html:22
  1337. msgid "Editor"
  1338. msgstr ""
  1339. #: searx/templates/simple/result_templates/paper.html:23
  1340. #, fuzzy
  1341. msgid "Publisher"
  1342. msgstr "Publicētājs"
  1343. #: searx/templates/simple/result_templates/paper.html:26
  1344. msgid "DOI"
  1345. msgstr "DOI"
  1346. #: searx/templates/simple/result_templates/paper.html:27
  1347. msgid "ISSN"
  1348. msgstr "ISSN"
  1349. #: searx/templates/simple/result_templates/paper.html:28
  1350. msgid "ISBN"
  1351. msgstr "ISBN"
  1352. #: searx/templates/simple/result_templates/paper.html:33
  1353. msgid "PDF"
  1354. msgstr "PDF"
  1355. #: searx/templates/simple/result_templates/paper.html:34
  1356. msgid "HTML"
  1357. msgstr "HTML"
  1358. #: searx/templates/simple/result_templates/torrent.html:7
  1359. msgid "magnet link"
  1360. msgstr ""
  1361. #: searx/templates/simple/result_templates/torrent.html:8
  1362. msgid "torrent file"
  1363. msgstr ""
  1364. #: searx/templates/simple/result_templates/torrent.html:13
  1365. msgid "Seeder"
  1366. msgstr "Sēklotājs"
  1367. #: searx/templates/simple/result_templates/torrent.html:14
  1368. msgid "Leecher"
  1369. msgstr "Sūcējs"
  1370. #: searx/templates/simple/result_templates/torrent.html:19
  1371. msgid "Number of Files"
  1372. msgstr "Failu skaits"
  1373. #: searx/templates/simple/result_templates/videos.html:6
  1374. msgid "show video"
  1375. msgstr "rādīt video"
  1376. #: searx/templates/simple/result_templates/videos.html:6
  1377. msgid "hide video"
  1378. msgstr "slēpt video"
  1379. #~ msgid "Center Alignment"
  1380. #~ msgstr ""
  1381. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1382. #~ msgstr "Parāda rezultātus lapas centrā (Oskara izkārtojums)."
  1383. #~ msgid "preferences"
  1384. #~ msgstr ""
  1385. #~ msgid "Scores per result"
  1386. #~ msgstr ""
  1387. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1388. #~ msgstr ""
  1389. #~ msgid "No abstract is available for this publication."
  1390. #~ msgstr "Šai publikācijai nav pieejams kopsavilkums."
  1391. #~ msgid "Self Informations"
  1392. #~ msgstr ""
  1393. #~ msgid ""
  1394. #~ "Change how forms are submited, <a "
  1395. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1396. #~ " rel=\"external\">learn more about request "
  1397. #~ "methods</a>"
  1398. #~ msgstr ""
  1399. #~ "Mainīt veidu, kā veidlapas tiek "
  1400. #~ "iesniegtas, <a "
  1401. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1402. #~ " rel=\"external\">uzzināt vairāk par pieprasījuma"
  1403. #~ " metodēm</a>"
  1404. #~ msgid ""
  1405. #~ "This plugin checks if the address "
  1406. #~ "of the request is a TOR exit "
  1407. #~ "node, and informs the user if it"
  1408. #~ " is, like check.torproject.org but from "
  1409. #~ "searxng."
  1410. #~ msgstr ""
  1411. #~ msgid ""
  1412. #~ "The TOR exit node list "
  1413. #~ "(https://check.torproject.org/exit-addresses) is "
  1414. #~ "unreachable."
  1415. #~ msgstr ""
  1416. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1417. #~ msgstr "Jūs izlieto TOR. Jūsu IP adrese šķist būtu: {ip_address}."
  1418. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1419. #~ msgstr "Jūs neizlieto TOR. Jūsu IP adrese šķist būtu: {ip_address}."
  1420. #~ msgid ""
  1421. #~ "The could not download the list of"
  1422. #~ " Tor exit-nodes from "
  1423. #~ "https://check.torproject.org/exit-addresses."
  1424. #~ msgstr ""
  1425. #~ msgid ""
  1426. #~ "You are using Tor. It looks like"
  1427. #~ " you have this external IP address:"
  1428. #~ " {ip_address}."
  1429. #~ msgstr ""
  1430. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1431. #~ msgstr ""
  1432. #~ msgid "Autodetect search language"
  1433. #~ msgstr ""
  1434. #~ msgid "Automatically detect the query search language and switch to it."
  1435. #~ msgstr ""
  1436. #~ msgid "others"
  1437. #~ msgstr "citi"
  1438. #~ msgid ""
  1439. #~ "This tab does not show up for "
  1440. #~ "search results, but you can search "
  1441. #~ "the engines listed here via bangs."
  1442. #~ msgstr ""
  1443. #~ msgid "Shortcut"
  1444. #~ msgstr "Saīsne"
  1445. #~ msgid "!bang"
  1446. #~ msgstr ""
  1447. #~ msgid ""
  1448. #~ "This tab dues not exists in the"
  1449. #~ " user interface, but you can search"
  1450. #~ " in these engines by its !bangs."
  1451. #~ msgstr ""
  1452. #~ msgid "Engines cannot retrieve results."
  1453. #~ msgstr ""
  1454. #~ msgid "Please, try again later or find another SearXNG instance."
  1455. #~ msgstr ""
  1456. #~ msgid ""
  1457. #~ "Redirect to open-access versions of "
  1458. #~ "publications when available (plugin required)"
  1459. #~ msgstr ""
  1460. #~ msgid "Bang"
  1461. #~ msgstr ""
  1462. #~ msgid ""
  1463. #~ "Change how forms are submitted, <a "
  1464. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1465. #~ " rel=\"external\">learn more about request "
  1466. #~ "methods</a>"
  1467. #~ msgstr ""
  1468. #~ msgid "On"
  1469. #~ msgstr "Ieslēgts"
  1470. #~ msgid "Off"
  1471. #~ msgstr "Izslēgts"
  1472. #~ msgid "Enabled"
  1473. #~ msgstr "Iespējots"
  1474. #~ msgid "Disabled"
  1475. #~ msgstr "Atspējots"
  1476. #~ msgid ""
  1477. #~ "Perform search immediately if a category"
  1478. #~ " selected. Disable to select multiple "
  1479. #~ "categories. (JavaScript required)"
  1480. #~ msgstr ""
  1481. #~ "Nekavējoties veikt meklēšanu, ja ir "
  1482. #~ "atlasīta kategorija. Atspējot, lai atlasītu"
  1483. #~ " vairākas kategorijas. (nepieciešams JavaScript)"
  1484. #~ msgid "Vim-like hotkeys"
  1485. #~ msgstr ""
  1486. #~ msgid ""
  1487. #~ "Navigate search results with Vim-like"
  1488. #~ " hotkeys (JavaScript required). Press \"h\""
  1489. #~ " key on main or result page to"
  1490. #~ " get help."
  1491. #~ msgstr ""
  1492. #~ msgid ""
  1493. #~ "we didn't find any results. Please "
  1494. #~ "use another query or search in "
  1495. #~ "more categories."
  1496. #~ msgstr ""
  1497. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1498. #~ msgstr ""
  1499. #~ "Pārrakstīt rezultātu saimniekvārdus vai noņemt"
  1500. #~ " rezultātus, pamatojoties uz saimniekvārdu"
  1501. #~ msgid "Bytes"
  1502. #~ msgstr "Biti"
  1503. #~ msgid "kiB"
  1504. #~ msgstr "kiB"
  1505. #~ msgid "MiB"
  1506. #~ msgstr "MiB"
  1507. #~ msgid "GiB"
  1508. #~ msgstr "GiB"
  1509. #~ msgid "TiB"
  1510. #~ msgstr "TiB"
  1511. #~ msgid "Hostname replace"
  1512. #~ msgstr "Resursdatora vārda nomaiņa"
  1513. #~ msgid "Error!"
  1514. #~ msgstr "Kļūme!"
  1515. #~ msgid "Engines cannot retrieve results"
  1516. #~ msgstr "Meklētāji nevarēja iegūt rezultātus"
  1517. #~ msgid "Start submiting a new issue on GitHub"
  1518. #~ msgstr ""
  1519. #~ msgid "dummy"
  1520. #~ msgstr ""
  1521. #~ msgid "Random value generator"
  1522. #~ msgstr "Nejaušu vērtību ģenerators"
  1523. #~ msgid "Statistics functions"
  1524. #~ msgstr "Statistikas funkcijas"
  1525. #~ msgid "Compute {functions} of the arguments"
  1526. #~ msgstr "Aprēķināt argumentu {functions}"
  1527. #~ msgid "Get directions"
  1528. #~ msgstr "Saņemt norādījumus"
  1529. #~ msgid ""
  1530. #~ "Displays your IP if the query is"
  1531. #~ " \"ip\" and your user agent if "
  1532. #~ "the query contains \"user agent\"."
  1533. #~ msgstr ""
  1534. #~ "Tiek parādīts jūsu IP, ja pieprasījums"
  1535. #~ " ir \"ip\", un jūsu lietotāja aģents,"
  1536. #~ " ja pieprasījumā ir \"user agent\"."
  1537. #~ msgid ""
  1538. #~ "Could not download the list of Tor"
  1539. #~ " exit-nodes from: https://check.torproject.org"
  1540. #~ "/exit-addresses"
  1541. #~ msgstr ""
  1542. #~ msgid ""
  1543. #~ "You are using Tor and it looks "
  1544. #~ "like you have this external IP "
  1545. #~ "address: {ip_address}"
  1546. #~ msgstr "Jūs izmantojat TOR un izskatās ka jūsu ārējā IP adrese ir:{ip_address}"
  1547. #~ msgid ""
  1548. #~ "You are not using Tor and you "
  1549. #~ "have this external IP address: "
  1550. #~ "{ip_address}"
  1551. #~ msgstr ""
  1552. #~ msgid "Keywords"
  1553. #~ msgstr "Atslēgvārdi"
  1554. #~ msgid "/"
  1555. #~ msgstr ""
  1556. #~ msgid ""
  1557. #~ "Specifying custom settings in the "
  1558. #~ "preferences URL can be used to "
  1559. #~ "sync preferences across devices."
  1560. #~ msgstr ""
  1561. #~ msgid "proxied"
  1562. #~ msgstr ""
  1563. #~ msgid ""
  1564. #~ "This tab does not exists in the"
  1565. #~ " user interface, but you can search"
  1566. #~ " in these engines by its !bangs."
  1567. #~ msgstr ""
  1568. #~ msgid "Results on new tabs"
  1569. #~ msgstr "Rezultāti jaunās cilnēs"
  1570. #~ msgid "Open result links on new browser tabs"
  1571. #~ msgstr "Atvērt rezultātu saites jaunās pārlūka cilnēs"
  1572. #~ msgid "Find stuff as you type"
  1573. #~ msgstr "Atrast lietas rakstīšanas laikā"
  1574. #~ msgid "Converts strings to different hash digests."
  1575. #~ msgstr "Pārvērš virknes (strings) par dažādiem jaucējkoda īssavilkumiem."
  1576. #~ msgid ""
  1577. #~ "Rewrite hostnames, remove results or "
  1578. #~ "prioritize them based on the hostname"
  1579. #~ msgstr ""
  1580. #~ "Pārrakstīt saimniekvārdus, noņemt rezultātus "
  1581. #~ "vai prioritizēt tos, pamatojoties uz "
  1582. #~ "saimniekvārdu"
  1583. #~ msgid "With that list, you can assess SearXNG transparency."
  1584. #~ msgstr "Izmantojot šo sarakstu, var novērtēt SearXNG pārredzamību."
  1585. #~ msgid ""
  1586. #~ "These settings are stored in your "
  1587. #~ "cookies, this allows us not to "
  1588. #~ "store this data about you."
  1589. #~ msgstr ""
  1590. #~ msgid ""
  1591. #~ "These cookies serve your sole "
  1592. #~ "convenience, we don't use these cookies"
  1593. #~ " to track you."
  1594. #~ msgstr ""
  1595. #~ msgid "Proxying image results through SearXNG"
  1596. #~ msgstr "Attēlu rezultātu starpniekservera izmantošana, caur SearXNG"
  1597. #~ msgid "Automatically load next page when scrolling to bottom of current page"
  1598. #~ msgstr ""
  1599. #~ "Automātiski ielādēt nākamo lappusi, ritinot"
  1600. #~ " uz pašreizējās lappuses beigām"
  1601. #~ msgid ""
  1602. #~ "Perform search immediately if a category"
  1603. #~ " selected. Disable to select multiple "
  1604. #~ "categories"
  1605. #~ msgstr ""
  1606. #~ msgid "Change SearXNG layout"
  1607. #~ msgstr "Mainīt SearXNG izkārtojumu"