diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-12-14 09:08:09 +0100 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2020-12-15 16:19:28 +0100 |
commit | 5ca7bc2beda6fe08f2afeecd62f5a5b506d7f101 (patch) | |
tree | f6851ee27f4abfa3afd9d2f79167c18fe5d7127a /app/javascript/flavours/glitch | |
parent | e4f8679eaeea062e1f9ca9f58703b51ff8162c35 (diff) |
[Glitch] Change "Profile unavailable" string to "Account suspended" in web UI
Port 4fd306200396a17c030c53483ccd7faa6c2f7291 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch')
-rw-r--r-- | app/javascript/flavours/glitch/features/account_gallery/index.js | 2 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/features/account_timeline/index.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/features/account_gallery/index.js b/app/javascript/flavours/glitch/features/account_gallery/index.js index fda8082cc..81203e3f8 100644 --- a/app/javascript/flavours/glitch/features/account_gallery/index.js +++ b/app/javascript/flavours/glitch/features/account_gallery/index.js @@ -168,7 +168,7 @@ class AccountGallery extends ImmutablePureComponent { {suspended ? ( <div className='empty-column-indicator'> - <FormattedMessage id='empty_column.account_unavailable' defaultMessage='Profile unavailable' /> + <FormattedMessage id='empty_column.account_suspended' defaultMessage='Account suspended' /> </div> ) : ( <div role='feed' className='account-gallery__container' ref={this.handleRef}> diff --git a/app/javascript/flavours/glitch/features/account_timeline/index.js b/app/javascript/flavours/glitch/features/account_timeline/index.js index c56cc9b8e..0d24980a9 100644 --- a/app/javascript/flavours/glitch/features/account_timeline/index.js +++ b/app/javascript/flavours/glitch/features/account_timeline/index.js @@ -117,7 +117,7 @@ class AccountTimeline extends ImmutablePureComponent { let emptyMessage; if (suspended) { - emptyMessage = <FormattedMessage id='empty_column.account_unavailable' defaultMessage='Profile unavailable' />; + emptyMessage = <FormattedMessage id='empty_column.account_suspended' defaultMessage='Account suspended' />; } else if (remote && statusIds.isEmpty()) { emptyMessage = <RemoteHint url={remoteUrl} />; } else { |