Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Readme and fix translation #124

Merged
merged 3 commits into from
Jul 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,34 @@ GitHub Release:[Releases · TankNee/Memocast · GitHub](https://github.com/Tan

![](https://img.tanknee.cn/blogpicbed/2021/07/08/20210708b84241135796a.png)

### 编辑器与国际化

![](https://img.tanknee.cn/blogpicbed/2021/07/13/202107135f7205e6b31ef.gif)

### 图片快速插入

![](https://img.tanknee.cn/blogpicbed/2021/07/13/202107133edb79c27785e.gif)

### 编辑器快捷操作

![](https://img.tanknee.cn/blogpicbed/2021/07/13/202107132123328bb83b9.gif)

### 切换源代码模式

![](https://img.tanknee.cn/blogpicbed/2021/07/13/20210713fd47059a2a7e6.gif)

### 打字机模式

![](https://img.tanknee.cn/blogpicbed/2021/07/13/20210713874ba9ea28ec8.gif)

更多特色功能还请下载之后体验


## Reference

感谢 Quasar Framework、Monaco 以及 MarkText 项目,从他们身上学到了很多,Memocast 有很多的灵感都来自他们,笔记的所见即所得编辑器来自 MarkText 中的 Muya 编辑器,源代码模式使用的编辑器来自 Monaca-Editor 项目。

感谢 Quasar 中文网,他们的文档对我有很大帮助。http://www.quasarchs.com/

## Sponsor

Expand Down
5 changes: 5 additions & 0 deletions src/components/ui/dialog/SettingsDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,11 @@ export default {
})
this.updateStateAndStore({ language: lan })
i18n.locale = lan
this.$q.notify({
message: this.$t('switchLanguageHint'),
color: 'primary',
icon: 'info'
})
},
imageUploadServiceChangeHandler: function (service) {
const servicePlain = this.imageUploadServiceOptionsPlain.find(
Expand Down
1 change: 1 addition & 0 deletions src/i18n/en-us/components/ui/SettingsDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export default {
language: 'Language',
'en-us': 'English (US)',
'zh-cn': 'Chinese (Simplified)',
switchLanguageHint: 'Some changes require a reboot of Memocast to apply',
darkMode: 'Dark Mode',
markdownOnly: 'Only Show Markdown Note',
noteOrder: 'Note Order',
Expand Down
1 change: 1 addition & 0 deletions src/i18n/zh-cn/components/ui/SettingsDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export default {
language: '语言',
'en-us': '英语 (美国)',
'zh-cn': '中文 (简体)',
switchLanguageHint: '部分更改需要重启 Memocast 以应用',
darkMode: '暗黑模式',
markdownOnly: '只显示Markdown笔记',
noteOrder: '笔记排序方式',
Expand Down