File size: 3,777 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
import Pagination from 'rc-pagination/lib/locale/ms_MY';
import type { Locale } from '.';
import Calendar from '../calendar/locale/ms_MY';
import DatePicker from '../date-picker/locale/ms_MY';
import TimePicker from '../time-picker/locale/ms_MY';
const typeTemplate = '${label} bukan ${type} jenis yang sah';
const localeValues: Locale = {
locale: 'ms-my',
Pagination,
DatePicker,
TimePicker,
Calendar,
global: {
placeholder: 'Sila pilih',
close: 'Tutup',
},
Table: {
filterTitle: 'Cari dengan tajuk',
filterConfirm: 'OK',
filterReset: 'Menetapkan semula',
emptyText: 'Tiada data',
selectAll: 'Pilih Semua',
selectInvert: 'Terbalikkan',
filterEmptyText: 'Tiada Saringan',
filterCheckAll: 'Semak Semua',
filterSearchPlaceholder: 'Cari',
selectNone: 'Kosong Semua',
selectionAll: 'Semua Data',
sortTitle: 'Urutkan',
expand: 'Buka',
collapse: 'Tutup',
triggerDesc: 'Turun',
triggerAsc: 'Naik',
cancelSort: 'Batal Urut',
},
Modal: {
okText: 'OK',
cancelText: 'Batal',
justOkText: 'OK',
},
Tour: {
Next: 'Seterusnya',
Previous: 'Sebelumnya',
Finish: 'Tamat',
},
Popconfirm: {
okText: 'OK',
cancelText: 'Batal',
},
Transfer: {
titles: ['', ''],
notFoundContent: 'Tidak dijumpai',
searchPlaceholder: 'Carian di sini',
itemUnit: 'item',
itemsUnit: 'item',
remove: 'Buang',
selectCurrent: 'Pilih Halaman Ini',
removeCurrent: 'Buang Dari Halaman Ini',
selectAll: 'Pilih Semua',
removeAll: 'Buang Semua',
selectInvert: 'Balik Pilihan',
},
Upload: {
uploading: 'Sedang memuat naik...',
removeFile: 'Buang fail',
uploadError: 'Masalah muat naik',
previewFile: 'Tengok fail',
downloadFile: 'Muat turun fail',
},
Empty: {
description: 'Tiada data',
},
Icon: {
icon: 'ikon',
},
Text: {
edit: 'Sunting',
copy: 'Salin',
copied: 'Berjaya menyalin',
expand: 'Kembang',
},
Form: {
optional: '(Opsional)',
defaultValidateMessages: {
default: 'Ralat pengesahan untuk ${label}',
required: 'Isi ${label}',
enum: '${label} mesti salah satu dari [${enum}]',
whitespace: '${label} tidak boleh kosong',
date: {
format: 'Format tarikh ${label} salah',
parse: '${label} tidak boleh jadi tarikh',
invalid: '${label} adalah tarikh tidak sah',
},
types: {
string: typeTemplate,
method: typeTemplate,
array: typeTemplate,
object: typeTemplate,
number: typeTemplate,
date: typeTemplate,
boolean: typeTemplate,
integer: typeTemplate,
float: typeTemplate,
regexp: typeTemplate,
email: typeTemplate,
url: typeTemplate,
hex: typeTemplate,
},
string: {
len: '${label} mesti ${len} aksara',
min: 'Min ${min} aksara',
max: 'Max ${max} aksara',
range: '${label} antara ${min}-${max} aksara',
},
number: {
len: '${label} sama dengan ${len}',
min: 'Min ${min}',
max: 'Max ${max}',
range: '${label} antara ${min}-${max}',
},
array: {
len: '${len} ${label}',
min: 'Min ${min} ${label}',
max: 'Max ${max} ${label}',
range: '${label} antara ${min}-${max}',
},
pattern: {
mismatch: '${label} tidak sesuai ${pattern}',
},
},
},
Image: {
preview: 'Pratonton',
},
QRCode: {
expired: 'Kod QR luput',
refresh: 'Segar Semula',
},
ColorPicker: {
presetEmpty: 'Tiada',
transparent: 'Tidak tembus cahaya',
singleColor: 'Warna tunggal',
gradientColor: 'Warna gradien',
},
};
export default localeValues;
|