mancala/src/const/texts.ts

57 lines
1.5 KiB
TypeScript
Raw Normal View History

2021-07-02 23:13:38 +03:00
export type Texts = {
Mancala : string,
Leave : string,
NewGame : string,
YourTurn : string,
OpponentTurn : string,
GameEnded : string,
2021-07-04 00:45:00 +03:00
GameCrashed : string,
2021-07-02 23:13:38 +03:00
YouWon : string,
YouLost : string,
Connecting : string,
Connected : string,
CannotConnect : string,
ConnectionLost : string,
ConnectingAgain : string,
ServerError : string,
SearchingOpponet : string,
}
export const EnUs : Texts = {
Mancala : "Mancala",
Leave : "Leave The Game",
NewGame : "New Game",
YourTurn : "Your Turn",
OpponentTurn : "Opponent Turn",
GameEnded : "Game Ended",
2021-07-04 00:45:00 +03:00
GameCrashed : "Game Crashed",
2021-07-02 23:13:38 +03:00
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",
}
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",
2021-07-04 00:45:00 +03:00
GameCrashed : "Oyunda Hata Oluştu",
2021-07-02 23:13:38 +03:00
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",
}