Files
itflow/libs/intl-tel-input/js/locale/no.ts
2026-08-26 13:14:32 -04:00

25 lines
742 B
TypeScript

//* Norwegian. Translated by: Eric Pastoor (epastoor) with help of google translate.
import type { UiTranslations } from "./types.js";
const interfaceTranslations: UiTranslations = {
selectedCountryAriaLabel:
"Endre land for telefonnummer, valgt ${countryName} (${dialCode})",
noCountrySelected: "Velg land for telefonnummer",
countryListAriaLabel: "Liste over land",
searchPlaceholder: "Søk",
clearSearchAriaLabel: "Tøm søk",
searchEmptyState: "Ingen resultater funnet",
searchSummaryAria(count) {
if (count === 0) {
return "Ingen resultater funnet";
}
if (count === 1) {
return "1 resultat funnet";
}
return `${count} resultater funnet`;
},
};
export default interfaceTranslations;