feat: add birthday calendar feature with settings and localization
This commit is contained in:
@@ -19,6 +19,7 @@ export function CalendarSettings() {
|
||||
showWeekNumbers,
|
||||
enableCalendarTasks,
|
||||
showTasksOnCalendar,
|
||||
showBirthdayCalendar,
|
||||
calendarHoverPreview,
|
||||
updateSetting,
|
||||
} = useSettingsStore();
|
||||
@@ -98,6 +99,16 @@ export function CalendarSettings() {
|
||||
/>
|
||||
</SettingItem>
|
||||
|
||||
<SettingItem
|
||||
label={t('show_birthday_calendar')}
|
||||
description={t('show_birthday_calendar_desc')}
|
||||
>
|
||||
<ToggleSwitch
|
||||
checked={showBirthdayCalendar}
|
||||
onChange={(checked) => updateSetting('showBirthdayCalendar', checked)}
|
||||
/>
|
||||
</SettingItem>
|
||||
|
||||
{isFeatureEnabled('calendarTasksEnabled') && (
|
||||
<>
|
||||
<SettingItem
|
||||
|
||||
Reference in New Issue
Block a user