messages.po 48 KB

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