UNPKG

intl-tel-input

Version:

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

20 lines (19 loc) 534 B
"use strict"; const interfaceTranslations = { selectedCountryAriaLabel: "Seçilen ülke", noCountrySelected: "Hiçbir ülke seçilmedi", countryListAriaLabel: "Ülke listesi", searchPlaceholder: "Ara", clearSearchAriaLabel: "Aramayı temizle", searchEmptyState: "Sonuç bulunamadı", searchSummaryAria(count) { if (count === 0) { return "Sonuç bulunamadı"; } if (count === 1) { return "1 sonuç bulundu"; } return `${count} sonuç bulundu`; } }; export default interfaceTranslations;