blob: 0064639cee4169282ea89feb2db42c4d72efbd6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import type { Translation } from "../i18n-types";
const nb = {
contact: {
title: "Kontakt oss",
addressTitle: "Adresse",
emailTitle: "E-postadresse",
phoneTitle: "Telefon",
},
goToBookingPage: "Gå til bestilling",
ourServices: "Våre tjenester",
homeTitle: "Hjem",
} satisfies Translation;
export default nb;
|