-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdictionary.js
More file actions
58 lines (52 loc) · 1.86 KB
/
dictionary.js
File metadata and controls
58 lines (52 loc) · 1.86 KB
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
export function dictionary(locale) {
return {
default: locale,
en: {
//Generics - used across the whole app
generic: {
login: "Login",
logout: "Logout",
loginDescription: "You can choose to login in with either Facebook or Google+",
loginWithFacebook: "Login with Facebook",
loginWithGoogle: "Login with Google+",
},
//Landingpage - What you see if you are not logged in...
landingpage: {
title: "Odds against your friends"
}
},
da: {
//Generics - used across the whole app
generic: {
save: "Gem",
cancel: "Annuller",
login: "Log ind",
logout: "Log ud",
loginDesc: "Du kan vælge at logge ind med Facebook eller Google+",
loginWithFacebook: "Log ind med Facebook",
loginWithGoogle: "Log ind med Google+",
},
//Landingpage - What you see if you are not logged in...
landingpage: {
title: "Odds mod dine venner"
},
group:{
yourGroups: "Dine grupper",
createGroupButton: "Opret gruppe",
findGroupButton: "Find gruppe",
changeGroupTitle: "Skift gruppe",
changeGroupButton: "Skift gruppe",
changeGroupDesc: "Vælg hvilken af dine grupper du vil se",
maxGroupsReachedDesc: "Du kan maksimalt være medlem af 3 grupper.",
joinGroupButton: "Bliv medlem",
leaveGroupButton: "Forlad gruppe",
userIsMemberDesc: "Du er medlem",
userIsNotMemberDesc: "Du er ikke medlem af denne gruppe.",
groupIsPrivateDesc: "Denne gruppe er privat, du skal have en invitation for at deltage.",
},
coupon:{
totalProfit: "Mulig gevinst"
}
},
}
}