修改提示词

This commit is contained in:
shuaikangzhou 2023-12-02 18:05:03 +08:00
parent 2c4199ba9c
commit 7958ccde23
4 changed files with 5 additions and 6 deletions

View File

@ -111,7 +111,7 @@ class ContactInfo(QWidget, Ui_Form):
reply = QMessageBox(self) reply = QMessageBox(self)
reply.setIcon(QMessageBox.Information) reply.setIcon(QMessageBox.Information)
reply.setWindowTitle('OK') reply.setWindowTitle('OK')
reply.setText(f"导出聊天记录成功\n在.\\data\\目录下") reply.setText(f"导出聊天记录成功\n在./data/目录下(跟exe文件在一起)")
reply.addButton("确认", QMessageBox.AcceptRole) reply.addButton("确认", QMessageBox.AcceptRole)
reply.addButton("取消", QMessageBox.RejectRole) reply.addButton("取消", QMessageBox.RejectRole)
api = reply.exec_() api = reply.exec_()

View File

@ -10,9 +10,9 @@
import json import json
import os.path 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.QtGui import QPixmap, QFont, QDesktopServices
from PyQt5.QtWidgets import * from PyQt5.QtWidgets import QMainWindow, QLabel, QListWidgetItem, QMessageBox
from app import config from app import config
from app.DataBase import msg_db, misc_db, micro_msg_db, hard_link_db from app.DataBase import msg_db, misc_db, micro_msg_db, hard_link_db
@ -223,7 +223,6 @@ class MainWinController(QMainWindow, mainwindow.Ui_MainWindow):
class LoadWindowThread(QThread): class LoadWindowThread(QThread):
windowSignal = pyqtSignal(QWidget)
okSignal = pyqtSignal(bool) okSignal = pyqtSignal(bool)
def __init__(self): def __init__(self):

View File

@ -165,7 +165,7 @@ class Ui_MainWindow(object):
self.menu_output.setTitle(_translate("MainWindow", "导出聊天记录(全部)")) self.menu_output.setTitle(_translate("MainWindow", "导出聊天记录(全部)"))
self.menu_2.setTitle(_translate("MainWindow", "帮助")) self.menu_2.setTitle(_translate("MainWindow", "帮助"))
self.menu_about.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_3.setText(_translate("MainWindow", "保存"))
self.action_4.setText(_translate("MainWindow", "退出")) self.action_4.setText(_translate("MainWindow", "退出"))
self.action_help_decrypt.setText(_translate("MainWindow", "解密教程")) self.action_help_decrypt.setText(_translate("MainWindow", "解密教程"))

View File

@ -216,7 +216,7 @@
</widget> </widget>
<widget class="QMenu" name="menu_3"> <widget class="QMenu" name="menu_3">
<property name="title"> <property name="title">
<string>不显示或者显示异常请重启应用</string> <string>不显示或者显示异常请重启应用、没反应那就多等一会儿</string>
</property> </property>
</widget> </widget>
<addaction name="menu_F"/> <addaction name="menu_F"/>