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