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

25 lines
1.1 KiB
TypeScript

//* Telugu. 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;