Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mamayaya1
GitHub Repository: mamayaya1/game
Path: blob/main/projects/cupcake2048/js/localization.js
4626 views
1
String.toLocaleString({
2
3
"it": {
4
"%game-intro" : "Join the <strong>Cupcakes!</strong>",
5
"%restart-button" : "Play Again",
6
"%keep-playing-button" : "Keep going",
7
"%retry-button" : "Retry",
8
"%game-won" : "You win!",
9
"%game-over" : "Game over!",
10
"%game-explanation" : "<strong class=\"important\">How to play:</strong> Use your <strong>arrow keys</strong> to move the tiles. When two tiles with the same symbol touch, they <strong>get promoted!</strong>",
11
"%disclaimer" : "<strong class=\"important\">Note:</strong> This site <a href=\"http://git.io/cupcakes\">git.io/cupcakes</a> is a spin-off of the official version of <a href=\"http://git.io/2048\">2048</a> created by <a href=\"http://gabrielecirulli.com\" target=\"_blank\">Gabriele Cirulli</a>.",
12
"%credits" : "Cupcakes images by <a href=\"http://www.georgetowncupcake.com/\" title=\"Georgetown Cupcake | DC Cupcakes | About\">Georgetown Cupcake</a>.",
13
"%tweet1" : "I scored \"",
14
"%tweet2" : " at 2048-CUPCAKES #2048game",
15
"%tile-legend" : "<strong class=\"important\">Tile Legend:</strong>",
16
'%2' : 'vanilla birthday',
17
'%4' : 'bubblegum pink',
18
'%8' : 'sunshine vanilla',
19
'%16' : 'valrhona blonde ganache',
20
'%32' : 'chocolare peanut butter cheesecake',
21
'%64' : 'chocolate mint fudge',
22
'%128' : 'chocolate spider web',
23
'%256' : 'toasted marshmallow',
24
'%512' : 'cookies and creme',
25
'%1024' : 'chocolate sundae',
26
'%2048' : 'white chocolate peppermint',
27
'%4096' : '2017 Confetti Vanilla',
28
'%8192' : 'Rainbow',
29
'%p0' : 'vanilla birthday',
30
'%p4' : 'bubblegum pink',
31
'%p8' : 'sunshine vanilla',
32
'%p16' : 'valrhona blonde ganache',
33
'%p32' : 'choc. peanut butter cheesecake',
34
'%p64' : 'choc. mint fudge',
35
'%p128' : 'choc. spider web',
36
'%p256' : 'toasted marshmallow',
37
'%p512' : 'cookies and creme',
38
'%p1024' : 'choc. sundae',
39
'%p2048' : 'white choc. peppermint',
40
'%p4096' : '2017 Confetti Vanilla',
41
'%p8192' : 'Rainbow'
42
43
},
44
45
"en": {
46
"%game-intro" : "Join the <strong>Cupcakes!</strong>",
47
"%restart-button" : "Play Again",
48
"%keep-playing-button" : "Keep going",
49
"%retry-button" : "Retry",
50
"%game-won" : "You win!",
51
"%game-over" : "Game over!",
52
"%game-explanation" : "<strong class=\"important\">How to play:</strong> Use your <strong>arrow keys</strong> to move the tiles. When two tiles with the same symbol touch, they <strong>get promoted!</strong>",
53
"%disclaimer" : "<strong class=\"important\">Note:</strong> This site <a href=\"http://git.io/cupcakes\">git.io/cupcakes</a> is a spin-off of the official version of <a href=\"http://git.io/2048\">2048</a> created by <a href=\"http://gabrielecirulli.com\" target=\"_blank\">Gabriele Cirulli</a>.",
54
"%credits" : "Cupcakes images by <a href=\"http://www.georgetowncupcake.com/\" title=\"Georgetown Cupcake | DC Cupcakes | About\">Georgetown Cupcake</a>.",
55
"%tweet1" : "I scored \"",
56
"%tweet2" : " at 2048-CUPCAKES #2048game",
57
"%tile-legend" : "<strong class=\"important\">Tile Legend:</strong>",
58
'%2' : 'vanilla birthday',
59
'%4' : 'bubblegum pink',
60
'%8' : 'sunshine vanilla',
61
'%16' : 'valrhona blonde ganache',
62
'%32' : 'chocolare peanut butter cheesecake',
63
'%64' : 'chocolate mint fudge',
64
'%128' : 'chocolate spider web',
65
'%256' : 'toasted marshmallow',
66
'%512' : 'cookies and creme',
67
'%1024' : 'chocolate sundae',
68
'%2048' : 'white chocolate peppermint',
69
'%4096' : '2017 Confetti Vanilla',
70
'%8192' : 'Rainbow',
71
'%p0' : 'vanilla birthday',
72
'%p4' : 'bubblegum pink',
73
'%p8' : 'sunshine vanilla',
74
'%p16' : 'valrhona blonde ganache',
75
'%p32' : 'choc. peanut butter cheesecake',
76
'%p64' : 'choc. mint fudge',
77
'%p128' : 'choc. spider web',
78
'%p256' : 'toasted marshmallow',
79
'%p512' : 'cookies and creme',
80
'%p1024' : 'choc. sundae',
81
'%p2048' : 'white choc. peppermint',
82
'%p4096' : '2017 Confetti Vanilla',
83
'%p8192' : 'Rainbow'
84
}
85
86
});
87
88