zh-CN.yml 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821
  1. ---
  2. zh-CN:
  3. about:
  4. about_mastodon_html: 来自未来的社交网络:无广告、无监视、去中心化、合乎道德!使用 Mastodon 夺回你的数据!
  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: 禁用电子邮件令牌认证
  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: 启用电子邮件令牌认证
  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: 密码和双因素认证
  138. sensitive: 敏感内容
  139. sensitized: 已标记为敏感内容
  140. shared_inbox_url: 公用收件箱(Shared Inbox)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: 为用户禁用电子邮件令牌认证
  201. disable_user: 禁用用户
  202. enable_custom_emoji: 启用自定义表情符号
  203. enable_sign_in_token_auth_user: 为用户启用电子邮件令牌认证
  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} 的电子邮箱"
  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} 的双因素认证"
  258. disable_custom_emoji_html: "%{name} 停用了自定义表情 %{target}"
  259. disable_sign_in_token_auth_user_html: "%{name} 已为 %{target} 禁用电子邮件令牌认证"
  260. disable_user_html: "%{name} 将用户 %{target} 设置为禁止登录"
  261. enable_custom_emoji_html: "%{name} 启用了自定义表情 %{target}"
  262. enable_sign_in_token_auth_user_html: "%{name} 已为 %{target} 启用电子邮件令牌认证"
  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: 没有找到日志
  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: 已成功将表情复制到本站
  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: 因为没有选中任何表情,所以没有更改
  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 域名意味着阻止任何使用相同 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: 从 %{source} 导入 %{date}
  448. title: 导入域名列表
  449. invalid_domain_block: 由于以下错误,一个或多个域名屏蔽被跳过: %{error}
  450. new:
  451. title: 导入域名列表
  452. no_file: 没有选择文件
  453. follow_recommendations:
  454. description_html: "<strong>“关注推荐”可帮助新用户快速找到有趣的内容</strong>。 当用户与他人的互动不足以形成个性化的建议时,就会推荐关注这些账户。推荐会每日更新,基于选定语言的近期最高互动数和最多本站关注者数综合评估得出。"
  455. language: 选择语言
  456. status: 嘟文
  457. suppress: 禁用推荐关注
  458. suppressed: 已禁用
  459. title: 关注推荐
  460. unsuppress: 恢复推荐关注
  461. instances:
  462. availability:
  463. description_html:
  464. other: 如果连续 <strong>%{count} 天</strong> 均无法成功向该域名投递消息,则将不再尝试向其投递,直至收到<em>来自</em>该域名的消息。
  465. failure_threshold_reached: 于 %{date} 达到失败阈值。
  466. failures_recorded:
  467. other: 在 %{count} 天中尝试失败。
  468. no_failures_recorded: 没有失败记录。
  469. title: 可用性
  470. warning: 上一次尝试连接此服务器失败
  471. back_to_all: 全部
  472. back_to_limited: 受限
  473. back_to_warning: 警告
  474. by_domain: 域名
  475. confirm_purge: 你确认要从这个实例中永久地删除数据吗?
  476. content_policies:
  477. comment: 内部备注
  478. description_html: 你可以设置应用于此域名所有账号和其所有子域名的内容策略。
  479. limited_federation_mode_description_html: 您可以选择是否允许与该联邦联合。
  480. policies:
  481. reject_media: 拒收媒体
  482. reject_reports: 拒收举报
  483. silence: 隐藏
  484. suspend: 封禁
  485. policy: 策略
  486. reason: 公开理由
  487. title: 本站点内容发布规则
  488. dashboard:
  489. instance_accounts_dimension: 被关注最多的账号
  490. instance_accounts_measure: 存储的账号
  491. instance_followers_measure: 本站关注者
  492. instance_follows_measure: 对方关注者
  493. instance_languages_dimension: 语言排行
  494. instance_media_attachments_measure: 存储的媒体文件
  495. instance_reports_measure: 关于对方的举报
  496. instance_statuses_measure: 存储的嘟文
  497. delivery:
  498. all: 全部
  499. clear: 清理投递错误
  500. failing: 发送失败
  501. restart: 重新投递
  502. stop: 停止投递
  503. unavailable: 不可用
  504. delivery_available: 可投递
  505. delivery_error_days: 投递错误天数
  506. delivery_error_hint: 如果投递已不可用 %{count} 天,它将被自动标记为无法投递。
  507. destroyed_msg: "%{domain} 中的数据现在正在排队等待被立刻删除。"
  508. empty: 暂无域名。
  509. known_accounts:
  510. other: "%{count} 个已知账号"
  511. moderation:
  512. all: 全部
  513. limited: 受限的
  514. title: 运营
  515. private_comment: 私密评论
  516. public_comment: 公开评论
  517. purge: 删除
  518. purge_description_html: 如果你确认此域名已永久离线,可以从存储中删除此域名的所有账号记录和相关数据。这将会需要一段时间。
  519. title: 已知实例
  520. total_blocked_by_us: 被我站屏蔽的
  521. total_followed_by_them: 被对方关注的
  522. total_followed_by_us: 被我站关注的
  523. total_reported: 关于对方的举报
  524. total_storage: 媒体文件
  525. totals_time_period_hint_html: 下方显示的总数来自全部历史数据。
  526. invites:
  527. deactivate_all: 撤销所有邀请链接
  528. filter:
  529. all: 全部
  530. available: 可用
  531. expired: 已失效
  532. title: 筛选
  533. title: 邀请用户
  534. ip_blocks:
  535. add_new: 新建规则
  536. created_msg: 成功添加新 IP 规则
  537. delete: 删除
  538. expires_in:
  539. '1209600': 两周
  540. '15778476': 6个月
  541. '2629746': 1个月
  542. '31556952': 1年
  543. '86400': 1天
  544. '94670856': 3年
  545. new:
  546. title: 创建新 IP 规则
  547. no_ip_block_selected: 因为没有 IP 规则被选中,所以没有更改
  548. title: IP 规则
  549. relationships:
  550. title: "%{acct} 的关系"
  551. relays:
  552. add_new: 订阅新的中继站
  553. delete: 删除
  554. description_html: "<strong>中继服务器</strong>是一个信息统合服务器,各服务器可以通过订阅中继服务器和向中继服务器推送信息来大量交换公开嘟文。<strong>它可以帮助中小型服务器发现联邦宇宙中的其他服务器的内容</strong>,而无需本站用户手动关注其他远程服务器上的用户。"
  555. disable: 禁用
  556. disabled: 已禁用
  557. enable: 启用
  558. enable_hint: 启用此功能后,你的实例会订阅此中继站的所有公开嘟文,并同时向其推送本服务器的公开嘟文。
  559. enabled: 已启用
  560. inbox_url: 中继站 URL
  561. pending: 等待中继站的确认
  562. save_and_enable: 保存并启用
  563. setup: 设置中继连接
  564. signatures_not_enabled: 安全模式或限联模式启用时,中继将不会正常工作
  565. status: 状态
  566. title: 中继站
  567. report_notes:
  568. created_msg: 举报记录建立成功!
  569. destroyed_msg: 举报记录删除成功!
  570. reports:
  571. account:
  572. notes:
  573. other: "%{count} 条笔记"
  574. action_log: 审计日志
  575. action_taken_by: 操作执行者
  576. actions:
  577. delete_description_html: 被举报的嘟文将被删除,同时该账号将被标记一次处罚,以供未来同一账号再次违规时参考。
  578. mark_as_sensitive_description_html: 被举报的嘟文将被标记为敏感,同时该账号将被标记一次处罚,以供未来同一账号再次违规时参考。
  579. other_description_html: 查看更多控制该账号行为的选项,并自定义编写与被举报账号的通信。
  580. resolve_description_html: 不会对被举报账号采取任何动作,举报将被关闭,也不会留下处罚记录。
  581. silence_description_html: 只有关注或手工搜索此账号才能查看其资料,将严重限制其触达范围。可随时撤销。关闭针对此帐户的所有举报。
  582. suspend_description_html: 该帐户及其所有内容将无法访问并最终被删除,且无法与该帐户进行互动。 在 30 天内可随时撤销。关闭针对此帐户的所有举报。
  583. actions_description_html: 决定采取何种措施处理此举报。如果对被举报账号采取惩罚性措施,将向其发送一封电子邮件通知。但若选中<strong>垃圾信息</strong>类别则不会发送通知。
  584. actions_description_remote_html: 决定采取何种行动来解决此举报。 这只会影响<strong>您的</strong>服务器如何与该远程帐户的通信并处理其内容。
  585. add_to_report: 增加更多举报内容
  586. are_you_sure: 你确定吗?
  587. assign_to_self: 接管
  588. assigned: 已接管的监察员
  589. by_target_domain: 被举报账户的域名
  590. cancel: 取消
  591. category: 类别
  592. category_description_html: 在与被举报账户的通信时,将引用该账号和/或内容被举报的原因
  593. comment:
  594. none: 没有
  595. comment_description_html: "%{name} 补充道:"
  596. confirm: 确认
  597. confirm_action: 确认对 @%{acct} 的管理操作
  598. created_at: 举报时间
  599. delete_and_resolve: 删除嘟文
  600. forwarded: 已转发
  601. forwarded_to: 转发举报至 %{domain}
  602. mark_as_resolved: 标记为已处理
  603. mark_as_sensitive: 标记为敏感内容
  604. mark_as_unresolved: 标记为未处理
  605. no_one_assigned: 未分派
  606. notes:
  607. create: 添加记录
  608. create_and_resolve: 添加记录并标记为“已处理”
  609. create_and_unresolve: 添加记录并重开
  610. delete: 删除
  611. placeholder: 描述已经执行的操作,或其他任何相关的跟进情况…
  612. title: 备注
  613. notes_description_html: 查看备注或向其他监察员留言
  614. processed_msg: '举报 #%{id} 处理成功'
  615. quick_actions_description_html: 快捷选择操作或向下滚动以查看举报内容:
  616. remote_user_placeholder: 来自 %{instance} 的远程实例用户
  617. reopen: 重开举报
  618. report: '举报 #%{id}'
  619. reported_account: 举报用户
  620. reported_by: 举报人
  621. resolved: 已处理
  622. resolved_msg: 举报处理成功!
  623. skip_to_actions: 跳转到操作
  624. status: 状态
  625. statuses: 被举报内容
  626. statuses_description_html: 在与该账号的通信中将引用违规内容
  627. summary:
  628. action_preambles:
  629. delete_html: 您即将<strong>删除</strong> <strong>@%{acct}</strong> 的一些嘟文。 这将:
  630. mark_as_sensitive_html: 您即将 <strong>标记</strong> <strong>@%{acct}</strong> 的帖一些子为 <strong>敏感</strong>。这将:
  631. silence_html: 您即将<strong>限制</strong> <strong>@%{acct}</strong> 的帐户。 这将:
  632. suspend_html: 您即将<strong>暂停</strong> <strong>@%{acct}</strong> 的帐户。 这将:
  633. actions:
  634. delete_html: 删除违规嘟文
  635. mark_as_sensitive_html: 将违规嘟文的媒体标记为敏感
  636. silence_html: 严格限制 <strong>@%{acct}</strong> 的影响力,方法是让他们的个人资料和内容仅对已经关注他们的人可见,或手动查找其个人资料时
  637. suspend_html: 暂停 <strong>@%{acct}</strong>,使他们的个人资料和内容无法访问,也无法与之互动
  638. close_report: '将报告 #%{id} 标记为已解决'
  639. close_reports_html: 将针对 <strong>@%{acct}</strong> 的<strong>所有</strong> 报告标记为已解决
  640. delete_data_html: 从现在起 30 天后删除 <strong>@%{acct}</strong> 的个人资料和内容,除非他们同时解除暂停。
  641. preview_preamble_html: "<strong>@%{acct}</strong> 将收到包含以下内容的警告:"
  642. record_strike_html: 记录一次针对 <strong>@%{acct}</strong> 的警示,以帮助您在这个帐户上的未来违规事件中得到重视。
  643. send_email_html: 向 <strong>@%{acct}</strong> 发送警告电子邮件
  644. warning_placeholder: 可选的补充理由,以说明调整的情况。
  645. target_origin: 被举报账号的来源
  646. title: 举报
  647. unassign: 取消接管
  648. unknown_action_msg: 未知操作:%{action}
  649. unresolved: 未处理
  650. updated_at: 更新时间
  651. view_profile: 查看资料
  652. roles:
  653. add_new: 添加角色
  654. assigned_users:
  655. other: "%{count} 用户"
  656. categories:
  657. administration: 管理
  658. devops: 开发运维
  659. invites: 邀请
  660. moderation: 监察
  661. special: 特殊
  662. delete: 刪除
  663. description_html: 使用 <strong>用户角色</strong>,您可以自定义您的用户可以访问的功能和区域。
  664. edit: 编辑 '%{name}' 角色
  665. everyone: 默认权限
  666. everyone_full_description_html: 这是影响到 <strong>所有用户</strong>的<strong>基础角色</strong>,包括未指定角色的用户。 其他所有的角色都继承着它的权限。
  667. permissions_count:
  668. other: "%{count} 权限"
  669. privileges:
  670. administrator: 管理员
  671. administrator_description: 拥有此权限的用户将绕过每个权限
  672. delete_user_data: 删除用户数据
  673. delete_user_data_description: 允许用户立即删除其他用户的数据
  674. invite_users: 邀请用户
  675. invite_users_description: 允许用户邀请新人加入服务器
  676. manage_announcements: 管理公告
  677. manage_announcements_description: 允许用户管理服务器上的通知
  678. manage_appeals: 管理申诉
  679. manage_appeals_description: 允许用户审阅针对管理操作的申诉
  680. manage_blocks: 管理地址段
  681. manage_blocks_description: 允许用户屏蔽电子邮件提供商和IP地址
  682. manage_custom_emojis: 管理自定义表情
  683. manage_custom_emojis_description: 允许用户管理服务器上的自定义表情
  684. manage_federation: 管理邦联
  685. manage_federation_description: 允许用户屏蔽或允许同其他域名的邦联,并控制消息投递能力
  686. manage_invites: 管理邀请
  687. manage_invites_description: 允许用户浏览和停用邀请链接
  688. manage_reports: 管理举报
  689. manage_reports_description: 允许用户审核举报并执行管理操作
  690. manage_roles: 管理角色
  691. manage_roles_description: 允许用户管理和分配比他们权限低的角色
  692. manage_rules: 管理规则
  693. manage_rules_description: 允许用户更改服务器规则
  694. manage_settings: 管理设置
  695. manage_settings_description: 允许用户更改站点设置
  696. manage_taxonomies: 管理分类
  697. manage_taxonomies_description: 允许用户查看热门内容并更新标签设置
  698. manage_user_access: 管理访问
  699. manage_user_access_description: 允许用户禁用其他用户的双因素认证、更改他们的电子邮件地址,以及重置他们的密码
  700. manage_users: 管理用户
  701. manage_users_description: 允许用户查看其他用户的信息并执行管理操作
  702. manage_webhooks: 管理 Webhooks
  703. manage_webhooks_description: 允许用户为管理事件配置 Webhook
  704. view_audit_log: 查看审核日志
  705. view_audit_log_description: 允许用户查看此服务器上的管理操作记录
  706. view_dashboard: 查看仪表板
  707. view_dashboard_description: 允许用户访问仪表盘和各种指标
  708. view_devops: 开发运维
  709. view_devops_description: 允许用户访问 Sidekiq 和 pgHero 仪表板
  710. title: 角色
  711. rules:
  712. add_new: 添加规则
  713. delete: 删除
  714. description_html: 虽然大多数人都声称已经阅读并同意服务条款,但通常人们只有在出现问题后才会阅读。<strong>所以写一个简单的要点列表吧,能让大家一目了然。</strong>试着让每条规则尽量简单明了,但也别分出太多条目来。
  715. edit: 编辑规则
  716. empty: 尚未定义服务器规则。
  717. title: 实例规则
  718. settings:
  719. about:
  720. manage_rules: 管理服务器规则
  721. preamble: 提供此服务器如何运营、资金状况等的深入信息。
  722. rules_hint: 有一个专门区域用于显示用户需要遵守的规则。
  723. title: 关于本站
  724. appearance:
  725. preamble: 自定义 Mastodon 的网页界面。
  726. title: 外观
  727. branding:
  728. preamble: 你的服务器与网络中其他服务器的招牌区别。此信息将可能在多种环境下显示,包括 Mastodon 网页界面、原生应用和其他网站的链接预览等。因此应尽量简明扼要。
  729. title: 招牌
  730. captcha_enabled:
  731. desc_html: 这依赖于来自hCaptcha的外部脚本,可能会带来安全和隐私问题。此外,<strong>这可能使注册过程对某些人(尤其是残疾人)的注册简易程度大幅下降</strong>。出于这些原因,请考虑采取其他措施,如基于批准或邀请的注册方式。
  732. title: 要求新用户输入验证码以确认他们的账户
  733. content_retention:
  734. preamble: 控制用户生成的内容在 Mastodon 中如何存储。
  735. title: 内容保留
  736. default_noindex:
  737. desc_html: 影响所有尚未更改此设置的用户
  738. title: 默认不让用户被搜索引擎索引
  739. discovery:
  740. follow_recommendations: 关注推荐
  741. preamble: 露出有趣的内容有助于新加入 Mastodon 的用户融入。可在这里控制多种发现功能如何在你的服务器上工作。
  742. profile_directory: 个人资料目录
  743. public_timelines: 公共时间轴
  744. publish_discovered_servers: 已公开实例的服务器
  745. publish_statistics: 发布统计数据
  746. title: 发现
  747. trends: 流行趋势
  748. domain_blocks:
  749. all: 对所有人
  750. disabled: 不对任何人
  751. users: 对本地已登录用户
  752. registrations:
  753. preamble: 控制谁可以在你的服务器上创建账号。
  754. title: 注册
  755. registrations_mode:
  756. modes:
  757. approved: 注册时需要批准
  758. none: 关闭注册
  759. open: 开放注册
  760. security:
  761. authorized_fetch: 需要跨站认证
  762. authorized_fetch_hint: 要求外站请求通过验证能够使用户级别与服务器级别的封锁更为严格。然而,这将带来额外的性能负担、减少回复触达范围、并可能导致与一些联邦宇宙服务的兼容性问题。此外,这并不能阻止他人针对性地获取公开嘟文与账户。
  763. authorized_fetch_overridden_hint: 由于此设置被环境变量覆盖,目前无法更改。
  764. federation_authentication: 强制跨站认证
  765. title: 服务器设置
  766. site_uploads:
  767. delete: 删除已上传的文件
  768. destroyed_msg: 站点上传的文件已经成功删除!
  769. software_updates:
  770. critical_update: 紧急 — 请尽快更新
  771. description: 建议您及时更新Mastodon实例,以便获得最新修复和功能。此外,为避免安全问题,有时候及时更新Mastodon是至关重要的。出于这些原因,Mastodon每30分钟检查一次更新,并根据您的电子邮件通知偏好向您发送通知。
  772. documentation_link: 了解详情
  773. release_notes: 更新日志
  774. title: 可用的更新
  775. type: 类型
  776. types:
  777. major: 大版本更新
  778. minor: 小版本更新
  779. patch: 补丁级更新 - 修复了错误并进行了易于应用的更改
  780. version: 版本
  781. statuses:
  782. account: 作者
  783. application: 应用
  784. back_to_account: 返回帐户信息页
  785. back_to_report: 返回举报页
  786. batch:
  787. remove_from_report: 从报告中移除
  788. report: 举报
  789. deleted: 已删除
  790. favourites: 喜欢
  791. history: 版本历史记录
  792. in_reply_to: 回复给
  793. language: 语言
  794. media:
  795. title: 媒体文件
  796. metadata: 元数据
  797. no_status_selected: 因为没有嘟文被选中,所以没有更改
  798. open: 展开嘟文
  799. original_status: 原始嘟文
  800. reblogs: 转发
  801. status_changed: 嘟文已编辑
  802. title: 帐户嘟文
  803. trending: 当前热门
  804. visibility: 可见性
  805. with_media: 含有媒体文件
  806. strikes:
  807. actions:
  808. delete_statuses: "%{name} 刪除了 %{target} 的嘟文"
  809. disable: "%{name} 冻结了用户 %{target}"
  810. mark_statuses_as_sensitive: "%{name} 已将 %{target} 的嘟文标记为敏感内容"
  811. none: "%{name} 向 %{target} 发送了警告"
  812. sensitive: "%{name} 将 %{target} 的账号标记为敏感内容"
  813. silence: "%{name} 限制了用户 %{target}"
  814. suspend: "%{name} 封禁了用户 %{target}"
  815. appeal_approved: 已申诉
  816. appeal_pending: 申诉待处理
  817. appeal_rejected: 申诉已驳回
  818. system_checks:
  819. database_schema_check:
  820. message_html: 有待处理的数据库迁移。请运行它们以确保应用程序正常运行。
  821. elasticsearch_health_red:
  822. message_html: Elasticsearch 集群状态不健康(红色),搜索功能不可用
  823. elasticsearch_health_yellow:
  824. message_html: Elasticsearch 集群不健康(黄色状态),您可能想要调查原因
  825. elasticsearch_index_mismatch:
  826. message_html: Elasticsearch索引映射已过时。请运行<code>tootctl search deploy --only=%{value}</code>。
  827. elasticsearch_preset:
  828. action: 查看文档
  829. message_html: 您的Elasticsearch集群有多个节点,但Mastodon未配置好使用它们。
  830. elasticsearch_preset_single_node:
  831. action: 查看文档
  832. message_html: 您的Elasticsearch集群只有一个节点,<code>ES_PRESET</code>应该设置为<code>single_node_cluster</code>。
  833. elasticsearch_reset_chewy:
  834. message_html: 您的Elasticsearch系统索引已过时,可能是由于设置更改导致的。请运行<code>tootctl search deploy --reset-chewy</code>命令来更新它。
  835. elasticsearch_running_check:
  836. message_html: 无法连接到 Elasticsearch。请检查它是否正在运行,或禁用全文搜索
  837. elasticsearch_version_check:
  838. message_html: '不兼容的 Elasticsearch 版本: %{value}'
  839. version_comparison: Elasticsearch 最低版本要求 %{required_version},正在运行的版本是 %{running_version}
  840. rules_check:
  841. action: 管理服务器规则
  842. message_html: 你没有定义任何服务器规则。
  843. sidekiq_process_check:
  844. message_html: "%{value} 队列未运行任何 Sidekiq 进程。请检查你的 Sidekiq 配置"
  845. software_version_critical_check:
  846. action: 查看可用更新
  847. message_html: 有一个紧急Mastodon紧急更新可用,请尽快更新。
  848. software_version_patch_check:
  849. action: 查看可用更新
  850. message_html: 有一个Mastodon错误修复更新可用。
  851. upload_check_privacy_error:
  852. action: 点击这里查看更多信息
  853. message_html: "<strong>您的网站服务器配置错误,您用户的隐私处于危险中。</strong>"
  854. upload_check_privacy_error_object_storage:
  855. action: 点击这里查看更多信息
  856. message_html: "<strong>您的对象存储空间配置错误,您用户的隐私处于危险中。</strong>"
  857. tags:
  858. review: 审核状态
  859. updated_msg: 话题标签设置更新成功
  860. title: 管理
  861. trends:
  862. allow: 允许
  863. approved: 已批准
  864. disallow: 不允许
  865. links:
  866. allow: 允许链接
  867. allow_provider: 允许发布者
  868. description_html: 这些是当前此服务器可见账号的嘟文中被大量分享的链接。它可以帮助用户了解正在发生的事情。发布者获得批准前不会公开显示任何链接。你也可以批准或拒绝个别链接。
  869. disallow: 不允许链接
  870. disallow_provider: 不允许发布者
  871. no_link_selected: 因为没有选中任何链接,所以没有更改
  872. publishers:
  873. no_publisher_selected: 因为没有选中任何发布者,所以没有更改
  874. shared_by_over_week:
  875. other: 过去一周内被 %{count} 个人分享过
  876. title: 热门链接
  877. usage_comparison: 今日被分享 %{today} 次,前一日为 %{yesterday} 次
  878. not_allowed_to_trend: 不允许的趋势
  879. only_allowed: 仅显示已允许的内容
  880. pending_review: 待审核
  881. preview_card_providers:
  882. allowed: 来自此发布者的链接可进入流行列表
  883. description_html: 这些域名所属的链接经常在此服务器上被分享。在对应域名获得批准前链接不会公开显示在热门中。批准和拒绝操作也会对子域名生效。
  884. rejected: 来自此发布者的链接不会进入热门列表
  885. title: 发布者
  886. rejected: 已拒绝
  887. statuses:
  888. allow: 允许嘟文
  889. allow_account: 允许发布者
  890. description_html: 这些是当前此服务器可见的被大量分享和喜欢的嘟文。这些嘟文可以帮助新老用户找到更多可关注的账号。批准发布者且发布者允许将其账号推荐给其他用户前,不会公开显示任何嘟文。你也可以批准或拒绝个别嘟文。
  891. disallow: 禁止嘟文
  892. disallow_account: 禁止发布者
  893. no_status_selected: 因为没有选中任何热门嘟文,所以没有更改
  894. not_discoverable: 发布者选择不被发现
  895. shared_by:
  896. other: 被分享和喜欢%{friendly_count}次
  897. title: 热门嘟文
  898. tags:
  899. current_score: 当前 %{score} 分
  900. dashboard:
  901. tag_accounts_measure: 独立使用
  902. tag_languages_dimension: 语言排行
  903. tag_servers_dimension: 服务器排行
  904. tag_servers_measure: 不同服务器
  905. tag_uses_measure: 总使用
  906. description_html: 这些是当前此服务器可见嘟文中大量出现的标签。它可以帮助用户发现其他人正关注的话题。在获得批准前不会公开显示任何标签。
  907. listable: 可被推荐
  908. no_tag_selected: 因为没有选中任何标签,所以没有更改
  909. not_listable: 不会被推荐
  910. not_trendable: 不会出现在热门列表中
  911. not_usable: 不可使用
  912. peaked_on_and_decaying: 在 %{date} 达到峰值,下降中
  913. title: 热门标签
  914. trendable: 可显示在热门列表中
  915. trending_rank: '热门 #%{rank}'
  916. usable: 可以使用
  917. usage_comparison: 今日被使用 %{today} 次,前一日为 %{yesterday} 次
  918. used_by_over_week:
  919. other: 过去一周内被 %{count} 个人使用过
  920. title: 流行趋势
  921. trending: 当前热门
  922. warning_presets:
  923. add_new: 添加新条目
  924. delete: 删除
  925. edit_preset: 编辑预置警告
  926. empty: 你尚未定义任何警告预设。
  927. title: 管理预设警告
  928. webhooks:
  929. add_new: 新增对端
  930. delete: 删除
  931. description_html: "<strong>Webhook</strong> 使 Mastodon 能够推送 <strong>关于所选事件的实时通知</strong> 到你自己的应用程序,进而由你的应用程序<strong>自动触发反应</strong>。"
  932. disable: 禁用
  933. disabled: 已禁用
  934. edit: 编辑对端
  935. empty: 你尚未配置任何 Webhook 对端。
  936. enable: 启用
  937. enabled: 活跃
  938. enabled_events:
  939. other: "%{count} 启用的事件"
  940. events: 事件
  941. new: 新建 Webhook
  942. rotate_secret: 轮换密钥
  943. secret: 签名密钥
  944. status: 状态
  945. title: Webhooks
  946. webhook: Webhook
  947. admin_mailer:
  948. new_appeal:
  949. actions:
  950. delete_statuses: 删除其嘟文
  951. disable: 冻结其账号
  952. mark_statuses_as_sensitive: 标记其嘟文为敏感内容
  953. none: 警告
  954. sensitive: 标记其账号为敏感内容
  955. silence: 限制其账号
  956. suspend: 停用其账号
  957. body: "%{target} 对 %{action_taken_by} 于 %{date} 做出的 %{type} 审核结果提出申诉,写道:"
  958. next_steps: 你可以批准此申诉并撤销该审核结果,也可以忽略此申诉。
  959. subject: "%{username} 对 %{instance} 的审核结果提出了申诉"
  960. new_critical_software_updates:
  961. body: 新的紧急更新版本Mastodon已经发布,您可能希望尽快更新!
  962. subject: 适用于 %{instance} 的Mastodon紧急更新已经可用。
  963. new_pending_account:
  964. body: 新账户的详细信息如下。你可以批准或拒绝此申请。
  965. subject: 在 %{instance} 上有新账号 (%{username}) 需要审核
  966. new_report:
  967. body: "%{reporter} 举报了用户 %{target}"
  968. body_remote: 来自 %{domain} 的用户举报了用户 %{target}
  969. subject: 来自 %{instance} 的用户举报(#%{id})
  970. new_software_updates:
  971. body: 新的 Mastodon 版本已发布,您可能想要更新!
  972. subject: 适用于 %{instance} 的Mastodon版本更新已经可用!
  973. new_trends:
  974. body: 以下项目需要审核才能公开显示:
  975. new_trending_links:
  976. title: 热门链接
  977. new_trending_statuses:
  978. title: 热门嘟文
  979. new_trending_tags:
  980. no_approved_tags: 目前没有经批准的热门标签。
  981. requirements: '这些候选人都可能会超过#%{rank} 批准的热门标签,目前是 #%{lowest_tag_name} ,分数为 %{lowest_tag_score}。'
  982. title: 热门标签
  983. subject: "%{instance} 上有新热门等待审核"
  984. aliases:
  985. add_new: 创建别名
  986. created_msg: 成功创建了一个新别名。你现在可以从旧账户开始迁移了。
  987. deleted_msg: 成功移除别名。已经无法从该帐户移动到此帐户了。
  988. empty: 你没有设置别名
  989. hint_html: 如果你想从另一个账号迁移到这里,可以先在这里创建一个别名。要把旧账号的关注者迁移过来,这一步是必须的。设置别名的操作是<strong>无害且可撤销的</strong>。<strong>账号迁移的操作会从旧账号发起</strong>。
  990. remove: 取消关联别名
  991. appearance:
  992. advanced_web_interface: 高级 Web 界面
  993. advanced_web_interface_hint: 如果你想使用整个屏幕宽度,高级 web 界面允许您配置多个不同的栏目,可以同时看到更多的信息:主页、通知、跨站时间轴、任意数量的列表和话题标签。
  994. animations_and_accessibility: 动画和访问选项
  995. confirmation_dialogs: 确认对话框
  996. discovery: 发现
  997. localization:
  998. body: Mastodon 由志愿者翻译。
  999. guide_link: https://crowdin.com/project/mastodon
  1000. guide_link_text: 每个人都可以参与翻译。
  1001. sensitive_content: 敏感内容
  1002. application_mailer:
  1003. notification_preferences: 更改电子邮件首选项
  1004. salutation: "%{name}:"
  1005. settings: 使用此链接更改你的电子邮件首选项:%{link}
  1006. unsubscribe: 取消订阅
  1007. view: 点此链接查看详情:
  1008. view_profile: 查看个人资料页
  1009. view_status: 查看嘟文
  1010. applications:
  1011. created: 应用创建成功
  1012. destroyed: 应用删除成功
  1013. logout: 退出登录
  1014. regenerate_token: 重置访问令牌
  1015. token_regenerated: 访问令牌重置成功
  1016. warning: 一定小心,千万不要把它分享给任何人!
  1017. your_token: 你的访问令牌
  1018. auth:
  1019. apply_for_account: 申请账号
  1020. captcha_confirmation:
  1021. help_html: 如果您在输入验证码时遇到问题,可以通过%{email} 与我们联系,我们将为您提供帮助。
  1022. hint_html: 只剩最后一件事了!我们需要确认您是一个人类(这样我们才能阻止恶意访问!)。请输入下面的验证码,然后点击“继续”。
  1023. title: 安全检查
  1024. confirmations:
  1025. wrong_email_hint: 如果该电子邮件地址不正确,您可以在帐户设置中进行更改。
  1026. delete_account: 删除帐户
  1027. delete_account_html: 如果你想删除你的帐户,请<a href="%{path}">点击这里继续</a>。你需要确认你的操作。
  1028. description:
  1029. prefix_invited_by_user: "@%{name} 邀请你加入这个Mastodon服务器!"
  1030. prefix_sign_up: 现在就注册 Mastodon!
  1031. suffix: 注册一个账号,你就可以关注他人、发布嘟文、并和其它任何 Mastodon 服务器上的用户交流,而且还有其它更多功能!
  1032. didnt_get_confirmation: 没有收到确认链接?
  1033. dont_have_your_security_key: 没有你的安全密钥?
  1034. forgot_password: 忘记密码?
  1035. invalid_reset_password_token: 密码重置令牌无效或已过期。请重新发起重置密码请求。
  1036. link_to_otp: 输入从手机中获得的双因素认证代码或恢复代码
  1037. link_to_webauth: 使用你的安全密钥设备
  1038. log_in_with: 通过外部服务登录
  1039. login: 登录
  1040. logout: 退出登录
  1041. migrate_account: 迁移到另一个账户
  1042. migrate_account_html: 如果你希望引导他人关注另一个账号,请<a href="%{path}">点击这里进行设置</a>。
  1043. or_log_in_with: 或通过外部服务登录
  1044. privacy_policy_agreement_html: 我已阅读并同意 <a href="%{privacy_policy_path}" target="_blank">隐私政策</a>
  1045. progress:
  1046. confirm: 确认电子邮件地址
  1047. details: 您的详情
  1048. review: 我们的复审
  1049. rules: 接受规则
  1050. providers:
  1051. cas: CAS
  1052. saml: SAML
  1053. register: 注册
  1054. registration_closed: "%{instance} 目前不接收新成员"
  1055. resend_confirmation: 重新发送确认链接
  1056. reset_password: 重置密码
  1057. rules:
  1058. accept: 接受
  1059. back: 返回
  1060. invited_by: 你可以加入%{domain},这是由于你收到了他人的邀请,邀请来自:
  1061. preamble: 这些由 %{domain} 监察员设置和执行。
  1062. preamble_invited: 在您继续之前,请考虑 %{domain} 的管理员设定的基本规则。
  1063. title: 一些基本规则。
  1064. title_invited: 您已经被邀请。
  1065. security: 账户安全
  1066. set_new_password: 设置新密码
  1067. setup:
  1068. email_below_hint_html: 请检查的垃圾邮件文件夹,或请求再次发送一次。如果您的电子邮件地址不对,您可以更正您的电子邮件地址。
  1069. email_settings_hint_html: 请点击我们发送给 %{email} 地址中的确认链接。我在这儿等着您。
  1070. link_not_received: 没有收到链接?
  1071. new_confirmation_instructions_sent: 您将在几分钟内收到一封带有确认链接的新邮件!
  1072. title: 请检查你的电子邮件收件箱
  1073. sign_in:
  1074. preamble_html: 使用您在 <strong>%{domain}</strong> 的账户和密码登录。如果您的账户托管在其他的服务器上,您将无法在此登录。
  1075. title: 登录到 %{domain}
  1076. sign_up:
  1077. manual_review: 您在 %{domain} 上的注册需要经由管理人员手动审核。 为了帮助我们处理您的注册,请稍微介绍一下您为什么想在 %{domain} 上注册。
  1078. preamble: 有了这个Mastodon服务器上的账户,您就可以关注Mastodon网络上的任何其他人,无论他们的账户在哪里。
  1079. title: 让我们在 %{domain} 上开始。
  1080. status:
  1081. account_status: 账户状态
  1082. confirming: 等待电子邮件确认完成。
  1083. functional: 你的账号可以正常使用了。
  1084. pending: 工作人员正在审核你的申请。这需要花点时间。在申请被批准后,你将收到一封电子邮件。
  1085. redirecting_to: 你的账户无效,因为它已被设置为跳转到 %{acct}
  1086. view_strikes: 查看针对你账号的记录
  1087. too_fast: 表单提交过快,请重试。
  1088. use_security_key: 使用安全密钥
  1089. challenge:
  1090. confirm: 继续
  1091. hint_html: "<strong>注意:</strong>接下来一小时内我们不会再次要求你输入密码。"
  1092. invalid_password: 无效密码
  1093. prompt: 确认密码以继续
  1094. crypto:
  1095. errors:
  1096. invalid_key: 不是有效的 Ed25519 或者 Curve25519 密钥
  1097. invalid_signature: 不是有效的 Ed25519 签名
  1098. date:
  1099. formats:
  1100. default: "%Y年%m月%d日"
  1101. with_month_name: "%Y年%m月%d日"
  1102. datetime:
  1103. distance_in_words:
  1104. about_x_hours: "%{count}小时前"
  1105. about_x_months: "%{count}个月前"
  1106. about_x_years: "%{count}年前"
  1107. almost_x_years: "%{count}年前"
  1108. half_a_minute: 刚刚
  1109. less_than_x_minutes: "%{count}分钟前"
  1110. less_than_x_seconds: 刚刚
  1111. over_x_years: "%{count}年前"
  1112. x_days: "%{count}天前"
  1113. x_minutes: "%{count}分钟前"
  1114. x_months: "%{count}个月前"
  1115. x_seconds: "%{count}秒前"
  1116. deletes:
  1117. challenge_not_passed: 你输入的信息不正确
  1118. confirm_password: 输入你当前的密码来验证身份
  1119. confirm_username: 输入你的用户名以继续
  1120. proceed: 删除账户
  1121. success_msg: 你的账户已成功删除
  1122. warning:
  1123. before: 在删除前,请仔细阅读下列说明:
  1124. caches: 已被其他服务器缓存的内容可能还会保留
  1125. data_removal: 你的嘟文和其他数据将被永久删除
  1126. email_change_html: 你可以 <a href="%{path}">更换邮箱地址</a> 无需删除账号
  1127. email_contact_html: 如果它还没送到,你可以发邮件给 <a href="mailto:%{email}">%{email}</a> 寻求帮助。
  1128. email_reconfirmation_html: 如果你没有收到确认邮件,请点击 <a href="%{path}">重新发送</a> 。
  1129. irreversible: 你将无法恢复或重新激活你的账户
  1130. more_details_html: 更多细节,请查看 <a href="%{terms_path}">隐私政策</a> 。
  1131. username_available: 你的用户名现在又可以使用了
  1132. username_unavailable: 你的用户名仍将无法使用
  1133. disputes:
  1134. strikes:
  1135. action_taken: 采取的措施
  1136. appeal: 申诉
  1137. appeal_approved: 此次处罚已申诉成功并不再生效
  1138. appeal_rejected: 此次申诉已被驳回
  1139. appeal_submitted_at: 已提出申诉
  1140. appealed_msg: 你的申诉已经提交。如果申诉通过,你将收到通知。
  1141. appeals:
  1142. submit: 提交申诉
  1143. approve_appeal: 批准申诉
  1144. associated_report: 相关举报
  1145. created_at: 日期
  1146. description_html: 这些是针对您的账户采取的行动和警告,已经由 %{instance} 的工作人员发送给您。
  1147. recipient: 发送至
  1148. reject_appeal: 驳回申诉
  1149. status: '嘟文 #%{id}'
  1150. status_removed: 嘟文已从系统中删除
  1151. title: "%{action} 于 %{date}"
  1152. title_actions:
  1153. delete_statuses: 嘟文删除
  1154. disable: 账号冻结
  1155. mark_statuses_as_sensitive: 标记嘟文有敏感内容
  1156. none: 警告
  1157. sensitive: 标记账号有敏感内容
  1158. silence: 账号限制
  1159. suspend: 账号封禁
  1160. your_appeal_approved: 你的申诉已被批准
  1161. your_appeal_pending: 你已提交申诉
  1162. your_appeal_rejected: 你的申诉已被驳回
  1163. domain_validator:
  1164. invalid_domain: 不是一个有效的域名
  1165. edit_profile:
  1166. basic_information: 基本信息
  1167. hint_html: "<strong>自定义公开资料和嘟文旁边显示的内容。</strong>当您填写完整的个人资料并设置了头像时,其他人更有可能关注您并与您互动。"
  1168. other: 其他
  1169. errors:
  1170. '400': 你提交的请求无效或格式不正确。
  1171. '403': 你没有访问这个页面的权限。
  1172. '404': 无法找到你所要访问的页面。
  1173. '406': 页面无法处理请求。
  1174. '410': 你所要访问的页面此处已不存在。
  1175. '422':
  1176. content: 无法确认登录信息。你是不是屏蔽了 Cookie?
  1177. title: 无法确认登录信息
  1178. '429': 请求被限制
  1179. '500':
  1180. content: 抱歉,我们的后台出错了。
  1181. title: 这个页面有问题
  1182. '503': 服务暂时不可用,无法请求该页面。
  1183. noscript_html: 使用 Mastodon 网页版应用需要启用 JavaScript。你也可以选择适用于你的平台的 <a href="%{apps_path}">Mastodon 应用</a>。
  1184. existing_username_validator:
  1185. not_found: 在本站找不到此用户
  1186. not_found_multiple: 找不到 %{usernames}
  1187. exports:
  1188. archive_takeout:
  1189. date: 日期
  1190. download: 下载你的存档
  1191. hint_html: 你可以请求一份账户数据存档,其中包含你的<strong>嘟文和已上传的媒体文件</strong>。导出的数据为 ActivityPub 格式,因而可以被兼容的软件读取。每次允许请求存档的间隔至少为 7 天。
  1192. in_progress: 正在准备你的存档……
  1193. request: 请求你的存档
  1194. size: 大小
  1195. blocks: 屏蔽的用户
  1196. bookmarks: 书签
  1197. csv: CSV
  1198. domain_blocks: 域名屏蔽
  1199. lists: 列表
  1200. mutes: 已被你隐藏的
  1201. storage: 媒体文件存储
  1202. featured_tags:
  1203. add_new: 添加新条目
  1204. errors:
  1205. limit: 您所推荐的话题标签数已达上限
  1206. hint_html: "<strong>什么是精选话题标签?</strong> 它们被显示在你的公开个人资料中的突出位置,人们可以在这些标签下浏览你的公共嘟文。 它们是跟踪创作或长期项目的进度的重要工具。"
  1207. filters:
  1208. contexts:
  1209. account: 个人资料
  1210. home: 主页时间轴
  1211. notifications: 通知
  1212. public: 公共时间轴
  1213. thread: 对话
  1214. edit:
  1215. add_keyword: 添加关键词
  1216. keywords: 关键词
  1217. statuses: 个别嘟文
  1218. statuses_hint_html: 无论是否匹配下列关键词,此过滤器适用于选用个别嘟文。<a href="%{path}">从过滤器中审核嘟文或移除嘟文</a>。
  1219. title: 编辑过滤器
  1220. errors:
  1221. deprecated_api_multiple_keywords: 这些参数不能从此应用程序更改,因为它们应用于一个以上的过滤关键字。 使用较新的应用程序或网页界面。
  1222. invalid_context: 提供的过滤器环境没有或无效
  1223. index:
  1224. contexts: 在 %{contexts} 中的过滤器
  1225. delete: 删除
  1226. empty: 你没有过滤器。
  1227. expires_in: 在 %{distance} 后过期
  1228. expires_on: "%{date} 后到期"
  1229. keywords:
  1230. other: "%{count} 关键词"
  1231. statuses:
  1232. other: "%{count} 条嘟文"
  1233. statuses_long:
  1234. other: "%{count} 条个别嘟文已隐藏"
  1235. title: 过滤器
  1236. new:
  1237. save: 保存新过滤器
  1238. title: 添加新的过滤器
  1239. statuses:
  1240. back_to_filter: 返回过滤器
  1241. batch:
  1242. remove: 从过滤器中移除
  1243. index:
  1244. hint: 无论其他条件如何,此过滤器适用于选用个别嘟文。你可以从网页界面中向此过滤器加入更多嘟文。
  1245. title: 过滤的嘟文
  1246. generic:
  1247. all: 全部
  1248. all_items_on_page_selected_html:
  1249. other: 此页面上的所有 <strong>%{count}</strong> 项目已被选中。
  1250. all_matching_items_selected_html:
  1251. other: 所有 <strong>%{count}</strong> 匹配您搜索的项目都已被选中。
  1252. cancel: 取消
  1253. changes_saved_msg: 更改保存成功!
  1254. confirm: 确认
  1255. copy: 复制
  1256. delete: 删除
  1257. deselect: 取消全选
  1258. none: 无
  1259. order_by: 排序方式
  1260. save_changes: 保存更改
  1261. select_all_matching_items:
  1262. other: 选择匹配您搜索的所有 %{count} 个项目。
  1263. today: 今天
  1264. validation_errors:
  1265. other: 出错啦!检查一下下面 %{count} 处出错的地方吧
  1266. imports:
  1267. errors:
  1268. empty: CSV 文件为空
  1269. incompatible_type: 与所选导入类型不兼容
  1270. invalid_csv_file: '无效的 CSV 文件。错误: %{error}'
  1271. over_rows_processing_limit: 包含行数超过了 %{count}
  1272. too_large: 文件过大
  1273. failures: 失败
  1274. imported: 已导入
  1275. mismatched_types_warning: 您似乎选择了导入错误的类型,请再次检查。
  1276. modes:
  1277. merge: 合并
  1278. merge_long: 保留现有记录并添加新的记录
  1279. overwrite: 覆盖
  1280. overwrite_long: 将当前记录替换为新记录
  1281. overwrite_preambles:
  1282. blocking_html: 您即将使用来自<strong> %{filename} </strong>的最多<strong> %{total_items} 个账户</strong>替换您的屏蔽列表。
  1283. bookmarks_html: 您即将使用来自<strong> %{filename} </strong>的<strong> %{total_items} 篇嘟文</strong>替换您的书签。
  1284. domain_blocking_html: 您即将使用来自<strong> %{filename} </strong>的最多<strong> %{total_items} 个域名</strong>替换您的域名屏蔽列表。
  1285. following_html: 您即将从<strong> %{filename} </strong>关注<strong> %{total_items} 个账户</strong>,并停止关注其他任何人。
  1286. lists_html: 你即将用<strong> %{filename} </strong>的内容<strong>替换你的列表</strong>。新列表中将添加<strong> %{total_items} 个账户</strong>。
  1287. muting_html: 您即将使用来自<strong> %{filename} </strong>的最多<strong> %{total_items} 个账户</strong>替换您已隐藏的账户列表。
  1288. preambles:
  1289. blocking_html: 您即将从<strong> %{filename} </strong>中<strong>封锁</strong>多达<strong> %{total_items} </strong>个账户。
  1290. bookmarks_html: 您即将把来自<strong> %{filename} </strong>的<strong> %{total_items} 篇嘟文</strong>添加到您的<strong>书签</strong>中。
  1291. domain_blocking_html: 您即将从<strong> %{filename} </strong>中<strong>屏蔽</strong><strong> %{total_items} 个域名</strong>。
  1292. following_html: 您即将从<strong> %{filename} </strong><strong>关注</strong>最多<strong> %{total_items} 个账户</strong>。
  1293. lists_html: 你即将从<strong> %{filename} </strong>中添加最多<strong> %{total_items} 个账户</strong>到你的<strong>列表</strong>中。如果没有可用列表,将创建新的列表。
  1294. muting_html: 您即将从<strong> %{filename} </strong>中<strong>隐藏</strong><strong> %{total_items} 个账户</strong>。
  1295. preface: 你可以在此导入你在其他实例导出的数据,比如你所关注或屏蔽的用户列表。
  1296. recent_imports: 最近导入
  1297. states:
  1298. finished: 已完成
  1299. in_progress: 导入中
  1300. scheduled: 已预定
  1301. unconfirmed: 未确认
  1302. status: 状态
  1303. success: 数据上传成功,正在处理中
  1304. time_started: 开始于
  1305. titles:
  1306. blocking: 正在导入被屏蔽的账户
  1307. bookmarks: 正在导入书签
  1308. domain_blocking: 正在导入被屏蔽的域名
  1309. following: 正在导入关注的账户
  1310. lists: 导入列表
  1311. muting: 正在导入隐藏的账户
  1312. type: 导入类型
  1313. type_groups:
  1314. constructive: 关注和书签
  1315. destructive: 屏蔽和隐藏
  1316. types:
  1317. blocking: 屏蔽列表
  1318. bookmarks: 书签
  1319. domain_blocking: 域名屏蔽列表
  1320. following: 关注列表
  1321. lists: 列表
  1322. muting: 隐藏列表
  1323. upload: 上传
  1324. invites:
  1325. delete: 停用
  1326. expired: 已失效
  1327. expires_in:
  1328. '1800': 30 分钟后
  1329. '21600': 6 小时后
  1330. '3600': 1 小时后
  1331. '43200': 12 小时后
  1332. '604800': 1 周后
  1333. '86400': 1 天后
  1334. expires_in_prompt: 永不过期
  1335. generate: 生成邀请链接
  1336. invited_by: 你的邀请人是:
  1337. max_uses:
  1338. other: "%{count} 次"
  1339. max_uses_prompt: 无限制
  1340. prompt: 生成分享链接,邀请他人在本服务器注册
  1341. table:
  1342. expires_at: 失效时间
  1343. uses: 已使用次数
  1344. title: 邀请用户
  1345. lists:
  1346. errors:
  1347. limit: 您已达到列表数量的上限
  1348. login_activities:
  1349. authentication_methods:
  1350. otp: 双因素认证应用
  1351. password: 密码
  1352. sign_in_token: 电子邮件安全代码
  1353. webauthn: 安全密钥
  1354. description_html: 如有您无法识别的活动,请考虑更改密码并启用双因素认证。
  1355. empty: 没有可用的认证记录
  1356. failed_sign_in_html: 失败的 %{method} 登录尝试,来自 %{ip} (%{browser})
  1357. successful_sign_in_html: 通过 %{method} 成功登录,来自 %{ip} (%{browser})
  1358. title: 认证历史
  1359. mail_subscriptions:
  1360. unsubscribe:
  1361. action: 是,取消订阅
  1362. complete: 已取消订阅
  1363. confirmation_html: 您确定要取消订阅来自 %{domain} 上的 Mastodon 的 %{type} 到您的邮箱 %{email} 吗?您可以随时在<a href="%{settings_path}">电子邮件通知设置</a>重新订阅。
  1364. emails:
  1365. notification_emails:
  1366. favourite: 嘟文被点赞邮件通知
  1367. follow: 账户被关注邮件通知
  1368. follow_request: 关注请求邮件通知
  1369. mention: 账户被提及邮件通知
  1370. reblog: 被转嘟邮件通知
  1371. resubscribe_html: 如果您不小心取消订阅,可以从您的<a href="%{settings_path}">电子邮件通知设置</a>重新订阅。
  1372. success_html: 您将不会在您的邮箱 %{email} 中收到 %{domain} 上的 Mastodon的 %{type}
  1373. title: 取消订阅
  1374. media_attachments:
  1375. validations:
  1376. images_and_video: 无法在嘟文中同时插入视频和图片
  1377. not_ready: 不能附加还在处理中的文件。请稍后再试!
  1378. too_many: 最多只能添加 4 张图片
  1379. migrations:
  1380. acct: 新账户的 用户名@域名
  1381. cancel: 取消跳转
  1382. cancel_explanation: 取消跳转将会重新激活你当前的账号,但是已经迁移到新账号的关注者不会回来。
  1383. cancelled_msg: 成功取消跳转
  1384. errors:
  1385. already_moved: 和你已经迁移过的账号相同
  1386. missing_also_known_as: 没有引用此账号
  1387. move_to_self: 不能是当前账户
  1388. not_found: 找不到
  1389. on_cooldown: 你正处于冷却状态
  1390. followers_count: 迁移时的关注者
  1391. incoming_migrations: 从其它账号迁入
  1392. incoming_migrations_html: 要把另一个账号移动到本账号,首先你需要<a href="%{path}">创建一个账号别名</a> 。
  1393. moved_msg: 你的账号现在会跳转到 %{acct} ,同时关注者也会一并迁移 。
  1394. not_redirecting: 你的账号当前未跳转到其它账号。
  1395. on_cooldown: 你最近已经迁移过你的账号。此功能将在%{count} 天后再次可用。
  1396. past_migrations: 迁移记录
  1397. proceed_with_move: 移动关注者
  1398. redirected_msg: 你的账号现在会跳转至 %{acct}
  1399. redirecting_to: 你的账户正在跳转到 %{acct}。
  1400. set_redirect: 设置跳转
  1401. warning:
  1402. backreference_required: 新账号必须先引用当前账号
  1403. before: 在继续前,请仔细阅读下列说明:
  1404. cooldown: 移动后会有一个冷却期,在此期间你将无法再次移动
  1405. disabled_account: 此后,你的当前账户将无法使用。但是,你仍然有权导出数据或者重新激活。
  1406. followers: 这步操作将把所有关注者从当前账户移动到新账户
  1407. only_redirect_html: 或者,你可以<a href="%{path}">只在你的账号资料上设置一个跳转</a>。
  1408. other_data: 不会自动移动其它数据
  1409. redirect: 在收到一个跳转通知后,你当前的账号资料将会更新,并被排除在搜索范围外
  1410. moderation:
  1411. title: 运营
  1412. move_handler:
  1413. carry_blocks_over_text: 这个用户迁移自你屏蔽过的 %{acct}
  1414. carry_mutes_over_text: 这个用户由你隐藏过的 %{acct} 迁移而来
  1415. copy_account_note_text: 这个用户迁移自 %{acct},你曾为其添加备注:
  1416. navigation:
  1417. toggle_menu: 隐藏/显示菜单
  1418. notification_mailer:
  1419. admin:
  1420. report:
  1421. subject: "%{name} 提交了举报"
  1422. sign_up:
  1423. subject: "%{name} 注册了"
  1424. favourite:
  1425. body: 你的嘟文被 %{name} 喜欢了:
  1426. subject: "%{name} 喜欢了你的嘟文"
  1427. title: 新的喜欢
  1428. follow:
  1429. body: "%{name} 关注了你!"
  1430. subject: "%{name} 关注了你"
  1431. title: 新的关注者
  1432. follow_request:
  1433. action: 处理关注请求
  1434. body: "%{name} 向你发送了关注请求"
  1435. subject: 来自 %{name} 的关注请求
  1436. title: 新的关注请求
  1437. mention:
  1438. action: 回复
  1439. body: "%{name} 在嘟文中提到了你:"
  1440. subject: "%{name} 提到了你"
  1441. title: 新的提及
  1442. poll:
  1443. subject: "%{name} 创建的一个投票已经结束"
  1444. reblog:
  1445. body: 你的嘟文被 %{name} 转嘟了:
  1446. subject: "%{name} 转嘟了你的嘟文"
  1447. title: 新的转嘟
  1448. status:
  1449. subject: "%{name} 刚刚发布嘟文"
  1450. update:
  1451. subject: "%{name} 编辑了嘟文"
  1452. notifications:
  1453. administration_emails: 管理员电子邮件通知
  1454. email_events: 电子邮件通知事件
  1455. email_events_hint: 选择你想要收到通知的事件:
  1456. other_settings: 其它通知设置
  1457. number:
  1458. human:
  1459. decimal_units:
  1460. format: "%n%u"
  1461. units:
  1462. billion: B
  1463. million: M
  1464. quadrillion: Q
  1465. thousand: K
  1466. trillion: T
  1467. otp_authentication:
  1468. code_hint: 输入认证应用生成的代码以确认操作
  1469. description_html: 如果你使用身份验证应用并启用了<strong>双因素认证</strong>,登录时将需要用到你的手机,由它生成所需的令牌。
  1470. enable: 启用
  1471. instructions_html: "<strong>请使用 Google 身份验证器或其他的TOTP双重认证手机应用扫描此处的二维码</strong>。启用双重认证后,在登录时,你需要输入该应用生成的代码。"
  1472. manual_instructions: 如果你无法扫描二维码,请手动输入下列文本:
  1473. setup: 设置
  1474. wrong_code: 输入的认证码无效!请确认服务器时间与设备时间是否正确?
  1475. pagination:
  1476. newer: 更新
  1477. next: 下一页
  1478. older: 更早
  1479. prev: 上一页
  1480. truncate: "&hellip;"
  1481. polls:
  1482. errors:
  1483. already_voted: 你已经在这里投过票了
  1484. duplicate_options: 包含重复的项目
  1485. duration_too_long: 期限过长
  1486. duration_too_short: 期限过短
  1487. expired: 投票已经结束
  1488. invalid_choice: 被选中的投票选项不存在
  1489. over_character_limit: 每条不能超过 %{max} 个字符
  1490. self_vote: 您不能参与自己发起的投票
  1491. too_few_options: 至少需要两个选项
  1492. too_many_options: 不能超过 %{max} 项
  1493. preferences:
  1494. other: 其他
  1495. posting_defaults: 发布默认值
  1496. public_timelines: 公共时间轴
  1497. privacy:
  1498. hint_html: "<strong>自定义您希望如何找到您的个人资料和嘟文。</strong>启用Mastodon中的各种功能可以帮助您扩大受众范围。请花点时间查看这些设置,确保它们适合您的使用情况。"
  1499. privacy: 隐私
  1500. privacy_hint_html: 控制你愿意向他人透露多少信息。通过浏览他人的关注列表和查看他们发嘟所用的应用,人们可以发现有趣的用户和酷炫的应用,但你可能更喜欢将其隐藏起来。
  1501. reach: 范围
  1502. reach_hint_html: 控制您是否希望被新人发现和关注。您是否希望您的嘟文出现在“探索”页面上?您是否希望其他人在关注推荐中看到您?您是想自动接受所有新粉丝,还是对每个粉丝都进行仔细的筛选?
  1503. search: 搜索
  1504. search_hint_html: 控制你希望被找到的方式。你想让人们通过你公开发布的内容来找到你吗?当在网络上搜索时,你是否希望Mastodon之外的人能够找到你的个人资料?请注意,我们无法保证完全排除所有搜索引擎对公开信息的索引。
  1505. title: 隐私与可达性
  1506. privacy_policy:
  1507. title: 隐私政策
  1508. reactions:
  1509. errors:
  1510. limit_reached: 互动种类的限制
  1511. unrecognized_emoji: 不是一个可识别的表情
  1512. relationships:
  1513. activity: 账号活动
  1514. confirm_follow_selected_followers: 您确定想要关注所选的关注者吗?
  1515. confirm_remove_selected_followers: 您确定想要取关所选的关注者吗?
  1516. confirm_remove_selected_follows: 您确定要删除选定的关注着吗?
  1517. dormant: 休眠
  1518. follow_failure: 无法关注选中的部分账户。
  1519. follow_selected_followers: 关注选中的关注者
  1520. followers: 关注者
  1521. following: 正在关注
  1522. invited: 已邀请
  1523. last_active: 最近活动
  1524. most_recent: 最近的
  1525. moved: 已迁移
  1526. mutual: 互相关注
  1527. primary: 主要
  1528. relationship: 关系
  1529. remove_selected_domains: 从选定的域名中删除所有关注者
  1530. remove_selected_followers: 移除选中的关注者
  1531. remove_selected_follows: 取消关注所选用户
  1532. status: 账户状态
  1533. remote_follow:
  1534. missing_resource: 无法确定你的账户的跳转 URL
  1535. reports:
  1536. errors:
  1537. invalid_rules: 没有引用有效的规则
  1538. rss:
  1539. content_warning: 内容警告:
  1540. descriptions:
  1541. account: "@%{acct} 的公开嘟文"
  1542. tag: "#%{hashtag} 标签下的公开嘟文"
  1543. scheduled_statuses:
  1544. over_daily_limit: 你已超出每日定时嘟文的上限(%{limit} 条)
  1545. over_total_limit: 你已超出定时嘟文的上限(%{limit} 条)
  1546. too_soon: 所定的时间必须在未来
  1547. sessions:
  1548. activity: 最后一次活跃的时间
  1549. browser: 浏览器
  1550. browsers:
  1551. alipay: 支付宝
  1552. blackberry: 黑莓
  1553. chrome: Chrome
  1554. edge: 微软 Edge
  1555. electron: Electron
  1556. firefox: Firefox
  1557. generic: 未知浏览器
  1558. huawei_browser: 华为浏览器
  1559. ie: IE 浏览器
  1560. micro_messenger: 微信
  1561. nokia: Nokia S40 Ovi 浏览器
  1562. opera: 欧朋浏览器
  1563. otter: Otter
  1564. phantom_js: PhantomJS
  1565. qq: QQ浏览器
  1566. safari: Safari
  1567. uc_browser: UC 浏览器
  1568. unknown_browser: 未知浏览器
  1569. weibo: 新浪微博
  1570. current_session: 当前会话
  1571. description: "%{platform} 上的 %{browser}"
  1572. explanation: 你的 Mastodon 账户目前已在这些浏览器上登录。
  1573. ip: IP 地址
  1574. platforms:
  1575. adobe_air: Adobe Air
  1576. android: Android
  1577. blackberry: 黑莓
  1578. chrome_os: ChromeOS
  1579. firefox_os: Firefox OS
  1580. ios: iOS
  1581. kai_os: KaiOS
  1582. linux: Linux
  1583. mac: Mac
  1584. unknown_platform: 未知平台
  1585. windows: Windows
  1586. windows_mobile: Windows Mobile
  1587. windows_phone: Windows Phone
  1588. revoke: 注销
  1589. revoke_success: 会话注销成功
  1590. title: 会话
  1591. view_authentication_history: 查看账户的认证历史
  1592. settings:
  1593. account: 账号
  1594. account_settings: 账户设置
  1595. aliases: 账号别名
  1596. appearance: 外观
  1597. authorized_apps: 已授权的应用
  1598. back: 返回 Mastodon
  1599. delete: 删除账户
  1600. development: 开发
  1601. edit_profile: 更改个人资料
  1602. export: 导出
  1603. featured_tags: 精选的话题标签
  1604. import: 导入
  1605. import_and_export: 导入和导出
  1606. migrate: 账户迁移
  1607. notifications: 通知
  1608. preferences: 首选项
  1609. profile: 个人资料
  1610. relationships: 关注管理
  1611. statuses_cleanup: 自动删除嘟文
  1612. strikes: 操作记录
  1613. two_factor_authentication: 双因素认证
  1614. webauthn_authentication: 安全密钥
  1615. statuses:
  1616. attached:
  1617. audio:
  1618. other: "%{count} 条音频"
  1619. description: 附加媒体:%{attached}
  1620. image:
  1621. other: "%{count} 张图片"
  1622. video:
  1623. other: "%{count} 段视频"
  1624. boosted_from_html: 转嘟自 %{acct_link}
  1625. content_warning: 内容警告:%{warning}
  1626. default_language: 与界面显示语言相同
  1627. disallowed_hashtags:
  1628. other: 包含了这些禁止的话题标签:%{tags}
  1629. edited_at_html: 编辑于 %{date}
  1630. errors:
  1631. in_reply_not_found: 你回复的嘟文似乎不存在
  1632. open_in_web: 在站内打开
  1633. over_character_limit: 超过了 %{max} 字的限制
  1634. pin_errors:
  1635. direct: 仅对被提及的用户可见的帖子不能被置顶
  1636. limit: 你所固定的嘟文数量已达到上限
  1637. ownership: 不能置顶别人的嘟文
  1638. reblog: 不能置顶转嘟
  1639. poll:
  1640. total_people:
  1641. other: "%{count} 人"
  1642. total_votes:
  1643. other: "%{count} 票"
  1644. vote: 投票
  1645. show_more: 显示更多
  1646. show_newer: 显示更新内容
  1647. show_older: 显示更早内容
  1648. show_thread: 显示全部对话
  1649. title: "%{name}:“%{quote}”"
  1650. visibilities:
  1651. direct: 私信
  1652. private: 仅关注者
  1653. private_long: 只有关注你的用户能看到
  1654. public: 公开
  1655. public_long: 所有人可见,并会出现在公共时间轴上
  1656. unlisted: 不公开
  1657. unlisted_long: 所有人可见,但不会出现在公共时间轴上
  1658. statuses_cleanup:
  1659. enabled: 自动删除旧嘟文
  1660. enabled_hint: 达到指定过期时间后自动删除您的嘟文,除非满足下列条件之一
  1661. exceptions: 例外
  1662. explanation: 删除嘟文是一个消耗系统资源的耗时操作,所以这个操作会在服务器空闲时完成。因此,您的嘟文可能会在达到过期阈值之后一段时间才会被删除。
  1663. ignore_favs: 取消喜欢
  1664. ignore_reblogs: 忽略转嘟
  1665. interaction_exceptions: 基于互动的例外
  1666. interaction_exceptions_explanation: 请注意,如果嘟文超出转嘟和喜欢的阈值之后,又降到阈值以下,则可能不会被删除。
  1667. keep_direct: 保留私信
  1668. keep_direct_hint: 不会删除你的任何私信
  1669. keep_media: 保留带媒体附件的嘟文
  1670. keep_media_hint: 不会删除任何包含媒体附件的嘟文
  1671. keep_pinned: 保留置顶嘟文
  1672. keep_pinned_hint: 不会删除你的任何置顶嘟文
  1673. keep_polls: 保留投票
  1674. keep_polls_hint: 不会删除你的任何投票
  1675. keep_self_bookmark: 保存被你加入书签的嘟文
  1676. keep_self_bookmark_hint: 如果你已将自己的嘟文添加书签,就不会删除这些嘟文
  1677. keep_self_fav: 保留你点赞的嘟文
  1678. keep_self_fav_hint: 如果你喜欢了自己的嘟文,则不会删除这些嘟文
  1679. min_age:
  1680. '1209600': 2周
  1681. '15778476': 6个月
  1682. '2629746': 1个月
  1683. '31556952': 1年
  1684. '5259492': 2个月
  1685. '604800': 一周
  1686. '63113904': 两年
  1687. '7889238': 3个月
  1688. min_age_label: 过期阈值
  1689. min_favs: 保留如下嘟文:点赞数超过
  1690. min_favs_hint: 点赞数超过该阈值的的嘟文都不会被删除。如果留空,则无论嘟文获得多少点赞,都将被删除。
  1691. min_reblogs: 保留如下嘟文:转嘟数超过
  1692. min_reblogs_hint: 转嘟数超过该阈值的的嘟文不会被删除。如果留空,则无论嘟文获得多少转嘟,都将被删除。
  1693. stream_entries:
  1694. sensitive_content: 敏感内容
  1695. strikes:
  1696. errors:
  1697. too_late: 已来不及对此次处罚提出申诉
  1698. tags:
  1699. does_not_match_previous_name: 和之前的名称不匹配
  1700. themes:
  1701. contrast: Mastodon(高对比度)
  1702. default: Mastodon(暗色主题)
  1703. mastodon-light: Mastodon(亮色主题)
  1704. time:
  1705. formats:
  1706. default: "%Y年%m月%d日 %H:%M"
  1707. month: "%Y年%m月"
  1708. time: "%H:%M"
  1709. with_time_zone: "%b %d, %Y, %H:%M %Z"
  1710. translation:
  1711. errors:
  1712. quota_exceeded: 服务器的翻译服务使用配额已超过限制。
  1713. too_many_requests: 最近向翻译服务发起的请求过多。
  1714. two_factor_authentication:
  1715. add: 添加
  1716. disable: 停用双因素认证
  1717. disabled_success: 已成功禁用双因素认证
  1718. edit: 编辑
  1719. enabled: 已启用双因素认证
  1720. enabled_success: 已成功启用双因素认证
  1721. generate_recovery_codes: 生成恢复代码
  1722. lost_recovery_codes: 如果你的手机不慎丢失,你可以使用恢复代码来重新获得对账户的访问权。如果你遗失了恢复代码,可以在此处重新生成。之前使用的恢复代码将会失效。
  1723. methods: 双因素认证方式
  1724. otp: 身份验证应用
  1725. recovery_codes: 备份恢复代码
  1726. recovery_codes_regenerated: 恢复代码重新生成成功
  1727. recovery_instructions_html: 如果你的手机无法使用,你可以使用下列任意一个恢复代码来重新获得对账户的访问权。<strong>请妥善保管好你的恢复代码</strong>(例如,你可以将它们打印出来,然后和其他重要的文件放在一起)。
  1728. webauthn: 安全密钥
  1729. user_mailer:
  1730. appeal_approved:
  1731. action: 前往你的账号
  1732. explanation: 你于 %{appeal_date} 对 %{strike_date} 在你账号上做出的处罚提出的申诉已被批准,你的账号已回到正常状态。
  1733. subject: 你于 %{date} 提出的申诉已被批准
  1734. title: 申诉已批准
  1735. appeal_rejected:
  1736. explanation: 你于 %{appeal_date} 对 %{strike_date} 在你账号上做出的处罚提出的申诉已被驳回。
  1737. subject: 你于 %{date} 提出的申诉已被驳回
  1738. title: 申诉已驳回
  1739. backup_ready:
  1740. explanation: 你请求了一份 Mastodon 账户的完整备份。现在你可以下载了!
  1741. subject: 你的存档已经准备完毕
  1742. title: 存档导出
  1743. suspicious_sign_in:
  1744. change_password: 更改密码
  1745. details: 以下是该次登录的详细信息:
  1746. explanation: 我们检测到有新 IP 地址登录了您的账号。
  1747. further_actions_html: 如果不是您本人操作,我们建议您立即 %{action} 并启用双因素认证,以确保账号安全。
  1748. subject: 已有新 IP 地址访问了您的账号
  1749. title: 新登录
  1750. warning:
  1751. appeal: 提交申诉
  1752. appeal_description: 如果你认为此结果有误,可以向 %{instance} 的工作人员提交申诉。
  1753. categories:
  1754. spam: 垃圾信息
  1755. violation: 内容违反了以下社区准则
  1756. explanation:
  1757. delete_statuses: 你的一些嘟文被发现违反了一条或多条社区准则,并已被 %{instance} 的监察员删除。
  1758. disable: 你不能再使用你的账户,但你的个人资料和其他数据保持不变。你可以请求数据备份,更改账户设置或删除账户。
  1759. mark_statuses_as_sensitive: 你的一些嘟文已经被 %{instance} 检察员标记为敏感内容。这意味着别人需要在嘟文中点击媒体,才能显示媒体预览。你可以在今后发布嘟文时自行将媒体标记为敏感内容。
  1760. sensitive: 即刻起,你上传的所有媒体文件都将被标记为敏感内容并隐藏,在点击警告后才能查看。
  1761. silence: 你可以继续使用你的账号,但只有已关注你的人才能在看到你在此服务器上的嘟文,并且你会被排除在各类公共列表之外。其他用户仍可以手动关注你。
  1762. suspend: 你不能再使用你的账户,并且你的个人资料和其他数据都将无法访问。在大约30天内,你仍可以登录并请求数据备份,之后相关数据将被完全删除。我们会保留一些基础数据以避免封禁失效。
  1763. reason: 理由:
  1764. statuses: 被引用的嘟文:
  1765. subject:
  1766. delete_statuses: 你在 %{acct} 的嘟文已被删除
  1767. disable: 你的账户 %{acct} 已被冻结
  1768. mark_statuses_as_sensitive: 你在 %{acct} 的嘟文已被标记为敏感内容
  1769. none: 对 %{acct} 的警告
  1770. sensitive: 你在 %{acct} 的嘟文今后将被标记为敏感内容
  1771. silence: 你的账户 %{acct} 已被隐藏
  1772. suspend: 你的账户 %{acct} 已被封禁
  1773. title:
  1774. delete_statuses: 嘟文已删除
  1775. disable: 账号已冻结
  1776. mark_statuses_as_sensitive: 嘟文已被标记为敏感内容
  1777. none: 警示
  1778. sensitive: 账户已被标记为敏感内容
  1779. silence: 账户被隐藏
  1780. suspend: 账号被封禁
  1781. welcome:
  1782. edit_profile_action: 设置个人资料
  1783. edit_profile_step: 您可以通过上传个人资料图片、更改您的昵称等来自定义您的个人资料。 您可以选择在新关注者关注您之前对其进行审核。
  1784. explanation: 下面是几个小贴士,希望它们能帮到你
  1785. final_action: 开始嘟嘟
  1786. final_step: '开始发布嘟文! 即使没有关注者,您的公开嘟文也可能会被其他人看到,例如在本地时间轴或话题标签中。 您可能想在 #introductions 话题标签上介绍自己。'
  1787. full_handle: 你的完整用户地址
  1788. full_handle_hint: 你需要把这个告诉你的朋友们,这样他们就能从另一台服务器向你发送信息或者关注你。
  1789. subject: 欢迎来到 Mastodon
  1790. title: "%{name},欢迎你的加入!"
  1791. users:
  1792. follow_limit_reached: 你不能关注超过 %{limit} 个人
  1793. go_to_sso_account_settings: 转到您的身份提供商进行账户设置
  1794. invalid_otp_token: 输入的双因素认证代码无效
  1795. otp_lost_help_html: 如果你不慎丢失了所有的代码,请联系 %{email} 寻求帮助
  1796. seamless_external_login: 因为你是通过外部服务登录的,所以密码和电子邮件地址设置都不可用。
  1797. signed_in_as: 当前登录的账户:
  1798. verification:
  1799. extra_instructions_html: <strong>提示:</strong>您网站上的链接可能是不可见的。重要的部分是 <code>rel="me"</code>,它可以防止在具有用户生成内容的网站上冒充身份。您甚至可以在页面头部使用 <code>link</code> 标签而不是 <code>a</code>,但 HTML 必须能够在不执行 JavaScript 的情况下访问。
  1800. here_is_how: 具体方法如下:
  1801. hint_html: "<strong>在Mastodon上验证您的身份对每个人都是必要的。</strong>基于开放网络标准,现在和将来永远免费。您只需要一个被人们认可的个人网站。当您在个人资料中链接到这个网站时,我们会检查该网站是否回链到您的资料,并显示一个指示符号。"
  1802. instructions_html: 将下面的代码复制并粘贴到您网站的HTML中。然后在“编辑个人资料”选项卡中的附加字段之一添加您网站的地址,并保存更改。
  1803. verification: 验证
  1804. verified_links: 您已验证的链接
  1805. webauthn_credentials:
  1806. add: 添加新的安全密钥
  1807. create:
  1808. error: 添加你的安全密钥时出错。请重试。
  1809. success: 你的安全密钥已成功添加。
  1810. delete: 删除
  1811. delete_confirmation: 你确认要删除这个安全密钥吗?
  1812. description_html: 如果你启用 <strong>安全密钥身份验证</strong>,登录将需要你使用你的安全密钥。
  1813. destroy:
  1814. error: 删除你的安全密钥时出错。请重试。
  1815. success: 你的安全密钥已成功删除。
  1816. invalid_credential: 无效的安全密钥
  1817. nickname_hint: 输入你的新安全密钥的昵称
  1818. not_enabled: 你尚未启用WebAuthn
  1819. not_supported: 此浏览器不支持安全密钥
  1820. otp_required: 要使用安全密钥,请先启用双因素认证。
  1821. registered_on: 注册于 %{date}