diff --git a/frontend/src/i18n/options.ts b/frontend/src/i18n/options.ts index b66dabf..8ffc3bf 100644 --- a/frontend/src/i18n/options.ts +++ b/frontend/src/i18n/options.ts @@ -5,7 +5,7 @@ export const defaultNS = 'common' export const cookieName = 'i18next' export const languages = [ fallbackLng, - 'en-GB', 'de', 'es', 'fr', 'hi', 'id', 'ja', 'ko', 'pl', 'pt-BR', 'ru', + 'en-GB', 'de', 'es', 'fr', 'hi', 'id', 'it', 'ja', 'ko', 'pl', 'pt', 'pt-BR', 'ru', ] as const export const getOptions = (lng = fallbackLng, ns: InitOptions['ns'] = defaultNS): InitOptions => ({ @@ -65,6 +65,11 @@ export const languageDetails: Record weekStart: 1, timeFormat: '24h', }, + 'it': { // Italian + name: 'Italiano', + weekStart: 1, + timeFormat: '24h', + }, 'ja': { // Japanese name: '日本語', weekStart: 0, @@ -80,6 +85,11 @@ export const languageDetails: Record weekStart: 1, timeFormat: '12h', }, + 'pt': { // Portuguese (Portugal) + name: 'Português (do Portugal)', + weekStart: 0, + timeFormat: '24h', + }, 'pt-BR': { // Portuguese (Brazil) name: 'Português (do Brasil)', weekStart: 0,