mirror of
https://github.com/itflow-org/itflow
synced 2026-09-20 21:51:16 +00:00
26 lines
818 B
TypeScript
26 lines
818 B
TypeScript
//* Shqip (Albanian). Translated by: ChatGPT 5.
|
|
import type { UiTranslations } from "./types.js";
|
|
import countryNames from "./country-names/sq.js";
|
|
|
|
const interfaceTranslations: UiTranslations = {
|
|
selectedCountryAriaLabel:
|
|
"Ndrysho vendin për numrin e telefonit, i zgjedhur ${countryName} (${dialCode})",
|
|
noCountrySelected: "Zgjidh vendin për numrin e telefonit",
|
|
countryListAriaLabel: "Lista e vendeve",
|
|
searchPlaceholder: "Kërko",
|
|
clearSearchAriaLabel: "Pastro kërkimin",
|
|
searchEmptyState: "Nuk u gjet asnjë rezultat",
|
|
|
|
searchSummaryAria(count) {
|
|
if (count === 0) {
|
|
return "Nuk u gjet asnjë rezultat";
|
|
}
|
|
if (count === 1) {
|
|
return "U gjet 1 rezultat";
|
|
}
|
|
return `U gjetën ${count} rezultate`;
|
|
},
|
|
};
|
|
|
|
export default { ...interfaceTranslations, countryNames };
|