en.yml 93 KB

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