en.yml 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. ---
  2. en:
  3. about:
  4. about_mastodon_html: 'The social network of the future: No ads, no corporate surveillance, ethical design, and decentralization! Own your data with Mastodon!'
  5. contact_missing: Not set
  6. contact_unavailable: N/A
  7. hosted_on: Mastodon hosted on %{domain}
  8. title: About
  9. accounts:
  10. follow: Follow
  11. followers:
  12. one: Follower
  13. other: Followers
  14. following: Following
  15. instance_actor_flash: This account is a virtual actor used to represent the server itself and not any individual user. It is used for federation purposes and should not be suspended.
  16. last_active: last active
  17. link_verified_on: Ownership of this link was checked on %{date}
  18. nothing_here: There is nothing here!
  19. pin_errors:
  20. following: You must be already following the person you want to endorse
  21. posts:
  22. one: Post
  23. other: Posts
  24. posts_tab_heading: Posts
  25. admin:
  26. account_actions:
  27. action: Perform action
  28. title: Perform moderation action on %{acct}
  29. account_moderation_notes:
  30. create: Leave note
  31. created_msg: Moderation note successfully created!
  32. destroyed_msg: Moderation note successfully destroyed!
  33. accounts:
  34. add_email_domain_block: Block e-mail domain
  35. approve: Approve
  36. approved_msg: Successfully approved %{username}'s sign-up application
  37. are_you_sure: Are you sure?
  38. avatar: Avatar
  39. by_domain: Domain
  40. change_email:
  41. changed_msg: Email successfully changed!
  42. current_email: Current email
  43. label: Change email
  44. new_email: New email
  45. submit: Change email
  46. title: Change email for %{username}
  47. change_role:
  48. changed_msg: Role successfully changed!
  49. label: Change role
  50. no_role: No role
  51. title: Change role for %{username}
  52. confirm: Confirm
  53. confirmed: Confirmed
  54. confirming: Confirming
  55. custom: Custom
  56. delete: Delete data
  57. deleted: Deleted
  58. demote: Demote
  59. destroyed_msg: "%{username}'s data is now queued to be deleted imminently"
  60. disable: Freeze
  61. disable_sign_in_token_auth: Disable e-mail token authentication
  62. disable_two_factor_authentication: Disable 2FA
  63. disabled: Frozen
  64. display_name: Display name
  65. domain: Domain
  66. edit: Edit
  67. email: Email
  68. email_status: Email status
  69. enable: Unfreeze
  70. enable_sign_in_token_auth: Enable e-mail token authentication
  71. enabled: Enabled
  72. enabled_msg: Successfully unfroze %{username}'s account
  73. followers: Followers
  74. follows: Follows
  75. header: Header
  76. inbox_url: Inbox URL
  77. invite_request_text: Reasons for joining
  78. invited_by: Invited by
  79. ip: IP
  80. joined: Joined
  81. location:
  82. all: All
  83. local: Local
  84. remote: Remote
  85. title: Location
  86. login_status: Login status
  87. media_attachments: Media attachments
  88. memorialize: Turn into memoriam
  89. memorialized: Memorialized
  90. memorialized_msg: Successfully turned %{username} into a memorial account
  91. moderation:
  92. active: Active
  93. all: All
  94. disabled: Disabled
  95. pending: Pending
  96. silenced: Limited
  97. suspended: Suspended
  98. title: Moderation
  99. moderation_notes: Moderation notes
  100. most_recent_activity: Most recent activity
  101. most_recent_ip: Most recent IP
  102. no_account_selected: No accounts were changed as none were selected
  103. no_limits_imposed: No limits imposed
  104. no_role_assigned: No role assigned
  105. not_subscribed: Not subscribed
  106. pending: Pending review
  107. perform_full_suspension: Suspend
  108. previous_strikes: Previous strikes
  109. previous_strikes_description_html:
  110. one: This account has <strong>one</strong> strike.
  111. other: This account has <strong>%{count}</strong> strikes.
  112. promote: Promote
  113. protocol: Protocol
  114. public: Public
  115. push_subscription_expires: PuSH subscription expires
  116. redownload: Refresh profile
  117. redownloaded_msg: Successfully refreshed %{username}'s profile from origin
  118. reject: Reject
  119. rejected_msg: Successfully rejected %{username}'s sign-up application
  120. remote_suspension_irreversible: The data of this account has been irreversibly deleted.
  121. remote_suspension_reversible_hint_html: The account has been suspended on their server, and the data will be fully removed on %{date}. Until then, the remote server can restore this account without any ill effects. If you wish to remove all of the account's data immediately, you can do so below.
  122. remove_avatar: Remove avatar
  123. remove_header: Remove header
  124. removed_avatar_msg: Successfully removed %{username}'s avatar image
  125. removed_header_msg: Successfully removed %{username}'s header image
  126. resend_confirmation:
  127. already_confirmed: This user is already confirmed
  128. send: Resend confirmation link
  129. success: Confirmation link successfully sent!
  130. reset: Reset
  131. reset_password: Reset password
  132. resubscribe: Resubscribe
  133. role: Role
  134. search: Search
  135. search_same_email_domain: Other users with the same e-mail domain
  136. search_same_ip: Other users with the same IP
  137. security: Security
  138. security_measures:
  139. only_password: Only password
  140. password_and_2fa: Password and 2FA
  141. sensitive: Force-sensitive
  142. sensitized: Marked as sensitive
  143. shared_inbox_url: Shared inbox URL
  144. show:
  145. created_reports: Made reports
  146. targeted_reports: Reported by others
  147. silence: Limit
  148. silenced: Limited
  149. statuses: Posts
  150. strikes: Previous strikes
  151. subscribe: Subscribe
  152. suspend: Suspend
  153. suspended: Suspended
  154. suspension_irreversible: The data of this account has been irreversibly deleted. You can unsuspend the account to make it usable but it will not recover any data it previously had.
  155. suspension_reversible_hint_html: The account has been suspended, and the data will be fully removed on %{date}. Until then, the account can be restored without any ill effects. If you wish to remove all of the account's data immediately, you can do so below.
  156. title: Accounts
  157. unblock_email: Unblock email address
  158. unblocked_email_msg: Successfully unblocked %{username}'s email address
  159. unconfirmed_email: Unconfirmed email
  160. undo_sensitized: Undo force-sensitive
  161. undo_silenced: Undo limit
  162. undo_suspension: Undo suspension
  163. unsilenced_msg: Successfully undid limit of %{username}'s account
  164. unsubscribe: Unsubscribe
  165. unsuspended_msg: Successfully unsuspended %{username}'s account
  166. username: Username
  167. view_domain: View summary for domain
  168. warn: Warn
  169. web: Web
  170. whitelisted: Allowed for federation
  171. action_logs:
  172. action_types:
  173. approve_appeal: Approve Appeal
  174. approve_user: Approve User
  175. assigned_to_self_report: Assign Report
  176. change_email_user: Change E-mail for User
  177. change_role_user: Change Role of User
  178. confirm_user: Confirm User
  179. create_account_warning: Create Warning
  180. create_announcement: Create Announcement
  181. create_canonical_email_block: Create E-mail Block
  182. create_custom_emoji: Create Custom Emoji
  183. create_domain_allow: Create Domain Allow
  184. create_domain_block: Create Domain Block
  185. create_email_domain_block: Create E-mail Domain Block
  186. create_ip_block: Create IP rule
  187. create_unavailable_domain: Create Unavailable Domain
  188. create_user_role: Create Role
  189. demote_user: Demote User
  190. destroy_announcement: Delete Announcement
  191. destroy_canonical_email_block: Delete E-mail Block
  192. destroy_custom_emoji: Delete Custom Emoji
  193. destroy_domain_allow: Delete Domain Allow
  194. destroy_domain_block: Delete Domain Block
  195. destroy_email_domain_block: Delete E-mail Domain Block
  196. destroy_instance: Purge Domain
  197. destroy_ip_block: Delete IP rule
  198. destroy_status: Delete Post
  199. destroy_unavailable_domain: Delete Unavailable Domain
  200. destroy_user_role: Destroy Role
  201. disable_2fa_user: Disable 2FA
  202. disable_custom_emoji: Disable Custom Emoji
  203. disable_sign_in_token_auth_user: Disable E-mail Token Authentication for User
  204. disable_user: Disable User
  205. enable_custom_emoji: Enable Custom Emoji
  206. enable_sign_in_token_auth_user: Enable E-mail Token Authentication for User
  207. enable_user: Enable User
  208. memorialize_account: Memorialize Account
  209. promote_user: Promote User
  210. reject_appeal: Reject Appeal
  211. reject_user: Reject User
  212. remove_avatar_user: Remove Avatar
  213. reopen_report: Reopen Report
  214. resend_user: Resend Confirmation Mail
  215. reset_password_user: Reset Password
  216. resolve_report: Resolve Report
  217. sensitive_account: Force-Sensitive Account
  218. silence_account: Limit Account
  219. suspend_account: Suspend Account
  220. unassigned_report: Unassign Report
  221. unblock_email_account: Unblock email address
  222. unsensitive_account: Undo Force-Sensitive Account
  223. unsilence_account: Undo Limit Account
  224. unsuspend_account: Unsuspend Account
  225. update_announcement: Update Announcement
  226. update_custom_emoji: Update Custom Emoji
  227. update_domain_block: Update Domain Block
  228. update_ip_block: Update IP rule
  229. update_status: Update Post
  230. update_user_role: Update Role
  231. actions:
  232. approve_appeal_html: "%{name} approved moderation decision appeal from %{target}"
  233. approve_user_html: "%{name} approved sign-up from %{target}"
  234. assigned_to_self_report_html: "%{name} assigned report %{target} to themselves"
  235. change_email_user_html: "%{name} changed the e-mail address of user %{target}"
  236. change_role_user_html: "%{name} changed role of %{target}"
  237. confirm_user_html: "%{name} confirmed e-mail address of user %{target}"
  238. create_account_warning_html: "%{name} sent a warning to %{target}"
  239. create_announcement_html: "%{name} created new announcement %{target}"
  240. create_canonical_email_block_html: "%{name} blocked e-mail with the hash %{target}"
  241. create_custom_emoji_html: "%{name} uploaded new emoji %{target}"
  242. create_domain_allow_html: "%{name} allowed federation with domain %{target}"
  243. create_domain_block_html: "%{name} blocked domain %{target}"
  244. create_email_domain_block_html: "%{name} blocked e-mail domain %{target}"
  245. create_ip_block_html: "%{name} created rule for IP %{target}"
  246. create_unavailable_domain_html: "%{name} stopped delivery to domain %{target}"
  247. create_user_role_html: "%{name} created %{target} role"
  248. demote_user_html: "%{name} demoted user %{target}"
  249. destroy_announcement_html: "%{name} deleted announcement %{target}"
  250. destroy_canonical_email_block_html: "%{name} unblocked e-mail with the hash %{target}"
  251. destroy_custom_emoji_html: "%{name} deleted emoji %{target}"
  252. destroy_domain_allow_html: "%{name} disallowed federation with domain %{target}"
  253. destroy_domain_block_html: "%{name} unblocked domain %{target}"
  254. destroy_email_domain_block_html: "%{name} unblocked e-mail domain %{target}"
  255. destroy_instance_html: "%{name} purged domain %{target}"
  256. destroy_ip_block_html: "%{name} deleted rule for IP %{target}"
  257. destroy_status_html: "%{name} removed post by %{target}"
  258. destroy_unavailable_domain_html: "%{name} resumed delivery to domain %{target}"
  259. destroy_user_role_html: "%{name} deleted %{target} role"
  260. disable_2fa_user_html: "%{name} disabled two factor requirement for user %{target}"
  261. disable_custom_emoji_html: "%{name} disabled emoji %{target}"
  262. disable_sign_in_token_auth_user_html: "%{name} disabled e-mail token authentication for %{target}"
  263. disable_user_html: "%{name} disabled login for user %{target}"
  264. enable_custom_emoji_html: "%{name} enabled emoji %{target}"
  265. enable_sign_in_token_auth_user_html: "%{name} enabled e-mail token authentication for %{target}"
  266. enable_user_html: "%{name} enabled login for user %{target}"
  267. memorialize_account_html: "%{name} turned %{target}'s account into a memoriam page"
  268. promote_user_html: "%{name} promoted user %{target}"
  269. reject_appeal_html: "%{name} rejected moderation decision appeal from %{target}"
  270. reject_user_html: "%{name} rejected sign-up from %{target}"
  271. remove_avatar_user_html: "%{name} removed %{target}'s avatar"
  272. reopen_report_html: "%{name} reopened report %{target}"
  273. resend_user_html: "%{name} resent confirmation e-mail for %{target}"
  274. reset_password_user_html: "%{name} reset password of user %{target}"
  275. resolve_report_html: "%{name} resolved report %{target}"
  276. sensitive_account_html: "%{name} marked %{target}'s media as sensitive"
  277. silence_account_html: "%{name} limited %{target}'s account"
  278. suspend_account_html: "%{name} suspended %{target}'s account"
  279. unassigned_report_html: "%{name} unassigned report %{target}"
  280. unblock_email_account_html: "%{name} unblocked %{target}'s email address"
  281. unsensitive_account_html: "%{name} unmarked %{target}'s media as sensitive"
  282. unsilence_account_html: "%{name} undid limit of %{target}'s account"
  283. unsuspend_account_html: "%{name} unsuspended %{target}'s account"
  284. update_announcement_html: "%{name} updated announcement %{target}"
  285. update_custom_emoji_html: "%{name} updated emoji %{target}"
  286. update_domain_block_html: "%{name} updated domain block for %{target}"
  287. update_ip_block_html: "%{name} changed rule for IP %{target}"
  288. update_status_html: "%{name} updated post by %{target}"
  289. update_user_role_html: "%{name} changed %{target} role"
  290. deleted_account: deleted account
  291. empty: No logs found.
  292. filter_by_action: Filter by action
  293. filter_by_user: Filter by user
  294. title: Audit log
  295. announcements:
  296. destroyed_msg: Announcement successfully deleted!
  297. edit:
  298. title: Edit announcement
  299. empty: No announcements found.
  300. live: Live
  301. new:
  302. create: Create announcement
  303. title: New announcement
  304. publish: Publish
  305. published_msg: Announcement successfully published!
  306. scheduled_for: Scheduled for %{time}
  307. scheduled_msg: Announcement scheduled for publication!
  308. title: Announcements
  309. unpublish: Unpublish
  310. unpublished_msg: Announcement successfully unpublished!
  311. updated_msg: Announcement successfully updated!
  312. critical_update_pending: Critical update pending
  313. custom_emojis:
  314. assign_category: Assign category
  315. by_domain: Domain
  316. copied_msg: Successfully created local copy of the emoji
  317. copy: Copy
  318. copy_failed_msg: Could not make a local copy of that emoji
  319. create_new_category: Create new category
  320. created_msg: Emoji successfully created!
  321. delete: Delete
  322. destroyed_msg: Emojo successfully destroyed!
  323. disable: Disable
  324. disabled: Disabled
  325. disabled_msg: Successfully disabled that emoji
  326. emoji: Emoji
  327. enable: Enable
  328. enabled: Enabled
  329. enabled_msg: Successfully enabled that emoji
  330. image_hint: PNG or GIF up to %{size}
  331. list: List
  332. listed: Listed
  333. new:
  334. title: Add new custom emoji
  335. no_emoji_selected: No emojis were changed as none were selected
  336. not_permitted: You are not permitted to perform this action
  337. overwrite: Overwrite
  338. shortcode: Shortcode
  339. shortcode_hint: At least 2 characters, only alphanumeric characters and underscores
  340. title: Custom emojis
  341. uncategorized: Uncategorized
  342. unlist: Unlist
  343. unlisted: Unlisted
  344. update_failed_msg: Could not update that emoji
  345. updated_msg: Emoji successfully updated!
  346. upload: Upload
  347. dashboard:
  348. active_users: active users
  349. interactions: interactions
  350. media_storage: Media storage
  351. new_users: new users
  352. opened_reports: reports opened
  353. pending_appeals_html:
  354. one: "<strong>%{count}</strong> pending appeal"
  355. other: "<strong>%{count}</strong> pending appeals"
  356. pending_reports_html:
  357. one: "<strong>%{count}</strong> pending report"
  358. other: "<strong>%{count}</strong> pending reports"
  359. pending_tags_html:
  360. one: "<strong>%{count}</strong> pending hashtag"
  361. other: "<strong>%{count}</strong> pending hashtags"
  362. pending_users_html:
  363. one: "<strong>%{count}</strong> pending user"
  364. other: "<strong>%{count}</strong> pending users"
  365. resolved_reports: reports resolved
  366. software: Software
  367. sources: Sign-up sources
  368. space: Space usage
  369. title: Dashboard
  370. top_languages: Top active languages
  371. top_servers: Top active servers
  372. website: Website
  373. disputes:
  374. appeals:
  375. empty: No appeals found.
  376. title: Appeals
  377. domain_allows:
  378. add_new: Allow federation with domain
  379. created_msg: Domain has been successfully allowed for federation
  380. destroyed_msg: Domain has been disallowed from federation
  381. export: Export
  382. import: Import
  383. undo: Disallow federation with domain
  384. domain_blocks:
  385. add_new: Add new domain block
  386. confirm_suspension:
  387. cancel: Cancel
  388. confirm: Suspend
  389. permanent_action: Undoing the suspension will not restore any data or relationship.
  390. preamble_html: You are about to suspend <strong>%{domain}</strong> and its subdomains.
  391. remove_all_data: This will remove all content, media, and profile data for this domain's accounts from your server.
  392. stop_communication: Your server will stop communicating with these servers.
  393. title: Confirm domain block for %{domain}
  394. undo_relationships: This will undo any follow relationship between accounts of these servers and yours.
  395. created_msg: Domain block is now being processed
  396. destroyed_msg: Domain block has been undone
  397. domain: Domain
  398. edit: Edit domain block
  399. existing_domain_block: You have already imposed stricter limits on %{name}.
  400. existing_domain_block_html: You have already imposed stricter limits on %{name}, you need to <a href="%{unblock_url}">unblock it</a> first.
  401. export: Export
  402. import: Import
  403. new:
  404. create: Create block
  405. hint: The domain block will not prevent creation of account entries in the database, but will retroactively and automatically apply specific moderation methods on those accounts.
  406. severity:
  407. desc_html: "<strong>Limit</strong> will make posts from accounts at this domain invisible to anyone who isn't following them. <strong>Suspend</strong> will remove all content, media, and profile data for this domain's accounts from your server. Use <strong>None</strong> if you just want to reject media files."
  408. noop: None
  409. silence: Limit
  410. suspend: Suspend
  411. title: New domain block
  412. no_domain_block_selected: No domain blocks were changed as none were selected
  413. not_permitted: You are not permitted to perform this action
  414. obfuscate: Obfuscate domain name
  415. obfuscate_hint: Partially obfuscate the domain name in the list if advertising the list of domain limitations is enabled
  416. private_comment: Private comment
  417. private_comment_hint: Comment about this domain limitation for internal use by the moderators.
  418. public_comment: Public comment
  419. public_comment_hint: Comment about this domain limitation for the general public, if advertising the list of domain limitations is enabled.
  420. reject_media: Reject media files
  421. reject_media_hint: Removes locally stored media files and refuses to download any in the future. Irrelevant for suspensions
  422. reject_reports: Reject reports
  423. reject_reports_hint: Ignore all reports coming from this domain. Irrelevant for suspensions
  424. undo: Undo domain block
  425. view: View domain block
  426. email_domain_blocks:
  427. add_new: Add new
  428. attempts_over_week:
  429. one: "%{count} attempt over the last week"
  430. other: "%{count} sign-up attempts over the last week"
  431. created_msg: Successfully blocked e-mail domain
  432. delete: Delete
  433. dns:
  434. types:
  435. mx: MX record
  436. domain: Domain
  437. new:
  438. create: Add domain
  439. resolve: Resolve domain
  440. title: Block new e-mail domain
  441. no_email_domain_block_selected: No e-mail domain blocks were changed as none were selected
  442. not_permitted: Not permitted
  443. resolved_dns_records_hint_html: The domain name resolves to the following MX domains, which are ultimately responsible for accepting e-mail. Blocking an MX domain will block sign-ups from any e-mail address which uses the same MX domain, even if the visible domain name is different. <strong>Be careful not to block major e-mail providers.</strong>
  444. resolved_through_html: Resolved through %{domain}
  445. title: Blocked e-mail domains
  446. export_domain_allows:
  447. new:
  448. title: Import domain allows
  449. no_file: No file selected
  450. export_domain_blocks:
  451. import:
  452. description_html: You are about to import a list of domain blocks. Please review this list very carefully, especially if you have not authored this list yourself.
  453. existing_relationships_warning: Existing follow relationships
  454. private_comment_description_html: 'To help you track where imported blocks come from, imported blocks will be created with the following private comment: <q>%{comment}</q>'
  455. private_comment_template: Imported from %{source} on %{date}
  456. title: Import domain blocks
  457. invalid_domain_block: 'One or more domain blocks were skipped because of the following error(s): %{error}'
  458. new:
  459. title: Import domain blocks
  460. no_file: No file selected
  461. follow_recommendations:
  462. description_html: "<strong>Follow recommendations help new users quickly find interesting content</strong>. When a user has not interacted with others enough to form personalized follow recommendations, these accounts are recommended instead. They are re-calculated on a daily basis from a mix of accounts with the highest recent engagements and highest local follower counts for a given language."
  463. language: For language
  464. status: Status
  465. suppress: Suppress follow recommendation
  466. suppressed: Suppressed
  467. title: Follow recommendations
  468. unsuppress: Restore follow recommendation
  469. instances:
  470. availability:
  471. description_html:
  472. one: If delivering to the domain fails <strong>%{count} day</strong> without succeeding, no further delivery attempts will be made unless a delivery <em>from</em> the domain is received.
  473. other: If delivering to the domain fails on <strong>%{count} different days</strong> without succeeding, no further delivery attempts will be made unless a delivery <em>from</em> the domain is received.
  474. failure_threshold_reached: Failure threshold reached on %{date}.
  475. failures_recorded:
  476. one: Failed attempt on %{count} day.
  477. other: Failed attempts on %{count} different days.
  478. no_failures_recorded: No failures on record.
  479. title: Availability
  480. warning: The last attempt to connect to this server has been unsuccessful
  481. back_to_all: All
  482. back_to_limited: Limited
  483. back_to_warning: Warning
  484. by_domain: Domain
  485. confirm_purge: Are you sure you want to permanently delete data from this domain?
  486. content_policies:
  487. comment: Internal note
  488. description_html: You can define content policies that will be applied to all accounts from this domain and any of its subdomains.
  489. limited_federation_mode_description_html: You can chose whether to allow federation with this domain.
  490. policies:
  491. reject_media: Reject media
  492. reject_reports: Reject reports
  493. silence: Limit
  494. suspend: Suspend
  495. policy: Policy
  496. reason: Public reason
  497. title: Content policies
  498. dashboard:
  499. instance_accounts_dimension: Most followed accounts
  500. instance_accounts_measure: stored accounts
  501. instance_followers_measure: our followers there
  502. instance_follows_measure: their followers here
  503. instance_languages_dimension: Top languages
  504. instance_media_attachments_measure: stored media attachments
  505. instance_reports_measure: reports about them
  506. instance_statuses_measure: stored posts
  507. delivery:
  508. all: All
  509. clear: Clear delivery errors
  510. failing: Failing
  511. restart: Restart delivery
  512. stop: Stop delivery
  513. unavailable: Unavailable
  514. delivery_available: Delivery is available
  515. delivery_error_days: Delivery error days
  516. delivery_error_hint: If delivery is not possible for %{count} days, it will be automatically marked as undeliverable.
  517. destroyed_msg: Data from %{domain} is now queued for imminent deletion.
  518. empty: No domains found.
  519. known_accounts:
  520. one: "%{count} known account"
  521. other: "%{count} known accounts"
  522. moderation:
  523. all: All
  524. limited: Limited
  525. title: Moderation
  526. private_comment: Private comment
  527. public_comment: Public comment
  528. purge: Purge
  529. purge_description_html: If you believe this domain is offline for good, you can delete all account records and associated data from this domain from your storage. This may take a while.
  530. title: Federation
  531. total_blocked_by_us: Blocked by us
  532. total_followed_by_them: Followed by them
  533. total_followed_by_us: Followed by us
  534. total_reported: Reports about them
  535. total_storage: Media attachments
  536. totals_time_period_hint_html: The totals displayed below include data for all time.
  537. invites:
  538. deactivate_all: Deactivate all
  539. filter:
  540. all: All
  541. available: Available
  542. expired: Expired
  543. title: Filter
  544. title: Invites
  545. ip_blocks:
  546. add_new: Create rule
  547. created_msg: Successfully added new IP rule
  548. delete: Delete
  549. expires_in:
  550. '1209600': 2 weeks
  551. '15778476': 6 months
  552. '2629746': 1 month
  553. '31556952': 1 year
  554. '86400': 1 day
  555. '94670856': 3 years
  556. new:
  557. title: Create new IP rule
  558. no_ip_block_selected: No IP rules were changed as none were selected
  559. title: IP rules
  560. relationships:
  561. title: "%{acct}'s relationships"
  562. relays:
  563. add_new: Add new relay
  564. delete: Delete
  565. description_html: A <strong>federation relay</strong> is an intermediary server that exchanges large volumes of public posts between servers that subscribe and publish to it. <strong>It can help small and medium servers discover content from the fediverse</strong>, which would otherwise require local users manually following other people on remote servers.
  566. disable: Disable
  567. disabled: Disabled
  568. enable: Enable
  569. enable_hint: Once enabled, your server will subscribe to all public posts from this relay, and will begin sending this server's public posts to it.
  570. enabled: Enabled
  571. inbox_url: Relay URL
  572. pending: Waiting for relay's approval
  573. save_and_enable: Save and enable
  574. setup: Setup a relay connection
  575. signatures_not_enabled: Relays may not work correctly while secure mode or limited federation mode is enabled
  576. status: Status
  577. title: Relays
  578. report_notes:
  579. created_msg: Report note successfully created!
  580. destroyed_msg: Report note successfully deleted!
  581. reports:
  582. account:
  583. notes:
  584. one: "%{count} note"
  585. other: "%{count} notes"
  586. action_log: Audit log
  587. action_taken_by: Action taken by
  588. actions:
  589. delete_description_html: The reported posts will be deleted and a strike will be recorded to help you escalate on future infractions by the same account.
  590. mark_as_sensitive_description_html: The media in the reported posts will be marked as sensitive and a strike will be recorded to help you escalate on future infractions by the same account.
  591. other_description_html: See more options for controlling the account's behaviour and customize communication to the reported account.
  592. resolve_description_html: No action will be taken against the reported account, no strike recorded, and the report will be closed.
  593. silence_description_html: The account will be visible only to those who already follow it or manually look it up, severely limiting its reach. Can always be reverted. Closes all reports against this account.
  594. suspend_description_html: The account and all its contents will be inaccessible and eventually deleted, and interacting with it will be impossible. Reversible within 30 days. Closes all reports against this account.
  595. actions_description_html: Decide which action to take to resolve this report. If you take a punitive action against the reported account, an e-mail notification will be sent to them, except when the <strong>Spam</strong> category is selected.
  596. actions_description_remote_html: Decide which action to take to resolve this report. This will only affect how <strong>your</strong> server communicates with this remote account and handle its content.
  597. add_to_report: Add more to report
  598. are_you_sure: Are you sure?
  599. assign_to_self: Assign to me
  600. assigned: Assigned moderator
  601. by_target_domain: Domain of reported account
  602. cancel: Cancel
  603. category: Category
  604. category_description_html: The reason this account and/or content was reported will be cited in communication with the reported account
  605. comment:
  606. none: None
  607. comment_description_html: 'To provide more information, %{name} wrote:'
  608. confirm: Confirm
  609. confirm_action: Confirm moderation action against @%{acct}
  610. created_at: Reported
  611. delete_and_resolve: Delete posts
  612. forwarded: Forwarded
  613. forwarded_to: Forwarded to %{domain}
  614. mark_as_resolved: Mark as resolved
  615. mark_as_sensitive: Mark as sensitive
  616. mark_as_unresolved: Mark as unresolved
  617. no_one_assigned: No one
  618. notes:
  619. create: Add note
  620. create_and_resolve: Resolve with note
  621. create_and_unresolve: Reopen with note
  622. delete: Delete
  623. placeholder: Describe what actions have been taken, or any other related updates...
  624. title: Notes
  625. notes_description_html: View and leave notes to other moderators and your future self
  626. processed_msg: 'Report #%{id} successfully processed'
  627. quick_actions_description_html: 'Take a quick action or scroll down to see reported content:'
  628. remote_user_placeholder: the remote user from %{instance}
  629. reopen: Reopen report
  630. report: 'Report #%{id}'
  631. reported_account: Reported account
  632. reported_by: Reported by
  633. resolved: Resolved
  634. resolved_msg: Report successfully resolved!
  635. skip_to_actions: Skip to actions
  636. status: Status
  637. statuses: Reported content
  638. statuses_description_html: Offending content will be cited in communication with the reported account
  639. summary:
  640. action_preambles:
  641. delete_html: 'You are about to <strong>remove</strong> some of <strong>@%{acct}</strong>''s posts. This will:'
  642. mark_as_sensitive_html: 'You are about to <strong>mark</strong> some of <strong>@%{acct}</strong>''s posts as <strong>sensitive</strong>. This will:'
  643. silence_html: 'You are about to <strong>limit</strong> <strong>@%{acct}</strong>''s account. This will:'
  644. suspend_html: 'You are about to <strong>suspend</strong> <strong>@%{acct}</strong>''s account. This will:'
  645. actions:
  646. delete_html: Remove the offending posts
  647. mark_as_sensitive_html: Mark the offending posts' media as sensitive
  648. silence_html: Severely limit <strong>@%{acct}</strong>'s reach by making their profile and contents only visible to people already following them or manually looking it profile up
  649. suspend_html: Suspend <strong>@%{acct}</strong>, making their profile and contents inaccessible and impossible to interact with
  650. close_report: 'Mark report #%{id} as resolved'
  651. close_reports_html: Mark <strong>all</strong> reports against <strong>@%{acct}</strong> as resolved
  652. delete_data_html: Delete <strong>@%{acct}</strong>'s profile and contents 30 days from now unless they get unsuspended in the meantime
  653. preview_preamble_html: "<strong>@%{acct}</strong> will receive a warning with the following contents:"
  654. record_strike_html: Record a strike against <strong>@%{acct}</strong> to help you escalate on future violations from this account
  655. send_email_html: Send <strong>@%{acct}</strong> a warning e-mail
  656. warning_placeholder: Optional additional reasoning for the moderation action.
  657. target_origin: Origin of reported account
  658. title: Reports
  659. unassign: Unassign
  660. unknown_action_msg: 'Unknown action: %{action}'
  661. unresolved: Unresolved
  662. updated_at: Updated
  663. view_profile: View profile
  664. roles:
  665. add_new: Add role
  666. assigned_users:
  667. one: "%{count} user"
  668. other: "%{count} users"
  669. categories:
  670. administration: Administration
  671. devops: DevOps
  672. invites: Invites
  673. moderation: Moderation
  674. special: Special
  675. delete: Delete
  676. description_html: With <strong>user roles</strong>, you can customize which functions and areas of Mastodon your users can access.
  677. edit: Edit '%{name}' role
  678. everyone: Default permissions
  679. everyone_full_description_html: This is the <strong>base role</strong> affecting <strong>all users</strong>, even those without an assigned role. All other roles inherit permissions from it.
  680. permissions_count:
  681. one: "%{count} permission"
  682. other: "%{count} permissions"
  683. privileges:
  684. administrator: Administrator
  685. administrator_description: Users with this permission will bypass every permission
  686. delete_user_data: Delete User Data
  687. delete_user_data_description: Allows users to delete other users' data without delay
  688. invite_users: Invite Users
  689. invite_users_description: Allows users to invite new people to the server
  690. manage_announcements: Manage Announcements
  691. manage_announcements_description: Allows users to manage announcements on the server
  692. manage_appeals: Manage Appeals
  693. manage_appeals_description: Allows users to review appeals against moderation actions
  694. manage_blocks: Manage Blocks
  695. manage_blocks_description: Allows users to block e-mail providers and IP addresses
  696. manage_custom_emojis: Manage Custom Emojis
  697. manage_custom_emojis_description: Allows users to manage custom emojis on the server
  698. manage_federation: Manage Federation
  699. manage_federation_description: Allows users to block or allow federation with other domains, and control deliverability
  700. manage_invites: Manage Invites
  701. manage_invites_description: Allows users to browse and deactivate invite links
  702. manage_reports: Manage Reports
  703. manage_reports_description: Allows users to review reports and perform moderation actions against them
  704. manage_roles: Manage Roles
  705. manage_roles_description: Allows users to manage and assign roles below theirs
  706. manage_rules: Manage Rules
  707. manage_rules_description: Allows users to change server rules
  708. manage_settings: Manage Settings
  709. manage_settings_description: Allows users to change site settings
  710. manage_taxonomies: Manage Taxonomies
  711. manage_taxonomies_description: Allows users to review trending content and update hashtag settings
  712. manage_user_access: Manage User Access
  713. manage_user_access_description: Allows users to disable other users' two-factor authentication, change their e-mail address, and reset their password
  714. manage_users: Manage Users
  715. manage_users_description: Allows users to view other users' details and perform moderation actions against them
  716. manage_webhooks: Manage Webhooks
  717. manage_webhooks_description: Allows users to set up webhooks for administrative events
  718. view_audit_log: View Audit Log
  719. view_audit_log_description: Allows users to see a history of administrative actions on the server
  720. view_dashboard: View Dashboard
  721. view_dashboard_description: Allows users to access the dashboard and various metrics
  722. view_devops: DevOps
  723. view_devops_description: Allows users to access Sidekiq and pgHero dashboards
  724. title: Roles
  725. rules:
  726. add_new: Add rule
  727. delete: Delete
  728. description_html: While most claim to have read and agree to the terms of service, usually people do not read through until after a problem arises. <strong>Make it easier to see your server's rules at a glance by providing them in a flat bullet point list.</strong> Try to keep individual rules short and simple, but try not to split them up into many separate items either.
  729. edit: Edit rule
  730. empty: No server rules have been defined yet.
  731. title: Server rules
  732. settings:
  733. about:
  734. manage_rules: Manage server rules
  735. preamble: Provide in-depth information about how the server is operated, moderated, funded.
  736. rules_hint: There is a dedicated area for rules that your users are expected to adhere to.
  737. title: About
  738. appearance:
  739. preamble: Customize Mastodon's web interface.
  740. title: Appearance
  741. branding:
  742. preamble: Your server's branding differentiates it from other servers in the network. This information may be displayed across a variety of environments, such as Mastodon's web interface, native applications, in link previews on other websites and within messaging apps, and so on. For this reason, it is best to keep this information clear, short and concise.
  743. title: Branding
  744. captcha_enabled:
  745. desc_html: This relies on external scripts from hCaptcha, which may be a security and privacy concern. In addition, <strong>this can make the registration process significantly less accessible to some (especially disabled) people</strong>. For these reasons, please consider alternative measures such as approval-based or invite-based registration.
  746. title: Require new users to solve a CAPTCHA to confirm their account
  747. content_retention:
  748. preamble: Control how user-generated content is stored in Mastodon.
  749. title: Content retention
  750. default_noindex:
  751. desc_html: Affects all users who have not changed this setting themselves
  752. title: Opt users out of search engine indexing by default
  753. discovery:
  754. follow_recommendations: Follow recommendations
  755. preamble: Surfacing interesting content is instrumental in onboarding new users who may not know anyone Mastodon. Control how various discovery features work on your server.
  756. profile_directory: Profile directory
  757. public_timelines: Public timelines
  758. publish_discovered_servers: Publish discovered servers
  759. publish_statistics: Publish statistics
  760. title: Discovery
  761. trends: Trends
  762. domain_blocks:
  763. all: To everyone
  764. disabled: To no one
  765. users: To logged-in local users
  766. registrations:
  767. moderation_recommandation: Please make sure you have an adequate and reactive moderation team before you open registrations to everyone!
  768. preamble: Control who can create an account on your server.
  769. title: Registrations
  770. registrations_mode:
  771. modes:
  772. approved: Approval required for sign up
  773. none: Nobody can sign up
  774. open: Anyone can sign up
  775. warning_hint: We recommend using “Approval required for sign up” unless you are confident your moderation team can handle spam and malicious registrations in a timely fashion.
  776. security:
  777. authorized_fetch: Require authentication from federated servers
  778. authorized_fetch_hint: Requiring authentication from federated servers enables stricter enforcement of both user-level and server-level blocks. However, this comes at the cost of a performance penalty, reduces the reach of your replies, and may introduce compatibility issues with some federated services. In addition, this will not prevent dedicated actors from fetching your public posts and accounts.
  779. authorized_fetch_overridden_hint: You are currently unable to change this setting because it is overridden by an environment variable.
  780. federation_authentication: Federation authentication enforcement
  781. title: Server settings
  782. site_uploads:
  783. delete: Delete uploaded file
  784. destroyed_msg: Site upload successfully deleted!
  785. software_updates:
  786. critical_update: Critical — please update quickly
  787. description: It is recommended to keep your Mastodon installation up to date to benefit from the latest fixes and features. Moreover, it is sometimes critical to update Mastodon in a timely manner to avoid security issues. For these reasons, Mastodon checks for updates every 30 minutes, and will notify you according to your e-mail notification preferences.
  788. documentation_link: Learn more
  789. release_notes: Release notes
  790. title: Available updates
  791. type: Type
  792. types:
  793. major: Major release
  794. minor: Minor release
  795. patch: Patch release — bugfixes and easy to apply changes
  796. version: Version
  797. statuses:
  798. account: Author
  799. application: Application
  800. back_to_account: Back to account page
  801. back_to_report: Back to report page
  802. batch:
  803. remove_from_report: Remove from report
  804. report: Report
  805. deleted: Deleted
  806. favourites: Favorites
  807. history: Version history
  808. in_reply_to: Replying to
  809. language: Language
  810. media:
  811. title: Media
  812. metadata: Metadata
  813. no_status_selected: No posts were changed as none were selected
  814. open: Open post
  815. original_status: Original post
  816. reblogs: Reblogs
  817. status_changed: Post changed
  818. title: Account posts
  819. trending: Trending
  820. visibility: Visibility
  821. with_media: With media
  822. strikes:
  823. actions:
  824. delete_statuses: "%{name} deleted %{target}'s posts"
  825. disable: "%{name} froze %{target}'s account"
  826. mark_statuses_as_sensitive: "%{name} marked %{target}'s posts as sensitive"
  827. none: "%{name} sent a warning to %{target}"
  828. sensitive: "%{name} marked %{target}'s account as sensitive"
  829. silence: "%{name} limited %{target}'s account"
  830. suspend: "%{name} suspended %{target}'s account"
  831. appeal_approved: Appealed
  832. appeal_pending: Appeal pending
  833. appeal_rejected: Appeal rejected
  834. system_checks:
  835. database_schema_check:
  836. message_html: There are pending database migrations. Please run them to ensure the application behaves as expected
  837. elasticsearch_health_red:
  838. message_html: Elasticsearch cluster is unhealthy (red status), search features are unavailable
  839. elasticsearch_health_yellow:
  840. message_html: Elasticsearch cluster is unhealthy (yellow status), you may want to investigate the reason
  841. elasticsearch_index_mismatch:
  842. message_html: Elasticsearch index mappings are outdated. Please run <code>tootctl search deploy --only=%{value}</code>
  843. elasticsearch_preset:
  844. action: See documentation
  845. message_html: Your Elasticsearch cluster has more than one node, but Mastodon is not configured to use them.
  846. elasticsearch_preset_single_node:
  847. action: See documentation
  848. message_html: Your Elasticsearch cluster has only one node, <code>ES_PRESET</code> should be set to <code>single_node_cluster</code>.
  849. elasticsearch_reset_chewy:
  850. message_html: Your Elasticsearch system index is outdated due to a setting change. Please run <code>tootctl search deploy --reset-chewy</code> to update it.
  851. elasticsearch_running_check:
  852. message_html: Could not connect to Elasticsearch. Please check that it is running, or disable full-text search
  853. elasticsearch_version_check:
  854. message_html: 'Incompatible Elasticsearch version: %{value}'
  855. version_comparison: Elasticsearch %{running_version} is running while %{required_version} is required
  856. rules_check:
  857. action: Manage server rules
  858. message_html: You haven't defined any server rules.
  859. sidekiq_process_check:
  860. message_html: No Sidekiq process running for the %{value} queue(s). Please review your Sidekiq configuration
  861. software_version_critical_check:
  862. action: See available updates
  863. message_html: A critical Mastodon update is available, please update as quickly as possible.
  864. software_version_patch_check:
  865. action: See available updates
  866. message_html: A bugfix Mastodon update is available.
  867. upload_check_privacy_error:
  868. action: Check here for more information
  869. message_html: "<strong>Your web server is misconfigured. The privacy of your users is at risk.</strong>"
  870. upload_check_privacy_error_object_storage:
  871. action: Check here for more information
  872. message_html: "<strong>Your object storage is misconfigured. The privacy of your users is at risk.</strong>"
  873. tags:
  874. review: Review status
  875. updated_msg: Hashtag settings updated successfully
  876. title: Administration
  877. trends:
  878. allow: Allow
  879. approved: Approved
  880. disallow: Disallow
  881. links:
  882. allow: Allow link
  883. allow_provider: Allow publisher
  884. description_html: These are links that are currently being shared a lot by accounts that your server sees posts from. It can help your users find out what's going on in the world. No links are displayed publicly until you approve the publisher. You can also allow or reject individual links.
  885. disallow: Disallow link
  886. disallow_provider: Disallow publisher
  887. no_link_selected: No links were changed as none were selected
  888. publishers:
  889. no_publisher_selected: No publishers were changed as none were selected
  890. shared_by_over_week:
  891. one: Shared by one person over the last week
  892. other: Shared by %{count} people over the last week
  893. title: Trending links
  894. usage_comparison: Shared %{today} times today, compared to %{yesterday} yesterday
  895. not_allowed_to_trend: Not allowed to trend
  896. only_allowed: Only allowed
  897. pending_review: Pending review
  898. preview_card_providers:
  899. allowed: Links from this publisher can trend
  900. description_html: These are domains from which links are often shared on your server. Links will not trend publicly unless the domain of the link is approved. Your approval (or rejection) extends to subdomains.
  901. rejected: Links from this publisher won't trend
  902. title: Publishers
  903. rejected: Rejected
  904. statuses:
  905. allow: Allow post
  906. allow_account: Allow author
  907. description_html: These are posts that your server knows about that are currently being shared and favorited a lot at the moment. It can help your new and returning users to find more people to follow. No posts are displayed publicly until you approve the author, and the author allows their account to be suggested to others. You can also allow or reject individual posts.
  908. disallow: Disallow post
  909. disallow_account: Disallow author
  910. no_status_selected: No trending posts were changed as none were selected
  911. not_discoverable: Author has not opted-in to being discoverable
  912. shared_by:
  913. one: Shared or favorited one time
  914. other: Shared and favorited %{friendly_count} times
  915. title: Trending posts
  916. tags:
  917. current_score: Current score %{score}
  918. dashboard:
  919. tag_accounts_measure: unique uses
  920. tag_languages_dimension: Top languages
  921. tag_servers_dimension: Top servers
  922. tag_servers_measure: different servers
  923. tag_uses_measure: total uses
  924. description_html: These are hashtags that are currently appearing in a lot of posts that your server sees. It can help your users find out what people are talking the most about at the moment. No hashtags are displayed publicly until you approve them.
  925. listable: Can be suggested
  926. no_tag_selected: No tags were changed as none were selected
  927. not_listable: Won't be suggested
  928. not_trendable: Won't appear under trends
  929. not_usable: Cannot be used
  930. peaked_on_and_decaying: Peaked on %{date}, now decaying
  931. title: Trending hashtags
  932. trendable: Can appear under trends
  933. trending_rank: 'Trending #%{rank}'
  934. usable: Can be used
  935. usage_comparison: Used %{today} times today, compared to %{yesterday} yesterday
  936. used_by_over_week:
  937. one: Used by one person over the last week
  938. other: Used by %{count} people over the last week
  939. title: Trends
  940. trending: Trending
  941. warning_presets:
  942. add_new: Add new
  943. delete: Delete
  944. edit_preset: Edit warning preset
  945. empty: You haven't defined any warning presets yet.
  946. title: Manage warning presets
  947. webhooks:
  948. add_new: Add endpoint
  949. delete: Delete
  950. description_html: A <strong>webhook</strong> enables Mastodon to push <strong>real-time notifications</strong> about chosen events to your own application, so your application can <strong>automatically trigger reactions</strong>.
  951. disable: Disable
  952. disabled: Disabled
  953. edit: Edit endpoint
  954. empty: You don't have any webhook endpoints configured yet.
  955. enable: Enable
  956. enabled: Active
  957. enabled_events:
  958. one: 1 enabled event
  959. other: "%{count} enabled events"
  960. events: Events
  961. new: New webhook
  962. rotate_secret: Rotate secret
  963. secret: Signing secret
  964. status: Status
  965. title: Webhooks
  966. webhook: Webhook
  967. admin_mailer:
  968. auto_close_registrations:
  969. body: Due to a lack of recent moderator activity, registrations on %{instance} have been automatically switched to requiring manual review, to prevent %{instance} from being used as a platform for potential bad actors. You can switch it back to open registrations at any time.
  970. subject: Registrations for %{instance} have been automatically switched to requiring approval
  971. new_appeal:
  972. actions:
  973. delete_statuses: to delete their posts
  974. disable: to freeze their account
  975. mark_statuses_as_sensitive: to mark their posts as sensitive
  976. none: a warning
  977. sensitive: to mark their account as sensitive
  978. silence: to limit their account
  979. suspend: to suspend their account
  980. body: "%{target} is appealing a moderation decision by %{action_taken_by} from %{date}, which was %{type}. They wrote:"
  981. next_steps: You can approve the appeal to undo the moderation decision, or ignore it.
  982. subject: "%{username} is appealing a moderation decision on %{instance}"
  983. new_critical_software_updates:
  984. body: New critical versions of Mastodon have been released, you may want to update as soon as possible!
  985. subject: Critical Mastodon updates are available for %{instance}!
  986. new_pending_account:
  987. body: The details of the new account are below. You can approve or reject this application.
  988. subject: New account up for review on %{instance} (%{username})
  989. new_report:
  990. body: "%{reporter} has reported %{target}"
  991. body_remote: Someone from %{domain} has reported %{target}
  992. subject: New report for %{instance} (#%{id})
  993. new_software_updates:
  994. body: New Mastodon versions have been released, you may want to update!
  995. subject: New Mastodon versions are available for %{instance}!
  996. new_trends:
  997. body: 'The following items need a review before they can be displayed publicly:'
  998. new_trending_links:
  999. title: Trending links
  1000. new_trending_statuses:
  1001. title: Trending posts
  1002. new_trending_tags:
  1003. no_approved_tags: There are currently no approved trending hashtags.
  1004. requirements: 'Any of these candidates could surpass the #%{rank} approved trending hashtag, which is currently #%{lowest_tag_name} with a score of %{lowest_tag_score}.'
  1005. title: Trending hashtags
  1006. subject: New trends up for review on %{instance}
  1007. aliases:
  1008. add_new: Create alias
  1009. created_msg: Successfully created a new alias. You can now initiate the move from the old account.
  1010. deleted_msg: Successfully removed the alias. Moving from that account to this one will no longer be possible.
  1011. empty: You have no aliases.
  1012. hint_html: If you want to move from another account to this one, here you can create an alias, which is required before you can proceed with moving followers from the old account to this one. This action by itself is <strong>harmless and reversible</strong>. <strong>The account migration is initiated from the old account</strong>.
  1013. remove: Unlink alias
  1014. appearance:
  1015. advanced_web_interface: Advanced web interface
  1016. advanced_web_interface_hint: 'If you want to make use of your entire screen width, the advanced web interface allows you to configure many different columns to see as much information at the same time as you want: Home, notifications, federated timeline, any number of lists and hashtags.'
  1017. animations_and_accessibility: Animations and accessibility
  1018. confirmation_dialogs: Confirmation dialogs
  1019. discovery: Discovery
  1020. localization:
  1021. body: Mastodon is translated by volunteers.
  1022. guide_link: https://crowdin.com/project/mastodon
  1023. guide_link_text: Everyone can contribute.
  1024. sensitive_content: Sensitive content
  1025. application_mailer:
  1026. notification_preferences: Change e-mail preferences
  1027. salutation: "%{name},"
  1028. settings: 'Change e-mail preferences: %{link}'
  1029. unsubscribe: Unsubscribe
  1030. view: 'View:'
  1031. view_profile: View profile
  1032. view_status: View post
  1033. applications:
  1034. created: Application successfully created
  1035. destroyed: Application successfully deleted
  1036. logout: Logout
  1037. regenerate_token: Regenerate access token
  1038. token_regenerated: Access token successfully regenerated
  1039. warning: Be very careful with this data. Never share it with anyone!
  1040. your_token: Your access token
  1041. auth:
  1042. apply_for_account: Request an account
  1043. captcha_confirmation:
  1044. help_html: If you have issues solving the CAPTCHA, you can get in touch with us through %{email} and we can assist you.
  1045. hint_html: Just one more thing! We need to confirm you're a human (this is so we can keep the spam out!). Solve the CAPTCHA below and click "Continue".
  1046. title: Security check
  1047. confirmations:
  1048. wrong_email_hint: If that e-mail address is not correct, you can change it in account settings.
  1049. delete_account: Delete account
  1050. delete_account_html: If you wish to delete your account, you can <a href="%{path}">proceed here</a>. You will be asked for confirmation.
  1051. description:
  1052. prefix_invited_by_user: "@%{name} invites you to join this server of Mastodon!"
  1053. prefix_sign_up: Sign up on Mastodon today!
  1054. suffix: With an account, you will be able to follow people, post updates and exchange messages with users from any Mastodon server and more!
  1055. didnt_get_confirmation: Didn't receive a confirmation link?
  1056. dont_have_your_security_key: Don't have your security key?
  1057. forgot_password: Forgot your password?
  1058. invalid_reset_password_token: Password reset token is invalid or expired. Please request a new one.
  1059. link_to_otp: Enter a two-factor code from your phone or a recovery code
  1060. link_to_webauth: Use your security key device
  1061. log_in_with: Log in with
  1062. login: Log in
  1063. logout: Logout
  1064. migrate_account: Move to a different account
  1065. migrate_account_html: If you wish to redirect this account to a different one, you can <a href="%{path}">configure it here</a>.
  1066. or_log_in_with: Or log in with
  1067. privacy_policy_agreement_html: I have read and agree to the <a href="%{privacy_policy_path}" target="_blank">privacy policy</a>
  1068. progress:
  1069. confirm: Confirm e-mail
  1070. details: Your details
  1071. review: Our review
  1072. rules: Accept rules
  1073. providers:
  1074. cas: CAS
  1075. saml: SAML
  1076. register: Sign up
  1077. registration_closed: "%{instance} is not accepting new members"
  1078. resend_confirmation: Resend confirmation link
  1079. reset_password: Reset password
  1080. rules:
  1081. accept: Accept
  1082. back: Back
  1083. invited_by: 'You can join %{domain} thanks to the invitation you have received from:'
  1084. preamble: These are set and enforced by the %{domain} moderators.
  1085. preamble_invited: Before you proceed, please consider the ground rules set by the moderators of %{domain}.
  1086. title: Some ground rules.
  1087. title_invited: You've been invited.
  1088. security: Security
  1089. set_new_password: Set new password
  1090. setup:
  1091. email_below_hint_html: Check your spam folder, or request another one. You can correct your e-mail address if it's wrong.
  1092. email_settings_hint_html: Click the link we sent you to verify %{email}. We'll wait right here.
  1093. link_not_received: Didn't get a link?
  1094. new_confirmation_instructions_sent: You will receive a new e-mail with the confirmation link in a few minutes!
  1095. title: Check your inbox
  1096. sign_in:
  1097. preamble_html: Login with your <strong>%{domain}</strong> credentials. If your account is hosted on a different server, you will not be able to log in here.
  1098. title: Login to %{domain}
  1099. sign_up:
  1100. manual_review: Sign-ups on %{domain} go through manual review by our moderators. To help us process your registration, write a bit about yourself and why you want an account on %{domain}.
  1101. preamble: With an account on this Mastodon server, you'll be able to follow any other person on the network, regardless of where their account is hosted.
  1102. title: Let's get you set up on %{domain}.
  1103. status:
  1104. account_status: Account status
  1105. confirming: Waiting for e-mail confirmation to be completed.
  1106. functional: Your account is fully operational.
  1107. pending: Your application is pending review by our staff. This may take some time. You will receive an e-mail if your application is approved.
  1108. redirecting_to: Your account is inactive because it is currently redirecting to %{acct}.
  1109. view_strikes: View past strikes against your account
  1110. too_fast: Form submitted too fast, try again.
  1111. use_security_key: Use security key
  1112. challenge:
  1113. confirm: Continue
  1114. hint_html: "<strong>Tip:</strong> We won't ask you for your password again for the next hour."
  1115. invalid_password: Invalid password
  1116. prompt: Confirm password to continue
  1117. crypto:
  1118. errors:
  1119. invalid_key: is not a valid Ed25519 or Curve25519 key
  1120. invalid_signature: is not a valid Ed25519 signature
  1121. date:
  1122. formats:
  1123. default: "%b %d, %Y"
  1124. with_month_name: "%B %d, %Y"
  1125. datetime:
  1126. distance_in_words:
  1127. about_x_hours: "%{count}h"
  1128. about_x_months: "%{count}mo"
  1129. about_x_years: "%{count}y"
  1130. almost_x_years: "%{count}y"
  1131. half_a_minute: Just now
  1132. less_than_x_minutes: "%{count}m"
  1133. less_than_x_seconds: Just now
  1134. over_x_years: "%{count}y"
  1135. x_days: "%{count}d"
  1136. x_minutes: "%{count}m"
  1137. x_months: "%{count}mo"
  1138. x_seconds: "%{count}s"
  1139. deletes:
  1140. challenge_not_passed: The information you entered was not correct
  1141. confirm_password: Enter your current password to verify your identity
  1142. confirm_username: Enter your username to confirm the procedure
  1143. proceed: Delete account
  1144. success_msg: Your account was successfully deleted
  1145. warning:
  1146. before: 'Before proceeding, please read these notes carefully:'
  1147. caches: Content that has been cached by other servers may persist
  1148. data_removal: Your posts and other data will be permanently removed
  1149. email_change_html: You can <a href="%{path}">change your e-mail address</a> without deleting your account
  1150. email_contact_html: If it still doesn't arrive, you can e-mail <a href="mailto:%{email}">%{email}</a> for help
  1151. email_reconfirmation_html: If you are not receiving the confirmation e-mail, you can <a href="%{path}">request it again</a>
  1152. irreversible: You will not be able to restore or reactivate your account
  1153. more_details_html: For more details, see the <a href="%{terms_path}">privacy policy</a>.
  1154. username_available: Your username will become available again
  1155. username_unavailable: Your username will remain unavailable
  1156. disputes:
  1157. strikes:
  1158. action_taken: Action taken
  1159. appeal: Appeal
  1160. appeal_approved: This strike has been successfully appealed and is no longer valid
  1161. appeal_rejected: The appeal has been rejected
  1162. appeal_submitted_at: Appeal submitted
  1163. appealed_msg: Your appeal has been submitted. If it is approved, you will be notified.
  1164. appeals:
  1165. submit: Submit appeal
  1166. approve_appeal: Approve appeal
  1167. associated_report: Associated report
  1168. created_at: Dated
  1169. description_html: These are actions taken against your account and warnings that have been sent to you by the staff of %{instance}.
  1170. recipient: Addressed to
  1171. reject_appeal: Reject appeal
  1172. status: 'Post #%{id}'
  1173. status_removed: Post already removed from system
  1174. title: "%{action} from %{date}"
  1175. title_actions:
  1176. delete_statuses: Post removal
  1177. disable: Freezing of account
  1178. mark_statuses_as_sensitive: Marking of posts as sensitive
  1179. none: Warning
  1180. sensitive: Marking of account as sensitive
  1181. silence: Limitation of account
  1182. suspend: Suspension of account
  1183. your_appeal_approved: Your appeal has been approved
  1184. your_appeal_pending: You have submitted an appeal
  1185. your_appeal_rejected: Your appeal has been rejected
  1186. domain_validator:
  1187. invalid_domain: is not a valid domain name
  1188. edit_profile:
  1189. basic_information: Basic information
  1190. hint_html: "<strong>Customize what people see on your public profile and next to your posts.</strong> Other people are more likely to follow you back and interact with you when you have a filled out profile and a profile picture."
  1191. other: Other
  1192. errors:
  1193. '400': The request you submitted was invalid or malformed.
  1194. '403': You don't have permission to view this page.
  1195. '404': The page you are looking for isn't here.
  1196. '406': This page is not available in the requested format.
  1197. '410': The page you were looking for doesn't exist here anymore.
  1198. '422':
  1199. content: Security verification failed. Are you blocking cookies?
  1200. title: Security verification failed
  1201. '429': Too many requests
  1202. '500':
  1203. content: We're sorry, but something went wrong on our end.
  1204. title: This page is not correct
  1205. '503': The page could not be served due to a temporary server failure.
  1206. noscript_html: To use the Mastodon web application, please enable JavaScript. Alternatively, try one of the <a href="%{apps_path}">native apps</a> for Mastodon for your platform.
  1207. existing_username_validator:
  1208. not_found: could not find a local user with that username
  1209. not_found_multiple: could not find %{usernames}
  1210. exports:
  1211. archive_takeout:
  1212. date: Date
  1213. download: Download your archive
  1214. hint_html: You can request an archive of your <strong>posts and uploaded media</strong>. The exported data will be in the ActivityPub format, readable by any compliant software. You can request an archive every 7 days.
  1215. in_progress: Compiling your archive...
  1216. request: Request your archive
  1217. size: Size
  1218. blocks: You block
  1219. bookmarks: Bookmarks
  1220. csv: CSV
  1221. domain_blocks: Domain blocks
  1222. lists: Lists
  1223. mutes: You mute
  1224. storage: Media storage
  1225. featured_tags:
  1226. add_new: Add new
  1227. errors:
  1228. limit: You have already featured the maximum number of hashtags
  1229. hint_html: "<strong>Feature your most important hashtags on your profile.</strong> A great tool for keeping track of your creative works and long-term projects, featured hashtags are displayed prominently on your profile and allow quick access to your own posts."
  1230. filters:
  1231. contexts:
  1232. account: Profiles
  1233. home: Home and lists
  1234. notifications: Notifications
  1235. public: Public timelines
  1236. thread: Conversations
  1237. edit:
  1238. add_keyword: Add keyword
  1239. keywords: Keywords
  1240. statuses: Individual posts
  1241. statuses_hint_html: This filter applies to select individual posts regardless of whether they match the keywords below. <a href="%{path}">Review or remove posts from the filter</a>.
  1242. title: Edit filter
  1243. errors:
  1244. deprecated_api_multiple_keywords: These parameters cannot be changed from this application because they apply to more than one filter keyword. Use a more recent application or the web interface.
  1245. invalid_context: None or invalid context supplied
  1246. index:
  1247. contexts: Filters in %{contexts}
  1248. delete: Delete
  1249. empty: You have no filters.
  1250. expires_in: Expires in %{distance}
  1251. expires_on: Expires on %{date}
  1252. keywords:
  1253. one: "%{count} keyword"
  1254. other: "%{count} keywords"
  1255. statuses:
  1256. one: "%{count} post"
  1257. other: "%{count} posts"
  1258. statuses_long:
  1259. one: "%{count} individual post hidden"
  1260. other: "%{count} individual posts hidden"
  1261. title: Filters
  1262. new:
  1263. save: Save new filter
  1264. title: Add new filter
  1265. statuses:
  1266. back_to_filter: Back to filter
  1267. batch:
  1268. remove: Remove from filter
  1269. index:
  1270. hint: This filter applies to select individual posts regardless of other criteria. You can add more posts to this filter from the web interface.
  1271. title: Filtered posts
  1272. generic:
  1273. all: All
  1274. all_items_on_page_selected_html:
  1275. one: "<strong>%{count}</strong> item on this page is selected."
  1276. other: All <strong>%{count}</strong> items on this page are selected.
  1277. all_matching_items_selected_html:
  1278. one: "<strong>%{count}</strong> item matching your search is selected."
  1279. other: All <strong>%{count}</strong> items matching your search are selected.
  1280. cancel: Cancel
  1281. changes_saved_msg: Changes successfully saved!
  1282. confirm: Confirm
  1283. copy: Copy
  1284. delete: Delete
  1285. deselect: Deselect all
  1286. none: None
  1287. order_by: Order by
  1288. save_changes: Save changes
  1289. select_all_matching_items:
  1290. one: Select %{count} item matching your search.
  1291. other: Select all %{count} items matching your search.
  1292. today: today
  1293. validation_errors:
  1294. one: Something isn't quite right yet! Please review the error below
  1295. other: Something isn't quite right yet! Please review %{count} errors below
  1296. imports:
  1297. errors:
  1298. empty: Empty CSV file
  1299. incompatible_type: Incompatible with the selected import type
  1300. invalid_csv_file: 'Invalid CSV file. Error: %{error}'
  1301. over_rows_processing_limit: contains more than %{count} rows
  1302. too_large: File is too large
  1303. failures: Failures
  1304. imported: Imported
  1305. mismatched_types_warning: It appears you may have selected the wrong type for this import, please double-check.
  1306. modes:
  1307. merge: Merge
  1308. merge_long: Keep existing records and add new ones
  1309. overwrite: Overwrite
  1310. overwrite_long: Replace current records with the new ones
  1311. overwrite_preambles:
  1312. blocking_html: You are about to <strong>replace your block list</strong> with up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong>.
  1313. bookmarks_html: You are about to <strong>replace your bookmarks</strong> with up to <strong>%{total_items} posts</strong> from <strong>%{filename}</strong>.
  1314. domain_blocking_html: You are about to <strong>replace your domain block list</strong> with up to <strong>%{total_items} domains</strong> from <strong>%{filename}</strong>.
  1315. following_html: You are about to <strong>follow</strong> up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong> and <strong>stop following anyone else</strong>.
  1316. lists_html: You are about to <strong>replace your lists</strong> with contents of <strong>%{filename}</strong>. Up to <strong>%{total_items} accounts</strong> will be added to new lists.
  1317. muting_html: You are about to <strong>replace your list of muted accounts</strong> with up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong>.
  1318. preambles:
  1319. blocking_html: You are about to <strong>block</strong> up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong>.
  1320. bookmarks_html: You are about to add up to <strong>%{total_items} posts</strong> from <strong>%{filename}</strong> to your <strong>bookmarks</strong>.
  1321. domain_blocking_html: You are about to <strong>block</strong> up to <strong>%{total_items} domains</strong> from <strong>%{filename}</strong>.
  1322. following_html: You are about to <strong>follow</strong> up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong>.
  1323. lists_html: You are about to add up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong> to your <strong>lists</strong>. New lists will be created if there is no list to add to.
  1324. muting_html: You are about to <strong>mute</strong> up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong>.
  1325. preface: You can import data that you have exported from another server, such as a list of the people you are following or blocking.
  1326. recent_imports: Recent imports
  1327. states:
  1328. finished: Finished
  1329. in_progress: In progress
  1330. scheduled: Scheduled
  1331. unconfirmed: Unconfirmed
  1332. status: Status
  1333. success: Your data was successfully uploaded and will be processed in due time
  1334. time_started: Started at
  1335. titles:
  1336. blocking: Importing blocked accounts
  1337. bookmarks: Importing bookmarks
  1338. domain_blocking: Importing blocked domains
  1339. following: Importing followed accounts
  1340. lists: Importing lists
  1341. muting: Importing muted accounts
  1342. type: Import type
  1343. type_groups:
  1344. constructive: Follows & Bookmarks
  1345. destructive: Blocks & mutes
  1346. types:
  1347. blocking: Blocking list
  1348. bookmarks: Bookmarks
  1349. domain_blocking: Domain blocking list
  1350. following: Following list
  1351. lists: Lists
  1352. muting: Muting list
  1353. upload: Upload
  1354. invites:
  1355. delete: Deactivate
  1356. expired: Expired
  1357. expires_in:
  1358. '1800': 30 minutes
  1359. '21600': 6 hours
  1360. '3600': 1 hour
  1361. '43200': 12 hours
  1362. '604800': 1 week
  1363. '86400': 1 day
  1364. expires_in_prompt: Never
  1365. generate: Generate invite link
  1366. invited_by: 'You were invited by:'
  1367. max_uses:
  1368. one: 1 use
  1369. other: "%{count} uses"
  1370. max_uses_prompt: No limit
  1371. prompt: Generate and share links with others to grant access to this server
  1372. table:
  1373. expires_at: Expires
  1374. uses: Uses
  1375. title: Invite people
  1376. lists:
  1377. errors:
  1378. limit: You have reached the maximum number of lists
  1379. login_activities:
  1380. authentication_methods:
  1381. otp: two-factor authentication app
  1382. password: password
  1383. sign_in_token: e-mail security code
  1384. webauthn: security keys
  1385. description_html: If you see activity that you don't recognize, consider changing your password and enabling two-factor authentication.
  1386. empty: No authentication history available
  1387. failed_sign_in_html: Failed sign-in attempt with %{method} from %{ip} (%{browser})
  1388. successful_sign_in_html: Successful sign-in with %{method} from %{ip} (%{browser})
  1389. title: Authentication history
  1390. mail_subscriptions:
  1391. unsubscribe:
  1392. action: Yes, unsubscribe
  1393. complete: Unsubscribed
  1394. confirmation_html: Are you sure you want to unsubscribe from receiving %{type} for Mastodon on %{domain} to your e-mail at %{email}? You can always re-subscribe from your <a href="%{settings_path}">e-mail notification settings</a>.
  1395. emails:
  1396. notification_emails:
  1397. favourite: favorite notification e-mails
  1398. follow: follow notification e-mails
  1399. follow_request: follow request e-mails
  1400. mention: mention notification e-mails
  1401. reblog: boost notification e-mails
  1402. resubscribe_html: If you've unsubscribed by mistake, you can re-subscribe from your <a href="%{settings_path}">e-mail notification settings</a>.
  1403. success_html: You'll no longer receive %{type} for Mastodon on %{domain} to your e-mail at %{email}.
  1404. title: Unsubscribe
  1405. media_attachments:
  1406. validations:
  1407. images_and_video: Cannot attach a video to a post that already contains images
  1408. not_ready: Cannot attach files that have not finished processing. Try again in a moment!
  1409. too_many: Cannot attach more than 4 files
  1410. migrations:
  1411. acct: Moved to
  1412. cancel: Cancel redirect
  1413. cancel_explanation: Cancelling the redirect will re-activate your current account, but will not bring back followers that have been moved to that account.
  1414. cancelled_msg: Successfully cancelled the redirect.
  1415. errors:
  1416. already_moved: is the same account you have already moved to
  1417. missing_also_known_as: is not an alias of this account
  1418. move_to_self: cannot be current account
  1419. not_found: could not be found
  1420. on_cooldown: You are on cooldown
  1421. followers_count: Followers at time of move
  1422. incoming_migrations: Moving from a different account
  1423. incoming_migrations_html: To move from another account to this one, first you need to <a href="%{path}">create an account alias</a>.
  1424. moved_msg: Your account is now redirecting to %{acct} and your followers are being moved over.
  1425. not_redirecting: Your account is not redirecting to any other account currently.
  1426. on_cooldown: You have recently migrated your account. This function will become available again in %{count} days.
  1427. past_migrations: Past migrations
  1428. proceed_with_move: Move followers
  1429. redirected_msg: Your account is now redirecting to %{acct}.
  1430. redirecting_to: Your account is redirecting to %{acct}.
  1431. set_redirect: Set redirect
  1432. warning:
  1433. backreference_required: The new account must first be configured to back-reference this one
  1434. before: 'Before proceeding, please read these notes carefully:'
  1435. cooldown: After moving there is a waiting period during which you will not be able to move again
  1436. disabled_account: Your current account will not be fully usable afterwards. However, you will have access to data export as well as re-activation.
  1437. followers: This action will move all followers from the current account to the new account
  1438. only_redirect_html: Alternatively, you can <a href="%{path}">only put up a redirect on your profile</a>.
  1439. other_data: No other data will be moved automatically
  1440. redirect: Your current account's profile will be updated with a redirect notice and be excluded from searches
  1441. moderation:
  1442. title: Moderation
  1443. move_handler:
  1444. carry_blocks_over_text: This user moved from %{acct}, which you had blocked.
  1445. carry_mutes_over_text: This user moved from %{acct}, which you had muted.
  1446. copy_account_note_text: 'This user moved from %{acct}, here were your previous notes about them:'
  1447. navigation:
  1448. toggle_menu: Toggle menu
  1449. notification_mailer:
  1450. admin:
  1451. report:
  1452. subject: "%{name} submitted a report"
  1453. sign_up:
  1454. subject: "%{name} signed up"
  1455. favourite:
  1456. body: 'Your post was favorited by %{name}:'
  1457. subject: "%{name} favorited your post"
  1458. title: New favorite
  1459. follow:
  1460. body: "%{name} is now following you!"
  1461. subject: "%{name} is now following you"
  1462. title: New follower
  1463. follow_request:
  1464. action: Manage follow requests
  1465. body: "%{name} has requested to follow you"
  1466. subject: 'Pending follower: %{name}'
  1467. title: New follow request
  1468. mention:
  1469. action: Reply
  1470. body: 'You were mentioned by %{name} in:'
  1471. subject: You were mentioned by %{name}
  1472. title: New mention
  1473. poll:
  1474. subject: A poll by %{name} has ended
  1475. reblog:
  1476. body: 'Your post was boosted by %{name}:'
  1477. subject: "%{name} boosted your post"
  1478. title: New boost
  1479. status:
  1480. subject: "%{name} just posted"
  1481. update:
  1482. subject: "%{name} edited a post"
  1483. notifications:
  1484. administration_emails: Admin e-mail notifications
  1485. email_events: Events for e-mail notifications
  1486. email_events_hint: 'Select events that you want to receive notifications for:'
  1487. other_settings: Other notifications settings
  1488. number:
  1489. human:
  1490. decimal_units:
  1491. format: "%n%u"
  1492. units:
  1493. billion: B
  1494. million: M
  1495. quadrillion: Q
  1496. thousand: K
  1497. trillion: T
  1498. unit: ''
  1499. otp_authentication:
  1500. code_hint: Enter the code generated by your authenticator app to confirm
  1501. description_html: If you enable <strong>two-factor authentication</strong> using an authenticator app, logging in will require you to be in possession of your phone, which will generate tokens for you to enter.
  1502. enable: Enable
  1503. instructions_html: "<strong>Scan this QR code into Google Authenticator or a similar TOTP app on your phone</strong>. From now on, that app will generate tokens that you will have to enter when logging in."
  1504. manual_instructions: 'If you can''t scan the QR code and need to enter it manually, here is the plain-text secret:'
  1505. setup: Set up
  1506. wrong_code: The entered code was invalid! Are server time and device time correct?
  1507. pagination:
  1508. newer: Newer
  1509. next: Next
  1510. older: Older
  1511. prev: Prev
  1512. truncate: "&hellip;"
  1513. polls:
  1514. errors:
  1515. already_voted: You have already voted on this poll
  1516. duplicate_options: contain duplicate items
  1517. duration_too_long: is too far into the future
  1518. duration_too_short: is too soon
  1519. expired: The poll has already ended
  1520. invalid_choice: The chosen vote option does not exist
  1521. over_character_limit: cannot be longer than %{max} characters each
  1522. self_vote: You cannot vote in your own polls
  1523. too_few_options: must have more than one item
  1524. too_many_options: can't contain more than %{max} items
  1525. preferences:
  1526. other: Other
  1527. posting_defaults: Posting defaults
  1528. public_timelines: Public timelines
  1529. privacy:
  1530. hint_html: "<strong>Customize how you want your profile and your posts to be found.</strong> A variety of features in Mastodon can help you reach a wider audience when enabled. Take a moment to review these settings to make sure they fit your use case."
  1531. privacy: Privacy
  1532. privacy_hint_html: Control how much you want to disclose for the benefit of others. People discover interesting profiles and cool apps by browsing other people's follows and seeing which apps they post from, but you may prefer to keep it hidden.
  1533. reach: Reach
  1534. reach_hint_html: Control whether you want to be discovered and followed by new people. Do you want your posts to appear on the Explore screen? Do you want other people to see you in their follow recommendations? Do you want to accept all new followers automatically, or have granular control over each one?
  1535. search: Search
  1536. search_hint_html: Control how you want to be found. Do you want people to find you by what you've publicly posted about? Do you want people outside Mastodon to find your profile when searching the web? Please mind that total exclusion from all search engines cannot be guaranteed for public information.
  1537. title: Privacy and reach
  1538. privacy_policy:
  1539. title: Privacy Policy
  1540. reactions:
  1541. errors:
  1542. limit_reached: Limit of different reactions reached
  1543. unrecognized_emoji: is not a recognized emoji
  1544. relationships:
  1545. activity: Account activity
  1546. confirm_follow_selected_followers: Are you sure you want to follow selected followers?
  1547. confirm_remove_selected_followers: Are you sure you want to remove selected followers?
  1548. confirm_remove_selected_follows: Are you sure you want to remove selected follows?
  1549. dormant: Dormant
  1550. follow_failure: Could not follow some of the selected accounts.
  1551. follow_selected_followers: Follow selected followers
  1552. followers: Followers
  1553. following: Following
  1554. invited: Invited
  1555. last_active: Last active
  1556. most_recent: Most recent
  1557. moved: Moved
  1558. mutual: Mutual
  1559. primary: Primary
  1560. relationship: Relationship
  1561. remove_selected_domains: Remove all followers from the selected domains
  1562. remove_selected_followers: Remove selected followers
  1563. remove_selected_follows: Unfollow selected users
  1564. status: Account status
  1565. remote_follow:
  1566. missing_resource: Could not find the required redirect URL for your account
  1567. reports:
  1568. errors:
  1569. invalid_rules: does not reference valid rules
  1570. rss:
  1571. content_warning: 'Content warning:'
  1572. descriptions:
  1573. account: Public posts from @%{acct}
  1574. tag: 'Public posts tagged #%{hashtag}'
  1575. scheduled_statuses:
  1576. over_daily_limit: You have exceeded the limit of %{limit} scheduled posts for today
  1577. over_total_limit: You have exceeded the limit of %{limit} scheduled posts
  1578. too_soon: The scheduled date must be in the future
  1579. sessions:
  1580. activity: Last activity
  1581. browser: Browser
  1582. browsers:
  1583. alipay: Alipay
  1584. blackberry: BlackBerry
  1585. chrome: Chrome
  1586. edge: Microsoft Edge
  1587. electron: Electron
  1588. firefox: Firefox
  1589. generic: Unknown browser
  1590. huawei_browser: Huawei Browser
  1591. ie: Internet Explorer
  1592. micro_messenger: MicroMessenger
  1593. nokia: Nokia S40 Ovi Browser
  1594. opera: Opera
  1595. otter: Otter
  1596. phantom_js: PhantomJS
  1597. qq: QQ Browser
  1598. safari: Safari
  1599. uc_browser: UC Browser
  1600. unknown_browser: Unknown Browser
  1601. weibo: Weibo
  1602. current_session: Current session
  1603. description: "%{browser} on %{platform}"
  1604. explanation: These are the web browsers currently logged in to your Mastodon account.
  1605. ip: IP
  1606. platforms:
  1607. adobe_air: Adobe Air
  1608. android: Android
  1609. blackberry: BlackBerry
  1610. chrome_os: ChromeOS
  1611. firefox_os: Firefox OS
  1612. ios: iOS
  1613. kai_os: KaiOS
  1614. linux: Linux
  1615. mac: macOS
  1616. unknown_platform: Unknown Platform
  1617. windows: Windows
  1618. windows_mobile: Windows Mobile
  1619. windows_phone: Windows Phone
  1620. revoke: Revoke
  1621. revoke_success: Session successfully revoked
  1622. title: Sessions
  1623. view_authentication_history: View authentication history of your account
  1624. settings:
  1625. account: Account
  1626. account_settings: Account settings
  1627. aliases: Account aliases
  1628. appearance: Appearance
  1629. authorized_apps: Authorized apps
  1630. back: Back to Mastodon
  1631. delete: Account deletion
  1632. development: Development
  1633. edit_profile: Edit profile
  1634. export: Data export
  1635. featured_tags: Featured hashtags
  1636. import: Import
  1637. import_and_export: Import and export
  1638. migrate: Account migration
  1639. notifications: Notifications
  1640. preferences: Preferences
  1641. profile: Public profile
  1642. relationships: Follows and followers
  1643. statuses_cleanup: Automated post deletion
  1644. strikes: Moderation strikes
  1645. two_factor_authentication: Two-factor Auth
  1646. webauthn_authentication: Security keys
  1647. statuses:
  1648. attached:
  1649. audio:
  1650. one: "%{count} audio"
  1651. other: "%{count} audio"
  1652. description: 'Attached: %{attached}'
  1653. image:
  1654. one: "%{count} image"
  1655. other: "%{count} images"
  1656. video:
  1657. one: "%{count} video"
  1658. other: "%{count} videos"
  1659. boosted_from_html: Boosted from %{acct_link}
  1660. content_warning: 'Content warning: %{warning}'
  1661. default_language: Same as interface language
  1662. disallowed_hashtags:
  1663. one: 'contained a disallowed hashtag: %{tags}'
  1664. other: 'contained the disallowed hashtags: %{tags}'
  1665. edited_at_html: Edited %{date}
  1666. errors:
  1667. in_reply_not_found: The post you are trying to reply to does not appear to exist.
  1668. open_in_web: Open in web
  1669. over_character_limit: character limit of %{max} exceeded
  1670. pin_errors:
  1671. direct: Posts that are only visible to mentioned users cannot be pinned
  1672. limit: You have already pinned the maximum number of posts
  1673. ownership: Someone else's post cannot be pinned
  1674. reblog: A boost cannot be pinned
  1675. poll:
  1676. total_people:
  1677. one: "%{count} person"
  1678. other: "%{count} people"
  1679. total_votes:
  1680. one: "%{count} vote"
  1681. other: "%{count} votes"
  1682. vote: Vote
  1683. show_more: Show more
  1684. show_newer: Show newer
  1685. show_older: Show older
  1686. show_thread: Show thread
  1687. title: '%{name}: "%{quote}"'
  1688. visibilities:
  1689. direct: Direct
  1690. private: Followers-only
  1691. private_long: Only show to followers
  1692. public: Public
  1693. public_long: Everyone can see
  1694. unlisted: Unlisted
  1695. unlisted_long: Everyone can see, but not listed on public timelines
  1696. statuses_cleanup:
  1697. enabled: Automatically delete old posts
  1698. enabled_hint: Automatically deletes your posts once they reach a specified age threshold, unless they match one of the exceptions below
  1699. exceptions: Exceptions
  1700. explanation: Because deleting posts is an expensive operation, this is done slowly over time when the server is not otherwise busy. For this reason, your posts may be deleted a while after they reach the age threshold.
  1701. ignore_favs: Ignore favorites
  1702. ignore_reblogs: Ignore boosts
  1703. interaction_exceptions: Exceptions based on interactions
  1704. interaction_exceptions_explanation: Note that there is no guarantee for posts to be deleted if they go below the favorite or boost threshold after having once gone over them.
  1705. keep_direct: Keep direct messages
  1706. keep_direct_hint: Doesn't delete any of your direct messages
  1707. keep_media: Keep posts with media attachments
  1708. keep_media_hint: Doesn't delete any of your posts that have media attachments
  1709. keep_pinned: Keep pinned posts
  1710. keep_pinned_hint: Doesn't delete any of your pinned posts
  1711. keep_polls: Keep polls
  1712. keep_polls_hint: Doesn't delete any of your polls
  1713. keep_self_bookmark: Keep posts you bookmarked
  1714. keep_self_bookmark_hint: Doesn't delete your own posts if you have bookmarked them
  1715. keep_self_fav: Keep posts you favorited
  1716. keep_self_fav_hint: Doesn't delete your own posts if you have favorited them
  1717. min_age:
  1718. '1209600': 2 weeks
  1719. '15778476': 6 months
  1720. '2629746': 1 month
  1721. '31556952': 1 year
  1722. '5259492': 2 months
  1723. '604800': 1 week
  1724. '63113904': 2 years
  1725. '7889238': 3 months
  1726. min_age_label: Age threshold
  1727. min_favs: Keep posts favorited at least
  1728. min_favs_hint: Doesn't delete any of your posts that has received at least this number of favorites. Leave blank to delete posts regardless of their number of favorites
  1729. min_reblogs: Keep posts boosted at least
  1730. min_reblogs_hint: Doesn't delete any of your posts that has been boosted at least this number of times. Leave blank to delete posts regardless of their number of boosts
  1731. stream_entries:
  1732. sensitive_content: Sensitive content
  1733. strikes:
  1734. errors:
  1735. too_late: It is too late to appeal this strike
  1736. tags:
  1737. does_not_match_previous_name: does not match the previous name
  1738. themes:
  1739. contrast: Mastodon (High contrast)
  1740. default: Mastodon (Dark)
  1741. mastodon-light: Mastodon (Light)
  1742. time:
  1743. formats:
  1744. default: "%b %d, %Y, %H:%M"
  1745. month: "%b %Y"
  1746. time: "%H:%M"
  1747. with_time_zone: "%b %d, %Y, %H:%M %Z"
  1748. translation:
  1749. errors:
  1750. quota_exceeded: The server-wide usage quota for the translation service has been exceeded.
  1751. too_many_requests: There have been too many requests to the translation service recently.
  1752. two_factor_authentication:
  1753. add: Add
  1754. disable: Disable 2FA
  1755. disabled_success: Two-factor authentication successfully disabled
  1756. edit: Edit
  1757. enabled: Two-factor authentication is enabled
  1758. enabled_success: Two-factor authentication successfully enabled
  1759. generate_recovery_codes: Generate recovery codes
  1760. lost_recovery_codes: Recovery codes allow you to regain access to your account if you lose your phone. If you've lost your recovery codes, you can regenerate them here. Your old recovery codes will be invalidated.
  1761. methods: Two-factor methods
  1762. otp: Authenticator app
  1763. recovery_codes: Backup recovery codes
  1764. recovery_codes_regenerated: Recovery codes successfully regenerated
  1765. recovery_instructions_html: If you ever lose access to your phone, you can use one of the recovery codes below to regain access to your account. <strong>Keep the recovery codes safe</strong>. For example, you may print them and store them with other important documents.
  1766. webauthn: Security keys
  1767. user_mailer:
  1768. appeal_approved:
  1769. action: Go to your account
  1770. explanation: The appeal of the strike against your account on %{strike_date} that you submitted on %{appeal_date} has been approved. Your account is once again in good standing.
  1771. subject: Your appeal from %{date} has been approved
  1772. title: Appeal approved
  1773. appeal_rejected:
  1774. explanation: The appeal of the strike against your account on %{strike_date} that you submitted on %{appeal_date} has been rejected.
  1775. subject: Your appeal from %{date} has been rejected
  1776. title: Appeal rejected
  1777. backup_ready:
  1778. explanation: You requested a full backup of your Mastodon account. It's now ready for download!
  1779. subject: Your archive is ready for download
  1780. title: Archive takeout
  1781. suspicious_sign_in:
  1782. change_password: change your password
  1783. details: 'Here are details of the sign-in:'
  1784. explanation: We've detected a sign-in to your account from a new IP address.
  1785. further_actions_html: If this wasn't you, we recommend that you %{action} immediately and enable two-factor authentication to keep your account secure.
  1786. subject: Your account has been accessed from a new IP address
  1787. title: A new sign-in
  1788. warning:
  1789. appeal: Submit an appeal
  1790. appeal_description: If you believe this is an error, you can submit an appeal to the staff of %{instance}.
  1791. categories:
  1792. spam: Spam
  1793. violation: Content violates the following community guidelines
  1794. explanation:
  1795. delete_statuses: Some of your posts have been found to violate one or more community guidelines and have been subsequently removed by the moderators of %{instance}.
  1796. disable: You can no longer use your account, but your profile and other data remains intact. You can request a backup of your data, change account settings or delete your account.
  1797. mark_statuses_as_sensitive: Some of your posts have been marked as sensitive by the moderators of %{instance}. This means that people will need to tap the media in the posts before a preview is displayed. You can mark media as sensitive yourself when posting in the future.
  1798. sensitive: From now on, all your uploaded media files will be marked as sensitive and hidden behind a click-through warning.
  1799. silence: You can still use your account but only people who are already following you will see your posts on this server, and you may be excluded from various discovery features. However, others may still manually follow you.
  1800. suspend: You can no longer use your account, and your profile and other data are no longer accessible. You can still login to request a backup of your data until the data is fully removed in about 30 days, but we will retain some basic data to prevent you from evading the suspension.
  1801. reason: 'Reason:'
  1802. statuses: 'Posts cited:'
  1803. subject:
  1804. delete_statuses: Your posts on %{acct} have been removed
  1805. disable: Your account %{acct} has been frozen
  1806. mark_statuses_as_sensitive: Your posts on %{acct} have been marked as sensitive
  1807. none: Warning for %{acct}
  1808. sensitive: Your posts on %{acct} will be marked as sensitive from now on
  1809. silence: Your account %{acct} has been limited
  1810. suspend: Your account %{acct} has been suspended
  1811. title:
  1812. delete_statuses: Posts removed
  1813. disable: Account frozen
  1814. mark_statuses_as_sensitive: Posts marked as sensitive
  1815. none: Warning
  1816. sensitive: Account marked as sensitive
  1817. silence: Account limited
  1818. suspend: Account suspended
  1819. welcome:
  1820. edit_profile_action: Setup profile
  1821. edit_profile_step: You can customize your profile by uploading a profile picture, changing your display name and more. You can opt-in to review new followers before they’re allowed to follow you.
  1822. explanation: Here are some tips to get you started
  1823. final_action: Start posting
  1824. final_step: 'Start posting! Even without followers, your public posts may be seen by others, for example on the local timeline or in hashtags. You may want to introduce yourself on the #introductions hashtag.'
  1825. full_handle: Your full handle
  1826. full_handle_hint: This is what you would tell your friends so they can message or follow you from another server.
  1827. subject: Welcome to Mastodon
  1828. title: Welcome aboard, %{name}!
  1829. users:
  1830. follow_limit_reached: You cannot follow more than %{limit} people
  1831. go_to_sso_account_settings: Go to your identity provider's account settings
  1832. invalid_otp_token: Invalid two-factor code
  1833. otp_lost_help_html: If you lost access to both, you may get in touch with %{email}
  1834. rate_limited: Too many authentication attempts, try again later.
  1835. seamless_external_login: You are logged in via an external service, so password and e-mail settings are not available.
  1836. signed_in_as: 'Signed in as:'
  1837. verification:
  1838. extra_instructions_html: <strong>Tip:</strong> The link on your website can be invisible. The important part is <code>rel="me"</code> which prevents impersonation on websites with user-generated content. You can even use a <code>link</code> tag in the header of the page instead of <code>a</code>, but the HTML must be accessible without executing JavaScript.
  1839. here_is_how: Here's how
  1840. hint_html: "<strong>Verifying your identity on Mastodon is for everyone.</strong> Based on open web standards, now and forever free. All you need is a personal website that people recognize you by. When you link to this website from your profile, we will check that the website links back to your profile and show a visual indicator on it."
  1841. instructions_html: Copy and paste the code below into the HTML of your website. Then add the address of your website into one of the extra fields on your profile from the "Edit profile" tab and save changes.
  1842. verification: Verification
  1843. verified_links: Your verified links
  1844. webauthn_credentials:
  1845. add: Add new security key
  1846. create:
  1847. error: There was a problem adding your security key. Please try again.
  1848. success: Your security key was successfully added.
  1849. delete: Delete
  1850. delete_confirmation: Are you sure you want to delete this security key?
  1851. description_html: If you enable <strong>security key authentication</strong>, logging in will require you to use one of your security keys.
  1852. destroy:
  1853. error: There was a problem deleting you security key. Please try again.
  1854. success: Your security key was successfully deleted.
  1855. invalid_credential: Invalid security key
  1856. nickname_hint: Enter the nickname of your new security key
  1857. not_enabled: You haven't enabled WebAuthn yet
  1858. not_supported: This browser doesn't support security keys
  1859. otp_required: To use security keys please enable two-factor authentication first.
  1860. registered_on: Registered on %{date}