Blame view

src/locale/lang/id-ID.js 2.67 KB
5bd0f522   梁灏   fixed
1
  import setLang from '../lang';
a5dad1af   梁灏   fixed #1090 & clo...
2
3
  
  const lang = {
d6542f28   Indra Gunawan   add id-ID locale
4
      i: {
3d50db5b   Sergio Crisostomo   add datePanelLabe...
5
          locale: 'id-ID',
d6542f28   Indra Gunawan   add id-ID locale
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
          select: {
              placeholder: 'Pilih',
              noMatch: 'Tidak ada data yang cocok',
              loading: 'Memuat'
          },
          table: {
              noDataText: 'Tidak ada data',
              noFilteredDataText: 'Tidak ada data filter',
              confirmFilter: 'Konfirmasi',
              resetFilter: 'Tata ulang',
              clearFilter: 'Semua'
          },
          datepicker: {
              selectDate: 'Pilih tanggal',
              selectTime: 'Pilih waktu',
              startTime: 'Waktu Mulai',
              endTime: 'Waktu Selesai',
              clear: 'Bersihkan',
              ok: 'OK',
3d50db5b   Sergio Crisostomo   add datePanelLabe...
25
              datePanelLabel: '[mmmm] [yyyy]',
d6542f28   Indra Gunawan   add id-ID locale
26
27
28
29
30
31
32
33
34
35
36
37
38
39
              month: '',
              month1: 'Januari',
              month2: 'Februari',
              month3: 'Maret',
              month4: 'April',
              month5: 'Mei',
              month6: 'Juni',
              month7: 'Juli',
              month8: 'Agustus',
              month9: 'September',
              month10: 'Oktober',
              month11: 'November',
              month12: 'Desember',
              year: '',
89303674   Sergio Crisostomo   add weekStartDay ...
40
              weekStartDay: '1',
d6542f28   Indra Gunawan   add id-ID locale
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
              weeks: {
                  sun: 'Min',
                  mon: 'Sen',
                  tue: 'Sel',
                  wed: 'Rab',
                  thu: 'Kam',
                  fri: 'Jum',
                  sat: 'Sab'
              },
              months: {
                  m1: 'Jan',
                  m2: 'Feb',
                  m3: 'Mar',
                  m4: 'Apr',
                  m5: 'Mei',
                  m6: 'Jun',
                  m7: 'Jul',
                  m8: 'Agu',
                  m9: 'Sep',
                  m10: 'Okt',
                  m11: 'Nov',
                  m12: 'Dec'
              }
          },
          transfer: {
              titles: {
                  source: 'Sumber',
                  target: 'Tujuan'
              },
              filterPlaceholder: 'Cari disini',
              notFoundText: 'Tidak ditemukan'
          },
          modal: {
              okText: 'OK',
              cancelText: 'Batal'
          },
          poptip: {
              okText: 'OK',
              cancelText: 'Batal'
          },
          page: {
              prev: 'Halaman Sebelumnya',
              next: 'Halaman Selanjutnya',
              total: 'Total',
              item: 'butir',
              items: 'butir',
              prev5: '5 Halaman Sebelumnya',
              next5: '5 Halaman Selanjutnya',
              page: '/page',
              goto: 'Pergi ke',
              p: ''
          },
          rate: {
              star: 'Star',
              stars: 'Stars'
          },
          tree: {
              emptyText: 'Tidak ada data'
          }
      }
89303674   Sergio Crisostomo   add weekStartDay ...
101
  };
a5dad1af   梁灏   fixed #1090 & clo...
102
  
5bd0f522   梁灏   fixed
103
  setLang(lang);
a5dad1af   梁灏   fixed #1090 & clo...
104
105
  
  export default lang;