From 98717571b0172ffed776be26b27138bd6b673824 Mon Sep 17 00:00:00 2001 From: Javier Ciberman Mora Date: Fri, 28 Oct 2022 22:18:50 -0300 Subject: [PATCH] Fix some missing strings --- res/lang/en.json | 6 ++++++ src/Main/ProjectExplorerPage.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/res/lang/en.json b/res/lang/en.json index e1cd7b0..6dfe253 100644 --- a/res/lang/en.json +++ b/res/lang/en.json @@ -122,7 +122,9 @@ } }, "About Phantom Desktop": "About Phantom Desktop", + "Add From Folder": "Add From Folder", "Add From Folder...": "Add From Folder...", + "Add Images": "Add Images", "Add Images...": "Add Images...", "Add a name to this person": "Add a name to this person", "Add images from folder to current project": "Add images from folder to current project", @@ -139,6 +141,7 @@ "Box blur": "Box blur", "Cancel": "Cancel", "Cannot Move Face": "Cannot Move Face", + "Check the online help": "Check the online help", "Close": "Close", "Color Channels": "Color Channels", "Combine group": "Combine group", @@ -152,6 +155,8 @@ "Deblurring Image": "Deblurring Image", "Different people": "Different people", "Disk blur": "Disk blur", + "Don't know where to start?": "Don't know where to start?", + "Drag images here to start": "Drag images here to start", "EXIF Data": "EXIF Data", "Edit name": "Edit name", "Enter a name for the group:": "Enter a name for the group:", @@ -265,6 +270,7 @@ "Smart rotation": "Smart rotation", "Special thanks to:": "Special thanks to:", "Thank you. All done for now.": "Thank you. All done for now.", + "The project is empty": "The project is empty", "Unknown": "Unknown", "Untitled": "Untitled", "Use as main face": "Use as main face", diff --git a/src/Main/ProjectExplorerPage.py b/src/Main/ProjectExplorerPage.py index 3520a46..d2ece7e 100644 --- a/src/Main/ProjectExplorerPage.py +++ b/src/Main/ProjectExplorerPage.py @@ -308,7 +308,7 @@ def __init__(self, parent: QtWidgets.QWidget): self._title.setStyleSheet("font-size: 24px;") self._layout.addWidget(self._title) - self._subtitle = QtWidgets.QLabel(__("Drag images to the project to start")) + self._subtitle = QtWidgets.QLabel(__("Drag images here to start")) self._subtitle.setAlignment(QtCore.Qt.AlignCenter) self._subtitle.setStyleSheet("font-size: 16px; color: #666;") self._layout.addWidget(self._subtitle)