-
Notifications
You must be signed in to change notification settings - Fork 0
/
localizations.js
62 lines (61 loc) · 1.74 KB
/
localizations.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Only for the official languages that FDM named in the project brief
const translations = {
en: {
available: 'Available from',
month: 'month',
bath: 'Bath',
bed: 'Bed',
livRoom: 'Living Room',
desc: 'Description',
features: 'Features',
accessibility: 'Accessibility',
rating: 'Rating',
wifi: 'Wifi',
location: 'Location',
cleanliness: 'Cleanliness',
posted: 'Posted By',
message: 'Message',
translate: 'Translate',
loadingAccom: 'Loading Accommodation...',
share: 'Share',
},
fr: {
available: 'Disponible à partir de',
month: 'mois',
bath: 'Bain',
bed: 'Lit',
desc: 'Description',
livRoom: 'Salon',
features: 'Caractéristiques',
accessibility: 'Accessibilité',
rating: 'Evaluation',
wifi: 'Wifi',
location: 'Emplacement',
cleanliness: 'Propreté',
posted: 'Publié par',
message: 'Envoyer un message',
translate: 'Traduire',
loadingAccom: 'Chargement les hébergements...',
share: 'Partager',
},
de: {
available: 'Verfügbar seit',
month: 'Monat',
bath: 'Bad',
bed: 'Bett',
desc: 'Beschreibung',
livRoom: 'Wohnzimmer',
features: 'Funktionen',
accessibility: 'Zugänglichkeit',
rating: 'Bewertung',
wifi: 'WLAN',
location: 'Lage',
cleanliness: 'Sauberkeit',
posted: 'Veröffentlicht von',
message: 'Eine Nachricht senden',
translate: 'Übersetzen',
loadingAccom: 'Unterkünfte werden geladen...',
share: 'Teilen',
},
};
export { translations };