en-GB.yml 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866
  1. ---
  2. en-GB:
  3. about:
  4. about_mastodon_html: 'The social network of the future: No ads, no corporate surveillance, ethical design, and decentralisation! 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: Memorialised
  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: Memorialise 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} stopped 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: Uncategorised
  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 personalised 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. unknown_instance: There is currently no record of this domain on this server.
  538. invites:
  539. deactivate_all: Deactivate all
  540. filter:
  541. all: All
  542. available: Available
  543. expired: Expired
  544. title: Filter
  545. title: Invites
  546. ip_blocks:
  547. add_new: Create rule
  548. created_msg: Successfully added new IP rule
  549. delete: Delete
  550. expires_in:
  551. '1209600': 2 weeks
  552. '15778476': 6 months
  553. '2629746': 1 month
  554. '31556952': 1 year
  555. '86400': 1 day
  556. '94670856': 3 years
  557. new:
  558. title: Create new IP rule
  559. no_ip_block_selected: No IP rules were changed as none were selected
  560. title: IP rules
  561. relationships:
  562. title: "%{acct}'s relationships"
  563. relays:
  564. add_new: Add new relay
  565. delete: Delete
  566. 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.
  567. disable: Disable
  568. disabled: Disabled
  569. enable: Enable
  570. 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.
  571. enabled: Enabled
  572. inbox_url: Relay URL
  573. pending: Waiting for relay's approval
  574. save_and_enable: Save and enable
  575. setup: Setup a relay connection
  576. signatures_not_enabled: Relays may not work correctly while secure mode or limited federation mode is enabled
  577. status: Status
  578. title: Relays
  579. report_notes:
  580. created_msg: Report note successfully created!
  581. destroyed_msg: Report note successfully deleted!
  582. reports:
  583. account:
  584. notes:
  585. one: "%{count} note"
  586. other: "%{count} notes"
  587. action_log: Audit log
  588. action_taken_by: Action taken by
  589. actions:
  590. 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.
  591. 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.
  592. other_description_html: See more options for controlling the account's behaviour and customise communication to the reported account.
  593. resolve_description_html: No action will be taken against the reported account, no strike recorded, and the report will be closed.
  594. 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.
  595. 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.
  596. 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.
  597. 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.
  598. add_to_report: Add more to report
  599. are_you_sure: Are you sure?
  600. assign_to_self: Assign to me
  601. assigned: Assigned moderator
  602. by_target_domain: Domain of reported account
  603. cancel: Cancel
  604. category: Category
  605. category_description_html: The reason this account and/or content was reported will be cited in communication with the reported account
  606. comment:
  607. none: None
  608. comment_description_html: 'To provide more information, %{name} wrote:'
  609. confirm: Confirm
  610. confirm_action: Confirm moderation action against @%{acct}
  611. created_at: Reported
  612. delete_and_resolve: Delete posts
  613. forwarded: Forwarded
  614. forwarded_replies_explanation: This report is from a remote user and about remote content. It has been forwarded to you because the reported content is in reply to one of your users.
  615. forwarded_to: Forwarded to %{domain}
  616. mark_as_resolved: Mark as resolved
  617. mark_as_sensitive: Mark as sensitive
  618. mark_as_unresolved: Mark as unresolved
  619. no_one_assigned: No one
  620. notes:
  621. create: Add note
  622. create_and_resolve: Resolve with note
  623. create_and_unresolve: Reopen with note
  624. delete: Delete
  625. placeholder: Describe what actions have been taken, or any other related updates...
  626. title: Notes
  627. notes_description_html: View and leave notes to other moderators and your future self
  628. processed_msg: 'Report #%{id} successfully processed'
  629. quick_actions_description_html: 'Take a quick action or scroll down to see reported content:'
  630. remote_user_placeholder: the remote user from %{instance}
  631. reopen: Reopen report
  632. report: 'Report #%{id}'
  633. reported_account: Reported account
  634. reported_by: Reported by
  635. resolved: Resolved
  636. resolved_msg: Report successfully resolved!
  637. skip_to_actions: Skip to actions
  638. status: Status
  639. statuses: Reported content
  640. statuses_description_html: Offending content will be cited in communication with the reported account
  641. summary:
  642. action_preambles:
  643. delete_html: 'You are about to <strong>remove</strong> some of <strong>@%{acct}</strong>''s posts. This will:'
  644. mark_as_sensitive_html: 'You are about to <strong>mark</strong> some of <strong>@%{acct}</strong>''s posts as <strong>sensitive</strong>. This will:'
  645. silence_html: 'You are about to <strong>limit</strong> <strong>@%{acct}</strong>''s account. This will:'
  646. suspend_html: 'You are about to <strong>suspend</strong> <strong>@%{acct}</strong>''s account. This will:'
  647. actions:
  648. delete_html: Remove the offending posts
  649. mark_as_sensitive_html: Mark the offending posts' media as sensitive
  650. 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
  651. suspend_html: Suspend <strong>@%{acct}</strong>, making their profile and contents inaccessible and impossible to interact with
  652. close_report: 'Mark report #%{id} as resolved'
  653. close_reports_html: Mark <strong>all</strong> reports against <strong>@%{acct}</strong> as resolved
  654. delete_data_html: Delete <strong>@%{acct}</strong>'s profile and contents 30 days from now unless they get unsuspended in the meantime
  655. preview_preamble_html: "<strong>@%{acct}</strong> will receive a warning with the following contents:"
  656. record_strike_html: Record a strike against <strong>@%{acct}</strong> to help you escalate on future violations from this account
  657. send_email_html: Send <strong>@%{acct}</strong> a warning e-mail
  658. warning_placeholder: Optional additional reasoning for the moderation action.
  659. target_origin: Origin of reported account
  660. title: Reports
  661. unassign: Unassign
  662. unknown_action_msg: 'Unknown action: %{action}'
  663. unresolved: Unresolved
  664. updated_at: Updated
  665. view_profile: View profile
  666. roles:
  667. add_new: Add role
  668. assigned_users:
  669. one: "%{count} user"
  670. other: "%{count} users"
  671. categories:
  672. administration: Administration
  673. devops: DevOps
  674. invites: Invites
  675. moderation: Moderation
  676. special: Special
  677. delete: Delete
  678. description_html: With <strong>user roles</strong>, you can customize which functions and areas of Mastodon your users can access.
  679. edit: Edit '%{name}' role
  680. everyone: Default permissions
  681. 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.
  682. permissions_count:
  683. one: "%{count} permission"
  684. other: "%{count} permissions"
  685. privileges:
  686. administrator: Administrator
  687. administrator_description: Users with this permission will bypass every permission
  688. delete_user_data: Delete User Data
  689. delete_user_data_description: Allows users to delete other users' data without delay
  690. invite_users: Invite Users
  691. invite_users_description: Allows users to invite new people to the server
  692. manage_announcements: Manage Announcements
  693. manage_announcements_description: Allows users to manage announcements on the server
  694. manage_appeals: Manage Appeals
  695. manage_appeals_description: Allows users to review appeals against moderation actions
  696. manage_blocks: Manage Blocks
  697. manage_blocks_description: Allows users to block e-mail providers and IP addresses
  698. manage_custom_emojis: Manage Custom Emojis
  699. manage_custom_emojis_description: Allows users to manage custom emojis on the server
  700. manage_federation: Manage Federation
  701. manage_federation_description: Allows users to block or allow federation with other domains, and control deliverability
  702. manage_invites: Manage Invites
  703. manage_invites_description: Allows users to browse and deactivate invite links
  704. manage_reports: Manage Reports
  705. manage_reports_description: Allows users to review reports and perform moderation actions against them
  706. manage_roles: Manage Roles
  707. manage_roles_description: Allows users to manage and assign roles below theirs
  708. manage_rules: Manage Rules
  709. manage_rules_description: Allows users to change server rules
  710. manage_settings: Manage Settings
  711. manage_settings_description: Allows users to change site settings
  712. manage_taxonomies: Manage Taxonomies
  713. manage_taxonomies_description: Allows users to review trending content and update hashtag settings
  714. manage_user_access: Manage User Access
  715. manage_user_access_description: Allows users to disable other users' two-factor authentication, change their e-mail address, and reset their password
  716. manage_users: Manage Users
  717. manage_users_description: Allows users to view other users' details and perform moderation actions against them
  718. manage_webhooks: Manage Webhooks
  719. manage_webhooks_description: Allows users to set up webhooks for administrative events
  720. view_audit_log: View Audit Log
  721. view_audit_log_description: Allows users to see a history of administrative actions on the server
  722. view_dashboard: View Dashboard
  723. view_dashboard_description: Allows users to access the dashboard and various metrics
  724. view_devops: DevOps
  725. view_devops_description: Allows users to access Sidekiq and pgHero dashboards
  726. title: Roles
  727. rules:
  728. add_new: Add rule
  729. delete: Delete
  730. 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.
  731. edit: Edit rule
  732. empty: No server rules have been defined yet.
  733. title: Server rules
  734. settings:
  735. about:
  736. manage_rules: Manage server rules
  737. preamble: Provide in-depth information about how the server is operated, moderated, funded.
  738. rules_hint: There is a dedicated area for rules that your users are expected to adhere to.
  739. title: About
  740. appearance:
  741. preamble: Customise Mastodon's web interface.
  742. title: Appearance
  743. branding:
  744. 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.
  745. title: Branding
  746. captcha_enabled:
  747. 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.
  748. title: Require new users to solve a CAPTCHA to confirm their account
  749. content_retention:
  750. preamble: Control how user-generated content is stored in Mastodon.
  751. title: Content retention
  752. default_noindex:
  753. desc_html: Affects all users who have not changed this setting themselves
  754. title: Opt users out of search engine indexing by default
  755. discovery:
  756. follow_recommendations: Follow recommendations
  757. 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.
  758. profile_directory: Profile directory
  759. public_timelines: Public timelines
  760. publish_discovered_servers: Publish discovered servers
  761. publish_statistics: Publish statistics
  762. title: Discovery
  763. trends: Trends
  764. domain_blocks:
  765. all: To everyone
  766. disabled: To no one
  767. users: To logged-in local users
  768. registrations:
  769. preamble: Control who can create an account on your server.
  770. title: Registrations
  771. registrations_mode:
  772. modes:
  773. approved: Approval required for sign up
  774. none: Nobody can sign up
  775. open: Anyone can sign up
  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: Favourites
  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 favourited 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 favourited one time
  914. other: Shared and favourited %{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. new_appeal:
  969. actions:
  970. delete_statuses: to delete their posts
  971. disable: to freeze their account
  972. mark_statuses_as_sensitive: to mark their posts as sensitive
  973. none: a warning
  974. sensitive: to mark their account as sensitive
  975. silence: to limit their account
  976. suspend: to suspend their account
  977. body: "%{target} is appealing a moderation decision by %{action_taken_by} from %{date}, which was %{type}. They wrote:"
  978. next_steps: You can approve the appeal to undo the moderation decision, or ignore it.
  979. subject: "%{username} is appealing a moderation decision on %{instance}"
  980. new_critical_software_updates:
  981. body: New critical versions of Mastodon have been released, you may want to update as soon as possible!
  982. subject: Critical Mastodon updates are available for %{instance}!
  983. new_pending_account:
  984. body: The details of the new account are below. You can approve or reject this application.
  985. subject: New account up for review on %{instance} (%{username})
  986. new_report:
  987. body: "%{reporter} has reported %{target}"
  988. body_remote: Someone from %{domain} has reported %{target}
  989. subject: New report for %{instance} (#%{id})
  990. new_software_updates:
  991. body: New Mastodon versions have been released, you may want to update!
  992. subject: New Mastodon versions are available for %{instance}!
  993. new_trends:
  994. body: 'The following items need a review before they can be displayed publicly:'
  995. new_trending_links:
  996. title: Trending links
  997. new_trending_statuses:
  998. title: Trending posts
  999. new_trending_tags:
  1000. title: Trending hashtags
  1001. subject: New trends up for review on %{instance}
  1002. aliases:
  1003. add_new: Create alias
  1004. created_msg: Successfully created a new alias. You can now initiate the move from the old account.
  1005. deleted_msg: Successfully removed the alias. Moving from that account to this one will no longer be possible.
  1006. empty: You have no aliases.
  1007. 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>.
  1008. remove: Unlink alias
  1009. appearance:
  1010. advanced_web_interface: Advanced web interface
  1011. 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.'
  1012. animations_and_accessibility: Animations and accessibility
  1013. confirmation_dialogs: Confirmation dialogues
  1014. discovery: Discovery
  1015. localization:
  1016. body: Mastodon is translated by volunteers.
  1017. guide_link: https://crowdin.com/project/mastodon
  1018. guide_link_text: Everyone can contribute.
  1019. sensitive_content: Sensitive content
  1020. application_mailer:
  1021. notification_preferences: Change e-mail preferences
  1022. salutation: "%{name},"
  1023. settings: 'Change e-mail preferences: %{link}'
  1024. unsubscribe: Unsubscribe
  1025. view: 'View:'
  1026. view_profile: View profile
  1027. view_status: View post
  1028. applications:
  1029. created: Application successfully created
  1030. destroyed: Application successfully deleted
  1031. logout: Log out
  1032. regenerate_token: Regenerate access token
  1033. token_regenerated: Access token successfully regenerated
  1034. warning: Be very careful with this data. Never share it with anyone!
  1035. your_token: Your access token
  1036. auth:
  1037. apply_for_account: Request an account
  1038. captcha_confirmation:
  1039. help_html: If you have issues solving the CAPTCHA, you can get in touch with us through %{email} and we can assist you.
  1040. 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".
  1041. title: Security check
  1042. confirmations:
  1043. awaiting_review: Your e-mail address is confirmed! The %{domain} staff is now reviewing your registration. You will receive an e-mail if they approve your account!
  1044. awaiting_review_title: Your registration is being reviewed
  1045. clicking_this_link: clicking this link
  1046. login_link: log in
  1047. proceed_to_login_html: You can now proceed to %{login_link}.
  1048. redirect_to_app_html: You should have been redirected to the <strong>%{app_name}</strong> app. If that did not happen, try %{clicking_this_link} or manually return to the app.
  1049. registration_complete: Your registration on %{domain} is now complete!
  1050. welcome_title: Welcome, %{name}!
  1051. wrong_email_hint: If that e-mail address is not correct, you can change it in account settings.
  1052. delete_account: Delete account
  1053. delete_account_html: If you wish to delete your account, you can <a href="%{path}">proceed here</a>. You will be asked for confirmation.
  1054. description:
  1055. prefix_invited_by_user: "@%{name} invites you to join this server of Mastodon!"
  1056. prefix_sign_up: Sign up on Mastodon today!
  1057. suffix: With an account, you will be able to follow people, post updates and exchange messages with users from any Mastodon server and more!
  1058. didnt_get_confirmation: Didn't receive a confirmation link?
  1059. dont_have_your_security_key: Don't have your security key?
  1060. forgot_password: Forgot your password?
  1061. invalid_reset_password_token: Password reset token is invalid or expired. Please request a new one.
  1062. link_to_otp: Enter a two-factor code from your phone or a recovery code
  1063. link_to_webauth: Use your security key device
  1064. log_in_with: Log in with
  1065. login: Log in
  1066. logout: Log out
  1067. migrate_account: Move to a different account
  1068. migrate_account_html: If you wish to redirect this account to a different one, you can <a href="%{path}">configure it here</a>.
  1069. or_log_in_with: Or log in with
  1070. privacy_policy_agreement_html: I have read and agree to the <a href="%{privacy_policy_path}" target="_blank">privacy policy</a>
  1071. progress:
  1072. confirm: Confirm e-mail
  1073. details: Your details
  1074. review: Our review
  1075. rules: Accept rules
  1076. providers:
  1077. cas: CAS
  1078. saml: SAML
  1079. register: Sign up
  1080. registration_closed: "%{instance} is not accepting new members"
  1081. resend_confirmation: Resend confirmation link
  1082. reset_password: Reset password
  1083. rules:
  1084. accept: Accept
  1085. back: Back
  1086. invited_by: 'You can join %{domain} thanks to the invitation you have received from:'
  1087. preamble: These are set and enforced by the %{domain} moderators.
  1088. preamble_invited: Before you proceed, please consider the ground rules set by the moderators of %{domain}.
  1089. title: Some ground rules.
  1090. title_invited: You've been invited.
  1091. security: Security
  1092. set_new_password: Set new password
  1093. setup:
  1094. email_below_hint_html: Check your spam folder, or request another one. You can correct your e-mail address if it's wrong.
  1095. email_settings_hint_html: Click the link we sent you to verify %{email}. We'll wait right here.
  1096. link_not_received: Didn't get a link?
  1097. new_confirmation_instructions_sent: You will receive a new e-mail with the confirmation link in a few minutes!
  1098. title: Check your inbox
  1099. sign_in:
  1100. preamble_html: Log in with your <strong>%{domain}</strong> credentials. If your account is hosted on a different server, you will not be able to log in here.
  1101. title: Log in to %{domain}
  1102. sign_up:
  1103. 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}.
  1104. 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.
  1105. title: Let's get you set up on %{domain}.
  1106. status:
  1107. account_status: Account status
  1108. confirming: Waiting for e-mail confirmation to be completed.
  1109. functional: Your account is fully operational.
  1110. 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.
  1111. redirecting_to: Your account is inactive because it is currently redirecting to %{acct}.
  1112. self_destruct: As %{domain} is closing down, you will only get limited access to your account.
  1113. view_strikes: View past strikes against your account
  1114. too_fast: Form submitted too fast, try again.
  1115. use_security_key: Use security key
  1116. challenge:
  1117. confirm: Continue
  1118. hint_html: "<strong>Tip:</strong> We won't ask you for your password again for the next hour."
  1119. invalid_password: Invalid password
  1120. prompt: Confirm password to continue
  1121. crypto:
  1122. errors:
  1123. invalid_key: is not a valid Ed25519 or Curve25519 key
  1124. invalid_signature: is not a valid Ed25519 signature
  1125. date:
  1126. formats:
  1127. default: "%b %d, %Y"
  1128. with_month_name: "%B %d, %Y"
  1129. datetime:
  1130. distance_in_words:
  1131. about_x_hours: "%{count}h"
  1132. about_x_months: "%{count}mo"
  1133. about_x_years: "%{count}y"
  1134. almost_x_years: "%{count}y"
  1135. half_a_minute: Just now
  1136. less_than_x_minutes: "%{count}m"
  1137. less_than_x_seconds: Just now
  1138. over_x_years: "%{count}y"
  1139. x_days: "%{count}d"
  1140. x_minutes: "%{count}m"
  1141. x_months: "%{count}mo"
  1142. x_seconds: "%{count}s"
  1143. deletes:
  1144. challenge_not_passed: The information you entered was not correct
  1145. confirm_password: Enter your current password to verify your identity
  1146. confirm_username: Enter your username to confirm the procedure
  1147. proceed: Delete account
  1148. success_msg: Your account was successfully deleted
  1149. warning:
  1150. before: 'Before proceeding, please read these notes carefully:'
  1151. caches: Content that has been cached by other servers may persist
  1152. data_removal: Your posts and other data will be permanently removed
  1153. email_change_html: You can <a href="%{path}">change your e-mail address</a> without deleting your account
  1154. email_contact_html: If it still doesn't arrive, you can e-mail <a href="mailto:%{email}">%{email}</a> for help
  1155. email_reconfirmation_html: If you are not receiving the confirmation e-mail, you can <a href="%{path}">request it again</a>
  1156. irreversible: You will not be able to restore or reactivate your account
  1157. more_details_html: For more details, see the <a href="%{terms_path}">privacy policy</a>.
  1158. username_available: Your username will become available again
  1159. username_unavailable: Your username will remain unavailable
  1160. disputes:
  1161. strikes:
  1162. action_taken: Action taken
  1163. appeal: Appeal
  1164. appeal_approved: This strike has been successfully appealed and is no longer valid
  1165. appeal_rejected: The appeal has been rejected
  1166. appeal_submitted_at: Appeal submitted
  1167. appealed_msg: Your appeal has been submitted. If it is approved, you will be notified.
  1168. appeals:
  1169. submit: Submit appeal
  1170. approve_appeal: Approve appeal
  1171. associated_report: Associated report
  1172. created_at: Dated
  1173. description_html: These are actions taken against your account and warnings that have been sent to you by the staff of %{instance}.
  1174. recipient: Addressed to
  1175. reject_appeal: Reject appeal
  1176. status: 'Post #%{id}'
  1177. status_removed: Post already removed from system
  1178. title: "%{action} from %{date}"
  1179. title_actions:
  1180. delete_statuses: Post removal
  1181. disable: Freezing of account
  1182. mark_statuses_as_sensitive: Marking of posts as sensitive
  1183. none: Warning
  1184. sensitive: Marking of account as sensitive
  1185. silence: Limitation of account
  1186. suspend: Suspension of account
  1187. your_appeal_approved: Your appeal has been approved
  1188. your_appeal_pending: You have submitted an appeal
  1189. your_appeal_rejected: Your appeal has been rejected
  1190. domain_validator:
  1191. invalid_domain: is not a valid domain name
  1192. edit_profile:
  1193. basic_information: Basic information
  1194. hint_html: "<strong>Customise 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."
  1195. other: Other
  1196. errors:
  1197. '400': The request you submitted was invalid or malformed.
  1198. '403': You don't have permission to view this page.
  1199. '404': The page you are looking for isn't here.
  1200. '406': This page is not available in the requested format.
  1201. '410': The page you were looking for doesn't exist here anymore.
  1202. '422':
  1203. content: Security verification failed. Are you blocking cookies?
  1204. title: Security verification failed
  1205. '429': Too many requests
  1206. '500':
  1207. content: We're sorry, but something went wrong on our end.
  1208. title: This page is not correct
  1209. '503': The page could not be served due to a temporary server failure.
  1210. 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.
  1211. existing_username_validator:
  1212. not_found: could not find a local user with that username
  1213. not_found_multiple: could not find %{usernames}
  1214. exports:
  1215. archive_takeout:
  1216. date: Date
  1217. download: Download your archive
  1218. 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.
  1219. in_progress: Compiling your archive...
  1220. request: Request your archive
  1221. size: Size
  1222. blocks: You block
  1223. bookmarks: Bookmarks
  1224. csv: CSV
  1225. domain_blocks: Domain blocks
  1226. lists: Lists
  1227. mutes: You mute
  1228. storage: Media storage
  1229. featured_tags:
  1230. add_new: Add new
  1231. errors:
  1232. limit: You have already featured the maximum number of hashtags
  1233. hint_html: "<strong>What are featured hashtags?</strong> They are displayed prominently on your public profile and allow people to browse your public posts specifically under those hashtags. They are a great tool for keeping track of creative works or long-term projects."
  1234. filters:
  1235. contexts:
  1236. account: Profiles
  1237. home: Home and lists
  1238. notifications: Notifications
  1239. public: Public timelines
  1240. thread: Conversations
  1241. edit:
  1242. add_keyword: Add keyword
  1243. keywords: Keywords
  1244. statuses: Individual posts
  1245. 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>.
  1246. title: Edit filter
  1247. errors:
  1248. 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.
  1249. invalid_context: None or invalid context supplied
  1250. index:
  1251. contexts: Filters in %{contexts}
  1252. delete: Delete
  1253. empty: You have no filters.
  1254. expires_in: Expires in %{distance}
  1255. expires_on: Expires on %{date}
  1256. keywords:
  1257. one: "%{count} keyword"
  1258. other: "%{count} keywords"
  1259. statuses:
  1260. one: "%{count} post"
  1261. other: "%{count} posts"
  1262. statuses_long:
  1263. one: "%{count} individual post hidden"
  1264. other: "%{count} individual posts hidden"
  1265. title: Filters
  1266. new:
  1267. save: Save new filter
  1268. title: Add new filter
  1269. statuses:
  1270. back_to_filter: Back to filter
  1271. batch:
  1272. remove: Remove from filter
  1273. index:
  1274. hint: This filter applies to select individual posts regardless of other criteria. You can add more posts to this filter from the web interface.
  1275. title: Filtered posts
  1276. generic:
  1277. all: All
  1278. all_items_on_page_selected_html:
  1279. one: "<strong>%{count}</strong> item on this page is selected."
  1280. other: All <strong>%{count}</strong> items on this page are selected.
  1281. all_matching_items_selected_html:
  1282. one: "<strong>%{count}</strong> item matching your search is selected."
  1283. other: All <strong>%{count}</strong> items matching your search are selected.
  1284. cancel: Cancel
  1285. changes_saved_msg: Changes successfully saved!
  1286. confirm: Confirm
  1287. copy: Copy
  1288. delete: Delete
  1289. deselect: Deselect all
  1290. none: None
  1291. order_by: Order by
  1292. save_changes: Save changes
  1293. select_all_matching_items:
  1294. one: Select %{count} item matching your search.
  1295. other: Select all %{count} items matching your search.
  1296. today: today
  1297. validation_errors:
  1298. one: Something isn't quite right yet! Please review the error below
  1299. other: Something isn't quite right yet! Please review %{count} errors below
  1300. imports:
  1301. errors:
  1302. empty: Empty CSV file
  1303. incompatible_type: Incompatible with the selected import type
  1304. invalid_csv_file: 'Invalid CSV file. Error: %{error}'
  1305. over_rows_processing_limit: contains more than %{count} rows
  1306. too_large: File is too large
  1307. failures: Failures
  1308. imported: Imported
  1309. mismatched_types_warning: It appears you may have selected the wrong type for this import, please double-check.
  1310. modes:
  1311. merge: Merge
  1312. merge_long: Keep existing records and add new ones
  1313. overwrite: Overwrite
  1314. overwrite_long: Replace current records with the new ones
  1315. overwrite_preambles:
  1316. blocking_html: You are about to <strong>replace your block list</strong> with up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong>.
  1317. bookmarks_html: You are about to <strong>replace your bookmarks</strong> with up to <strong>%{total_items} posts</strong> from <strong>%{filename}</strong>.
  1318. 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>.
  1319. 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>.
  1320. 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.
  1321. 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>.
  1322. preambles:
  1323. blocking_html: You are about to <strong>block</strong> up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong>.
  1324. bookmarks_html: You are about to add up to <strong>%{total_items} posts</strong> from <strong>%{filename}</strong> to your <strong>bookmarks</strong>.
  1325. domain_blocking_html: You are about to <strong>block</strong> up to <strong>%{total_items} domains</strong> from <strong>%{filename}</strong>.
  1326. following_html: You are about to <strong>follow</strong> up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong>.
  1327. 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.
  1328. muting_html: You are about to <strong>mute</strong> up to <strong>%{total_items} accounts</strong> from <strong>%{filename}</strong>.
  1329. preface: You can import data that you have exported from another server, such as a list of the people you are following or blocking.
  1330. recent_imports: Recent imports
  1331. states:
  1332. finished: Finished
  1333. in_progress: In progress
  1334. scheduled: Scheduled
  1335. unconfirmed: Unconfirmed
  1336. status: Status
  1337. success: Your data was successfully uploaded and will be processed in due time
  1338. time_started: Started at
  1339. titles:
  1340. blocking: Importing blocked accounts
  1341. bookmarks: Importing bookmarks
  1342. domain_blocking: Importing blocked domains
  1343. following: Importing followed accounts
  1344. lists: Importing lists
  1345. muting: Importing muted accounts
  1346. type: Import type
  1347. type_groups:
  1348. constructive: Follows & Bookmarks
  1349. destructive: Blocks & mutes
  1350. types:
  1351. blocking: Blocking list
  1352. bookmarks: Bookmarks
  1353. domain_blocking: Domain blocking list
  1354. following: Following list
  1355. lists: Lists
  1356. muting: Muting list
  1357. upload: Upload
  1358. invites:
  1359. delete: Deactivate
  1360. expired: Expired
  1361. expires_in:
  1362. '1800': 30 minutes
  1363. '21600': 6 hours
  1364. '3600': 1 hour
  1365. '43200': 12 hours
  1366. '604800': 1 week
  1367. '86400': 1 day
  1368. expires_in_prompt: Never
  1369. generate: Generate invite link
  1370. invalid: This invite is not valid
  1371. invited_by: 'You were invited by:'
  1372. max_uses:
  1373. one: 1 use
  1374. other: "%{count} uses"
  1375. max_uses_prompt: No limit
  1376. prompt: Generate and share links with others to grant access to this server
  1377. table:
  1378. expires_at: Expires
  1379. uses: Uses
  1380. title: Invite people
  1381. lists:
  1382. errors:
  1383. limit: You have reached the maximum number of lists
  1384. login_activities:
  1385. authentication_methods:
  1386. otp: two-factor authentication app
  1387. password: password
  1388. sign_in_token: e-mail security code
  1389. webauthn: security keys
  1390. description_html: If you see activity that you don't recognise, consider changing your password and enabling two-factor authentication.
  1391. empty: No authentication history available
  1392. failed_sign_in_html: Failed login attempt with %{method} from %{ip} (%{browser})
  1393. successful_sign_in_html: Successful login with %{method} from %{ip} (%{browser})
  1394. title: Authentication history
  1395. mail_subscriptions:
  1396. unsubscribe:
  1397. action: Yes, unsubscribe
  1398. complete: Unsubscribed
  1399. 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>.
  1400. emails:
  1401. notification_emails:
  1402. favourite: favourite notification e-mails
  1403. follow: follow notification e-mails
  1404. follow_request: follow request e-mails
  1405. mention: mention notification e-mails
  1406. reblog: boost notification e-mails
  1407. resubscribe_html: If you've unsubscribed by mistake, you can re-subscribe from your <a href="%{settings_path}">e-mail notification settings</a>.
  1408. success_html: You'll no longer receive %{type} for Mastodon on %{domain} to your e-mail at %{email}.
  1409. title: Unsubscribe
  1410. media_attachments:
  1411. validations:
  1412. images_and_video: Cannot attach a video to a post that already contains images
  1413. not_ready: Cannot attach files that have not finished processing. Try again in a moment!
  1414. too_many: Cannot attach more than 4 files
  1415. migrations:
  1416. acct: Moved to
  1417. cancel: Cancel redirect
  1418. cancel_explanation: Cancelling the redirect will re-activate your current account, but will not bring back followers that have been moved to that account.
  1419. cancelled_msg: Successfully cancelled the redirect.
  1420. errors:
  1421. already_moved: is the same account you have already moved to
  1422. missing_also_known_as: is not an alias of this account
  1423. move_to_self: cannot be current account
  1424. not_found: could not be found
  1425. on_cooldown: You are on cooldown
  1426. followers_count: Followers at time of move
  1427. incoming_migrations: Moving from a different account
  1428. incoming_migrations_html: To move from another account to this one, first you need to <a href="%{path}">create an account alias</a>.
  1429. moved_msg: Your account is now redirecting to %{acct} and your followers are being moved over.
  1430. not_redirecting: Your account is not redirecting to any other account currently.
  1431. on_cooldown: You have recently migrated your account. This function will become available again in %{count} days.
  1432. past_migrations: Past migrations
  1433. proceed_with_move: Move followers
  1434. redirected_msg: Your account is now redirecting to %{acct}.
  1435. redirecting_to: Your account is redirecting to %{acct}.
  1436. set_redirect: Set redirect
  1437. warning:
  1438. backreference_required: The new account must first be configured to back-reference this one
  1439. before: 'Before proceeding, please read these notes carefully:'
  1440. cooldown: After moving there is a waiting period during which you will not be able to move again
  1441. disabled_account: Your current account will not be fully usable afterwards. However, you will have access to data export as well as re-activation.
  1442. followers: This action will move all followers from the current account to the new account
  1443. only_redirect_html: Alternatively, you can <a href="%{path}">only put up a redirect on your profile</a>.
  1444. other_data: No other data will be moved automatically
  1445. redirect: Your current account's profile will be updated with a redirect notice and be excluded from searches
  1446. moderation:
  1447. title: Moderation
  1448. move_handler:
  1449. carry_blocks_over_text: This user moved from %{acct}, which you had blocked.
  1450. carry_mutes_over_text: This user moved from %{acct}, which you had muted.
  1451. copy_account_note_text: 'This user moved from %{acct}, here were your previous notes about them:'
  1452. navigation:
  1453. toggle_menu: Toggle menu
  1454. notification_mailer:
  1455. admin:
  1456. report:
  1457. subject: "%{name} submitted a report"
  1458. sign_up:
  1459. subject: "%{name} signed up"
  1460. favourite:
  1461. body: 'Your post was favourited by %{name}:'
  1462. subject: "%{name} favourited your post"
  1463. title: New favourite
  1464. follow:
  1465. body: "%{name} is now following you!"
  1466. subject: "%{name} is now following you"
  1467. title: New follower
  1468. follow_request:
  1469. action: Manage follow requests
  1470. body: "%{name} has requested to follow you"
  1471. subject: 'Pending follower: %{name}'
  1472. title: New follow request
  1473. mention:
  1474. action: Reply
  1475. body: 'You were mentioned by %{name} in:'
  1476. subject: You were mentioned by %{name}
  1477. title: New mention
  1478. poll:
  1479. subject: A poll by %{name} has ended
  1480. reblog:
  1481. body: 'Your post was boosted by %{name}:'
  1482. subject: "%{name} boosted your post"
  1483. title: New boost
  1484. status:
  1485. subject: "%{name} just posted"
  1486. update:
  1487. subject: "%{name} edited a post"
  1488. notifications:
  1489. administration_emails: Admin e-mail notifications
  1490. email_events: Events for e-mail notifications
  1491. email_events_hint: 'Select events that you want to receive notifications for:'
  1492. other_settings: Other notifications settings
  1493. number:
  1494. human:
  1495. decimal_units:
  1496. format: "%n%u"
  1497. units:
  1498. billion: B
  1499. million: M
  1500. quadrillion: Q
  1501. thousand: K
  1502. trillion: T
  1503. otp_authentication:
  1504. code_hint: Enter the code generated by your authenticator app to confirm
  1505. 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.
  1506. enable: Enable
  1507. 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."
  1508. manual_instructions: 'If you can''t scan the QR code and need to enter it manually, here is the plain-text secret:'
  1509. setup: Set up
  1510. wrong_code: The entered code was invalid! Are server time and device time correct?
  1511. pagination:
  1512. newer: Newer
  1513. next: Next
  1514. older: Older
  1515. prev: Prev
  1516. truncate: "&hellip;"
  1517. polls:
  1518. errors:
  1519. already_voted: You have already voted on this poll
  1520. duplicate_options: contain duplicate items
  1521. duration_too_long: is too far into the future
  1522. duration_too_short: is too soon
  1523. expired: The poll has already ended
  1524. invalid_choice: The chosen vote option does not exist
  1525. over_character_limit: cannot be longer than %{max} characters each
  1526. self_vote: You cannot vote in your own polls
  1527. too_few_options: must have more than one item
  1528. too_many_options: can't contain more than %{max} items
  1529. preferences:
  1530. other: Other
  1531. posting_defaults: Posting defaults
  1532. public_timelines: Public timelines
  1533. privacy:
  1534. hint_html: "<strong>Customise 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."
  1535. privacy: Privacy
  1536. 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.
  1537. reach: Reach
  1538. 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?
  1539. search: Search
  1540. 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.
  1541. title: Privacy and reach
  1542. privacy_policy:
  1543. title: Privacy Policy
  1544. reactions:
  1545. errors:
  1546. limit_reached: Limit of different reactions reached
  1547. unrecognized_emoji: is not a recognised emoji
  1548. relationships:
  1549. activity: Account activity
  1550. confirm_follow_selected_followers: Are you sure you want to follow selected followers?
  1551. confirm_remove_selected_followers: Are you sure you want to remove selected followers?
  1552. confirm_remove_selected_follows: Are you sure you want to remove selected follows?
  1553. dormant: Dormant
  1554. follow_failure: Could not follow some of the selected accounts.
  1555. follow_selected_followers: Follow selected followers
  1556. followers: Followers
  1557. following: Following
  1558. invited: Invited
  1559. last_active: Last active
  1560. most_recent: Most recent
  1561. moved: Moved
  1562. mutual: Mutual
  1563. primary: Primary
  1564. relationship: Relationship
  1565. remove_selected_domains: Remove all followers from the selected domains
  1566. remove_selected_followers: Remove selected followers
  1567. remove_selected_follows: Unfollow selected users
  1568. status: Account status
  1569. remote_follow:
  1570. missing_resource: Could not find the required redirect URL for your account
  1571. reports:
  1572. errors:
  1573. invalid_rules: does not reference valid rules
  1574. rss:
  1575. content_warning: 'Content warning:'
  1576. descriptions:
  1577. account: Public posts from @%{acct}
  1578. tag: 'Public posts tagged #%{hashtag}'
  1579. scheduled_statuses:
  1580. over_daily_limit: You have exceeded the limit of %{limit} scheduled posts for today
  1581. over_total_limit: You have exceeded the limit of %{limit} scheduled posts
  1582. too_soon: The scheduled date must be in the future
  1583. self_destruct:
  1584. lead_html: Unfortunately, <strong>%{domain}</strong> is permanently closing down. If you had an account there, you will not be able to continue using it, but you can still request a backup of your data.
  1585. title: This server is closing down
  1586. sessions:
  1587. activity: Last activity
  1588. browser: Browser
  1589. browsers:
  1590. alipay: Alipay
  1591. blackberry: BlackBerry
  1592. chrome: Chrome
  1593. edge: Microsoft Edge
  1594. electron: Electron
  1595. firefox: Firefox
  1596. generic: Unknown browser
  1597. huawei_browser: Huawei Browser
  1598. ie: Internet Explorer
  1599. micro_messenger: MicroMessenger
  1600. nokia: Nokia S40 Ovi Browser
  1601. opera: Opera
  1602. otter: Otter
  1603. phantom_js: PhantomJS
  1604. qq: QQ Browser
  1605. safari: Safari
  1606. uc_browser: UC Browser
  1607. unknown_browser: Unknown Browser
  1608. weibo: Weibo
  1609. current_session: Current session
  1610. description: "%{browser} on %{platform}"
  1611. explanation: These are the web browsers currently logged in to your Mastodon account.
  1612. ip: IP
  1613. platforms:
  1614. adobe_air: Adobe Air
  1615. android: Android
  1616. blackberry: BlackBerry
  1617. chrome_os: ChromeOS
  1618. firefox_os: Firefox OS
  1619. ios: iOS
  1620. kai_os: KaiOS
  1621. linux: Linux
  1622. mac: macOS
  1623. unknown_platform: Unknown Platform
  1624. windows: Windows
  1625. windows_mobile: Windows Mobile
  1626. windows_phone: Windows Phone
  1627. revoke: Revoke
  1628. revoke_success: Session successfully revoked
  1629. title: Sessions
  1630. view_authentication_history: View authentication history of your account
  1631. settings:
  1632. account: Account
  1633. account_settings: Account settings
  1634. aliases: Account aliases
  1635. appearance: Appearance
  1636. authorized_apps: Authorised apps
  1637. back: Back to Mastodon
  1638. delete: Account deletion
  1639. development: Development
  1640. edit_profile: Edit profile
  1641. export: Data export
  1642. featured_tags: Featured hashtags
  1643. import: Import
  1644. import_and_export: Import and export
  1645. migrate: Account migration
  1646. notifications: Notifications
  1647. preferences: Preferences
  1648. profile: Profile
  1649. relationships: Follows and followers
  1650. statuses_cleanup: Automated post deletion
  1651. strikes: Moderation strikes
  1652. two_factor_authentication: Two-factor Auth
  1653. webauthn_authentication: Security keys
  1654. statuses:
  1655. attached:
  1656. audio:
  1657. one: "%{count} audio"
  1658. other: "%{count} audio"
  1659. description: 'Attached: %{attached}'
  1660. image:
  1661. one: "%{count} image"
  1662. other: "%{count} images"
  1663. video:
  1664. one: "%{count} video"
  1665. other: "%{count} videos"
  1666. boosted_from_html: Boosted from %{acct_link}
  1667. content_warning: 'Content warning: %{warning}'
  1668. default_language: Same as interface language
  1669. disallowed_hashtags:
  1670. one: 'contained a disallowed hashtag: %{tags}'
  1671. other: 'contained the disallowed hashtags: %{tags}'
  1672. edited_at_html: Edited %{date}
  1673. errors:
  1674. in_reply_not_found: The post you are trying to reply to does not appear to exist.
  1675. open_in_web: Open in web
  1676. over_character_limit: character limit of %{max} exceeded
  1677. pin_errors:
  1678. direct: Posts that are only visible to mentioned users cannot be pinned
  1679. limit: You have already pinned the maximum number of posts
  1680. ownership: Someone else's post cannot be pinned
  1681. reblog: A boost cannot be pinned
  1682. poll:
  1683. total_people:
  1684. one: "%{count} person"
  1685. other: "%{count} people"
  1686. total_votes:
  1687. one: "%{count} vote"
  1688. other: "%{count} votes"
  1689. vote: Vote
  1690. show_more: Show more
  1691. show_newer: Show newer
  1692. show_older: Show older
  1693. show_thread: Show thread
  1694. title: '%{name}: "%{quote}"'
  1695. visibilities:
  1696. direct: Direct
  1697. private: Followers-only
  1698. private_long: Only show to followers
  1699. public: Public
  1700. public_long: Everyone can see
  1701. unlisted: Unlisted
  1702. unlisted_long: Everyone can see, but not listed on public timelines
  1703. statuses_cleanup:
  1704. enabled: Automatically delete old posts
  1705. enabled_hint: Automatically deletes your posts once they reach a specified age threshold, unless they match one of the exceptions below
  1706. exceptions: Exceptions
  1707. 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.
  1708. ignore_favs: Ignore favourites
  1709. ignore_reblogs: Ignore boosts
  1710. interaction_exceptions: Exceptions based on interactions
  1711. interaction_exceptions_explanation: Note that there is no guarantee for posts to be deleted if they go below the favourite or boost threshold after having once gone over them.
  1712. keep_direct: Keep direct messages
  1713. keep_direct_hint: Doesn't delete any of your direct messages
  1714. keep_media: Keep posts with media attachments
  1715. keep_media_hint: Doesn't delete any of your posts that have media attachments
  1716. keep_pinned: Keep pinned posts
  1717. keep_pinned_hint: Doesn't delete any of your pinned posts
  1718. keep_polls: Keep polls
  1719. keep_polls_hint: Doesn't delete any of your polls
  1720. keep_self_bookmark: Keep posts you bookmarked
  1721. keep_self_bookmark_hint: Doesn't delete your own posts if you have bookmarked them
  1722. keep_self_fav: Keep posts you favourited
  1723. keep_self_fav_hint: Doesn't delete your own posts if you have favourited them
  1724. min_age:
  1725. '1209600': 2 weeks
  1726. '15778476': 6 months
  1727. '2629746': 1 month
  1728. '31556952': 1 year
  1729. '5259492': 2 months
  1730. '604800': 1 week
  1731. '63113904': 2 years
  1732. '7889238': 3 months
  1733. min_age_label: Age threshold
  1734. min_favs: Keep posts favourited at least
  1735. min_favs_hint: Doesn't delete any of your posts that has received at least this number of favourites. Leave blank to delete posts regardless of their number of favourites
  1736. min_reblogs: Keep posts boosted at least
  1737. 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
  1738. stream_entries:
  1739. sensitive_content: Sensitive content
  1740. strikes:
  1741. errors:
  1742. too_late: It is too late to appeal this strike
  1743. tags:
  1744. does_not_match_previous_name: does not match the previous name
  1745. themes:
  1746. contrast: Mastodon (High contrast)
  1747. default: Mastodon (Dark)
  1748. mastodon-light: Mastodon (Light)
  1749. time:
  1750. formats:
  1751. default: "%b %d, %Y, %H:%M"
  1752. month: "%b %Y"
  1753. time: "%H:%M"
  1754. with_time_zone: "%b %d, %Y, %H:%M %Z"
  1755. translation:
  1756. errors:
  1757. quota_exceeded: The server-wide usage quota for the translation service has been exceeded.
  1758. too_many_requests: There have been too many requests to the translation service recently.
  1759. two_factor_authentication:
  1760. add: Add
  1761. disable: Disable 2FA
  1762. disabled_success: Two-factor authentication successfully disabled
  1763. edit: Edit
  1764. enabled: Two-factor authentication is enabled
  1765. enabled_success: Two-factor authentication successfully enabled
  1766. generate_recovery_codes: Generate recovery codes
  1767. 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.
  1768. methods: Two-factor methods
  1769. otp: Authenticator app
  1770. recovery_codes: Backup recovery codes
  1771. recovery_codes_regenerated: Recovery codes successfully regenerated
  1772. 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.
  1773. webauthn: Security keys
  1774. user_mailer:
  1775. appeal_approved:
  1776. action: Go to your account
  1777. 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.
  1778. subject: Your appeal from %{date} has been approved
  1779. title: Appeal approved
  1780. appeal_rejected:
  1781. explanation: The appeal of the strike against your account on %{strike_date} that you submitted on %{appeal_date} has been rejected.
  1782. subject: Your appeal from %{date} has been rejected
  1783. title: Appeal rejected
  1784. backup_ready:
  1785. explanation: You requested a full backup of your Mastodon account. It's now ready for download!
  1786. subject: Your archive is ready for download
  1787. title: Archive takeout
  1788. suspicious_sign_in:
  1789. change_password: change your password
  1790. details: 'Here are details of the login:'
  1791. explanation: We've detected a login to your account from a new IP address.
  1792. further_actions_html: If this wasn't you, we recommend that you %{action} immediately and enable two-factor authentication to keep your account secure.
  1793. subject: Your account has been accessed from a new IP address
  1794. title: A new login
  1795. warning:
  1796. appeal: Submit an appeal
  1797. appeal_description: If you believe this is an error, you can submit an appeal to the staff of %{instance}.
  1798. categories:
  1799. spam: Spam
  1800. violation: Content violates the following community guidelines
  1801. explanation:
  1802. 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}.
  1803. 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.
  1804. 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.
  1805. sensitive: From now on, all your uploaded media files will be marked as sensitive and hidden behind a click-through warning.
  1806. 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.
  1807. suspend: You can no longer use your account, and your profile and other data are no longer accessible. You can still log in 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.
  1808. reason: 'Reason:'
  1809. statuses: 'Posts cited:'
  1810. subject:
  1811. delete_statuses: Your posts on %{acct} have been removed
  1812. disable: Your account %{acct} has been frozen
  1813. mark_statuses_as_sensitive: Your posts on %{acct} have been marked as sensitive
  1814. none: Warning for %{acct}
  1815. sensitive: Your posts on %{acct} will be marked as sensitive from now on
  1816. silence: Your account %{acct} has been limited
  1817. suspend: Your account %{acct} has been suspended
  1818. title:
  1819. delete_statuses: Posts removed
  1820. disable: Account frozen
  1821. mark_statuses_as_sensitive: Posts marked as sensitive
  1822. none: Warning
  1823. sensitive: Account marked as sensitive
  1824. silence: Account limited
  1825. suspend: Account suspended
  1826. welcome:
  1827. edit_profile_action: Setup profile
  1828. edit_profile_step: You can customise 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.
  1829. explanation: Here are some tips to get you started
  1830. final_action: Start posting
  1831. 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.'
  1832. full_handle: Your full handle
  1833. full_handle_hint: This is what you would tell your friends so they can message or follow you from another server.
  1834. subject: Welcome to Mastodon
  1835. title: Welcome aboard, %{name}!
  1836. users:
  1837. follow_limit_reached: You cannot follow more than %{limit} people
  1838. go_to_sso_account_settings: Go to your identity provider's account settings
  1839. invalid_otp_token: Invalid two-factor code
  1840. otp_lost_help_html: If you lost access to both, you may get in touch with %{email}
  1841. seamless_external_login: You are logged in via an external service, so password and e-mail settings are not available.
  1842. signed_in_as: 'Logged in as:'
  1843. verification:
  1844. 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.
  1845. here_is_how: Here's how
  1846. 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."
  1847. 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.
  1848. verification: Verification
  1849. verified_links: Your verified links
  1850. webauthn_credentials:
  1851. add: Add new security key
  1852. create:
  1853. error: There was a problem adding your security key. Please try again.
  1854. success: Your security key was successfully added.
  1855. delete: Delete
  1856. delete_confirmation: Are you sure you want to delete this security key?
  1857. description_html: If you enable <strong>security key authentication</strong>, logging in will require you to use one of your security keys.
  1858. destroy:
  1859. error: There was a problem deleting you security key. Please try again.
  1860. success: Your security key was successfully deleted.
  1861. invalid_credential: Invalid security key
  1862. nickname_hint: Enter the nickname of your new security key
  1863. not_enabled: You haven't enabled WebAuthn yet
  1864. not_supported: This browser doesn't support security keys
  1865. otp_required: To use security keys please enable two-factor authentication first.
  1866. registered_on: Registered on %{date}