-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n.js
41 lines (37 loc) · 1.29 KB
/
i18n.js
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
export const quote = {
english: `The clock in Lord Vetinari’s anteroom didn’t tick right. Sometimes the
tick was just a fraction late, sometimes the tock was early.
Occasionally, one or the other didn’t happen at all. This wasn’t
really noticeable until you’d been in there for five minutes, by which
time small but significant parts of the brain were going crazy.<br />
<hr />
Terry Pratchett, Going Postal`,
dutch: `De klok in de wachtkamer van Heer Ottopedi tikte niet goed. Op de een of andere manier
was de tik net een fractie te laat en soms was te tok een beetje te vroeg.
Af en toe vil de ene of de andere helemaal uit. Normaal mekte je het bijna niet,
maar als je er vijf minuten naar had geluisterd, begonnen er kleine maar belangrijke stukjes van je brein gek te worden.<br />
<hr />
Terry Pratchett, Posterijen`,
};
export const flag = {
english: "🇳🇱",
dutch: "🇬🇧",
};
export const heading = {
english: `Vetinari's clock`,
dutch: `Ottopedi's klok`,
};
export const onOff = {
english: {
on: "On",
off: "Off",
},
dutch: {
on: "Aan",
off: "Uit",
},
};
export const footer = {
english: `feeling crazy yet?`,
dutch: `voel je al gek?`,
};