diff --git a/src/i18n/index.ts b/src/i18n/index.ts index c59bdc98..55adac14 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -22,7 +22,7 @@ export const i18n = use(initReactI18next) format: (value, format) => { switch (format) { case 'lowercase': - return value.toLowerCase(); + return value.toLocaleLowerCase(); default: return value; }