Skip to content

Commit fce6432

Browse files
committed
feat: translate
1 parent d8c925c commit fce6432

File tree

4 files changed

+149
-171
lines changed

4 files changed

+149
-171
lines changed

CHANGELOG.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# 1.0.9版本
1+
# Version 1.0.9
22

3-
1. 修复批量数据更新时缺失output函数的问题
3+
1. Fix missing output function when updating batch data.
44

5-
# 1.0.8版本
5+
# 1.0.8 Version
66

7-
1. 增加output函数用于输出数据下载过程中的日志
7+
1. Add output function to output logs during data downloading
88

9-
# 1.0.7版本
9+
# 1.0.7 Version 1.
1010

11-
1. 修复刷新历史数据树形控件时,老数据点移除错误的问题
11+
1. Fix the problem that old data points are removed incorrectly when refreshing the historical data tree control.
1212

13-
# 1.0.6版本
13+
# 1.0.6 Version 1.
1414

15-
1. 使用zoneinfo替换pytz库
16-
2. 调整安装脚本setup.cfg,添加Python版本限制
15+
1. Replace pytz library with zoneinfo. 2.
16+
2. Adjust setup.cfg to add Python version restriction.
1717

18-
# 1.0.5版本
18+
# 1.0.5 Version
1919

20-
1. 将模块的图标文件信息,改为完整路径字符串
21-
2. 修改使用PySide6的QDate到datetime转换函数
20+
1. Change the module's icon file information to a full path string.
21+
2. Modify the use of PySide6's QDate to datetime conversion function.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# VeighNa框架的数据管理模块
1+
# Data management module of the VeighNa framework
22

33
<p align="center">
44
<img src ="https://vnpy.oss-cn-shanghai.aliyuncs.com/vnpy-logo.png"/>
@@ -11,22 +11,22 @@
1111
<img src ="https://img.shields.io/github/license/vnpy/vnpy.svg?color=orange"/>
1212
</p>
1313

14-
## 说明
14+
## Description
1515

16-
通过UI界面直观查询数据库中已有的数据概况,选择任意时间段数据查看字段细节,支持CSV文件的数据导入和导出。
16+
Through the UI interface intuitive query database has a data profile, select any time period data to view the details of the field, support for CSV file data import and export.
1717

18-
## 安装
18+
## Installation
1919

20-
安装环境推荐基于3.3.0版本以上的【[**VeighNa Studio**](https://www.vnpy.com)】。
20+
The installation environment is recommended to be based on [[**VeighNa Studio**](https://www.vnpy.com)] above version 3.3.0.
2121

22-
直接使用pip命令:
22+
Use pip command directly:
2323

2424
```
2525
pip install vnpy_datamanager
2626
```
2727

2828

29-
或者下载源代码后,解压后在cmd中运行:
29+
Or download the source code, unzip it and run it in cmd:
3030

3131
```
3232
pip install .

vnpy_datamanager/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class DataManagerApp(BaseApp):
4040
app_name: str = APP_NAME
4141
app_module: str = __module__
4242
app_path: Path = Path(__file__).parent
43-
display_name: str = "数据管理"
43+
display_name: str = "Data management"
4444
engine_class: ManagerEngine = ManagerEngine
4545
widget_name: str = "ManagerWidget"
4646
icon_name: str = str(app_path.joinpath("ui", "manager.ico"))

0 commit comments

Comments
 (0)