diff --git a/NEWS.md b/NEWS.md
index 2099df45..8baa2317 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,7 @@
Version 0.7.1
- fix: can't add bookmark at a breakpoint line
+ - fix: app name in the title bar not translated
+ - use new app icon
Version 0.7.0
- fix: Backspace still works in readonly mode
diff --git a/RedPandaIDE/RedPandaIDE_zh_CN.ts b/RedPandaIDE/RedPandaIDE_zh_CN.ts
index af623a65..0ef8343b 100644
--- a/RedPandaIDE/RedPandaIDE_zh_CN.ts
+++ b/RedPandaIDE/RedPandaIDE_zh_CN.ts
@@ -133,17 +133,17 @@
无法读取文件'%1'.
-
+
描述
-
+
行
-
+
文件名
@@ -1011,7 +1011,7 @@ Are you really want to continue?
Editor
-
+
无标题
@@ -1024,76 +1024,76 @@ Are you really want to continue?
失败
-
-
-
-
-
-
-
+
+
+
+
+
+
+
错误
-
+
无法写入文件"%1"
-
+
另存为
-
+
要复制的内容超过了行数限制!
-
+
要复制的内容超过了字符数限制!
-
+
要剪切的内容超过了行数限制!
-
+
要剪切的内容超过了字符数限制!
-
+
打印文档
-
-
-
+
+
+
Ctrl+单击以获取更多信息
-
-
+
+
未找到符号'%1'!
-
+
断点条件
-
+
输入当前断点的生效条件:
-
+
只读
@@ -3631,7 +3631,7 @@ Are you really want to continue?
-
+
打开文件夹
@@ -3855,6 +3855,11 @@ Are you really want to continue?
插入代码段
+
+
+
+ 小熊猫Dev-C++
+
@@ -4983,12 +4988,12 @@ Are you really want to continue?
QObject
-
+
保存
-
+
将修改保存到"%1"?
diff --git a/RedPandaIDE/mainwindow.cpp b/RedPandaIDE/mainwindow.cpp
index 866e23a7..98c5eec9 100644
--- a/RedPandaIDE/mainwindow.cpp
+++ b/RedPandaIDE/mainwindow.cpp
@@ -556,7 +556,7 @@ void MainWindow::setActiveBreakpoint(QString FileName, int Line, bool setFocus)
void MainWindow::updateAppTitle()
{
- QString appName("Red Panda Dev-C++");
+ QString appName=tr("Red Panda Dev-C++");
Editor *e = mEditorList->getEditor();
QCoreApplication *app = QApplication::instance();
if (e && !e->inProject()) {