diff --git a/packages/plugins/@nocobase/plugin-calendar/src/client/calendar/Calender.Settings.tsx b/packages/plugins/@nocobase/plugin-calendar/src/client/calendar/Calender.Settings.tsx index 605fb775d9..e0072b253b 100644 --- a/packages/plugins/@nocobase/plugin-calendar/src/client/calendar/Calender.Settings.tsx +++ b/packages/plugins/@nocobase/plugin-calendar/src/client/calendar/Calender.Settings.tsx @@ -149,9 +149,9 @@ export const calendarBlockSettings = new SchemaSettings({ title: t('Default view'), value: field['decoratorProps']['defaultView'] || 'month', options: [ - { value: 'month', label: '月' }, - { value: 'week', label: '周' }, - { value: 'day', label: '天' }, + { value: 'month', label: t('Month') }, + { value: 'week', label: t('Week') }, + { value: 'day', label: t('Day') }, ], onChange: (v) => { field.decoratorProps.defaultView = v;