'off' -> 'disable notifications' in settings

FREEBIE
This commit is contained in:
Blake Griffith 2016-03-05 14:38:29 -06:00 committed by lilia
parent 7578991f4e
commit 24e4d9c615
3 changed files with 4 additions and 4 deletions

View file

@ -203,8 +203,8 @@
"message": "Settings", "message": "Settings",
"description": "Menu item and header for global settings" "description": "Menu item and header for global settings"
}, },
"off": { "disableNotifications": {
"message": "Off", "message": "Disable notifications",
"description": "Label for disabling notifications" "description": "Label for disabling notifications"
}, },
"nameAndMessage": { "nameAndMessage": {

View file

@ -344,7 +344,7 @@
</div> </div>
<div> <div>
<input type='radio' name='notifications' id='notification-setting-off' value='off'/> <input type='radio' name='notifications' id='notification-setting-off' value='off'/>
<label for='notification-setting-off'>{{ off }} </label> <label for='notification-setting-off'>{{ disableNotifications }} </label>
</div> </div>
</div> </div>
</script> </script>

View file

@ -27,7 +27,7 @@
render_attributes: function() { render_attributes: function() {
return { return {
settings: i18n('settings'), settings: i18n('settings'),
off: i18n('off'), disableNotifications: i18n('disableNotifications'),
nameAndMessage: i18n('nameAndMessage'), nameAndMessage: i18n('nameAndMessage'),
noNameOrMessage: i18n('noNameOrMessage'), noNameOrMessage: i18n('noNameOrMessage'),
nameOnly: i18n('nameOnly'), nameOnly: i18n('nameOnly'),