zh-TW.yml 98 KB

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