27 lines
931 B
JavaScript
27 lines
931 B
JavaScript
/** Data related to the display titles of certain sections in menu screens */
|
|
|
|
/** Display titles of the headers of the Cookie Monster settings section */
|
|
export const ConfigGroups = {
|
|
Favourite: 'Favourite Settings',
|
|
Calculation: 'Calculation',
|
|
Notation: 'Notation',
|
|
Colours: 'Colours and colour coding',
|
|
BarsDisplay: 'Infobars and visual settings',
|
|
Tooltip: 'Tooltips',
|
|
Statistics: 'Statistics',
|
|
Notification: 'Notifications',
|
|
Miscellaneous: 'Miscellaneous',
|
|
};
|
|
|
|
/** Display titles of the headers of the notification section of the Cookie Monster settings */
|
|
export const ConfigGroupsNotification = {
|
|
NotificationGeneral: 'General Notifications',
|
|
NotificationGC: 'Golden Cookie',
|
|
NotificationFC: 'Fortune Cookie',
|
|
NotificationSea: 'Season Special',
|
|
NotificationGard: 'Garden Tick',
|
|
NotificationMagi: 'Full Magic Bar',
|
|
NotificationWrink: 'Wrinkler',
|
|
NotificationWrinkMax: 'Maximum Wrinklers',
|
|
};
|