messages.po 51 KB

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