-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. 简化自动翻译模式切换提示 将原有的自动翻译模式切换提示进行了简化,去除冗余,简化后的提示分别为: 禁用自动翻译 常规自动翻译 反向自动翻译 2. 重构帮助文档内容 针对帮助文档内容进行重构,调整文档内容。修复英文帮助文档中的错误。
- Loading branch information
1 parent
d1ae933
commit 89294c4
Showing
5 changed files
with
96 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,49 @@ | ||
# Baidu Translation | ||
# Baidu translator | ||
|
||
An NVDA add-on that provides baidu translation. | ||
An NVDA plugin that provides Baidu translation. | ||
|
||
## Keyboard shortcuts: | ||
|
||
* Translate what you just heard: NVDA+A | ||
* Reverse translation of what I just heard: NVDA+SHIFT+A | ||
* Loop switching automatic translation mode (disabled, normal, reverse): NVDA+F7 | ||
* Forward translation of clipboard content: NVDA+Control+A | ||
* Reverse translation of clipboard content: NVDA+CTRL+SHIFT+A | ||
* Translate what you just heard: NVDA+W | ||
* Reverse translate what you just heard: NVDA+SHIFT+W | ||
* Cycle through automatic translation modes (disabled, normal, reverse): NVDA+F8 | ||
* Translate clipboard contents forward: NVDA+CONTROL+W | ||
* Reverse translate clipboard content: NVDA+CONTROL+SHIFT+W | ||
|
||
## Upgrade Log | ||
## Feedback Contact | ||
|
||
Any comments and suggestions are welcome to communicate: | ||
|
||
* Project address: https://github.com/huaiyinfeilong/baiduTranslation | ||
* E-mail: huaiyinfeilong@163.com | ||
* QQ: 354522977 | ||
* WeChat: huaiyinfeilong | ||
|
||
## Upgrade log | ||
|
||
### Version 1.4 | ||
|
||
* Improve the help documentation and fix errors in the English help documentation. | ||
* Optimize the automatic translation switching prompt, which is now more concise and clear. | ||
|
||
### Version 1.3 | ||
|
||
Added clipboard forward translation and clipboard reverse translation functions. | ||
|
||
* Forward translation of the clipboard: Translate the contents of the clipboard from the source language to the target language. If the "Automatically identify source language" option is enabled, the source language will be automatically recognized. | ||
* Clipboard reverse translation: Translate the contents of the clipboard from the target language to the source language. | ||
|
||
### Version 1.2 | ||
|
||
* Added clipboard forward translation and clipboard reverse translation functions. | ||
Added the automatic translation function, which supports three modes of regular automatic translation, reverse automatic translation and disabled automatic translation. | ||
|
||
After the automatic translation function is turned on, all content read by NVDA will be automatically translated. The specific functions of the three modes are described as follows: | ||
|
||
* Forward automatic translation: Automatically translate the content read by NVDA from the source language to the target language. If the "Automatically identify source language" option is enabled, the source language will be automatically recognized. | ||
* Reverse automatic translation: Automatically translate the content read by NVDA from the target language to the source language. | ||
* Disable auto-translation: Do not use the auto-translation feature. | ||
|
||
Note: After the automatic translation function is turned on, all the reading content of NVDA will be sent to the translation server, and the response speed of NVDA reading will be slowed down to varying degrees due to the translation results. | ||
### Version 1.1 | ||
|
||
* Add an automatic translation function, which will translate all text read on the screen when enabled. You can switch between the settings interface and pressing the shortcut keys NVDA+F7. There are three modes available: Disabled, Normal, and Reverse. In Normal mode, the "Auto Identify Source Language" switch will be applied synchronously. | ||
Added reverse translation function, which can translate from the target language to the source language. |