chinese support in settings

This commit is contained in:
Jiaxin Peng
2023-11-01 10:32:22 +00:00
parent 407688c303
commit 4cd6557444
4 changed files with 47 additions and 23 deletions

View File

@@ -3,6 +3,8 @@
所以我在[原作者](https://github.com/EasyChris/obsidian-to-notion)的基础之上,增加了匹配[NotionNext](https://github.com/tangly1024/NotionNext)模板的功能。这样可以直接在Obsidian编辑整理好之后一键发布。 所以我在[原作者](https://github.com/EasyChris/obsidian-to-notion)的基础之上,增加了匹配[NotionNext](https://github.com/tangly1024/NotionNext)模板的功能。这样可以直接在Obsidian编辑整理好之后一键发布。
## 更新说明 ## 更新说明
### 0.1.10
- 修正了设置中的中文显示。
### 0.1.8 ### 0.1.8
- 重新整理了代码,增加了一个仓库转换按钮为之后的多数据库支持作准备。**但是现在还不支持多数据库如果你的数据库不是NotionNext你可以不用更新。** - 重新整理了代码,增加了一个仓库转换按钮为之后的多数据库支持作准备。**但是现在还不支持多数据库如果你的数据库不是NotionNext你可以不用更新。**
### 0.1.7 ### 0.1.7

View File

@@ -5,6 +5,8 @@ Thanks to the [original author](https://github.com/EasyChris/obsidian-to-notion)
Thus, based on the [original author's work](https://github.com/EasyChris/obsidian-to-notion), I've added a feature to match the [NotionNext](https://github.com/tangly1024/NotionNext) template. This way, you can edit directly in Obsidian and publish with a single click after organizing. Thus, based on the [original author's work](https://github.com/EasyChris/obsidian-to-notion), I've added a feature to match the [NotionNext](https://github.com/tangly1024/NotionNext) template. This way, you can edit directly in Obsidian and publish with a single click after organizing.
## Update ## Update
### 0.1.10
- Fix the Chinese support in the settings.
### 0.1.8 ### 0.1.8
- Rebuild the upload function, and add one button to select the different databases. **However, only NotionNext database is supported for now.** - Rebuild the upload function, and add one button to select the different databases. **However, only NotionNext database is supported for now.**
### 0.1.7 ### 0.1.7

View File

@@ -1,28 +1,46 @@
export const i18n: { [key: string]: any } = { export const I18n: { [key: string]: any } = {
"en": { "en": {
ribbonIcon: "Share to NotionNext",
CommandName: "share to notionnext",
NotionNextVersion: "NotionNext Version Database", NotionNextVersion: "NotionNext Version Database",
NotionNextVersionDesc: "Turn on this option if you are using NotionNext", NotionNextVersionDesc: "Turn on this option if you are using NotionNext",
NotionNextSetting: "NotionNext Database Settings", NotionNextSetting: "NotionNext Database Settings",
NotionAPI: "Notion API Token", NotionAPI: "Notion API Token",
NotionAPIDesc: "It's a secret", NotionAPIDesc: "It's a secret",
NotionAPIText:"Enter your Notion API Token",
NotionID: "Database ID", NotionID: "Database ID",
NotionIDText: "Enter your Database ID",
BannerUrl: "Banner url(optional)", BannerUrl: "Banner url(optional)",
BannerUrlDesc: "page banner url(optional), default is empty, if you want to show a banner, please enter the url(like:https://raw.githubusercontent.com/EasyChris/obsidian-to-notion/ae7a9ac6cf427f3ca338a409ce6967ced9506f12/doc/2.png)", BannerUrlDesc: "page banner url(optional), default is empty, if you want to show a banner, please enter the url(like:https://raw.githubusercontent.com/EasyChris/obsidian-to-notion/ae7a9ac6cf427f3ca338a409ce6967ced9506f12/doc/2.png)",
BannerUrlText: "Enter your banner url",
NotionUser: "Notion ID(username, optional)", NotionUser: "Notion ID(username, optional)",
NotionUserDesc: "Your notion ID (optional),share link likes:https://username.notion.site/,your notion id is [username]",
NotionUserText: "Enter your notion ID (options)",
NotionGeneralSetting: "General Notion Database Settings", NotionGeneralSetting: "General Notion Database Settings",
NotYetFinish: "Not finished. This function will be available in the next version", NotYetFinish: "Not finished. This function will be available in the next version",
}, },
"zh": { "zh": {
ribbonIcon: "分享到 NotionNext",
CommandName: "分享到 NotionNext",
NotionNextVersion: "NotionNext 版本数据库", NotionNextVersion: "NotionNext 版本数据库",
NotionNextVersionDesc: "如果你使用的是NotionNext请打开此选项", NotionNextVersionDesc: "如果你使用的是NotionNext请打开此选项",
NotionNextSetting: "NotionNext 数据库参数设置", NotionNextSetting: "NotionNext 数据库参数设置",
NotionAPI: "Notion API 令牌", NotionAPI: "Notion API 令牌",
NotionAPIDesc: "显示为密码", NotionAPIDesc: "显示为密码",
NotionAPIText:"输入你的 Notion API 令牌",
NotionID: "数据库 ID", NotionID: "数据库 ID",
NotionIDText: "输入你的数据库 ID",
BannerUrl: "封面图片地址(可选)", BannerUrl: "封面图片地址(可选)",
BannerUrlDesc: "页面封面图片地址可选默认为空如果你想显示封面图片请输入图片地址例如https://raw.githubusercontent.com/EasyChris/obsidian-to-notion/ae7a9ac6cf427f3ca338a409ce6967ced9506f12/doc/2.png", BannerUrlDesc: "页面封面图片地址可选默认为空如果你想显示封面图片请输入图片地址例如https://raw.githubusercontent.com/EasyChris/obsidian-to-notion/ae7a9ac6cf427f3ca338a409ce6967ced9506f12/doc/2.png",
BannerUrlText: "输入你的封面图片地址",
NotionUser: "Notion ID用户名可选", NotionUser: "Notion ID用户名可选",
NotionUserDesc: "你的 Notion ID可选分享链接类似https://username.notion.site/,你的 Notion ID 是 [username]",
NotionUserText: "输入你的 Notion ID可选",
NotionGeneralSetting: "普通 Notion 数据库设置", NotionGeneralSetting: "普通 Notion 数据库设置",
NotYetFinish: "未完成。此功能将在之后版本中提供", NotYetFinish: "未完成。此功能将在之后版本中提供",
}, },
} }
export const I18nConfig = (lang: any): any => {
return I18n[lang]
}

View File

@@ -3,7 +3,7 @@ import {addIcons} from 'src/icon';
import {Upload2Notion} from "src/Upload2Notion"; import {Upload2Notion} from "src/Upload2Notion";
import {Upload2NotionNext} from "src/Upload2Notion_NN"; import {Upload2NotionNext} from "src/Upload2Notion_NN";
import {NoticeMConfig} from "src/Message"; import {NoticeMConfig} from "src/Message";
import {I18nConfig} from "src/I18n";
// Remember to rename these classes and interfaces! // Remember to rename these classes and interfaces!
@@ -18,6 +18,8 @@ interface PluginSettings {
const langConfig = NoticeMConfig(window.localStorage.getItem('language') || 'en') const langConfig = NoticeMConfig(window.localStorage.getItem('language') || 'en')
const i18nConfig = I18nConfig(window.localStorage.getItem('language') || 'en')
const DEFAULT_SETTINGS: PluginSettings = { const DEFAULT_SETTINGS: PluginSettings = {
NNon: undefined, NNon: undefined,
notionAPI: "", notionAPI: "",
@@ -36,7 +38,7 @@ export default class ObsidianSyncNotionPlugin extends Plugin {
// This creates an icon in the left ribbon. // This creates an icon in the left ribbon.
const ribbonIconEl = this.addRibbonIcon( const ribbonIconEl = this.addRibbonIcon(
"notion-logo", "notion-logo",
"Share to NotionNext", i18nConfig.ribbonIcon,
async (evt: MouseEvent) => { async (evt: MouseEvent) => {
// Called when the user clicks the icon. // Called when the user clicks the icon.
await this.upload(); await this.upload();
@@ -49,7 +51,7 @@ export default class ObsidianSyncNotionPlugin extends Plugin {
this.addCommand({ this.addCommand({
id: "share-to-notionnext", id: "share-to-notionnext",
name: "share to notionnext", name: i18nConfig.CommandName,
editorCallback: async (editor: Editor, view: MarkdownView) => { editorCallback: async (editor: Editor, view: MarkdownView) => {
await this.upload() await this.upload()
}, },
@@ -69,14 +71,14 @@ export default class ObsidianSyncNotionPlugin extends Plugin {
// Check if NNon exists // Check if NNon exists
if (NNon === undefined) { if (NNon === undefined) {
const NNonmessage = NoticeMConfig(window.localStorage.getItem('language') || 'en')["NNonMissing"]; const NNonmessage = langConfig.NNonMissing;
new Notice(NNonmessage); new Notice(NNonmessage);
return; return;
} }
// Check if the user has set up the Notion API and database ID // Check if the user has set up the Notion API and database ID
if (notionAPI === "" || databaseID === "") { if (notionAPI === "" || databaseID === "") {
const setAPIMessage = NoticeMConfig(window.localStorage.getItem('language') || 'en')["set-api-id"]; const setAPIMessage = langConfig["set-api-id"];
new Notice(setAPIMessage); new Notice(setAPIMessage);
return; return;
} }
@@ -187,8 +189,8 @@ class ObsidianSettingTab extends PluginSettingTab {
containerEl.empty(); containerEl.empty();
new Setting(containerEl) new Setting(containerEl)
.setName("NotionNext version ") .setName(i18nConfig.NotionNextVersion)
.setDesc("Turn on this option if you are using NotionNext") .setDesc(i18nConfig.NotionNextVersionDesc)
.addToggle((toggle) => .addToggle((toggle) =>
toggle toggle
.setValue(this.plugin.settings.NNon) .setValue(this.plugin.settings.NNon)
@@ -198,15 +200,15 @@ class ObsidianSettingTab extends PluginSettingTab {
}) })
); );
containerEl.createEl('h2', {text: 'NotionNext Database Settings'}) containerEl.createEl('h2', {text: i18nConfig.NotionNextSetting})
new Setting(containerEl) new Setting(containerEl)
.setName("Notion API Token") .setName(i18nConfig.NotionAPI)
.setDesc("It's a secret") .setDesc(i18nConfig.NotionAPIDesc)
.addText((text) => { .addText((text) => {
text.inputEl.type = 'password'; text.inputEl.type = 'password';
return text return text
.setPlaceholder("Enter your Notion API Token") .setPlaceholder(i18nConfig.NotionAPIText)
.setValue(this.plugin.settings.notionAPI) .setValue(this.plugin.settings.notionAPI)
.onChange(async (value) => { .onChange(async (value) => {
this.plugin.settings.notionAPI = value; this.plugin.settings.notionAPI = value;
@@ -216,12 +218,12 @@ class ObsidianSettingTab extends PluginSettingTab {
const notionDatabaseID = new Setting(containerEl) const notionDatabaseID = new Setting(containerEl)
.setName("Database ID") .setName(i18nConfig.NotionID)
.setDesc("It's a secret") .setDesc(i18nConfig.NotionAPIDesc)
.addText((text) => { .addText((text) => {
text.inputEl.type = 'password'; text.inputEl.type = 'password';
return text return text
.setPlaceholder("Enter your Database ID") .setPlaceholder(i18nConfig.NotionIDText)
.setValue(this.plugin.settings.databaseID) .setValue(this.plugin.settings.databaseID)
.onChange(async (value) => { .onChange(async (value) => {
this.plugin.settings.databaseID = value; this.plugin.settings.databaseID = value;
@@ -233,11 +235,11 @@ class ObsidianSettingTab extends PluginSettingTab {
// notionDatabaseID.controlEl.querySelector('input').type='password' // notionDatabaseID.controlEl.querySelector('input').type='password'
new Setting(containerEl) new Setting(containerEl)
.setName("Banner url(optional)") .setName(i18nConfig.BannerUrl)
.setDesc("page banner url(optional), default is empty, if you want to show a banner, please enter the url(like:https://raw.githubusercontent.com/EasyChris/obsidian-to-notion/ae7a9ac6cf427f3ca338a409ce6967ced9506f12/doc/2.png)") .setDesc(i18nConfig.BannerUrlDesc)
.addText((text) => .addText((text) =>
text text
.setPlaceholder("Enter banner pic url: ") .setPlaceholder(i18nConfig.BannerUrlText)
.setValue(this.plugin.settings.bannerUrl) .setValue(this.plugin.settings.bannerUrl)
.onChange(async (value) => { .onChange(async (value) => {
this.plugin.settings.bannerUrl = value; this.plugin.settings.bannerUrl = value;
@@ -247,11 +249,11 @@ class ObsidianSettingTab extends PluginSettingTab {
new Setting(containerEl) new Setting(containerEl)
.setName("Notion ID(username, optional)") .setName(i18nConfig.NotionUser)
.setDesc("Your notion ID(optional),share link likes:https://username.notion.site/,your notion id is [username]") .setDesc(i18nConfig.NotionUserDesc)
.addText((text) => .addText((text) =>
text text
.setPlaceholder("Enter notion ID(options) ") .setPlaceholder(i18nConfig.NotionUserText)
.setValue(this.plugin.settings.notionID) .setValue(this.plugin.settings.notionID)
.onChange(async (value) => { .onChange(async (value) => {
this.plugin.settings.notionID = value; this.plugin.settings.notionID = value;
@@ -260,10 +262,10 @@ class ObsidianSettingTab extends PluginSettingTab {
); );
// General Database Settings // General Database Settings
containerEl.createEl('h2', {text: 'General Notion Database Settings'}); containerEl.createEl('h2', {text: i18nConfig.NotionGeneralSetting});
new Setting(containerEl) new Setting(containerEl)
.setName("Not finished. This function will be available in the next version") .setName(i18nConfig.NotYetFinish)
// new Setting(containerEl) // new Setting(containerEl)
// .setName("Convert tags(optional)") // .setName("Convert tags(optional)")