diff --git a/src/translations/vnote_zh_CN.qm b/src/translations/vnote_zh_CN.qm index 635ecc03..bef2d16a 100644 Binary files a/src/translations/vnote_zh_CN.qm and b/src/translations/vnote_zh_CN.qm differ diff --git a/src/translations/vnote_zh_CN.ts b/src/translations/vnote_zh_CN.ts index a07a5821..3f9303a7 100644 --- a/src/translations/vnote_zh_CN.ts +++ b/src/translations/vnote_zh_CN.ts @@ -10,8 +10,8 @@ - - + + Insert Link 插入链接 @@ -3737,17 +3737,17 @@ Modified Time: %3 设置为编辑器的背景色(需要重新打开当前标签页) - + Quick Access is not set. 快速访问未设置。 - + Please specify the note for Quick Access in the settings dialog or the context menu of a note. 请在设置对话框或笔记上下文菜单中设置一个笔记用于快速访问。 - + Edit current note 编辑当前笔记 @@ -3757,7 +3757,7 @@ Modified Time: %3 放弃对当前笔记的更改并退出编辑模式 - + Save changes and exit edit mode 保存对当前笔记的更改并退出编辑模式 @@ -4247,18 +4247,18 @@ Modified Time: %3 设置为编辑器的样式(需要重新打开当前标签页) - + Show VNote 显示VNote - + Quit 退出VNote - + VNote VNote @@ -4277,6 +4277,16 @@ Modified Time: %3 Tags 标签 + + + Link %1 + 链接 %1 + + + + Image %1 + 图片 %1 + Note Toolbar @@ -4594,48 +4604,48 @@ Modified Time: %3 添加编辑器的自定义样式 - + Headings 标题 - + Heading %1 标题%1 - + Heading %1 %2 标题%1 %2 - + Clear 清空标题 - + Clear %1 清空标题 %1 - + Theme 主题 - - + + Add Theme 添加主题 - + Add custom theme 添加自定义主题 - + Set as the theme of VNote (restart VNote to make it work) 设置为VNote的主题(重启VNote生效) @@ -4695,7 +4705,7 @@ Modified Time: %3 稍后可以进入设置改变该选项。 - + Print Note 打印笔记 @@ -4734,16 +4744,6 @@ Modified Time: %3 Code Block %1 代码块 %1 - - - Insert Link %1 - 插入链接 %1 - - - - Insert Image %1 - 插入图片 %1 - Flash Page @@ -4756,7 +4756,7 @@ Modified Time: %3 - + Customize Shortcuts 自定义快捷键 @@ -4791,27 +4791,27 @@ Modified Time: %3 总是滚动光标所在行到编辑区域中部 - + Information 信息 - + Edit %1 编辑 %1 - + Save Changes And Read %1 保存更改并阅读 %1 - + Edit 编辑 - + Save Changes And Read 保存更改并阅读 @@ -5329,7 +5329,7 @@ Modified Time: %3 - + Fail to create image folder <span style="%1">%2</span>. 新建图片目录 <span style="%1">%2</span> 失败。 @@ -5340,33 +5340,33 @@ Modified Time: %3 - + Warning 警告 - + Fail to insert image <span style="%1">%2</span>. 插入图片 <span style="%1">%2</span> 失败。 - + Fail to copy image <span style="%1">%2</span>. 复制图片 <span style="%1">%2</span> 失败。 - + Insert Image From File 从文件插入图片 - + Insert Image From Network 从网络插入图片 - + Insert Image 插入图片 @@ -5463,7 +5463,7 @@ Modified Time: %3 - + Warning 警告 @@ -5638,37 +5638,37 @@ Modified Time: %3 插入文本内容 - + Fail to add attachment %1 for note <span style="%2">%3</span>. 为笔记 <span style="%2">%3</span> 添加附件 %1 失败。 - + 1 file added as attachment 1个文件添加为附件 - + Fetching images to local folder... 正在获取图片到本地文件夹... - + Abort 终止 - + Fetching Images To Local Folder 正在获取图片到本地文件夹 - + Fetching image: %1 获取图片: %1 - + Link To Attachment 链接到附件 diff --git a/src/vmainwindow.cpp b/src/vmainwindow.cpp index 3d9d0f22..42cd53f3 100644 --- a/src/vmainwindow.cpp +++ b/src/vmainwindow.cpp @@ -589,7 +589,7 @@ QToolBar *VMainWindow::initEditToolBar(QSize p_iconSize) // Insert link. QAction *insetLinkAct = new QAction(VIconUtils::toolButtonIcon(":/resources/icons/link.svg"), - tr("Insert Link\t%1").arg(VUtils::getShortcutText("Ctrl+L")), + tr("Link\t%1").arg(VUtils::getShortcutText("Ctrl+L")), this); insetLinkAct->setStatusTip(tr("Insert a link")); connect(insetLinkAct, &QAction::triggered, @@ -603,7 +603,7 @@ QToolBar *VMainWindow::initEditToolBar(QSize p_iconSize) // Insert image. QAction *insertImageAct = new QAction(VIconUtils::toolButtonIcon(":/resources/icons/insert_image.svg"), - tr("Insert Image\t%1").arg(VUtils::getShortcutText("Ctrl+'")), + tr("Image\t%1").arg(VUtils::getShortcutText("Ctrl+'")), this); insertImageAct->setStatusTip(tr("Insert an image from file or URL")); connect(insertImageAct, &QAction::triggered,