From 62c60ce520d00cbbf68c9f8aba2b33bd57d124df Mon Sep 17 00:00:00 2001 From: Keith Holliday Date: Sat, 21 Jul 2018 08:10:54 -0500 Subject: [PATCH] Added copy to detail blocks wont work on mods (#10539) * Added copy to detail blocks wont work on mods * fix(wording): "moderator" clearer than "mod" --- website/client/components/userMenu/profile.vue | 2 +- website/common/locales/en/groups.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/website/client/components/userMenu/profile.vue b/website/client/components/userMenu/profile.vue index aa35641b53..f3d1e65ea6 100644 --- a/website/client/components/userMenu/profile.vue +++ b/website/client/components/userMenu/profile.vue @@ -8,7 +8,7 @@ div button.btn.btn-secondary.gift-icon(@click='openSendGemsModal()', v-b-tooltip.hover.bottom="$t('sendGems')") .svg-icon.gift-icon(v-html="icons.gift") button.btn.btn-secondary.remove-icon(v-if='user._id !== this.userLoggedIn._id && userLoggedIn.inbox.blocks.indexOf(user._id) === -1', - @click="blockUser()", v-b-tooltip.hover.right="$t('block')") + @click="blockUser()", v-b-tooltip.hover.right="$t('blockWarning')") .svg-icon.remove-icon(v-html="icons.remove") button.btn.btn-secondary.positive-icon(v-if='user._id !== this.userLoggedIn._id && userLoggedIn.inbox.blocks.indexOf(user._id) !== -1', @click="unblockUser()", v-b-tooltip.hover.right="$t('unblock')") diff --git a/website/common/locales/en/groups.json b/website/common/locales/en/groups.json index ba06f49700..75bc3e23cd 100644 --- a/website/common/locales/en/groups.json +++ b/website/common/locales/en/groups.json @@ -143,6 +143,7 @@ "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Block", "unblock": "Un-block", + "blockWarning": "Block - This will have no effect if the player is a moderator now or becomes a moderator in future.", "pm-reply": "Send a reply", "inbox": "Inbox", "messageRequired": "A message is required.",