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.
55 lines
1.7 KiB
55 lines
1.7 KiB
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/kn_IN';
|
||
|
import Calendar from '../calendar/locale/kn_IN';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/kn_IN';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/kn_IN';
|
||
5 years ago
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'kn',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
// locales for all comoponents
|
||
|
global: {
|
||
|
placeholder: 'ದಯವಿಟ್ಟು ಆರಿಸಿ',
|
||
|
},
|
||
|
Table: {
|
||
|
filterTitle: 'ಪಟ್ಟಿ ಸೋಸಿ',
|
||
|
filterConfirm: 'ಸರಿ',
|
||
|
filterReset: 'ಮರುಹೊಂದಿಸಿ',
|
||
|
emptyText: 'ಮಾಹಿತಿ ಇಲ್ಲ',
|
||
|
selectAll: 'ಪ್ರಸ್ತುತ ಪುಟವನ್ನು ಆಯ್ಕೆಮಾಡಿ',
|
||
|
selectInvert: 'ಪ್ರಸ್ತುತ ಪುಟವನ್ನು ತಿರುಗಿಸಿ',
|
||
|
sortTitle: 'ವಿಂಗಡಿಸಿ',
|
||
|
},
|
||
|
Modal: {
|
||
|
okText: 'ಸರಿ',
|
||
|
cancelText: 'ರದ್ದು',
|
||
|
justOkText: 'ಸರಿ',
|
||
|
},
|
||
|
Popconfirm: {
|
||
|
okText: 'ಸರಿ',
|
||
|
cancelText: 'ರದ್ದು',
|
||
|
},
|
||
|
Transfer: {
|
||
|
titles: ['', ''],
|
||
|
notFoundContent: 'ದೊರೆತಿಲ್ಲ',
|
||
|
searchPlaceholder: 'ಇಲ್ಲಿ ಹುಡುಕಿ',
|
||
|
itemUnit: 'ವಿಷಯ',
|
||
|
itemsUnit: 'ವಿಷಯಗಳು',
|
||
|
},
|
||
|
Select: {
|
||
|
notFoundContent: 'ದೊರೆತಿಲ್ಲ',
|
||
|
},
|
||
|
Upload: {
|
||
|
uploading: 'ಏರಿಸಿ...',
|
||
|
removeFile: 'ಫೈಲ್ ತೆಗೆದುಹಾಕಿ',
|
||
|
uploadError: 'ಏರಿಸುವ ದೋಷ',
|
||
|
previewFile: 'ಫೈಲ್ ಮುನ್ನೋಟ',
|
||
5 years ago
|
downloadFile: 'ಫೈಲ್ ಡೌನ್ಲೋಡ್ ಮಾಡಿ',
|
||
5 years ago
|
},
|
||
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|