mirror of
https://github.com/itflow-org/itflow
synced 2026-09-20 13:41:15 +00:00
25 lines
742 B
TypeScript
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;
|