feat: add italian translations (#545)

This commit is contained in:
Davide Sirico
2025-02-18 16:10:15 +01:00
committed by GitHub
parent 5aab1450cd
commit c9f6e8676b
2 changed files with 461 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import es from "./translations/es.json";
import fr from "./translations/fr.json";
import nl from "./translations/nl.json";
import sv from "./translations/sv.json";
import it from "./translations/it.json";
import zhTW from './translations/zh-TW.json';
import { getLocales } from "expo-localization";
@@ -17,6 +18,7 @@ export const APP_LANGUAGES = [
{ label: "Français", value: "fr" },
{ label: "Nederlands", value: "nl" },
{ label: "Svenska", value: "sv" },
{ label: "Italiano", value: "it" },
{ label: "繁體中文", value: "zh-TW" },
];
@@ -29,6 +31,7 @@ i18n.use(initReactI18next).init({
fr: { translation: fr },
nl: { translation: nl },
sv: { translation: sv },
it: { translation: it },
"zh-TW": { translation: zhTW },
},