mirror of https://github.com/itflow-org/itflow
14 lines
492 B
JavaScript
14 lines
492 B
JavaScript
const interfaceTranslations = {
|
|
"selectedCountryAriaLabel": "Valt land",
|
|
"noCountrySelected": "Inget land valt",
|
|
"countryListAriaLabel": "Lista över länder",
|
|
"searchPlaceholder": "Sök",
|
|
"zeroSearchResults": "Inga resultat hittades",
|
|
"oneSearchResult": "1 resultat hittades",
|
|
"multipleSearchResults": "${count} resultat hittades",
|
|
// additional countries (not supported by country-list library)
|
|
"ac": "Ascension",
|
|
"xk": "Kosovo"
|
|
};
|
|
export default interfaceTranslations;
|