messages.po 50 KB

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