diff -r 44e15eda6506 -r e8fc383322f7 eric6/Project/Project.py --- a/eric6/Project/Project.py Tue Jan 05 18:28:31 2021 +0100 +++ b/eric6/Project/Project.py Wed Jan 06 13:47:01 2021 +0100 @@ -4225,11 +4225,11 @@ self.tr('Create &Package List'), 0, 0, self.pluginGrp, 'project_plugin_pkglist') self.pluginPkgListAct.setStatusTip( - self.tr('Create an initial PKGLIST file for an eric6 plugin.')) + self.tr('Create an initial PKGLIST file for an eric plugin.')) self.pluginPkgListAct.setWhatsThis(self.tr( """<b>Create Package List</b>""" """<p>This creates an initial list of files to include in an""" - """ eric6 plugin archive. The list is created from the project""" + """ eric plugin archive. The list is created from the project""" """ file.</p>""" )) self.pluginPkgListAct.triggered.connect(self.__pluginCreatePkgList) @@ -4241,10 +4241,10 @@ self.tr('Create Plugin &Archives'), 0, 0, self.pluginGrp, 'project_plugin_archive') self.pluginArchiveAct.setStatusTip( - self.tr('Create eric6 plugin archive files.')) + self.tr('Create eric plugin archive files.')) self.pluginArchiveAct.setWhatsThis(self.tr( """<b>Create Plugin Archives</b>""" - """<p>This creates eric6 plugin archive files using the list""" + """<p>This creates eric plugin archive files using the list""" """ of files given in a PKGLIST* file. The archive name is""" """ built from the main script name if not designated in""" """ the package list file.</p>""" @@ -4258,10 +4258,10 @@ self.tr('Create Plugin Archives (&Snapshot)'), 0, 0, self.pluginGrp, 'project_plugin_sarchive') self.pluginSArchiveAct.setStatusTip(self.tr( - 'Create eric6 plugin archive files (snapshot releases).')) + 'Create eric plugin archive files (snapshot releases).')) self.pluginSArchiveAct.setWhatsThis(self.tr( """<b>Create Plugin Archives (Snapshot)</b>""" - """<p>This creates eric6 plugin archive files using the list""" + """<p>This creates eric plugin archive files using the list""" """ of files given in the PKGLIST* file. The archive name is""" """ built from the main script name if not designated in""" """ the package list file. The version entry of the main script""" @@ -5314,7 +5314,7 @@ @pyqtSlot() def __pluginCreateArchives(self, snapshot=False): """ - Private slot to create eric6 plugin archives. + Private slot to create eric plugin archives. @param snapshot flag indicating snapshot archives (boolean) """ @@ -5427,7 +5427,7 @@ self.ui, self.tr("Create Plugin Archive"), self.tr( - """<p>The eric6 plugin archive file <b>{0}</b>""" + """<p>The eric plugin archive file <b>{0}</b>""" """ could not be created.</p>""" """<p>Reason: {1}</p>""").format(archive, str(why))) errors += 1 @@ -5481,7 +5481,7 @@ self.ui.showNotification( UI.PixmapCache.getPixmap("pluginArchive48"), self.tr("Create Plugin Archive"), - self.tr("<p>The eric6 plugin archive files were " + self.tr("<p>The eric plugin archive files were " "created with some errors.</p>"), kind=NotificationTypes.Critical, timeout=0) @@ -5489,12 +5489,12 @@ self.ui.showNotification( UI.PixmapCache.getPixmap("pluginArchive48"), self.tr("Create Plugin Archive"), - self.tr("<p>The eric6 plugin archive files were " + self.tr("<p>The eric plugin archive files were " "created successfully.</p>")) def __pluginCreateSnapshotArchives(self): """ - Private slot to create eric6 plugin archive snapshot releases. + Private slot to create eric plugin archive snapshot releases. """ self.__pluginCreateArchives(True)