-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Korean * Updated Readme.md & CHANGELOG.md & Version 9.2.5 * Pub upgrade flutter_country_selector to v1.0.11
- Loading branch information
Showing
5 changed files
with
46 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
lib/src/localization/generated/phone_field_localization_impl_ko.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import 'phone_field_localization_impl.dart'; | ||
|
||
/// The translations for Italian (`ko`). | ||
class PhoneFieldLocalizationImplKo extends PhoneFieldLocalizationImpl { | ||
PhoneFieldLocalizationImplKo([super.locale = 'ko']); | ||
|
||
@override | ||
String get invalidPhoneNumber => '올바른 번호가 아닙니다.'; | ||
|
||
@override | ||
String get invalidCountry => '올바른 국가가 아닙니다.'; | ||
|
||
@override | ||
String get invalidMobilePhoneNumber => '올바른 핸드폰 번호가 아닙니다.'; | ||
|
||
@override | ||
String get invalidFixedLinePhoneNumber => '올바른 전화 번호가 아닙니다.'; | ||
|
||
@override | ||
String get requiredPhoneNumber => '전화번호를 입력해 주세요'; | ||
|
||
@override | ||
String selectACountrySemanticLabel(String countryName, String dialCode) { | ||
return '국가를 선택해주세요. 현재 국가는: $countryName $dialCode'; | ||
} | ||
|
||
@override | ||
String get phoneNumber => '핸드폰 번호'; | ||
|
||
@override | ||
String currentValueSemanticLabel(String currentValue) { | ||
return '현재 값: $currentValue'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters