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

25 lines
787 B
TypeScript

//* Hebrew. Translated by: Claude.
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 "נמצאה תוצאה אחת";
}
return `נמצאו ${count} תוצאות`;
},
};
export default interfaceTranslations;