messages.po 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229
  1. # Tibetan translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # 1225 <khyon_khangey@outlook.com>, 2020
  7. # 1225 <khyon_khangey@outlook.com>, 2019
  8. # return42 <markus.heiser@darmarit.de>, 2023.
  9. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  10. # return42 <return42@users.noreply.translate.codeberg.org>, 2025.
  11. msgid ""
  12. msgstr ""
  13. "Project-Id-Version: searx\n"
  14. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  15. "POT-Creation-Date: 2025-06-13 02:39+0000\n"
  16. "PO-Revision-Date: 2025-01-06 15:52+0000\n"
  17. "Last-Translator: return42 <return42@users.noreply.translate.codeberg.org>"
  18. "\n"
  19. "Language: bo\n"
  20. "Language-Team: Tibetan "
  21. "<https://translate.codeberg.org/projects/searxng/searxng/bo/>\n"
  22. "Plural-Forms: nplurals=1; plural=0;\n"
  23. "MIME-Version: 1.0\n"
  24. "Content-Type: text/plain; charset=utf-8\n"
  25. "Content-Transfer-Encoding: 8bit\n"
  26. "Generated-By: Babel 2.17.0\n"
  27. #. CONSTANT_NAMES['NO_SUBGROUPING']
  28. #: searx/searxng.msg
  29. msgid "without further subgrouping"
  30. msgstr ""
  31. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  32. #: searx/searxng.msg
  33. msgid "other"
  34. msgstr ""
  35. #. CATEGORY_NAMES['FILES']
  36. #: searx/searxng.msg
  37. msgid "files"
  38. msgstr "ཡིག་ཚགས།"
  39. #. CATEGORY_NAMES['GENERAL']
  40. #: searx/searxng.msg
  41. msgid "general"
  42. msgstr "དྲ་སྦྲེལ།"
  43. #. CATEGORY_NAMES['MUSIC']
  44. #: searx/searxng.msg
  45. msgid "music"
  46. msgstr "རོལ་མོ།"
  47. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  48. #: searx/searxng.msg
  49. msgid "social media"
  50. msgstr "སྤྱི་འབྲེལ།"
  51. #. CATEGORY_NAMES['IMAGES']
  52. #: searx/searxng.msg
  53. msgid "images"
  54. msgstr "པར་རིས།"
  55. #. CATEGORY_NAMES['VIDEOS']
  56. #: searx/searxng.msg
  57. msgid "videos"
  58. msgstr "བརྙན་ཟློས།"
  59. #. CATEGORY_NAMES['RADIO']
  60. #: searx/engines/radio_browser.py:151 searx/searxng.msg
  61. msgid "radio"
  62. msgstr ""
  63. #. CATEGORY_NAMES['TV']
  64. #: searx/searxng.msg
  65. msgid "tv"
  66. msgstr ""
  67. #. CATEGORY_NAMES['IT']
  68. #: searx/searxng.msg
  69. msgid "it"
  70. msgstr "ཆ་འཕྲིན་ལག་རྩལ།"
  71. #. CATEGORY_NAMES['NEWS']
  72. #: searx/searxng.msg
  73. msgid "news"
  74. msgstr "གསར་འགྱུར།"
  75. #. CATEGORY_NAMES['MAP']
  76. #: searx/searxng.msg
  77. msgid "map"
  78. msgstr "ས་བཀྲ།"
  79. #. CATEGORY_NAMES['ONIONS']
  80. #: searx/searxng.msg
  81. msgid "onions"
  82. msgstr ""
  83. #. CATEGORY_NAMES['SCIENCE']
  84. #: searx/searxng.msg
  85. msgid "science"
  86. msgstr "ཚན་རིག"
  87. #. CATEGORY_GROUPS['APPS']
  88. #: searx/searxng.msg
  89. msgid "apps"
  90. msgstr ""
  91. #. CATEGORY_GROUPS['DICTIONARIES']
  92. #: searx/searxng.msg
  93. msgid "dictionaries"
  94. msgstr ""
  95. #. CATEGORY_GROUPS['LYRICS']
  96. #: searx/searxng.msg
  97. msgid "lyrics"
  98. msgstr ""
  99. #. CATEGORY_GROUPS['PACKAGES']
  100. #: searx/searxng.msg
  101. msgid "packages"
  102. msgstr ""
  103. #. CATEGORY_GROUPS['Q_A']
  104. #: searx/searxng.msg
  105. msgid "q&a"
  106. msgstr ""
  107. #. CATEGORY_GROUPS['REPOS']
  108. #: searx/searxng.msg
  109. msgid "repos"
  110. msgstr ""
  111. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  112. #: searx/searxng.msg
  113. msgid "software wikis"
  114. msgstr ""
  115. #. CATEGORY_GROUPS['WEB']
  116. #: searx/searxng.msg
  117. msgid "web"
  118. msgstr ""
  119. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  120. #: searx/searxng.msg
  121. msgid "scientific publications"
  122. msgstr ""
  123. #. STYLE_NAMES['AUTO']
  124. #: searx/searxng.msg
  125. msgid "auto"
  126. msgstr ""
  127. #. STYLE_NAMES['LIGHT']
  128. #: searx/searxng.msg
  129. msgid "light"
  130. msgstr ""
  131. #. STYLE_NAMES['DARK']
  132. #: searx/searxng.msg
  133. msgid "dark"
  134. msgstr ""
  135. #. STYLE_NAMES['BLACK']
  136. #: searx/searxng.msg
  137. msgid "black"
  138. msgstr ""
  139. #. BRAND_CUSTOM_LINKS['UPTIME']
  140. #: searx/searxng.msg
  141. msgid "Uptime"
  142. msgstr ""
  143. #. BRAND_CUSTOM_LINKS['ABOUT']
  144. #: searx/searxng.msg searx/templates/simple/base.html:49
  145. msgid "About"
  146. msgstr ""
  147. #. WEATHER_TERMS['AVERAGE TEMP.']
  148. #: searx/engines/wttr.py:32 searx/searxng.msg
  149. msgid "Average temp."
  150. msgstr ""
  151. #. WEATHER_TERMS['CLOUD COVER']
  152. #: searx/searxng.msg
  153. msgid "Cloud cover"
  154. msgstr ""
  155. #. WEATHER_TERMS['CONDITION']
  156. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  157. #: searx/searxng.msg
  158. msgid "Condition"
  159. msgstr ""
  160. #. WEATHER_TERMS['CURRENT CONDITION']
  161. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  162. #: searx/searxng.msg
  163. msgid "Current condition"
  164. msgstr ""
  165. #. WEATHER_TERMS['EVENING']
  166. #: searx/engines/wttr.py:100 searx/searxng.msg
  167. msgid "Evening"
  168. msgstr ""
  169. #. WEATHER_TERMS['FEELS LIKE']
  170. #: searx/engines/duckduckgo_weather.py:53 searx/engines/wttr.py:59
  171. #: searx/searxng.msg
  172. msgid "Feels like"
  173. msgstr ""
  174. #. WEATHER_TERMS['HUMIDITY']
  175. #: searx/engines/duckduckgo_weather.py:64 searx/engines/wttr.py:68
  176. #: searx/searxng.msg searx/templates/simple/answer/weather.html:29
  177. msgid "Humidity"
  178. msgstr ""
  179. #. WEATHER_TERMS['MAX TEMP.']
  180. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  181. #: searx/searxng.msg
  182. msgid "Max temp."
  183. msgstr ""
  184. #. WEATHER_TERMS['MIN TEMP.']
  185. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  186. #: searx/searxng.msg
  187. msgid "Min temp."
  188. msgstr ""
  189. #. WEATHER_TERMS['MORNING']
  190. #: searx/engines/wttr.py:100 searx/searxng.msg
  191. msgid "Morning"
  192. msgstr ""
  193. #. WEATHER_TERMS['NIGHT']
  194. #: searx/engines/wttr.py:100 searx/searxng.msg
  195. msgid "Night"
  196. msgstr ""
  197. #. WEATHER_TERMS['NOON']
  198. #: searx/engines/wttr.py:100 searx/searxng.msg
  199. msgid "Noon"
  200. msgstr ""
  201. #. WEATHER_TERMS['PRESSURE']
  202. #: searx/searxng.msg searx/templates/simple/answer/weather.html:25
  203. msgid "Pressure"
  204. msgstr ""
  205. #. WEATHER_TERMS['SUNRISE']
  206. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  207. #: searx/searxng.msg
  208. msgid "Sunrise"
  209. msgstr ""
  210. #. WEATHER_TERMS['SUNSET']
  211. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  212. #: searx/searxng.msg
  213. msgid "Sunset"
  214. msgstr ""
  215. #. WEATHER_TERMS['TEMPERATURE']
  216. #: searx/engines/duckduckgo_weather.py:48 searx/engines/wttr.py:55
  217. #: searx/searxng.msg searx/templates/simple/answer/weather.html:17
  218. msgid "Temperature"
  219. msgstr ""
  220. #. WEATHER_TERMS['UV INDEX']
  221. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  222. #: searx/searxng.msg
  223. msgid "UV index"
  224. msgstr ""
  225. #. WEATHER_TERMS['VISIBILITY']
  226. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  227. #: searx/searxng.msg
  228. msgid "Visibility"
  229. msgstr ""
  230. #. WEATHER_TERMS['WIND']
  231. #: searx/engines/duckduckgo_weather.py:58 searx/engines/wttr.py:62
  232. #: searx/searxng.msg searx/templates/simple/answer/weather.html:23
  233. msgid "Wind"
  234. msgstr ""
  235. #. WEATHER_CONDITIONS
  236. #: searx/searxng.msg
  237. msgid "Clear sky"
  238. msgstr ""
  239. #. WEATHER_CONDITIONS
  240. #: searx/searxng.msg
  241. msgid "Cloudy"
  242. msgstr ""
  243. #. WEATHER_CONDITIONS
  244. #: searx/searxng.msg
  245. msgid "Fair"
  246. msgstr ""
  247. #. WEATHER_CONDITIONS
  248. #: searx/searxng.msg
  249. msgid "Fog"
  250. msgstr ""
  251. #. WEATHER_CONDITIONS
  252. #: searx/searxng.msg
  253. msgid "Heavy rain and thunder"
  254. msgstr ""
  255. #. WEATHER_CONDITIONS
  256. #: searx/searxng.msg
  257. msgid "Heavy rain showers and thunder"
  258. msgstr ""
  259. #. WEATHER_CONDITIONS
  260. #: searx/searxng.msg
  261. msgid "Heavy rain showers"
  262. msgstr ""
  263. #. WEATHER_CONDITIONS
  264. #: searx/searxng.msg
  265. msgid "Heavy rain"
  266. msgstr ""
  267. #. WEATHER_CONDITIONS
  268. #: searx/searxng.msg
  269. msgid "Heavy sleet and thunder"
  270. msgstr ""
  271. #. WEATHER_CONDITIONS
  272. #: searx/searxng.msg
  273. msgid "Heavy sleet showers and thunder"
  274. msgstr ""
  275. #. WEATHER_CONDITIONS
  276. #: searx/searxng.msg
  277. msgid "Heavy sleet showers"
  278. msgstr ""
  279. #. WEATHER_CONDITIONS
  280. #: searx/searxng.msg
  281. msgid "Heavy sleet"
  282. msgstr ""
  283. #. WEATHER_CONDITIONS
  284. #: searx/searxng.msg
  285. msgid "Heavy snow and thunder"
  286. msgstr ""
  287. #. WEATHER_CONDITIONS
  288. #: searx/searxng.msg
  289. msgid "Heavy snow showers and thunder"
  290. msgstr ""
  291. #. WEATHER_CONDITIONS
  292. #: searx/searxng.msg
  293. msgid "Heavy snow showers"
  294. msgstr ""
  295. #. WEATHER_CONDITIONS
  296. #: searx/searxng.msg
  297. msgid "Heavy snow"
  298. msgstr ""
  299. #. WEATHER_CONDITIONS
  300. #: searx/searxng.msg
  301. msgid "Light rain and thunder"
  302. msgstr ""
  303. #. WEATHER_CONDITIONS
  304. #: searx/searxng.msg
  305. msgid "Light rain showers and thunder"
  306. msgstr ""
  307. #. WEATHER_CONDITIONS
  308. #: searx/searxng.msg
  309. msgid "Light rain showers"
  310. msgstr ""
  311. #. WEATHER_CONDITIONS
  312. #: searx/searxng.msg
  313. msgid "Light rain"
  314. msgstr ""
  315. #. WEATHER_CONDITIONS
  316. #: searx/searxng.msg
  317. msgid "Light sleet and thunder"
  318. msgstr ""
  319. #. WEATHER_CONDITIONS
  320. #: searx/searxng.msg
  321. msgid "Light sleet showers and thunder"
  322. msgstr ""
  323. #. WEATHER_CONDITIONS
  324. #: searx/searxng.msg
  325. msgid "Light sleet showers"
  326. msgstr ""
  327. #. WEATHER_CONDITIONS
  328. #: searx/searxng.msg
  329. msgid "Light sleet"
  330. msgstr ""
  331. #. WEATHER_CONDITIONS
  332. #: searx/searxng.msg
  333. msgid "Light snow and thunder"
  334. msgstr ""
  335. #. WEATHER_CONDITIONS
  336. #: searx/searxng.msg
  337. msgid "Light snow showers and thunder"
  338. msgstr ""
  339. #. WEATHER_CONDITIONS
  340. #: searx/searxng.msg
  341. msgid "Light snow showers"
  342. msgstr ""
  343. #. WEATHER_CONDITIONS
  344. #: searx/searxng.msg
  345. msgid "Light snow"
  346. msgstr ""
  347. #. WEATHER_CONDITIONS
  348. #: searx/searxng.msg
  349. msgid "Partly cloudy"
  350. msgstr ""
  351. #. WEATHER_CONDITIONS
  352. #: searx/searxng.msg
  353. msgid "Rain and thunder"
  354. msgstr ""
  355. #. WEATHER_CONDITIONS
  356. #: searx/searxng.msg
  357. msgid "Rain showers and thunder"
  358. msgstr ""
  359. #. WEATHER_CONDITIONS
  360. #: searx/searxng.msg
  361. msgid "Rain showers"
  362. msgstr ""
  363. #. WEATHER_CONDITIONS
  364. #: searx/searxng.msg
  365. msgid "Rain"
  366. msgstr ""
  367. #. WEATHER_CONDITIONS
  368. #: searx/searxng.msg
  369. msgid "Sleet and thunder"
  370. msgstr ""
  371. #. WEATHER_CONDITIONS
  372. #: searx/searxng.msg
  373. msgid "Sleet showers and thunder"
  374. msgstr ""
  375. #. WEATHER_CONDITIONS
  376. #: searx/searxng.msg
  377. msgid "Sleet showers"
  378. msgstr ""
  379. #. WEATHER_CONDITIONS
  380. #: searx/searxng.msg
  381. msgid "Sleet"
  382. msgstr ""
  383. #. WEATHER_CONDITIONS
  384. #: searx/searxng.msg
  385. msgid "Snow and thunder"
  386. msgstr ""
  387. #. WEATHER_CONDITIONS
  388. #: searx/searxng.msg
  389. msgid "Snow showers and thunder"
  390. msgstr ""
  391. #. WEATHER_CONDITIONS
  392. #: searx/searxng.msg
  393. msgid "Snow showers"
  394. msgstr ""
  395. #. WEATHER_CONDITIONS
  396. #: searx/searxng.msg
  397. msgid "Snow"
  398. msgstr ""
  399. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  400. #: searx/engines/lemmy.py:85 searx/searxng.msg
  401. msgid "subscribers"
  402. msgstr ""
  403. #. SOCIAL_MEDIA_TERMS['POSTS']
  404. #: searx/engines/lemmy.py:86 searx/searxng.msg
  405. msgid "posts"
  406. msgstr ""
  407. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  408. #: searx/engines/lemmy.py:87 searx/searxng.msg
  409. msgid "active users"
  410. msgstr ""
  411. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  412. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  413. #: searx/engines/lemmy.py:130 searx/searxng.msg
  414. msgid "comments"
  415. msgstr ""
  416. #. SOCIAL_MEDIA_TERMS['USER']
  417. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  418. msgid "user"
  419. msgstr ""
  420. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  421. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  422. msgid "community"
  423. msgstr ""
  424. #. SOCIAL_MEDIA_TERMS['POINTS']
  425. #: searx/engines/hackernews.py:82 searx/searxng.msg
  426. msgid "points"
  427. msgstr ""
  428. #. SOCIAL_MEDIA_TERMS['TITLE']
  429. #: searx/searxng.msg
  430. msgid "title"
  431. msgstr ""
  432. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  433. #: searx/engines/hackernews.py:85 searx/searxng.msg
  434. msgid "author"
  435. msgstr ""
  436. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  437. #: searx/engines/discourse.py:149 searx/searxng.msg
  438. msgid "open"
  439. msgstr ""
  440. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  441. #: searx/engines/discourse.py:149 searx/searxng.msg
  442. msgid "closed"
  443. msgstr ""
  444. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  445. #: searx/engines/discourse.py:160 searx/searxng.msg
  446. msgid "answered"
  447. msgstr ""
  448. #: searx/webapp.py:292
  449. msgid "No item found"
  450. msgstr "རྣམ་གྲངས་གང་ཡང་རྙེད་རྒྱུ་མ་བྱུང་།"
  451. #: searx/engines/qwant.py:291
  452. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:294
  453. msgid "Source"
  454. msgstr ""
  455. #: searx/webapp.py:296
  456. msgid "Error loading the next page"
  457. msgstr ""
  458. #: searx/webapp.py:447 searx/webapp.py:845
  459. msgid "Invalid settings, please edit your preferences"
  460. msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།ཁྱེད་ཀྱིས་གདམ་ཀ་ལ་བཅོས་སྒྲིག་གཏོང་རོགས།"
  461. #: searx/webapp.py:463
  462. msgid "Invalid settings"
  463. msgstr "ནུས་མེད་ཀྱི་སྒྲིག་འགོད།"
  464. #: searx/webapp.py:540 searx/webapp.py:630
  465. msgid "search error"
  466. msgstr "འཚོལ་བཤེར་ལ་ནོར་འཁྲུལ་བྱུང་།"
  467. #: searx/webutils.py:35
  468. msgid "timeout"
  469. msgstr ""
  470. #: searx/webutils.py:36
  471. msgid "parsing error"
  472. msgstr ""
  473. #: searx/webutils.py:37
  474. msgid "HTTP protocol error"
  475. msgstr ""
  476. #: searx/webutils.py:38
  477. msgid "network error"
  478. msgstr ""
  479. #: searx/webutils.py:39
  480. msgid "SSL error: certificate validation has failed"
  481. msgstr ""
  482. #: searx/webutils.py:41
  483. msgid "unexpected crash"
  484. msgstr ""
  485. #: searx/webutils.py:48
  486. msgid "HTTP error"
  487. msgstr ""
  488. #: searx/webutils.py:49
  489. msgid "HTTP connection error"
  490. msgstr ""
  491. #: searx/webutils.py:55
  492. msgid "proxy error"
  493. msgstr ""
  494. #: searx/webutils.py:56
  495. msgid "CAPTCHA"
  496. msgstr "CAPTCHA"
  497. #: searx/webutils.py:57
  498. msgid "too many requests"
  499. msgstr ""
  500. #: searx/webutils.py:58
  501. msgid "access denied"
  502. msgstr ""
  503. #: searx/webutils.py:59
  504. msgid "server API error"
  505. msgstr ""
  506. #: searx/webutils.py:78
  507. msgid "Suspended"
  508. msgstr ""
  509. #: searx/webutils.py:313
  510. #, python-brace-format
  511. msgid "{minutes} minute(s) ago"
  512. msgstr "སྐར་མ་ {minutes} སྔོན་ལ།"
  513. #: searx/webutils.py:314
  514. #, python-brace-format
  515. msgid "{hours} hour(s), {minutes} minute(s) ago"
  516. msgstr "ཆུ་ཚོད་ {hours} དང་སྐར་མ {minutes} སྔོན་ལ།"
  517. #: searx/answerers/random.py:69
  518. msgid "Generate different random values"
  519. msgstr "ངེས་མེད་གྲངས་ཀ་ཁ་ཤས་ཐོབ་པར་བྱེད།"
  520. #: searx/answerers/statistics.py:36
  521. #, python-brace-format
  522. msgid "Compute {func} of the arguments"
  523. msgstr ""
  524. #: searx/engines/openstreetmap.py:158
  525. msgid "Show route in map .."
  526. msgstr ""
  527. #: searx/engines/pdbe.py:96
  528. #, python-brace-format
  529. msgid "{title} (OBSOLETE)"
  530. msgstr ""
  531. #: searx/engines/pdbe.py:103
  532. msgid "This entry has been superseded by"
  533. msgstr "འཚོལ་བྱང་འདི་གཞན་གྱིས་ཚབ་བྱེད་འདུག"
  534. #: searx/engines/qwant.py:293
  535. msgid "Channel"
  536. msgstr ""
  537. #: searx/engines/radio_browser.py:153
  538. msgid "bitrate"
  539. msgstr ""
  540. #: searx/engines/radio_browser.py:154
  541. msgid "votes"
  542. msgstr ""
  543. #: searx/engines/radio_browser.py:155
  544. msgid "clicks"
  545. msgstr ""
  546. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  547. #: searx/engines/zlibrary.py:137
  548. msgid "Language"
  549. msgstr ""
  550. #: searx/engines/semantic_scholar.py:101
  551. #, python-brace-format
  552. msgid ""
  553. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  554. "{lastCitationVelocityYear}"
  555. msgstr ""
  556. #: searx/engines/tineye.py:48
  557. msgid ""
  558. "Could not read that image url. This may be due to an unsupported file "
  559. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  560. " WebP."
  561. msgstr ""
  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. #: searx/engines/tineye.py:59
  568. msgid "The image could not be downloaded."
  569. msgstr ""
  570. #: searx/engines/zlibrary.py:138
  571. msgid "Book rating"
  572. msgstr ""
  573. #: searx/engines/zlibrary.py:139
  574. msgid "File quality"
  575. msgstr ""
  576. #: searx/plugins/ahmia_filter.py:32
  577. msgid "Ahmia blacklist"
  578. msgstr ""
  579. #: searx/plugins/ahmia_filter.py:33
  580. msgid "Filter out onion results that appear in Ahmia's blacklist."
  581. msgstr ""
  582. #: searx/plugins/calculator.py:38
  583. msgid "Basic Calculator"
  584. msgstr ""
  585. #: searx/plugins/calculator.py:39
  586. msgid "Calculate mathematical expressions via the search bar"
  587. msgstr ""
  588. #: searx/plugins/hash_plugin.py:34
  589. msgid "Hash plugin"
  590. msgstr ""
  591. #: searx/plugins/hash_plugin.py:36
  592. msgid ""
  593. "Converts strings to different hash digests. Available functions: md5, "
  594. "sha1, sha224, sha256, sha384, sha512."
  595. msgstr ""
  596. #: searx/plugins/hash_plugin.py:64
  597. msgid "hash digest"
  598. msgstr ""
  599. #: searx/plugins/hostnames.py:123
  600. msgid "Hostnames plugin"
  601. msgstr ""
  602. #: searx/plugins/hostnames.py:124
  603. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  604. msgstr ""
  605. #: searx/plugins/oa_doi_rewrite.py:55
  606. msgid "Open Access DOI rewrite"
  607. msgstr ""
  608. #: searx/plugins/oa_doi_rewrite.py:56
  609. msgid ""
  610. "Avoid paywalls by redirecting to open-access versions of publications "
  611. "when available"
  612. msgstr ""
  613. #: searx/plugins/self_info.py:37
  614. msgid "Self Information"
  615. msgstr ""
  616. #: searx/plugins/self_info.py:39
  617. msgid ""
  618. "Displays your IP if the query is \"ip\" and your user agent if the query "
  619. "is \"user-agent\"."
  620. msgstr ""
  621. #: searx/plugins/self_info.py:52
  622. msgid "Your IP is: "
  623. msgstr ""
  624. #: searx/plugins/self_info.py:55
  625. msgid "Your user-agent is: "
  626. msgstr ""
  627. #: searx/plugins/tor_check.py:42
  628. msgid "Tor check plugin"
  629. msgstr ""
  630. #: searx/plugins/tor_check.py:44
  631. msgid ""
  632. "This plugin checks if the address of the request is a Tor exit-node, and "
  633. "informs the user if it is; like check.torproject.org, but from SearXNG."
  634. msgstr ""
  635. #: searx/plugins/tor_check.py:65
  636. msgid "Could not download the list of Tor exit-nodes from"
  637. msgstr ""
  638. #: searx/plugins/tor_check.py:72
  639. msgid "You are using Tor and it looks like you have the external IP address"
  640. msgstr ""
  641. #: searx/plugins/tor_check.py:76
  642. msgid "You are not using Tor and you have the external IP address"
  643. msgstr ""
  644. #: searx/plugins/tracker_url_remover.py:37
  645. msgid "Tracker URL remover"
  646. msgstr "དྲ་གནས་རྗེས་འདེད་སྤོ་འབུད།"
  647. #: searx/plugins/tracker_url_remover.py:38
  648. msgid "Remove trackers arguments from the returned URL"
  649. msgstr ""
  650. #: searx/plugins/unit_converter.py:49
  651. msgid "Unit converter plugin"
  652. msgstr ""
  653. #: searx/plugins/unit_converter.py:50
  654. msgid "Convert between units"
  655. msgstr ""
  656. #: searx/result_types/answer.py:224
  657. #, python-brace-format
  658. msgid "{location}: {temperature}, {condition}"
  659. msgstr ""
  660. #: searx/templates/simple/404.html:4
  661. msgid "Page not found"
  662. msgstr "དྲ་ངོས་རྙེད་རྒྱུ་མ་བྱུང་།"
  663. #: searx/templates/simple/404.html:6
  664. #, python-format
  665. msgid "Go to %(search_page)s."
  666. msgstr "%(search_page)s ལ་བསྐྱོད།"
  667. #: searx/templates/simple/404.html:6
  668. msgid "search page"
  669. msgstr "འཚོལ་བཤེར་དྲ་ངོས།"
  670. #: searx/templates/simple/base.html:53
  671. msgid "Donate"
  672. msgstr ""
  673. #: searx/templates/simple/base.html:57
  674. #: searx/templates/simple/preferences.html:156
  675. msgid "Preferences"
  676. msgstr "སྒྲིག་བཀོད།"
  677. #: searx/templates/simple/base.html:67
  678. msgid "Powered by"
  679. msgstr "བཟོ་སྐུན་པ་ནི"
  680. #: searx/templates/simple/base.html:67
  681. msgid "a privacy-respecting, open metasearch engine"
  682. msgstr ""
  683. #: searx/templates/simple/base.html:68
  684. #: searx/templates/simple/result_templates/packages.html:59
  685. msgid "Source code"
  686. msgstr ""
  687. #: searx/templates/simple/base.html:69
  688. msgid "Issue tracker"
  689. msgstr ""
  690. #: searx/templates/simple/base.html:70 searx/templates/simple/stats.html:18
  691. msgid "Engine stats"
  692. msgstr "སྒུལ་བྱེད་ཀྱི་སྡོམ་རྩིས།"
  693. #: searx/templates/simple/base.html:72
  694. msgid "Public instances"
  695. msgstr ""
  696. #: searx/templates/simple/base.html:75
  697. msgid "Privacy policy"
  698. msgstr ""
  699. #: searx/templates/simple/base.html:78
  700. msgid "Contact instance maintainer"
  701. msgstr ""
  702. #: searx/templates/simple/categories.html:30
  703. msgid "Click on the magnifier to perform search"
  704. msgstr "ས་བོན་སྟེང་གི་སྦྲེལ་ཐག་ལ་རྡེབ་ནས་འཚོལ་བཤེར་གཏོང་།"
  705. #: searx/templates/simple/macros.html:40
  706. msgid "Length"
  707. msgstr ""
  708. #: searx/templates/simple/macros.html:41
  709. msgid "Views"
  710. msgstr ""
  711. #: searx/templates/simple/macros.html:42
  712. #: searx/templates/simple/result_templates/files.html:34
  713. #: searx/templates/simple/result_templates/images.html:19
  714. #: searx/templates/simple/result_templates/paper.html:6
  715. msgid "Author"
  716. msgstr ""
  717. #: searx/templates/simple/macros.html:50
  718. msgid "cached"
  719. msgstr "འདྲ་བཤུས་རྒྱབ་ཚར།"
  720. #: searx/templates/simple/new_issue.html:64
  721. msgid "Start submitting a new issue on GitHub"
  722. msgstr ""
  723. #: searx/templates/simple/new_issue.html:66
  724. msgid "Please check for existing bugs about this engine on GitHub"
  725. msgstr ""
  726. #: searx/templates/simple/new_issue.html:69
  727. msgid "I confirm there is no existing bug about the issue I encounter"
  728. msgstr ""
  729. #: searx/templates/simple/new_issue.html:71
  730. msgid "If this is a public instance, please specify the URL in the bug report"
  731. msgstr ""
  732. #: searx/templates/simple/new_issue.html:72
  733. msgid "Submit a new issue on Github including the above information"
  734. msgstr ""
  735. #: searx/templates/simple/preferences.html:65
  736. msgid "No HTTPS"
  737. msgstr ""
  738. #: searx/templates/simple/elements/engines_msg.html:14
  739. #: searx/templates/simple/preferences.html:69
  740. #: searx/templates/simple/preferences.html:70
  741. msgid "View error logs and submit a bug report"
  742. msgstr ""
  743. #: searx/templates/simple/preferences.html:74
  744. msgid "!bang for this engine"
  745. msgstr ""
  746. #: searx/templates/simple/preferences.html:80
  747. msgid "!bang for its categories"
  748. msgstr ""
  749. #: searx/templates/simple/preferences.html:102
  750. #: searx/templates/simple/stats.html:64
  751. msgid "Median"
  752. msgstr ""
  753. #: searx/templates/simple/preferences.html:103
  754. #: searx/templates/simple/stats.html:70
  755. msgid "P80"
  756. msgstr "P80"
  757. #: searx/templates/simple/preferences.html:104
  758. #: searx/templates/simple/stats.html:76
  759. msgid "P95"
  760. msgstr "P95"
  761. #: searx/templates/simple/preferences.html:136
  762. msgid "Failed checker test(s): "
  763. msgstr ""
  764. #: searx/templates/simple/preferences.html:138
  765. msgid "Errors:"
  766. msgstr ""
  767. #: searx/templates/simple/preferences.html:163
  768. msgid "General"
  769. msgstr "སྤྱི་བཏང་།"
  770. #: searx/templates/simple/preferences.html:166
  771. msgid "Default categories"
  772. msgstr "གཞི་བཞག་གི་རིགས།"
  773. #: searx/templates/simple/preferences.html:194
  774. msgid "User interface"
  775. msgstr "མདུན་ངོས།"
  776. #: searx/templates/simple/preferences.html:217
  777. msgid "Privacy"
  778. msgstr "མི་སྒེར་གསང་དོན།"
  779. #: searx/templates/simple/preferences.html:232
  780. msgid "Engines"
  781. msgstr "སྒུལ་བྱེད།"
  782. #: searx/templates/simple/preferences.html:234
  783. msgid "Currently used search engines"
  784. msgstr "ཉེ་ལམ་སྤྱད་ཟིན་པའི་འཚོལ་བྱེད་སྒུལ་བྱེད།"
  785. #: searx/templates/simple/preferences.html:243
  786. msgid "Special Queries"
  787. msgstr ""
  788. #: searx/templates/simple/preferences.html:251
  789. msgid "Cookies"
  790. msgstr "རྐང་རྗེས།"
  791. #: searx/templates/simple/results.html:30
  792. msgid "Number of results"
  793. msgstr "འཚོལ་འབྲས་ཀྱི་ཁ་གྲངས།"
  794. #: searx/templates/simple/results.html:36
  795. msgid "Info"
  796. msgstr ""
  797. #: searx/templates/simple/results.html:77
  798. msgid "Back to top"
  799. msgstr ""
  800. #: searx/templates/simple/results.html:95
  801. msgid "Previous page"
  802. msgstr ""
  803. #: searx/templates/simple/results.html:113
  804. msgid "Next page"
  805. msgstr ""
  806. #: searx/templates/simple/search.html:3
  807. msgid "Display the front page"
  808. msgstr ""
  809. #: searx/templates/simple/search.html:9
  810. #: searx/templates/simple/simple_search.html:5
  811. msgid "Search for..."
  812. msgstr "འཚོལ་བཤེར་ནང་དོན།"
  813. #: searx/templates/simple/search.html:10
  814. #: searx/templates/simple/simple_search.html:6
  815. msgid "clear"
  816. msgstr ""
  817. #: searx/templates/simple/search.html:11
  818. #: searx/templates/simple/simple_search.html:7
  819. msgid "search"
  820. msgstr ""
  821. #: searx/templates/simple/stats.html:21
  822. msgid "There is currently no data available. "
  823. msgstr "ཉེ་བར་ཐོབ་རུང་བའི་ཡིག་ཆ་གང་ཡང་མེད།"
  824. #: searx/templates/simple/preferences/engines.html:24
  825. #: searx/templates/simple/stats.html:25
  826. msgid "Engine name"
  827. msgstr "སྒུལ་བྱེད་ཀྱི་མིང་།"
  828. #: searx/templates/simple/stats.html:26
  829. msgid "Scores"
  830. msgstr "ཐོབ་སྐར།"
  831. #: searx/templates/simple/stats.html:27
  832. msgid "Result count"
  833. msgstr ""
  834. #: searx/templates/simple/elements/engines_msg.html:7
  835. #: searx/templates/simple/preferences/engines.html:31
  836. #: searx/templates/simple/stats.html:28
  837. msgid "Response time"
  838. msgstr ""
  839. #: searx/templates/simple/preferences/engines.html:35
  840. #: searx/templates/simple/stats.html:29
  841. msgid "Reliability"
  842. msgstr ""
  843. #: searx/templates/simple/stats.html:59
  844. msgid "Total"
  845. msgstr ""
  846. #: searx/templates/simple/stats.html:60
  847. msgid "HTTP"
  848. msgstr "HTTP"
  849. #: searx/templates/simple/stats.html:61
  850. msgid "Processing"
  851. msgstr ""
  852. #: searx/templates/simple/stats.html:99
  853. msgid "Warnings"
  854. msgstr ""
  855. #: searx/templates/simple/stats.html:99
  856. msgid "Errors and exceptions"
  857. msgstr ""
  858. #: searx/templates/simple/stats.html:105
  859. msgid "Exception"
  860. msgstr ""
  861. #: searx/templates/simple/stats.html:107
  862. msgid "Message"
  863. msgstr ""
  864. #: searx/templates/simple/stats.html:109
  865. msgid "Percentage"
  866. msgstr ""
  867. #: searx/templates/simple/stats.html:111
  868. msgid "Parameter"
  869. msgstr ""
  870. #: searx/templates/simple/result_templates/files.html:36
  871. #: searx/templates/simple/stats.html:119
  872. msgid "Filename"
  873. msgstr ""
  874. #: searx/templates/simple/stats.html:120
  875. msgid "Function"
  876. msgstr ""
  877. #: searx/templates/simple/stats.html:121
  878. msgid "Code"
  879. msgstr ""
  880. #: searx/templates/simple/stats.html:128
  881. msgid "Checker"
  882. msgstr ""
  883. #: searx/templates/simple/stats.html:131
  884. msgid "Failed test"
  885. msgstr ""
  886. #: searx/templates/simple/stats.html:132
  887. msgid "Comment(s)"
  888. msgstr ""
  889. #: searx/templates/simple/answer/translations.html:12
  890. #: searx/templates/simple/preferences/answerers.html:8
  891. msgid "Examples"
  892. msgstr "དཔེ་བརྗོད།"
  893. #: searx/templates/simple/answer/translations.html:21
  894. msgid "Definitions"
  895. msgstr ""
  896. #: searx/templates/simple/answer/translations.html:30
  897. msgid "Synonyms"
  898. msgstr ""
  899. #: searx/templates/simple/answer/weather.html:19
  900. msgid "Feels Like"
  901. msgstr ""
  902. #: searx/templates/simple/elements/answers.html:2
  903. msgid "Answers"
  904. msgstr "ལན།"
  905. #: searx/templates/simple/elements/apis.html:3
  906. msgid "Download results"
  907. msgstr "འཚོལ་འབྲས་ཕབ་ལེན།"
  908. #: searx/templates/simple/elements/corrections.html:2
  909. msgid "Try searching for:"
  910. msgstr "འཚོལ་བཤེར་ནང་དོན་ནི།"
  911. #: searx/templates/simple/elements/engines_msg.html:4
  912. msgid "Messages from the search engines"
  913. msgstr ""
  914. #: searx/templates/simple/elements/engines_msg.html:7
  915. msgid "seconds"
  916. msgstr ""
  917. #: searx/templates/simple/elements/search_url.html:3
  918. msgid "Search URL"
  919. msgstr "འཚོལ་བཤེར་དྲ་གནས།"
  920. #: searx/templates/simple/elements/search_url.html:4
  921. #: searx/templates/simple/preferences/cookies.html:54
  922. msgid "Copied"
  923. msgstr ""
  924. #: searx/templates/simple/elements/search_url.html:4
  925. #: searx/templates/simple/preferences/cookies.html:54
  926. msgid "Copy"
  927. msgstr ""
  928. #: searx/templates/simple/elements/suggestions.html:3
  929. msgid "Suggestions"
  930. msgstr "འོས་སྦྱོས།"
  931. #: searx/templates/simple/filters/languages.html:1
  932. #: searx/templates/simple/preferences/language.html:2
  933. msgid "Search language"
  934. msgstr "འཚོལ་བཤེར་ནང་དོན་མཚོན་བྱེད་ཀྱི་སྐད་རིགས།"
  935. #: searx/templates/simple/filters/languages.html:4
  936. #: searx/templates/simple/preferences/language.html:7
  937. msgid "Default language"
  938. msgstr "གཞི་བཞག་སྐད་རིགས།"
  939. #: searx/templates/simple/filters/languages.html:8
  940. #: searx/templates/simple/preferences/language.html:11
  941. msgid "Auto-detect"
  942. msgstr ""
  943. #: searx/templates/simple/filters/safesearch.html:1
  944. #: searx/templates/simple/filters/safesearch.html:2
  945. #: searx/templates/simple/filters/safesearch.html:3
  946. #: searx/templates/simple/filters/safesearch.html:4
  947. #: searx/templates/simple/preferences/engines.html:27
  948. #: searx/templates/simple/preferences/safesearch.html:2
  949. msgid "SafeSearch"
  950. msgstr "བདེ་འཇགས་འཚོལ་བཤེར།"
  951. #: searx/templates/simple/filters/safesearch.html:2
  952. #: searx/templates/simple/preferences/safesearch.html:7
  953. msgid "Strict"
  954. msgstr "ནན་ཏན།"
  955. #: searx/templates/simple/filters/safesearch.html:3
  956. #: searx/templates/simple/preferences/safesearch.html:11
  957. msgid "Moderate"
  958. msgstr "འབྲིང་ཙམ།"
  959. #: searx/templates/simple/filters/safesearch.html:4
  960. #: searx/templates/simple/preferences/safesearch.html:15
  961. msgid "None"
  962. msgstr "གང་ཡང་མེད།"
  963. #: searx/templates/simple/filters/time_range.html:1
  964. #: searx/templates/simple/preferences/engines.html:28
  965. msgid "Time range"
  966. msgstr "དུས་ཀྱི་ཁྱབ་ཁོངས།"
  967. #: searx/templates/simple/filters/time_range.html:3
  968. msgid "Anytime"
  969. msgstr "དུས་ངེས་མེད།"
  970. #: searx/templates/simple/filters/time_range.html:6
  971. msgid "Last day"
  972. msgstr "ཉིན་སྔོན་མ།"
  973. #: searx/templates/simple/filters/time_range.html:9
  974. msgid "Last week"
  975. msgstr "གཟའ་སྔོན་མ།"
  976. #: searx/templates/simple/filters/time_range.html:12
  977. msgid "Last month"
  978. msgstr "ཟླ་བ་སྔོན་མ།"
  979. #: searx/templates/simple/filters/time_range.html:15
  980. msgid "Last year"
  981. msgstr "ལོ་སྔོན་མ།"
  982. #: searx/templates/simple/messages/no_cookies.html:3
  983. msgid "Information!"
  984. msgstr "ཆ་འཕྲིན།"
  985. #: searx/templates/simple/messages/no_cookies.html:4
  986. msgid "currently, there are no cookies defined."
  987. msgstr "ཉེ་བར་དྲ་ངོས་རྗེས་འདེད་གང་ཡང་མེད།"
  988. #: searx/templates/simple/messages/no_results.html:6
  989. msgid "Sorry!"
  990. msgstr "དགོངས་དག"
  991. #: searx/templates/simple/messages/no_results.html:12
  992. msgid "No results were found. You can try to:"
  993. msgstr ""
  994. #: searx/templates/simple/messages/no_results.html:14
  995. msgid "There are no more results. You can try to:"
  996. msgstr ""
  997. #: searx/templates/simple/messages/no_results.html:19
  998. msgid "Refresh the page."
  999. msgstr ""
  1000. #: searx/templates/simple/messages/no_results.html:20
  1001. msgid "Search for another query or select another category (above)."
  1002. msgstr ""
  1003. #: searx/templates/simple/messages/no_results.html:21
  1004. msgid "Change the search engine used in the preferences:"
  1005. msgstr ""
  1006. #: searx/templates/simple/messages/no_results.html:22
  1007. msgid "Switch to another instance:"
  1008. msgstr ""
  1009. #: searx/templates/simple/messages/no_results.html:24
  1010. msgid "Search for another query or select another category."
  1011. msgstr ""
  1012. #: searx/templates/simple/messages/no_results.html:25
  1013. msgid "Go back to the previous page using the previous page button."
  1014. msgstr ""
  1015. #: searx/templates/simple/preferences/answerers.html:4
  1016. #: searx/templates/simple/preferences/engines.html:23
  1017. msgid "Allow"
  1018. msgstr "ཆོག་མཆན།"
  1019. #: searx/templates/simple/preferences/answerers.html:5
  1020. msgid "Keywords (first word in query)"
  1021. msgstr ""
  1022. #: searx/templates/simple/preferences/answerers.html:6
  1023. #: searx/templates/simple/result_templates/packages.html:7
  1024. msgid "Name"
  1025. msgstr "མིང་།"
  1026. #: searx/templates/simple/preferences/answerers.html:7
  1027. msgid "Description"
  1028. msgstr "འབྲེལ་ཡོད་ངོ་སྤྲོད།"
  1029. #: searx/templates/simple/preferences/answerers.html:13
  1030. msgid "This is the list of SearXNG's instant answering modules."
  1031. msgstr ""
  1032. #: searx/templates/simple/preferences/answerers.html:29
  1033. msgid "This is the list of plugins."
  1034. msgstr ""
  1035. #: searx/templates/simple/preferences/autocomplete.html:2
  1036. msgid "Autocomplete"
  1037. msgstr "རང་ཤུགས་ཀྱིས་སྒྲུབ།"
  1038. #: searx/templates/simple/preferences/autocomplete.html:15
  1039. msgid "Show possible queries as you type"
  1040. msgstr ""
  1041. #: searx/templates/simple/preferences/center_alignment.html:2
  1042. msgid "Center Alignment"
  1043. msgstr ""
  1044. #: searx/templates/simple/preferences/center_alignment.html:14
  1045. msgid "Displays results in the center of the page (Oscar layout)."
  1046. msgstr ""
  1047. #: searx/templates/simple/preferences/cookies.html:2
  1048. msgid ""
  1049. "This is the list of cookies and their values SearXNG is storing on your "
  1050. "computer."
  1051. msgstr ""
  1052. #: searx/templates/simple/preferences/cookies.html:3
  1053. msgid "With that list, you can assess SearXNG transparency."
  1054. msgstr ""
  1055. #: searx/templates/simple/preferences/cookies.html:9
  1056. msgid "Cookie name"
  1057. msgstr "རྗེས་འདེད་ཀྱི་ཡིག་ཆའི་མིང་།"
  1058. #: searx/templates/simple/preferences/cookies.html:10
  1059. msgid "Value"
  1060. msgstr "ཚད་གཞི།"
  1061. #: searx/templates/simple/preferences/cookies.html:23
  1062. msgid "Search URL of the currently saved preferences"
  1063. msgstr "ཉེ་ལམ་རང་མོས་སྒྲིག་འགོད་ཁྲོད་དུ་གསོག་འཇོག་བྱས་ཟིན་པའི་དྲ་གནས་འཚོལ་བཤེར།"
  1064. #: searx/templates/simple/preferences/cookies.html:32
  1065. msgid ""
  1066. "Note: specifying custom settings in the search URL can reduce privacy by "
  1067. "leaking data to the clicked result sites."
  1068. msgstr ""
  1069. #: searx/templates/simple/preferences/cookies.html:35
  1070. msgid "URL to restore your preferences in another browser"
  1071. msgstr ""
  1072. #: searx/templates/simple/preferences/cookies.html:43
  1073. msgid ""
  1074. "A URL containing your preferences. This URL can be used to restore your "
  1075. "settings on a different device."
  1076. msgstr ""
  1077. #: searx/templates/simple/preferences/cookies.html:46
  1078. msgid "Copy preferences hash"
  1079. msgstr ""
  1080. #: searx/templates/simple/preferences/cookies.html:57
  1081. msgid "Insert copied preferences hash (without URL) to restore"
  1082. msgstr ""
  1083. #: searx/templates/simple/preferences/cookies.html:59
  1084. msgid "Preferences hash"
  1085. msgstr ""
  1086. #: searx/templates/simple/preferences/doi_resolver.html:1
  1087. msgid "Digital Object Identifier (DOI)"
  1088. msgstr ""
  1089. #: searx/templates/simple/preferences/doi_resolver.html:6
  1090. msgid "Open Access DOI resolver"
  1091. msgstr ""
  1092. #: searx/templates/simple/preferences/doi_resolver.html:18
  1093. msgid "Select service used by DOI rewrite"
  1094. msgstr ""
  1095. #: searx/templates/simple/preferences/engines.html:9
  1096. msgid ""
  1097. "This tab does not exist in the user interface, but you can search with "
  1098. "these engines via !bangs."
  1099. msgstr ""
  1100. #: searx/templates/simple/preferences/engines.html:15
  1101. msgid "Enable all"
  1102. msgstr ""
  1103. #: searx/templates/simple/preferences/engines.html:16
  1104. msgid "Disable all"
  1105. msgstr ""
  1106. #: searx/templates/simple/preferences/engines.html:25
  1107. msgid "!bang"
  1108. msgstr ""
  1109. #: searx/templates/simple/preferences/engines.html:26
  1110. msgid "Supports selected language"
  1111. msgstr "རྒྱབ་སྐྱོར་ཐོབ་པའི་སྐད་རིགས་གདམ་གསེས།"
  1112. #: searx/templates/simple/preferences/engines.html:29
  1113. msgid "Weight"
  1114. msgstr ""
  1115. #: searx/templates/simple/preferences/engines.html:33
  1116. msgid "Max time"
  1117. msgstr "མང་མཐའི་དུས་ཚོད།"
  1118. #: searx/templates/simple/preferences/favicon.html:2
  1119. msgid "Favicon Resolver"
  1120. msgstr ""
  1121. #: searx/templates/simple/preferences/favicon.html:15
  1122. msgid "Display favicons near search results"
  1123. msgstr ""
  1124. #: searx/templates/simple/preferences/footer.html:2
  1125. msgid ""
  1126. "These settings are stored in your cookies, this allows us not to store "
  1127. "this data about you."
  1128. msgstr ""
  1129. #: searx/templates/simple/preferences/footer.html:3
  1130. msgid ""
  1131. "These cookies serve your sole convenience, we don't use these cookies to "
  1132. "track you."
  1133. msgstr ""
  1134. #: searx/templates/simple/preferences/footer.html:6
  1135. msgid "Save"
  1136. msgstr ""
  1137. #: searx/templates/simple/preferences/footer.html:9
  1138. msgid "Reset defaults"
  1139. msgstr "གཞི་བཞག་གི་རྣམ་པར་སྒྲིག་བཀོད་བྱེད།"
  1140. #: searx/templates/simple/preferences/footer.html:13
  1141. msgid "Back"
  1142. msgstr ""
  1143. #: searx/templates/simple/preferences/hotkeys.html:2
  1144. msgid "Hotkeys"
  1145. msgstr ""
  1146. #: searx/templates/simple/preferences/hotkeys.html:13
  1147. msgid "Vim-like"
  1148. msgstr ""
  1149. #: searx/templates/simple/preferences/hotkeys.html:18
  1150. msgid ""
  1151. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1152. "key on main or result page to get help."
  1153. msgstr ""
  1154. #: searx/templates/simple/preferences/image_proxy.html:2
  1155. msgid "Image proxy"
  1156. msgstr "རི་མོ་མངག་བཅོལ་གྱི་ཞབས་ཞུ་སྒྲིག་ཆས།"
  1157. #: searx/templates/simple/preferences/image_proxy.html:14
  1158. msgid "Proxying image results through SearXNG"
  1159. msgstr ""
  1160. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1161. msgid "Infinite scroll"
  1162. msgstr "མཐའ་མེད་པའི་འཆར་ངོས།"
  1163. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1164. msgid "Automatically load next page when scrolling to bottom of current page"
  1165. msgstr "དྲ་ངོས་མར་འདྲུད་ནས་ཞབས་ལ་སླེབས་དུས་རང་འགུལ་སྒོས་འཕྲོ་མའི་ནང་དོན་འཆར་པར་བྱེད།"
  1166. #: searx/templates/simple/preferences/language.html:24
  1167. msgid "What language do you prefer for search?"
  1168. msgstr "ཁྱེད་ཀྱིས་ཆེས་སྤྱོད་བདེ་པའི་འཚོལ་བཤེར་སྐད་རིགས་གང་ཡིན་ནམ།"
  1169. #: searx/templates/simple/preferences/language.html:25
  1170. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1171. msgstr ""
  1172. #: searx/templates/simple/preferences/method.html:2
  1173. msgid "HTTP Method"
  1174. msgstr ""
  1175. #: searx/templates/simple/preferences/method.html:14
  1176. msgid "Change how forms are submitted"
  1177. msgstr ""
  1178. #: searx/templates/simple/preferences/query_in_title.html:2
  1179. msgid "Query in the page's title"
  1180. msgstr ""
  1181. #: searx/templates/simple/preferences/query_in_title.html:14
  1182. msgid ""
  1183. "When enabled, the result page's title contains your query. Your browser "
  1184. "can record this title"
  1185. msgstr ""
  1186. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1187. msgid "Results in new tabs"
  1188. msgstr ""
  1189. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1190. msgid "Open result links in new browser tabs"
  1191. msgstr ""
  1192. #: searx/templates/simple/preferences/safesearch.html:20
  1193. msgid "Filter content"
  1194. msgstr "ནང་དོན་བཙག་བྱེད།"
  1195. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1196. msgid "Search on category select"
  1197. msgstr "རིགས་གདམ་གསེས་བཏང་ནས་འཚོལ་བཤེར་གཏོང་།"
  1198. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1199. msgid ""
  1200. "Perform search immediately if a category selected. Disable to select "
  1201. "multiple categories"
  1202. msgstr ""
  1203. #: searx/templates/simple/preferences/theme.html:2
  1204. msgid "Theme"
  1205. msgstr ""
  1206. #: searx/templates/simple/preferences/theme.html:14
  1207. msgid "Change SearXNG layout"
  1208. msgstr ""
  1209. #: searx/templates/simple/preferences/theme.html:19
  1210. msgid "Theme style"
  1211. msgstr ""
  1212. #: searx/templates/simple/preferences/theme.html:31
  1213. msgid "Choose auto to follow your browser settings"
  1214. msgstr ""
  1215. #: searx/templates/simple/preferences/tokens.html:2
  1216. msgid "Engine tokens"
  1217. msgstr ""
  1218. #: searx/templates/simple/preferences/tokens.html:9
  1219. msgid "Access tokens for private engines"
  1220. msgstr ""
  1221. #: searx/templates/simple/preferences/ui_locale.html:2
  1222. msgid "Interface language"
  1223. msgstr "དྲ་ངོས་སྐད་རིགས།"
  1224. #: searx/templates/simple/preferences/ui_locale.html:14
  1225. msgid "Change the language of the layout"
  1226. msgstr "སྐད་རིགས་གདམ་གསེས་ཀྱི་དྲ་ངོས་བརྗེ་བསྒྱུར།"
  1227. #: searx/templates/simple/preferences/urlformatting.html:2
  1228. msgid "URL formatting"
  1229. msgstr ""
  1230. #: searx/templates/simple/preferences/urlformatting.html:8
  1231. msgid "Pretty"
  1232. msgstr ""
  1233. #: searx/templates/simple/preferences/urlformatting.html:13
  1234. msgid "Full"
  1235. msgstr ""
  1236. #: searx/templates/simple/preferences/urlformatting.html:18
  1237. msgid "Host"
  1238. msgstr ""
  1239. #: searx/templates/simple/preferences/urlformatting.html:23
  1240. msgid "Change result URL formatting"
  1241. msgstr ""
  1242. #: searx/templates/simple/result_templates/code.html:13
  1243. msgid "repo"
  1244. msgstr ""
  1245. #: searx/templates/simple/result_templates/default.html:6
  1246. #: searx/templates/simple/result_templates/files.html:8
  1247. #: searx/templates/simple/result_templates/files.html:11
  1248. msgid "show media"
  1249. msgstr "སྨྱན་གཟུགས་འཆར་པར་བྱེད།"
  1250. #: searx/templates/simple/result_templates/default.html:6
  1251. #: searx/templates/simple/result_templates/files.html:8
  1252. msgid "hide media"
  1253. msgstr "སྨྱན་གཟུགས་སྦས་པར་བྱེད།"
  1254. #: searx/templates/simple/result_templates/default.html:14
  1255. #: searx/templates/simple/result_templates/videos.html:14
  1256. msgid "This site did not provide any description."
  1257. msgstr ""
  1258. #: searx/templates/simple/result_templates/files.html:38
  1259. #: searx/templates/simple/result_templates/images.html:22
  1260. #: searx/templates/simple/result_templates/torrent.html:18
  1261. msgid "Filesize"
  1262. msgstr "ཡིག་ཆའི་ཆེ་ཆུང་།"
  1263. #: searx/templates/simple/result_templates/files.html:40
  1264. msgid "Date"
  1265. msgstr ""
  1266. #: searx/templates/simple/result_templates/files.html:42
  1267. #: searx/templates/simple/result_templates/paper.html:24
  1268. msgid "Type"
  1269. msgstr ""
  1270. #: searx/templates/simple/result_templates/images.html:20
  1271. msgid "Resolution"
  1272. msgstr ""
  1273. #: searx/templates/simple/result_templates/images.html:21
  1274. msgid "Format"
  1275. msgstr ""
  1276. #: searx/templates/simple/result_templates/images.html:24
  1277. msgid "Engine"
  1278. msgstr ""
  1279. #: searx/templates/simple/result_templates/images.html:25
  1280. msgid "View source"
  1281. msgstr "ཡོངས་ཁུངས་ལ་ལྟ།"
  1282. #: searx/templates/simple/result_templates/map.html:12
  1283. msgid "address"
  1284. msgstr ""
  1285. #: searx/templates/simple/result_templates/map.html:43
  1286. msgid "show map"
  1287. msgstr "ས་བཀྲ་འཆར།"
  1288. #: searx/templates/simple/result_templates/map.html:43
  1289. msgid "hide map"
  1290. msgstr "ས་བཀྲ་སྦས།"
  1291. #: searx/templates/simple/result_templates/packages.html:12
  1292. msgid "Version"
  1293. msgstr ""
  1294. #: searx/templates/simple/result_templates/packages.html:18
  1295. msgid "Maintainer"
  1296. msgstr ""
  1297. #: searx/templates/simple/result_templates/packages.html:24
  1298. msgid "Updated at"
  1299. msgstr ""
  1300. #: searx/templates/simple/result_templates/packages.html:30
  1301. #: searx/templates/simple/result_templates/paper.html:25
  1302. msgid "Tags"
  1303. msgstr ""
  1304. #: searx/templates/simple/result_templates/packages.html:36
  1305. msgid "Popularity"
  1306. msgstr ""
  1307. #: searx/templates/simple/result_templates/packages.html:42
  1308. msgid "License"
  1309. msgstr ""
  1310. #: searx/templates/simple/result_templates/packages.html:52
  1311. msgid "Project"
  1312. msgstr ""
  1313. #: searx/templates/simple/result_templates/packages.html:55
  1314. msgid "Project homepage"
  1315. msgstr ""
  1316. #: searx/templates/simple/result_templates/paper.html:5
  1317. msgid "Published date"
  1318. msgstr ""
  1319. #: searx/templates/simple/result_templates/paper.html:9
  1320. msgid "Journal"
  1321. msgstr ""
  1322. #: searx/templates/simple/result_templates/paper.html:22
  1323. msgid "Editor"
  1324. msgstr ""
  1325. #: searx/templates/simple/result_templates/paper.html:23
  1326. msgid "Publisher"
  1327. msgstr ""
  1328. #: searx/templates/simple/result_templates/paper.html:26
  1329. msgid "DOI"
  1330. msgstr "DOI"
  1331. #: searx/templates/simple/result_templates/paper.html:27
  1332. msgid "ISSN"
  1333. msgstr "ISSN"
  1334. #: searx/templates/simple/result_templates/paper.html:28
  1335. msgid "ISBN"
  1336. msgstr "ISBN"
  1337. #: searx/templates/simple/result_templates/paper.html:33
  1338. msgid "PDF"
  1339. msgstr "PDF"
  1340. #: searx/templates/simple/result_templates/paper.html:34
  1341. msgid "HTML"
  1342. msgstr "HTML"
  1343. #: searx/templates/simple/result_templates/torrent.html:7
  1344. msgid "magnet link"
  1345. msgstr "ཐོན་ཁུངས་ཀྱི་དྲ་གནས།"
  1346. #: searx/templates/simple/result_templates/torrent.html:8
  1347. msgid "torrent file"
  1348. msgstr "ས་བོན་ཡིག་ཆ།"
  1349. #: searx/templates/simple/result_templates/torrent.html:13
  1350. msgid "Seeder"
  1351. msgstr "མཁོ་སྤྲོད་གཏོང་མཁན།"
  1352. #: searx/templates/simple/result_templates/torrent.html:14
  1353. msgid "Leecher"
  1354. msgstr "དང་ལེན་བྱེད་མཁན།"
  1355. #: searx/templates/simple/result_templates/torrent.html:19
  1356. msgid "Number of Files"
  1357. msgstr "ཡིག་ཆའི་ཁ་གྲངས།"
  1358. #: searx/templates/simple/result_templates/videos.html:6
  1359. msgid "show video"
  1360. msgstr "བརྙན་ཟློས་འཆར།"
  1361. #: searx/templates/simple/result_templates/videos.html:6
  1362. msgid "hide video"
  1363. msgstr "རྙན་ཟློས་སྦས།"
  1364. #~ msgid "Engine time (sec)"
  1365. #~ msgstr "འཚོལ་བཤེར་དུས་ཡུན། (སྐར་ཆ།)"
  1366. #~ msgid "Page loads (sec)"
  1367. #~ msgstr "འདྲེན་འཇུག་དུས་ཡུན། (སྐར་ཆ།)"
  1368. #~ msgid "Errors"
  1369. #~ msgstr "ནོར་འཁྲུལ།"
  1370. #~ msgid "CAPTCHA required"
  1371. #~ msgstr ""
  1372. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1373. #~ msgstr "HTTP དྲ་ངོས་སྦྲེལ་ཐག་རྣམས HTTPS ལ་བསྒྱུར།"
  1374. #~ msgid ""
  1375. #~ "Results are opened in the same "
  1376. #~ "window by default. This plugin "
  1377. #~ "overwrites the default behaviour to open"
  1378. #~ " links on new tabs/windows. (JavaScript "
  1379. #~ "required)"
  1380. #~ msgstr ""
  1381. #~ "Results are opened in the same "
  1382. #~ "window by default. This plugin "
  1383. #~ "overwrites the default behaviour to open"
  1384. #~ " links on new tabs/windows. (JavaScript "
  1385. #~ "required)"
  1386. #~ msgid "Color"
  1387. #~ msgstr "ཁ་དོག"
  1388. #~ msgid "Blue (default)"
  1389. #~ msgstr "སྔོན་པོ། (གཞི་བཞག)"
  1390. #~ msgid "Violet"
  1391. #~ msgstr "དམར་སྨུག"
  1392. #~ msgid "Green"
  1393. #~ msgstr "ལྗང་ཁུ།"
  1394. #~ msgid "Cyan"
  1395. #~ msgstr "སྔོ་སྐྱ།"
  1396. #~ msgid "Orange"
  1397. #~ msgstr "ལི་ཁྲི།"
  1398. #~ msgid "Red"
  1399. #~ msgstr "དམར་པོ།"
  1400. #~ msgid "Category"
  1401. #~ msgstr "རིགས།"
  1402. #~ msgid "Block"
  1403. #~ msgstr "བཀག་སྡོམ།"
  1404. #~ msgid "original context"
  1405. #~ msgstr "གདོད་མའི་ནང་དོན།"
  1406. #~ msgid "Plugins"
  1407. #~ msgstr "ལྷུ་ལག"
  1408. #~ msgid "Answerers"
  1409. #~ msgstr "ལན།"
  1410. #~ msgid "Avg. time"
  1411. #~ msgstr "ས་སྙོམས་དུས་ཚོད།"
  1412. #~ msgid "show details"
  1413. #~ msgstr "ངོ་སྤྲོད་འཆར།"
  1414. #~ msgid "hide details"
  1415. #~ msgstr "ངོ་སྤྲོད་སྦས།"
  1416. #~ msgid "Load more..."
  1417. #~ msgstr "གང་བྱུང་དྲ་ཚིགས་འཆར་པར་བྱེད།"
  1418. #~ msgid "Loading..."
  1419. #~ msgstr ""
  1420. #~ msgid "Change searx layout"
  1421. #~ msgstr "དྲ་ངོས་ཀྱི་རྣམ་པ་བརྗེ་བསྒྱུར།"
  1422. #~ msgid "Proxying image results through searx"
  1423. #~ msgstr "རི་མོ་མ་ལག་བརྒྱུད་ནས་མངག་བཅོལ་བྱས་ཟིན།"
  1424. #~ msgid "This is the list of searx's instant answering modules."
  1425. #~ msgstr "འདི་ནི་མ་ལག་ནས་ཐོན་པའི་བྲིས་ལན་བསྟར་ཕྲེང་ཡིན།"
  1426. #~ msgid ""
  1427. #~ "This is the list of cookies and"
  1428. #~ " their values searx is storing on "
  1429. #~ "your computer."
  1430. #~ msgstr "འདི་ནི མ་ལག་གི་བརྡ་སྤྲོད་ལན་སློག་གི་གསལ་ཐོ་ཞིག་ཡིན།"
  1431. #~ msgid "With that list, you can assess searx transparency."
  1432. #~ msgstr ""
  1433. #~ "གསལ་ཐོ་འདི་བརྒྱུད་ནས། ཁྱེད་ཀྱིས searx "
  1434. #~ "དྲ་ཚིགས་ཀྱི་བདེན་པ་རང་བཞིན་ལ་མཉམ་ཚོར་ལེན་ཐུབ།"
  1435. #~ msgid "It look like you are using searx first time."
  1436. #~ msgstr "བལྟས་སོང་ན་ཁྱེད་ཀྱིས་ཐེངས་དང་པོ་ངེད་དྲ་བ་སྤྱོད་བཞིན་པ་རེད།"
  1437. #~ msgid "Please, try again later or find another searx instance."
  1438. #~ msgstr "ཏོག་ཙམ་འགོར་རྗེས་ཡང་བསྐྱར་ཚར་ལྟ་བྱོས།"
  1439. #~ msgid "Themes"
  1440. #~ msgstr "རྣམ་པ།"
  1441. #~ msgid "Reliablity"
  1442. #~ msgstr ""
  1443. #~ msgid ""
  1444. #~ "When enabled, the result page's title"
  1445. #~ " contains your query. Your browser "
  1446. #~ "can record this title."
  1447. #~ msgstr ""
  1448. #~ msgid "Method"
  1449. #~ msgstr "ཐབས་ཤེས།"
  1450. #~ msgid ""
  1451. #~ "This tab does not show up for "
  1452. #~ "search results but you can search "
  1453. #~ "the engines listed here via bangs."
  1454. #~ msgstr ""
  1455. #~ msgid "Advanced settings"
  1456. #~ msgstr "མཐོ་རིམ་སྒྲིག་འགོད།"
  1457. #~ msgid "Close"
  1458. #~ msgstr "ཁ་རྒྱག"
  1459. #~ msgid "Language"
  1460. #~ msgstr ""
  1461. #~ msgid "broken"
  1462. #~ msgstr ""
  1463. #~ msgid "supported"
  1464. #~ msgstr "རྒྱབ་སྐྱོར་ཐོབ་ཟིན་པ།"
  1465. #~ msgid "not supported"
  1466. #~ msgstr "རྒྱབ་སྐྱོར་མི་ཐོབ།"
  1467. #~ msgid "about"
  1468. #~ msgstr "ངེད་ཀྱི་སྐོར།"
  1469. #~ msgid "Avg."
  1470. #~ msgstr ""
  1471. #~ msgid "User Interface"
  1472. #~ msgstr ""
  1473. #~ msgid "Choose style for this theme"
  1474. #~ msgstr "དྲ་ངོས་རྣམ་པ་འདི་ལ་སྒྲིག་འགོད་གཏོང་།"
  1475. #~ msgid "Style"
  1476. #~ msgstr "ཚུགས་ཀ"
  1477. #~ msgid "Show advanced settings"
  1478. #~ msgstr ""
  1479. #~ msgid "Show advanced settings panel in the home page by default"
  1480. #~ msgstr ""
  1481. #~ msgid "Allow all"
  1482. #~ msgstr ""
  1483. #~ msgid "Disable all"
  1484. #~ msgstr ""
  1485. #~ msgid "Selected language"
  1486. #~ msgstr "སྐད་རིགས་གདམ་གསེས།"
  1487. #~ msgid "Query"
  1488. #~ msgstr ""
  1489. #~ msgid "save"
  1490. #~ msgstr "གསོག་འཇོག"
  1491. #~ msgid "back"
  1492. #~ msgstr "ཕྱིར་ལོག"
  1493. #~ msgid "Links"
  1494. #~ msgstr "སྦྲེལ་ཐག"
  1495. #~ msgid "RSS subscription"
  1496. #~ msgstr ""
  1497. #~ msgid "Search results"
  1498. #~ msgstr "འཚོལ་འབྲས།"
  1499. #~ msgid "next page"
  1500. #~ msgstr "དྲ་ངོས་གཞུག་མ།"
  1501. #~ msgid "previous page"
  1502. #~ msgstr "དྲ་ངོས་སྔོན་མ།"
  1503. #~ msgid "Start search"
  1504. #~ msgstr "འཚོལ་བཤེར་མགོ་རྩོམ།"
  1505. #~ msgid "Clear search"
  1506. #~ msgstr ""
  1507. #~ msgid "Clear"
  1508. #~ msgstr ""
  1509. #~ msgid "stats"
  1510. #~ msgstr "སྡོམ་རྩིས།"
  1511. #~ msgid "Heads up!"
  1512. #~ msgstr "མཉམ་འཇོག་བྱེད།"
  1513. #~ msgid "It look like you are using SearXNG first time."
  1514. #~ msgstr ""
  1515. #~ msgid "Well done!"
  1516. #~ msgstr "ཡག་བྱུང་།"
  1517. #~ msgid "Settings saved successfully."
  1518. #~ msgstr "སྒྲིག་འགོད་བདེ་ལེགས་ངང་གསོག་འཇོག་བྱས་ཟིན།"
  1519. #~ msgid "Oh snap!"
  1520. #~ msgstr "ཨ། བྱ་འདི།"
  1521. #~ msgid "Something went wrong."
  1522. #~ msgstr "ནོར་འཁྲུལ་ཆ་གེ་མོ་ཞིག་བྱུང་ཟིན།"
  1523. #~ msgid "Date"
  1524. #~ msgstr ""
  1525. #~ msgid "Type"
  1526. #~ msgstr ""
  1527. #~ msgid "Get image"
  1528. #~ msgstr "པར་རིས་ཕབ་ལེན།"
  1529. #~ msgid "Center Alignment"
  1530. #~ msgstr ""
  1531. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1532. #~ msgstr ""
  1533. #~ msgid "preferences"
  1534. #~ msgstr "སྒྲིག་བཀོད།"
  1535. #~ msgid "Scores per result"
  1536. #~ msgstr "འཚོལ་འབྲས་རེ་རེ་ཡི་ཐོབ་སྐར།"
  1537. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1538. #~ msgstr "མི་སྒེར་ཆ་འཕྲིན་ལ་བརྩི་གསོག་ལྡན་ཞིང་འཚོལ་བྱེད་ནང་དོན་ཕུན་སུམ་པའི་འཚོལ་བཤེར་སྒུལ་བྱེད་མ་ལག"
  1539. #~ msgid "No abstract is available for this publication."
  1540. #~ msgstr ""
  1541. #~ msgid "Self Informations"
  1542. #~ msgstr ""
  1543. #~ msgid ""
  1544. #~ "Change how forms are submited, <a "
  1545. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1546. #~ " rel=\"external\">learn more about request "
  1547. #~ "methods</a>"
  1548. #~ msgstr ""
  1549. #~ msgid ""
  1550. #~ "This plugin checks if the address "
  1551. #~ "of the request is a TOR exit "
  1552. #~ "node, and informs the user if it"
  1553. #~ " is, like check.torproject.org but from "
  1554. #~ "searxng."
  1555. #~ msgstr ""
  1556. #~ msgid ""
  1557. #~ "The TOR exit node list "
  1558. #~ "(https://check.torproject.org/exit-addresses) is "
  1559. #~ "unreachable."
  1560. #~ msgstr ""
  1561. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1562. #~ msgstr ""
  1563. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1564. #~ msgstr ""
  1565. #~ msgid ""
  1566. #~ "The could not download the list of"
  1567. #~ " Tor exit-nodes from "
  1568. #~ "https://check.torproject.org/exit-addresses."
  1569. #~ msgstr ""
  1570. #~ msgid ""
  1571. #~ "You are using Tor. It looks like"
  1572. #~ " you have this external IP address:"
  1573. #~ " {ip_address}."
  1574. #~ msgstr ""
  1575. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1576. #~ msgstr ""
  1577. #~ msgid "Autodetect search language"
  1578. #~ msgstr ""
  1579. #~ msgid "Automatically detect the query search language and switch to it."
  1580. #~ msgstr ""
  1581. #~ msgid "others"
  1582. #~ msgstr ""
  1583. #~ msgid ""
  1584. #~ "This tab does not show up for "
  1585. #~ "search results, but you can search "
  1586. #~ "the engines listed here via bangs."
  1587. #~ msgstr ""
  1588. #~ msgid "Shortcut"
  1589. #~ msgstr "མགྱོགས་མྱུར་མཐེབ་གཞོང་།"
  1590. #~ msgid "!bang"
  1591. #~ msgstr ""
  1592. #~ msgid ""
  1593. #~ "This tab dues not exists in the"
  1594. #~ " user interface, but you can search"
  1595. #~ " in these engines by its !bangs."
  1596. #~ msgstr ""
  1597. #~ msgid "Engines cannot retrieve results."
  1598. #~ msgstr "འཙོལ་བཤེར་གཏོང་མི་ནུས། དགོངས་དག"
  1599. #~ msgid "Please, try again later or find another SearXNG instance."
  1600. #~ msgstr ""
  1601. #~ msgid ""
  1602. #~ "Redirect to open-access versions of "
  1603. #~ "publications when available (plugin required)"
  1604. #~ msgstr ""
  1605. #~ msgid "Bang"
  1606. #~ msgstr "!bang"
  1607. #~ msgid ""
  1608. #~ "Change how forms are submitted, <a "
  1609. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1610. #~ " rel=\"external\">learn more about request "
  1611. #~ "methods</a>"
  1612. #~ msgstr ""
  1613. #~ msgid "On"
  1614. #~ msgstr "ཁ་ཕྱེས།"
  1615. #~ msgid "Off"
  1616. #~ msgstr "ཁ་རྒྱབ།"
  1617. #~ msgid "Enabled"
  1618. #~ msgstr "ཁ་འབྱེད་ཟིན།"
  1619. #~ msgid "Disabled"
  1620. #~ msgstr "ཁ་རྒྱབ་ཟིན།"
  1621. #~ msgid ""
  1622. #~ "Perform search immediately if a category"
  1623. #~ " selected. Disable to select multiple "
  1624. #~ "categories. (JavaScript required)"
  1625. #~ msgstr ""
  1626. #~ msgid "Vim-like hotkeys"
  1627. #~ msgstr "མགྱོགས་མྱུར་མཐེབ་གཞོང་གི་སྤྱོད་སྟངས།"
  1628. #~ msgid ""
  1629. #~ "Navigate search results with Vim-like"
  1630. #~ " hotkeys (JavaScript required). Press \"h\""
  1631. #~ " key on main or result page to"
  1632. #~ " get help."
  1633. #~ msgstr ""
  1634. #~ msgid ""
  1635. #~ "we didn't find any results. Please "
  1636. #~ "use another query or search in "
  1637. #~ "more categories."
  1638. #~ msgstr ""
  1639. #~ "འཚོལ་འབྲས་གང་ཡང་མ་ཐོབ། "
  1640. #~ "ཁྱེད་ཀྱིས་འཚོལ་བཤེར་ཐ་སྙད་གཞན་པ་ནས་ཚོད་ལྟ་བྱེད་རོགས།"
  1641. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1642. #~ msgstr ""
  1643. #~ msgid "Bytes"
  1644. #~ msgstr "གྲངས་གནས།"
  1645. #~ msgid "kiB"
  1646. #~ msgstr "kB"
  1647. #~ msgid "MiB"
  1648. #~ msgstr "MB"
  1649. #~ msgid "GiB"
  1650. #~ msgstr "GB"
  1651. #~ msgid "TiB"
  1652. #~ msgstr "TB"
  1653. #~ msgid "Hostname replace"
  1654. #~ msgstr ""
  1655. #~ msgid "Error!"
  1656. #~ msgstr "ནོར་འཁྲུལ་བྱུང་ཟིན།"
  1657. #~ msgid "Engines cannot retrieve results"
  1658. #~ msgstr "འཚོལ་བཤེར་སྒུལ་བྱེད་ལ་ནོར་འཁྲུལ་ཅུང་ཟད་བྱུང་།"
  1659. #~ msgid "Start submiting a new issue on GitHub"
  1660. #~ msgstr ""
  1661. #~ msgid "dummy"
  1662. #~ msgstr ""
  1663. #~ msgid "Random value generator"
  1664. #~ msgstr "ངེས་མེད་གྲངས་ཀ་མཁོ་སྤྲོད།"
  1665. #~ msgid "Statistics functions"
  1666. #~ msgstr "སྡོམ་བརྩིས་ཀྱི་བྱེད་ནུས།"
  1667. #~ msgid "Compute {functions} of the arguments"
  1668. #~ msgstr "{functions} གཞི་གྲངས་གྲངས་རྩིས།"
  1669. #~ msgid "Get directions"
  1670. #~ msgstr ""
  1671. #~ msgid ""
  1672. #~ "Displays your IP if the query is"
  1673. #~ " \"ip\" and your user agent if "
  1674. #~ "the query contains \"user agent\"."
  1675. #~ msgstr ""
  1676. #~ msgid ""
  1677. #~ "Could not download the list of Tor"
  1678. #~ " exit-nodes from: https://check.torproject.org"
  1679. #~ "/exit-addresses"
  1680. #~ msgstr ""
  1681. #~ msgid ""
  1682. #~ "You are using Tor and it looks "
  1683. #~ "like you have this external IP "
  1684. #~ "address: {ip_address}"
  1685. #~ msgstr ""
  1686. #~ msgid ""
  1687. #~ "You are not using Tor and you "
  1688. #~ "have this external IP address: "
  1689. #~ "{ip_address}"
  1690. #~ msgstr ""
  1691. #~ msgid "Keywords"
  1692. #~ msgstr "ཐ་སྙད་གཙོ་བོ།"
  1693. #~ msgid "/"
  1694. #~ msgstr ""
  1695. #~ msgid ""
  1696. #~ "Specifying custom settings in the "
  1697. #~ "preferences URL can be used to "
  1698. #~ "sync preferences across devices."
  1699. #~ msgstr ""
  1700. #~ msgid "proxied"
  1701. #~ msgstr "མངག་བཅོལ་བྱེད་ཟིན།"
  1702. #~ msgid ""
  1703. #~ "This tab does not exists in the"
  1704. #~ " user interface, but you can search"
  1705. #~ " in these engines by its !bangs."
  1706. #~ msgstr ""
  1707. #~ msgid "Results on new tabs"
  1708. #~ msgstr "ཤོག་ངོས་གསར་བ་ནས་འཚོལ་འབྲས་འཆར།"
  1709. #~ msgid "Open result links on new browser tabs"
  1710. #~ msgstr "ཤོག་ངོས་གསར་བ་ཞིག་ནས་དྲ་ངོས་འཆར་པར་བྱེད།"
  1711. #~ msgid "Find stuff as you type"
  1712. #~ msgstr "འཚོལ་བྱ་གཏགས་པ་ཇི་བཞིན་བཙལ།"
  1713. #~ msgid "Converts strings to different hash digests."
  1714. #~ msgstr ""