Files
obsidian-to-NotionNext/Message.ts
2022-05-25 15:21:29 +08:00

21 lines
719 B
TypeScript

export const NoticeMsg: {[key: string]:any} = {
"en": {
"notion-logo": "Share to notion",
"sync-success": "Sync to notion success: \n",
"sync-fail": "Sync to notion fail: \n",
"open-notion": "Please open the file that needs to be synchronized",
"config-secrets-notion-api": "Please set up the notion API in the settings tab.",
"config-secrets-database-id": "Please set up the database id in the settings tab.",
},
"zh": {
"notion-logo": "分享到Notion",
"sync-success": "同步到Notion成功:\n",
"sync-fail": "同步到Notion失败: \n",
"open-file": "请打开需要同步的文件"
},
}
export const NoticeMConfig = (lang:any) :any => {
return NoticeMsg[lang]
}