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 () {
if (!this.user.inbox.optOut) {
return {
switchDescription: this.$t('PMDisable'),
switchDescription: this.$t('PMReceive'),
popoverText: this.$t('PMEnabledOptPopoverText'),
};
}
return {
switchDescription: this.$t('PMEnable'),
switchDescription: this.$t('PMReceive'),
popoverText: this.$t('PMDisabledOptPopoverText'),
};
},