diff --git a/app/lib/l10n/app_en.arb b/app/lib/l10n/app_en.arb index f9db27169123..337b1b87bbde 100644 --- a/app/lib/l10n/app_en.arb +++ b/app/lib/l10n/app_en.arb @@ -47,7 +47,7 @@ "background": "Background", "box": "Box", "locale": "Locale", - "defaultLocale": "Default locale", + "systemLocale": "System locale", "information": "Information", "license": "License", "imprint": "Imprint", diff --git a/app/lib/settings/personalization.dart b/app/lib/settings/personalization.dart index f31992b4c8dc..ccb457286210 100644 --- a/app/lib/settings/personalization.dart +++ b/app/lib/settings/personalization.dart @@ -29,7 +29,7 @@ class PersonalizationSettingsPage extends StatelessWidget { String _getLocaleName(BuildContext context, String locale) => LocaleNames.of(context)?.nameOf(locale) ?? - AppLocalizations.of(context).defaultLocale; + AppLocalizations.of(context).systemLocale; @override Widget build(BuildContext context) { @@ -299,7 +299,7 @@ class PersonalizationSettingsPage extends StatelessWidget { return [ ListTile( - title: Text(AppLocalizations.of(context).defaultLocale), + title: Text(AppLocalizations.of(context).systemLocale), selected: currentLocale.isEmpty, onTap: () => changeLocale(null)), ...locales.map((e) => ListTile( diff --git a/fastlane/metadata/android/en-US/changelogs/83.txt b/fastlane/metadata/android/en-US/changelogs/83.txt index 1cc0400f4a6d..2e68bea83d99 100644 --- a/fastlane/metadata/android/en-US/changelogs/83.txt +++ b/fastlane/metadata/android/en-US/changelogs/83.txt @@ -1,6 +1,7 @@ * Improve performance when saving ([#547](https://github.com/LinwoodDev/Butterfly/issues/547)) * Improve mobile add dialog * Improve selected icons in settings +* Rename default locale to system locale * Fix calling onScale to tools on moving on touch devices ([#546](https://github.com/LinwoodDev/Butterfly/issues/546)) * Fix exporting documents as png or svg