mirror of https://github.com/itflow-org/itflow
14 lines
483 B
JavaScript
14 lines
483 B
JavaScript
const interfaceTranslations = {
|
|
selectedCountryAriaLabel: "Valgt land",
|
|
noCountrySelected: "Ingen land er valgt",
|
|
countryListAriaLabel: "Liste over land",
|
|
searchPlaceholder: "Leting",
|
|
zeroSearchResults: "Ingen resultater funnet",
|
|
oneSearchResult: "1 resultat funnet",
|
|
multipleSearchResults: "${count} resultater funnet",
|
|
// additional countries (not supported by country-list library)
|
|
ac: "Ascension Island",
|
|
xk: "Kosovo"
|
|
};
|
|
export default interfaceTranslations;
|