en.yml 91 KB

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