--- a/eric6/QScintilla/ShellWindow.py Tue Jan 05 18:28:31 2021 +0100 +++ b/eric6/QScintilla/ShellWindow.py Wed Jan 06 13:47:01 2021 +0100 @@ -60,7 +60,7 @@ if name is not None: self.setObjectName(name) self.setWindowIcon(UI.PixmapCache.getIcon("shell")) - self.setWindowTitle(self.tr("eric6 Shell")) + self.setWindowTitle(self.tr("eric Shell")) self.setStyle(Preferences.getUI("Style"), Preferences.getUI("StyleSheet")) @@ -187,7 +187,7 @@ self.__createHistoryActions() # read the keyboard shortcuts and make them identical to the main - # eric6 shortcuts + # eric shortcuts for act in self.helpActions: self.__readShortcut(act, "General") for act in self.editActions: @@ -1010,7 +1010,7 @@ def __newWindow(self): """ - Private slot to start a new instance of eric6. + Private slot to start a new instance of eric. """ program = sys.executable eric6 = os.path.join(getConfig("ericDir"), "eric6_shell.py") @@ -1025,9 +1025,9 @@ @type str """ if venvName: - self.setWindowTitle(self.tr("eric6 Shell [{0}]").format(venvName)) + self.setWindowTitle(self.tr("eric Shell [{0}]").format(venvName)) else: - self.setWindowTitle(self.tr("eric6 Shell")) + self.setWindowTitle(self.tr("eric Shell")) ################################################################## ## Below are the action methods for the view menu @@ -1093,9 +1093,9 @@ """ E5MessageBox.about( self, - self.tr("About eric6 Shell Window"), + self.tr("About eric Shell Window"), self.tr( - "The eric6 Shell is a standalone shell window." + "The eric Shell is a standalone shell window." " It uses the same backend as the debugger of" " the full IDE, but is executed independently.")) @@ -1103,7 +1103,7 @@ """ Private slot to handle the About Qt dialog. """ - E5MessageBox.aboutQt(self, "eric6 Shell Window") + E5MessageBox.aboutQt(self, "eric Shell Window") def __whatsThis(self): """