mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 12:02:13 +00:00
change text for recapture emails settings
This commit is contained in:
parent
ba11d827bb
commit
397a293ca8
3 changed files with 4 additions and 2 deletions
|
|
@ -93,7 +93,7 @@
|
||||||
"giftedSubscription": "Gifted Subscription",
|
"giftedSubscription": "Gifted Subscription",
|
||||||
"invitedParty": "Invited To Party",
|
"invitedParty": "Invited To Party",
|
||||||
"invitedGuild": "Invited To Guild",
|
"invitedGuild": "Invited To Guild",
|
||||||
"importantAnnouncements": "Important Announcements",
|
"inactivityEmails": "Your account is inactive",
|
||||||
"questStarted": "Your Quest has Begun",
|
"questStarted": "Your Quest has Begun",
|
||||||
"invitedQuest": "Invited to Quest",
|
"invitedQuest": "Invited to Quest",
|
||||||
"remindersToLogin": "Reminders to check in to HabitRPG",
|
"remindersToLogin": "Reminders to check in to HabitRPG",
|
||||||
|
|
|
||||||
|
|
@ -311,6 +311,7 @@ var UserSchema = new Schema({
|
||||||
questStarted: {type: Boolean, 'default': true},
|
questStarted: {type: Boolean, 'default': true},
|
||||||
invitedQuest: {type: Boolean, 'default': true},
|
invitedQuest: {type: Boolean, 'default': true},
|
||||||
//remindersToLogin: {type: Boolean, 'default': true},
|
//remindersToLogin: {type: Boolean, 'default': true},
|
||||||
|
// Those importantAnnouncements are in fact the recapture emails
|
||||||
importantAnnouncements: {type: Boolean, 'default': true}
|
importantAnnouncements: {type: Boolean, 'default': true}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -320,10 +320,11 @@ script(id='partials/options.settings.notifications.html', type="text/ng-template
|
||||||
input(type='checkbox', ng-disabled='user.preferences.emailNotifications.unsubscribeFromAll === true', ng-model='user.preferences.emailNotifications.remindersToLogin', ng-change='set({"preferences.emailNotifications.remindersToLogin": user.preferences.emailNotifications.remindersToLogin ? true: false})')
|
input(type='checkbox', ng-disabled='user.preferences.emailNotifications.unsubscribeFromAll === true', ng-model='user.preferences.emailNotifications.remindersToLogin', ng-change='set({"preferences.emailNotifications.remindersToLogin": user.preferences.emailNotifications.remindersToLogin ? true: false})')
|
||||||
span=env.t('remindersToLogin')
|
span=env.t('remindersToLogin')
|
||||||
|
|
||||||
|
// These are the recapture emails, important announcements was the previous name used for them
|
||||||
.checkbox
|
.checkbox
|
||||||
label
|
label
|
||||||
input(type='checkbox', ng-disabled='user.preferences.emailNotifications.unsubscribeFromAll === true', ng-model='user.preferences.emailNotifications.importantAnnouncements', ng-change='set({"preferences.emailNotifications.importantAnnouncements": user.preferences.emailNotifications.importantAnnouncements ? true: false})')
|
input(type='checkbox', ng-disabled='user.preferences.emailNotifications.unsubscribeFromAll === true', ng-model='user.preferences.emailNotifications.importantAnnouncements', ng-change='set({"preferences.emailNotifications.importantAnnouncements": user.preferences.emailNotifications.importantAnnouncements ? true: false})')
|
||||||
span=env.t('importantAnnouncements')
|
span=env.t('inactivityEmails')
|
||||||
|
|
||||||
hr
|
hr
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue