mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
d689c7b855
* feat: remove locale-provider * chore: fix lint * Empty-Commit * test: remove test * Revert "test: remove test" This reverts commit 4f6b59883f6bf078f21a10898ef913c9e2adb913. * chore: 阶段性兼容 * fix lint * fix: fix lint * fix: add index * docs: update docs * docs: update * docs: update * docs: update
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import Pagination from 'rc-pagination/lib/locale/en_US';
|
|
import Calendar from '../calendar/locale/en_US';
|
|
import DatePicker from '../date-picker/locale/en_US';
|
|
import type { Locale } from '../locale';
|
|
import TimePicker from '../time-picker/locale/en_US';
|
|
|
|
const localeValues: Locale = {
|
|
locale: 'ne-np',
|
|
Pagination,
|
|
DatePicker,
|
|
TimePicker,
|
|
Calendar,
|
|
Table: {
|
|
filterTitle: 'फिल्टर मेनु',
|
|
filterConfirm: 'हो',
|
|
filterReset: 'रीसेट',
|
|
selectAll: 'सबै छान्नुुहोस्',
|
|
selectInvert: 'छनौट उल्टाउनुहोस',
|
|
},
|
|
Modal: {
|
|
okText: 'हो',
|
|
cancelText: 'होईन',
|
|
justOkText: 'हो',
|
|
},
|
|
Popconfirm: {
|
|
okText: 'हो',
|
|
cancelText: 'होईन',
|
|
},
|
|
Transfer: {
|
|
titles: ['', ''],
|
|
searchPlaceholder: 'यहाँ खोज्नुहोस्',
|
|
itemUnit: 'वस्तु',
|
|
itemsUnit: 'वस्तुहरू',
|
|
},
|
|
Upload: {
|
|
uploading: 'अपलोड गर्दै...',
|
|
removeFile: 'फाइल हटाउनुहोस्',
|
|
uploadError: 'अप्लोडमा समस्या भयो',
|
|
previewFile: 'फाइल पूर्वावलोकन गर्नुहोस्',
|
|
downloadFile: 'डाउनलोड फाइल',
|
|
},
|
|
Empty: {
|
|
description: 'डाटा छैन',
|
|
},
|
|
};
|
|
|
|
export default localeValues;
|