69 lines
1.9 KiB
TypeScript
69 lines
1.9 KiB
TypeScript
|
||
export type Texts = {
|
||
Mancala: string,
|
||
Leave: string,
|
||
NewGame: string,
|
||
YourTurn: string,
|
||
OpponentTurn: string,
|
||
GameEnded: string,
|
||
GameCrashed: string,
|
||
YouWon: string,
|
||
YouLost: string,
|
||
Connecting: string,
|
||
Connected: string,
|
||
CannotConnect: string,
|
||
ConnectionLost: string,
|
||
ConnectingAgain: string,
|
||
ServerError: string,
|
||
SearchingOpponet: string,
|
||
OpponentLeavesTheGame: string,
|
||
YouLeftTheGame: string,
|
||
SearchingOpponent: string,
|
||
PleaseWait : string
|
||
}
|
||
|
||
export const EnUs: Texts = {
|
||
Mancala: "Mancala",
|
||
Leave: "Leave The Game",
|
||
NewGame: "New Game",
|
||
YourTurn: "Your Turn",
|
||
OpponentTurn: "Opponent Turn",
|
||
GameEnded: "Game Ended",
|
||
GameCrashed: "Game Crashed",
|
||
YouWon: "You Won",
|
||
YouLost: "You Lost",
|
||
Connecting: "Connecting",
|
||
Connected: "Connected",
|
||
CannotConnect: "Can't Connect",
|
||
ConnectionLost: "Connection Lost",
|
||
ConnectingAgain: "Connecting Again",
|
||
ServerError: "Server Error",
|
||
SearchingOpponet: "Searching Opponet",
|
||
OpponentLeavesTheGame: "Opponent Leaves The Game",
|
||
YouLeftTheGame: "You Left The Game",
|
||
SearchingOpponent: "Searching Opponent",
|
||
PleaseWait : "Please Wait"
|
||
}
|
||
|
||
export const TrTr: Texts = {
|
||
Mancala: "Köçürme",
|
||
Leave: "Oyundan Ayrıl",
|
||
NewGame: "Yeni Oyun",
|
||
YourTurn: "Sıra Sende",
|
||
OpponentTurn: "Sıra Rakipte",
|
||
GameEnded: "Oyun Bitti",
|
||
GameCrashed: "Oyunda Hata Oluştu",
|
||
YouWon: "Kazandın",
|
||
YouLost: "Kaybettin",
|
||
Connecting: "Bağlanılıyor",
|
||
Connected: "Bağlandı",
|
||
CannotConnect: "Bağlanılamadı",
|
||
ConnectionLost: "Bağlantı Koptu",
|
||
ConnectingAgain: "Tekrar Bağlanılıyor",
|
||
ServerError: "Sunucu Hatası",
|
||
SearchingOpponet: "Rakip Aranıyor",
|
||
OpponentLeavesTheGame: "Rakip Oyundan Ayrıldı",
|
||
YouLeftTheGame: "Sen Oyundan Ayrıldın",
|
||
SearchingOpponent: "Rakip Aranıyor",
|
||
PleaseWait: "Lütfen Bekleyin"
|
||
} |