UNPKG

intl-tel-input

Version:

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

20 lines (19 loc) 790 B
"use strict"; const interfaceTranslations = { selectedCountryAriaLabel: "निवडलेला देश", noCountrySelected: "कोणताही देश निवडलेला नाही", countryListAriaLabel: "देशांची यादी", searchPlaceholder: "शोधा", clearSearchAriaLabel: "शोध साफ करा", searchEmptyState: "कोणतेही परिणाम आढळले नाहीत", searchSummaryAria(count) { if (count === 0) { return "कोणतेही परिणाम आढळले नाहीत"; } if (count === 1) { return "1 परिणाम आढळला"; } return `${count} परिणाम आढळले`; } }; export default interfaceTranslations;