-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Vietnamese vi_VN translation (#248)
Co-authored-by: phuhddoczynet <phuhd@doczy.net>
- Loading branch information
1 parent
170203c
commit c605f38
Showing
6 changed files
with
75 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"@@locale": "vi", | ||
"invalidPhoneNumber": "Số điện thoại không đúng", | ||
"invalidCountry": "Quốc gia không hợp lệ", | ||
"invalidMobilePhoneNumber": "Số điện thoại di động không đúng", | ||
"invalidFixedLinePhoneNumber": "Số điện thoại cố định không đúng", | ||
"requiredPhoneNumber": "Số điện không để để trống", | ||
"selectACountrySemanticLabel": "Chọn quốc gia. Hiện tại: {countryName} {dialCode}", | ||
"@selectACountrySemanticLabel": { | ||
"description": "Mô tả ngữ nghĩa của nút quốc gia", | ||
"placeholders": { | ||
"countryName": { | ||
"type": "String" | ||
}, | ||
"dialCode": { | ||
"type": "String" | ||
} | ||
} | ||
}, | ||
"phoneNumber": "Số điện thoại", | ||
"currentValueSemanticLabel": "Giá trị hiện tại: {currentValue}", | ||
"@currentValueSemanticLabel": { | ||
"description": "Mô tả ngữ nghĩa của đầu vào điện thoại. Nhãn hoặc gợi ý sẽ được thêm động", | ||
"placeholders": { | ||
"currentValue": { | ||
"type": "String" | ||
} | ||
} | ||
} | ||
} |
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_vi.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 Vietnamese (`vi`). | ||
class PhoneFieldLocalizationImplVi extends PhoneFieldLocalizationImpl { | ||
PhoneFieldLocalizationImplVi([super.locale = 'vi']); | ||
|
||
@override | ||
String get invalidPhoneNumber => 'Số điện thoại không đúng'; | ||
|
||
@override | ||
String get invalidCountry => 'Quốc gia không hợp lệ'; | ||
|
||
@override | ||
String get invalidMobilePhoneNumber => 'Số điện thoại di động không đúng'; | ||
|
||
@override | ||
String get invalidFixedLinePhoneNumber => 'Số điện thoại cố định không đúng'; | ||
|
||
@override | ||
String get requiredPhoneNumber => 'Số điện không để để trống'; | ||
|
||
@override | ||
String selectACountrySemanticLabel(String countryName, String dialCode) { | ||
return 'Chọn quốc gia. Hiện tại: $countryName $dialCode'; | ||
} | ||
|
||
@override | ||
String get phoneNumber => 'Số điện thoại'; | ||
|
||
@override | ||
String currentValueSemanticLabel(String currentValue) { | ||
return 'Giá trị hiện tại: $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