mirror of https://github.com/itflow-org/itflow
14 lines
477 B
JavaScript
14 lines
477 B
JavaScript
const interfaceTranslations = {
|
|
selectedCountryAriaLabel: "Selected country",
|
|
noCountrySelected: "No country selected",
|
|
countryListAriaLabel: "List of countries",
|
|
searchPlaceholder: "Search",
|
|
zeroSearchResults: "No results found",
|
|
oneSearchResult: "1 result found",
|
|
multipleSearchResults: "${count} results found",
|
|
// additional countries (not supported by country-list library)
|
|
ac: "Ascension Island",
|
|
xk: "Kosovo"
|
|
};
|
|
export default interfaceTranslations;
|