diff --git a/meshroom/ui/qml/GraphEditor/GraphEditor.qml b/meshroom/ui/qml/GraphEditor/GraphEditor.qml index 3a6e16c2..e7b0d3e5 100755 --- a/meshroom/ui/qml/GraphEditor/GraphEditor.qml +++ b/meshroom/ui/qml/GraphEditor/GraphEditor.qml @@ -747,7 +747,7 @@ Item { icon.text: MaterialIcons.error icon.color: "#F44336" - title: "Different types of files" + title: "Different File Types" text: "Do not mix .mg files and other types of files." standardButtons: Dialog.Ok diff --git a/meshroom/ui/qml/ImageGallery/ImageGallery.qml b/meshroom/ui/qml/ImageGallery/ImageGallery.qml index 553ceebf..d144656e 100644 --- a/meshroom/ui/qml/ImageGallery/ImageGallery.qml +++ b/meshroom/ui/qml/ImageGallery/ImageGallery.qml @@ -481,13 +481,13 @@ Panel { verticalAlignment: Text.AlignVCenter text: { if (nbMeshroomScenes != nbDraggedFiles && nbMeshroomScenes != 0) { - return "Do not mix project and images" + return "Cannot Add Projects And Images Together" } if (nbMeshroomScenes == 1 && nbMeshroomScenes == nbDraggedFiles) { return "Load Project" } else if (nbMeshroomScenes == nbDraggedFiles) { - return "Only one project" + return "Only One Project" } else { return "Add Images" } @@ -936,7 +936,7 @@ Panel { icon.text: MaterialIcons.error icon.color: "#F44336" - title: "Different types of files" + title: "Different File Types" text: "Do not mix .mg files and other types of files." standardButtons: Dialog.Ok diff --git a/meshroom/ui/reconstruction.py b/meshroom/ui/reconstruction.py index d1e0e4b2..91c4c81f 100755 --- a/meshroom/ui/reconstruction.py +++ b/meshroom/ui/reconstruction.py @@ -789,7 +789,7 @@ class Reconstruction(UIGraph): if len(filesByType["meshroomScenes"]) > 1: self.error.emit( Message( - "Too many Meshroom Scenes", + "Too Many Meshroom Scenes", "A single Meshroom scene (.mg file) can be imported at once." ) )