From f06220d75643a08032786b3c82eabe625c592345 Mon Sep 17 00:00:00 2001 From: Tai Nguyen Trong <42902235+trongtai37@users.noreply.github.com> Date: Sat, 18 Mar 2023 18:11:17 +0700 Subject: [PATCH] fix(locale): add missing vietnamese translation (#41320) --- components/date-picker/locale/vi_VN.ts | 8 ++++ components/locale/vi_VN.ts | 61 ++++++++++++++++++++++---- components/time-picker/locale/vi_VN.ts | 1 + 3 files changed, 62 insertions(+), 8 deletions(-) diff --git a/components/date-picker/locale/vi_VN.ts b/components/date-picker/locale/vi_VN.ts index ed3d2341c2..3a66c40434 100644 --- a/components/date-picker/locale/vi_VN.ts +++ b/components/date-picker/locale/vi_VN.ts @@ -6,7 +6,15 @@ import type { PickerLocale } from '../generatePicker'; const locale: PickerLocale = { lang: { placeholder: 'Chọn thời điểm', + yearPlaceholder: 'Chọn năm', + quarterPlaceholder: 'Chọn quý', + monthPlaceholder: 'Chọn tháng', + weekPlaceholder: 'Chọn tuần', rangePlaceholder: ['Ngày bắt đầu', 'Ngày kết thúc'], + rangeYearPlaceholder: ['Năm bắt đầy', 'Năm kết thúc'], + rangeQuarterPlaceholder: ['Quý bắt đầu', 'Quý kết thúc'], + rangeMonthPlaceholder: ['Tháng bắt đầu', 'Tháng kết thúc'], + rangeWeekPlaceholder: ['Tuần bắt đầu', 'Tuần kết thúc'], ...CalendarLocale, }, timePickerLocale: { diff --git a/components/locale/vi_VN.ts b/components/locale/vi_VN.ts index d8168571ac..8bcf581d35 100644 --- a/components/locale/vi_VN.ts +++ b/components/locale/vi_VN.ts @@ -12,12 +12,32 @@ const localeValues: Locale = { DatePicker, TimePicker, Calendar, + global: { + placeholder: 'Vui lòng chọn', + }, Table: { filterTitle: 'Bộ lọc', filterConfirm: 'Đồng ý', filterReset: 'Bỏ lọc', + filterEmptyText: 'Không có bộ lọc', + filterCheckall: 'Chọn tất cả', + filterSearchPlaceholder: 'Tìm kiếm bộ lọc', + emptyText: 'Trống', selectAll: 'Chọn tất cả', selectInvert: 'Chọn ngược lại', + selectNone: 'Bỏ chọn tất cả', + selectionAll: 'Chọn tất cả', + sortTitle: 'Sắp xếp', + expand: 'Mở rộng dòng', + collapse: 'Thu gọn dòng', + triggerDesc: 'Nhấp để sắp xếp giảm dần', + triggerAsc: 'Nhấp để sắp xếp tăng dần', + cancelSort: 'Nhấp để hủy sắp xếp', + }, + Tour: { + Next: 'Tiếp', + Previous: 'Trước', + Finish: 'Hoàn thành', }, Modal: { okText: 'Đồng ý', @@ -33,6 +53,34 @@ const localeValues: Locale = { searchPlaceholder: 'Tìm ở đây', itemUnit: 'mục', itemsUnit: 'mục', + remove: 'Gỡ bỏ', + selectCurrent: 'Chọn trang hiện tại', + removeCurrent: 'Gỡ bỏ trang hiện tại', + selectAll: 'Chọn tất cả', + removeAll: 'Gỡ bỏ tất cả', + selectInvert: 'Đảo ngược trang hiện tại', + }, + Upload: { + uploading: 'Đang tải lên...', + removeFile: 'Gỡ bỏ tập tin', + uploadError: 'Lỗi tải lên', + previewFile: 'Xem trước tập tin', + downloadFile: 'Tải tập tin', + }, + Empty: { + description: 'Trống', + }, + Icon: { + icon: 'icon', + }, + Text: { + edit: 'Chỉnh sửa', + copy: 'Sao chép', + copied: 'Đã sao chép', + expand: 'Mở rộng', + }, + PageHeader: { + back: 'Quay lại', }, Form: { optional: '(Tùy chọn)', @@ -84,15 +132,12 @@ const localeValues: Locale = { }, }, }, - Upload: { - uploading: 'Đang tải lên...', - removeFile: 'Gỡ bỏ tập tin', - uploadError: 'Lỗi tải lên', - previewFile: 'Xem trước tập tin', - downloadFile: 'Tải tập tin', + Image: { + preview: 'Xem trước', }, - Empty: { - description: 'Trống', + QRCode: { + expired: 'Mã QR hết hạn', + refresh: 'Làm mới', }, }; diff --git a/components/time-picker/locale/vi_VN.ts b/components/time-picker/locale/vi_VN.ts index 37ae3215e5..af19afe066 100644 --- a/components/time-picker/locale/vi_VN.ts +++ b/components/time-picker/locale/vi_VN.ts @@ -2,6 +2,7 @@ import type { TimePickerLocale } from '../index'; const locale: TimePickerLocale = { placeholder: 'Chọn thời gian', + rangePlaceholder: ['Bắt đầu', 'Kết thúc'], }; export default locale;