Skip to content

Commit

Permalink
app: set English as fallback locale
Browse files Browse the repository at this point in the history
  • Loading branch information
wfleischer committed Dec 14, 2024
1 parent 82226fc commit 88f2627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class App extends ConsumerWidget {
debugShowCheckedModeBanner: false,
restorationScopeId: 'app',
localizationsDelegates: AppLocalizations.localizationsDelegates,
supportedLocales: AppLocalizations.supportedLocales,
supportedLocales: [Locale('en'), ...AppLocalizations.supportedLocales],
onGenerateTitle: (BuildContext context) => context.loc.appTitle,
theme: lightTheme,
darkTheme: darkTheme,
Expand Down

0 comments on commit 88f2627

Please sign in to comment.