diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-11-04 02:28:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-04 02:28:37 +0100 |
commit | 139ea4c981f563e51d80ec3ec407d6265e29cb70 (patch) | |
tree | b07afc6f133a6f96274155e79bfaf78efc7b3b7a | |
parent | bfafb114a2135b1f21ba7e6d54ee13e8da75b629 (diff) |
Fix limited account hint referencing "your" server when logged out (#19711)
-rw-r--r-- | app/javascript/mastodon/features/account_timeline/components/limited_account_hint.js | 3 | ||||
-rw-r--r-- | app/javascript/mastodon/locales/en.json | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/app/javascript/mastodon/features/account_timeline/components/limited_account_hint.js b/app/javascript/mastodon/features/account_timeline/components/limited_account_hint.js index 6b025596c..80b967642 100644 --- a/app/javascript/mastodon/features/account_timeline/components/limited_account_hint.js +++ b/app/javascript/mastodon/features/account_timeline/components/limited_account_hint.js @@ -4,6 +4,7 @@ import { connect } from 'react-redux'; import { revealAccount } from 'mastodon/actions/accounts'; import { FormattedMessage } from 'react-intl'; import Button from 'mastodon/components/button'; +import { domain } from 'mastodon/initial_state'; const mapDispatchToProps = (dispatch, { accountId }) => ({ @@ -26,7 +27,7 @@ class LimitedAccountHint extends React.PureComponent { return ( <div className='limited-account-hint'> - <p><FormattedMessage id='limited_account_hint.title' defaultMessage='This profile has been hidden by the moderators of your server.' /></p> + <p><FormattedMessage id='limited_account_hint.title' defaultMessage='This profile has been hidden by the moderators of {domain}.' values={{ domain }} /></p> <Button onClick={reveal}><FormattedMessage id='limited_account_hint.action' defaultMessage='Show profile anyway' /></Button> </div> ); diff --git a/app/javascript/mastodon/locales/en.json b/app/javascript/mastodon/locales/en.json index 7d5c19205..fd504fa04 100644 --- a/app/javascript/mastodon/locales/en.json +++ b/app/javascript/mastodon/locales/en.json @@ -339,7 +339,7 @@ "lightbox.next": "Next", "lightbox.previous": "Previous", "limited_account_hint.action": "Show profile anyway", - "limited_account_hint.title": "This profile has been hidden by the moderators of your server.", + "limited_account_hint.title": "This profile has been hidden by the moderators of {domain}.", "lists.account.add": "Add to list", "lists.account.remove": "Remove from list", "lists.delete": "Delete list", |