-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlang.lua
43 lines (40 loc) · 1.45 KB
/
lang.lua
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
if os.language() == "FRENCH" then
--kikito sha1
lang = {
cred = {
"Développé par\n\nTesté par\n\n\n\nMerci à",
"Appplelo\n\nTuxbot123, yaounshow\n\nMacrey, Wirus\n\nCustom Protocol & à la Team Zenyth\n\ngdljjrod, Davis Nuñez & Rober Galarga\n\nShine & Ubuntu Font"
},
sensibilite = "Sensibilité",
mode = "Mode de jeu",
score = "Meilleurs score",
temps = "Meilleurs temps",
fin = {"Ancien","Nouveau","SCORES","TEMPS","Plus vu"},
couleur = {"Rouge","Vert","Bleu"},
figure = {"Rond","Croix","Carré","Triangle"},
level = {"Noir & Blanc","Tout en couleur","Recto Noir & Blanc","Recto Tout en couleur"},
versus = "Il est temps d'affronter vos amis !",
pause = "Pause",
retour_menu = "O : Quiter la partie",
retour_partie = "Start : Retour à la partie"
}
else
lang = {
cred = {
"Developped by\n\nTested by\n\n\n\nThanks to",
"Appplelo\n\nTuxbot123, yaounshow\n\nMacrey, Wirus\n\nCustom Protocol & Team Zenyth\n\ngdljjrod, Davis Nuñez & Rober Galarga\n\nShine & Ubuntu Font"
},
sensibilite = "Sensibility",
mode = "Game mode",
score = "Best score",
temps = "Best time",
fin = {"Old","New","SCORES","TIMES","Most Viewed"},
couleur = {"Red","Green","Blue"},
figure = {"Circle","Cross","Square","Triangle"},
level = {"Black & White","Colorful","Recto Black & White","Recto Colorful"},
versus = "It's the time to fight your friends!",
pause = "Pause",
retour_menu = "O: Leave the game",
retour_partie = "Start: Back to the game"
}
end