Object.defineProperty(settings, 'soundNotificationEnabled', {
        get: function() { return parseBool(cookies.get('soundNotificationEnabled')) || false; },
        set: function(value) { cookies.set('soundNotificationEnabled', value); },
        enumerable: true
    });