Skip to content

Commit

Permalink
feat(i18n): activate italian
Browse files Browse the repository at this point in the history
  • Loading branch information
maicolstracci committed Nov 2, 2022
1 parent 71846bf commit 9675057
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/i18n/i18nConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ import en from "~/i18n/locales/en/translation.json";
import es from "~/i18n/locales/es/translation.json";
import pt_BR from "~/i18n/locales/pt_BR/translation.json";
import sv from "~/i18n/locales/sv/translation.json";
import it from "~/i18n/locales/it/translation.json";

export const supportedLocales = [
{ locale: "en", label: "English" },
{ locale: "es", label: "Español" },
{ locale: "pt_BR", label: "Português (Brasil)" },
{ locale: "sv", label: "Svenska" },
{ locale: "it", label: "Italiano" },
];

// needs to be aligned with `supportedLocales`
Expand All @@ -23,6 +25,7 @@ export const resources = {
es,
pt_BR,
sv,
it,
};

i18n
Expand Down

0 comments on commit 9675057

Please sign in to comment.