From 74b818848999f92493ed99311c5d576bbd01f14b Mon Sep 17 00:00:00 2001 From: Daniel Jerrehian Date: Tue, 2 Apr 2024 20:57:21 +0200 Subject: [PATCH] Updated GUI constant messages --- gui_data/constants.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gui_data/constants.py b/gui_data/constants.py index 22c59186..66f98109 100644 --- a/gui_data/constants.py +++ b/gui_data/constants.py @@ -903,10 +903,10 @@ 'SOFTWARE.' # Message Box Text -INVALID_INPUT = 'Invalid Input', 'The input is invalid.\n\nPlease verify the input still exists or is valid and try again.' -INVALID_EXPORT = 'Invalid Export Directory', 'You have selected an invalid export directory.\n\nPlease make sure the selected directory still exists.' +INVALID_INPUT = 'Invalid Input', 'The input is invalid.\n\nPlease verify the input exists or is valid and try again.' +INVALID_EXPORT = 'Invalid Export Directory', 'You have selected an invalid export directory.\n\nPlease make sure the selected directory exists.' INVALID_ENSEMBLE = 'Not Enough Models', 'You must select 2 or more models to run ensemble.' -INVALID_MODEL = 'No Model Chosen', 'You must select an model to continue.' +INVALID_MODEL = 'No Model Chosen', 'You must select a model to continue.' MISSING_MODEL = 'Model Missing', 'The selected model is missing or not valid.' ERROR_OCCURED = 'Error Occured', '\n\nWould you like to open the error log for more details?\n' PROCESS_COMPLETE = '\nProcess complete\n'