mirror of https://github.com/itflow-org/itflow
14 lines
483 B
JavaScript
14 lines
483 B
JavaScript
const interfaceTranslations = {
|
|
selectedCountryAriaLabel: "Kiválasztott ország",
|
|
noCountrySelected: "Nincs ország kiválasztva",
|
|
countryListAriaLabel: "Országok listája",
|
|
searchPlaceholder: "Keresés",
|
|
zeroSearchResults: "Nincs találat",
|
|
oneSearchResult: "1 találat",
|
|
multipleSearchResults: "${count} találat",
|
|
// additional countries (not supported by country-list library)
|
|
ac: "Ascension-sziget",
|
|
xk: "Koszovó"
|
|
};
|
|
export default interfaceTranslations;
|