mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 15:48:04 +01:00
change text for recapture emails settings
This commit is contained in:
@@ -93,7 +93,7 @@
|
||||
"giftedSubscription": "Gifted Subscription",
|
||||
"invitedParty": "Invited To Party",
|
||||
"invitedGuild": "Invited To Guild",
|
||||
"importantAnnouncements": "Important Announcements",
|
||||
"inactivityEmails": "Your account is inactive",
|
||||
"questStarted": "Your Quest has Begun",
|
||||
"invitedQuest": "Invited to Quest",
|
||||
"remindersToLogin": "Reminders to check in to HabitRPG",
|
||||
|
||||
@@ -311,6 +311,7 @@ var UserSchema = new Schema({
|
||||
questStarted: {type: Boolean, 'default': true},
|
||||
invitedQuest: {type: Boolean, 'default': true},
|
||||
//remindersToLogin: {type: Boolean, 'default': true},
|
||||
// Those importantAnnouncements are in fact the recapture emails
|
||||
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})')
|
||||
span=env.t('remindersToLogin')
|
||||
|
||||
// These are the recapture emails, important announcements was the previous name used for them
|
||||
.checkbox
|
||||
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})')
|
||||
span=env.t('importantAnnouncements')
|
||||
span=env.t('inactivityEmails')
|
||||
|
||||
hr
|
||||
|
||||
|
||||
Reference in New Issue
Block a user