-
-
Notifications
You must be signed in to change notification settings - Fork 475
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
139 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
import 'fluent_localizations.dart'; | ||
|
||
/// The translations for Vietnamese (`vi`). | ||
class FluentLocalizationsVi extends FluentLocalizations { | ||
FluentLocalizationsVi([String locale = 'vi']) : super(locale); | ||
|
||
@override | ||
String get backButtonTooltip => 'Quay lại'; | ||
|
||
@override | ||
String get closeButtonLabel => 'Đóng'; | ||
|
||
@override | ||
String get searchLabel => 'Tìm kiếm'; | ||
|
||
@override | ||
String get closeNavigationTooltip => 'Đóng Thanh điều hướng'; | ||
|
||
@override | ||
String get openNavigationTooltip => 'Mở Thanh điều hướng'; | ||
|
||
@override | ||
String get clickToSearch => 'Nhấn để tìm kiếm'; | ||
|
||
@override | ||
String get modalBarrierDismissLabel => 'Bỏ qua'; | ||
|
||
@override | ||
String get minimizeWindowTooltip => 'Thu nhỏ'; | ||
|
||
@override | ||
String get restoreWindowTooltip => 'Khôi phục'; | ||
|
||
@override | ||
String get closeWindowTooltip => 'Đóng'; | ||
|
||
@override | ||
String get dialogLabel => 'Hộp thoại'; | ||
|
||
@override | ||
String get cutActionLabel => 'Cắt'; | ||
|
||
@override | ||
String get copyActionLabel => 'Sao chép'; | ||
|
||
@override | ||
String get pasteActionLabel => 'Dán'; | ||
|
||
@override | ||
String get selectAllActionLabel => 'Chọn tất cả'; | ||
|
||
@override | ||
String get newTabLabel => 'Thêm tab mới'; | ||
|
||
@override | ||
String get closeTabLabelSuffix => 'Đóng'; | ||
|
||
@override | ||
String get scrollTabBackwardLabel => 'Cuộn tab lùi'; | ||
|
||
@override | ||
String get scrollTabForwardLabel => 'Cuộn tab tới'; | ||
|
||
@override | ||
String get noResultsFoundLabel => 'Không tìm thấy kết quả'; | ||
|
||
@override | ||
String get copyActionTooltip => 'Sao chép nội dung đã chọn vào bảng nhớ tạm'; | ||
|
||
@override | ||
String get cutActionTooltip => 'Cắt nội dung đã chọn vào bảng nhớ tạm'; | ||
|
||
@override | ||
String get pasteActionTooltip => | ||
'Dán nội dung bảng nhớ tạm vào vị trí hiện tại'; | ||
|
||
@override | ||
String get selectAllActionTooltip => 'Chọn tất cả'; | ||
|
||
@override | ||
String get hour => 'giờ'; | ||
|
||
@override | ||
String get minute => 'phút'; | ||
|
||
@override | ||
String get am => 'SA'; | ||
|
||
@override | ||
String get pm => 'CH'; | ||
|
||
@override | ||
String get month => 'tháng'; | ||
|
||
@override | ||
String get day => 'ngày'; | ||
|
||
@override | ||
String get year => 'năm'; | ||
} |
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 @@ | ||
{ | ||
"@@locale": "vi", | ||
"backButtonTooltip": "Quay lại", | ||
"closeButtonLabel": "Đóng", | ||
"searchLabel": "Tìm kiếm", | ||
"closeNavigationTooltip": "Đóng Thanh điều hướng", | ||
"openNavigationTooltip": "Mở Thanh điều hướng", | ||
"clickToSearch": "Nhấn để tìm kiếm", | ||
"modalBarrierDismissLabel": "Bỏ qua", | ||
"minimizeWindowTooltip": "Thu nhỏ", | ||
"restoreWindowTooltip": "Khôi phục", | ||
"closeWindowTooltip": "Đóng", | ||
"dialogLabel": "Hộp thoại", | ||
"cutActionLabel": "Cắt", | ||
"copyActionLabel": "Sao chép", | ||
"pasteActionLabel": "Dán", | ||
"selectAllActionLabel": "Chọn tất cả", | ||
"newTabLabel": "Thêm tab mới", | ||
"closeTabLabelSuffix": "Đóng", | ||
"scrollTabBackwardLabel": "Cuộn tab lùi", | ||
"scrollTabForwardLabel": "Cuộn tab tới", | ||
"noResultsFoundLabel": "Không tìm thấy kết quả", | ||
"copyActionTooltip": "Sao chép nội dung đã chọn vào bảng nhớ tạm", | ||
"cutActionTooltip": "Cắt nội dung đã chọn vào bảng nhớ tạm", | ||
"pasteActionTooltip": "Dán nội dung bảng nhớ tạm vào vị trí hiện tại", | ||
"selectAllActionTooltip": "Chọn tất cả", | ||
"hour": "giờ", | ||
"minute": "phút", | ||
"am": "SA", | ||
"pm": "CH", | ||
"month": "tháng", | ||
"day": "ngày", | ||
"year": "năm" | ||
} |