Skip to content

Commit

Permalink
[mob] Enable l10n for ja (#3240)
Browse files Browse the repository at this point in the history
## Description

## Tests
  • Loading branch information
ua741 authored Sep 12, 2024
1 parent 8b43f18 commit b0bcb45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions mobile/lib/l10n/l10n.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const List<Locale> appSupportedLocales = <Locale>[
Locale('de'),
Locale('fr'),
Locale('it'),
Locale('ja'),
Locale("nl"),
Locale("pl"),
Locale("pt", "BR"),
Expand Down
4 changes: 2 additions & 2 deletions mobile/lib/ui/settings/language_picker.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ class _ItemsWidgetState extends State<ItemsWidget> {
return 'Deutsch';
case 'it':
return 'Italiano';
case 'ja':
return '日本語';
case 'nl':
return 'Nederlands';
case 'pl':
Expand All @@ -144,8 +146,6 @@ class _ItemsWidgetState extends State<ItemsWidget> {
return '中文';
case 'zh-CN':
return '中文';
case 'ja':
return '日本語';
case 'ko':
return '한국어';
case 'ar':
Expand Down

0 comments on commit b0bcb45

Please sign in to comment.