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

25 lines
932 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.
//* Bulgarian. 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;