From 81a7b7f3eb0d3563895e430d37d3489fac1e6890 Mon Sep 17 00:00:00 2001 From: appflowy Date: Thu, 8 Sep 2022 11:29:43 +0800 Subject: [PATCH] chore: fallback to en localization if the key is not found in the locale file --- frontend/app_flowy/lib/startup/tasks/app_widget.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/app_flowy/lib/startup/tasks/app_widget.dart b/frontend/app_flowy/lib/startup/tasks/app_widget.dart index dd9e1f0850..9ca28e2f36 100644 --- a/frontend/app_flowy/lib/startup/tasks/app_widget.dart +++ b/frontend/app_flowy/lib/startup/tasks/app_widget.dart @@ -46,6 +46,7 @@ class InitAppWidgetTask extends LaunchTask { ], path: 'assets/translations', fallbackLocale: const Locale('en'), + useFallbackTranslations: true, saveLocale: false, child: app, ),