about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/domain.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/components/domain.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/components/domain.js')
-rw-r--r--app/javascript/mastodon/components/domain.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/components/domain.js b/app/javascript/mastodon/components/domain.js
index 85729ca94..697065d87 100644
--- a/app/javascript/mastodon/components/domain.js
+++ b/app/javascript/mastodon/components/domain.js
@@ -5,7 +5,7 @@ import { defineMessages, injectIntl } from 'react-intl';
 import ImmutablePureComponent from 'react-immutable-pure-component';
 
 const messages = defineMessages({
-  unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unhide {domain}' },
+  unblockDomain: { id: 'account.unblock_domain', defaultMessage: 'Unblock domain {domain}' },
 });
 
 export default @injectIntl