messages.po 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953
  1. # Chinese (Traditional, Taiwan) translations for .
  2. # Copyright (C) 2020 ORGANIZATION
  3. # This file is distributed under the same license as the project.
  4. #
  5. # Translators:
  6. # FIRST AUTHOR <EMAIL@ADDRESS>, 2016
  7. # 黃柏諺 <s8321414@gmail.com>, 2017,2019
  8. # Marc Abonce Seguin, 2019
  9. # Mingye Wang <arthur200126@gmail.com>, 2018
  10. # 黃柏諺 <s8321414@gmail.com>, 2020
  11. # Markus Heiser <markus.heiser@darmarit.de>, 2022.
  12. # GooGuJiang <gu@gmoe.cc>, 2022.
  13. # tjvfxtiwdr <tjvfxtiwdr@daimashili.com>, 2022.
  14. # Grey <elohim@gmail.com>, 2022.
  15. # return42 <markus.heiser@darmarit.de>, 2023.
  16. # nogb <u8cn71wq@yogibo.anonaddy.me>, 2023.
  17. # nonepork <ptohrek@gmail.com>, 2023.
  18. # proton-penguin <cgshyuankai@proton.me>, 2023.
  19. # kirisameSoup <kirisoup@skiff.com>, 2023.
  20. # return42 <return42@users.noreply.translate.codeberg.org>, 2024, 2025.
  21. # shadow3x3x3 <shadow3x3x3@users.noreply.translate.codeberg.org>, 2024, 2025.
  22. # Right202209 <Right202209@users.noreply.translate.codeberg.org>, 2024.
  23. # morenewsavailable
  24. # <morenewsavailable@users.noreply.translate.codeberg.org>, 2024, 2025.
  25. # PeterDaveHello <PeterDaveHello@users.noreply.translate.codeberg.org>,
  26. # 2024.
  27. # pdwalker <pdwalker@users.noreply.translate.codeberg.org>, 2024, 2025.
  28. # hugoalh <hugoalh@users.noreply.translate.codeberg.org>, 2024, 2025.
  29. # Anonymous <anonymous@users.noreply.translate.codeberg.org>, 2025.
  30. # PeterDaveHello <peterdavehello@users.noreply.translate.codeberg.org>, 2025.
  31. # nogb <nogb@users.noreply.translate.codeberg.org>, 2025.
  32. # proton-penguin <proton-penguin@users.noreply.translate.codeberg.org>, 2025.
  33. # kirisameSoup <kirisamesoup@users.noreply.translate.codeberg.org>, 2025.
  34. # Right202209 <right202209@users.noreply.translate.codeberg.org>, 2025.
  35. # nonepork <nonepork@users.noreply.translate.codeberg.org>, 2025.
  36. msgid ""
  37. msgstr ""
  38. "Project-Id-Version: searx\n"
  39. "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
  40. "POT-Creation-Date: 2025-01-06 15:28+0000\n"
  41. "PO-Revision-Date: 2025-01-06 15:53+0000\n"
  42. "Last-Translator: pdwalker <pdwalker@users.noreply.translate.codeberg.org>\n"
  43. "Language-Team: Chinese (Traditional Han script) <https://"
  44. "translate.codeberg.org/projects/searxng/searxng/zh_Hant/>\n"
  45. "Language: zh_Hant_TW\n"
  46. "MIME-Version: 1.0\n"
  47. "Content-Type: text/plain; charset=utf-8\n"
  48. "Content-Transfer-Encoding: 8bit\n"
  49. "Plural-Forms: nplurals=1; plural=0;\n"
  50. "X-Generator: Weblate 5.9.2\n"
  51. "Generated-By: Babel 2.16.0\n"
  52. #. CONSTANT_NAMES['NO_SUBGROUPING']
  53. #: searx/searxng.msg
  54. msgid "without further subgrouping"
  55. msgstr "無有進一步分組"
  56. #. CONSTANT_NAMES['DEFAULT_CATEGORY']
  57. #: searx/searxng.msg
  58. msgid "other"
  59. msgstr "其他"
  60. #. CATEGORY_NAMES['FILES']
  61. #: searx/searxng.msg
  62. msgid "files"
  63. msgstr "檔案"
  64. #. CATEGORY_NAMES['GENERAL']
  65. #: searx/searxng.msg
  66. msgid "general"
  67. msgstr "一般"
  68. #. CATEGORY_NAMES['MUSIC']
  69. #: searx/searxng.msg
  70. msgid "music"
  71. msgstr "音樂"
  72. #. CATEGORY_NAMES['SOCIAL_MEDIA']
  73. #: searx/searxng.msg
  74. msgid "social media"
  75. msgstr "社群媒體"
  76. #. CATEGORY_NAMES['IMAGES']
  77. #: searx/searxng.msg
  78. msgid "images"
  79. msgstr "圖片"
  80. #. CATEGORY_NAMES['VIDEOS']
  81. #: searx/searxng.msg
  82. msgid "videos"
  83. msgstr "影片"
  84. #. CATEGORY_NAMES['RADIO']
  85. #: searx/engines/radio_browser.py:103 searx/searxng.msg
  86. msgid "radio"
  87. msgstr "廣播電臺"
  88. #. CATEGORY_NAMES['TV']
  89. #: searx/searxng.msg
  90. msgid "tv"
  91. msgstr "電視"
  92. #. CATEGORY_NAMES['IT']
  93. #: searx/searxng.msg
  94. msgid "it"
  95. msgstr "資訊科技"
  96. #. CATEGORY_NAMES['NEWS']
  97. #: searx/searxng.msg
  98. msgid "news"
  99. msgstr "新聞"
  100. #. CATEGORY_NAMES['MAP']
  101. #: searx/searxng.msg
  102. msgid "map"
  103. msgstr "地圖"
  104. #. CATEGORY_NAMES['ONIONS']
  105. #: searx/searxng.msg
  106. msgid "onions"
  107. msgstr "洋蔥"
  108. #. CATEGORY_NAMES['SCIENCE']
  109. #: searx/searxng.msg
  110. msgid "science"
  111. msgstr "科學"
  112. #. CATEGORY_GROUPS['APPS']
  113. #: searx/searxng.msg
  114. msgid "apps"
  115. msgstr "應用程式"
  116. #. CATEGORY_GROUPS['DICTIONARIES']
  117. #: searx/searxng.msg
  118. msgid "dictionaries"
  119. msgstr "字典"
  120. #. CATEGORY_GROUPS['LYRICS']
  121. #: searx/searxng.msg
  122. msgid "lyrics"
  123. msgstr "歌詞"
  124. #. CATEGORY_GROUPS['PACKAGES']
  125. #: searx/searxng.msg
  126. msgid "packages"
  127. msgstr "套件"
  128. #. CATEGORY_GROUPS['Q_A']
  129. #: searx/searxng.msg
  130. msgid "q&a"
  131. msgstr "問答"
  132. #. CATEGORY_GROUPS['REPOS']
  133. #: searx/searxng.msg
  134. msgid "repos"
  135. msgstr "版本庫"
  136. #. CATEGORY_GROUPS['SOFTWARE_WIKIS']
  137. #: searx/searxng.msg
  138. msgid "software wikis"
  139. msgstr "軟體維基"
  140. #. CATEGORY_GROUPS['WEB']
  141. #: searx/searxng.msg
  142. msgid "web"
  143. msgstr "網站"
  144. #. CATEGORY_GROUPS['SCIENTIFIC PUBLICATIONS']
  145. #: searx/searxng.msg
  146. msgid "scientific publications"
  147. msgstr "學術文章"
  148. #. STYLE_NAMES['AUTO']
  149. #: searx/searxng.msg
  150. msgid "auto"
  151. msgstr "自動"
  152. #. STYLE_NAMES['LIGHT']
  153. #: searx/searxng.msg
  154. msgid "light"
  155. msgstr "明亮"
  156. #. STYLE_NAMES['DARK']
  157. #: searx/searxng.msg
  158. msgid "dark"
  159. msgstr "黑暗"
  160. #. STYLE_NAMES['BLACK']
  161. #: searx/searxng.msg
  162. msgid "black"
  163. msgstr "黑色"
  164. #. BRAND_CUSTOM_LINKS['UPTIME']
  165. #: searx/searxng.msg
  166. msgid "Uptime"
  167. msgstr "上線時間"
  168. #. BRAND_CUSTOM_LINKS['ABOUT']
  169. #: searx/searxng.msg searx/templates/simple/base.html:50
  170. msgid "About"
  171. msgstr "關於"
  172. #. WEATHER_TERMS['AVERAGE TEMP.']
  173. #: searx/engines/wttr.py:32 searx/searxng.msg
  174. msgid "Average temp."
  175. msgstr "平均溫度"
  176. #. WEATHER_TERMS['CLOUD COVER']
  177. #: searx/engines/open_meteo.py:91 searx/searxng.msg
  178. msgid "Cloud cover"
  179. msgstr "雲量"
  180. #. WEATHER_TERMS['CONDITION']
  181. #: searx/engines/duckduckgo_weather.py:45 searx/engines/wttr.py:51
  182. #: searx/searxng.msg
  183. msgid "Condition"
  184. msgstr "條件"
  185. #. WEATHER_TERMS['CURRENT CONDITION']
  186. #: searx/engines/duckduckgo_weather.py:118 searx/engines/wttr.py:104
  187. #: searx/searxng.msg
  188. msgid "Current condition"
  189. msgstr "目前條件"
  190. #. WEATHER_TERMS['EVENING']
  191. #: searx/engines/wttr.py:100 searx/searxng.msg
  192. msgid "Evening"
  193. msgstr "傍晚"
  194. #. WEATHER_TERMS['FEELS LIKE']
  195. #: searx/engines/duckduckgo_weather.py:53 searx/engines/open_meteo.py:81
  196. #: searx/engines/wttr.py:59 searx/searxng.msg
  197. msgid "Feels like"
  198. msgstr "體感氣溫"
  199. #. WEATHER_TERMS['HUMIDITY']
  200. #: searx/engines/duckduckgo_weather.py:64 searx/engines/open_meteo.py:93
  201. #: searx/engines/wttr.py:68 searx/searxng.msg
  202. msgid "Humidity"
  203. msgstr "溼度"
  204. #. WEATHER_TERMS['MAX TEMP.']
  205. #: searx/engines/duckduckgo_weather.py:77 searx/engines/wttr.py:34
  206. #: searx/searxng.msg
  207. msgid "Max temp."
  208. msgstr "最高溫度"
  209. #. WEATHER_TERMS['MIN TEMP.']
  210. #: searx/engines/duckduckgo_weather.py:73 searx/engines/wttr.py:33
  211. #: searx/searxng.msg
  212. msgid "Min temp."
  213. msgstr "最低溫"
  214. #. WEATHER_TERMS['MORNING']
  215. #: searx/engines/wttr.py:100 searx/searxng.msg
  216. msgid "Morning"
  217. msgstr "早上"
  218. #. WEATHER_TERMS['NIGHT']
  219. #: searx/engines/wttr.py:100 searx/searxng.msg
  220. msgid "Night"
  221. msgstr "夜晚"
  222. #. WEATHER_TERMS['NOON']
  223. #: searx/engines/wttr.py:100 searx/searxng.msg
  224. msgid "Noon"
  225. msgstr "中午"
  226. #. WEATHER_TERMS['PRESSURE']
  227. #: searx/engines/open_meteo.py:95 searx/searxng.msg
  228. msgid "Pressure"
  229. msgstr "氣壓"
  230. #. WEATHER_TERMS['SUNRISE']
  231. #: searx/engines/duckduckgo_weather.py:81 searx/engines/wttr.py:36
  232. #: searx/searxng.msg
  233. msgid "Sunrise"
  234. msgstr "日出"
  235. #. WEATHER_TERMS['SUNSET']
  236. #: searx/engines/duckduckgo_weather.py:82 searx/engines/wttr.py:37
  237. #: searx/searxng.msg
  238. msgid "Sunset"
  239. msgstr "日落"
  240. #. WEATHER_TERMS['TEMPERATURE']
  241. #: searx/engines/duckduckgo_weather.py:48 searx/engines/open_meteo.py:76
  242. #: searx/engines/wttr.py:55 searx/searxng.msg
  243. msgid "Temperature"
  244. msgstr "氣溫"
  245. #. WEATHER_TERMS['UV INDEX']
  246. #: searx/engines/duckduckgo_weather.py:80 searx/engines/wttr.py:35
  247. #: searx/searxng.msg
  248. msgid "UV index"
  249. msgstr "紫外線指數"
  250. #. WEATHER_TERMS['VISIBILITY']
  251. #: searx/engines/duckduckgo_weather.py:62 searx/engines/wttr.py:66
  252. #: searx/searxng.msg
  253. msgid "Visibility"
  254. msgstr "能見度"
  255. #. WEATHER_TERMS['WIND']
  256. #: searx/engines/duckduckgo_weather.py:58 searx/engines/open_meteo.py:86
  257. #: searx/engines/wttr.py:62 searx/searxng.msg
  258. msgid "Wind"
  259. msgstr "風"
  260. #. SOCIAL_MEDIA_TERMS['SUBSCRIBERS']
  261. #: searx/engines/lemmy.py:85 searx/searxng.msg
  262. msgid "subscribers"
  263. msgstr "訂閱數"
  264. #. SOCIAL_MEDIA_TERMS['POSTS']
  265. #: searx/engines/lemmy.py:86 searx/searxng.msg
  266. msgid "posts"
  267. msgstr "帖文"
  268. #. SOCIAL_MEDIA_TERMS['ACTIVE USERS']
  269. #: searx/engines/lemmy.py:87 searx/searxng.msg
  270. msgid "active users"
  271. msgstr "活躍使用者"
  272. #. SOCIAL_MEDIA_TERMS['COMMENTS']
  273. #: searx/engines/discourse.py:157 searx/engines/hackernews.py:82
  274. #: searx/engines/lemmy.py:130 searx/searxng.msg
  275. msgid "comments"
  276. msgstr "留言"
  277. #. SOCIAL_MEDIA_TERMS['USER']
  278. #: searx/engines/lemmy.py:129 searx/engines/lemmy.py:164 searx/searxng.msg
  279. msgid "user"
  280. msgstr "使用者"
  281. #. SOCIAL_MEDIA_TERMS['COMMUNITY']
  282. #: searx/engines/lemmy.py:131 searx/engines/lemmy.py:165 searx/searxng.msg
  283. msgid "community"
  284. msgstr "社群"
  285. #. SOCIAL_MEDIA_TERMS['POINTS']
  286. #: searx/engines/hackernews.py:82 searx/searxng.msg
  287. msgid "points"
  288. msgstr "積分"
  289. #. SOCIAL_MEDIA_TERMS['TITLE']
  290. #: searx/searxng.msg
  291. msgid "title"
  292. msgstr "標題"
  293. #. SOCIAL_MEDIA_TERMS['AUTHOR']
  294. #: searx/engines/hackernews.py:85 searx/searxng.msg
  295. msgid "author"
  296. msgstr "作者"
  297. #. SOCIAL_MEDIA_TERMS['THREAD OPEN']
  298. #: searx/engines/discourse.py:149 searx/searxng.msg
  299. msgid "open"
  300. msgstr "開啟"
  301. #. SOCIAL_MEDIA_TERMS['THREAD CLOSED']
  302. #: searx/engines/discourse.py:149 searx/searxng.msg
  303. msgid "closed"
  304. msgstr "已關閉"
  305. #. SOCIAL_MEDIA_TERMS['THREAD ANSWERED']
  306. #: searx/engines/discourse.py:160 searx/searxng.msg
  307. msgid "answered"
  308. msgstr "已解答"
  309. #: searx/webapp.py:323
  310. msgid "No item found"
  311. msgstr "找不到項目"
  312. #: searx/engines/qwant.py:288
  313. #: searx/templates/simple/result_templates/images.html:23 searx/webapp.py:325
  314. msgid "Source"
  315. msgstr "來源"
  316. #: searx/webapp.py:327
  317. msgid "Error loading the next page"
  318. msgstr "載入下個頁面時發生錯誤"
  319. #: searx/webapp.py:492 searx/webapp.py:900
  320. msgid "Invalid settings, please edit your preferences"
  321. msgstr "無效的設定,請編輯您的偏好設定"
  322. #: searx/webapp.py:508
  323. msgid "Invalid settings"
  324. msgstr "無效的設定"
  325. #: searx/webapp.py:585 searx/webapp.py:675
  326. msgid "search error"
  327. msgstr "搜尋錯誤"
  328. #: searx/webutils.py:36
  329. msgid "timeout"
  330. msgstr "超時"
  331. #: searx/webutils.py:37
  332. msgid "parsing error"
  333. msgstr "解析錯誤"
  334. #: searx/webutils.py:38
  335. msgid "HTTP protocol error"
  336. msgstr "HTTP 協議錯誤"
  337. #: searx/webutils.py:39
  338. msgid "network error"
  339. msgstr "網路錯誤"
  340. #: searx/webutils.py:40
  341. msgid "SSL error: certificate validation has failed"
  342. msgstr "SSL錯誤:証書驗證失敗"
  343. #: searx/webutils.py:42
  344. msgid "unexpected crash"
  345. msgstr "意外崩潰"
  346. #: searx/webutils.py:49
  347. msgid "HTTP error"
  348. msgstr "HTTP 錯誤"
  349. #: searx/webutils.py:50
  350. msgid "HTTP connection error"
  351. msgstr "HTTP 連接錯誤"
  352. #: searx/webutils.py:56
  353. msgid "proxy error"
  354. msgstr "代理錯誤"
  355. #: searx/webutils.py:57
  356. msgid "CAPTCHA"
  357. msgstr "驗證碼"
  358. #: searx/webutils.py:58
  359. msgid "too many requests"
  360. msgstr "頻繁請求"
  361. #: searx/webutils.py:59
  362. msgid "access denied"
  363. msgstr "拒絕存取"
  364. #: searx/webutils.py:60
  365. msgid "server API error"
  366. msgstr "伺服器 API 錯誤"
  367. #: searx/webutils.py:79
  368. msgid "Suspended"
  369. msgstr "暫停服務"
  370. #: searx/webutils.py:314
  371. msgid "{minutes} minute(s) ago"
  372. msgstr "{minutes} 分鐘前"
  373. #: searx/webutils.py:315
  374. msgid "{hours} hour(s), {minutes} minute(s) ago"
  375. msgstr "{hours} 小時 {minutes} 分鐘前"
  376. #: searx/answerers/random/answerer.py:76
  377. msgid "Random value generator"
  378. msgstr "隨機數值產生器"
  379. #: searx/answerers/random/answerer.py:77
  380. msgid "Generate different random values"
  381. msgstr "生成不同的隨機數值"
  382. #: searx/answerers/statistics/answerer.py:50
  383. msgid "Statistics functions"
  384. msgstr "統計功能"
  385. #: searx/answerers/statistics/answerer.py:51
  386. msgid "Compute {functions} of the arguments"
  387. msgstr "計算 {functions} 參數"
  388. #: searx/engines/mozhi.py:57
  389. msgid "Synonyms"
  390. msgstr "同義詞"
  391. #: searx/engines/openstreetmap.py:159
  392. msgid "Get directions"
  393. msgstr "取得路線"
  394. #: searx/engines/pdbe.py:96
  395. msgid "{title} (OBSOLETE)"
  396. msgstr "{title} (已過時)"
  397. #: searx/engines/pdbe.py:103
  398. msgid "This entry has been superseded by"
  399. msgstr "此條目已被取代"
  400. #: searx/engines/qwant.py:290
  401. msgid "Channel"
  402. msgstr "頻道"
  403. #: searx/engines/radio_browser.py:105
  404. msgid "bitrate"
  405. msgstr "位元速率"
  406. #: searx/engines/radio_browser.py:106
  407. msgid "votes"
  408. msgstr "投票"
  409. #: searx/engines/radio_browser.py:107
  410. msgid "clicks"
  411. msgstr "點選"
  412. #: searx/engines/seekr.py:193 searx/engines/yummly.py:71
  413. #: searx/engines/zlibrary.py:137
  414. msgid "Language"
  415. msgstr "語系"
  416. #: searx/engines/semantic_scholar.py:78
  417. msgid ""
  418. "{numCitations} citations from the year {firstCitationVelocityYear} to "
  419. "{lastCitationVelocityYear}"
  420. msgstr ""
  421. "{firstCitationVelocityYear} 至 {lastCitationVelocityYear} 間被引用 "
  422. "{numCitations} 次"
  423. #: searx/engines/tineye.py:45
  424. msgid ""
  425. "Could not read that image url. This may be due to an unsupported file "
  426. "format. TinEye only supports images that are JPEG, PNG, GIF, BMP, TIFF or"
  427. " WebP."
  428. msgstr "無法存取該影象網址。這可能是因為不支援的文件格式造成的。TinEye只支援JPEG、PNG"
  429. "、GIF、BMP、TIFF或WebP的影像。"
  430. #: searx/engines/tineye.py:51
  431. msgid ""
  432. "The image is too simple to find matches. TinEye requires a basic level of"
  433. " visual detail to successfully identify matches."
  434. msgstr "圖片訊息量過少,無法找到相符的結果。TinEye需要一個更基礎的圖片細節以成功辨識"
  435. "相符的結果。"
  436. #: searx/engines/tineye.py:57
  437. msgid "The image could not be downloaded."
  438. msgstr "圖片無法下載。。"
  439. #: searx/engines/zlibrary.py:138
  440. msgid "Book rating"
  441. msgstr "書評級"
  442. #: searx/engines/zlibrary.py:139
  443. msgid "File quality"
  444. msgstr "文件品質"
  445. #: searx/plugins/calculator.py:18
  446. msgid "Calculate mathematical expressions via the search bar"
  447. msgstr "藉由搜尋欄計算數學式"
  448. #: searx/plugins/hash_plugin.py:10
  449. msgid "Converts strings to different hash digests."
  450. msgstr "將字串裝換為不同的雜湊摘要值。"
  451. #: searx/plugins/hash_plugin.py:38
  452. msgid "hash digest"
  453. msgstr "雜湊摘要值"
  454. #: searx/plugins/hostnames.py:103
  455. msgid "Hostnames plugin"
  456. msgstr "主機名稱外掛"
  457. #: searx/plugins/hostnames.py:104
  458. msgid "Rewrite hostnames, remove results or prioritize them based on the hostname"
  459. msgstr "重寫主機名稱、移除結果或根據主機名稱確定其優先級別"
  460. #: searx/plugins/oa_doi_rewrite.py:12
  461. msgid "Open Access DOI rewrite"
  462. msgstr "開放存取 DOI 重寫"
  463. #: searx/plugins/oa_doi_rewrite.py:13
  464. msgid ""
  465. "Avoid paywalls by redirecting to open-access versions of publications "
  466. "when available"
  467. msgstr "盡可能重新導向至出版品的開放存取版本,以避免收費牆"
  468. #: searx/plugins/self_info.py:9
  469. msgid "Self Information"
  470. msgstr "自身訊息"
  471. #: searx/plugins/self_info.py:10
  472. msgid ""
  473. "Displays your IP if the query is \"ip\" and your user agent if the query "
  474. "contains \"user agent\"."
  475. msgstr "若搜尋字串為「ip」則顯示您的 IP,而若是「user "
  476. "agent」則顯示您的使用者代理字串。"
  477. #: searx/plugins/self_info.py:28
  478. msgid "Your IP is: "
  479. msgstr "您的 IP 是: "
  480. #: searx/plugins/self_info.py:31
  481. msgid "Your user-agent is: "
  482. msgstr "你的用戶代理是: "
  483. #: searx/plugins/tor_check.py:24
  484. msgid "Tor check plugin"
  485. msgstr "Tor 網路檢測"
  486. #: searx/plugins/tor_check.py:27
  487. msgid ""
  488. "This plugin checks if the address of the request is a Tor exit-node, and "
  489. "informs the user if it is; like check.torproject.org, but from SearXNG."
  490. msgstr "該外掛程式檢查請求的位址是否是 Tor 出口節點,並通知使用者是否是;類似 "
  491. "check.torproject.org,但來自 SearXNG。"
  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-"
  497. "addresses"
  498. #: searx/plugins/tor_check.py:77
  499. msgid ""
  500. "You are using Tor and it looks like you have this external IP address: "
  501. "{ip_address}"
  502. msgstr "您似乎在使用 Tor,您的外部 IP 地址為: {ip_address}"
  503. #: searx/plugins/tor_check.py:85
  504. msgid "You are not using Tor and you have this external IP address: {ip_address}"
  505. msgstr "您並未使用 Tor,您的外部 IP 地址為: {ip_address}"
  506. #: searx/plugins/tracker_url_remover.py:16
  507. msgid "Tracker URL remover"
  508. msgstr "追蹤器 URL 移除器"
  509. #: searx/plugins/tracker_url_remover.py:17
  510. msgid "Remove trackers arguments from the returned URL"
  511. msgstr "從傳回的 URL 中移除追蹤器參數"
  512. #: searx/plugins/unit_converter.py:29
  513. msgid "Convert between units"
  514. msgstr "在單位之間轉換"
  515. #: searx/templates/simple/404.html:4
  516. msgid "Page not found"
  517. msgstr "找不到頁面"
  518. #: searx/templates/simple/404.html:6
  519. #, python-format
  520. msgid "Go to %(search_page)s."
  521. msgstr "存取 %(search_page)s。"
  522. #: searx/templates/simple/404.html:6
  523. msgid "search page"
  524. msgstr "搜尋頁面"
  525. #: searx/templates/simple/base.html:54
  526. msgid "Donate"
  527. msgstr "捐獻"
  528. #: searx/templates/simple/base.html:58
  529. #: searx/templates/simple/preferences.html:156
  530. msgid "Preferences"
  531. msgstr "偏好設定"
  532. #: searx/templates/simple/base.html:68
  533. msgid "Powered by"
  534. msgstr "技術支援"
  535. #: searx/templates/simple/base.html:68
  536. msgid "a privacy-respecting, open metasearch engine"
  537. msgstr "尊重隱私的開源搜尋引擎"
  538. #: searx/templates/simple/base.html:69
  539. #: searx/templates/simple/result_templates/packages.html:59
  540. msgid "Source code"
  541. msgstr "原始碼"
  542. #: searx/templates/simple/base.html:70
  543. msgid "Issue tracker"
  544. msgstr "問題追蹤"
  545. #: searx/templates/simple/base.html:71 searx/templates/simple/stats.html:18
  546. msgid "Engine stats"
  547. msgstr "引擎統計"
  548. #: searx/templates/simple/base.html:73
  549. msgid "Public instances"
  550. msgstr "公開站臺"
  551. #: searx/templates/simple/base.html:76
  552. msgid "Privacy policy"
  553. msgstr "私隱權條款"
  554. #: searx/templates/simple/base.html:79
  555. msgid "Contact instance maintainer"
  556. msgstr "聯絡站點維護人員"
  557. #: searx/templates/simple/categories.html:26
  558. msgid "Click on the magnifier to perform search"
  559. msgstr "點選放大鏡以執行搜尋"
  560. #: searx/templates/simple/macros.html:40
  561. msgid "Length"
  562. msgstr "長度"
  563. #: searx/templates/simple/macros.html:41
  564. msgid "Views"
  565. msgstr "檢視次數"
  566. #: searx/templates/simple/macros.html:42
  567. #: searx/templates/simple/result_templates/files.html:34
  568. #: searx/templates/simple/result_templates/images.html:19
  569. #: searx/templates/simple/result_templates/paper.html:6
  570. msgid "Author"
  571. msgstr "作者"
  572. #: searx/templates/simple/macros.html:50
  573. msgid "cached"
  574. msgstr "已快取"
  575. #: searx/templates/simple/macros.html:50
  576. msgid "proxied"
  577. msgstr "已代理"
  578. #: searx/templates/simple/new_issue.html:64
  579. msgid "Start submitting a new issue on GitHub"
  580. msgstr "在 GitHub 上提交問題"
  581. #: searx/templates/simple/new_issue.html:66
  582. msgid "Please check for existing bugs about this engine on GitHub"
  583. msgstr "請在 GitHub 上檢視目前 SearXNG 引擎的問題"
  584. #: searx/templates/simple/new_issue.html:69
  585. msgid "I confirm there is no existing bug about the issue I encounter"
  586. msgstr "我確認提交的問題不在目前問題列表"
  587. #: searx/templates/simple/new_issue.html:71
  588. msgid "If this is a public instance, please specify the URL in the bug report"
  589. msgstr "如果你的站點是公開存取, 請在問題報告中附上你的 URL"
  590. #: searx/templates/simple/new_issue.html:72
  591. msgid "Submit a new issue on Github including the above information"
  592. msgstr "在 GitHub 上提交包含上述資訊的新問題"
  593. #: searx/templates/simple/preferences.html:65
  594. msgid "No HTTPS"
  595. msgstr "無 HTTPS"
  596. #: searx/templates/simple/elements/engines_msg.html:14
  597. #: searx/templates/simple/preferences.html:69
  598. #: searx/templates/simple/preferences.html:70
  599. msgid "View error logs and submit a bug report"
  600. msgstr "檢視錯誤日誌並提交錯誤報告"
  601. #: searx/templates/simple/preferences.html:74
  602. msgid "!bang for this engine"
  603. msgstr "對於這個引擎的 !bang"
  604. #: searx/templates/simple/preferences.html:80
  605. msgid "!bang for its categories"
  606. msgstr "對於其類別的 !bang"
  607. #: searx/templates/simple/preferences.html:102
  608. #: searx/templates/simple/stats.html:64
  609. msgid "Median"
  610. msgstr "中位數"
  611. #: searx/templates/simple/preferences.html:103
  612. #: searx/templates/simple/stats.html:70
  613. msgid "P80"
  614. msgstr "P80"
  615. #: searx/templates/simple/preferences.html:104
  616. #: searx/templates/simple/stats.html:76
  617. msgid "P95"
  618. msgstr "P95"
  619. #: searx/templates/simple/preferences.html:136
  620. msgid "Failed checker test(s): "
  621. msgstr "檢查程式測試失敗: "
  622. #: searx/templates/simple/preferences.html:138
  623. msgid "Errors:"
  624. msgstr "錯誤:"
  625. #: searx/templates/simple/preferences.html:162
  626. msgid "General"
  627. msgstr "一般"
  628. #: searx/templates/simple/preferences.html:165
  629. msgid "Default categories"
  630. msgstr "預設分類"
  631. #: searx/templates/simple/preferences.html:190
  632. msgid "User interface"
  633. msgstr "使用者介面"
  634. #: searx/templates/simple/preferences.html:212
  635. msgid "Privacy"
  636. msgstr "隱私"
  637. #: searx/templates/simple/preferences.html:225
  638. msgid "Engines"
  639. msgstr "搜尋引擎"
  640. #: searx/templates/simple/preferences.html:227
  641. msgid "Currently used search engines"
  642. msgstr "目前使用的搜尋引擎"
  643. #: searx/templates/simple/preferences.html:235
  644. msgid "Special Queries"
  645. msgstr "特殊查詢"
  646. #: searx/templates/simple/preferences.html:241
  647. msgid "Cookies"
  648. msgstr "Cookies"
  649. #: searx/templates/simple/results.html:23
  650. msgid "Answers"
  651. msgstr "答案"
  652. #: searx/templates/simple/results.html:42
  653. msgid "Number of results"
  654. msgstr "結果筆數"
  655. #: searx/templates/simple/results.html:48
  656. msgid "Info"
  657. msgstr "資訊"
  658. #: searx/templates/simple/results.html:75
  659. msgid "Try searching for:"
  660. msgstr "嘗試搜尋:"
  661. #: searx/templates/simple/results.html:107
  662. msgid "Back to top"
  663. msgstr "返回頂端"
  664. #: searx/templates/simple/results.html:125
  665. msgid "Previous page"
  666. msgstr "上一頁"
  667. #: searx/templates/simple/results.html:143
  668. msgid "Next page"
  669. msgstr "下一頁"
  670. #: searx/templates/simple/search.html:3
  671. msgid "Display the front page"
  672. msgstr "顯示前端頁面"
  673. #: searx/templates/simple/search.html:9
  674. #: searx/templates/simple/simple_search.html:5
  675. msgid "Search for..."
  676. msgstr "搜尋……"
  677. #: searx/templates/simple/search.html:10
  678. #: searx/templates/simple/simple_search.html:6
  679. msgid "clear"
  680. msgstr "清除"
  681. #: searx/templates/simple/search.html:11
  682. #: searx/templates/simple/simple_search.html:7
  683. msgid "search"
  684. msgstr "搜尋"
  685. #: searx/templates/simple/stats.html:21
  686. msgid "There is currently no data available. "
  687. msgstr "目前無可用資料。"
  688. #: searx/templates/simple/preferences/engines.html:24
  689. #: searx/templates/simple/stats.html:25
  690. msgid "Engine name"
  691. msgstr "引擎名稱"
  692. #: searx/templates/simple/stats.html:26
  693. msgid "Scores"
  694. msgstr "分數"
  695. #: searx/templates/simple/stats.html:27
  696. msgid "Result count"
  697. msgstr "結果數量"
  698. #: searx/templates/simple/elements/engines_msg.html:7
  699. #: searx/templates/simple/preferences/engines.html:31
  700. #: searx/templates/simple/stats.html:28
  701. msgid "Response time"
  702. msgstr "響應時間"
  703. #: searx/templates/simple/preferences/engines.html:35
  704. #: searx/templates/simple/stats.html:29
  705. msgid "Reliability"
  706. msgstr "可靠性"
  707. #: searx/templates/simple/stats.html:59
  708. msgid "Total"
  709. msgstr "總計"
  710. #: searx/templates/simple/stats.html:60
  711. msgid "HTTP"
  712. msgstr "HTTP"
  713. #: searx/templates/simple/stats.html:61
  714. msgid "Processing"
  715. msgstr "正在處理"
  716. #: searx/templates/simple/stats.html:99
  717. msgid "Warnings"
  718. msgstr "警告"
  719. #: searx/templates/simple/stats.html:99
  720. msgid "Errors and exceptions"
  721. msgstr "錯誤及異常"
  722. #: searx/templates/simple/stats.html:105
  723. msgid "Exception"
  724. msgstr "異常"
  725. #: searx/templates/simple/stats.html:107
  726. msgid "Message"
  727. msgstr "訊息"
  728. #: searx/templates/simple/stats.html:109
  729. msgid "Percentage"
  730. msgstr "百分比"
  731. #: searx/templates/simple/stats.html:111
  732. msgid "Parameter"
  733. msgstr "參數"
  734. #: searx/templates/simple/result_templates/files.html:36
  735. #: searx/templates/simple/stats.html:119
  736. msgid "Filename"
  737. msgstr "檔名"
  738. #: searx/templates/simple/stats.html:120
  739. msgid "Function"
  740. msgstr "函式"
  741. #: searx/templates/simple/stats.html:121
  742. msgid "Code"
  743. msgstr "程式碼"
  744. #: searx/templates/simple/stats.html:128
  745. msgid "Checker"
  746. msgstr "檢查程式"
  747. #: searx/templates/simple/stats.html:131
  748. msgid "Failed test"
  749. msgstr "測試未透過"
  750. #: searx/templates/simple/stats.html:132
  751. msgid "Comment(s)"
  752. msgstr "注釋"
  753. #: searx/templates/simple/elements/apis.html:3
  754. msgid "Download results"
  755. msgstr "下載結果"
  756. #: searx/templates/simple/elements/engines_msg.html:4
  757. msgid "Messages from the search engines"
  758. msgstr "來自搜尋引擎的訊息"
  759. #: searx/templates/simple/elements/engines_msg.html:7
  760. msgid "seconds"
  761. msgstr "秒"
  762. #: searx/templates/simple/elements/search_url.html:3
  763. msgid "Search URL"
  764. msgstr "搜尋網址"
  765. #: searx/templates/simple/elements/search_url.html:4
  766. #: searx/templates/simple/preferences/cookies.html:54
  767. msgid "Copied"
  768. msgstr "已複製"
  769. #: searx/templates/simple/elements/search_url.html:4
  770. #: searx/templates/simple/preferences/cookies.html:54
  771. msgid "Copy"
  772. msgstr "複製"
  773. #: searx/templates/simple/elements/suggestions.html:3
  774. msgid "Suggestions"
  775. msgstr "建議"
  776. #: searx/templates/simple/filters/languages.html:1
  777. #: searx/templates/simple/preferences/language.html:2
  778. msgid "Search language"
  779. msgstr "搜尋語言"
  780. #: searx/templates/simple/filters/languages.html:4
  781. #: searx/templates/simple/preferences/language.html:7
  782. msgid "Default language"
  783. msgstr "預設語言"
  784. #: searx/templates/simple/filters/languages.html:8
  785. #: searx/templates/simple/preferences/language.html:11
  786. msgid "Auto-detect"
  787. msgstr "自動檢測"
  788. #: searx/templates/simple/filters/safesearch.html:1
  789. #: searx/templates/simple/filters/safesearch.html:2
  790. #: searx/templates/simple/filters/safesearch.html:3
  791. #: searx/templates/simple/filters/safesearch.html:4
  792. #: searx/templates/simple/preferences/engines.html:27
  793. #: searx/templates/simple/preferences/safesearch.html:2
  794. msgid "SafeSearch"
  795. msgstr "安全搜尋"
  796. #: searx/templates/simple/filters/safesearch.html:2
  797. #: searx/templates/simple/preferences/safesearch.html:7
  798. msgid "Strict"
  799. msgstr "嚴格"
  800. #: searx/templates/simple/filters/safesearch.html:3
  801. #: searx/templates/simple/preferences/safesearch.html:11
  802. msgid "Moderate"
  803. msgstr "適中"
  804. #: searx/templates/simple/filters/safesearch.html:4
  805. #: searx/templates/simple/preferences/safesearch.html:15
  806. msgid "None"
  807. msgstr "無"
  808. #: searx/templates/simple/filters/time_range.html:1
  809. #: searx/templates/simple/preferences/engines.html:28
  810. msgid "Time range"
  811. msgstr "時間範圍"
  812. #: searx/templates/simple/filters/time_range.html:3
  813. msgid "Anytime"
  814. msgstr "任何時間"
  815. #: searx/templates/simple/filters/time_range.html:6
  816. msgid "Last day"
  817. msgstr "一天內"
  818. #: searx/templates/simple/filters/time_range.html:9
  819. msgid "Last week"
  820. msgstr "一週內"
  821. #: searx/templates/simple/filters/time_range.html:12
  822. msgid "Last month"
  823. msgstr "一個月內"
  824. #: searx/templates/simple/filters/time_range.html:15
  825. msgid "Last year"
  826. msgstr "一年內"
  827. #: searx/templates/simple/messages/no_cookies.html:3
  828. msgid "Information!"
  829. msgstr "資訊!"
  830. #: searx/templates/simple/messages/no_cookies.html:4
  831. msgid "currently, there are no cookies defined."
  832. msgstr "目前未有已定義的 cookies。"
  833. #: searx/templates/simple/messages/no_results.html:6
  834. msgid "Sorry!"
  835. msgstr "抱歉!"
  836. #: searx/templates/simple/messages/no_results.html:12
  837. msgid "No results were found. You can try to:"
  838. msgstr "未找到任何結果。你可以嘗試:"
  839. #: searx/templates/simple/messages/no_results.html:14
  840. msgid "There are no more results. You can try to:"
  841. msgstr "沒有更多的結果。你可以嘗試:"
  842. #: searx/templates/simple/messages/no_results.html:19
  843. msgid "Refresh the page."
  844. msgstr "重新整理頁面。"
  845. #: searx/templates/simple/messages/no_results.html:20
  846. msgid "Search for another query or select another category (above)."
  847. msgstr "請以其他關鍵字搜尋或選擇其他類別(最上方)。"
  848. #: searx/templates/simple/messages/no_results.html:21
  849. msgid "Change the search engine used in the preferences:"
  850. msgstr "在偏好設定裡更改使用的搜尋引擎:"
  851. #: searx/templates/simple/messages/no_results.html:22
  852. msgid "Switch to another instance:"
  853. msgstr "切換另一個視窗:"
  854. #: searx/templates/simple/messages/no_results.html:24
  855. msgid "Search for another query or select another category."
  856. msgstr "請以其他關鍵字搜尋或選擇其他類別。"
  857. #: searx/templates/simple/messages/no_results.html:25
  858. msgid "Go back to the previous page using the previous page button."
  859. msgstr "使用上一頁按鈕返回上一頁。"
  860. #: searx/templates/simple/preferences/answerers.html:4
  861. #: searx/templates/simple/preferences/engines.html:23
  862. msgid "Allow"
  863. msgstr "允許"
  864. #: searx/templates/simple/preferences/answerers.html:5
  865. msgid "Keywords"
  866. msgstr "關鍵字"
  867. #: searx/templates/simple/preferences/answerers.html:6
  868. #: searx/templates/simple/result_templates/packages.html:7
  869. msgid "Name"
  870. msgstr "名稱"
  871. #: searx/templates/simple/preferences/answerers.html:7
  872. msgid "Description"
  873. msgstr "描述"
  874. #: searx/templates/simple/preferences/answerers.html:8
  875. msgid "Examples"
  876. msgstr "範例"
  877. #: searx/templates/simple/preferences/answerers.html:13
  878. msgid "This is the list of SearXNG's instant answering modules."
  879. msgstr "這是 SearXNG 即時回應模組列表。"
  880. #: searx/templates/simple/preferences/answerers.html:29
  881. msgid "This is the list of plugins."
  882. msgstr "這是外掛列表。"
  883. #: searx/templates/simple/preferences/autocomplete.html:2
  884. msgid "Autocomplete"
  885. msgstr "自動完成"
  886. #: searx/templates/simple/preferences/autocomplete.html:15
  887. msgid "Find stuff as you type"
  888. msgstr "隨打即找"
  889. #: searx/templates/simple/preferences/center_alignment.html:2
  890. msgid "Center Alignment"
  891. msgstr "置中對齊"
  892. #: searx/templates/simple/preferences/center_alignment.html:14
  893. msgid "Displays results in the center of the page (Oscar layout)."
  894. msgstr "顯示搜尋結果於網頁中間(Oscar 版面配置)。"
  895. #: searx/templates/simple/preferences/cookies.html:2
  896. msgid ""
  897. "This is the list of cookies and their values SearXNG is storing on your "
  898. "computer."
  899. msgstr "這是 SearXNG 在您的裝置上儲存的 Cookie 的列表及對應的值。"
  900. #: searx/templates/simple/preferences/cookies.html:3
  901. msgid "With that list, you can assess SearXNG transparency."
  902. msgstr "您可以憑此列表評估 SearXNG 的透明度。"
  903. #: searx/templates/simple/preferences/cookies.html:9
  904. msgid "Cookie name"
  905. msgstr "Cookie 名稱"
  906. #: searx/templates/simple/preferences/cookies.html:10
  907. msgid "Value"
  908. msgstr "值"
  909. #: searx/templates/simple/preferences/cookies.html:23
  910. msgid "Search URL of the currently saved preferences"
  911. msgstr "目前偏好設定的搜尋 URL"
  912. #: searx/templates/simple/preferences/cookies.html:32
  913. msgid ""
  914. "Note: specifying custom settings in the search URL can reduce privacy by "
  915. "leaking data to the clicked result sites."
  916. msgstr "注意:在搜尋 URL "
  917. "中指定自訂的設定可能會降低隱私,因為會洩漏資料給點選的結果頁面。"
  918. #: searx/templates/simple/preferences/cookies.html:35
  919. msgid "URL to restore your preferences in another browser"
  920. msgstr "用於在其他瀏覽器上還原您的偏好設定的網址"
  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. msgid "Favicon Resolver"
  966. msgstr "網站圖標搜索器"
  967. #: searx/templates/simple/preferences/favicon.html:15
  968. msgid "Display favicons near search results"
  969. msgstr "在搜尋結果旁顯示網站圖標"
  970. #: searx/templates/simple/preferences/footer.html:2
  971. msgid ""
  972. "These settings are stored in your cookies, this allows us not to store "
  973. "this data about you."
  974. msgstr "這些設定只會儲存在您的 cookies 中,這樣我們無需也不會儲存關於您的資訊。"
  975. #: searx/templates/simple/preferences/footer.html:3
  976. msgid ""
  977. "These cookies serve your sole convenience, we don't use these cookies to "
  978. "track you."
  979. msgstr "這些 cookies 僅為提供您方便之用,我們不會使用這些 cookies 來追蹤您。"
  980. #: searx/templates/simple/preferences/footer.html:6
  981. msgid "Save"
  982. msgstr "儲存"
  983. #: searx/templates/simple/preferences/footer.html:9
  984. msgid "Reset defaults"
  985. msgstr "重設為預設值"
  986. #: searx/templates/simple/preferences/footer.html:13
  987. msgid "Back"
  988. msgstr "返回"
  989. #: searx/templates/simple/preferences/hotkeys.html:2
  990. msgid "Hotkeys"
  991. msgstr "快速鍵"
  992. #: searx/templates/simple/preferences/hotkeys.html:13
  993. msgid "Vim-like"
  994. msgstr "像Vim的"
  995. #: searx/templates/simple/preferences/hotkeys.html:18
  996. msgid ""
  997. "Navigate search results with hotkeys (JavaScript required). Press \"h\" "
  998. "key on main or result page to get help."
  999. msgstr "使用快捷鍵來瀏覽搜尋頁面(需要Javascript)。按 H 開啟說明頁面。"
  1000. #: searx/templates/simple/preferences/image_proxy.html:2
  1001. msgid "Image proxy"
  1002. msgstr "圖片代理伺服器"
  1003. #: searx/templates/simple/preferences/image_proxy.html:14
  1004. msgid "Proxying image results through SearXNG"
  1005. msgstr "透過 SearXNG 代理存取圖片結果"
  1006. #: searx/templates/simple/preferences/infinite_scroll.html:2
  1007. msgid "Infinite scroll"
  1008. msgstr "無限捲動"
  1009. #: searx/templates/simple/preferences/infinite_scroll.html:14
  1010. msgid "Automatically load next page when scrolling to bottom of current page"
  1011. msgstr "當捲動至目前頁面的底端時自動載入下一頁"
  1012. #: searx/templates/simple/preferences/language.html:24
  1013. msgid "What language do you prefer for search?"
  1014. msgstr "您偏好用哪種語言搜尋?"
  1015. #: searx/templates/simple/preferences/language.html:25
  1016. msgid "Choose Auto-detect to let SearXNG detect the language of your query."
  1017. msgstr "選擇自動檢測可以使 SearXNG 檢測您的檢索關鍵詞的語言。"
  1018. #: searx/templates/simple/preferences/method.html:2
  1019. msgid "HTTP Method"
  1020. msgstr "HTTP 方法"
  1021. #: searx/templates/simple/preferences/method.html:14
  1022. msgid "Change how forms are submitted"
  1023. msgstr "變更提交表單的方式"
  1024. #: searx/templates/simple/preferences/query_in_title.html:2
  1025. msgid "Query in the page's title"
  1026. msgstr "頁面標題顯示查詢關鍵字"
  1027. #: searx/templates/simple/preferences/query_in_title.html:14
  1028. msgid ""
  1029. "When enabled, the result page's title contains your query. Your browser "
  1030. "can record this title"
  1031. msgstr "啟用時,結果頁的標題包含你的查詢關鍵字。你的瀏覽器會記錄這個標題"
  1032. #: searx/templates/simple/preferences/results_on_new_tab.html:2
  1033. msgid "Results on new tabs"
  1034. msgstr "在新分頁開啟結果"
  1035. #: searx/templates/simple/preferences/results_on_new_tab.html:14
  1036. msgid "Open result links on new browser tabs"
  1037. msgstr "在新瀏覽器分頁中開啟結果連結"
  1038. #: searx/templates/simple/preferences/safesearch.html:20
  1039. msgid "Filter content"
  1040. msgstr "過濾內容"
  1041. #: searx/templates/simple/preferences/search_on_category_select.html:2
  1042. msgid "Search on category select"
  1043. msgstr "類別選取搜尋"
  1044. #: searx/templates/simple/preferences/search_on_category_select.html:14
  1045. msgid ""
  1046. "Perform search immediately if a category selected. Disable to select "
  1047. "multiple categories"
  1048. msgstr "選擇一個類別時自動搜尋。關閉來選擇多項類別"
  1049. #: searx/templates/simple/preferences/theme.html:2
  1050. msgid "Theme"
  1051. msgstr "主題"
  1052. #: searx/templates/simple/preferences/theme.html:14
  1053. msgid "Change SearXNG layout"
  1054. msgstr "更改 SearXNG 版面配置"
  1055. #: searx/templates/simple/preferences/theme.html:19
  1056. msgid "Theme style"
  1057. msgstr "主題樣式"
  1058. #: searx/templates/simple/preferences/theme.html:31
  1059. msgid "Choose auto to follow your browser settings"
  1060. msgstr "選擇自動則取決於您的瀏覽器設定"
  1061. #: searx/templates/simple/preferences/tokens.html:2
  1062. msgid "Engine tokens"
  1063. msgstr "引擎權杖"
  1064. #: searx/templates/simple/preferences/tokens.html:9
  1065. msgid "Access tokens for private engines"
  1066. msgstr "私人引擎的存取權杖"
  1067. #: searx/templates/simple/preferences/ui_locale.html:2
  1068. msgid "Interface language"
  1069. msgstr "介面語言"
  1070. #: searx/templates/simple/preferences/ui_locale.html:14
  1071. msgid "Change the language of the layout"
  1072. msgstr "變更版面配置的語言"
  1073. #: searx/templates/simple/preferences/urlformatting.html:2
  1074. msgid "URL formatting"
  1075. msgstr ""
  1076. #: searx/templates/simple/preferences/urlformatting.html:8
  1077. msgid "Pretty"
  1078. msgstr ""
  1079. #: searx/templates/simple/preferences/urlformatting.html:13
  1080. msgid "Full"
  1081. msgstr ""
  1082. #: searx/templates/simple/preferences/urlformatting.html:18
  1083. msgid "Host"
  1084. msgstr "主機"
  1085. #: searx/templates/simple/preferences/urlformatting.html:23
  1086. msgid "Change result URL formatting"
  1087. msgstr ""
  1088. #: searx/templates/simple/result_templates/code.html:13
  1089. msgid "repo"
  1090. msgstr "版本庫"
  1091. #: searx/templates/simple/result_templates/default.html:6
  1092. #: searx/templates/simple/result_templates/files.html:8
  1093. #: searx/templates/simple/result_templates/files.html:11
  1094. msgid "show media"
  1095. msgstr "顯示媒體"
  1096. #: searx/templates/simple/result_templates/default.html:6
  1097. #: searx/templates/simple/result_templates/files.html:8
  1098. msgid "hide media"
  1099. msgstr "隱藏媒體"
  1100. #: searx/templates/simple/result_templates/default.html:14
  1101. #: searx/templates/simple/result_templates/videos.html:14
  1102. msgid "This site did not provide any description."
  1103. msgstr "此站點未提供任何描述。"
  1104. #: searx/templates/simple/result_templates/files.html:38
  1105. #: searx/templates/simple/result_templates/images.html:22
  1106. #: searx/templates/simple/result_templates/torrent.html:11
  1107. msgid "Filesize"
  1108. msgstr "檔案大小"
  1109. #: searx/templates/simple/result_templates/files.html:40
  1110. msgid "Date"
  1111. msgstr "日期"
  1112. #: searx/templates/simple/result_templates/files.html:42
  1113. #: searx/templates/simple/result_templates/paper.html:24
  1114. msgid "Type"
  1115. msgstr "輸入"
  1116. #: searx/templates/simple/result_templates/images.html:20
  1117. msgid "Resolution"
  1118. msgstr "解析度"
  1119. #: searx/templates/simple/result_templates/images.html:21
  1120. msgid "Format"
  1121. msgstr "格式"
  1122. #: searx/templates/simple/result_templates/images.html:24
  1123. msgid "Engine"
  1124. msgstr "引擎"
  1125. #: searx/templates/simple/result_templates/images.html:25
  1126. msgid "View source"
  1127. msgstr "檢視來源"
  1128. #: searx/templates/simple/result_templates/map.html:12
  1129. msgid "address"
  1130. msgstr "地址"
  1131. #: searx/templates/simple/result_templates/map.html:43
  1132. msgid "show map"
  1133. msgstr "顯示地圖"
  1134. #: searx/templates/simple/result_templates/map.html:43
  1135. msgid "hide map"
  1136. msgstr "隱藏地圖"
  1137. #: searx/templates/simple/result_templates/packages.html:12
  1138. msgid "Version"
  1139. msgstr "版本"
  1140. #: searx/templates/simple/result_templates/packages.html:18
  1141. msgid "Maintainer"
  1142. msgstr "維護者"
  1143. #: searx/templates/simple/result_templates/packages.html:24
  1144. msgid "Updated at"
  1145. msgstr "更新於"
  1146. #: searx/templates/simple/result_templates/packages.html:30
  1147. #: searx/templates/simple/result_templates/paper.html:25
  1148. msgid "Tags"
  1149. msgstr "標籤"
  1150. #: searx/templates/simple/result_templates/packages.html:36
  1151. msgid "Popularity"
  1152. msgstr "流行"
  1153. #: searx/templates/simple/result_templates/packages.html:42
  1154. msgid "License"
  1155. msgstr "授權"
  1156. #: searx/templates/simple/result_templates/packages.html:52
  1157. msgid "Project"
  1158. msgstr "專案"
  1159. #: searx/templates/simple/result_templates/packages.html:55
  1160. msgid "Project homepage"
  1161. msgstr "專案主頁"
  1162. #: searx/templates/simple/result_templates/paper.html:5
  1163. msgid "Published date"
  1164. msgstr "發布日期"
  1165. #: searx/templates/simple/result_templates/paper.html:9
  1166. msgid "Journal"
  1167. msgstr "雜誌"
  1168. #: searx/templates/simple/result_templates/paper.html:22
  1169. msgid "Editor"
  1170. msgstr "編輯"
  1171. #: searx/templates/simple/result_templates/paper.html:23
  1172. msgid "Publisher"
  1173. msgstr "出版者"
  1174. #: searx/templates/simple/result_templates/paper.html:26
  1175. msgid "DOI"
  1176. msgstr "DOI"
  1177. #: searx/templates/simple/result_templates/paper.html:27
  1178. msgid "ISSN"
  1179. msgstr "國際標準期刊號(ISSN)"
  1180. #: searx/templates/simple/result_templates/paper.html:28
  1181. msgid "ISBN"
  1182. msgstr "國際標準書號(ISBN)"
  1183. #: searx/templates/simple/result_templates/paper.html:33
  1184. msgid "PDF"
  1185. msgstr "PDF"
  1186. #: searx/templates/simple/result_templates/paper.html:34
  1187. msgid "HTML"
  1188. msgstr "HTML"
  1189. #: searx/templates/simple/result_templates/torrent.html:6
  1190. msgid "magnet link"
  1191. msgstr "磁力連結"
  1192. #: searx/templates/simple/result_templates/torrent.html:7
  1193. msgid "torrent file"
  1194. msgstr "種子檔案"
  1195. #: searx/templates/simple/result_templates/torrent.html:9
  1196. msgid "Seeder"
  1197. msgstr "做種使用者"
  1198. #: searx/templates/simple/result_templates/torrent.html:9
  1199. msgid "Leecher"
  1200. msgstr "下載使用者"
  1201. #: searx/templates/simple/result_templates/torrent.html:13
  1202. msgid "Number of Files"
  1203. msgstr "檔案數量"
  1204. #: searx/templates/simple/result_templates/videos.html:6
  1205. msgid "show video"
  1206. msgstr "顯示影片"
  1207. #: searx/templates/simple/result_templates/videos.html:6
  1208. msgid "hide video"
  1209. msgstr "隱藏影片"
  1210. #~ msgid "Engine time (sec)"
  1211. #~ msgstr "引擎時間(秒)"
  1212. #~ msgid "Page loads (sec)"
  1213. #~ msgstr "頁面載入(秒)"
  1214. #~ msgid "Errors"
  1215. #~ msgstr "錯誤"
  1216. #~ msgid "CAPTCHA required"
  1217. #~ msgstr "需要 CAPTCHA"
  1218. #~ msgid "Rewrite HTTP links to HTTPS if possible"
  1219. #~ msgstr "可以的話將 HTTP 連結重寫為 HTTPS"
  1220. #~ msgid ""
  1221. #~ "Results are opened in the same "
  1222. #~ "window by default. This plugin "
  1223. #~ "overwrites the default behaviour to open"
  1224. #~ " links on new tabs/windows. (JavaScript "
  1225. #~ "required)"
  1226. #~ msgstr "結果預設會在同一個視窗開啟。這個外掛程式會覆寫預設行為,會在新分頁/視窗中開啟連結。(需要 JavaScript)"
  1227. #~ msgid "Color"
  1228. #~ msgstr "顏色"
  1229. #~ msgid "Blue (default)"
  1230. #~ msgstr "藍色(預設值)"
  1231. #~ msgid "Violet"
  1232. #~ msgstr "紫色"
  1233. #~ msgid "Green"
  1234. #~ msgstr "綠色"
  1235. #~ msgid "Cyan"
  1236. #~ msgstr "青色"
  1237. #~ msgid "Orange"
  1238. #~ msgstr "橘色"
  1239. #~ msgid "Red"
  1240. #~ msgstr "紅色"
  1241. #~ msgid "Category"
  1242. #~ msgstr "分類"
  1243. #~ msgid "Block"
  1244. #~ msgstr "封鎖"
  1245. #~ msgid "original context"
  1246. #~ msgstr "原始內容"
  1247. #~ msgid "Plugins"
  1248. #~ msgstr "外掛程式"
  1249. #~ msgid "Answerers"
  1250. #~ msgstr "答案"
  1251. #~ msgid "Avg. time"
  1252. #~ msgstr "平均時間"
  1253. #~ msgid "show details"
  1254. #~ msgstr "顯示詳情"
  1255. #~ msgid "hide details"
  1256. #~ msgstr "隱藏詳情"
  1257. #~ msgid "Load more..."
  1258. #~ msgstr "載入更多……"
  1259. #~ msgid "Loading..."
  1260. #~ msgstr "正在載入……"
  1261. #~ msgid "Change searx layout"
  1262. #~ msgstr "變更 searx 佈局"
  1263. #~ msgid "Proxying image results through searx"
  1264. #~ msgstr "透過 searx 代理圖片結果"
  1265. #~ msgid "This is the list of searx's instant answering modules."
  1266. #~ msgstr "這是 searx 的即時回覆模組清單。"
  1267. #~ msgid ""
  1268. #~ "This is the list of cookies and"
  1269. #~ " their values searx is storing on "
  1270. #~ "your computer."
  1271. #~ msgstr "這是 searx 儲存在您電腦上的 cookies 與它們的值的清單。"
  1272. #~ msgid "With that list, you can assess searx transparency."
  1273. #~ msgstr "有了這份清單,您就可以評估 searx 的透明度。"
  1274. #~ msgid "It look like you are using searx first time."
  1275. #~ msgstr "看起來您是第一次使用 searx。"
  1276. #~ msgid "Please, try again later or find another searx instance."
  1277. #~ msgstr "請再試一次或是使用其他 searx 實體搜尋。"
  1278. #~ msgid "Themes"
  1279. #~ msgstr "佈景主題"
  1280. #~ msgid "Reliablity"
  1281. #~ msgstr ""
  1282. #~ msgid ""
  1283. #~ "When enabled, the result page's title"
  1284. #~ " contains your query. Your browser "
  1285. #~ "can record this title."
  1286. #~ msgstr ""
  1287. #~ msgid "Method"
  1288. #~ msgstr "方法"
  1289. #~ msgid ""
  1290. #~ "This tab does not show up for "
  1291. #~ "search results but you can search "
  1292. #~ "the engines listed here via bangs."
  1293. #~ msgstr ""
  1294. #~ msgid "Advanced settings"
  1295. #~ msgstr "進階設定"
  1296. #~ msgid "Close"
  1297. #~ msgstr "關閉"
  1298. #~ msgid "Language"
  1299. #~ msgstr "語言"
  1300. #~ msgid "broken"
  1301. #~ msgstr "故障"
  1302. #~ msgid "supported"
  1303. #~ msgstr "支援"
  1304. #~ msgid "not supported"
  1305. #~ msgstr "不支援"
  1306. #~ msgid "about"
  1307. #~ msgstr "關於"
  1308. #~ msgid "Avg."
  1309. #~ msgstr "平均"
  1310. #~ msgid "User Interface"
  1311. #~ msgstr "用戶界面"
  1312. #~ msgid "Choose style for this theme"
  1313. #~ msgstr "選擇這個主題的樣式"
  1314. #~ msgid "Style"
  1315. #~ msgstr "樣式"
  1316. #~ msgid "Show advanced settings"
  1317. #~ msgstr "顯示高級設置"
  1318. #~ msgid "Show advanced settings panel in the home page by default"
  1319. #~ msgstr "首頁默認顯示高級設置面板"
  1320. #~ msgid "Allow all"
  1321. #~ msgstr "允許全部"
  1322. #~ msgid "Disable all"
  1323. #~ msgstr "停用全部"
  1324. #~ msgid "Selected language"
  1325. #~ msgstr "已選取的語言"
  1326. #~ msgid "Query"
  1327. #~ msgstr "查詢"
  1328. #~ msgid "save"
  1329. #~ msgstr "儲存"
  1330. #~ msgid "back"
  1331. #~ msgstr "返回"
  1332. #~ msgid "Links"
  1333. #~ msgstr "連結"
  1334. #~ msgid "RSS subscription"
  1335. #~ msgstr "RSS 訂閱"
  1336. #~ msgid "Search results"
  1337. #~ msgstr "搜尋結果"
  1338. #~ msgid "next page"
  1339. #~ msgstr "下一頁"
  1340. #~ msgid "previous page"
  1341. #~ msgstr "上一頁"
  1342. #~ msgid "Start search"
  1343. #~ msgstr "開始搜尋"
  1344. #~ msgid "Clear search"
  1345. #~ msgstr "清除搜尋"
  1346. #~ msgid "Clear"
  1347. #~ msgstr "清除"
  1348. #~ msgid "stats"
  1349. #~ msgstr "統計"
  1350. #~ msgid "Heads up!"
  1351. #~ msgstr "注意!"
  1352. #~ msgid "It look like you are using SearXNG first time."
  1353. #~ msgstr "這似乎是您首次使用 SearXNG。"
  1354. #~ msgid "Well done!"
  1355. #~ msgstr "很好!"
  1356. #~ msgid "Settings saved successfully."
  1357. #~ msgstr "設定成功儲存。"
  1358. #~ msgid "Oh snap!"
  1359. #~ msgstr "糟糕!"
  1360. #~ msgid "Something went wrong."
  1361. #~ msgstr "發生了一點問題。"
  1362. #~ msgid "Date"
  1363. #~ msgstr "日期"
  1364. #~ msgid "Type"
  1365. #~ msgstr "類型"
  1366. #~ msgid "Get image"
  1367. #~ msgstr "取得圖片"
  1368. #~ msgid "Center Alignment"
  1369. #~ msgstr ""
  1370. #~ msgid "Displays results in the center of the page (Oscar layout)."
  1371. #~ msgstr ""
  1372. #~ msgid "preferences"
  1373. #~ msgstr "偏好設定"
  1374. #~ msgid "Scores per result"
  1375. #~ msgstr "每個結果的分數"
  1376. #~ msgid "a privacy-respecting, hackable metasearch engine"
  1377. #~ msgstr "一個尊重隱私,可再開發的集合式搜尋引擎"
  1378. #~ msgid "No abstract is available for this publication."
  1379. #~ msgstr "此出版品無可用摘要。"
  1380. #~ msgid "Self Informations"
  1381. #~ msgstr "自身訊息"
  1382. #~ msgid ""
  1383. #~ "Change how forms are submited, <a "
  1384. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1385. #~ " rel=\"external\">learn more about request "
  1386. #~ "methods</a>"
  1387. #~ msgstr ""
  1388. #~ "變更遞交形式,<a href=\"https://zh.wikipedia.org/wiki/超文本传输协议#请求方法\""
  1389. #~ " rel=\"external\">看看更多關於請求方法的介紹</a>"
  1390. #~ msgid ""
  1391. #~ "This plugin checks if the address "
  1392. #~ "of the request is a TOR exit "
  1393. #~ "node, and informs the user if it"
  1394. #~ " is, like check.torproject.org but from "
  1395. #~ "searxng."
  1396. #~ msgstr "這會檢查 IP 是否 Tor 出口節點,並通知用戶。類近於 check.torproject.org。"
  1397. #~ msgid ""
  1398. #~ "The TOR exit node list "
  1399. #~ "(https://check.torproject.org/exit-addresses) is "
  1400. #~ "unreachable."
  1401. #~ msgstr "無法獲取 Tor 出口節點列表 (https://check.torproject.org/exit-addresses)。"
  1402. #~ msgid "You are using TOR. Your IP address seems to be: {ip_address}."
  1403. #~ msgstr "目前您正在使用 Tor,IP 地址: {ip_address}。"
  1404. #~ msgid "You are not using TOR. Your IP address seems to be: {ip_address}."
  1405. #~ msgstr "目前您沒有使用 Tor,IP 地址:{ip_address}。"
  1406. #~ msgid ""
  1407. #~ "The could not download the list of"
  1408. #~ " Tor exit-nodes from "
  1409. #~ "https://check.torproject.org/exit-addresses."
  1410. #~ msgstr ""
  1411. #~ msgid ""
  1412. #~ "You are using Tor. It looks like"
  1413. #~ " you have this external IP address:"
  1414. #~ " {ip_address}."
  1415. #~ msgstr ""
  1416. #~ msgid "You are not using Tor. You have this external IP address: {ip_address}."
  1417. #~ msgstr ""
  1418. #~ msgid "Autodetect search language"
  1419. #~ msgstr "自動偵測搜尋語言"
  1420. #~ msgid "Automatically detect the query search language and switch to it."
  1421. #~ msgstr "由搜尋字串自動偵測語言,並作為搜尋語言來使用。"
  1422. #~ msgid "others"
  1423. #~ msgstr "其他"
  1424. #~ msgid ""
  1425. #~ "This tab does not show up for "
  1426. #~ "search results, but you can search "
  1427. #~ "the engines listed here via bangs."
  1428. #~ msgstr "這個標籤頁不會顯示在搜索結果中,但您可以通過 ! 搜索這裡列出的引擎。"
  1429. #~ msgid "Shortcut"
  1430. #~ msgstr "快捷鍵"
  1431. #~ msgid "!bang"
  1432. #~ msgstr ""
  1433. #~ msgid ""
  1434. #~ "This tab dues not exists in the"
  1435. #~ " user interface, but you can search"
  1436. #~ " in these engines by its !bangs."
  1437. #~ msgstr ""
  1438. #~ msgid "Engines cannot retrieve results."
  1439. #~ msgstr "引擎無法擷取結果。"
  1440. #~ msgid "Please, try again later or find another SearXNG instance."
  1441. #~ msgstr "請稍後再試,或換用其他 SearXNG 站點。"
  1442. #~ msgid ""
  1443. #~ "Redirect to open-access versions of "
  1444. #~ "publications when available (plugin required)"
  1445. #~ msgstr "盡可能重新導向至出版品的開放存取版本(需要外掛程式)"
  1446. #~ msgid "Bang"
  1447. #~ msgstr ""
  1448. #~ msgid ""
  1449. #~ "Change how forms are submitted, <a "
  1450. #~ "href=\"http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods\""
  1451. #~ " rel=\"external\">learn more about request "
  1452. #~ "methods</a>"
  1453. #~ msgstr ""
  1454. #~ "變更遞交形式,<a href=\"https://zh.wikipedia.org/wiki/超文本传输协议#请求方法\""
  1455. #~ " rel=\"external\">看看更多關於請求方法的介紹</a>"
  1456. #~ msgid "On"
  1457. #~ msgstr "開啟"
  1458. #~ msgid "Off"
  1459. #~ msgstr "關閉"
  1460. #~ msgid "Enabled"
  1461. #~ msgstr "已啟用"
  1462. #~ msgid "Disabled"
  1463. #~ msgstr "已停用"
  1464. #~ msgid ""
  1465. #~ "Perform search immediately if a category"
  1466. #~ " selected. Disable to select multiple "
  1467. #~ "categories. (JavaScript required)"
  1468. #~ msgstr "若分類被選取時立刻執行搜尋。停用以選取多個分類。(需要 JavaScript)"
  1469. #~ msgid "Vim-like hotkeys"
  1470. #~ msgstr "類 Vim 快捷鍵"
  1471. #~ msgid ""
  1472. #~ "Navigate search results with Vim-like"
  1473. #~ " hotkeys (JavaScript required). Press \"h\""
  1474. #~ " key on main or result page to"
  1475. #~ " get help."
  1476. #~ msgstr "以類 Vim 的快捷鍵導覽搜尋結果(需要 JavaScript)。在主頁面或結果頁面按「h」鍵以取得說明。"
  1477. #~ msgid ""
  1478. #~ "we didn't find any results. Please "
  1479. #~ "use another query or search in "
  1480. #~ "more categories."
  1481. #~ msgstr "我們找不到任何結果。請使用其他搜尋方式或在更多分類中搜尋。"
  1482. #~ msgid "Rewrite result hostnames or remove results based on the hostname"
  1483. #~ msgstr "重寫結果的主機名或在此主機名移除結果"
  1484. #~ msgid "Bytes"
  1485. #~ msgstr "位元組"
  1486. #~ msgid "kiB"
  1487. #~ msgstr "kiB"
  1488. #~ msgid "MiB"
  1489. #~ msgstr "MiB"
  1490. #~ msgid "GiB"
  1491. #~ msgstr "GiB"
  1492. #~ msgid "TiB"
  1493. #~ msgstr "TiB"
  1494. #~ msgid "Hostname replace"
  1495. #~ msgstr "主機名替換"
  1496. #~ msgid "Error!"
  1497. #~ msgstr "錯誤!"
  1498. #~ msgid "Engines cannot retrieve results"
  1499. #~ msgstr "引擎無法擷取結果"
  1500. #~ msgid "Start submiting a new issue on GitHub"
  1501. #~ msgstr "在 GitHub 上提交問題"
  1502. #~ msgid "dummy"
  1503. #~ msgstr ""