eric7/eric7.py

branch
eric7
changeset 8314
e3642a6a1e71
parent 8312
800c432b34c8
child 8318
962bce857696
diff -r dac33c7fce07 -r e3642a6a1e71 eric7/eric7.py
--- a/eric7/eric7.py	Sat May 15 19:01:16 2021 +0200
+++ b/eric7/eric7.py	Sat May 15 20:08:03 2021 +0200
@@ -45,7 +45,7 @@
     except ImportError:
         sys.exit(100)
     messagebox.showerror(
-        "eric6 Error",
+        "eric7 Error",
         "PyQt could not be imported. Please make sure"
         " it is installed and accessible.")
     sys.exit(100)
@@ -147,7 +147,7 @@
             client.processArgs(sys.argv[1:])
         sys.exit(0)
     elif res < 0:
-        print("eric6: {0}".format(client.errstr()))
+        print("eric7: {0}".format(client.errstr()))
         # __IGNORE_WARNING_M801__
         sys.exit(res)
 
@@ -165,7 +165,7 @@
     import Globals
     
     separator = '-' * 80
-    logFile = os.path.join(Globals.getConfigDir(), "eric6_error.log")
+    logFile = os.path.join(Globals.getConfigDir(), "eric7_error.log")
     notice = (
         """An unhandled exception occurred. Please report the problem\n"""
         """using the error reporting dialog or via email to <{0}>.\n"""
@@ -248,7 +248,7 @@
     sys.excepthook = excepthook
     
     from PyQt5.QtGui import QGuiApplication
-    QGuiApplication.setDesktopFileName("eric6.desktop")
+    QGuiApplication.setDesktopFileName("eric7.desktop")
     
     options = [
         ("--config=configDir",
@@ -386,13 +386,13 @@
     from E5Network.E5SslUtilities import initSSL
     initSSL()
     
-    splash.showMessage(QCoreApplication.translate("eric6", "Starting..."))
+    splash.showMessage(QCoreApplication.translate("eric7", "Starting..."))
     # We can only import these after creating the E5Application because they
     # make Qt calls that need the E5Application to exist.
     from UI.UserInterface import UserInterface
 
     splash.showMessage(
-        QCoreApplication.translate("eric6", "Generating Main Window..."))
+        QCoreApplication.translate("eric7", "Generating Main Window..."))
     mainWindow = UserInterface(app, loc, splash, pluginFile, disabledPlugins,
                                noopen, nocrash, disablecrash, restartArgs,
                                originalPathString)

eric ide

mercurial