mirror of
https://github.com/itflow-org/itflow
synced 2026-09-20 21:51:16 +00:00
25 lines
932 B
TypeScript
25 lines
932 B
TypeScript
//* 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;
|