Blame view

src/locale/lang/tr-TR.js 2.61 KB
5bd0f522   梁灏   fixed
1
  import setLang from '../lang';
a5dad1af   梁灏   fixed #1090 & clo...
2
3
  
  const lang = {
f185a098   ndrshn   Added Turkish
4
      i: {
3d50db5b   Sergio Crisostomo   add datePanelLabe...
5
          locale: 'tr-TR',
f185a098   ndrshn   Added Turkish
6
7
          select: {
              placeholder: 'Seç',
01b54e30   梁灏   Select support re...
8
9
              noMatch: 'Eşleşen veri yok',
              loading: 'yükleme'
f185a098   ndrshn   Added Turkish
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
          },
          table: {
              noDataText: 'Veri Yok',
              noFilteredDataText: 'Süzülen veri yok',
              confirmFilter: 'Onayla',
              resetFilter: 'Sıfırla',
              clearFilter: 'Hepsi'
          },
          datepicker: {
              selectDate: 'Tarih seç',
              selectTime: 'Zaman seç',
              startTime: 'Başlangıç',
              endTime: 'Bitişe',
              clear: 'Temizle',
              ok: 'Tamam',
3d50db5b   Sergio Crisostomo   add datePanelLabe...
25
              datePanelLabel: '[mmmm] [yyyy]',
f185a098   ndrshn   Added Turkish
26
27
28
29
30
31
32
33
34
35
36
37
38
39
              month: '',
              month1: 'Ocak',
              month2: 'Şubat',
              month3: 'Mart',
              month4: 'Nisan',
              month5: 'Mayıs',
              month6: 'Haziran',
              month7: 'Temmuz',
              month8: 'Ağustos',
              month9: 'Eylül',
              month10: 'Ekim',
              month11: 'Kasım',
              month12: 'Aralık',
              year: '',
89303674   Sergio Crisostomo   add weekStartDay ...
40
              weekStartDay: '0',
f185a098   ndrshn   Added Turkish
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
              weeks: {
                  sun: 'Paz',
                  mon: 'Pzt',
                  tue: 'Sal',
                  wed: 'Çar',
                  thu: 'Per',
                  fri: 'Cum',
                  sat: 'Cmt'
              },
              months: {
                  m1: 'Oca',
                  m2: 'Şub',
                  m3: 'Mar',
                  m4: 'Nis',
                  m5: 'May',
                  m6: 'Haz',
                  m7: 'Tem',
                  m8: 'Ağu',
                  m9: 'Eyl',
                  m10: 'Ekm',
                  m11: 'Kas',
                  m12: 'Ara'
              }
          },
          transfer: {
              titles: {
                  source: 'Kaynak',
                  target: 'Hedef'
              },
              filterPlaceholder: 'Arama yapın',
              notFoundText: 'Bulunamadı'
          },
          modal: {
              okText: 'Tamam',
              cancelText: 'İptal'
          },
          poptip: {
              okText: 'Tamam',
              cancelText: 'İptal'
          },
          page: {
              prev: 'Önceki',
              next: 'Sonraki',
              total: 'Toplam',
              item: 'öğe',
              items: 'öğeler',
              prev5: 'Önceki 5 Sayfa',
              next5: 'Sonraki 5 Sayfa',
              page: '/sayfa',
              goto: 'Git',
              p: ''
          },
          rate: {
              star: 'Yıldız',
              stars: 'Yıldız'
          },
          tree: {
              emptyText: 'Veri Yok'
          }
      }
  };
a5dad1af   梁灏   fixed #1090 & clo...
102
  
5bd0f522   梁灏   fixed
103
  setLang(lang);
a5dad1af   梁灏   fixed #1090 & clo...
104
105
  
  export default lang;