translations.js 770 B

1234567891011121314151617181920212223
  1. locale = { en: {}, tr: {} };
  2. locale.tr.Score = "Puan";
  3. locale.tr.Online = "Oynayanlar";
  4. locale.tr.Games = "Oyunlar";
  5. locale.tr.Rules = "Kurallar";
  6. locale.tr.Quota = "Kota";
  7. locale.tr.Kakush = "Kakuş";
  8. locale.tr.Login = "Üye Ol";
  9. locale.tr.Statistics = "İstatistikleri";
  10. locale.en.EditMessage = "Write some text here";
  11. locale.tr.EditMessage = "Burada bazı metin yazmak";
  12. locale.en.GameChat = "This is In-Game chat";
  13. locale.tr.GameChat = "Oyun sohbet";
  14. locale.en.PrivateChat = "is waiting for chat with you";
  15. locale.tr.PrivateChat = "seninle sohbet için bekliyor";
  16. currentLocale = "en";
  17. function i18n(word) {
  18. var translation = locale[currentLocale][word];
  19. return (translation == null) ? word : translation;
  20. }