-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtranslate.js
75 lines (73 loc) · 5.22 KB
/
translate.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
63
64
65
66
67
68
69
70
71
72
73
74
75
export { translate }
const translate = {
eng: {
players: "Players",
fortune: "Fortune",
culture: "Culture",
trivia: "Trivia",
countries: ["Albania", "Cape verde", "Chechnya", "China", "Egypt", "France", "Germany", "Ghana", "Greece", "Ireland", "Italy", "Poland", "Portugal", "Syria", "Ukraine"],
info: ["PLAY", "RULES", "REFRESH", "Restart all the scores. (not undoable)", "UPDATE APP", "Check for App updates...", "INSTALL<br>(only 1Mb)",
"Install the App on your phone, computer or other device and play the game offline, anytime!", "This App was<br>brought to you by",
"and developed by<br>Sugodesign with the<br>collaboration of Steve Mills"]
},
pol: {
players: "Osoby grające",
fortune: "Karta losu",
culture: "Karty kultury",
trivia: "Karty ciekawostek",
countries: ["Albania", "Republika Zielonego Przylądka", "Czeczenia", "Chiny", "Egipt", "Francja", "Niemcy", "Ghana", "Grecja", "Irlandia", "Włochy", "Polska", "Portugalia", "Syria", "Ukraina"],
info: ["PLAY", "RULES", "REFRESH", "Restart all the scores. Attention, it’s not undoable", "UPDATE APP", "Check for App updates...", "INSTALL",
"Install the App on your phone, computer or other device and play the game offline, anytime!", "This App was<br>brought to you by",
"and developed by<br>Sugodesign with the<br>collaboration of Steve Mills"]
},
ger: {
players: "Spieler*innen",
fortune: "Glück",
culture: "Kultur",
trivia: "Wissen",
countries: ["Albanien", "Kap Verde", "Tschetschenien", "China", "Ägypten", "Frankreich", "Deutschland", "Ghana", "Griechenland", "Irland", "Italien", "Polen", "Portugal", "Syrien", "Ukraine"],
info: ["PLAY", "RULES", "REFRESH", "Restart all the scores. Attention, it’s not undoable", "UPDATE APP", "Check for App updates...", "INSTALL",
"Install the App on your phone, computer or other device and play the game offline, anytime!", "This App was<br>brought to you by",
"and developed by<br>Sugodesign with the<br>collaboration of Steve Mills"]
},
ita: {
players: "Giocatoris",
fortune: "Fortuna",
culture: "Cultura",
trivia: "Curiosità",
countries: ["Albania", "Cape verde", "Chechnya", "China", "Egypt", "France", "Germany", "Ghana", "Greece", "Ireland", "Italy", "Poland", "Portugal", "Syria", "Ukraine"],
info: ["PLAY", "RULES", "REFRESH", "Restart all the scores. Attention, it’s not undoable", "UPDATE APP", "Check for App updates...", "INSTALL",
"Install the App on your phone, computer or other device and play the game offline, anytime!", "This App was<br>brought to you by",
"and developed by<br>Sugodesign with the<br>collaboration of Steve Mills"]
},
por: {
players: "Jogadores",
fortune: "Sorte",
culture: "Cultura",
trivia: "Curiosidades",
countries: ["Albânia", "Cabo Verde", "Chechénia", "China", "Egipto", "França", "Alemanha", "Gana", "Grécia", "Irelanda", "Itália", "Polónia", "Portugal", "Síria", "Ucrânia"],
info: ["JOGAR", "REGRAS", "REINICIAR", "Reiniciar todos os resultados.<br>(não é reversível)", "ACTUALIZAR A APP", "Ver se há actualizações...", "INSTALAR<br>(apenas 1Mb)",
"Instalar a App no telemóvel, computador ou outro dispositivo para jogar offline, em qualquer momento!", "Esta App foi<br>desenvolvida por",
"e programada por<br>Sugodesign com a<br>colaboração de Steve Mills"]
},
gre: {
players: "ΠΑΙΧΤΕΣ",
fortune: "ΤΥΧΗΣ",
culture: "ΠΟΛΙΤΙΣΜΟΥ",
trivia: "Tκουίζ",
countries: ["Αλβανία", "Πράσινο Ακρωτήριο", "Τσετσενία", "Κίνα", "Αίγυπτος", "Γαλλία", "Γερμανία", "Γκάνα", "Ελλάδα", "Ιρλανδία", "Ιταλία", "Πολωνία", "Πορτογαλία", "Συρία", "Ουκρανία"],
info: ["PLAY", "RULES", "REFRESH", "Restart all the scores. Attention, it’s not undoable", "UPDATE APP", "Check for App updates...", "INSTALL",
"Install the App on your phone, computer or other device and play the game offline, anytime!", "This App was<br>brought to you by",
"and developed by<br>Sugodesign with the<br>collaboration of Steve Mills"]
},
ukr: {
players: "Граче",
fortune: "Карта фортуни",
culture: "Карти культури",
trivia: "Цікавий факт",
countries: ["Албанія", " Кабо-Верде", "Чечня", "Китай", "Єгипет", "Франція", "Німеччи", "Гана", "Греція", "Ірланді", "Італія", "Польща", "Португалія", "Сирія", "Україна"],
info: ["PLAY", "RULES", "REFRESH", "Restart all the scores. Attention, it’s not undoable", "UPDATE APP", "Check for App updates...", "INSTALL",
"Install the App on your phone, computer or other device and play the game offline, anytime!", "This App was<br>brought to you by",
"and developed by<br>Sugodesign with the<br>collaboration of Steve Mills"]
}
}