messages.po 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962
  1. # Chinese (Simplified, China) translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # RainSlide, 2018
  7. # Jsthon, 2019
  8. # Mingye Wang <arthur200126@gmail.com>, 2018
  9. # Noémi Ványi <sitbackandwait@gmail.com>, 2019
  10. # Sion Kazama, 2018
  11. # wenke, 2015
  12. # wenke, 2015-2018
  13. # WhiredPlanck <fungdaat31@outlook.com>, 2020
  14. # wordpure <wordlesspure@gmail.com>, 2022.
  15. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  16. # Academic tyro <y13593582403@gmail.com>, 2022.
  17. # tjvfxtiwdr <tjvfxtiwdr@daimashili.com>, 2022.
  18. # a <a@daimashili.com>, 2022.
  19. # YaoSiQian <2229561981@qq.com>, 2022.
  20. # yfdyh000 <yfdyh000@gmail.com>, 2023.
  21. # return42 <markus.heiser@darmarit.de>, 2023, 2024.
  22. # BBTranslate <357835338@qq.com>, 2023.
  23. # JonesBBQ <colson.xu@gmail.com>, 2023.
  24. # BernieHuang2008 <berniehuang2008@163.com>, 2023.
  25. # clsty <celestial.y@outlook.com>, 2023.
  26. # kirisameSoup <kirisoup@skiff.com>, 2023.
  27. # err_connection_closed
  28. # <err_connection_closed@users.noreply.translate.codeberg.org>, 2023.
  29. # Integral <integral@member.fsf.org>, 2024.
  30. # return42 <return42@users.noreply.translate.codeberg.org>, 2024.
  31. # jianhanquwan <jianhanquwan@users.noreply.translate.codeberg.org>, 2024.
  32. # lcaopcn <lcaopcn@users.noreply.translate.codeberg.org>, 2024.
  33. # chjtxwd <chjtxwd@users.noreply.translate.codeberg.org>, 2024.
  34. # Jeex <Jeex@users.noreply.translate.codeberg.org>, 2024.
  35. # xyb <xyb@users.noreply.translate.codeberg.org>, 2024.
  36. # xtex <xtexchooser@duck.com>, 2024.
  37. # bobolau <bobolau@users.noreply.translate.codeberg.org>, 2024.
  38. # Outbreak2096 <Outbreak2096@users.noreply.translate.codeberg.org>, 2024.
  39. # rwong <rwong@users.noreply.translate.codeberg.org>, 2024.
  40. msgid ""
  41. msgstr ""
  42. "Project-Id-Version: searx\n"
  43. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  44. "POT-Creation-Date: 2025-01-06 13:57+0000\n"
  45. "PO-Revision-Date: 2024-12-04 06:07+0000\n"
  46. "Last-Translator: rwong <rwong@users.noreply.translate.codeberg.org>\n"
  47. "Language: zh_Hans_CN\n"
  48. "Language-Team: Chinese (Simplified Han script) "
  49. "<https://translate.codeberg.org/projects/searxng/searxng/zh_Hans/>\n"
  50. "Plural-Forms: nplurals=1; plural=0;\n"
  51. "MIME-Version: 1.0\n"
  52. "Content-Type: text/plain; charset=utf-8\n"
  53. "Content-Transfer-Encoding: 8bit\n"
  54. "Generated-By: Babel 2.16.0\n"
  55. #. CONSTANT_NAMES['NO_SUBGROUPING']
  56. #: searx/searxng.msg
  57. msgid "without further subgrouping"
  58. msgstr "无需进一步分组"
  59. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  60. #: searx/searxng.msg
  61. msgid "other"
  62. msgstr "其他"
  63. #. CATEGORY_NAMES['FILES']
  64. #: searx/searxng.msg
  65. msgid "files"
  66. msgstr "文件"
  67. #. CATEGORY_NAMES['GENERAL']
  68. #: searx/searxng.msg
  69. msgid "general"
  70. msgstr "综合"
  71. #. CATEGORY_NAMES['MUSIC']
  72. #: searx/searxng.msg
  73. msgid "music"
  74. msgstr "音乐"
  75. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  76. #: searx/searxng.msg
  77. msgid "social media"
  78. msgstr "社交媒体"
  79. #. CATEGORY_NAMES['IMAGES']
  80. #: searx/searxng.msg
  81. msgid "images"
  82. msgstr "图片"
  83. #. CATEGORY_NAMES['VIDEOS']
  84. #: searx/searxng.msg
  85. msgid "videos"
  86. msgstr "视频"
  87. #. CATEGORY_NAMES['RADIO']
  88. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  89. msgid "radio"
  90. msgstr "电台"
  91. #. CATEGORY_NAMES['TV']
  92. #: searx/searxng.msg
  93. msgid "tv"
  94. msgstr "电视"
  95. #. CATEGORY_NAMES['IT']
  96. #: searx/searxng.msg
  97. msgid "it"
  98. msgstr "信息技术"
  99. #. CATEGORY_NAMES['NEWS']
  100. #: searx/searxng.msg
  101. msgid "news"
  102. msgstr "新闻"
  103. #. CATEGORY_NAMES['MAP']
  104. #: searx/searxng.msg
  105. msgid "map"
  106. msgstr "地图"
  107. #. CATEGORY_NAMES['ONIONS']
  108. #: searx/searxng.msg
  109. msgid "onions"
  110. msgstr "洋葱网络"
  111. #. CATEGORY_NAMES['SCIENCE']
  112. #: searx/searxng.msg
  113. msgid "science"
  114. msgstr "科学"
  115. #. CATEGORY_NAMES['DUMMY']
  116. #: searx/searxng.msg
  117. msgid "dummy"
  118. msgstr ""
  119. #. CATEGORY_GROUPS['APPS']
  120. #: searx/searxng.msg
  121. msgid "apps"
  122. msgstr "应用程序"
  123. #. CATEGORY_GROUPS['DICTIONARIES']
  124. #: searx/searxng.msg
  125. msgid "dictionaries"
  126. msgstr "字典"
  127. #. CATEGORY_GROUPS['LYRICS']
  128. #: searx/searxng.msg
  129. msgid "lyrics"
  130. msgstr "歌词"
  131. #. CATEGORY_GROUPS['PACKAGES']
  132. #: searx/searxng.msg
  133. msgid "packages"
  134. msgstr "程序包"
  135. #. CATEGORY_GROUPS['Q_A']
  136. #: searx/searxng.msg
  137. msgid "q&a"
  138. msgstr "问答"
  139. #. CATEGORY_GROUPS['REPOS']
  140. #: searx/searxng.msg
  141. msgid "repos"
  142. msgstr "软件仓库"
  143. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  144. #: searx/searxng.msg
  145. msgid "software wikis"
  146. msgstr "软件维基"
  147. #. CATEGORY_GROUPS['WEB']
  148. #: searx/searxng.msg
  149. msgid "web"
  150. msgstr "网页"
  151. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  152. #: searx/searxng.msg
  153. msgid "scientific publications"
  154. msgstr "学术文章"
  155. #. STYLE_NAMES['AUTO']
  156. #: searx/searxng.msg
  157. msgid "auto"
  158. msgstr "自动"
  159. #. STYLE_NAMES['LIGHT']
  160. #: searx/searxng.msg
  161. msgid "light"
  162. msgstr "浅色"
  163. #. STYLE_NAMES['DARK']
  164. #: searx/searxng.msg
  165. msgid "dark"
  166. msgstr "深色"
  167. #. STYLE_NAMES['BLACK']
  168. #: searx/searxng.msg
  169. msgid "black"
  170. msgstr "黑色"
  171. #. BRAND_CUSTOM_LINKS['UPTIME']
  172. #: searx/searxng.msg
  173. msgid "Uptime"
  174. msgstr "运行时间"
  175. #. BRAND_CUSTOM_LINKS['ABOUT']
  176. #: searx/searxng.msg searx/templates/simple/base.html:50
  177. msgid "About"
  178. msgstr "关于"
  179. #. WEATHER_TERMS['AVERAGE TEMP.']
  180. #: searx/engines/wttr.py:32 searx/searxng.msg
  181. msgid "Average temp."
  182. msgstr "平均温度"
  183. #. WEATHER_TERMS['CLOUD COVER']
  184. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  185. msgid "Cloud cover"
  186. msgstr "云量"
  187. #. WEATHER_TERMS['CONDITION']
  188. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  189. #: searx/searxng.msg
  190. msgid "Condition"
  191. msgstr "条件"
  192. #. WEATHER_TERMS['CURRENT CONDITION']
  193. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  194. #: searx/searxng.msg
  195. msgid "Current condition"
  196. msgstr "当前状况"
  197. #. WEATHER_TERMS['EVENING']
  198. #: searx/engines/wttr.py:100 searx/searxng.msg
  199. msgid "Evening"
  200. msgstr "傍晚"
  201. #. WEATHER_TERMS['FEELS LIKE']
  202. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  203. #: searx/engines/wttr.py:59 searx/searxng.msg
  204. msgid "Feels like"
  205. msgstr "体感温度"
  206. #. WEATHER_TERMS['HUMIDITY']
  207. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  208. #: searx/engines/wttr.py:68 searx/searxng.msg
  209. msgid "Humidity"
  210. msgstr "湿度"
  211. #. WEATHER_TERMS['MAX TEMP.']
  212. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  213. #: searx/searxng.msg
  214. msgid "Max temp."
  215. msgstr "最高温度"
  216. #. WEATHER_TERMS['MIN TEMP.']
  217. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  218. #: searx/searxng.msg
  219. msgid "Min temp."
  220. msgstr "最低温度"
  221. #. WEATHER_TERMS['MORNING']
  222. #: searx/engines/wttr.py:100 searx/searxng.msg
  223. msgid "Morning"
  224. msgstr "上午"
  225. #. WEATHER_TERMS['NIGHT']
  226. #: searx/engines/wttr.py:100 searx/searxng.msg
  227. msgid "Night"
  228. msgstr "夜晚"
  229. #. WEATHER_TERMS['NOON']
  230. #: searx/engines/wttr.py:100 searx/searxng.msg
  231. msgid "Noon"
  232. msgstr "中午"
  233. #. WEATHER_TERMS['PRESSURE']
  234. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  235. msgid "Pressure"
  236. msgstr "气压"
  237. #. WEATHER_TERMS['SUNRISE']
  238. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  239. #: searx/searxng.msg
  240. msgid "Sunrise"
  241. msgstr "日出"
  242. #. WEATHER_TERMS['SUNSET']
  243. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  244. #: searx/searxng.msg
  245. msgid "Sunset"
  246. msgstr "日落"
  247. #. WEATHER_TERMS['TEMPERATURE']
  248. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  249. #: searx/engines/wttr.py:55 searx/searxng.msg
  250. msgid "Temperature"
  251. msgstr "温度"
  252. #. WEATHER_TERMS['UV INDEX']
  253. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  254. #: searx/searxng.msg
  255. msgid "UV index"
  256. msgstr "紫外线强度"
  257. #. WEATHER_TERMS['VISIBILITY']
  258. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  259. #: searx/searxng.msg
  260. msgid "Visibility"
  261. msgstr "能见度"
  262. #. WEATHER_TERMS['WIND']
  263. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  264. #: searx/engines/wttr.py:62 searx/searxng.msg
  265. msgid "Wind"
  266. msgstr "风"
  267. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  268. #: searx/engines/lemmy.py:85 searx/searxng.msg
  269. msgid "subscribers"
  270. msgstr "订阅者"
  271. #. SOCIAL_MEDIA_TERMS['POSTS']
  272. #: searx/engines/lemmy.py:86 searx/searxng.msg
  273. msgid "posts"
  274. msgstr "帖子"
  275. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  276. #: searx/engines/lemmy.py:87 searx/searxng.msg
  277. msgid "active users"
  278. msgstr "活跃用户"
  279. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  280. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  281. #: searx/engines/lemmy.py:130 searx/searxng.msg
  282. msgid "comments"
  283. msgstr "评论"
  284. #. SOCIAL_MEDIA_TERMS['USER']
  285. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  286. msgid "user"
  287. msgstr "用户"
  288. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  289. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  290. msgid "community"
  291. msgstr "版块"
  292. #. SOCIAL_MEDIA_TERMS['POINTS']
  293. #: searx/engines/hackernews.py:82 searx/searxng.msg
  294. msgid "points"
  295. msgstr "积分"
  296. #. SOCIAL_MEDIA_TERMS['TITLE']
  297. #: searx/searxng.msg
  298. msgid "title"
  299. msgstr "标题"
  300. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  301. #: searx/engines/hackernews.py:85 searx/searxng.msg
  302. msgid "author"
  303. msgstr "作者"
  304. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  305. #: searx/engines/discourse.py:149 searx/searxng.msg
  306. msgid "open"
  307. msgstr "打开"
  308. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  309. #: searx/engines/discourse.py:149 searx/searxng.msg
  310. msgid "closed"
  311. msgstr "已关闭"
  312. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  313. #: searx/engines/discourse.py:160 searx/searxng.msg
  314. msgid "answered"
  315. msgstr "回答"
  316. #: searx/webapp.py:323
  317. msgid "No item found"
  318. msgstr "未找到项目"
  319. #: searx/engines/qwant.py:288
  320. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  321. msgid "Source"
  322. msgstr "来源"
  323. #: searx/webapp.py:327
  324. msgid "Error loading the next page"
  325. msgstr "载入下个页面时发生错误"
  326. #: searx/webapp.py:492 searx/webapp.py:900
  327. msgid "Invalid settings, please edit your preferences"
  328. msgstr "无效设置,请编辑您的首选项"
  329. #: searx/webapp.py:508
  330. msgid "Invalid settings"
  331. msgstr "无效设置"
  332. #: searx/webapp.py:585 searx/webapp.py:675
  333. msgid "search error"
  334. msgstr "搜索错误"
  335. #: searx/webutils.py:36
  336. msgid "timeout"
  337. msgstr "超时"
  338. #: searx/webutils.py:37
  339. msgid "parsing error"
  340. msgstr "解析错误"
  341. #: searx/webutils.py:38
  342. msgid "HTTP protocol error"
  343. msgstr "HTTP 协议错误"
  344. #: searx/webutils.py:39
  345. msgid "network error"
  346. msgstr "网络错误"
  347. #: searx/webutils.py:40
  348. msgid "SSL error: certificate validation has failed"
  349. msgstr "SSL 错误:证书校验失败"
  350. #: searx/webutils.py:42
  351. msgid "unexpected crash"
  352. msgstr "意外崩溃"
  353. #: searx/webutils.py:49
  354. msgid "HTTP error"
  355. msgstr "HTTP 错误"
  356. #: searx/webutils.py:50
  357. msgid "HTTP connection error"
  358. msgstr "HTTP 连接错误"
  359. #: searx/webutils.py:56
  360. msgid "proxy error"
  361. msgstr "代理错误"
  362. #: searx/webutils.py:57
  363. msgid "CAPTCHA"
  364. msgstr "验证码"
  365. #: searx/webutils.py:58
  366. msgid "too many requests"
  367. msgstr "请求过于频繁"
  368. #: searx/webutils.py:59
  369. msgid "access denied"
  370. msgstr "拒绝访问"
  371. #: searx/webutils.py:60
  372. msgid "server API error"
  373. msgstr "服务器 API 错误"
  374. #: searx/webutils.py:79
  375. msgid "Suspended"
  376. msgstr "暂停服务"
  377. #: searx/webutils.py:314
  378. msgid "{minutes} minute(s) ago"
  379. msgstr "{minutes} 分钟前"
  380. #: searx/webutils.py:315
  381. msgid "{hours} hour(s), {minutes} minute(s) ago"
  382. msgstr "{hours} 小时 {minutes} 分钟前"
  383. #: searx/answerers/random/answerer.py:76
  384. msgid "Random value generator"
  385. msgstr "随机数生成器"
  386. #: searx/answerers/random/answerer.py:77
  387. msgid "Generate different random values"
  388. msgstr "生成不同的随机数"
  389. #: searx/answerers/statistics/answerer.py:50
  390. msgid "Statistics functions"
  391. msgstr "统计功能"
  392. #: searx/answerers/statistics/answerer.py:51
  393. msgid "Compute {functions} of the arguments"
  394. msgstr "计算 {functions} 参数"
  395. #: searx/engines/mozhi.py:57
  396. msgid "Synonyms"
  397. msgstr "近义词"
  398. #: searx/engines/openstreetmap.py:159
  399. msgid "Get directions"
  400. msgstr "获取路线"
  401. #: searx/engines/pdbe.py:96
  402. msgid "{title} (OBSOLETE)"
  403. msgstr "{title} (已过时)"
  404. #: searx/engines/pdbe.py:103
  405. msgid "This entry has been superseded by"
  406. msgstr "此条目已被以下内容取代"
  407. #: searx/engines/qwant.py:290
  408. msgid "Channel"
  409. msgstr "频道"
  410. #: searx/engines/radio_browser.py:105
  411. msgid "bitrate"
  412. msgstr "比特率"
  413. #: searx/engines/radio_browser.py:106
  414. msgid "votes"
  415. msgstr "投票数"
  416. #: searx/engines/radio_browser.py:107
  417. msgid "clicks"
  418. msgstr "点击数"
  419. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  420. #: searx/engines/zlibrary.py:137
  421. msgid "Language"
  422. msgstr "语言"
  423. #: searx/engines/semantic_scholar.py:78
  424. msgid ""
  425. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  426. "{lastCitationVelocityYear}"
  427. msgstr ""
  428. "{firstCitationVelocityYear} 年至 {lastCitationVelocityYear} 年间总计 "
  429. "{numCitations} 次引用"
  430. #: searx/engines/tineye.py:45
  431. msgid ""
  432. "Could not read that image url. This may be due to an unsupported file "
  433. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  434. " WebP."
  435. msgstr "无法读取该图片网址。这可能是由于文件格式不受支持。TinEye 仅支持 JPEG、PNG、GIF、BMP、TIFF 或 WebP 格式的图像。"
  436. #: searx/engines/tineye.py:51
  437. msgid ""
  438. "The image is too simple to find matches. TinEye requires a basic level of"
  439. " visual detail to successfully identify matches."
  440. msgstr "图像过于简单,无法找到匹配项。TinEye 需要基本级别的视觉细节才能成功识别匹配项。"
  441. #: searx/engines/tineye.py:57
  442. msgid "The image could not be downloaded."
  443. msgstr "无法下载该图像。"
  444. #: searx/engines/zlibrary.py:138
  445. msgid "Book rating"
  446. msgstr "书籍评分"
  447. #: searx/engines/zlibrary.py:139
  448. msgid "File quality"
  449. msgstr "文件质量"
  450. #: searx/plugins/calculator.py:18
  451. msgid "Calculate mathematical expressions via the search bar"
  452. msgstr "通过搜索栏计算数学表达式"
  453. #: searx/plugins/hash_plugin.py:10
  454. msgid "Converts strings to different hash digests."
  455. msgstr "将字符串转换为不同的散列(hash)摘要值。"
  456. #: searx/plugins/hash_plugin.py:38
  457. msgid "hash digest"
  458. msgstr "散列摘要值"
  459. #: searx/plugins/hostnames.py:103
  460. msgid "Hostnames plugin"
  461. msgstr "主机名插件"
  462. #: searx/plugins/hostnames.py:104
  463. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  464. msgstr "重写主机名、删除结果或根据主机名确定优先级"
  465. #: searx/plugins/oa_doi_rewrite.py:12
  466. msgid "Open Access DOI rewrite"
  467. msgstr "开放访问 DOI 重写"
  468. #: searx/plugins/oa_doi_rewrite.py:13
  469. msgid ""
  470. "Avoid paywalls by redirecting to open-access versions of publications "
  471. "when available"
  472. msgstr "尽可能重定向到开放访问的版本以免被要求付费"
  473. #: searx/plugins/self_info.py:9
  474. msgid "Self Information"
  475. msgstr "自身信息"
  476. #: searx/plugins/self_info.py:10
  477. msgid ""
  478. "Displays your IP if the query is \"ip\" and your user agent if the query "
  479. "contains \"user agent\"."
  480. msgstr "当您搜索“ip”时,这将会显示您的 IP 地址;同理,在搜索“user agent”时,将会显示您的 User Agent。"
  481. #: searx/plugins/self_info.py:28
  482. msgid "Your IP is: "
  483. msgstr "你的IP是: "
  484. #: searx/plugins/self_info.py:31
  485. msgid "Your user-agent is: "
  486. msgstr "你的用户代理是: "
  487. #: searx/plugins/tor_check.py:24
  488. msgid "Tor check plugin"
  489. msgstr "Tor 网络检测插件"
  490. #: searx/plugins/tor_check.py:27
  491. msgid ""
  492. "This plugin checks if the address of the request is a Tor exit-node, and "
  493. "informs the user if it is; like check.torproject.org, but from SearXNG."
  494. msgstr "此插件检查请求地址是否为 Tor 出口节点,若是则告知用户。这是由 SearXNG 提供的类似 check.torproject.org 的服务。"
  495. #: searx/plugins/tor_check.py:61
  496. msgid ""
  497. "Could not download the list of Tor exit-nodes from: "
  498. "https://check.torproject.org/exit-addresses"
  499. msgstr "未能从此地址下载 Tor 出口节点的列表: https://check.torproject.org/exit-addresses"
  500. #: searx/plugins/tor_check.py:77
  501. msgid ""
  502. "You are using Tor and it looks like you have this external IP address: "
  503. "{ip_address}"
  504. msgstr "您似乎在使用 Tor,您的外部 IP 地址为: {ip_address}"
  505. #: searx/plugins/tor_check.py:85
  506. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  507. msgstr "您并未使用 Tor,您的外部 IP 地址为: {ip_address}"
  508. #: searx/plugins/tracker_url_remover.py:16
  509. msgid "Tracker URL remover"
  510. msgstr "跟踪链接移除器"
  511. #: searx/plugins/tracker_url_remover.py:17
  512. msgid "Remove trackers arguments from the returned URL"
  513. msgstr "去除返回的链接中的跟踪参数"
  514. #: searx/plugins/unit_converter.py:29
  515. msgid "Convert between units"
  516. msgstr "单位间转换"
  517. #: searx/templates/simple/404.html:4
  518. msgid "Page not found"
  519. msgstr "未找到网页"
  520. #: searx/templates/simple/404.html:6
  521. #, python-format
  522. msgid "Go to %(search_page)s."
  523. msgstr "前往 %(search_page)s。"
  524. #: searx/templates/simple/404.html:6
  525. msgid "search page"
  526. msgstr "搜索页面"
  527. #: searx/templates/simple/base.html:54
  528. msgid "Donate"
  529. msgstr "捐款"
  530. #: searx/templates/simple/base.html:58
  531. #: searx/templates/simple/preferences.html:156
  532. msgid "Preferences"
  533. msgstr "首选项"
  534. #: searx/templates/simple/base.html:68
  535. msgid "Powered by"
  536. msgstr "功能来自"
  537. #: searx/templates/simple/base.html:68
  538. msgid "a privacy-respecting, open metasearch engine"
  539. msgstr "尊重隐私的开源元搜索引擎"
  540. #: searx/templates/simple/base.html:69
  541. #: searx/templates/simple/result_templates/packages.html:59
  542. msgid "Source code"
  543. msgstr "源代码"
  544. #: searx/templates/simple/base.html:70
  545. msgid "Issue tracker"
  546. msgstr "问题跟踪系统"
  547. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  548. msgid "Engine stats"
  549. msgstr "搜索引擎统计"
  550. #: searx/templates/simple/base.html:73
  551. msgid "Public instances"
  552. msgstr "公共实例"
  553. #: searx/templates/simple/base.html:76
  554. msgid "Privacy policy"
  555. msgstr "隐私政策"
  556. #: searx/templates/simple/base.html:79
  557. msgid "Contact instance maintainer"
  558. msgstr "联系站点维护人员"
  559. #: searx/templates/simple/categories.html:26
  560. msgid "Click on the magnifier to perform search"
  561. msgstr "点击放大镜按钮开始搜索"
  562. #: searx/templates/simple/macros.html:40
  563. msgid "Length"
  564. msgstr "长度"
  565. #: searx/templates/simple/macros.html:41
  566. msgid "Views"
  567. msgstr "查看次数"
  568. #: searx/templates/simple/macros.html:42
  569. #: searx/templates/simple/result_templates/files.html:34
  570. #: searx/templates/simple/result_templates/images.html:19
  571. #: searx/templates/simple/result_templates/paper.html:6
  572. msgid "Author"
  573. msgstr "作者"
  574. #: searx/templates/simple/macros.html:50
  575. msgid "cached"
  576. msgstr "快照"
  577. #: searx/templates/simple/macros.html:50
  578. msgid "proxied"
  579. msgstr "已代理"
  580. #: searx/templates/simple/new_issue.html:64
  581. msgid "Start submitting a new issue on GitHub"
  582. msgstr "在 GitHub 上开始提交新问题"
  583. #: searx/templates/simple/new_issue.html:66
  584. msgid "Please check for existing bugs about this engine on GitHub"
  585. msgstr "请在 GitHub 上检查有关此引擎的现有错误"
  586. #: searx/templates/simple/new_issue.html:69
  587. msgid "I confirm there is no existing bug about the issue I encounter"
  588. msgstr "我确定提交的 Bug 没有与现存 Issue 重复"
  589. #: searx/templates/simple/new_issue.html:71
  590. msgid "If this is a public instance, please specify the URL in the bug report"
  591. msgstr "如果这是一个公共实例,请在 Bug 报告中指明其网址"
  592. #: searx/templates/simple/new_issue.html:72
  593. msgid "Submit a new issue on Github including the above information"
  594. msgstr "在 GitHub 上提交包含上述信息的 Issue"
  595. #: searx/templates/simple/preferences.html:65
  596. msgid "No HTTPS"
  597. msgstr "无 HTTPS"
  598. #: searx/templates/simple/elements/engines_msg.html:14
  599. #: searx/templates/simple/preferences.html:69
  600. #: searx/templates/simple/preferences.html:70
  601. msgid "View error logs and submit a bug report"
  602. msgstr "查看错误日志并提交错误报告"
  603. #: searx/templates/simple/preferences.html:74
  604. msgid "!bang for this engine"
  605. msgstr "对于这个引擎的 !bang"
  606. #: searx/templates/simple/preferences.html:80
  607. msgid "!bang for its categories"
  608. msgstr "对于这个类别的 !bang"
  609. #: searx/templates/simple/preferences.html:102
  610. #: searx/templates/simple/stats.html:64
  611. msgid "Median"
  612. msgstr "中位数"
  613. #: searx/templates/simple/preferences.html:103
  614. #: searx/templates/simple/stats.html:70
  615. msgid "P80"
  616. msgstr "P80"
  617. #: searx/templates/simple/preferences.html:104
  618. #: searx/templates/simple/stats.html:76
  619. msgid "P95"
  620. msgstr "P95"
  621. #: searx/templates/simple/preferences.html:136
  622. msgid "Failed checker test(s): "
  623. msgstr "检查程序测试失败: "
  624. #: searx/templates/simple/preferences.html:138
  625. msgid "Errors:"
  626. msgstr "错误:"
  627. #: searx/templates/simple/preferences.html:162
  628. msgid "General"
  629. msgstr "常规"
  630. #: searx/templates/simple/preferences.html:165
  631. msgid "Default categories"
  632. msgstr "默认类别"
  633. #: searx/templates/simple/preferences.html:190
  634. msgid "User interface"
  635. msgstr "用户界面"
  636. #: searx/templates/simple/preferences.html:212
  637. msgid "Privacy"
  638. msgstr "隐私"
  639. #: searx/templates/simple/preferences.html:225
  640. msgid "Engines"
  641. msgstr "搜索引擎"
  642. #: searx/templates/simple/preferences.html:227
  643. msgid "Currently used search engines"
  644. msgstr "目前使用的搜索引擎"
  645. #: searx/templates/simple/preferences.html:235
  646. msgid "Special Queries"
  647. msgstr "特殊查询"
  648. #: searx/templates/simple/preferences.html:241
  649. msgid "Cookies"
  650. msgstr "Cookies"
  651. #: searx/templates/simple/results.html:23
  652. msgid "Answers"
  653. msgstr "答案"
  654. #: searx/templates/simple/results.html:42
  655. msgid "Number of results"
  656. msgstr "结果个数"
  657. #: searx/templates/simple/results.html:48
  658. msgid "Info"
  659. msgstr "信息"
  660. #: searx/templates/simple/results.html:75
  661. msgid "Try searching for:"
  662. msgstr "尝试搜索:"
  663. #: searx/templates/simple/results.html:107
  664. msgid "Back to top"
  665. msgstr "返回顶部"
  666. #: searx/templates/simple/results.html:125
  667. msgid "Previous page"
  668. msgstr "上一页"
  669. #: searx/templates/simple/results.html:143
  670. msgid "Next page"
  671. msgstr "下一页"
  672. #: searx/templates/simple/search.html:3
  673. msgid "Display the front page"
  674. msgstr "显示前端页面"
  675. #: searx/templates/simple/search.html:9
  676. #: searx/templates/simple/simple_search.html:5
  677. msgid "Search for..."
  678. msgstr "搜索..."
  679. #: searx/templates/simple/search.html:10
  680. #: searx/templates/simple/simple_search.html:6
  681. msgid "clear"
  682. msgstr "清除"
  683. #: searx/templates/simple/search.html:11
  684. #: searx/templates/simple/simple_search.html:7
  685. msgid "search"
  686. msgstr "搜索"
  687. #: searx/templates/simple/stats.html:21
  688. msgid "There is currently no data available. "
  689. msgstr "目前没有可用的数据。 "
  690. #: searx/templates/simple/preferences/engines.html:24
  691. #: searx/templates/simple/stats.html:25
  692. msgid "Engine name"
  693. msgstr "引擎名称"
  694. #: searx/templates/simple/stats.html:26
  695. msgid "Scores"
  696. msgstr "得分"
  697. #: searx/templates/simple/stats.html:27
  698. msgid "Result count"
  699. msgstr "结果数量"
  700. #: searx/templates/simple/elements/engines_msg.html:7
  701. #: searx/templates/simple/preferences/engines.html:31
  702. #: searx/templates/simple/stats.html:28
  703. msgid "Response time"
  704. msgstr "响应时间"
  705. #: searx/templates/simple/preferences/engines.html:35
  706. #: searx/templates/simple/stats.html:29
  707. msgid "Reliability"
  708. msgstr "可靠性"
  709. #: searx/templates/simple/stats.html:59
  710. msgid "Total"
  711. msgstr "总计"
  712. #: searx/templates/simple/stats.html:60
  713. msgid "HTTP"
  714. msgstr "HTTP"
  715. #: searx/templates/simple/stats.html:61
  716. msgid "Processing"
  717. msgstr "正在处理"
  718. #: searx/templates/simple/stats.html:99
  719. msgid "Warnings"
  720. msgstr "警告"
  721. #: searx/templates/simple/stats.html:99
  722. msgid "Errors and exceptions"
  723. msgstr "错误和异常"
  724. #: searx/templates/simple/stats.html:105
  725. msgid "Exception"
  726. msgstr "异常"
  727. #: searx/templates/simple/stats.html:107
  728. msgid "Message"
  729. msgstr "消息"
  730. #: searx/templates/simple/stats.html:109
  731. msgid "Percentage"
  732. msgstr "百分比"
  733. #: searx/templates/simple/stats.html:111
  734. msgid "Parameter"
  735. msgstr "参数"
  736. #: searx/templates/simple/result_templates/files.html:36
  737. #: searx/templates/simple/stats.html:119
  738. msgid "Filename"
  739. msgstr "文件名"
  740. #: searx/templates/simple/stats.html:120
  741. msgid "Function"
  742. msgstr "函数"
  743. #: searx/templates/simple/stats.html:121
  744. msgid "Code"
  745. msgstr "代码"
  746. #: searx/templates/simple/stats.html:128
  747. msgid "Checker"
  748. msgstr "检查程序"
  749. #: searx/templates/simple/stats.html:131
  750. msgid "Failed test"
  751. msgstr "测试未通过"
  752. #: searx/templates/simple/stats.html:132
  753. msgid "Comment(s)"
  754. msgstr "注释"
  755. #: searx/templates/simple/elements/apis.html:3
  756. msgid "Download results"
  757. msgstr "下载结果"
  758. #: searx/templates/simple/elements/engines_msg.html:4
  759. msgid "Messages from the search engines"
  760. msgstr "来自搜索引擎的消息"
  761. #: searx/templates/simple/elements/engines_msg.html:7
  762. msgid "seconds"
  763. msgstr "秒"
  764. #: searx/templates/simple/elements/search_url.html:3
  765. msgid "Search URL"
  766. msgstr "搜索网址"
  767. #: searx/templates/simple/elements/search_url.html:4
  768. #: searx/templates/simple/preferences/cookies.html:54
  769. msgid "Copied"
  770. msgstr "已复制"
  771. #: searx/templates/simple/elements/search_url.html:4
  772. #: searx/templates/simple/preferences/cookies.html:54
  773. msgid "Copy"
  774. msgstr "复制"
  775. #: searx/templates/simple/elements/suggestions.html:3
  776. msgid "Suggestions"
  777. msgstr "搜索建议"
  778. #: searx/templates/simple/filters/languages.html:1
  779. #: searx/templates/simple/preferences/language.html:2
  780. msgid "Search language"
  781. msgstr "搜索语言"
  782. #: searx/templates/simple/filters/languages.html:4
  783. #: searx/templates/simple/preferences/language.html:7
  784. msgid "Default language"
  785. msgstr "默认语言"
  786. #: searx/templates/simple/filters/languages.html:8
  787. #: searx/templates/simple/preferences/language.html:11
  788. msgid "Auto-detect"
  789. msgstr "自动检测"
  790. #: searx/templates/simple/filters/safesearch.html:1
  791. #: searx/templates/simple/filters/safesearch.html:2
  792. #: searx/templates/simple/filters/safesearch.html:3
  793. #: searx/templates/simple/filters/safesearch.html:4
  794. #: searx/templates/simple/preferences/engines.html:27
  795. #: searx/templates/simple/preferences/safesearch.html:2
  796. msgid "SafeSearch"
  797. msgstr "安全搜索"
  798. #: searx/templates/simple/filters/safesearch.html:2
  799. #: searx/templates/simple/preferences/safesearch.html:7
  800. msgid "Strict"
  801. msgstr "严格"
  802. #: searx/templates/simple/filters/safesearch.html:3
  803. #: searx/templates/simple/preferences/safesearch.html:11
  804. msgid "Moderate"
  805. msgstr "中等"
  806. #: searx/templates/simple/filters/safesearch.html:4
  807. #: searx/templates/simple/preferences/safesearch.html:15
  808. msgid "None"
  809. msgstr "无"
  810. #: searx/templates/simple/filters/time_range.html:1
  811. #: searx/templates/simple/preferences/engines.html:28
  812. msgid "Time range"
  813. msgstr "时间范围"
  814. #: searx/templates/simple/filters/time_range.html:3
  815. msgid "Anytime"
  816. msgstr "不限时间"
  817. #: searx/templates/simple/filters/time_range.html:6
  818. msgid "Last day"
  819. msgstr "一天内"
  820. #: searx/templates/simple/filters/time_range.html:9
  821. msgid "Last week"
  822. msgstr "一周内"
  823. #: searx/templates/simple/filters/time_range.html:12
  824. msgid "Last month"
  825. msgstr "一月内"
  826. #: searx/templates/simple/filters/time_range.html:15
  827. msgid "Last year"
  828. msgstr "一年内"
  829. #: searx/templates/simple/messages/no_cookies.html:3
  830. msgid "Information!"
  831. msgstr "信息!"
  832. #: searx/templates/simple/messages/no_cookies.html:4
  833. msgid "currently, there are no cookies defined."
  834. msgstr "目前还没有在 Cookie 中存储任何信息。"
  835. #: searx/templates/simple/messages/no_results.html:6
  836. msgid "Sorry!"
  837. msgstr "抱歉!"
  838. #: searx/templates/simple/messages/no_results.html:12
  839. msgid "No results were found. You can try to:"
  840. msgstr "未找到结果,你可以尝试:"
  841. #: searx/templates/simple/messages/no_results.html:14
  842. msgid "There are no more results. You can try to:"
  843. msgstr "没有更多结果。你可以尝试:"
  844. #: searx/templates/simple/messages/no_results.html:19
  845. msgid "Refresh the page."
  846. msgstr "刷新页面。"
  847. #: searx/templates/simple/messages/no_results.html:20
  848. msgid "Search for another query or select another category (above)."
  849. msgstr "(在上方)对其他查询进行搜索,或选择其他类别。"
  850. #: searx/templates/simple/messages/no_results.html:21
  851. msgid "Change the search engine used in the preferences:"
  852. msgstr "更改“首选项”中使用的搜索引擎:"
  853. #: searx/templates/simple/messages/no_results.html:22
  854. msgid "Switch to another instance:"
  855. msgstr "切换至另一个 SearXNG 实例:"
  856. #: searx/templates/simple/messages/no_results.html:24
  857. msgid "Search for another query or select another category."
  858. msgstr "对其他查询进行搜索,或选择其他类别。"
  859. #: searx/templates/simple/messages/no_results.html:25
  860. msgid "Go back to the previous page using the previous page button."
  861. msgstr "使用返回按钮按钮返回上一页。"
  862. #: searx/templates/simple/preferences/answerers.html:4
  863. #: searx/templates/simple/preferences/engines.html:23
  864. msgid "Allow"
  865. msgstr "允许"
  866. #: searx/templates/simple/preferences/answerers.html:5
  867. msgid "Keywords"
  868. msgstr "关键词"
  869. #: searx/templates/simple/preferences/answerers.html:6
  870. #: searx/templates/simple/result_templates/packages.html:7
  871. msgid "Name"
  872. msgstr "名称"
  873. #: searx/templates/simple/preferences/answerers.html:7
  874. msgid "Description"
  875. msgstr "描述"
  876. #: searx/templates/simple/preferences/answerers.html:8
  877. msgid "Examples"
  878. msgstr "示例"
  879. #: searx/templates/simple/preferences/answerers.html:13
  880. msgid "This is the list of SearXNG's instant answering modules."
  881. msgstr "这是 SearXNG 即时回应模块的列表。"
  882. #: searx/templates/simple/preferences/answerers.html:29
  883. msgid "This is the list of plugins."
  884. msgstr "这是插件列表。"
  885. #: searx/templates/simple/preferences/autocomplete.html:2
  886. msgid "Autocomplete"
  887. msgstr "自动补全"
  888. #: searx/templates/simple/preferences/autocomplete.html:15
  889. msgid "Find stuff as you type"
  890. msgstr "自动补全字词"
  891. #: searx/templates/simple/preferences/center_alignment.html:2
  892. msgid "Center Alignment"
  893. msgstr "居中对齐"
  894. #: searx/templates/simple/preferences/center_alignment.html:14
  895. msgid "Displays results in the center of the page (Oscar layout)."
  896. msgstr "在页面中心显示结果(Oscar 布局)。"
  897. #: searx/templates/simple/preferences/cookies.html:2
  898. msgid ""
  899. "This is the list of cookies and their values SearXNG is storing on your "
  900. "computer."
  901. msgstr "这是 SearXNG 在您的计算机上存储的 Cookie 的列表及相应的值。"
  902. #: searx/templates/simple/preferences/cookies.html:3
  903. msgid "With that list, you can assess SearXNG transparency."
  904. msgstr "您可以凭此列表评估 SearXNG 的透明度。"
  905. #: searx/templates/simple/preferences/cookies.html:9
  906. msgid "Cookie name"
  907. msgstr "Cookie 名称"
  908. #: searx/templates/simple/preferences/cookies.html:10
  909. msgid "Value"
  910. msgstr "值"
  911. #: searx/templates/simple/preferences/cookies.html:23
  912. msgid "Search URL of the currently saved preferences"
  913. msgstr "目前偏好设定的搜索链接"
  914. #: searx/templates/simple/preferences/cookies.html:32
  915. msgid ""
  916. "Note: specifying custom settings in the search URL can reduce privacy by "
  917. "leaking data to the clicked result sites."
  918. msgstr ""
  919. "注意:当您从 SearXNG 搜索结果页点击进入一个网站时,SearXNG 搜索结果页的 URL 将会在请求头的 Referer "
  920. "字段中发送给目标网站服务器。如果您的设置了自定义搜索,URL 中将会包含您的个性化设置参数(如语言等),它们会被目标网站得知,这不利于您的隐私。"
  921. #: searx/templates/simple/preferences/cookies.html:35
  922. msgid "URL to restore your preferences in another browser"
  923. msgstr "用于在其他浏览器上还原您的偏好设置的 URL"
  924. #: searx/templates/simple/preferences/cookies.html:43
  925. msgid ""
  926. "Specifying custom settings in the preferences URL can be used to sync "
  927. "preferences across devices."
  928. msgstr "在首选项 URL 中指定可跨设备同步的偏好设置。"
  929. #: searx/templates/simple/preferences/cookies.html:46
  930. msgid "Copy preferences hash"
  931. msgstr "复制配置哈希值"
  932. #: searx/templates/simple/preferences/cookies.html:57
  933. msgid "Insert copied preferences hash (without URL) to restore"
  934. msgstr "插入复制的(不带URL)首选项哈希,以恢复"
  935. #: searx/templates/simple/preferences/cookies.html:59
  936. msgid "Preferences hash"
  937. msgstr "偏好哈希"
  938. #: searx/templates/simple/preferences/doi_resolver.html:2
  939. msgid "Open Access DOI resolver"
  940. msgstr "开放访问 DOI 解析器"
  941. #: searx/templates/simple/preferences/doi_resolver.html:14
  942. msgid "Select service used by DOI rewrite"
  943. msgstr "选择 DOI 重写使用的服务"
  944. #: searx/templates/simple/preferences/engines.html:9
  945. msgid ""
  946. "This tab does not exists in the user interface, but you can search in "
  947. "these engines by its !bangs."
  948. msgstr "这个标签页在用户界面中不存在,但你可以使用 !bang 对这些引擎进行搜索。"
  949. #: searx/templates/simple/preferences/engines.html:15
  950. msgid "Enable all"
  951. msgstr "启用所有"
  952. #: searx/templates/simple/preferences/engines.html:16
  953. msgid "Disable all"
  954. msgstr "禁用所有"
  955. #: searx/templates/simple/preferences/engines.html:25
  956. msgid "!bang"
  957. msgstr "!bang"
  958. #: searx/templates/simple/preferences/engines.html:26
  959. msgid "Supports selected language"
  960. msgstr "支持选定的语言"
  961. #: searx/templates/simple/preferences/engines.html:29
  962. msgid "Weight"
  963. msgstr "权重"
  964. #: searx/templates/simple/preferences/engines.html:33
  965. msgid "Max time"
  966. msgstr "最大用时"
  967. #: searx/templates/simple/preferences/favicon.html:2
  968. msgid "Favicon Resolver"
  969. msgstr "网站图标"
  970. #: searx/templates/simple/preferences/favicon.html:15
  971. msgid "Display favicons near search results"
  972. msgstr "在搜索结果附近显示网站图标"
  973. #: searx/templates/simple/preferences/footer.html:2
  974. msgid ""
  975. "These settings are stored in your cookies, this allows us not to store "
  976. "this data about you."
  977. msgstr "这些设置被存储在您的 Cookie 中,这种保存设置的方式使我们不必保存您的设置数据。"
  978. #: searx/templates/simple/preferences/footer.html:3
  979. msgid ""
  980. "These cookies serve your sole convenience, we don't use these cookies to "
  981. "track you."
  982. msgstr "这些 Cookie 信息用于辅助您便捷地使用本服务,我们绝不利用这些信息来跟踪您。"
  983. #: searx/templates/simple/preferences/footer.html:6
  984. msgid "Save"
  985. msgstr "保存"
  986. #: searx/templates/simple/preferences/footer.html:9
  987. msgid "Reset defaults"
  988. msgstr "恢复默认设置"
  989. #: searx/templates/simple/preferences/footer.html:13
  990. msgid "Back"
  991. msgstr "返回"
  992. #: searx/templates/simple/preferences/hotkeys.html:2
  993. msgid "Hotkeys"
  994. msgstr "热键"
  995. #: searx/templates/simple/preferences/hotkeys.html:13
  996. msgid "Vim-like"
  997. msgstr "Vim 布局"
  998. #: searx/templates/simple/preferences/hotkeys.html:18
  999. msgid ""
  1000. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  1001. "key on main or result page to get help."
  1002. msgstr "使用热键进行导航(需要 JavaScript)。在主页或搜索结果页按“h”键获取帮助。"
  1003. #: searx/templates/simple/preferences/image_proxy.html:2
  1004. msgid "Image proxy"
  1005. msgstr "代理图片"
  1006. #: searx/templates/simple/preferences/image_proxy.html:14
  1007. msgid "Proxying image results through SearXNG"
  1008. msgstr "通过 SearXNG 代理访问图片结果"
  1009. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1010. msgid "Infinite scroll"
  1011. msgstr "无限滚动(瀑布流)"
  1012. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1013. msgid "Automatically load next page when scrolling to bottom of current page"
  1014. msgstr "滚动到当前页面底部时自动加载下一页"
  1015. #: searx/templates/simple/preferences/language.html:24
  1016. msgid "What language do you prefer for search?"
  1017. msgstr "您偏好搜索哪种语言?"
  1018. #: searx/templates/simple/preferences/language.html:25
  1019. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1020. msgstr "选择自动检测可使 SearXNG 检测您的检索关键词的语言。"
  1021. #: searx/templates/simple/preferences/method.html:2
  1022. msgid "HTTP Method"
  1023. msgstr "HTTP 方法"
  1024. #: searx/templates/simple/preferences/method.html:14
  1025. msgid "Change how forms are submitted"
  1026. msgstr "更改表格提交的方式"
  1027. #: searx/templates/simple/preferences/query_in_title.html:2
  1028. msgid "Query in the page's title"
  1029. msgstr "页面标题显示查询关键词"
  1030. #: searx/templates/simple/preferences/query_in_title.html:14
  1031. msgid ""
  1032. "When enabled, the result page's title contains your query. Your browser "
  1033. "can record this title"
  1034. msgstr "当启用时,结果页的标题包含你的查询关键词。你的浏览器可以记录这个标题"
  1035. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1036. msgid "Results on new tabs"
  1037. msgstr "在新标签页打开搜索结果"
  1038. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1039. msgid "Open result links on new browser tabs"
  1040. msgstr "在新标签页打开搜索结果中的链接"
  1041. #: searx/templates/simple/preferences/safesearch.html:20
  1042. msgid "Filter content"
  1043. msgstr "内容过滤"
  1044. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1045. msgid "Search on category select"
  1046. msgstr "在选中类别时立即进行搜索"
  1047. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1048. msgid ""
  1049. "Perform search immediately if a category selected. Disable to select "
  1050. "multiple categories"
  1051. msgstr "当一个类别被指定时,立即执行搜索。禁用以选择多个类别"
  1052. #: searx/templates/simple/preferences/theme.html:2
  1053. msgid "Theme"
  1054. msgstr "主题"
  1055. #: searx/templates/simple/preferences/theme.html:14
  1056. msgid "Change SearXNG layout"
  1057. msgstr "更改 SearXNG 布局"
  1058. #: searx/templates/simple/preferences/theme.html:19
  1059. msgid "Theme style"
  1060. msgstr "主题样式"
  1061. #: searx/templates/simple/preferences/theme.html:31
  1062. msgid "Choose auto to follow your browser settings"
  1063. msgstr "选择自动以跟随您的浏览器设置"
  1064. #: searx/templates/simple/preferences/tokens.html:2
  1065. msgid "Engine tokens"
  1066. msgstr "引擎令牌"
  1067. #: searx/templates/simple/preferences/tokens.html:9
  1068. msgid "Access tokens for private engines"
  1069. msgstr "私有引擎的访问令牌"
  1070. #: searx/templates/simple/preferences/ui_locale.html:2
  1071. msgid "Interface language"
  1072. msgstr "界面语言"
  1073. #: searx/templates/simple/preferences/ui_locale.html:14
  1074. msgid "Change the language of the layout"
  1075. msgstr "更改界面语言"
  1076. #: searx/templates/simple/preferences/urlformatting.html:2
  1077. msgid "URL formatting"
  1078. msgstr "URL 格式"
  1079. #: searx/templates/simple/preferences/urlformatting.html:8
  1080. msgid "Pretty"
  1081. msgstr "美观"
  1082. #: searx/templates/simple/preferences/urlformatting.html:13
  1083. msgid "Full"
  1084. msgstr "完整"
  1085. #: searx/templates/simple/preferences/urlformatting.html:18
  1086. msgid "Host"
  1087. msgstr "主机"
  1088. #: searx/templates/simple/preferences/urlformatting.html:23
  1089. msgid "Change result URL formatting"
  1090. msgstr "更改结果 URL 格式"
  1091. #: searx/templates/simple/result_templates/code.html:13
  1092. msgid "repo"
  1093. msgstr "软件仓库"
  1094. #: searx/templates/simple/result_templates/default.html:6
  1095. #: searx/templates/simple/result_templates/files.html:8
  1096. #: searx/templates/simple/result_templates/files.html:11
  1097. msgid "show media"
  1098. msgstr "显示媒体"
  1099. #: searx/templates/simple/result_templates/default.html:6
  1100. #: searx/templates/simple/result_templates/files.html:8
  1101. msgid "hide media"
  1102. msgstr "隐藏媒体"
  1103. #: searx/templates/simple/result_templates/default.html:14
  1104. #: searx/templates/simple/result_templates/videos.html:14
  1105. msgid "This site did not provide any description."
  1106. msgstr "此站点未提供任何描述。"
  1107. #: searx/templates/simple/result_templates/files.html:38
  1108. #: searx/templates/simple/result_templates/images.html:22
  1109. #: searx/templates/simple/result_templates/torrent.html:11
  1110. msgid "Filesize"
  1111. msgstr "文件大小"
  1112. #: searx/templates/simple/result_templates/files.html:40
  1113. msgid "Date"
  1114. msgstr "日期"
  1115. #: searx/templates/simple/result_templates/files.html:42
  1116. #: searx/templates/simple/result_templates/paper.html:24
  1117. msgid "Type"
  1118. msgstr "输入"
  1119. #: searx/templates/simple/result_templates/images.html:20
  1120. msgid "Resolution"
  1121. msgstr "分辨率"
  1122. #: searx/templates/simple/result_templates/images.html:21
  1123. msgid "Format"
  1124. msgstr "格式"
  1125. #: searx/templates/simple/result_templates/images.html:24
  1126. msgid "Engine"
  1127. msgstr "引擎"
  1128. #: searx/templates/simple/result_templates/images.html:25
  1129. msgid "View source"
  1130. msgstr "查看来源"
  1131. #: searx/templates/simple/result_templates/map.html:12
  1132. msgid "address"
  1133. msgstr "地址"
  1134. #: searx/templates/simple/result_templates/map.html:43
  1135. msgid "show map"
  1136. msgstr "显示地图"
  1137. #: searx/templates/simple/result_templates/map.html:43
  1138. msgid "hide map"
  1139. msgstr "隐藏地图"
  1140. #: searx/templates/simple/result_templates/packages.html:12
  1141. msgid "Version"
  1142. msgstr "版本"
  1143. #: searx/templates/simple/result_templates/packages.html:18
  1144. msgid "Maintainer"
  1145. msgstr "维护者"
  1146. #: searx/templates/simple/result_templates/packages.html:24
  1147. msgid "Updated at"
  1148. msgstr "更新于"
  1149. #: searx/templates/simple/result_templates/packages.html:30
  1150. #: searx/templates/simple/result_templates/paper.html:25
  1151. msgid "Tags"
  1152. msgstr "标签"
  1153. #: searx/templates/simple/result_templates/packages.html:36
  1154. msgid "Popularity"
  1155. msgstr "流行"
  1156. #: searx/templates/simple/result_templates/packages.html:42
  1157. msgid "License"
  1158. msgstr "许可证"
  1159. #: searx/templates/simple/result_templates/packages.html:52
  1160. msgid "Project"
  1161. msgstr "项目"
  1162. #: searx/templates/simple/result_templates/packages.html:55
  1163. msgid "Project homepage"
  1164. msgstr "项目主页"
  1165. #: searx/templates/simple/result_templates/paper.html:5
  1166. msgid "Published date"
  1167. msgstr "发布日期"
  1168. #: searx/templates/simple/result_templates/paper.html:9
  1169. msgid "Journal"
  1170. msgstr "杂志"
  1171. #: searx/templates/simple/result_templates/paper.html:22
  1172. msgid "Editor"
  1173. msgstr "编者"
  1174. #: searx/templates/simple/result_templates/paper.html:23
  1175. msgid "Publisher"
  1176. msgstr "出版者"
  1177. #: searx/templates/simple/result_templates/paper.html:26
  1178. msgid "DOI"
  1179. msgstr "DOI"
  1180. #: searx/templates/simple/result_templates/paper.html:27
  1181. msgid "ISSN"
  1182. msgstr "ISSN"
  1183. #: searx/templates/simple/result_templates/paper.html:28
  1184. msgid "ISBN"
  1185. msgstr "ISBN"
  1186. #: searx/templates/simple/result_templates/paper.html:33
  1187. msgid "PDF"
  1188. msgstr "PDF"
  1189. #: searx/templates/simple/result_templates/paper.html:34
  1190. msgid "HTML"
  1191. msgstr "HTML"
  1192. #: searx/templates/simple/result_templates/torrent.html:6
  1193. msgid "magnet link"
  1194. msgstr "磁力链接"
  1195. #: searx/templates/simple/result_templates/torrent.html:7
  1196. msgid "torrent file"
  1197. msgstr "种子文件"
  1198. #: searx/templates/simple/result_templates/torrent.html:9
  1199. msgid "Seeder"
  1200. msgstr "做种用户"
  1201. #: searx/templates/simple/result_templates/torrent.html:9
  1202. msgid "Leecher"
  1203. msgstr "下载用户"
  1204. #: searx/templates/simple/result_templates/torrent.html:13
  1205. msgid "Number of Files"
  1206. msgstr "文件数"
  1207. #: searx/templates/simple/result_templates/videos.html:6
  1208. msgid "show video"
  1209. msgstr "显示视频"
  1210. #: searx/templates/simple/result_templates/videos.html:6
  1211. msgid "hide video"
  1212. msgstr "隐藏视频"
  1213. #~ msgid "Engine time (sec)"
  1214. #~ msgstr "搜索引擎时间(秒)"
  1215. #~ msgid "Page loads (sec)"
  1216. #~ msgstr "页面加载(秒)"
  1217. #~ msgid "Errors"
  1218. #~ msgstr "错误"
  1219. #~ msgid "CAPTCHA required"
  1220. #~ msgstr "要求验证码"
  1221. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1222. #~ msgstr "将支持 HTTPS 的 HTTP 链接改为 HTTPS 链接"
  1223. #~ msgid ""
  1224. #~ "Results are opened in the same "
  1225. #~ "window by default. This plugin "
  1226. #~ "overwrites the default behaviour to open"
  1227. #~ " links on new tabs/windows. (JavaScript "
  1228. #~ "required)"
  1229. #~ msgstr "搜索结果默认在原窗口打开。此插件能使其在新标签页或新窗口打开。(需启用 JavaScript)"
  1230. #~ msgid "Color"
  1231. #~ msgstr "颜色"
  1232. #~ msgid "Blue (default)"
  1233. #~ msgstr "蓝色(默认)"
  1234. #~ msgid "Violet"
  1235. #~ msgstr "紫色"
  1236. #~ msgid "Green"
  1237. #~ msgstr "绿色"
  1238. #~ msgid "Cyan"
  1239. #~ msgstr "青色"
  1240. #~ msgid "Orange"
  1241. #~ msgstr "橙色"
  1242. #~ msgid "Red"
  1243. #~ msgstr "红色"
  1244. #~ msgid "Category"
  1245. #~ msgstr "类别"
  1246. #~ msgid "Block"
  1247. #~ msgstr "阻止"
  1248. #~ msgid "original context"
  1249. #~ msgstr "原始上下文"
  1250. #~ msgid "Plugins"
  1251. #~ msgstr "插件"
  1252. #~ msgid "Answerers"
  1253. #~ msgstr "智能答复"
  1254. #~ msgid "Avg. time"
  1255. #~ msgstr "平均时间"
  1256. #~ msgid "show details"
  1257. #~ msgstr "显示详细信息"
  1258. #~ msgid "hide details"
  1259. #~ msgstr "隐藏详细信息"
  1260. #~ msgid "Load more..."
  1261. #~ msgstr "载入更多……"
  1262. #~ msgid "Loading..."
  1263. #~ msgstr "正在加载..."
  1264. #~ msgid "Change searx layout"
  1265. #~ msgstr "改变 searx 布局"
  1266. #~ msgid "Proxying image results through searx"
  1267. #~ msgstr "通过 searx 代理图片结果"
  1268. #~ msgid "This is the list of searx's instant answering modules."
  1269. #~ msgstr "这是 searx 的即时回答模块列表。"
  1270. #~ msgid ""
  1271. #~ "This is the list of cookies and"
  1272. #~ " their values searx is storing on "
  1273. #~ "your computer."
  1274. #~ msgstr "此列表展示了 searx 在您设备上存储的 cookie 信息。"
  1275. #~ msgid "With that list, you can assess searx transparency."
  1276. #~ msgstr "您可以基于此表格来评估 searx 的透明度。"
  1277. #~ msgid "It look like you are using searx first time."
  1278. #~ msgstr "看来这是您第一次使用 searx。"
  1279. #~ msgid "Please, try again later or find another searx instance."
  1280. #~ msgstr "请稍后再试,或寻找其它的 searx 实例替代。"
  1281. #~ msgid "Themes"
  1282. #~ msgstr "主题"
  1283. #~ msgid "Reliablity"
  1284. #~ msgstr ""
  1285. #~ msgid ""
  1286. #~ "When enabled, the result page's title"
  1287. #~ " contains your query. Your browser "
  1288. #~ "can record this title."
  1289. #~ msgstr ""
  1290. #~ msgid "Method"
  1291. #~ msgstr "方法"
  1292. #~ msgid ""
  1293. #~ "This tab does not show up for "
  1294. #~ "search results but you can search "
  1295. #~ "the engines listed here via bangs."
  1296. #~ msgstr ""
  1297. #~ msgid "Advanced settings"
  1298. #~ msgstr "高级设置"
  1299. #~ msgid "Close"
  1300. #~ msgstr "关闭"
  1301. #~ msgid "Language"
  1302. #~ msgstr "语言"
  1303. #~ msgid "broken"
  1304. #~ msgstr "故障"
  1305. #~ msgid "supported"
  1306. #~ msgstr "支持"
  1307. #~ msgid "not supported"
  1308. #~ msgstr "不支持"
  1309. #~ msgid "about"
  1310. #~ msgstr "关于"
  1311. #~ msgid "Avg."
  1312. #~ msgstr "平均"
  1313. #~ msgid "User Interface"
  1314. #~ msgstr "用户界面"
  1315. #~ msgid "Choose style for this theme"
  1316. #~ msgstr "选择此主题的样式"
  1317. #~ msgid "Style"
  1318. #~ msgstr "样式"
  1319. #~ msgid "Show advanced settings"
  1320. #~ msgstr "显示高级设置"
  1321. #~ msgid "Show advanced settings panel in the home page by default"
  1322. #~ msgstr "首页默认显示高级设置面板"
  1323. #~ msgid "Allow all"
  1324. #~ msgstr "全部允许"
  1325. #~ msgid "Disable all"
  1326. #~ msgstr "全部禁用"
  1327. #~ msgid "Selected language"
  1328. #~ msgstr "选择语言"
  1329. #~ msgid "Query"
  1330. #~ msgstr "查询"
  1331. #~ msgid "save"
  1332. #~ msgstr "保存"
  1333. #~ msgid "back"
  1334. #~ msgstr "返回"
  1335. #~ msgid "Links"
  1336. #~ msgstr "链接"
  1337. #~ msgid "RSS subscription"
  1338. #~ msgstr "RSS 订阅"
  1339. #~ msgid "Search results"
  1340. #~ msgstr "搜索结果"
  1341. #~ msgid "next page"
  1342. #~ msgstr "下一页"
  1343. #~ msgid "previous page"
  1344. #~ msgstr "上一页"
  1345. #~ msgid "Start search"
  1346. #~ msgstr "开始搜索"
  1347. #~ msgid "Clear search"
  1348. #~ msgstr "清除搜索"
  1349. #~ msgid "Clear"
  1350. #~ msgstr "清除"
  1351. #~ msgid "stats"
  1352. #~ msgstr "统计"
  1353. #~ msgid "Heads up!"
  1354. #~ msgstr "小心!"
  1355. #~ msgid "It look like you are using SearXNG first time."
  1356. #~ msgstr "这似乎是您首次使用 SearXNG。"
  1357. #~ msgid "Well done!"
  1358. #~ msgstr "很不错!"
  1359. #~ msgid "Settings saved successfully."
  1360. #~ msgstr "设置保存成功。"
  1361. #~ msgid "Oh snap!"
  1362. #~ msgstr "哦,糟糕!"
  1363. #~ msgid "Something went wrong."
  1364. #~ msgstr "出了些问题。"
  1365. #~ msgid "Date"
  1366. #~ msgstr "日期"
  1367. #~ msgid "Type"
  1368. #~ msgstr "类型"
  1369. #~ msgid "Get image"
  1370. #~ msgstr "获取图片"
  1371. #~ msgid "Center Alignment"
  1372. #~ msgstr ""
  1373. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1374. #~ msgstr ""
  1375. #~ msgid "preferences"
  1376. #~ msgstr "首选项"
  1377. #~ msgid "Scores per result"
  1378. #~ msgstr "各结果得分"
  1379. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1380. #~ msgstr "一个尊重隐私、可二次开发的元搜索引擎"
  1381. #~ msgid "No abstract is available for this publication."
  1382. #~ msgstr "此出版物没有可用的摘要。"
  1383. #~ msgid "Self Informations"
  1384. #~ msgstr "自身信息"
  1385. #~ msgid ""
  1386. #~ "Change how forms are submited, <a "
  1387. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1388. #~ " rel=\"external\">learn more about request "
  1389. #~ "methods</a>"
  1390. #~ msgstr ""
  1391. #~ "更改提交表单时使用的请求方法,<a "
  1392. #~ "href=\"https://zh.wikipedia.org/wiki/超文本传输协议#请求方法\" "
  1393. #~ "rel=\"external\">深入了解请求方法</a>"
  1394. #~ msgid ""
  1395. #~ "This plugin checks if the address "
  1396. #~ "of the request is a TOR exit "
  1397. #~ "node, and informs the user if it"
  1398. #~ " is, like check.torproject.org but from "
  1399. #~ "searxng."
  1400. #~ msgstr ""
  1401. #~ "该插件检查请求的 IP 地址是否为 Tor 出口节点,如果是则通知用户,可视为 "
  1402. #~ "searxng 中的 check.torproject.org 。"
  1403. #~ msgid ""
  1404. #~ "The TOR exit node list "
  1405. #~ "(https://check.torproject.org/exit-addresses) is "
  1406. #~ "unreachable."
  1407. #~ msgstr "无法获取 Tor 出口节点列表(https://check.torproject.org/exit-addresses)。"
  1408. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1409. #~ msgstr "你在使用 Tor。你的 IP 地址应该是{ip_address}."
  1410. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1411. #~ msgstr "你没有在使用 Tor。你的 IP 地址应该是{ip_address}."
  1412. #~ msgid ""
  1413. #~ "The could not download the list of"
  1414. #~ " Tor exit-nodes from "
  1415. #~ "https://check.torproject.org/exit-addresses."
  1416. #~ msgstr ""
  1417. #~ msgid ""
  1418. #~ "You are using Tor. It looks like"
  1419. #~ " you have this external IP address:"
  1420. #~ " {ip_address}."
  1421. #~ msgstr ""
  1422. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1423. #~ msgstr ""
  1424. #~ msgid "Autodetect search language"
  1425. #~ msgstr "自动检测搜索语言"
  1426. #~ msgid "Automatically detect the query search language and switch to it."
  1427. #~ msgstr "自动检测查询搜索语言并切换到它。"
  1428. #~ msgid "others"
  1429. #~ msgstr "其他"
  1430. #~ msgid ""
  1431. #~ "This tab does not show up for "
  1432. #~ "search results, but you can search "
  1433. #~ "the engines listed here via bangs."
  1434. #~ msgstr "这个标签页不会显示在搜索结果中,但您可以通过 ! 搜索这里列出的引擎。"
  1435. #~ msgid "Shortcut"
  1436. #~ msgstr "快捷键"
  1437. #~ msgid "!bang"
  1438. #~ msgstr ""
  1439. #~ msgid ""
  1440. #~ "This tab dues not exists in the"
  1441. #~ " user interface, but you can search"
  1442. #~ " in these engines by its !bangs."
  1443. #~ msgstr "这个标签页在用户界面中不存在,但你可以用 !bang 对这些引擎进行搜索"
  1444. #~ msgid "Engines cannot retrieve results."
  1445. #~ msgstr "引擎无法检索到结果。"
  1446. #~ msgid "Please, try again later or find another SearXNG instance."
  1447. #~ msgstr "请稍后再试,或换用其他 SearXNG 站点试试看。"
  1448. #~ msgid ""
  1449. #~ "Redirect to open-access versions of "
  1450. #~ "publications when available (plugin required)"
  1451. #~ msgstr "尽可能重定向到出版物的开放访问版本(需要插件)"
  1452. #~ msgid "Bang"
  1453. #~ msgstr "快捷方式"
  1454. #~ msgid ""
  1455. #~ "Change how forms are submitted, <a "
  1456. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1457. #~ " rel=\"external\">learn more about request "
  1458. #~ "methods</a>"
  1459. #~ msgstr ""
  1460. #~ "更改表单的提交方式, <a "
  1461. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1462. #~ " rel=\"external\">详细了解请求方法</a>"
  1463. #~ msgid "On"
  1464. #~ msgstr "启用"
  1465. #~ msgid "Off"
  1466. #~ msgstr "禁用"
  1467. #~ msgid "Enabled"
  1468. #~ msgstr "启用"
  1469. #~ msgid "Disabled"
  1470. #~ msgstr "禁用"
  1471. #~ msgid ""
  1472. #~ "Perform search immediately if a category"
  1473. #~ " selected. Disable to select multiple "
  1474. #~ "categories. (JavaScript required)"
  1475. #~ msgstr "选择一个类别后立即开始搜索。禁用后可以一次选中多个类别。(需启用 JavaScript)"
  1476. #~ msgid "Vim-like hotkeys"
  1477. #~ msgstr "Vim 式快捷键"
  1478. #~ msgid ""
  1479. #~ "Navigate search results with Vim-like"
  1480. #~ " hotkeys (JavaScript required). Press \"h\""
  1481. #~ " key on main or result page to"
  1482. #~ " get help."
  1483. #~ msgstr "使用 Vim 式快捷键浏览搜索结果(需启用 JavaScript)。在主页或结果页面按“h”键获取帮助。"
  1484. #~ msgid ""
  1485. #~ "we didn't find any results. Please "
  1486. #~ "use another query or search in "
  1487. #~ "more categories."
  1488. #~ msgstr "我们没有找到任何结果。请使用其他关键词,或在更多类别中搜索。"
  1489. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1490. #~ msgstr "重写结果的主机名或基于主机名移除结果"
  1491. #~ msgid "Bytes"
  1492. #~ msgstr "字节"
  1493. #~ msgid "kiB"
  1494. #~ msgstr "kiB"
  1495. #~ msgid "MiB"
  1496. #~ msgstr "MiB"
  1497. #~ msgid "GiB"
  1498. #~ msgstr "GiB"
  1499. #~ msgid "TiB"
  1500. #~ msgstr "TiB"
  1501. #~ msgid "Hostname replace"
  1502. #~ msgstr "主机名替换"
  1503. #~ msgid "Error!"
  1504. #~ msgstr "错误!"
  1505. #~ msgid "Engines cannot retrieve results"
  1506. #~ msgstr "引擎无法检索到结果"
  1507. #~ msgid "Start submiting a new issue on GitHub"
  1508. #~ msgstr "在 GitHub 上提交 Issue"
  1509. #~ msgid "dummy"
  1510. #~ msgstr ""