zh-TW.yml 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827
  1. ---
  2. zh-TW:
  3. about:
  4. about_mastodon_html: Mastodon (長毛象)是一個<em>自由、開放原始碼</em>的社群網站。它是一個分散式的服務,避免您的通訊被單一商業機構壟斷操控。請您選擇一家您信任的 Mastodon 站點,在上面建立帳號,然後您就可以和任一 Mastodon 站點上的使用者互通,享受無縫的<em>社群網路</em>交流。
  5. contact_missing: 未設定
  6. contact_unavailable: 未公開
  7. hosted_on: 在 %{domain} 運作的 Mastodon 站點
  8. title: 關於本站
  9. accounts:
  10. follow: 跟隨
  11. followers:
  12. other: 跟隨者
  13. following: 正在跟隨
  14. instance_actor_flash: 此帳號是用來代表此伺服器的虛擬執行者,而非個別使用者。它的用途為維繫聯邦宇宙,且不應被停權。
  15. last_active: 上次活躍時間
  16. link_verified_on: 此連結的所有權已在 %{date} 檢查過
  17. nothing_here: 暫時沒有內容可供顯示!
  18. pin_errors:
  19. following: 您只能推薦您正在跟隨的使用者。
  20. posts:
  21. other: 嘟文
  22. posts_tab_heading: 嘟文
  23. admin:
  24. account_actions:
  25. action: 執行動作
  26. title: 對 %{acct} 執行站務動作
  27. account_moderation_notes:
  28. create: 新增站務記錄
  29. created_msg: 已成功新增管理備註!
  30. destroyed_msg: 已成功刪除管理備註!
  31. accounts:
  32. add_email_domain_block: 將電子郵件網域加入黑名單
  33. approve: 批准
  34. approved_msg: 已成功審核 %{username} 的新帳號申請
  35. are_you_sure: 您確定嗎?
  36. avatar: 大頭貼
  37. by_domain: 站點
  38. change_email:
  39. changed_msg: 電子郵件已成功變更!
  40. current_email: 目前的電子郵件地址
  41. label: 變更電子郵件地址
  42. new_email: 新的電子郵件地址
  43. submit: 變更電子郵件地址
  44. title: 為 %{username} 變更電子郵件地址
  45. change_role:
  46. changed_msg: 成功修改角色!
  47. label: 變更角色
  48. no_role: 沒有角色
  49. title: 為 %{username} 變更角色
  50. confirm: 確定
  51. confirmed: 已確定
  52. confirming: 確定
  53. custom: 自訂
  54. delete: 刪除資料
  55. deleted: 已刪除
  56. demote: 降級
  57. destroyed_msg: 即將刪除 %{username} 的資料
  58. disable: 停用
  59. disable_sign_in_token_auth: 停用電子郵件 token 驗證
  60. disable_two_factor_authentication: 停用兩階段認證
  61. disabled: 已停用
  62. display_name: 暱稱
  63. domain: 站點
  64. edit: 編輯
  65. email: 電子郵件地址
  66. email_status: 電子郵件狀態
  67. enable: 啟用
  68. enable_sign_in_token_auth: 啟用電子郵件 token 驗證
  69. enabled: 已啟用
  70. enabled_msg: 成功解除 %{username} 帳號的凍結
  71. followers: 跟隨者
  72. follows: 正在跟隨
  73. header: 開頭
  74. inbox_url: 收件匣 (Inbox) URL
  75. invite_request_text: 加入原因
  76. invited_by: 邀請者
  77. ip: IP 位址
  78. joined: 加入時間
  79. location:
  80. all: 全部
  81. local: 本站
  82. remote: 遠端
  83. title: 位置
  84. login_status: 登入狀態
  85. media_attachments: 多媒體附加檔案
  86. memorialize: 設定為追悼帳號
  87. memorialized: 被悼念的
  88. memorialized_msg: 成功將%{username} 的帳號變為追悼帳號
  89. moderation:
  90. active: 活躍
  91. all: 全部
  92. disabled: 已停用
  93. pending: 等待中
  94. silenced: 受限的
  95. suspended: 已停權
  96. title: 站務
  97. moderation_notes: 站務備註
  98. most_recent_activity: 最近活動
  99. most_recent_ip: 最近 IP 位址
  100. no_account_selected: 因未選取任何帳號,所以什麼事都沒發生
  101. no_limits_imposed: 未受限制
  102. no_role_assigned: 未指派角色
  103. not_subscribed: 未訂閱
  104. pending: 等待審核中
  105. perform_full_suspension: 停權
  106. previous_strikes: 先前的警示
  107. previous_strikes_description_html:
  108. other: 此帳號已有 <strong>%{count}</strong> 次警示。
  109. promote: 晉級
  110. protocol: 協議
  111. public: 公開
  112. push_subscription_expires: PuSH 訂閱過期
  113. redownload: 重新整理個人檔案
  114. redownloaded_msg: 成功重新載入%{username} 的個人檔案頁面
  115. reject: 拒絕
  116. rejected_msg: 已成功婉拒 %{username} 的新帳號申請
  117. remote_suspension_irreversible: 此帳號之資料已被不可逆地刪除。
  118. remote_suspension_reversible_hint_html: 這個帳號已於此伺服器被停權,所有資料將會於 %{date} 被刪除。在此之前,遠端伺服器可以完全回復此的帳號。如果您想即時刪除這個帳號的資料,您可以在下面進行操作。
  119. remove_avatar: 取消大頭貼
  120. remove_header: 移除開頭
  121. removed_avatar_msg: 已成功刪除 %{username} 的大頭貼
  122. removed_header_msg: 已成功刪除 %{username} 的封面圖片
  123. resend_confirmation:
  124. already_confirmed: 此使用者已被確認
  125. send: 重新傳送確認連結
  126. success: 已成功傳送確認連結!
  127. reset: 重設
  128. reset_password: 重設密碼
  129. resubscribe: 重新訂閱
  130. role: 角色
  131. search: 搜尋
  132. search_same_email_domain: 其他有同個電子郵件網域的使用者
  133. search_same_ip: 其他有同個 IP 的使用者
  134. security: 安全性
  135. security_measures:
  136. only_password: 僅使用密碼
  137. password_and_2fa: 密碼及兩階段驗證 (2FA)
  138. sensitive: 強制標記為敏感内容
  139. sensitized: 已標記為敏感內容
  140. shared_inbox_url: 共享收件匣 URL
  141. show:
  142. created_reports: 新增檢舉
  143. targeted_reports: 由其他人檢舉
  144. silence: 靜音
  145. silenced: 已靜音
  146. statuses: 嘟文
  147. strikes: 先前的警示
  148. subscribe: 訂閱
  149. suspend: 停權
  150. suspended: 已停權
  151. suspension_irreversible: 已永久刪除此帳號的資料。您可以取消這個帳號的停權狀態,但無法還原已刪除的資料。
  152. suspension_reversible_hint_html: 這個帳號已被暫停,所有數據將於 %{date} 被刪除。在此之前,您可以完全回復您的帳號。如果您想即時刪除這個帳號的數據,您可以在下面進行操作。
  153. title: 帳號
  154. unblock_email: 解除封鎖電子郵件地址
  155. unblocked_email_msg: 成功解除封鎖 %{username} 的電子郵件地址
  156. unconfirmed_email: 未確認的電子郵件地址
  157. undo_sensitized: 取消強制標記為敏感內容
  158. undo_silenced: 取消靜音
  159. undo_suspension: 取消停權
  160. unsilenced_msg: 成功解除 %{username} 的帳號限制
  161. unsubscribe: 取消訂閱
  162. unsuspended_msg: 已成功取消停權 %{username} 的帳號
  163. username: 使用者名稱
  164. view_domain: 查看站台概要
  165. warn: 警告
  166. web: 頁面
  167. whitelisted: 已加入白名單
  168. action_logs:
  169. action_types:
  170. approve_appeal: 批准申訴
  171. approve_user: 批准使用者
  172. assigned_to_self_report: 指派回報
  173. change_email_user: 變更使用者的電子郵件地址
  174. change_role_user: 變更使用者角色
  175. confirm_user: 確認使用者
  176. create_account_warning: 新增警告
  177. create_announcement: 新增公告
  178. create_canonical_email_block: 新增 E-mail 封鎖
  179. create_custom_emoji: 新增自訂顏文字
  180. create_domain_allow: 新增允許網域
  181. create_domain_block: 新增網域封鎖
  182. create_email_domain_block: 新增電子郵件網域封鎖
  183. create_ip_block: 新增IP規則
  184. create_unavailable_domain: 新增無法存取的網域
  185. create_user_role: 新增角色
  186. demote_user: 將用戶降級
  187. destroy_announcement: 刪除公告
  188. destroy_canonical_email_block: 刪除 E-mail 封鎖
  189. destroy_custom_emoji: 刪除自訂顏文字
  190. destroy_domain_allow: 刪除允許網域
  191. destroy_domain_block: 刪除網域封鎖
  192. destroy_email_domain_block: 刪除電子郵件網域封鎖
  193. destroy_instance: 清除網域
  194. destroy_ip_block: 刪除 IP 規則
  195. destroy_status: 刪除狀態
  196. destroy_unavailable_domain: 刪除無法存取的網域
  197. destroy_user_role: 移除角色
  198. disable_2fa_user: 停用兩階段認證
  199. disable_custom_emoji: 停用自訂顏文字
  200. disable_sign_in_token_auth_user: 停用使用者電子郵件 token 驗證
  201. disable_user: 停用帳號
  202. enable_custom_emoji: 啓用自訂顏文字
  203. enable_sign_in_token_auth_user: 啟用使用者電子郵件 token 驗證
  204. enable_user: 啓用帳號
  205. memorialize_account: 設定成追悼帳號
  206. promote_user: 將用戶升級
  207. reject_appeal: 駁回申訴
  208. reject_user: 回絕使用者
  209. remove_avatar_user: 刪除大頭貼
  210. reopen_report: 重新開啟檢舉報告
  211. resend_user: 重新發送驗證信
  212. reset_password_user: 重設密碼
  213. resolve_report: 解決檢舉報告
  214. sensitive_account: 將媒體強制標記為敏感內容
  215. silence_account: 靜音帳號
  216. suspend_account: 停權帳號
  217. unassigned_report: 取消指派檢舉報告
  218. unblock_email_account: 解除封鎖電子郵件地址
  219. unsensitive_account: 取消將媒體強制標記為敏感內容
  220. unsilence_account: 取消帳號的靜音狀態
  221. unsuspend_account: 取消帳號的暫停狀態
  222. update_announcement: 更新公告
  223. update_custom_emoji: 更新自訂顏文字
  224. update_domain_block: 更新網域封鎖
  225. update_ip_block: 更新 IP 規則
  226. update_status: 更新狀態
  227. update_user_role: 更新角色
  228. actions:
  229. approve_appeal_html: "%{name} 已批准來自 %{target} 的審核決定申訴"
  230. approve_user_html: "%{name} 已批准從 %{target} 而來的註冊"
  231. assigned_to_self_report_html: "%{name} 將報告 %{target} 指派給自己"
  232. change_email_user_html: "%{name} 已變更使用者 %{target} 的電子郵件地址"
  233. change_role_user_html: "%{name} 已變更 %{target} 的角色"
  234. confirm_user_html: "%{name} 已確認使用者 %{target} 的電子郵件位址"
  235. create_account_warning_html: "%{name} 已對 %{target} 送出警告"
  236. create_announcement_html: "%{name} 已新增公告 %{target}"
  237. create_canonical_email_block_html: "%{name} 已封鎖 hash 為 %{target} 的 e-mail"
  238. create_custom_emoji_html: "%{name} 已上傳新自訂表情符號 %{target}"
  239. create_domain_allow_html: "%{name} 允許 %{target} 網域加入聯邦宇宙"
  240. create_domain_block_html: "%{name} 已封鎖網域 %{target}"
  241. create_email_domain_block_html: "%{name} 已封鎖電子郵件網域 %{target}"
  242. create_ip_block_html: "%{name} 已設定 IP %{target} 的規則"
  243. create_unavailable_domain_html: "%{name} 停止發送至網域 %{target}"
  244. create_user_role_html: "%{name} 已新增 %{target} 角色"
  245. demote_user_html: "%{name} 將使用者 %{target} 降級"
  246. destroy_announcement_html: "%{name} 已刪除公告 %{target}"
  247. destroy_canonical_email_block_html: "%{name} 已解除封鎖 hash 為 %{target} 的電子郵件"
  248. destroy_custom_emoji_html: "%{name} 已刪除表情符號 %{target}"
  249. destroy_domain_allow_html: "%{name} 不允許與網域 %{target} 加入聯邦宇宙"
  250. destroy_domain_block_html: "%{name} 已解除封鎖網域 %{target}"
  251. destroy_email_domain_block_html: "%{name} 已解除封鎖電子郵件網域 %{target}"
  252. destroy_instance_html: "%{name} 已清除網域 %{target}"
  253. destroy_ip_block_html: "%{name} 已刪除 IP %{target} 的規則"
  254. destroy_status_html: "%{name} 已刪除 %{target} 的嘟文"
  255. destroy_unavailable_domain_html: "%{name} 已恢復對網域 %{target} 的發送"
  256. destroy_user_role_html: "%{name} 已刪除 %{target} 角色"
  257. disable_2fa_user_html: "%{name} 已停用使用者 %{target} 的兩階段認證 (2FA) "
  258. disable_custom_emoji_html: "%{name} 已停用自訂表情符號 %{target}"
  259. disable_sign_in_token_auth_user_html: "%{name} 已停用 %{target} 之使用者電子郵件 token 驗證"
  260. disable_user_html: "%{name} 將使用者 %{target} 設定為禁止登入"
  261. enable_custom_emoji_html: "%{name} 已啟用自訂表情符號 %{target}"
  262. enable_sign_in_token_auth_user_html: "%{name} 已啟用 %{target} 之使用者電子郵件 token 驗證"
  263. enable_user_html: "%{name} 將使用者 %{target} 設定為允許登入"
  264. memorialize_account_html: "%{name} 將 %{target} 設定為追悼帳號"
  265. promote_user_html: "%{name} 對使用者 %{target} 已進行晉級操作"
  266. reject_appeal_html: "%{name} 已回絕來自 %{target} 的審核決定申訴"
  267. reject_user_html: "%{name} 已回絕從 %{target} 而來的註冊"
  268. remove_avatar_user_html: "%{name} 已移除 %{target} 的大頭貼"
  269. reopen_report_html: "%{name} 重新開啟 %{target} 的檢舉"
  270. resend_user_html: "%{name} 已重新發送驗證信給 %{target}"
  271. reset_password_user_html: "%{name} 已重新設定使用者 %{target} 的密碼"
  272. resolve_report_html: "%{name} 已處理 %{target} 的檢舉"
  273. sensitive_account_html: "%{name} 將 %{target} 的媒體檔案標記為敏感內容"
  274. silence_account_html: "%{name} 已靜音使用者 %{target}"
  275. suspend_account_html: "%{name} 已停權 %{target} 的帳號"
  276. unassigned_report_html: "%{name} 取消指派 %{target} 的檢舉"
  277. unblock_email_account_html: "%{name} 已解除封鎖 %{target} 的電子郵件地址"
  278. unsensitive_account_html: "%{name} 將 %{target} 的媒體檔案取消標記為敏感內容"
  279. unsilence_account_html: "%{name} 已取消使用者 %{target} 的靜音狀態"
  280. unsuspend_account_html: "%{name} 已取消停權 %{target} 的帳號"
  281. update_announcement_html: "%{name} 已更新公告 %{target}"
  282. update_custom_emoji_html: "%{name} 已更新自訂表情符號 %{target}"
  283. update_domain_block_html: "%{name} 已更新 %{target} 之網域封鎖"
  284. update_ip_block_html: "%{name} 已變更 IP %{target} 之規則"
  285. update_status_html: "%{name} 已更新 %{target} 的嘟文"
  286. update_user_role_html: "%{name} 已變更 %{target} 角色"
  287. deleted_account: 已刪除帳號
  288. empty: 找不到 log
  289. filter_by_action: 按動作過濾
  290. filter_by_user: 按使用者過濾
  291. title: 營運日誌
  292. announcements:
  293. destroyed_msg: 成功刪除公告!
  294. edit:
  295. title: 編輯公告
  296. empty: 找不到公告。
  297. live: 直播
  298. new:
  299. create: 新增公告
  300. title: 新增公告
  301. publish: 發布
  302. published_msg: 成功發布公告!
  303. scheduled_for: 排定 %{time}
  304. scheduled_msg: 公告已排定公開!
  305. title: 公告
  306. unpublish: 取消發布
  307. unpublished_msg: 成功取消發布公告!
  308. updated_msg: 成功更新公告!
  309. critical_update_pending: 重要更新待升級
  310. custom_emojis:
  311. assign_category: 指定分類
  312. by_domain: 站點
  313. copied_msg: 成功建立 emoji 表情符號之本地備份
  314. copy: 複製
  315. copy_failed_msg: 無法將表情複製到本地
  316. create_new_category: 建立新分類
  317. created_msg: 已新增表情符號!
  318. delete: 刪除
  319. destroyed_msg: 已刪除表情符號!
  320. disable: 停用
  321. disabled: 已停用
  322. disabled_msg: 已停用該表情符號
  323. emoji: 表情符號
  324. enable: 啟用
  325. enabled: 已啟用
  326. enabled_msg: 已啟用該表情符號
  327. image_hint: 檔案大小最大至 %{size} 之 PNG 或 GIF
  328. list: 列表
  329. listed: 已顯示
  330. new:
  331. title: 加入新的自訂表情符號
  332. no_emoji_selected: 未選取任何 emoji,所以什麼事都沒發生
  333. not_permitted: 您無權執行此操作
  334. overwrite: 覆蓋
  335. shortcode: 短代碼
  336. shortcode_hint: 至少 2 個字元,只能使用字母、數字和下劃線
  337. title: 自訂表情符號
  338. uncategorized: 未分類
  339. unlist: 不公開
  340. unlisted: 已隱藏
  341. update_failed_msg: 無法更新表情符號
  342. updated_msg: 已更新表情符號!
  343. upload: 上傳新的表情符號
  344. dashboard:
  345. active_users: 活躍使用者
  346. interactions: 互動
  347. media_storage: 媒體儲存空間
  348. new_users: 新使用者
  349. opened_reports: 已開啟的報告
  350. pending_appeals_html:
  351. other: "<strong>%{count}</strong> 個待處理申訴"
  352. pending_reports_html:
  353. other: "<strong>%{count}</strong> 份待處理回報"
  354. pending_tags_html:
  355. other: "<strong>%{count}</strong> 個待處理主題標籤"
  356. pending_users_html:
  357. other: "<strong>%{count}</strong> 位待處理使用者"
  358. resolved_reports: 已解決的報告
  359. software: 軟體
  360. sources: 註冊來源
  361. space: 儲存空間用量
  362. title: 儀表板
  363. top_languages: 最活躍語言
  364. top_servers: 最活躍伺服器
  365. website: 網站
  366. disputes:
  367. appeals:
  368. empty: 找不到申訴。
  369. title: 申訴
  370. domain_allows:
  371. add_new: 將網域加入聯邦宇宙白名單
  372. created_msg: 網域已成功加入聯邦宇宙白名單
  373. destroyed_msg: 網域已成功從聯邦宇宙白名單移除
  374. export: 匯出
  375. import: 匯入
  376. undo: 從聯邦宇宙白名單移除
  377. domain_blocks:
  378. add_new: 新增網域黑名單
  379. confirm_suspension:
  380. cancel: 取消
  381. confirm: 停權
  382. permanent_action: 撤銷停權將不會回復任何資料或跟隨關係
  383. preamble_html: 您將要停權 <strong>%{domain}</strong> 及其子網域。
  384. remove_all_data: 此操作將從您伺服器移除所有來自此網域帳號之內容、媒體、個人檔案資料。
  385. stop_communication: 您伺服器將停止與這些伺服器交流。
  386. title: 確認對 %{domain} 網域之封鎖
  387. undo_relationships: 此操作將撤銷任何您伺服器與此伺服器帳號間之跟隨關係。
  388. created_msg: 正在進行網域封鎖
  389. destroyed_msg: 已撤銷網域封鎖
  390. domain: 站點
  391. edit: 更改封鎖的站台
  392. existing_domain_block: 您已對 %{name} 施加更嚴格的限制。
  393. existing_domain_block_html: 您已對 %{name} 施加更嚴格的限制,您需要先 <a href="%{unblock_url}">解除封鎖</a>。
  394. export: 匯出
  395. import: 匯入
  396. new:
  397. create: 新增封鎖
  398. hint: 站點封鎖動作並不會阻止帳號紀錄被新增至資料庫,但會自動回溯性地對那些帳號套用特定管理設定。
  399. severity:
  400. desc_html: "「<strong>靜音</strong>」令該站點下使用者的嘟文,設定為只對跟隨者顯示,沒有跟隨的人會看不到。「<strong>停權</strong>」會刪除將該站點下使用者的嘟文、媒體檔案和個人檔案。「<strong>無</strong>」則會拒絕接收來自該站點的媒體檔案。"
  401. noop: 無
  402. silence: 靜音
  403. suspend: 停權
  404. title: 新增網域黑名單
  405. no_domain_block_selected: 因未選取網域黑名單,所以什麼事都沒發生
  406. not_permitted: 您無權執行此操作
  407. obfuscate: 混淆網域名稱
  408. obfuscate_hint: 若啟用網域廣告列表限制,於列表部份混淆網域名稱
  409. private_comment: 私人留言
  410. private_comment_hint: 請提供更多有關此站台限制的資訊以供管理員作內部參考。
  411. public_comment: 公開留言
  412. public_comment_hint: 如果您已經啟用站台限制列表的公告,請為一般大眾提供更多有關此站台限制的資訊。
  413. reject_media: 拒絕媒體檔案
  414. reject_media_hint: 刪除本地快取的媒體檔案,並且不再接收來自該站點的任何媒體檔案。與停權無關
  415. reject_reports: 拒絕檢舉
  416. reject_reports_hint: 忽略所有來自此網域的檢舉。與停權無關
  417. undo: 撤銷網域封鎖
  418. view: 顯示已封鎖網域
  419. email_domain_blocks:
  420. add_new: 加入新項目
  421. attempts_over_week:
  422. other: 上週共有 %{count} 次註冊嘗試
  423. created_msg: 已成功將電子郵件網域加入黑名單
  424. delete: 刪除
  425. dns:
  426. types:
  427. mx: MX 記錄
  428. domain: 網域
  429. new:
  430. create: 新增網域
  431. resolve: 解析網域
  432. title: 新增電子郵件黑名單項目
  433. no_email_domain_block_selected: 因未選取電子郵件網域黑名單,所以什麼事都沒發生
  434. not_permitted: 無權限
  435. resolved_dns_records_hint_html: 網域名稱解析為以下 MX 網域,這些網域最終負責接收電子郵件。封鎖 MX 網域將會封鎖任何來自使用相同 MX 網域的電子郵件註冊,即便可見的域名是不同的也一樣。<strong>請注意,不要封鎖主要的電子郵件服務提供商。</strong>
  436. resolved_through_html: 透過 %{domain} 解析
  437. title: 電子郵件黑名單
  438. export_domain_allows:
  439. new:
  440. title: 匯入網域白名單
  441. no_file: 尚未選擇檔案
  442. export_domain_blocks:
  443. import:
  444. description_html: 您將匯入網域黑名單列表。若您非自行編纂此列表,請審慎檢查。
  445. existing_relationships_warning: 既存之跟隨關係
  446. private_comment_description_html: 為了幫助您追蹤匯入黑名單之來源,匯入黑名單建立時將隨附以下私密備註:<q>%{comment}</q>
  447. private_comment_template: 於 %{date} 由 %{source} 匯入
  448. title: 匯入網域黑名單
  449. invalid_domain_block: 由於此錯誤,以致一個或多個網域封鎖被略過:%{error}
  450. new:
  451. title: 匯入網域黑名單
  452. no_file: 尚未選擇檔案
  453. follow_recommendations:
  454. description_html: |-
  455. <strong>跟隨建議幫助新使用者們快速找到有趣的內容</strong>。當使用者沒有與其他帳號有足夠多的互動以建立個人化跟隨建議時,這些帳號將會被推薦。這些帳號將基於某選定語言之高互動和高本地跟隨者數量帳號而
  456. 每日重新更新。
  457. language: 對於語言
  458. status: 狀態
  459. suppress: 取消跟隨建議
  460. suppressed: 取消
  461. title: 跟隨建議
  462. unsuppress: 回復跟隨建議
  463. instances:
  464. availability:
  465. description_html:
  466. other: 若在<strong>%{count}天</strong>向某個網域遞送失敗,除非收到某個網域的遞送<em>表單</em>,否則不會繼續嘗試遞送。
  467. failure_threshold_reached: 錯誤門檻於 %{date}。
  468. failures_recorded:
  469. other: 錯誤嘗試於 %{count} 天。
  470. no_failures_recorded: 報告中沒有錯誤。
  471. title: 可用狀態
  472. warning: 上一次嘗試連線至本伺服器失敗
  473. back_to_all: 所有
  474. back_to_limited: 受限制的
  475. back_to_warning: 警告
  476. by_domain: 站台
  477. confirm_purge: 您確定要永久刪除來自此網域的資料嗎?
  478. content_policies:
  479. comment: 內部備註
  480. description_html: 您可以定義對所有此網域帳號及其子網域所實施之內容政策。
  481. limited_federation_mode_description_html: 您可以選擇是否允許此網域加入聯邦宇宙。
  482. policies:
  483. reject_media: 拒絕多媒體
  484. reject_reports: 拒絕檢舉
  485. silence: 限制
  486. suspend: 停權
  487. policy: 政策
  488. reason: 公開理由
  489. title: 內容政策
  490. dashboard:
  491. instance_accounts_dimension: 最多人跟隨之帳號
  492. instance_accounts_measure: 已儲存帳號
  493. instance_followers_measure: 我們那邊的跟隨者
  494. instance_follows_measure: 他們這邊的跟隨者
  495. instance_languages_dimension: 熱門語言
  496. instance_media_attachments_measure: 已儲存多媒體附加檔案
  497. instance_reports_measure: 關於他們的檢舉報告
  498. instance_statuses_measure: 已儲存嘟文
  499. delivery:
  500. all: 所有
  501. clear: 清除遞送錯誤
  502. failing: 發送失敗
  503. restart: 重新啟動遞送
  504. stop: 停止遞送
  505. unavailable: 無法使用
  506. delivery_available: 可傳送
  507. delivery_error_days: 遞送失敗天數
  508. delivery_error_hint: 若 %{count} 日皆無法遞送 ,則會自動標記無法遞送。
  509. destroyed_msg: 來自 %{domain} 的資料現在正在佇列中等待刪除。
  510. empty: 找不到網域
  511. known_accounts:
  512. other: "%{count} 個已知帳號"
  513. moderation:
  514. all: 全部
  515. limited: 限制
  516. title: 管管
  517. private_comment: 私人留言
  518. public_comment: 公開留言
  519. purge: 清除
  520. purge_description_html: 若您相信此網域將永久離線,您可以自儲存空間中刪除該網域所有帳號紀錄及相關資料。這可能花費一些時間。
  521. title: 聯邦宇宙
  522. total_blocked_by_us: 被我們封鎖
  523. total_followed_by_them: 被他們跟隨
  524. total_followed_by_us: 被我們跟隨
  525. total_reported: 關於他們的檢舉報告
  526. total_storage: 多媒體附加檔案
  527. totals_time_period_hint_html: 以下顯示之總和包含所有時間的資料。
  528. invites:
  529. deactivate_all: 全部停用
  530. filter:
  531. all: 全部
  532. available: 可用
  533. expired: 已失效
  534. title: 過濾
  535. title: 邀請使用者
  536. ip_blocks:
  537. add_new: 建立規則
  538. created_msg: 更新 IP 規則成功
  539. delete: 刪除
  540. expires_in:
  541. '1209600': 2 個星期
  542. '15778476': 6 個月
  543. '2629746': 1 個月
  544. '31556952': 1 年
  545. '86400': 1 天
  546. '94670856': 3 年
  547. new:
  548. title: 建立新的 IP 規則
  549. no_ip_block_selected: 因未選取任何 IP 規則,所以什麼事都沒發生
  550. title: IP 規則
  551. relationships:
  552. title: "%{acct} 的關係"
  553. relays:
  554. add_new: 新增中繼站
  555. delete: 刪除
  556. description_html: "<strong>聯邦中繼站</strong> 是種中繼伺服器,會在訂閱並推送至此中繼站的伺服器之間交換大量的公開嘟文。<strong>中繼站也能協助小型或中型伺服器從聯邦宇宙中探索內容</strong>,而無須本地使用者手動跟隨遠端伺服器的其他使用者。"
  557. disable: 停用
  558. disabled: 停用
  559. enable: 啟用
  560. enable_hint: 啟用後,您的伺服器將訂閱該中繼的所有公開文章,並將會此伺服器的公開文章發送給它。
  561. enabled: 已啟用
  562. inbox_url: 中繼 URL
  563. pending: 等待中繼站審核
  564. save_and_enable: 儲存並啟用
  565. setup: 設定中繼連結
  566. signatures_not_enabled: 若啟用安全模式或受限的聯邦宇宙模式,中繼將不會正常運作
  567. status: 狀態
  568. title: 中繼
  569. report_notes:
  570. created_msg: 已成功新增檢舉備註!
  571. destroyed_msg: 已成功刪除檢舉備註!
  572. reports:
  573. account:
  574. notes:
  575. other: "%{count} 則備註"
  576. action_log: 審計日誌
  577. action_taken_by: 操作執行者
  578. actions:
  579. delete_description_html: 被檢舉的嘟文將被刪除,並且會被以刪除線標記,幫助您升級同一帳號未來的違規行為。
  580. mark_as_sensitive_description_html: 被檢舉的嘟文中的媒體將會被標記為敏感內容,並將會記錄一次警告,以協助您升級同一帳號未來的違規行為。
  581. other_description_html: 檢視更多控制帳號行為以及自訂檢舉帳號通知之選項。
  582. resolve_description_html: 被檢舉的帳號將不被採取任何行動,不會加以刪除線標記,並且此份報告將被關閉。
  583. silence_description_html: 此帳號僅會對已跟隨帳號之使用者或手動查詢可見,將大幅度限制觸及範圍。此設定可隨時被還原。關閉所有對此帳號之檢舉報告。
  584. suspend_description_html: 此帳號及其所有內容將不可被存取並且最終被移除,並且無法與之進行互動。三十天內可以撤銷此動作。關閉所有對此帳號之檢舉報告。
  585. actions_description_html: 決定應對此報告採取何種行動。若您對檢舉之帳號採取懲罰措施,則將對他們發送 e-mail 通知,如非選擇了 <strong>垃圾郵件</strong> 類別。
  586. actions_description_remote_html: 決定將對此檢舉報告採取何種動作。這將僅作用於<strong>您的伺服器</strong>與此遠端帳號及其內容之通訊行為。
  587. add_to_report: 加入更多至報告
  588. are_you_sure: 您確定嗎?
  589. assign_to_self: 指派給自己
  590. assigned: 指派站務
  591. by_target_domain: 檢舉帳號之網域
  592. cancel: 取消
  593. category: 分類
  594. category_description_html: 此帳號及/或被檢舉內容之原因會被引用在檢舉帳號通知中
  595. comment:
  596. none: 無
  597. comment_description_html: 提供更多資訊,%{name} 寫道:
  598. confirm: 確認
  599. confirm_action: 確認對 @%{acct} 執行站務動作
  600. created_at: 日期
  601. delete_and_resolve: 刪除嘟文
  602. forwarded: 已轉寄
  603. forwarded_to: 轉寄到 %{domain}
  604. mark_as_resolved: 標記為「已解決」
  605. mark_as_sensitive: 標記為敏感內容
  606. mark_as_unresolved: 標記為「未解決」
  607. no_one_assigned: 沒有人
  608. notes:
  609. create: 新增備註
  610. create_and_resolve: 新增備註並標記為「已解決」
  611. create_and_unresolve: 新增備註並標記「未解決」
  612. delete: 刪除
  613. placeholder: 記錄已執行的動作,或其他相關的更新...
  614. title: 備註
  615. notes_description_html: 檢視及留下些給其他管理員和未來的自己的備註
  616. processed_msg: '檢舉報告 #%{id} 已被成功處理'
  617. quick_actions_description_html: 採取一個快速行動,或者下捲以檢視檢舉內容:
  618. remote_user_placeholder: 來自 %{instance} 之遠端使用者
  619. reopen: 重開檢舉
  620. report: '檢舉 #%{id}'
  621. reported_account: 被檢舉使用者
  622. reported_by: 檢舉人
  623. resolved: 已解決
  624. resolved_msg: 檢舉報告已處理完成!
  625. skip_to_actions: 跳過行動
  626. status: 嘟文
  627. statuses: 被檢舉的內容
  628. statuses_description_html: 侵犯性違規內容會被引用在檢舉帳號通知中
  629. summary:
  630. action_preambles:
  631. delete_html: 您將要 <strong>移除</strong> 某些 <strong>@%{acct}</strong> 之嘟文。此將會:
  632. mark_as_sensitive_html: 您將要 <strong>標記</strong> 某些 <strong>@%{acct}</strong> 之嘟文為 <strong>敏感內容 </strong>。此將會:
  633. silence_html: 您將要 <strong>限制</strong> <strong>@%{acct}</strong> 之帳號。此將會:
  634. suspend_html: 您將要 <strong>停權</strong> <strong>@%{acct}</strong> 之帳號。此將會:
  635. actions:
  636. delete_html: 移除違反規則之嘟文
  637. mark_as_sensitive_html: 將違反規則之嘟文多媒體標記為敏感內容
  638. silence_html: 藉由標記他們的個人檔案與內容為僅可見於已跟隨帳號或手動查詢此個人檔案,此將嚴格地限制 <strong>@%{acct}</strong> 之觸及率
  639. suspend_html: 停權 <strong>@%{acct}</strong>,將他們的個人檔案與內容標記為無法存取及無法與之互動
  640. close_report: '將檢舉報告 #%{id} 標記為已處理'
  641. close_reports_html: 將 <strong>所有</strong> 對於 <strong>@%{acct}</strong> 之檢舉報告標記為已處理
  642. delete_data_html: 於即日起 30 天後刪除 <strong>@%{acct}</strong>之個人檔案與內容,除非他們於期限前被解除暫停
  643. preview_preamble_html: "<strong>@%{acct}</strong> 將收到關於以下內容之警告:"
  644. record_strike_html: 紀錄關於 <strong>@%{acct}</strong>之警示有助於您升級對此帳號未來違規處理
  645. send_email_html: 寄一封警告 e-mail 給 <strong>@%{acct}</strong>
  646. warning_placeholder: 選填之其他站務動作理由。
  647. target_origin: 檢舉帳號之來源
  648. title: 檢舉
  649. unassign: 取消指派
  650. unknown_action_msg: 未知的動作:%{action}
  651. unresolved: 未解決
  652. updated_at: 更新
  653. view_profile: 檢視個人檔案頁面
  654. roles:
  655. add_new: 新增角色
  656. assigned_users:
  657. other: "%{count} 個使用者"
  658. categories:
  659. administration: 管理員
  660. devops: DevOps
  661. invites: 邀請
  662. moderation: 站務
  663. special: 特殊
  664. delete: 刪除
  665. description_html: 透過<strong>使用者角色</strong>,您可以自訂您的使用者可以存取 Mastodon 的哪些功能與區域。
  666. edit: 編輯「%{name}」角色
  667. everyone: 預設權限
  668. everyone_full_description_html: 這是會影響<strong>所有使用者</strong>的<strong>基本角色</strong>,即使是那些沒有被分配角色的使用者也一樣。其他所有的角色都從它繼承權限。
  669. permissions_count:
  670. other: "%{count} 個權限"
  671. privileges:
  672. administrator: 管理員
  673. administrator_description: 擁有此權限的使用者將會略過所有權限
  674. delete_user_data: 刪除使用者資料
  675. delete_user_data_description: 允許使用者立刻刪除其他使用者的資料
  676. invite_users: 邀請使用者
  677. invite_users_description: 允許使用者邀請新人加入伺服器
  678. manage_announcements: 管理公告
  679. manage_announcements_description: 允許使用者管理伺服器上的公告
  680. manage_appeals: 管理解封申訴系統
  681. manage_appeals_description: 允許使用者審閱針對站務動作的申訴
  682. manage_blocks: 管理封鎖
  683. manage_blocks_description: 允許使用者封鎖電子郵件提供者與 IP 位置
  684. manage_custom_emojis: 管理自訂表情符號
  685. manage_custom_emojis_description: 允許使用者管理伺服器上的自訂表情符號
  686. manage_federation: 管理聯邦宇宙
  687. manage_federation_description: 允許使用者封鎖或允許與其他網域的聯邦宇宙,並控制傳遞能力
  688. manage_invites: 管理邀請
  689. manage_invites_description: 允許使用者瀏覽與停用邀請連結
  690. manage_reports: 管理回報
  691. manage_reports_description: 允許使用者審閱回報並對回報執行站務動作
  692. manage_roles: 管理角色
  693. manage_roles_description: 允許使用者管理並指派低於他們的使用者
  694. manage_rules: 管理規則
  695. manage_rules_description: 允許使用者變更伺服器規則
  696. manage_settings: 管理設定
  697. manage_settings_description: 允許使用者變更站點設定
  698. manage_taxonomies: 管理分類方式
  699. manage_taxonomies_description: 允許使用者審閱熱門內容與更新主題標籤設定
  700. manage_user_access: 管理使用者存取權
  701. manage_user_access_description: 允許使用者停用其他人的兩階段驗證、變更電子郵件地址以及重設密碼
  702. manage_users: 管理使用者
  703. manage_users_description: 允許使用者檢視其他使用者的詳細資訊並對回報執行站務動作
  704. manage_webhooks: 管理 Webhooks
  705. manage_webhooks_description: 允許使用者為管理事件設定 webhooks
  706. view_audit_log: 檢視審核日誌
  707. view_audit_log_description: 允許使用者檢視伺服器上的管理動作歷史
  708. view_dashboard: 檢視儀表板
  709. view_dashboard_description: 允許使用者存取儀表板與各種指標
  710. view_devops: DevOps
  711. view_devops_description: 允許使用者存取 Sidekiq 與 pgHero 儀表板
  712. title: 角色
  713. rules:
  714. add_new: 新增規則
  715. delete: 刪除
  716. description_html: 雖然大多數人皆宣稱已閱讀並同意服務條款,通常直到某些問題發生時人們從未讀過。<strong>以透過提供條列式規則的方式讓您的伺服器規則可以一目了然。</strong>試著維持各項條款簡短而明瞭,但也試著不要將條款切割為許多分開的項目。
  717. edit: 編輯規則
  718. empty: 未曾定義任何伺服器規則
  719. title: 伺服器規則
  720. settings:
  721. about:
  722. manage_rules: 管理伺服器規則
  723. preamble: 提供關於此伺服器如何運作、管理、及金援之供詳細資訊。
  724. rules_hint: 這是關於您的使用者應遵循規則之專有區域。
  725. title: 關於
  726. appearance:
  727. preamble: 客製化 Mastodon 網頁介面。
  728. title: 外觀設定
  729. branding:
  730. preamble: 您的伺服器品牌使之從聯邦宇宙網路中其他伺服器間凸顯自己。此資訊可能於各種不同的環境中顯示,例如 Mastodon 網頁介面、原生應用程式、其他網頁上的連結預覽或是其他通訊應用程式等等。因此,請盡可能保持此資訊簡潔明朗。
  731. title: 品牌化
  732. captcha_enabled:
  733. desc_html: |-
  734. 此功能依賴於來自 hCaptcha 之外部腳本,其可能有安全及隱私顧慮。
  735. 此外,<strong>這將大幅降低註冊流程對某些族群之易用性,特別是無障礙需求人士</strong>。基於此因,請考慮其他替代性方案,例如審核制或是邀請制之註冊流程。
  736. title: 要求新使用者完成 CAPTCHA 挑戰以確認帳號
  737. content_retention:
  738. preamble: 控制使用者產生內容如何儲存於 Mastodon 上。
  739. title: 內容保留期間
  740. default_noindex:
  741. desc_html: 影響所有沒有變更此設定的使用者
  742. title: 預設將使用者排除於搜尋引擎索引
  743. discovery:
  744. follow_recommendations: 跟隨建議
  745. preamble: 呈現有趣的內容有助於 Mastodon 上一人不識的新手上路。控制各種不同的分類在您伺服器上如何被探索到。
  746. profile_directory: 個人檔案目錄
  747. public_timelines: 公開時間軸
  748. publish_discovered_servers: 公開已知伺服器列表
  749. publish_statistics: 公開統計資料
  750. title: 探索
  751. trends: 熱門趨勢
  752. domain_blocks:
  753. all: 給任何人
  754. disabled: 給沒有人
  755. users: 套用至所有登入的本站使用者
  756. registrations:
  757. preamble: 控制誰能於您伺服器上建立帳號。
  758. title: 註冊
  759. registrations_mode:
  760. modes:
  761. approved: 註冊需要核准
  762. none: 沒有人可註冊
  763. open: 任何人皆能註冊
  764. security:
  765. authorized_fetch: 要求自聯邦宇宙伺服器之驗證
  766. authorized_fetch_hint: 要求聯邦宇宙伺服器進行驗證將更嚴格地執行使用者層級及伺服器層級之封鎖。然而,這將會帶來一些性能損失、減少您的回嘟觸及量、並可能會引入與某些聯邦宇宙伺服器之相容性問題。 此外,這無法阻止專門服務抓取您的公開嘟文及帳號資料。
  767. authorized_fetch_overridden_hint: 由於環境變數之設定值覆寫,您目前無法變更此設定。
  768. federation_authentication: 強制聯邦宇宙伺服器驗證
  769. title: 伺服器設定
  770. site_uploads:
  771. delete: 刪除上傳的檔案
  772. destroyed_msg: 成功刪除站台的上傳項目!
  773. software_updates:
  774. critical_update: 重要 — 請儘速升級
  775. description: 建議將您的 Mastodon 伺服器升級至最新狀態,以獲得最新錯誤修正及功能更新。此外,即時更新 Mastodon 以避免偶發之安全問題非常重要。因此,Mastodon 每 30 分鐘將檢查一次更新,並依據您的電子郵件通知設定通知您。
  776. documentation_link: 了解更多
  777. release_notes: 版本資訊
  778. title: 可取得的更新
  779. type: 類型
  780. types:
  781. major: 主要版本更新 (major release)
  782. minor: 次要版本更新 (minor release)
  783. patch: 修正版本 (patch release) — 錯誤修正及易於套用之變更
  784. version: 版本
  785. statuses:
  786. account: 作者
  787. application: 應用程式
  788. back_to_account: 返回帳號訊息頁
  789. back_to_report: 回到檢舉報告頁面
  790. batch:
  791. remove_from_report: 從檢舉報告中移除
  792. report: 檢舉報告
  793. deleted: 已刪除
  794. favourites: 最愛
  795. history: 版本紀錄
  796. in_reply_to: 正在回覆
  797. language: 語言
  798. media:
  799. title: 媒體檔案
  800. metadata: 詮釋資料
  801. no_status_selected: 因未選取嘟文,所以什麼事都沒發生。
  802. open: 公開嘟文
  803. original_status: 原始嘟文
  804. reblogs: 轉嘟
  805. status_changed: 嘟文已編輯
  806. title: 帳號嘟文
  807. trending: 熱門
  808. visibility: 可見性
  809. with_media: 含有媒體檔案
  810. strikes:
  811. actions:
  812. delete_statuses: "%{name} 已刪除 %{target} 的嘟文"
  813. disable: "%{name} 已凍結 %{target} 的帳號"
  814. mark_statuses_as_sensitive: "%{name} 將 %{target} 的嘟文標記為敏感內容"
  815. none: "%{name} 已對 %{target} 送出警告"
  816. sensitive: "%{name} 將 %{target} 的帳號標記為含有敏感內容"
  817. silence: "%{name} 已限制 %{target} 的帳號"
  818. suspend: "%{name} 已將 %{target} 的帳號停權"
  819. appeal_approved: 已申訴
  820. appeal_pending: 申訴待審中
  821. appeal_rejected: 申訴被駁回
  822. system_checks:
  823. database_schema_check:
  824. message_html: 發現尚待處理的資料庫遷移 (database migration)。請執行它們以確保應用程式如期運行。
  825. elasticsearch_health_red:
  826. message_html: Elasticsearch 叢集健康狀態異常 (紅色),無法提供搜尋功能
  827. elasticsearch_health_yellow:
  828. message_html: Elasticsearch 叢集健康狀態異常 (黃色),您可能想進一步調查原因
  829. elasticsearch_index_mismatch:
  830. message_html: Elasticsearch 索引對應 (index mappings) 已過期。請執行 <code>tootctl search deploy --only=%{value}</code>
  831. elasticsearch_preset:
  832. action: 檢視文件
  833. message_html: 您的 Elasticsaerch 叢集由多個節點構成,但 Mastodon 並沒有設定使用它們。
  834. elasticsearch_preset_single_node:
  835. action: 檢視文件
  836. message_html: 您的 Elasticsearch 叢集只有一個節點,<code>ES_PRESET</code> 應設定為 <code>single_node_cluster</code>。
  837. elasticsearch_reset_chewy:
  838. message_html: 您的 Elasticsearch 系統索引 (index) 已過期並需執行設定變更。請執行 <code>tootctl search deploy --reset-chewy</code> 以更新它。
  839. elasticsearch_running_check:
  840. message_html: 無法連接 Elasticsearch。請檢查是否正在執行中,或者已關閉全文搜尋。
  841. elasticsearch_version_check:
  842. message_html: 不相容的 Elasticsearch 版本:%{value}
  843. version_comparison: Elasticsearch %{running_version} 版正在執行,需要 %{required_version} 版。
  844. rules_check:
  845. action: 管理伺服器規則
  846. message_html: 您尚未定義任何伺服器規則。
  847. sidekiq_process_check:
  848. message_html: 沒有佇列 %{value} 的 Sidekiq 行程,請檢查您的 Sidekiq 設定組態
  849. software_version_critical_check:
  850. action: 檢視可取得的更新
  851. message_html: 有可取得的重要 Mastodon 更新,請立即升級。
  852. software_version_patch_check:
  853. action: 檢視可取得的更新
  854. message_html: 有可取得的 Mastodon 錯誤修正更新。
  855. upload_check_privacy_error:
  856. action: 檢查這裡以取得更多資訊
  857. message_html: "<strong>您的網頁伺服器設定錯誤。您的使用者隱私正暴露於風險之中。</strong>"
  858. upload_check_privacy_error_object_storage:
  859. action: 檢查這裡以取得更多資訊
  860. message_html: "<strong>您的物件資料儲存空間 (object storage) 設定錯誤。您的使用者隱私正暴露於風險之中。</strong>"
  861. tags:
  862. review: 審核嘟文
  863. updated_msg: 成功更新主題標籤設定
  864. title: 管理介面
  865. trends:
  866. allow: 允許
  867. approved: 已通過審核
  868. disallow: 不允許
  869. links:
  870. allow: 允許連結
  871. allow_provider: 允許發行者
  872. description_html: 這些連結是正在被您伺服器上看到該嘟文之帳號大量分享。這些連結可以幫助您的使用者探索現在世界上正在發生的事情。除非您核准該發行者,連結將不被公開展示。您也可以核准或駁回個別連結。
  873. disallow: 不允許連結
  874. disallow_provider: 不允許發行者
  875. no_link_selected: 因未選取任何連結,所以什麼事都沒發生
  876. publishers:
  877. no_publisher_selected: 因未選取任何發行者,所以什麼事都沒發生
  878. shared_by_over_week:
  879. other: 上週被 %{count} 名使用者分享
  880. title: 熱門連結
  881. usage_comparison: 於今日被 %{today} 人分享,相較於昨日 %{yesterday} 人
  882. not_allowed_to_trend: 不允許登上熱門
  883. only_allowed: 僅允許
  884. pending_review: 等待審核中
  885. preview_card_providers:
  886. allowed: 此發行者之連結能登上熱門
  887. description_html: 這些網域來自被您伺服器常被分享的連結。除非您核准該連結,則這些連結將不會成為公開熱門標籤。您的核准或駁回將對子網域仍有效。
  888. rejected: 此發行者之連結不會登上熱門
  889. title: 發行者
  890. rejected: 被拒絕
  891. statuses:
  892. allow: 允許嘟文
  893. allow_account: 允許作者
  894. description_html: 這些是您伺服器上已知被正在大量分享及加入最愛之嘟文。這些嘟文能幫助您伺服器上舊雨新知發現更多帳號來跟隨。除非您核准該作者且作者允許他們的帳號被推薦至其他人,嘟文將不被公開展示。您可以核准或駁回個別嘟文。
  895. disallow: 不允許嘟文
  896. disallow_account: 不允許作者
  897. no_status_selected: 因未選取任何熱門嘟文,所以什麼事都沒發生
  898. not_discoverable: 嘟文作者選擇不被發現
  899. shared_by:
  900. other: 分享過或/及收藏過 %{friendly_count} 次
  901. title: 熱門嘟文
  902. tags:
  903. current_score: 目前分數 %{score} 分
  904. dashboard:
  905. tag_accounts_measure: 獨特使用次數
  906. tag_languages_dimension: 熱門語言
  907. tag_servers_dimension: 熱門伺服器
  908. tag_servers_measure: 不同伺服器
  909. tag_uses_measure: 總使用次數
  910. description_html: 這些主題標籤正在您的伺服器上大量嘟文中出現。這些主題標籤能幫助您的使用者發現人們正集中討論的內容。除非您核准,主題標籤將不被公開展示。
  911. listable: 能被建議
  912. no_tag_selected: 因未選取任何主題標籤,所以什麼事都沒發生
  913. not_listable: 不能被建議
  914. not_trendable: 不會登上熱門
  915. not_usable: 不可被使用
  916. peaked_on_and_decaying: 於 %{date} 日最熱門,目前正退燒中
  917. title: 熱門主題標籤
  918. trendable: 能登上熱門
  919. trending_rank: '熱門 #%{rank}'
  920. usable: 可被使用
  921. usage_comparison: 於今日被使用 %{today} 次,相較於昨日 %{yesterday} 次
  922. used_by_over_week:
  923. other: 上週被 %{count} 個人使用
  924. title: 熱門榜
  925. trending: 熱門
  926. warning_presets:
  927. add_new: 新增
  928. delete: 刪除
  929. edit_preset: 編輯預設警告
  930. empty: 您尚未定義任何預設警告。
  931. title: 管理預設警告
  932. webhooks:
  933. add_new: 新增端點
  934. delete: 刪除
  935. description_html: "<strong>Webhook</strong> 讓 Mastodon 可以將關於選定的事件的<strong>即時通知</strong>推送到您自己的應用程式,如此您的應用程式就可以<strong>自動觸發反應</strong>。"
  936. disable: 停用
  937. disabled: 已停用
  938. edit: 編輯端點
  939. empty: 您沒有任何設定好的 webhook 端點。
  940. enable: 啟用
  941. enabled: 生效
  942. enabled_events:
  943. other: "%{count} 個已啟用的端點"
  944. events: 事件
  945. new: 新增 Webhook
  946. rotate_secret: 更換密鑰
  947. secret: 簽署密鑰
  948. status: 狀態
  949. title: Webhooks
  950. webhook: Webhook
  951. admin_mailer:
  952. new_appeal:
  953. actions:
  954. delete_statuses: 要刪除他們的嘟文
  955. disable: 要凍結他們的帳號
  956. mark_statuses_as_sensitive: 要將他們的嘟文標記為含有敏感內容
  957. none: 警告
  958. sensitive: 要將他們的帳號標記為含有敏感內容
  959. silence: 要限制他們的帳號
  960. suspend: 要停權他們的帳號
  961. body: "%{target} 正在就 %{date} 的 %{action_taken_by} 做出的審核決定提出申訴,該決定是 %{type}。他們寫道:"
  962. next_steps: 您可以批准申訴以還原審核決定,或是忽略它。
  963. subject: "%{username} 正在申訴 %{instance} 上的審核決定"
  964. new_critical_software_updates:
  965. body: 有可取得的重要 Mastodon 新版本,請立即升級!
  966. subject: "%{instance} 有可取得的重要 Mastodon 更新!"
  967. new_pending_account:
  968. body: 以下是新帳號的詳細資訊。您可以同意或拒絕這項申請。
  969. subject: "%{instance} 上有新帳號 (%{username}) 待審核"
  970. new_report:
  971. body: "%{reporter} 已檢舉使用者 %{target}"
  972. body_remote: 來自 %{domain} 的使用者已檢舉使用者 %{target}
  973. subject: 來自 %{instance} 的使用者檢舉(#%{id})
  974. new_software_updates:
  975. body: Mastodon 新版本已發佈,您可能想升級!
  976. subject: "%{instance} 有可取得的 Mastodon 新版本!"
  977. new_trends:
  978. body: 以下項目需要經過審核才能公開顯示:
  979. new_trending_links:
  980. title: 熱門連結
  981. new_trending_statuses:
  982. title: 熱門嘟文
  983. new_trending_tags:
  984. no_approved_tags: 這些是目前仍未被審核之熱門主題標籤。
  985. requirements: '這些候選中的任何一個都可能超過 #%{rank} 已批准的熱門主題標籤,該主題標籤目前是 #%{lowest_tag_name},得分為 %{lowest_tag_score}。'
  986. title: 熱門主題標籤
  987. subject: "%{instance} 有待審核之新熱門"
  988. aliases:
  989. add_new: 建立別名
  990. created_msg: 成功建立別名。您可以自舊帳號開始轉移。
  991. deleted_msg: 成功移除別名。您將無法再由舊帳號轉移到目前的帳號。
  992. empty: 您目前沒有任何別名。
  993. hint_html: 如果想由其他帳號轉移至此帳號,您可以在此處新增別名,稍後系統將容許您將跟隨者由舊帳號轉移至此。此項作業是<strong>無害且可復原的</strong>。 <strong>帳號的遷移程序需要在舊帳號啟動</strong>。
  994. remove: 取消連結別名
  995. appearance:
  996. advanced_web_interface: 進階網頁介面
  997. advanced_web_interface_hint: 進階網頁介面可讓您設定許多不同的欄位來善用螢幕空間,依需要同時查看許多不同的資訊如:首頁、通知、聯邦宇宙時間軸、任意數量的列表和主題標籤。
  998. animations_and_accessibility: 動畫與無障礙設定
  999. confirmation_dialogs: 確認對話框
  1000. discovery: 探索
  1001. localization:
  1002. body: Mastodon 是由志願者翻譯的。
  1003. guide_link: https://crowdin.com/project/mastodon
  1004. guide_link_text: 每個人都能貢獻。
  1005. sensitive_content: 敏感內容
  1006. application_mailer:
  1007. notification_preferences: 變更電子郵件設定
  1008. salutation: "%{name}、"
  1009. settings: 變更電子郵件設定︰%{link}
  1010. unsubscribe: 取消訂閱
  1011. view: 進入瀏覽:
  1012. view_profile: 檢視個人檔案
  1013. view_status: 檢視嘟文
  1014. applications:
  1015. created: 已建立應用程式
  1016. destroyed: 已刪除應用程式
  1017. logout: 登出
  1018. regenerate_token: 重新產生存取 token
  1019. token_regenerated: 已重新產生存取 token
  1020. warning: 警告,不要將它分享給任何人!
  1021. your_token: 您的 access token
  1022. auth:
  1023. apply_for_account: 申請帳號
  1024. captcha_confirmation:
  1025. help_html: 若您完成 CAPTCHA 挑戰時遇到問題,您可藉由 %{email} 與我們聯繫,我們將提供協助。
  1026. hint_html: 僅再一步!我們必須確認您是位人類(這是防止垃圾訊息濫用)。請完成以下 CAPTCHA 挑戰並點擊「繼續」。
  1027. title: 安全性檢查
  1028. confirmations:
  1029. wrong_email_hint: 若電子郵件地址不正確,您可以於帳號設定中更改。
  1030. delete_account: 刪除帳號
  1031. delete_account_html: 如果您欲刪除您的帳號,請<a href="%{path}">點擊這裡繼續</a>。您需要再三確認您的操作。
  1032. description:
  1033. prefix_invited_by_user: "@%{name} 邀請您加入這個 Mastodon 伺服器!"
  1034. prefix_sign_up: 馬上註冊 Mastodon 帳號吧!
  1035. suffix: 有了帳號,就可以從任何 Mastodon 伺服器跟隨任何人、發發廢嘟,並且與任何 Mastodon 伺服器的使用者交流,以及更多!
  1036. didnt_get_confirmation: 沒有收到確認連結嗎?
  1037. dont_have_your_security_key: 找不到您的安全金鑰?
  1038. forgot_password: 忘記密碼?
  1039. invalid_reset_password_token: 密碼重設 token 無效或已過期。請重新設定密碼。
  1040. link_to_otp: 請從您手機輸入兩階段驗證 (2FA) 或備用驗證碼
  1041. link_to_webauth: 使用您的安全金鑰
  1042. log_in_with: 登入,使用
  1043. login: 登入
  1044. logout: 登出
  1045. migrate_account: 轉移到另一個帳號
  1046. migrate_account_html: 如果您希望引導他人跟隨另一個帳號,請 <a href="%{path}">到這裡設定</a>。
  1047. or_log_in_with: 或透過其他方式登入
  1048. privacy_policy_agreement_html: 我已閱讀且同意 <a href="%{privacy_policy_path}" target="_blank">隱私權政策</a>
  1049. progress:
  1050. confirm: 確認電子郵件
  1051. details: 您的個人資料
  1052. review: 我們的審核
  1053. rules: 接受規則
  1054. providers:
  1055. cas: CAS
  1056. saml: SAML
  1057. register: 註冊
  1058. registration_closed: "%{instance} 現在不開放新成員"
  1059. resend_confirmation: 重新傳送確認連結
  1060. reset_password: 重設密碼
  1061. rules:
  1062. accept: 接受
  1063. back: 上一頁
  1064. invited_by: 您可以藉由來自此處之邀請而加入 %{domain}
  1065. preamble: 這些被 %{domain} 的管管們制定以及實施。
  1066. preamble_invited: 在您繼續之前,請考慮由 %{domain} 管理員設立的伺服器規則。
  1067. title: 一些基本守則。
  1068. title_invited: 我們誠摯地邀請您。
  1069. security: 登入資訊
  1070. set_new_password: 設定新密碼
  1071. setup:
  1072. email_below_hint_html: 請檢查您的垃圾郵件資料夾,或是請求另一個。如果是錯的,您可以更正您的電子郵件地址。
  1073. email_settings_hint_html: 請點擊我們寄給您連結以驗證 %{email}。我們將於此稍候。
  1074. link_not_received: 無法取得連結嗎?
  1075. new_confirmation_instructions_sent: 您將會在幾分鐘之內收到新的包含確認連結的電子郵件!
  1076. title: 請檢查您的收件匣
  1077. sign_in:
  1078. preamble_html: 請使用您於 <strong>%{domain}</strong> 的帳號密碼登入。若您的帳號託管於其他伺服器,您將無法在此登入。
  1079. title: 登入 %{domain}
  1080. sign_up:
  1081. manual_review: "%{domain} 上的註冊由我們的管理員進行人工審核。為協助我們處理您的註冊,請寫一些關於您自己的資訊以及您想要在 %{domain} 上註冊帳號的原因。"
  1082. preamble: 於此 Mastodon 伺服器擁有帳號的話,您將能跟隨聯邦宇宙網路中任何一份子,無論他們的帳號託管於何處。
  1083. title: 讓我們一起設定 %{domain} 吧!
  1084. status:
  1085. account_status: 帳號狀態
  1086. confirming: 等待電子郵件確認完成。
  1087. functional: 您的帳號可以正常使用了。
  1088. pending: 管管們正在處理您的申請,這可能需要一點時間處理。我們將於申請通過後以電子郵件方式通知您。
  1089. redirecting_to: 您的帳號因目前重定向至 %{acct} 而被停用。
  1090. view_strikes: 檢視針對您帳號過去的警示
  1091. too_fast: 送出表單的速度太快跟不上,請稍後再試。
  1092. use_security_key: 使用安全金鑰
  1093. challenge:
  1094. confirm: 繼續
  1095. hint_html: "<strong>温馨小提醒:</strong> 我們在接下來一小時內不會再要求您輸入密碼。"
  1096. invalid_password: 密碼錯誤
  1097. prompt: 輸入密碼以繼續
  1098. crypto:
  1099. errors:
  1100. invalid_key: 這不是一把有效的 Ed25519 或 Curve25519 金鑰
  1101. invalid_signature: 這不是有效的 Ed25519 簽章
  1102. date:
  1103. formats:
  1104. default: "%Y年%b月%d日"
  1105. with_month_name: "%Y年%B月%d日"
  1106. datetime:
  1107. distance_in_words:
  1108. about_x_hours: "%{count}小時前"
  1109. about_x_months: "%{count}個月前"
  1110. about_x_years: "%{count}年前"
  1111. almost_x_years: 接近%{count}年前
  1112. half_a_minute: 剛剛
  1113. less_than_x_minutes: 小於%{count}分鐘前
  1114. less_than_x_seconds: 剛剛
  1115. over_x_years: "%{count}年"
  1116. x_days: "%{count}天"
  1117. x_minutes: "%{count}分"
  1118. x_months: "%{count}個月"
  1119. x_seconds: "%{count}秒"
  1120. deletes:
  1121. challenge_not_passed: 您所輸入的資料不正確
  1122. confirm_password: 輸入您現在的密碼以驗證身份
  1123. confirm_username: 請輸入您的使用者名稱以作確認
  1124. proceed: 刪除帳號
  1125. success_msg: 您的帳號已經成功刪除
  1126. warning:
  1127. before: 在進行下一步驟之前,請詳細閱讀以下説明:
  1128. caches: 已被其他節點快取的內容可能會殘留其中
  1129. data_removal: 您的嘟文和其他資料將會被永久刪除
  1130. email_change_html: 您可以在不刪除帳號的情況下<a href="%{path}">變更您的電子郵件地址</a>
  1131. email_contact_html: 如果您仍然沒有收到郵件,請寄信至 <a href="mailto:%{email}">%{email}</a> 以獲得協助
  1132. email_reconfirmation_html: 如果您沒有收到確認郵件,可以<a href="%{path}">請求再次發送</a>
  1133. irreversible: 您將無法復原或重新啟用您的帳號
  1134. more_details_html: 更多詳細資訊,請參閲<a href="%{terms_path}">隱私政策</a>。
  1135. username_available: 您的使用者名稱將會釋出供他人使用
  1136. username_unavailable: 您的使用者名稱將會保留並不予他人使用
  1137. disputes:
  1138. strikes:
  1139. action_taken: 採取的行動
  1140. appeal: 申訴
  1141. appeal_approved: 此警示已成功申訴,不再有效
  1142. appeal_rejected: 申訴已被駁回
  1143. appeal_submitted_at: 申訴已遞交
  1144. appealed_msg: 您的申訴已遞交。若其被批准,您將會被通知。
  1145. appeals:
  1146. submit: 遞交申訴
  1147. approve_appeal: 批准申訴
  1148. associated_report: 相關報告
  1149. created_at: 過時的
  1150. description_html: 這些是 %{instance} 的管理員向您發送的針對您的帳號採取的措施與警告。
  1151. recipient: 此致
  1152. reject_appeal: 駁回申訴
  1153. status: '嘟文編號 #%{id}'
  1154. status_removed: 嘟文已從系統中移除
  1155. title: "%{action} 來自 %{date}"
  1156. title_actions:
  1157. delete_statuses: 嘟文移除
  1158. disable: 凍結帳號
  1159. mark_statuses_as_sensitive: 將嘟文標記為敏感內容
  1160. none: 警告
  1161. sensitive: 將帳號標記為敏感內容
  1162. silence: 帳號限制
  1163. suspend: 帳號停權
  1164. your_appeal_approved: 您的申訴已被批准
  1165. your_appeal_pending: 您已遞交申訴
  1166. your_appeal_rejected: 您的申訴已被駁回
  1167. domain_validator:
  1168. invalid_domain: 並非一個有效網域
  1169. edit_profile:
  1170. basic_information: 基本資訊
  1171. hint_html: "<strong>自訂人們可以於您個人檔案及嘟文內容。</strong>當您完成填寫個人檔案以及設定大頭貼後,其他人們比較願意跟隨您並與您互動。"
  1172. other: 其他
  1173. errors:
  1174. '400': 您所送出的請求無效或格式不正確。
  1175. '403': 您沒有檢視這個頁面的權限。
  1176. '404': 您要找的頁面不存在。
  1177. '406': 此頁面無法以請求的格式顯示。
  1178. '410': 您所尋找的網頁此處已不存在。
  1179. '422':
  1180. content: 安全驗證失敗。請確定有開啟瀏覽器 Cookies 功能?
  1181. title: 安全驗證失敗
  1182. '429': 伺服器繁忙
  1183. '500':
  1184. content: 抱歉,我們的後台出現問題了。
  1185. title: 這個頁面有問題
  1186. '503': 此頁面因伺服器暫時發生錯誤而無法提供。
  1187. noscript_html: 使用 Mastodon 網頁版應用需要啟用 JavaScript。您也可以選擇適用於您的平台的 <a href="%{apps_path}">Mastodon 應用</a>。
  1188. existing_username_validator:
  1189. not_found: 無法在本站找到這個名稱的使用者
  1190. not_found_multiple: 揣嘸 %{usernames}
  1191. exports:
  1192. archive_takeout:
  1193. date: 日期
  1194. download: 下載檔案
  1195. hint_html: 您可以下載包含您的<strong>文章和媒體</strong>的檔案。資料以 ActivityPub 格式儲存,可用於相容的軟體。每次允許存檔的間隔至少 7 天。
  1196. in_progress: 正在準備您的存檔...
  1197. request: 下載存檔
  1198. size: 大小
  1199. blocks: 您封鎖的使用者
  1200. bookmarks: 書籤
  1201. csv: CSV
  1202. domain_blocks: 網域封鎖
  1203. lists: 列表
  1204. mutes: 您靜音的使用者
  1205. storage: 匯出檔案大小
  1206. featured_tags:
  1207. add_new: 新增
  1208. errors:
  1209. limit: 您所推薦之主題標籤數量已達上限
  1210. hint_html: "<strong>於個人檔案上推薦您的推薦主題標籤</strong> 展示創意作品或者長期更新的專案的絕佳工具,推薦主題標籤於您個人資料頁面顯眼地展示,並且能快速存取您自己的嘟文。"
  1211. filters:
  1212. contexts:
  1213. account: 個人檔案
  1214. home: 首頁時間軸
  1215. notifications: 通知
  1216. public: 公開時間軸
  1217. thread: 對話
  1218. edit:
  1219. add_keyword: 新增關鍵字
  1220. keywords: 關鍵字
  1221. statuses: 各別嘟文
  1222. statuses_hint_html: 此過濾器會套用至所選之各別嘟文,無論其是否符合下列關鍵字。<a href="%{path}">審閱或從過濾條件移除嘟文</a>。
  1223. title: 編輯過濾條件
  1224. errors:
  1225. deprecated_api_multiple_keywords: 這些參數無法從此應用程式中更改,因為它們適用於一或多個過濾器關鍵字。請使用較新的應用程式或是網頁介面。
  1226. invalid_context: 沒有提供內文或內文無效
  1227. index:
  1228. contexts: "%{contexts} 中的過濾器"
  1229. delete: 刪除
  1230. empty: 您沒有過濾器。
  1231. expires_in: 於 %{distance} 過期
  1232. expires_on: 於 %{date} 過期
  1233. keywords:
  1234. other: "%{count} 個關鍵字"
  1235. statuses:
  1236. other: "%{count} 則嘟文"
  1237. statuses_long:
  1238. other: "%{count} 則各別嘟文被隱藏"
  1239. title: 過濾器
  1240. new:
  1241. save: 儲存新過濾器
  1242. title: 新增過濾器
  1243. statuses:
  1244. back_to_filter: 回到過濾器
  1245. batch:
  1246. remove: 從過濾器中移除
  1247. index:
  1248. hint: 此過濾器會套用至所選之各別嘟文,不管它們有無符合其他條件。您可以從網頁介面中將更多嘟文加入至此過濾器。
  1249. title: 已過濾之嘟文
  1250. generic:
  1251. all: 全部
  1252. all_items_on_page_selected_html:
  1253. other: 已選取此頁面上 <strong>%{count}</strong> 個項目。
  1254. all_matching_items_selected_html:
  1255. other: 已選取符合您搜尋的 <strong>%{count}</strong> 個項目。
  1256. cancel: 取消
  1257. changes_saved_msg: 已成功儲存變更!
  1258. confirm: 確認
  1259. copy: 複製
  1260. delete: 刪除
  1261. deselect: 取消選擇全部
  1262. none: 無
  1263. order_by: 排序
  1264. save_changes: 儲存變更
  1265. select_all_matching_items:
  1266. other: 選取 %{count} 個符合您搜尋的項目。
  1267. today: 今天
  1268. validation_errors:
  1269. other: 恩...似乎不太對勁耶?請檢查以下 %{count} 項錯誤
  1270. imports:
  1271. errors:
  1272. empty: 空的 CSV 檔案
  1273. incompatible_type: 與所選的匯入類型不相容
  1274. invalid_csv_file: 無效的 CSV 檔案。錯誤訊息:%{error}
  1275. over_rows_processing_limit: 含有超過 %{count} 行
  1276. too_large: 檔案大小過大
  1277. failures: 失敗
  1278. imported: 已匯入
  1279. mismatched_types_warning: 您似乎選擇錯誤的匯入類型,請再次確認。
  1280. modes:
  1281. merge: 合併
  1282. merge_long: 保留現有記錄並新增紀錄
  1283. overwrite: 覆蓋
  1284. overwrite_long: 以新的紀錄覆蓋目前紀錄
  1285. overwrite_preambles:
  1286. blocking_html: 您將要自 <strong>%{filename}</strong> 中之 <strong>%{total_items} 個帳號</strong> 以 <strong>取代您的封鎖帳號列表</strong>。
  1287. bookmarks_html: 您將要自 <strong>%{filename}</strong> 中之 <strong>%{total_items} 個嘟文</strong> 以 <strong>取代您的書籤</strong>。
  1288. domain_blocking_html: 您將要自 <strong>%{filename}</strong> 中之 <strong>%{total_items} 個網域</strong> 以 <strong>取代您的封鎖網域列表</strong>。
  1289. following_html: 您將要 <strong>跟隨</strong> 自 <strong>%{filename}</strong> 中之 <strong>%{total_items} 個帳號</strong> 並且 <strong>取消跟隨其他所有人</strong>。
  1290. lists_html: 您將以 <strong>%{filename}</strong> 之內容<strong>取代您的列表</strong>。這將會新增 <strong>%{total_items} 個帳號</strong>至新列表。
  1291. muting_html: 您將要自 <strong>%{filename}</strong> 中之 <strong>%{total_items} 個帳號</strong> 以 <strong>取代您的靜音帳號列表</strong>。
  1292. preambles:
  1293. blocking_html: 您將要 <strong>封鎖</strong> 自 <strong>%{filename}</strong> 中之 <strong>%{total_items} 個帳號</strong>。
  1294. bookmarks_html: 您將要自 <strong>%{filename}</strong> 中之 <strong>%{total_items} 個嘟文</strong> 以 <strong>加入至您的書籤</strong>。
  1295. domain_blocking_html: 您將要 <strong>封鎖</strong> 自 <strong>%{filename}</strong> 中之 <strong>%{total_items} 個網域</strong>。
  1296. following_html: 您將要 <strong>跟隨</strong> 自 <strong>%{filename}</strong> 中之 <strong>%{total_items} 個帳號</strong>。
  1297. lists_html: 您將自 <strong>%{filename}</strong> 新增 <strong>%{total_items} 個帳號</strong>至您的<strong>列表</strong>。若不存在列表用以新增帳號,則會建立新列表。
  1298. muting_html: 您將要 <strong>靜音</strong> 自 <strong>%{filename}</strong> 中之 <strong>%{total_items} 個帳號</strong>。
  1299. preface: 您可以在此匯入您在其他伺服器所匯出的資料檔,包括跟隨的使用者、封鎖的使用者名單。
  1300. recent_imports: 最近匯入的
  1301. states:
  1302. finished: 已完成
  1303. in_progress: 處理中
  1304. scheduled: 已排程
  1305. unconfirmed: 未確認
  1306. status: 狀態
  1307. success: 資料上傳成功,正在匯入,請稍候
  1308. time_started: 開始於
  1309. titles:
  1310. blocking: 正在匯入已封鎖帳號
  1311. bookmarks: 正在匯入書籤
  1312. domain_blocking: 正在匯入已封鎖網域
  1313. following: 正在匯入已封鎖帳號
  1314. lists: 匯入列表
  1315. muting: 正在匯入已靜音帳號
  1316. type: 匯入類型
  1317. type_groups:
  1318. constructive: 跟隨者與書籤
  1319. destructive: 封鎖與靜音
  1320. types:
  1321. blocking: 您封鎖的使用者列表
  1322. bookmarks: 書籤
  1323. domain_blocking: 網域封鎖列表
  1324. following: 您跟隨的使用者列表
  1325. lists: 列表
  1326. muting: 您靜音的使用者名單
  1327. upload: 上傳
  1328. invites:
  1329. delete: 停用
  1330. expired: 已失效
  1331. expires_in:
  1332. '1800': 30 分鐘後
  1333. '21600': 6 小時後
  1334. '3600': 1 小時後
  1335. '43200': 12 小時後
  1336. '604800': 1 週後
  1337. '86400': 1 天後
  1338. expires_in_prompt: 永不過期
  1339. generate: 建立邀請連結
  1340. invited_by: 您的邀請人是:
  1341. max_uses:
  1342. other: "%{count} 則"
  1343. max_uses_prompt: 無限制
  1344. prompt: 建立分享連結,邀請他人於本伺服器註冊
  1345. table:
  1346. expires_at: 失效時間
  1347. uses: 已使用次數
  1348. title: 邀請使用者
  1349. lists:
  1350. errors:
  1351. limit: 您所建立的列表數量已達上限
  1352. login_activities:
  1353. authentication_methods:
  1354. otp: 兩階段驗證應用程式
  1355. password: 密碼
  1356. sign_in_token: 電子郵件安全碼
  1357. webauthn: 安全金鑰
  1358. description_html: 若您看到您不認識的活動紀錄,請考慮變更您的密碼或啟用兩階段驗證。
  1359. empty: 沒有可用的驗證歷史紀錄
  1360. failed_sign_in_html: 使用來自 %{ip} (%{browser}) 的 %{method} 登入嘗試失敗
  1361. successful_sign_in_html: 使用來自 %{ip} (%{browser}) 的 %{method} 登入成功
  1362. title: 認證歷史紀錄
  1363. mail_subscriptions:
  1364. unsubscribe:
  1365. action: 是的,取消訂閱
  1366. complete: 取消訂閱
  1367. confirmation_html: 您確定要取要取消訂閱自 Mastodon 上 %{domain} 之 %{type} 至您電子郵件 %{email} 嗎?您隨時可以自<a href="%{settings_path}">電子郵件通知設定</a>重新訂閱。
  1368. emails:
  1369. notification_emails:
  1370. favourite: 最愛通知電子郵件
  1371. follow: 跟隨通知電子郵件
  1372. follow_request: 跟隨請求通知電子郵件
  1373. mention: 提及通知電子郵件
  1374. reblog: 轉嘟通知電子郵件
  1375. resubscribe_html: 若您不慎錯誤地取消訂閱,您可以自<a href="%{settings_path}">電子郵件通知設定</a>重新訂閱。
  1376. success_html: 您將不再收到來自 Mastodon 上 %{domain} 之 %{type} 至您電子郵件 %{email}。
  1377. title: 取消訂閱
  1378. media_attachments:
  1379. validations:
  1380. images_and_video: 無法於已有圖片之嘟文中加入影片
  1381. not_ready: 修但幾勒!不能附加未完成處理的檔案欸,咁按呢?
  1382. too_many: 無法加入超過 4 個檔案
  1383. migrations:
  1384. acct: 新帳號的 使用者名稱@站點網域
  1385. cancel: 取消重導向
  1386. cancel_explanation: 取消重導向將會重新啓用目前帳號,但不會還原已移至該帳號的跟隨者。
  1387. cancelled_msg: 成功取消重導向。
  1388. errors:
  1389. already_moved: 與已經重導向的帳號相同
  1390. missing_also_known_as: 不是這個帳號的別名
  1391. move_to_self: 不能是目前帳號
  1392. not_found: 找不到
  1393. on_cooldown: 您正在處於冷卻(CD)狀態
  1394. followers_count: 轉移時的跟隨者
  1395. incoming_migrations: 自另一個帳號轉移
  1396. incoming_migrations_html: 要從其他帳號移動到此帳號的話,首先您必須<a href="%{path}">建立帳號別名</a>。
  1397. moved_msg: 您的帳號正被重新導向到 %{acct},您的跟隨者也會同步轉移至該帳號。
  1398. not_redirecting: 您的帳號目前尚未重新導向到任何其他帳號。
  1399. on_cooldown: 您最近已轉移過您的帳號。此功能將於 %{count} 天後可再度使用。
  1400. past_migrations: 以往的轉移紀錄
  1401. proceed_with_move: 移動跟隨者
  1402. redirected_msg: 您的帳號現在指向 %{acct}
  1403. redirecting_to: 您的帳號目前正被重新導向到 %{acct}
  1404. set_redirect: 設定重新導向
  1405. warning:
  1406. backreference_required: 新的帳號必須先設定為反向參照到目前帳號
  1407. before: 在進行下一步驟之前,請詳細閱讀以下説明:
  1408. cooldown: 在轉移帳號後會有一段等待時間,在等待時間內您將無法再次轉移
  1409. disabled_account: 之後您的目前帳號將完全無法使用。但您可以存取資料匯出與重新啟用。
  1410. followers: 此動作將會將目前帳號的所有跟隨者轉移至新帳號
  1411. only_redirect_html: 或者,您也可以<a href="%{path}">僅在您的個人檔案中設定重新導向</a>。
  1412. other_data: 其他資料並不會自動轉移
  1413. redirect: 您目前的帳號將會在個人檔案頁面新增重新導向公告,並會被排除在搜尋結果之外
  1414. moderation:
  1415. title: 站務
  1416. move_handler:
  1417. carry_blocks_over_text: 此使用者轉移自被您封鎖的 %{acct}。
  1418. carry_mutes_over_text: 此使用者轉移自被您靜音的 %{acct}。
  1419. copy_account_note_text: 此使用者轉移自 %{acct},以下是您之前關於他們的備註:
  1420. navigation:
  1421. toggle_menu: 切換選單
  1422. notification_mailer:
  1423. admin:
  1424. report:
  1425. subject: "%{name} 已送出一則檢舉報告"
  1426. sign_up:
  1427. subject: "%{name} 已進行註冊"
  1428. favourite:
  1429. body: 您的嘟文被 %{name} 加入了最愛:
  1430. subject: "%{name} 將您的嘟文加入了最愛"
  1431. title: 新的最愛
  1432. follow:
  1433. body: "%{name} 開始跟隨您!"
  1434. subject: "%{name} 開始跟隨您"
  1435. title: 新的跟隨者
  1436. follow_request:
  1437. action: 處理跟隨請求
  1438. body: "%{name} 要求跟隨您"
  1439. subject: 等待跟隨您的使用者︰ %{name}
  1440. title: 新的跟隨請求
  1441. mention:
  1442. action: 回覆
  1443. body: "%{name} 在嘟文中提及您:"
  1444. subject: "%{name} 在嘟文中提及您"
  1445. title: 新的提及
  1446. poll:
  1447. subject: 由 %{name} 發起的投票已結束
  1448. reblog:
  1449. body: 您的嘟文被 %{name} 轉嘟:
  1450. subject: "%{name} 已轉嘟您的嘟文"
  1451. title: 新的轉嘟
  1452. status:
  1453. subject: "%{name} 剛剛嘟文"
  1454. update:
  1455. subject: "%{name} 已編輯嘟文"
  1456. notifications:
  1457. administration_emails: 管理員電子郵件通知
  1458. email_events: 電子郵件通知設定
  1459. email_events_hint: 選取您想接收通知的事件:
  1460. other_settings: 其他通知設定
  1461. number:
  1462. human:
  1463. decimal_units:
  1464. format: "%n%u"
  1465. units:
  1466. billion: B
  1467. million: M
  1468. quadrillion: Q
  1469. thousand: K
  1470. trillion: T
  1471. otp_authentication:
  1472. code_hint: 請輸入您驗證應用程式所產生的代碼以確認
  1473. description_html: 若您啟用使用驗證應用程式的<strong>兩階段驗證</strong>,您每次登入都需要輸入由您的手機所產生之 Token。
  1474. enable: 啟用
  1475. instructions_html: "<strong>請用您手機上的 Google Authenticator 或類似的 TOTP 應用程式掃描此 QR code</strong>。從現在開始,該應用程式將會產生您每次登入都必須輸入的 token。"
  1476. manual_instructions: 如果您無法掃描 QR code,則必須手動輸入此明文密碼:
  1477. setup: 設定
  1478. wrong_code: 您輸入的驗證碼無效!伺服器時間或是裝置時間無誤嗎?
  1479. pagination:
  1480. newer: 較新
  1481. next: 下一頁
  1482. older: 較舊
  1483. prev: 上一頁
  1484. truncate: "&hellip;"
  1485. polls:
  1486. errors:
  1487. already_voted: 您已經投過票了
  1488. duplicate_options: 包含重複項目
  1489. duration_too_long: 太久了!
  1490. duration_too_short: 車速太快了!
  1491. expired: 投票已結束
  1492. invalid_choice: 您所選的投票選項並不存在
  1493. over_character_limit: 不能多於 %{max} 個字元
  1494. self_vote: 您無法於您的嘟文投票
  1495. too_few_options: 必須包含至少一個項目
  1496. too_many_options: 不能包含多於 %{max} 個項目
  1497. preferences:
  1498. other: 其他
  1499. posting_defaults: 嘟文預設值
  1500. public_timelines: 公開時間軸
  1501. privacy:
  1502. hint_html: |-
  1503. <strong>自訂您希望如何讓您的個人檔案及嘟文被找到。</strong>
  1504. 藉由啟用一系列 Mastodon 功能以幫助您觸及更廣的受眾。煩請花些時間確認您是否欲啟用這些設定。
  1505. privacy: 隱私權
  1506. privacy_hint_html: 控制您希望向其他人揭露之內容。人們透過瀏覽其他人的跟隨者與其發嘟之應用程式發現有趣的個人檔案和酷炫的 Mastodon 應用程式,但您能選擇將其隱藏。
  1507. reach: 觸及
  1508. reach_hint_html: 控制您希望被新使用者探索或跟隨之方式。想讓您的嘟文出現於探索頁面嗎?想讓其他人透過他們的跟隨建議找到您嗎?想自動接受所有新跟隨者嗎?或是想逐一控制跟隨請求嗎?
  1509. search: 搜尋
  1510. search_hint_html: 控制您希望如何被發現。您想透過您的公開嘟文被人們發現嗎?您想透過網頁搜尋被 Mastodon 以外的人找到您的個人檔案嗎?請注意,公開資訊可能無法全面地被所有搜尋引擎所排除。
  1511. title: 隱私權及觸及
  1512. privacy_policy:
  1513. title: 隱私權政策
  1514. reactions:
  1515. errors:
  1516. limit_reached: 達到可回應之上限
  1517. unrecognized_emoji: 並非一個可識別的 emoji
  1518. relationships:
  1519. activity: 帳號動態
  1520. confirm_follow_selected_followers: 您確定要跟隨選取的跟隨者嗎?
  1521. confirm_remove_selected_followers: 您確定要移除選取的跟隨者嗎?
  1522. confirm_remove_selected_follows: 您確定要取消跟隨這些選取的使用者嗎?
  1523. dormant: 潛水中
  1524. follow_failure: 無法跟隨某些所選取的帳號。
  1525. follow_selected_followers: 跟隨選取的跟隨者
  1526. followers: 跟隨者
  1527. following: 跟隨中
  1528. invited: 已邀請
  1529. last_active: 最後上線
  1530. most_recent: 最近
  1531. moved: 已轉移
  1532. mutual: 跟隨彼此
  1533. primary: 主要
  1534. relationship: 關係
  1535. remove_selected_domains: 從所選取網域中移除所有跟隨者
  1536. remove_selected_followers: 移除選取的跟隨者
  1537. remove_selected_follows: 取消跟隨選取的使用者
  1538. status: 帳號狀態
  1539. remote_follow:
  1540. missing_resource: 無法找到資源
  1541. reports:
  1542. errors:
  1543. invalid_rules: 未引用有效規則
  1544. rss:
  1545. content_warning: 內容警告:
  1546. descriptions:
  1547. account: 來自 @%{acct} 之公開嘟文
  1548. tag: '帶有 #%{hashtag} 之公開嘟文'
  1549. scheduled_statuses:
  1550. over_daily_limit: 您已經超過了本日排定發嘟的限額 (%{limit})
  1551. over_total_limit: 您已經超過排程發嘟的限額 (%{limit})
  1552. too_soon: 嘟文不可以改變過去哦,只能預定未來 (咦)
  1553. sessions:
  1554. activity: 最近活動
  1555. browser: 瀏覽器
  1556. browsers:
  1557. alipay: 支付寶
  1558. blackberry: 黑莓機(BlackBerry)
  1559. chrome: Chrome 瀏覽器
  1560. edge: Microsoft Edge 瀏覽器
  1561. electron: Electron 瀏覽器
  1562. firefox: Firefox 瀏覽器
  1563. generic: 未知的瀏覽器
  1564. huawei_browser: 華為瀏覽器
  1565. ie: Internet Explorer 瀏覽器
  1566. micro_messenger: 微信
  1567. nokia: Nokia S40 Ovi 瀏覽器
  1568. opera: Opera 瀏覽器
  1569. otter: Otter 瀏覽器
  1570. phantom_js: PhantomJS 瀏覽器
  1571. qq: QQ 瀏覽器
  1572. safari: Safari 瀏覽器
  1573. uc_browser: UC 瀏覽器
  1574. unknown_browser: 未知的瀏覽器
  1575. weibo: 新浪微博
  1576. current_session: 目前的 session
  1577. description: "%{platform} 上的 %{browser}"
  1578. explanation: 這些是現在正登入於您 Mastodon 帳號的瀏覽器。
  1579. ip: IP 位址
  1580. platforms:
  1581. adobe_air: Adobe Air
  1582. android: Android
  1583. blackberry: 黑莓機(BlackBerry)
  1584. chrome_os: ChromeOS
  1585. firefox_os: Firefox OS
  1586. ios: iOS
  1587. kai_os: KaiOS
  1588. linux: Linux
  1589. mac: Mac
  1590. unknown_platform: 未知的平台
  1591. windows: Windows
  1592. windows_mobile: Windows Mobile
  1593. windows_phone: Windows Phone
  1594. revoke: 註銷
  1595. revoke_success: Session 註銷成功
  1596. title: 作業階段
  1597. view_authentication_history: 檢視您帳號的身份驗證歷史紀錄
  1598. settings:
  1599. account: 帳號
  1600. account_settings: 帳號設定
  1601. aliases: 帳號別名
  1602. appearance: 外觀設定
  1603. authorized_apps: 已授權應用程式
  1604. back: 回到 Mastodon
  1605. delete: 刪除帳號
  1606. development: 開發者
  1607. edit_profile: 編輯個人檔案
  1608. export: 匯出
  1609. featured_tags: 推薦主題標籤
  1610. import: 匯入
  1611. import_and_export: 匯入及匯出
  1612. migrate: 帳號搬遷
  1613. notifications: 通知
  1614. preferences: 偏好設定
  1615. profile: 個人檔案
  1616. relationships: 跟隨中與跟隨者
  1617. statuses_cleanup: 自動嘟文刪除
  1618. strikes: 管理警告
  1619. two_factor_authentication: 兩階段認證
  1620. webauthn_authentication: 安全金鑰
  1621. statuses:
  1622. attached:
  1623. audio:
  1624. other: "%{count} 則音訊"
  1625. description: 附件: %{attached}
  1626. image:
  1627. other: "%{count} 張圖片"
  1628. video:
  1629. other: "%{count} 段影片"
  1630. boosted_from_html: 轉嘟自 %{acct_link}
  1631. content_warning: 內容警告: %{warning}
  1632. default_language: 與介面語言相同
  1633. disallowed_hashtags:
  1634. other: 含有不得使用的標籤: %{tags}
  1635. edited_at_html: 編輯於 %{date}
  1636. errors:
  1637. in_reply_not_found: 您嘗試回覆的嘟文看起來不存在。
  1638. open_in_web: 以網頁開啟
  1639. over_character_limit: 已超過 %{max} 字的限制
  1640. pin_errors:
  1641. direct: 無法釘選只有僅提及使用者可見之嘟文
  1642. limit: 釘選嘟文的數量已達上限
  1643. ownership: 不能釘選他人的嘟文
  1644. reblog: 不能釘選轉嘟
  1645. poll:
  1646. total_people:
  1647. other: "%{count} 個人"
  1648. total_votes:
  1649. other: "%{count} 票"
  1650. vote: 投票
  1651. show_more: 顯示更多
  1652. show_newer: 顯示較新嘟文
  1653. show_older: 顯示較舊嘟文
  1654. show_thread: 顯示討論串
  1655. title: "%{name}:「%{quote}」"
  1656. visibilities:
  1657. direct: 私訊
  1658. private: 僅限跟隨者
  1659. private_long: 只有跟隨您的人能看到
  1660. public: 公開
  1661. public_long: 所有人都能看到
  1662. unlisted: 不在公開時間軸顯示
  1663. unlisted_long: 所有人都能看到,但不會出現在公開時間軸上
  1664. statuses_cleanup:
  1665. enabled: 自動刪除舊嘟文
  1666. enabled_hint: 一旦達到指定的保存期限,就會自動刪除您的嘟文,除非該嘟文符合下列例外
  1667. exceptions: 例外
  1668. explanation: 因為刪除嘟文是耗費資源的操作,當伺服器不那麼忙碌時才會慢慢完成。因此,您的嘟文會在到達保存期限後一段時間才會被刪除。
  1669. ignore_favs: 忽略最愛數
  1670. ignore_reblogs: 忽略轉嘟數
  1671. interaction_exceptions: 基於互動的例外規則
  1672. interaction_exceptions_explanation: 請注意嘟文是無法保證被刪除的,如果在一次處理過後嘟文低於最愛或轉嘟的門檻。
  1673. keep_direct: 保留私訊
  1674. keep_direct_hint: 不會刪除任何您的私訊
  1675. keep_media: 保留包含多媒體附加檔案之嘟文
  1676. keep_media_hint: 不會刪除您包含多媒體附加檔案之嘟文
  1677. keep_pinned: 保留釘選嘟文
  1678. keep_pinned_hint: 不會刪除您的釘選嘟文
  1679. keep_polls: 保留投票
  1680. keep_polls_hint: 不會刪除您的投票
  1681. keep_self_bookmark: 保留您已標記為書籤之嘟文
  1682. keep_self_bookmark_hint: 不會刪除您已標記為書籤之嘟文
  1683. keep_self_fav: 保留您已標記為最愛之嘟文
  1684. keep_self_fav_hint: 不會刪除您已標記為最愛之嘟文
  1685. min_age:
  1686. '1209600': 2 週
  1687. '15778476': 6 個月
  1688. '2629746': 1 個月
  1689. '31556952': 1 年
  1690. '5259492': 2 個月
  1691. '604800': 1 週
  1692. '63113904': 2 年
  1693. '7889238': 3 個月
  1694. min_age_label: 保存期限
  1695. min_favs: 保留超過嘟文最愛門檻
  1696. min_favs_hint: 如果您嘟文已收到超過最愛門檻則不會刪除。留白表示不論最愛數量皆刪除該嘟文。
  1697. min_reblogs: 保留超過嘟文轉嘟門檻
  1698. min_reblogs_hint: 如果您嘟文已收到超過轉嘟門檻則不會刪除。留白表示不論轉嘟數量皆刪除該嘟文。
  1699. stream_entries:
  1700. sensitive_content: 敏感內容
  1701. strikes:
  1702. errors:
  1703. too_late: 您太晚申訴這個警示了
  1704. tags:
  1705. does_not_match_previous_name: 與先前的名稱不吻合
  1706. themes:
  1707. contrast: Mastodon(高對比)
  1708. default: Mastodon(深色)
  1709. mastodon-light: Mastodon(亮色)
  1710. time:
  1711. formats:
  1712. default: "%Y 年 %b 月 %d 日 %H:%M"
  1713. month: "%b %Y"
  1714. time: "%H:%M"
  1715. with_time_zone: "%b %d, %Y, %H:%M %Z"
  1716. translation:
  1717. errors:
  1718. quota_exceeded: 伺服器之翻譯服務使用容量已逾上限。
  1719. too_many_requests: 最近對翻譯服務之請求過多。
  1720. two_factor_authentication:
  1721. add: 新增
  1722. disable: 停用兩階段驗證
  1723. disabled_success: 已成功啟用兩階段驗證
  1724. edit: 編輯
  1725. enabled: 兩階段認證已啟用
  1726. enabled_success: 已成功啟用兩階段認證
  1727. generate_recovery_codes: 產生備用驗證碼
  1728. lost_recovery_codes: 讓您可以在遺失手機時,使用備用驗證碼登入。若您已遺失備用驗證碼,可於此產生一批新的,舊有的備用驗證碼將會失效。
  1729. methods: 兩步驟方式
  1730. otp: 驗證應用程式
  1731. recovery_codes: 備份備用驗證碼
  1732. recovery_codes_regenerated: 成功產生新的備用驗證碼
  1733. recovery_instructions_html: 若您的手機無法使用,您可以使用下列任意一個備用驗證碼來重新獲得帳號的存取權。<strong>請妥善保管好您的備用驗證碼</strong>(例如,可以將它們列印出來,與您的其他重要文件放在一起)。
  1734. webauthn: 安全金鑰
  1735. user_mailer:
  1736. appeal_approved:
  1737. action: 前往您的帳號
  1738. explanation: 您在 %{appeal_date} 遞交的針對您帳號的 %{strike_date} 警示的申訴已獲批准。您的帳號再次享有良好的信譽。
  1739. subject: 您在 %{date} 提出的申訴已獲批准
  1740. title: 申訴已批准
  1741. appeal_rejected:
  1742. explanation: 您在 %{appeal_date} 遞交的針對您帳號的 %{strike_date} 警示的申訴已被駁回。
  1743. subject: 您在 %{date} 提出的申訴已被駁回
  1744. title: 申訴被駁回
  1745. backup_ready:
  1746. explanation: 您要求的 Mastodon 帳號完整備份檔案現已就緒,可供下載!
  1747. subject: 您的備份檔已可供下載
  1748. title: 檔案匯出
  1749. suspicious_sign_in:
  1750. change_password: 變更密碼
  1751. details: 以下是該登入之詳細資訊:
  1752. explanation: 我們偵測到有新 IP 地址登入您的帳號
  1753. further_actions_html: 如果這個不是您,我們建議您立即 %{action} ,並且啟用二階段驗證 (2FA) 以確保帳號安全。
  1754. subject: 您的帳號已被新 IP 地址存取
  1755. title: 新登入
  1756. warning:
  1757. appeal: 遞交申訴
  1758. appeal_description: 若您認為這是錯誤,您可以向 %{instance} 的工作人員提出申訴。
  1759. categories:
  1760. spam: 垃圾訊息
  1761. violation: 該內容違反以下社群規章
  1762. explanation:
  1763. delete_statuses: 您的某些嘟文被發現已違反一項或多項社群準則,隨後已被 %{instance} 的管理員刪除。
  1764. disable: 您無法繼續使用您的帳號,但您的個人頁面及其他資料內容保持不變。您可以要求一份您的資料備份,帳號異動設定,或是刪除帳號。
  1765. mark_statuses_as_sensitive: 您的部份嘟文已被 %{instance} 的管理員標記為敏感內容。這代表了人們必須在顯示預覽前點擊嘟文中的媒體。您可以在將來嘟文時自己將媒體標記為敏感內容。
  1766. sensitive: 由此刻起,您所有上傳的媒體檔案將被標記為敏感內容,並且隱藏於點擊警告之後。
  1767. silence: 您仍然能使用您的帳號,但僅有已跟隨您的人才能見到您於此伺服器之嘟文,您也可能會從各式探索功能中被排除。但其他人仍可手動跟隨您。
  1768. suspend: 您將不能使用您的帳號,您的個人檔案頁面及其他資料將不再能被存取。您仍可於約 30 日內資料被完全刪除前要求下載您的資料,但我們仍會保留一部份基本資料,以防止有人規避停權處罰。
  1769. reason: 原因:
  1770. statuses: 引用的嘟文:
  1771. subject:
  1772. delete_statuses: 您於 %{acct} 之嘟文已被移除
  1773. disable: 您的帳號 %{acct} 已被凍結
  1774. mark_statuses_as_sensitive: 您在 %{acct} 上的嘟文已被標記為敏感內容
  1775. none: 對 %{acct} 的警告
  1776. sensitive: 從現在開始,您在 %{acct} 上的嘟文將會被標記為敏感內容
  1777. silence: 您的帳號 %{acct} 已被限制
  1778. suspend: 您的帳號 %{acct} 已被停權
  1779. title:
  1780. delete_statuses: 嘟文已移除
  1781. disable: 帳號已被涷結
  1782. mark_statuses_as_sensitive: 嘟文已標記為敏感內容
  1783. none: 警告
  1784. sensitive: 帳號已標記為敏感內容
  1785. silence: 帳號已被限制
  1786. suspend: 帳號己被停權
  1787. welcome:
  1788. edit_profile_action: 設定個人檔案
  1789. edit_profile_step: 您可以設定您的個人檔案,包括上傳大頭貼、變更顯示名稱等等。您也可以選擇在新的跟隨者跟隨前,先對他們進行審核。
  1790. explanation: 下面是幾個小幫助,希望它們能幫到您
  1791. final_action: 開始嘟嘟
  1792. final_step: '開始嘟嘟吧!即使您現在沒有跟隨者,其他人仍然能在本站時間軸、主題標籤等地方,看到您的公開嘟文。試著用 #introductions 這個主題標籤介紹一下自己吧。'
  1793. full_handle: 您的完整帳號名稱
  1794. full_handle_hint: 您需要將這告訴您的朋友們,這樣他們就能從另一個伺服器向您發送訊息或跟隨您。
  1795. subject: 歡迎來到 Mastodon
  1796. title: "%{name} 誠摯歡迎您的加入!"
  1797. users:
  1798. follow_limit_reached: 您無法跟隨多於 %{limit} 個人
  1799. go_to_sso_account_settings: 前往您的身分提供商 (identity provider) 之帳號設定
  1800. invalid_otp_token: 兩階段認證碼不正確
  1801. otp_lost_help_html: 如果您無法存取這兩者,您可以透過 %{email} 與我們聯繫
  1802. seamless_external_login: 由於您是由外部系統登入,所以不能設定密碼與電子郵件。
  1803. signed_in_as: 目前登入的帳號:
  1804. verification:
  1805. extra_instructions_html: <strong>小撇步:</strong>您網站上之此連結可以是不可見的。其重要的部分是 <code>rel="me"</code> ,防止透過使用者產生內容模擬。您甚至能使用頁面標頭之 <code>link</code> 標籤取代頁面中的 <code>a</code> 標籤,但 HTML 必須能於不執行 JavaScript 情況下所存取。
  1806. here_is_how: 如此這般
  1807. hint_html: "<strong>驗證您 Mastodon 上的身分!</strong>基於開放網路標準,永久免費。您唯一需準備的是所有人皆能夠識別您之個人網站。當您自個人檔案連結此網站時,我們會檢查其至您個人檔案之反向連結,並於您個人檔案展現圖形標示。"
  1808. instructions_html: 複製及貼上以下程式碼至您個人網站之 HTML 中。接著透過「編輯個人檔案」將您網站網址加入您個人網站之額外欄位中,並儲存變更。
  1809. verification: 驗證連結
  1810. verified_links: 已驗證連結
  1811. webauthn_credentials:
  1812. add: 新增安全金鑰
  1813. create:
  1814. error: 新增安全金鑰時出現了問題。請再試一次。
  1815. success: 您已成功加入安全金鑰。
  1816. delete: 刪除
  1817. delete_confirmation: 您確定要移除這把安全金鑰嗎?
  1818. description_html: 如果您啟用<strong>安全金鑰驗證</strong>的話,您將於登入時需要使用其中一把安全金鑰。
  1819. destroy:
  1820. error: 移除安全金鑰時出現了問題。請再試一次。
  1821. success: 您已成功將安全金鑰移除。
  1822. invalid_credential: 無效的安全金鑰
  1823. nickname_hint: 輸入您新安全金鑰的暱稱
  1824. not_enabled: 您尚未啟用 WebAuthn
  1825. not_supported: 此瀏覽器並不支援安全金鑰
  1826. otp_required: 請先啟用兩階段驗證以使用安全金鑰。
  1827. registered_on: 註冊於 %{date}