src/eric7/PdfViewer/PdfViewerWindow.py

branch
eric7
changeset 9729
f17d787ca4fa
parent 9722
63135ab601e7
child 10130
c444a1721e23
--- a/src/eric7/PdfViewer/PdfViewerWindow.py	Tue Jan 24 10:52:27 2023 +0100
+++ b/src/eric7/PdfViewer/PdfViewerWindow.py	Tue Jan 24 11:51:02 2023 +0100
@@ -262,7 +262,7 @@
         self.propertiesAct.setStatusTip(self.tr("Show the document properties"))
         self.propertiesAct.setWhatsThis(
             self.tr(
-                """<b>Properties</b><p>Opens a dialog showing the document"""
+                """<b>Properties</b><p>Shows the info tab of the document"""
                 """ properties.</p>"""
             )
         )
@@ -966,8 +966,8 @@
             if err == QPdfDocument.Error.IncorrectPassword:
                 password, ok = QInputDialog.getText(
                     self,
-                    self.tr("Load PDF File"),
-                    self.tr("Enter password to read the document:"),
+                    self.tr("Open PDF File"),
+                    self.tr("Enter password to show the document:"),
                     QLineEdit.EchoMode.Password,
                 )
                 if ok:
@@ -977,7 +977,7 @@
         if err != QPdfDocument.Error.None_:
             EricMessageBox.critical(
                 self,
-                self.tr("Load PDF File"),
+                self.tr("Open PDF File"),
                 self.tr(
                     """<p>The PDF file <b>{0}</b> could not be loaded.</p>"""
                     """<p>Reason: {1}</p>"""

eric ide

mercurial