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