/** * @license * Copyright Alibaba.com All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ export interface FxPaginationI18nInterface { items_per_page: string; jump_to: string; jump_to_confirm: string; page: string; prev_page: string; next_page: string; prev_5: string; next_5: string; prev_3: string; next_3: string; } export interface FxGlobalI18nInterface { placeholder: string; } export interface FxDatePickerI18nInterface { lang: FxDatePickerLangI18nInterface; timePickerLocale: FxTimePickerI18nInterface; } export interface FxCalendarI18nInterface { today: string; now: string; backToToday: string; ok: string; clear: string; month: string; year: string; timeSelect: string; dateSelect: string; monthSelect: string; yearSelect: string; decadeSelect: string; yearFormat: string; monthFormat?: string; dateFormat: string; dayFormat: string; dateTimeFormat: string; monthBeforeYear?: boolean; previousMonth: string; nextMonth: string; previousYear: string; nextYear: string; previousDecade: string; nextDecade: string; previousCentury: string; nextCentury: string; } export interface FxDatePickerLangI18nInterface extends FxCalendarI18nInterface { placeholder: string; rangePlaceholder: string[]; } export interface FxTimePickerI18nInterface { placeholder: string; } export declare type FxCascaderI18nInterface = FxGlobalI18nInterface; export interface FxI18nInterface { locale: string; Pagination: FxPaginationI18nInterface; DatePicker: FxDatePickerI18nInterface; TimePicker: FxTimePickerI18nInterface; Calendar: FxCalendarI18nInterface; global?: FxGlobalI18nInterface; Table: { filterTitle: string; filterConfirm: string; filterReset: string; selectAll: string; selectInvert: string; }; Modal: { okText: string; cancelText: string; justOkText: string; }; Popconfirm: { okText: string; cancelText: string; }; Transfer: { titles?: string[]; searchPlaceholder: string; itemUnit: string; itemsUnit: string; }; Upload: { uploading: string; removeFile: string; uploadError: string; previewFile: string; }; Empty: { description: string; }; Text?: { edit: string; copy: string; copied: string; expand: string; }; } export declare type DateLocale = any;