-
Notifications
You must be signed in to change notification settings - Fork 0
/
locales.lua
52 lines (41 loc) · 1.36 KB
/
locales.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
44
45
46
47
48
49
50
51
52
-- EnUS (default locale)
local L = LibStub('AceLocale-3.0'):NewLocale('2048', 'enUS', true)
if not L then return end
L['Play while you wait to play!'] = true
L['Old settings reset to defaults - sorry about that.'] = true
L['MOVES'] = true
L['SCORE'] = true
L['BEST'] = true
L['You won!'] = true
L['Game over!'] = true
L['Restart?'] = true
L['New game'] = true
L['Restart'] = true
L['Keep playing'] = true
L['Yes'] = true
L['No'] = true
L['Enable keyboard use'] = true
L['Enable pad'] = true
L['Window scale'] = true
L['Join the numbers and get to the |cFFFF00002048|r tile!'] = true
--frFR
L = LibStub('AceLocale-3.0'):NewLocale('2048', 'frFR')
if L then
L['Play while you wait to play!'] = 'Jouez en attendant de jouer !'
L['Old settings reset to defaults - sorry about that.'] = 'Réglages et scores réinitialisés - désolé.'
L['MOVES'] = 'COUPS'
L['SCORE'] = 'SCORE'
L['BEST'] = 'TOP'
L['You won!'] = 'Gagné !'
L['Game over!'] = 'Perdu !'
L['Restart?'] = 'Recommencer ?'
L['New game'] = 'Nouveau jeu'
L['Restart'] = 'Recommencer'
L['Keep playing'] = 'Continuer'
L['Yes'] = 'Oui'
L['No'] = 'Non'
L['Enable keyboard use'] = 'Utiliser le clavier'
L['Enable pad'] = 'Utiliser pavé de déplacement'
L['Window scale'] = 'Taille de la fenêtre'
L['Join the numbers and get to the |cFFFF00002048|r tile!'] ='Tentez d\'obtenir le nombre |cFFFF00002048|r !'
end