diff --git a/packages/plugins/@nocobase/plugin-action-bulk-update/src/client/utils.tsx b/packages/plugins/@nocobase/plugin-action-bulk-update/src/client/utils.tsx index 708364dc4..82f6eaa61 100644 --- a/packages/plugins/@nocobase/plugin-action-bulk-update/src/client/utils.tsx +++ b/packages/plugins/@nocobase/plugin-action-bulk-update/src/client/utils.tsx @@ -68,8 +68,11 @@ export const useCustomizeBulkUpdateActionProps = () => { await Promise.all(waitList); modal.confirm({ - title: t('Bulk update'), - content: updateMode === 'selected' ? t('Update selected data?') : t('Update all data?'), + title: t('Bulk update', { ns: 'client' }), + content: + updateMode === 'selected' + ? t('Update selected data?', { ns: 'client' }) + : t('Update all data?', { ns: 'client' }), async onOk() { const { filter } = service.params?.[0] ?? {}; const updateData: { filter?: any; values: any; forceUpdate: boolean } = {