Skip to content

Commit

Permalink
fix: translations
Browse files Browse the repository at this point in the history
  • Loading branch information
TomBursch committed Jan 10, 2022
1 parent 7f29fbf commit 5d58e8e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/l10n/app_de.arb
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
"tags": "Tags",
"themeDark": "Dunkel",
"themeLight": "Hell",
"themeMode": "Theme",
"themeSystem": "System",
"underConstruction": "Baustelle",
"unreachableMessage": "Hmmmm... der Server wurde nicht erreicht",
Expand Down
3 changes: 2 additions & 1 deletion lib/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@
}
},
"tags": "Tags",
"themeDark": "Light",
"themeDark": "Dark",
"themeLight": "Light",
"themeMode": "Theme",
"themeSystem": "System",
"underConstruction": "Under Construction",
"unreachableMessage": "Hmmmm... coulnd't reach server",
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/home_page/profile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ProfilePage extends StatelessWidget {
mainAxisAlignment: MainAxisAlignment.end,
children: [
ListTile(
title: Text(AppLocalizations.of(context)!.darkmode),
title: Text(AppLocalizations.of(context)!.themeMode),
leading: const Icon(Icons.nights_stay_sharp),
contentPadding: const EdgeInsets.only(left: 20, right: 5),
trailing: DropdownButton(
Expand Down

0 comments on commit 5d58e8e

Please sign in to comment.