Files
itflow/libs/intl-tel-input/js/locale/hi.ts
2026-08-26 13:14:32 -04:00

25 lines
935 B
TypeScript

//* Hindi. Translated by: Google Translate.
import type { UiTranslations } from "./types.js";
const interfaceTranslations: UiTranslations = {
selectedCountryAriaLabel:
"फ़ोन नंबर के लिए देश बदलें, चयनित ${countryName} (${dialCode})",
noCountrySelected: "फ़ोन नंबर के लिए देश चुनें",
countryListAriaLabel: "देशों की सूची",
searchPlaceholder: "खोज",
clearSearchAriaLabel: "खोज साफ़ करें",
searchEmptyState: "कोई परिणाम नहीं मिला",
searchSummaryAria(count) {
if (count === 0) {
return "कोई परिणाम नहीं मिला";
}
if (count === 1) {
return "1 परिणाम मिला";
}
return `${count} परिणाम मिले`;
},
};
export default interfaceTranslations;