class SubscriptionBell { /^ Disabled bell ^/ static getDisabled() "Disabled"; /^ Download (Low quality) ^/ static getDownloadLow() "DownloadLow"; /^ Download (High quality) ^/ static getDownloadHigh() "DownloadHigh"; /^ Download (and notify) (Low quality) ^/ static getBellLow() "BellLow"; /^ Download (and notify) (High quality) ^/ static getBellHigh() "BellHigh"; /^ Notify ^/ static getBell() "Bell"; static getBells() { return [ {name="Disabled",value=SubscriptionBell.Disabled}, {name="Notify",value=SubscriptionBell.Bell}, {name="Notify and Download (Low)", value=SubscriptionBell.BellLow}, {name="Notify and Download (High)", value=SubscriptionBell.BellHigh}, {name="Download (Low)", value=SubscriptionBell.DownloadLow}, {name="Download (High)", value=SubscriptionBell.DownloadHigh} ]; } }