UNPKG

ant-design-x-vue-next

Version:

Ant Design X for Vue — community continuation aligned with @ant-design/x

39 lines (38 loc) 880 B
import type { Locale as AntdLocale } from 'ant-design-vue/es/locale'; export interface xLocale { locale: string; Conversations?: { create: string; }; Actions?: { feedbackLike: string; feedbackDislike: string; audio: string; audioRunning: string; audioError: string; audioLoading: string; }; Sender?: { stopLoading: string; speechRecording: string; }; Bubble?: { editableOk: string; editableCancel: string; }; Mermaid?: { zoomIn: string; zoomOut: string; zoomReset: string; download: string; code: string; image: string; }; Folder?: { selectFile: string; loadError: string; noService: string; loadFailed: string; }; } export type Locale = xLocale & AntdLocale;