aboutsummaryrefslogtreecommitdiffstats
path: root/src/i18n/i18n-types.ts
blob: c04e615726ec250285ef472272a17a6d520e2f48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// This file was auto-generated by 'typesafe-i18n'. Any manual changes will be overwritten.
/* eslint-disable */
import type { BaseTranslation as BaseTranslationType, LocalizedString } from 'typesafe-i18n'

export type BaseTranslation = BaseTranslationType
export type BaseLocale = 'en'

export type Locales =
	| 'en'
	| 'nb'

export type Translation = RootTranslation

export type Translations = RootTranslation

type RootTranslation = {
	contact: {
		/**
		 * C​o​n​t​a​c​t​ ​u​s
		 */
		title: string
		/**
		 * A​d​d​r​e​s​s
		 */
		addressTitle: string
		/**
		 * E​m​a​i​l
		 */
		emailTitle: string
		/**
		 * P​h​o​n​e
		 */
		phoneTitle: string
	}
	meta: {
		/**
		 * A​u​r​o​r​a​k​l​i​n​i​k​k​e​n​ ​p​r​o​v​i​d​e​s​ ​c​e​t​a​m​i​n​e​ ​t​r​e​a​t​m​e​n​t​ ​f​o​r​ ​d​e​p​r​e​s​s​i​o​n​ ​i​n​ ​O​s​l​o
		 */
		description: string
	}
	/**
	 * G​o​ ​t​o​ ​b​o​o​k​i​n​g
	 */
	goToBookingPage: string
	/**
	 * O​u​r​ ​s​e​r​v​i​c​e​s
	 */
	ourServices: string
	/**
	 * H​o​m​e
	 */
	homeTitle: string
}

export type TranslationFunctions = {
	contact: {
		/**
		 * Contact us
		 */
		title: () => LocalizedString
		/**
		 * Address
		 */
		addressTitle: () => LocalizedString
		/**
		 * Email
		 */
		emailTitle: () => LocalizedString
		/**
		 * Phone
		 */
		phoneTitle: () => LocalizedString
	}
	meta: {
		/**
		 * Auroraklinikken provides cetamine treatment for depression in Oslo
		 */
		description: () => LocalizedString
	}
	/**
	 * Go to booking
	 */
	goToBookingPage: () => LocalizedString
	/**
	 * Our services
	 */
	ourServices: () => LocalizedString
	/**
	 * Home
	 */
	homeTitle: () => LocalizedString
}

export type Formatters = {}