messages.po 51 KB

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