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

22 lines
652 B
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.
//* Turkish. Translated by: Google Translate.
import type { UiTranslations } from "./types.js";
const interfaceTranslations: UiTranslations = {
selectedCountryAriaLabel:
"Telefon numarası için ülke değiştir, seçili ${countryName} (${dialCode})",
noCountrySelected: "Telefon numarası için ülke seç",
countryListAriaLabel: "Ülke listesi",
searchPlaceholder: "Ara",
clearSearchAriaLabel: "Aramayı temizle",
searchEmptyState: "Sonuç bulunamadı",
searchSummaryAria(count) {
if (count === 0) {
return "Sonuç bulunamadı";
}
return `${count} sonuç bulundu`;
},
};
export default interfaceTranslations;