fix(messages): clarify opt-in/out wording and leave label static (#10470)

This commit is contained in:
Sabe Jones
2018-06-27 12:13:13 -05:00
committed by Matteo Pagliazzi
parent 8969b755a6
commit 6eb484605a
2 changed files with 6 additions and 7 deletions

View File

@@ -337,12 +337,12 @@ export default {
optTextSet () { optTextSet () {
if (!this.user.inbox.optOut) { if (!this.user.inbox.optOut) {
return { return {
switchDescription: this.$t('PMDisable'), switchDescription: this.$t('PMReceive'),
popoverText: this.$t('PMEnabledOptPopoverText'), popoverText: this.$t('PMEnabledOptPopoverText'),
}; };
} }
return { return {
switchDescription: this.$t('PMEnable'), switchDescription: this.$t('PMReceive'),
popoverText: this.$t('PMDisabledOptPopoverText'), popoverText: this.$t('PMDisabledOptPopoverText'),
}; };
}, },

View File

@@ -136,12 +136,11 @@
"PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderDescription": "Select a conversation on the left",
"PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked",
"PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email <a href=\"mailto:admin@habitica.com\">admin@habitica.com</a> to discuss it with the staff.", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email <a href=\"mailto:admin@habitica.com\">admin@habitica.com</a> to discuss it with the staff.",
"PMEnable": "Enable Private Messages", "PMReceive": "Receive Private Messages",
"PMDisable": "Disable Private Messages", "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.",
"PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.",
"PMDisabledOptPopoverText": "Enable this option to be able to receive messages.",
"PMDisabledCaptionTitle": "Private Messages are disabled", "PMDisabledCaptionTitle": "Private Messages are disabled",
"PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.",
"block": "Block", "block": "Block",
"unblock": "Un-block", "unblock": "Un-block",
"pm-reply": "Send a reply", "pm-reply": "Send a reply",