about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/domain_blocks/index.js
diff options
context:
space:
mode:
authormayaeh <mayaeh@marimo-net.org>2020-03-09 17:13:21 +0900
committerGitHub <noreply@github.com>2020-03-09 09:13:21 +0100
commit310d729745ad34b1b039f2ec611b9bda5b73f252 (patch)
tree93abc551652723339e71f15d0ac206764f5d48f0 /app/javascript/mastodon/features/domain_blocks/index.js
parent8a2b8e0321691ceab1c0c0c00c686d71cb065ae6 (diff)
Change the string "hidden" to "blocked" in WebUI (#13221)
* Change the string "hidden" to "blocked" in WebUI.

* update
Diffstat (limited to 'app/javascript/mastodon/features/domain_blocks/index.js')
-rw-r--r--app/javascript/mastodon/features/domain_blocks/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/javascript/mastodon/features/domain_blocks/index.js b/app/javascript/mastodon/features/domain_blocks/index.js
index 06533d5ac..a6d988912 100644
--- a/app/javascript/mastodon/features/domain_blocks/index.js
+++ b/app/javascript/mastodon/features/domain_blocks/index.js
@@ -13,8 +13,8 @@ import { fetchDomainBlocks, expandDomainBlocks } from '../../actions/domain_bloc
 import ScrollableList from '../../components/scrollable_list';
 
 const messages = defineMessages({
-  heading: { id: 'column.domain_blocks', defaultMessage: 'Hidden domains' },
-  unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unhide {domain}' },
+  heading: { id: 'column.domain_blocks', defaultMessage: 'Blocked domains' },
+  unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unblock domain {domain}' },
 });
 
 const mapStateToProps = state => ({
@@ -55,7 +55,7 @@ class Blocks extends ImmutablePureComponent {
       );
     }
 
-    const emptyMessage = <FormattedMessage id='empty_column.domain_blocks' defaultMessage='There are no hidden domains yet.' />;
+    const emptyMessage = <FormattedMessage id='empty_column.domain_blocks' defaultMessage='There are no blocked domains yet.' />;
 
     return (
       <Column bindToDocument={!multiColumn} icon='minus-circle' heading={intl.formatMessage(messages.heading)}>