mirror of
https://github.com/itflow-org/itflow
synced 2026-09-17 12:15:14 +00:00
25 lines
1.1 KiB
TypeScript
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;
|