diff --git a/frontend/public/locales/common/en-US.json b/frontend/public/locales/common/en-US.json index 64fbef7c02..9a96cd1700 100644 --- a/frontend/public/locales/common/en-US.json +++ b/frontend/public/locales/common/en-US.json @@ -20,6 +20,7 @@ "langSimplifiedChinese": "Simplified Chinese", "langSpanish": "Spanish", "langJapanese": "Japanese", + "langDutch": "Dutch", "text2img": "Text To Image", "img2img": "Image To Image", "unifiedCanvas": "Unified Canvas", diff --git a/frontend/public/locales/common/en.json b/frontend/public/locales/common/en.json index 64fbef7c02..9a96cd1700 100644 --- a/frontend/public/locales/common/en.json +++ b/frontend/public/locales/common/en.json @@ -20,6 +20,7 @@ "langSimplifiedChinese": "Simplified Chinese", "langSpanish": "Spanish", "langJapanese": "Japanese", + "langDutch": "Dutch", "text2img": "Text To Image", "img2img": "Image To Image", "unifiedCanvas": "Unified Canvas", diff --git a/frontend/dist/locales/common/nl.json b/frontend/public/locales/common/nl.json similarity index 100% rename from frontend/dist/locales/common/nl.json rename to frontend/public/locales/common/nl.json diff --git a/frontend/dist/locales/gallery/nl.json b/frontend/public/locales/gallery/nl.json similarity index 100% rename from frontend/dist/locales/gallery/nl.json rename to frontend/public/locales/gallery/nl.json diff --git a/frontend/dist/locales/hotkeys/nl.json b/frontend/public/locales/hotkeys/nl.json similarity index 100% rename from frontend/dist/locales/hotkeys/nl.json rename to frontend/public/locales/hotkeys/nl.json diff --git a/frontend/dist/locales/modelmanager/nl.json b/frontend/public/locales/modelmanager/nl.json similarity index 100% rename from frontend/dist/locales/modelmanager/nl.json rename to frontend/public/locales/modelmanager/nl.json diff --git a/frontend/dist/locales/options/nl.json b/frontend/public/locales/options/nl.json similarity index 100% rename from frontend/dist/locales/options/nl.json rename to frontend/public/locales/options/nl.json diff --git a/frontend/dist/locales/settings/nl.json b/frontend/public/locales/settings/nl.json similarity index 100% rename from frontend/dist/locales/settings/nl.json rename to frontend/public/locales/settings/nl.json diff --git a/frontend/dist/locales/toast/nl.json b/frontend/public/locales/toast/nl.json similarity index 100% rename from frontend/dist/locales/toast/nl.json rename to frontend/public/locales/toast/nl.json diff --git a/frontend/dist/locales/tooltip/nl.json b/frontend/public/locales/tooltip/nl.json similarity index 100% rename from frontend/dist/locales/tooltip/nl.json rename to frontend/public/locales/tooltip/nl.json diff --git a/frontend/dist/locales/unifiedcanvas/nl.json b/frontend/public/locales/unifiedcanvas/nl.json similarity index 100% rename from frontend/dist/locales/unifiedcanvas/nl.json rename to frontend/public/locales/unifiedcanvas/nl.json diff --git a/frontend/src/features/system/components/LanguagePicker.tsx b/frontend/src/features/system/components/LanguagePicker.tsx index 23d102a236..9f6e714277 100644 --- a/frontend/src/features/system/components/LanguagePicker.tsx +++ b/frontend/src/features/system/components/LanguagePicker.tsx @@ -21,6 +21,7 @@ export default function LanguagePicker() { zh_cn: t('common:langSimplifiedChinese'), es: t('common:langSpanish'), ja: t('common:langJapanese'), + nl: t('common:langDutch'), }; const renderLanguagePicker = () => {