messages.po 48 KB

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