Skip to content

Commit

Permalink
修改提示词
Browse files Browse the repository at this point in the history
  • Loading branch information
LC044 committed Dec 2, 2023
1 parent 2c4199b commit 7958ccd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/ui_pc/contact/contactInfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def hide_progress_bar(self, int):
reply = QMessageBox(self)
reply.setIcon(QMessageBox.Information)
reply.setWindowTitle('OK')
reply.setText(f"导出聊天记录成功\n在.\\data\\目录下")
reply.setText(f"导出聊天记录成功\n在./data/目录下(跟exe文件在一起)")
reply.addButton("确认", QMessageBox.AcceptRole)
reply.addButton("取消", QMessageBox.RejectRole)
api = reply.exec_()
Expand Down
5 changes: 2 additions & 3 deletions app/ui_pc/mainview.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
import json
import os.path

from PyQt5.QtCore import *
from PyQt5.QtCore import pyqtSignal, QUrl, Qt, QThread, QSize
from PyQt5.QtGui import QPixmap, QFont, QDesktopServices
from PyQt5.QtWidgets import *
from PyQt5.QtWidgets import QMainWindow, QLabel, QListWidgetItem, QMessageBox

from app import config
from app.DataBase import msg_db, misc_db, micro_msg_db, hard_link_db
Expand Down Expand Up @@ -223,7 +223,6 @@ def close(self) -> bool:


class LoadWindowThread(QThread):
windowSignal = pyqtSignal(QWidget)
okSignal = pyqtSignal(bool)

def __init__(self):
Expand Down
2 changes: 1 addition & 1 deletion app/ui_pc/mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def retranslateUi(self, MainWindow):
self.menu_output.setTitle(_translate("MainWindow", "导出聊天记录(全部)"))
self.menu_2.setTitle(_translate("MainWindow", "帮助"))
self.menu_about.setTitle(_translate("MainWindow", "关于"))
self.menu_3.setTitle(_translate("MainWindow", "不显示或者显示异常请重启应用"))
self.menu_3.setTitle(_translate("MainWindow", "不显示或者显示异常请重启应用、没反应那就多等一会儿"))
self.action_3.setText(_translate("MainWindow", "保存"))
self.action_4.setText(_translate("MainWindow", "退出"))
self.action_help_decrypt.setText(_translate("MainWindow", "解密教程"))
Expand Down
2 changes: 1 addition & 1 deletion app/ui_pc/mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
</widget>
<widget class="QMenu" name="menu_3">
<property name="title">
<string>不显示或者显示异常请重启应用</string>
<string>不显示或者显示异常请重启应用、没反应那就多等一会儿</string>
</property>
</widget>
<addaction name="menu_F"/>
Expand Down

0 comments on commit 7958ccd

Please sign in to comment.