mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-11 14:59:12 +00: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:
parent
423eafbd4d
commit
62c60ce520
2 changed files with 2 additions and 1 deletions
|
|
@ -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.",
|
||||
|
|
|
|||
Loading…
Reference in a new issue