messages.po 50 KB

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