90 lines
2.4 KiB
JavaScript
90 lines
2.4 KiB
JavaScript
function Translations() {
|
|
return {
|
|
'en-US': {
|
|
BushClover: "bush clover",
|
|
Cherry: "cherry",
|
|
Chrysanthemum: "chrysanthemum",
|
|
Iris: "iris",
|
|
Maple: "maple",
|
|
Paulownia: "paulownias",
|
|
Peony: "peony",
|
|
Pine: "pine",
|
|
Plum: "plum",
|
|
SusukiGrass: "susuki grass",
|
|
Willow: "willow",
|
|
Wisteria: "wisteria",
|
|
accept: "Accept",
|
|
alone: "No one to play with yet ! Wait a little",
|
|
decline: "Decline",
|
|
endRound: "End the round",
|
|
endGame: "Return to main menu",
|
|
join: "Join",
|
|
invite: "Invite",
|
|
invited: function(name) {
|
|
return name + " has invited you to a game";
|
|
},
|
|
koikoi: "KoiKoi !!",
|
|
leave: "Leave",
|
|
lost: "You lost the game",
|
|
monthFlower: function(flower) {
|
|
return "This month's flower is the " + flower;
|
|
},
|
|
notFound: "No one goes by that name",
|
|
pickName: "Pick a name you like",
|
|
playing: function(name) {
|
|
return name + " is playing";
|
|
},
|
|
ok: "Ok",
|
|
startGameWith: "Start a game with",
|
|
theyScored: function(name) {
|
|
return name + " scored";
|
|
},
|
|
won: "You won !",
|
|
yourTurn: "Your turn",
|
|
youScored: "You scored ! Do you want to get your points and end the round or KoiKoi ?"
|
|
},
|
|
'fr-FR': {
|
|
BushClover: "lespédézas",
|
|
Cherry: "cerisiers",
|
|
Chrysanthemum: "chrysanthèmes",
|
|
Iris: "iris",
|
|
Maple: "érables",
|
|
Paulownia: "paulownias",
|
|
Peony: "pivoines",
|
|
Pine: "pins",
|
|
Plum: "prunus",
|
|
SusukiGrass: "herbes susukis",
|
|
Willow: "saules",
|
|
Wisteria: "glycines",
|
|
accept: "Accepter",
|
|
alone: "Personne pour jouer pour l'instant ! Attendez un peu",
|
|
decline: "Refuser",
|
|
endRound: "Finir la manche",
|
|
endGame: "Retourner au menu principal",
|
|
join: "Entrer",
|
|
invite: "Inviter",
|
|
invited: function(name) {
|
|
return name + " vous propose une partie";
|
|
},
|
|
koikoi: "KoiKoi !!",
|
|
leave: "Partir",
|
|
lost: "Vous avez perdu",
|
|
monthFlower: function(flower) {
|
|
return "C'est le mois des " + flower;
|
|
},
|
|
notFound: "Personne ne s'appelle comme ça",
|
|
pickName: "Choisissez votre nom",
|
|
playing: function(name) {
|
|
return "C'est à " + name;
|
|
},
|
|
ok: "Ok",
|
|
startGameWith: "Commencer une partie avec",
|
|
theyScored: function(name) {
|
|
return name + " a marqué";
|
|
},
|
|
won: "Vous avez gagné !",
|
|
yourTurn: "À vous",
|
|
youScored: "Vous avez marqué ! Voulez-vous empocher vos gains et terminer la manche ou faire KoiKoi ?"
|
|
}
|
|
}
|
|
}
|