mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00
refine Chinese translations
This commit is contained in:
parent
d7224380d1
commit
f01131caff
@ -43,7 +43,6 @@ Utilizing Qt, VNote could run on **Linux**, **Windows**, and **macOS** (due to t
|
|||||||
- [Github issues](https://github.com/tamlok/vnote/issues);
|
- [Github issues](https://github.com/tamlok/vnote/issues);
|
||||||
- Email: tamlokveer at gmail.com;
|
- Email: tamlokveer at gmail.com;
|
||||||
- QQ group: 487756074;
|
- QQ group: 487756074;
|
||||||

|
|
||||||
|
|
||||||
# Highlights
|
# Highlights
|
||||||
- Supports inserting images directly from clipboard;
|
- Supports inserting images directly from clipboard;
|
||||||
|
@ -43,8 +43,7 @@ VNote不是一个简单的Markdown编辑器。通过提供笔记管理功能,V
|
|||||||
# 支持
|
# 支持
|
||||||
- [Github issues](https://github.com/tamlok/vnote/issues);
|
- [Github issues](https://github.com/tamlok/vnote/issues);
|
||||||
- 邮箱: tamlokveer at gmail.com;
|
- 邮箱: tamlokveer at gmail.com;
|
||||||
- QQ群: 487756074 (VNote使用和开发);
|
- QQ群: 487756074;
|
||||||

|
|
||||||
|
|
||||||
# 亮点
|
# 亮点
|
||||||
- 支持直接从剪切板插入图片;
|
- 支持直接从剪切板插入图片;
|
||||||
|
12
changes.md
12
changes.md
@ -1,4 +1,16 @@
|
|||||||
# Changes History
|
# Changes History
|
||||||
|
## v1.10
|
||||||
|
- Migrate to Qt 5.9.1;
|
||||||
|
- Support Compact mode in main window;
|
||||||
|
- Update icons;
|
||||||
|
- Support custom startup pages;
|
||||||
|
- Remove obsolete title marker when inserting new one;
|
||||||
|
- Support Magic Words;
|
||||||
|
- Vim mode
|
||||||
|
- Share registers among all tabs;
|
||||||
|
- Add "Code Block", "Insert Link", and "Insert Image" tool bar buttons;
|
||||||
|
|
||||||
|
|
||||||
## v1.9
|
## v1.9
|
||||||
- Support attachments of notes.
|
- Support attachments of notes.
|
||||||
- Add recycle bin to notebook to hold deleted files.
|
- Add recycle bin to notebook to hold deleted files.
|
||||||
|
@ -206,7 +206,7 @@ RemoveSplit=R
|
|||||||
- `Q`
|
- `Q`
|
||||||
放弃当前更改并退出编辑模式。
|
放弃当前更改并退出编辑模式。
|
||||||
- `V`
|
- `V`
|
||||||
竖直分割当前窗口。
|
垂直分割当前窗口。
|
||||||
- `R`
|
- `R`
|
||||||
移除当前分割窗口。
|
移除当前分割窗口。
|
||||||
- `H`
|
- `H`
|
||||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -97,7 +97,7 @@ void VMetaWordManager::init()
|
|||||||
// %MMMM%.
|
// %MMMM%.
|
||||||
addMetaWord(MetaWordType::FunctionBased,
|
addMetaWord(MetaWordType::FunctionBased,
|
||||||
"MMMM",
|
"MMMM",
|
||||||
tr("the long localized month name (e.g. `January` to `December`"),
|
tr("the long localized month name (e.g. `January` to `December`)"),
|
||||||
std::bind(formattedDateTime, _1, "MMMM"));
|
std::bind(formattedDateTime, _1, "MMMM"));
|
||||||
|
|
||||||
// %yy%.
|
// %yy%.
|
||||||
@ -115,25 +115,25 @@ void VMetaWordManager::init()
|
|||||||
// %h%.
|
// %h%.
|
||||||
addMetaWord(MetaWordType::FunctionBased,
|
addMetaWord(MetaWordType::FunctionBased,
|
||||||
"h",
|
"h",
|
||||||
tr("the hour without a leading zero (`0` to `23` or `1` to `12` if AM/PM display"),
|
tr("the hour without a leading zero (`0` to `23` or `1` to `12` if AM/PM display)"),
|
||||||
std::bind(formattedDateTime, _1, "h"));
|
std::bind(formattedDateTime, _1, "h"));
|
||||||
|
|
||||||
// %hh%.
|
// %hh%.
|
||||||
addMetaWord(MetaWordType::FunctionBased,
|
addMetaWord(MetaWordType::FunctionBased,
|
||||||
"hh",
|
"hh",
|
||||||
tr("the hour with a leading zero (`00` to `23` or `01` to `12` if AM/PM display"),
|
tr("the hour with a leading zero (`00` to `23` or `01` to `12` if AM/PM display)"),
|
||||||
std::bind(formattedDateTime, _1, "hh"));
|
std::bind(formattedDateTime, _1, "hh"));
|
||||||
|
|
||||||
// %H%.
|
// %H%.
|
||||||
addMetaWord(MetaWordType::FunctionBased,
|
addMetaWord(MetaWordType::FunctionBased,
|
||||||
"H",
|
"H",
|
||||||
tr("the hour without a leading zero (`0` to `23` even with AM/PM display"),
|
tr("the hour without a leading zero (`0` to `23` even with AM/PM display)"),
|
||||||
std::bind(formattedDateTime, _1, "H"));
|
std::bind(formattedDateTime, _1, "H"));
|
||||||
|
|
||||||
// %HH%.
|
// %HH%.
|
||||||
addMetaWord(MetaWordType::FunctionBased,
|
addMetaWord(MetaWordType::FunctionBased,
|
||||||
"HH",
|
"HH",
|
||||||
tr("the hour with a leading zero (`00` to `23` even with AM/PM display"),
|
tr("the hour with a leading zero (`00` to `23` even with AM/PM display)"),
|
||||||
std::bind(formattedDateTime, _1, "HH"));
|
std::bind(formattedDateTime, _1, "HH"));
|
||||||
|
|
||||||
// %m%.
|
// %m%.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user