UNPKG

rss-mind-map

Version:

Rss mind map is a free open source mind map core.

41 lines (40 loc) 933 B
type LangPack = { addChild: string; addParent: string; addSibling: string; removeNode: string; focus: string; cancelFocus: string; moveUp: string; moveDown: string; link: string; chooseNodeToLinkTips: string; summary: string; fullscreen: string; toCenter: string; zoomOut: string; zoomIn: string; viewModeLeft: string; viewModeRight: string; viewModeSide: string; subBranchRounded: string; subBranchBezier: string; addDescription: string; openTaskInfo: string; createNewTask: string; addImage: string; removeImage: string; changeBgColor: string; addLink: string; enterYourLink: string; add: string; copyLinkToClipboard: string; deleteLink: string; copiedToClipboard: string; }; /** * @public */ export type Locale = 'en' | 'fr' | 'vi'; declare const i18n: Record<Locale, LangPack>; export default i18n;