Add german translation

This commit is contained in:
2025-07-29 21:21:21 +02:00
parent e310197aa7
commit 7a418d82a7
6 changed files with 145 additions and 4 deletions

View File

@@ -26,10 +26,7 @@ class MyApp extends StatelessWidget {
return MaterialApp(
debugShowCheckedModeBanner: false,
locale: localeProvider.locale, // <-- utilise la locale courante
supportedLocales: const [
Locale('en'),
Locale('fr'),
],
supportedLocales: const [Locale('en'), Locale('fr'), Locale('de')],
localizationsDelegates: AppLocalizations.localizationsDelegates,
home: LoginDemo(),
);