mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
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"
This commit is contained in:
@@ -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')")
|
||||
|
||||
@@ -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.",
|
||||
|
||||
Reference in New Issue
Block a user