You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.4 KiB
68 lines
1.4 KiB
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/ms_MY';
|
||
|
import Calendar from '../calendar/locale/ms_MY';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/ms_MY';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/ms_MY';
|
||
5 years ago
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'ms-my',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
global: {
|
||
|
placeholder: 'Sila pilih',
|
||
|
},
|
||
|
PageHeader: {
|
||
|
back: 'Kembali',
|
||
|
},
|
||
|
Text: {
|
||
|
edit: 'Sunting',
|
||
|
copy: 'Salin',
|
||
|
copied: 'Berjaya menyalin',
|
||
|
expand: 'Kembang',
|
||
|
},
|
||
|
Empty: {
|
||
|
description: 'Tiada data',
|
||
|
},
|
||
|
Table: {
|
||
|
filterTitle: 'Cari dengan tajuk',
|
||
3 years ago
|
filterConfirm: 'OK',
|
||
5 years ago
|
filterReset: 'Menetapkan semula',
|
||
|
emptyText: 'Tiada data',
|
||
|
selectAll: 'Pilih semua',
|
||
|
selectInvert: 'Terbalikkan',
|
||
|
},
|
||
|
Modal: {
|
||
|
okText: 'OK',
|
||
|
cancelText: 'Batal',
|
||
|
justOkText: 'OK',
|
||
|
},
|
||
|
Popconfirm: {
|
||
|
okText: 'OK',
|
||
|
cancelText: 'Batal',
|
||
|
},
|
||
|
Transfer: {
|
||
2 years ago
|
titles: ['', ''],
|
||
5 years ago
|
notFoundContent: 'Tidak dijumpai',
|
||
|
searchPlaceholder: 'Carian di sini',
|
||
|
itemUnit: 'item',
|
||
|
itemsUnit: 'item',
|
||
|
},
|
||
|
Icon: {
|
||
|
icon: 'ikon',
|
||
|
},
|
||
|
Select: {
|
||
|
notFoundContent: 'Tidak Dijumpai',
|
||
|
},
|
||
|
Upload: {
|
||
|
uploading: 'Sedang memuat naik...',
|
||
|
removeFile: 'Buang fail',
|
||
|
uploadError: 'Masalah muat naik',
|
||
|
previewFile: 'Tengok fail',
|
||
5 years ago
|
downloadFile: 'Muat turun fail',
|
||
5 years ago
|
},
|
||
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|