Skip to content

Commit

Permalink
Fix some missing strings
Browse files Browse the repository at this point in the history
  • Loading branch information
jhm-ciberman committed Oct 29, 2022
1 parent a97f17d commit 9871757
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions res/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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:",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/Main/ProjectExplorerPage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9871757

Please sign in to comment.