mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 05:49:53 +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);
|
||||
- Email: tamlokveer at gmail.com;
|
||||
- QQ group: 487756074;
|
||||

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

|
||||
- QQ群: 487756074;
|
||||
|
||||
# 亮点
|
||||
- 支持直接从剪切板插入图片;
|
||||
|
12
changes.md
12
changes.md
@ -1,4 +1,16 @@
|
||||
# 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
|
||||
- Support attachments of notes.
|
||||
- Add recycle bin to notebook to hold deleted files.
|
||||
|
@ -206,7 +206,7 @@ RemoveSplit=R
|
||||
- `Q`
|
||||
放弃当前更改并退出编辑模式。
|
||||
- `V`
|
||||
竖直分割当前窗口。
|
||||
垂直分割当前窗口。
|
||||
- `R`
|
||||
移除当前分割窗口。
|
||||
- `H`
|
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -97,7 +97,7 @@ void VMetaWordManager::init()
|
||||
// %MMMM%.
|
||||
addMetaWord(MetaWordType::FunctionBased,
|
||||
"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"));
|
||||
|
||||
// %yy%.
|
||||
@ -115,25 +115,25 @@ void VMetaWordManager::init()
|
||||
// %h%.
|
||||
addMetaWord(MetaWordType::FunctionBased,
|
||||
"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"));
|
||||
|
||||
// %hh%.
|
||||
addMetaWord(MetaWordType::FunctionBased,
|
||||
"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"));
|
||||
|
||||
// %H%.
|
||||
addMetaWord(MetaWordType::FunctionBased,
|
||||
"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"));
|
||||
|
||||
// %HH%.
|
||||
addMetaWord(MetaWordType::FunctionBased,
|
||||
"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"));
|
||||
|
||||
// %m%.
|
||||
|
Loading…
x
Reference in New Issue
Block a user