UNPKG

intl-tel-input

Version:

A JavaScript library for entering, formatting, and validating international telephone numbers

20 lines (19 loc) 644 B
"use strict"; const interfaceTranslations = { selectedCountryAriaLabel: "Quốc gia đã chọn", noCountrySelected: "Không có quốc gia nào được chọn", countryListAriaLabel: "Danh sách các quốc gia", searchPlaceholder: "Khám xét", clearSearchAriaLabel: "Xóa tìm kiếm", searchEmptyState: "Không tìm thấy kết quả nào", searchSummaryAria(count) { if (count === 0) { return "Không tìm thấy kết quả nào"; } if (count === 1) { return "Đã tìm thấy 1 kết quả"; } return `Đã tìm thấy ${count} kết quả`; } }; export default interfaceTranslations;