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

31 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//* Macedonian. Translated by: Claude.
import type { UiTranslations } from "./types.js";
import countryNames from "./country-names/mk.js";
const interfaceTranslations: UiTranslations = {
selectedCountryAriaLabel:
"Промени држава за телефонски број, избрана ${countryName} (${dialCode})",
noCountrySelected: "Избери држава за телефонски број",
countryListAriaLabel: "Листа на држави",
searchPlaceholder: "Пребарување",
clearSearchAriaLabel: "Исчисти пребарување",
searchEmptyState: "Нема резултати",
searchSummaryAria(count) {
if (count === 0) {
return "Нема резултати";
}
const mod10 = count % 10;
const mod100 = count % 100;
// Numbers ending in 1, but not 11
if (mod10 === 1 && mod100 !== 11) {
return `Пронајден е ${count} резултат`;
}
return `Пронајдени се ${count} резултати`;
},
};
export default { ...interfaceTranslations, countryNames };