Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add localizations for Hebrew #21

Merged
merged 4 commits into from
Jun 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## 1.0.12
* Fix translation in Vietnamese
* Add localizations for Hebrew

## 1.0.11
* Added localizations for vi
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Use `CountrySelectorLocalization.of(context)?.countryName(isoCode)` when you nee
- es
- fa
- fr
- he
- hi
- hu
- it
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import 'country_selector_localization_en.dart';
import 'country_selector_localization_es.dart';
import 'country_selector_localization_fa.dart';
import 'country_selector_localization_fr.dart';
import 'country_selector_localization_he.dart';
import 'country_selector_localization_hi.dart';
import 'country_selector_localization_hu.dart';
import 'country_selector_localization_it.dart';
Expand Down Expand Up @@ -123,6 +124,7 @@ abstract class CountrySelectorLocalization {
Locale('es'),
Locale('fa'),
Locale('fr'),
Locale('he'),
Locale('hi'),
Locale('hu'),
Locale('it'),
Expand Down Expand Up @@ -1679,6 +1681,7 @@ class _CountrySelectorLocalizationDelegate
'es',
'fa',
'fr',
'he',
'hi',
'hu',
'it',
Expand Down Expand Up @@ -1719,6 +1722,8 @@ CountrySelectorLocalization lookupCountrySelectorLocalization(Locale locale) {
return CountrySelectorLocalizationFa();
case 'fr':
return CountrySelectorLocalizationFr();
case 'he':
return CountrySelectorLocalizationHe();
case 'hi':
return CountrySelectorLocalizationHi();
case 'hu':
Expand Down
Loading
Loading