messages.po 50 KB

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