mirror of
https://github.com/itflow-org/itflow
synced 2026-09-19 21:25:13 +00:00
25 lines
787 B
TypeScript
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;
|