add dropdown option for spanish locale

This commit is contained in:
Jorge Teixeira
2023-02-28 00:24:12 +01:00
parent 1dbda5876f
commit c5ee4810ad
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ module.exports = {
debug: false,
i18n: {
defaultLocale: "en",
locales: ["en", "ko", "fr", "pt-BR", "pt-PT"],
locales: ["en", "ko", "fr", "pt-BR", "pt-PT", "es"],
},
fallbackLng: {
default: ["en"],

View File

@@ -96,7 +96,7 @@ export default function PersonalSettings() {
<ListBox
isSelected={lang}
onChange={setLanguage}
data={['en', 'ko', 'fr']}
data={['en', 'ko', 'fr', 'es']}
text={`${t('common:language')}: `}
/>
</div>