messages.po 52 KB

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